lodash-es/isObject.js function isObject(value) { var type = typeof value; return value != null && (type == "object" || type == "function"); } var isObject_default = isObject; // node_modules/lodash-es/toNumber.js var NAN = 0 / 0; var reIsBadHex = /^[-+]0x[0-9a-f]+$/i; var reIsBinary = /^0b[01]+$/i; var reIsOctal = /^0o[0-7]+$/i; var freeParseInt = parseInt; function toNumber(value) { if (typeof value == "number") { return value; } if (isSymbol_default(value)) { return NAN; } if (isObject_default(value)) { var other = typeof value.valueOf == "function" ? value.valueOf() : value; value = isObject_default(other) ? other + "" : other; } if (typeof value != "string") { return value === 0 ? value : +value; } value = baseTrim_default(value); var isBinary = reIsBinary.test(value); return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value; } var toNumber_default = toNumber; // node_modules/lodash-es/toFinite.js var INFINITY2 = 1 / 0; var MAX_INTEGER = 17976931348623157e292; function toFinite(value) { if (!value) { return value === 0 ? value : 0; } value = toNumber_default(value); if (value === INFINITY2 || value === -INFINITY2) { var sign = value < 0 ? -1 : 1; return sign * MAX_INTEGER; } return value === value ? value : 0; } var toFinite_default = toFinite; // node_modules/lodash-es/toInteger.js function toInteger(value) { var result = toFinite_default(value), remainder = result % 1; return result === result ? remainder ? result - remainder : result : 0; } var toInteger_default = toInteger; // node_modules/lodash-es/identity.js function identity(value) { return value; } var identity_default = identity; // node_modules/lodash-es/isFunction.js var asyncTag = "[object AsyncFunction]"; var funcTag = "[object Function]"; var genTag = "[object GeneratorFunction]"; var proxyTag = "[object Proxy]"; function isFunction(value) { if (!isObject_default(value)) { return false; } var tag = baseGetTag_default(value); return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag; } var isFunction_default = isFunction; // node_modules/lodash-es/_coreJsData.js var coreJsData = root_default["__core-js_shared__"]; var coreJsData_default = coreJsData; // node_modules/lodash-es/_isMasked.js var maskSrcKey = function() { var uid = /[^.]+$/.exec(coreJsData_default && coreJsData_default.keys && coreJsData_default.keys.IE_PROTO || ""); return uid ? "Symbol(src)_1." + uid : ""; }(); function isMasked(func) { return !!maskSrcKey && maskSrcKey in func; } var isMasked_default = isMasked; // node_modules/lodash-es/_toSource.js var funcProto = Function.prototype; var funcToString = funcProto.toString; function toSource(func) { if (func != null) { try { return funcToString.call(func); } catch (e) { } try { return func + ""; } catch (e) { } } return ""; } var toSource_default = toSource; // node_modules/lodash-es/_baseIsNative.js var reRegExpChar = /[\\^$.*+?()[\]{}|]/g; var reIsHostCtor = /^\[object .+?Constructor\]$/; var funcProto2 = Function.prototype; var objectProto3 = Object.prototype; var funcToString2 = funcProto2.toString; var hasOwnProperty2 = objectProto3.hasOwnProperty; var reIsNative = RegExp( "^" + funcToString2.call(hasOwnProperty2).replace(reRegExpChar, "\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, "$1.*?") + "$" ); function baseIsNative(value) { if (!isObject_default(value) || isMasked_default(value)) { return false; } var pattern = isFunction_default(value) ? reIsNative : reIsHostCtor; return pattern.test(toSource_default(value)); } var baseIsNative_default = baseIsNative; // node_modules/lodash-es/_getValue.js function getValue(object, key) { return object == null ? void 0 : object[key]; } var getValue_default = getValue; // node_modules/lodash-es/_getNative.js function getNative(object, key) { var value = getValue_default(object, key); return baseIsNative_default(value) ? value : void 0; } var getNative_default = getNative; // node_modules/lodash-es/_WeakMap.js var WeakMap = getNative_default(root_default, "WeakMap"); var WeakMap_default = WeakMap; // node_modules/lodash-es/_metaMap.js var metaMap = WeakMap_default && new WeakMap_default(); var metaMap_default = metaMap; // node_modules/lodash-es/_baseSetData.js var baseSetData = !metaMap_default ? identity_default : function(func, data) { metaMap_default.set(func, data); return func; }; var baseSetData_default = baseSetData; // node_modules/lodash-es/_baseCreate.js var objectCreate = Object.create; var baseCreate = /* @__PURE__ */ function() { function object() { } return function(proto) { if (!isObject_default(proto)) { return {}; } if (objectCreate) { return objectCreate(proto); } object.prototype = proto; var result = new object(); object.prototype = void 0; return result; }; }(); var baseCreate_default = baseCreate; // node_modules/lodash-es/_createCtor.js function createCtor(Ctor) { return function() { var args = arguments; switch (args.length) { case 0: return new Ctor(); case 1: return new Ctor(args[0]); case 2: return new Ctor(args[0], args[1]); case 3: return new Ctor(args[0], args[1], args[2]); case 4: return new Ctor(args[0], args[1], args[2], args[3]); case 5: return new Ctor(args[0], args[1], args[2], args[3], args[4]); case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]); case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]); } var thisBinding = baseCreate_default(Ctor.prototype), result = Ctor.apply(thisBinding, args); return isObject_default(result) ? result : thisBinding; }; } var createCtor_default = createCtor; // node_modules/lodash-es/_createBind.js var WRAP_BIND_FLAG = 1; function createBind(func, bitmask, thisArg) { var isBind = bitmask & WRAP_BIND_FLAG, Ctor = createCtor_default(func); function wrapper() { var fn = this && this !== root_default && this instanceof wrapper ? Ctor : func; return fn.apply(isBind ? thisArg : this, arguments); } return wrapper; } var createBind_default = createBind; // node_modules/lodash-es/_apply.js function apply(func, thisArg, args) { switch (args.length) { case 0: return func.call(thisArg); case 1: return func.call(thisArg, args[0]); case 2: return func.call(thisArg, args[0], args[1]); case 3: return func.call(thisArg, args[0], args[1], args[2]); } return func.apply(thisArg, args); } var apply_default = apply; // node_modules/lodash-es/_composeArgs.js var nativeMax = Math.max; function composeArgs(args, partials, holders, isCurried) { var argsIndex = -1, argsLength = args.length, holdersLength = holders.length, leftIndex = -1, leftLength = partials.length, rangeLength = nativeMax(argsLength - holdersLength, 0), result = Array(leftLength + rangeLength), isUncurried = !isCurried; while (++leftIndex < leftLength) { result[leftIndex] = partials[leftIndex]; } while (++argsIndex < holdersLength) { if (isUncurried || argsIndex < argsLength) { result[holders[argsIndex]] = args[argsIndex]; } } while (rangeLength--) { result[leftIndex++] = args[argsIndex++]; } return result; } var composeArgs_default = composeArgs; // node_modules/lodash-es/_composeArgsRight.js var nativeMax2 = Math.max; function composeArgsRight(args, partials, holders, isCurried) { var argsIndex = -1, argsLength = args.length, holdersIndex = -1, holdersLength = holders.length, rightIndex = -1, rightLength = partials.length, rangeLength = nativeMax2(argsLength - holdersLength, 0), result = Array(rangeLength + rightLength), isUncurried = !isCurried; while (++argsIndex < rangeLength) { result[argsIndex] = args[argsIndex]; } var offset = argsIndex; while (++rightIndex < rightLength) { result[offset + rightIndex] = partials[rightIndex]; } while (++holdersIndex < holdersLength) { if (isUncurried || argsIndex < argsLength) { result[offset + holders[holdersIndex]] = args[argsIndex++]; } } return result; } var composeArgsRight_default = composeArgsRight; // node_modules/lodash-es/_countHolders.js function countHolders(array, placeholder) { var length = array.length, result = 0; while (length--) { if (array[length] === placeholder) { ++result; } } return result; } var countHolders_default = countHolders; // node_modules/lodash-es/_baseLodash.js function baseLodash() { } var baseLodash_default = baseLodash; // node_modules/lodash-es/_LazyWrapper.js var MAX_ARRAY_LENGTH = 4294967295; function LazyWrapper(value) { this.__wrapped__ = value; this.__actions__ = []; this.__dir__ = 1; this.__filtered__ = false; this.__iteratees__ = []; this.__takeCount__ = MAX_ARRAY_LENGTH; this.__views__ = []; } LazyWrapper.prototype = baseCreate_default(baseLodash_default.prototype); LazyWrapper.prototype.constructor = LazyWrapper; var LazyWrapper_default = LazyWrapper; // node_modules/lodash-es/noop.js function noop() { } var noop_default = noop; // node_modules/lodash-es/_getData.js var getData = !metaMap_default ? noop_default : function(func) { return metaMap_default.get(func); }; var getData_default = getData; // node_modules/lodash-es/_realNames.js var realNames = {}; var realNames_default = realNames; // node_modules/lodash-es/_getFuncName.js var objectProto4 = Object.prototype; var hasOwnProperty3 = objectProto4.hasOwnProperty; function getFuncName(func) { var result = func.name + "", array = realNames_default[result], length = hasOwnProperty3.call(realNames_default, result) ? array.length : 0; while (length--) { var data = array[length], otherFunc = data.func; if (otherFunc == null || otherFunc == func) { return data.name; } } return result; } var getFuncName_default = getFuncName; // node_modules/lodash-es/_LodashWrapper.js function LodashWrapper(value, chainAll) { this.__wrapped__ = value; this.__actions__ = []; this.__chain__ = !!chainAll; this.__index__ = 0; this.__values__ = void 0; } LodashWrapper.prototype = baseCreate_default(baseLodash_default.prototype); LodashWrapper.prototype.constructor = LodashWrapper; var LodashWrapper_default = LodashWrapper; // node_modules/lodash-es/_copyArray.js function copyArray(source, array) { var index = -1, length = source.length; array || (array = Array(length)); while (++index < length) { array[index] = source[index]; } return array; } var copyArray_default = copyArray; // node_modules/lodash-es/_wrapperClone.js function wrapperClone(wrapper) { if (wrapper instanceof LazyWrapper_default) { return wrapper.clone(); } var result = new LodashWrapper_default(wrapper.__wrapped__, wrapper.__chain__); result.__actions__ = copyArray_default(wrapper.__actions__); result.__index__ = wrapper.__index__; result.__values__ = wrapper.__values__; return result; } var wrapperClone_default = wrapperClone; // node_modules/lodash-es/wrapperLodash.js var objectProto5 = Object.prototype; var hasOwnProperty4 = objectProto5.hasOwnProperty; function lodash(value) { if (isObjectLike_default(value) && !isArray_default(value) && !(value instanceof LazyWrapper_default)) { if (value instanceof LodashWrapper_default) { return value; } if (hasOwnProperty4.call(value, "__wrapped__")) { return wrapperClone_default(value); } } return new LodashWrapper_default(value); } lodash.prototype = baseLodash_default.prototype; lodash.prototype.constructor = lodash; var wrapperLodash_default = lodash; // node_modules/lodash-es/_isLaziable.js function isLaziable(func) { var funcName = getFuncName_default(func), other = wrapperLodash_default[funcName]; if (typeof other != "function" || !(funcName in LazyWrapper_default.prototype)) { return false; } if (func === other) { return true; } var data = getData_default(other); return !!data && func === data[0]; } var isLaziable_default = isLaziable; // node_modules/lodash-es/_shortOut.js var HOT_COUNT = 800; var HOT_SPAN = 16; var nativeNow = Date.now; function shortOut(func) { var count = 0, lastCalled = 0; return function() { var stamp = nativeNow(), remaining = HOT_SPAN - (stamp - lastCalled); lastCalled = stamp; if (remaining > 0) { if (++count >= HOT_COUNT) { return arguments[0]; } } else { count = 0; } return func.apply(void 0, arguments); }; } var shortOut_default = shortOut; // node_modules/lodash-es/_setData.js var setData = shortOut_default(baseSetData_default); var setData_default = setData; // node_modules/lodash-es/_getWrapDetails.js var reWrapDetails = /\{\n\/\* \[wrapped with (.+)\] \*/; var reSplitDetails = /,? & /; function getWrapDetails(source) { var match = source.match(reWrapDetails); return match ? match[1].split(reSplitDetails) : []; } var getWrapDetails_default = getWrapDetails; // node_modules/lodash-es/_insertWrapDetails.js var reWrapComment = /\{(?:\n\/\* \[wrapped with .+\] \*\/)?\n?/; function insertWrapDetails(source, details) { var length = details.length; if (!length) { return source; } var lastIndex = length - 1; details[lastIndex] = (length > 1 ? "& " : "") + details[lastIndex]; details = details.join(length > 2 ? ", " : " "); return source.replace(reWrapComment, "{\n/* [wrapped with " + details + "] */\n"); } var insertWrapDetails_default = insertWrapDetails; // node_modules/lodash-es/constant.js function constant(value) { return function() { return value; }; } var constant_default = constant; // node_modules/lodash-es/_defineProperty.js var defineProperty = function() { try { var func = getNative_default(Object, "defineProperty"); func({}, "", {}); return func; } catch (e) { } }(); var defineProperty_default = defineProperty; // node_modules/lodash-es/_baseSetToString.js var baseSetToString = !defineProperty_default ? identity_default : function(func, string) { return defineProperty_default(func, "toString", { "configurable": true, "enumerable": false, "value": constant_default(string), "writable": true }); }; var baseSetToString_default = baseSetToString; // node_modules/lodash-es/_setToString.js var setToString = shortOut_default(baseSetToString_default); var setToString_default = setToString; // node_modules/lodash-es/_arrayEach.js function arrayEach(array, iteratee) { var index = -1, length = array == null ? 0 : array.length; while (++index < length) { if (iteratee(array[index], index, array) === false) { break; } } return array; } var arrayEach_default = arrayEach; // node_modules/lodash-es/_baseFindIndex.js function baseFindIndex(array, predicate, fromIndex, fromRight) { var length = array.length, index = fromIndex + (fromRight ? 1 : -1); while (fromRight ? index-- : ++index < length) { if (predicate(array[index], index, array)) { return index; } } return -1; } var baseFindIndex_default = baseFindIndex; // node_modules/lodash-es/_baseIsNaN.js function baseIsNaN(value) { return value !== value; } var baseIsNaN_default = baseIsNaN; // node_modules/lodash-es/_strictIndexOf.js function strictIndexOf(array, value, fromIndex) { var index = fromIndex - 1, length = array.length; while (++index < length) { if (array[index] === value) { return index; } } return -1; } var strictIndexOf_default = strictIndexOf; // node_modules/lodash-es/_baseIndexOf.js function baseIndexOf(array, value, fromIndex) { return value === value ? strictIndexOf_default(array, value, fromIndex) : baseFindIndex_default(array, baseIsNaN_default, fromIndex); } var baseIndexOf_default = baseIndexOf; // node_modules/lodash-es/_arrayIncludes.js function arrayIncludes(array, value) { var length = array == null ? 0 : array.length; return !!length && baseIndexOf_default(array, value, 0) > -1; } var arrayIncludes_default = arrayIncludes; // node_modules/lodash-es/_updateWrapDetails.js var WRAP_BIND_FLAG2 = 1; var WRAP_BIND_KEY_FLAG = 2; var WRAP_CURRY_FLAG = 8; var WRAP_CURRY_RIGHT_FLAG = 16; var WRAP_PARTIAL_FLAG = 32; var WRAP_PARTIAL_RIGHT_FLAG = 64; var WRAP_ARY_FLAG = 128; var WRAP_REARG_FLAG = 256; var WRAP_FLIP_FLAG = 512; var wrapFlags = [ ["ary", WRAP_ARY_FLAG], ["bind", WRAP_BIND_FLAG2], ["bindKey", WRAP_BIND_KEY_FLAG], ["curry", WRAP_CURRY_FLAG], ["curryRight", WRAP_CURRY_RIGHT_FLAG], ["flip", WRAP_FLIP_FLAG], ["partial", WRAP_PARTIAL_FLAG], ["partialRight", WRAP_PARTIAL_RIGHT_FLAG], ["rearg", WRAP_REARG_FLAG] ]; function updateWrapDetails(details, bitmask) { arrayEach_default(wrapFlags, function(pair) { var value = "_." + pair[0]; if (bitmask & pair[1] && !arrayIncludes_default(details, value)) { details.push(value); } }); return details.sort(); } var updateWrapDetails_default = updateWrapDetails; // node_modules/lodash-es/_setWrapToString.js function setWrapToString(wrapper, reference, bitmask) { var source = reference + ""; return setToString_default(wrapper, insertWrapDetails_default(source, updateWrapDetails_default(getWrapDetails_default(source), bitmask))); } var setWrapToString_default = setWrapToString; // node_modules/lodash-es/_createRecurry.js var WRAP_BIND_FLAG3 = 1; var WRAP_BIND_KEY_FLAG2 = 2; var WRAP_CURRY_BOUND_FLAG = 4; var WRAP_CURRY_FLAG2 = 8; var WRAP_PARTIAL_FLAG2 = 32; var WRAP_PARTIAL_RIGHT_FLAG2 = 64; function createRecurry(func, bitmask, wrapFunc, placeholder, thisArg, partials, holders, argPos, ary, arity) { var isCurry = bitmask & WRAP_CURRY_FLAG2, newHolders = isCurry ? holders : void 0, newHoldersRight = isCurry ? void 0 : holders, newPartials = isCurry ? partials : void 0, newPartialsRight = isCurry ? void 0 : partials; bitmask |= isCurry ? WRAP_PARTIAL_FLAG2 : WRAP_PARTIAL_RIGHT_FLAG2; bitmask &= ~(isCurry ? WRAP_PARTIAL_RIGHT_FLAG2 : WRAP_PARTIAL_FLAG2); if (!(bitmask & WRAP_CURRY_BOUND_FLAG)) { bitmask &= ~(WRAP_BIND_FLAG3 | WRAP_BIND_KEY_FLAG2); } var newData = [ func, bitmask, thisArg, newPartials, newHolders, newPartialsRight, newHoldersRight, argPos, ary, arity ]; var result = wrapFunc.apply(void 0, newData); if (isLaziable_default(func)) { setData_default(result, newData); } result.placeholder = placeholder; return setWrapToString_default(result, func, bitmask); } var createRecurry_default = createRecurry; // node_modules/lodash-es/_getHolder.js function getHolder(func) { var object = func; return object.placeholder; } var getHolder_default = getHolder; // node_modules/lodash-es/_isIndex.js var MAX_SAFE_INTEGER = 9007199254740991; var reIsUint = /^(?:0|[1-9]\d*)$/; function isIndex(value, length) { var type = typeof value; length = length == null ? MAX_SAFE_INTEGER : length; return !!length && (type == "number" || type != "symbol" && reIsUint.test(value)) && (value > -1 && value % 1 == 0 && value < length); } var isIndex_default = isIndex; // node_modules/lodash-es/_reorder.js var nativeMin = Math.min; function reorder(array, indexes) { var arrLength = array.length, length = nativeMin(indexes.length, arrLength), oldArray = copyArray_default(array); while (length--) { var index = indexes[length]; array[length] = isIndex_default(index, arrLength) ? oldArray[index] : void 0; } return array; } var reorder_default = reorder; // node_modules/lodash-es/_replaceHolders.js var PLACEHOLDER = "__lodash_placeholder__"; function replaceHolders(array, placeholder) { var index = -1, length = array.length, resIndex = 0, result = []; while (++index < length) { var value = array[index]; if (value === placeholder || value === PLACEHOLDER) { array[index] = PLACEHOLDER; result[resIndex++] = index; } } return result; } var replaceHolders_default = replaceHolders; // node_modules/lodash-es/_createHybrid.js var WRAP_BIND_FLAG4 = 1; var WRAP_BIND_KEY_FLAG3 = 2; var WRAP_CURRY_FLAG3 = 8; var WRAP_CURRY_RIGHT_FLAG2 = 16; var WRAP_ARY_FLAG2 = 128; var WRAP_FLIP_FLAG2 = 512; function createHybrid(func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity) { var isAry = bitmask & WRAP_ARY_FLAG2, isBind = bitmask & WRAP_BIND_FLAG4, isBindKey = bitmask & WRAP_BIND_KEY_FLAG3, isCurried = bitmask & (WRAP_CURRY_FLAG3 | WRAP_CURRY_RIGHT_FLAG2), isFlip = bitmask & WRAP_FLIP_FLAG2, Ctor = isBindKey ? void 0 : createCtor_default(func); function wrapper() { var length = arguments.length, args = Array(length), index = length; while (index--) { args[index] = arguments[index]; } if (isCurried) { var placeholder = getHolder_default(wrapper), holdersCount = countHolders_default(args, placeholder); } if (partials) { args = composeArgs_default(args, partials, holders, isCurried); } if (partialsRight) { args = composeArgsRight_default(args, partialsRight, holdersRight, isCurried); } length -= holdersCount; if (isCurried && length < arity) { var newHolders = replaceHolders_default(args, placeholder); return createRecurry_default( func, bitmask, createHybrid, wrapper.placeholder, thisArg, args, newHolders, argPos, ary, arity - length ); } var thisBinding = isBind ? thisArg : this, fn = isBindKey ? thisBinding[func] : func; length = args.length; if (argPos) { args = reorder_default(args, argPos); } else if (isFlip && length > 1) { args.reverse(); } if (isAry && ary < length) { args.length = ary; } if (this && this !== root_default && this instanceof wrapper) { fn = Ctor || createCtor_default(fn); } return fn.apply(thisBinding, args); } return wrapper; } var createHybrid_default = createHybrid; // node_modules/lodash-es/_createCurry.js function createCurry(func, bitmask, arity) { var Ctor = createCtor_default(func); function wrapper() { var length = arguments.length, args = Array(length), index = length, placeholder = getHolder_default(wrapper); while (index--) { args[index] = arguments[index]; } var holders = length < 3 && args[0] !== placeholder && args[length - 1] !== placeholder ? [] : replaceHolders_default(args, placeholder); length -= holders.length; if (length < arity) { return createRecurry_default( func, bitmask, createHybrid_default, wrapper.placeholder, void 0, args, holders, void 0, void 0, arity - length ); } var fn = this && this !== root_default && this instanceof wrapper ? Ctor : func; return apply_default(fn, this, args); } return wrapper; } var createCurry_default = createCurry; // node_modules/lodash-es/_createPartial.js var WRAP_BIND_FLAG5 = 1; function createPartial(func, bitmask, thisArg, partials) { var isBind = bitmask & WRAP_BIND_FLAG5, Ctor = createCtor_default(func); function wrapper() { var argsIndex = -1, argsLength = arguments.length, leftIndex = -1, leftLength = partials.length, args = Array(leftLength + argsLength), fn = this && this !== root_default && this instanceof wrapper ? Ctor : func; while (++leftIndex < leftLength) { args[leftIndex] = partials[leftIndex]; } while (argsLength--) { args[leftIndex++] = arguments[++argsIndex]; } return apply_default(fn, isBind ? thisArg : this, args); } return wrapper; } var createPartial_default = createPartial; // node_modules/lodash-es/_mergeData.js var PLACEHOLDER2 = "__lodash_placeholder__"; var WRAP_BIND_FLAG6 = 1; var WRAP_BIND_KEY_FLAG4 = 2; var WRAP_CURRY_BOUND_FLAG2 = 4; var WRAP_CURRY_FLAG4 = 8; var WRAP_ARY_FLAG3 = 128; var WRAP_REARG_FLAG2 = 256; var nativeMin2 = Math.min; function mergeData(data, source) { var bitmask = data[1], srcBitmask = source[1], newBitmask = bitmask | srcBitmask, isCommon = newBitmask < (WRAP_BIND_FLAG6 | WRAP_BIND_KEY_FLAG4 | WRAP_ARY_FLAG3); var isCombo = srcBitmask == WRAP_ARY_FLAG3 && bitmask == WRAP_CURRY_FLAG4 || srcBitmask == WRAP_ARY_FLAG3 && bitmask == WRAP_REARG_FLAG2 && data[7].length <= source[8] || srcBitmask == (WRAP_ARY_FLAG3 | WRAP_REARG_FLAG2) && source[7].length <= source[8] && bitmask == WRAP_CURRY_FLAG4; if (!(isCommon || isCombo)) { return data; } if (srcBitmask & WRAP_BIND_FLAG6) { data[2] = source[2]; newBitmask |= bitmask & WRAP_BIND_FLAG6 ? 0 : WRAP_CURRY_BOUND_FLAG2; } var value = source[3]; if (value) { var partials = data[3]; data[3] = partials ? composeArgs_default(partials, value, source[4]) : value; data[4] = partials ? replaceHolders_default(data[3], PLACEHOLDER2) : source[4]; } value = source[5]; if (value) { partials = data[5]; data[5] = partials ? composeArgsRight_default(partials, value, source[6]) : value; data[6] = partials ? replaceHolders_default(data[5], PLACEHOLDER2) : source[6]; } value = source[7]; if (value) { data[7] = value; } if (srcBitmask & WRAP_ARY_FLAG3) { data[8] = data[8] == null ? source[8] : nativeMin2(data[8], source[8]); } if (data[9] == null) { data[9] = source[9]; } data[0] = source[0]; data[1] = newBitmask; return data; } var mergeData_default = mergeData; // node_modules/lodash-es/_createWrap.js var FUNC_ERROR_TEXT = "Expected a function"; var WRAP_BIND_FLAG7 = 1; var WRAP_BIND_KEY_FLAG5 = 2; var WRAP_CURRY_FLAG5 = 8; var WRAP_CURRY_RIGHT_FLAG3 = 16; var WRAP_PARTIAL_FLAG3 = 32; var WRAP_PARTIAL_RIGHT_FLAG3 = 64; var nativeMax3 = Math.max; function createWrap(func, bitmask, thisArg, partials, holders, argPos, ary, arity) { var isBindKey = bitmask & WRAP_BIND_KEY_FLAG5; if (!isBindKey && typeof func != "function") { throw new TypeError(FUNC_ERROR_TEXT); } var length = partials ? partials.length : 0; if (!length) { bitmask &= ~(WRAP_PARTIAL_FLAG3 | WRAP_PARTIAL_RIGHT_FLAG3); partials = holders = void 0; } ary = ary === void 0 ? ary : nativeMax3(toInteger_default(ary), 0); arity = arity === void 0 ? arity : toInteger_default(arity); length -= holders ? holders.length : 0; if (bitmask & WRAP_PARTIAL_RIGHT_FLAG3) { var partialsRight = partials, holdersRight = holders; partials = holders = void 0; } var data = isBindKey ? void 0 : getData_default(func); var newData = [ func, bitmask, thisArg, partials, holders, partialsRight, holdersRight, argPos, ary, arity ]; if (data) { mergeData_default(newData, data); } func = newData[0]; bitmask = newData[1]; thisArg = newData[2]; partials = newData[3]; holders = newData[4]; arity = newData[9] = newData[9] === void 0 ? isBindKey ? 0 : func.length : nativeMax3(newData[9] - length, 0); if (!arity && bitmask & (WRAP_CURRY_FLAG5 | WRAP_CURRY_RIGHT_FLAG3)) { bitmask &= ~(WRAP_CURRY_FLAG5 | WRAP_CURRY_RIGHT_FLAG3); } if (!bitmask || bitmask == WRAP_BIND_FLAG7) { var result = createBind_default(func, bitmask, thisArg); } else if (bitmask == WRAP_CURRY_FLAG5 || bitmask == WRAP_CURRY_RIGHT_FLAG3) { result = createCurry_default(func, bitmask, arity); } else if ((bitmask == WRAP_PARTIAL_FLAG3 || bitmask == (WRAP_BIND_FLAG7 | WRAP_PARTIAL_FLAG3)) && !holders.length) { result = createPartial_default(func, bitmask, thisArg, partials); } else { result = createHybrid_default.apply(void 0, newData); } var setter = data ? baseSetData_default : setData_default; return setWrapToString_default(setter(result, newData), func, bitmask); } var createWrap_default = createWrap; // node_modules/lodash-es/_baseAssignValue.js function baseAssignValue(object, key, value) { if (key == "__proto__" && defineProperty_default) { defineProperty_default(object, key, { "configurable": true, "enumerable": true, "value": value, "writable": true }); } else { object[key] = value; } } var baseAssignValue_default = baseAssignValue; // node_modules/lodash-es/eq.js function eq(value, other) { return value === other || value !== value && other !== other; } var eq_default = eq; // node_modules/lodash-es/_overRest.js var nativeMax4 = Math.max; function overRest(func, start, transform2) { start = nativeMax4(start === void 0 ? func.length - 1 : start, 0); return function() { var args = arguments, index = -1, length = nativeMax4(args.length - start, 0), array = Array(length); while (++index < length) { array[index] = args[start + index]; } index = -1; var otherArgs = Array(start + 1); while (++index < start) { otherArgs[index] = args[index]; } otherArgs[start] = transform2(array); return apply_default(func, this, otherArgs); }; } var overRest_default = overRest; // node_modules/lodash-es/_baseRest.js function baseRest(func, start) { return setToString_default(overRest_default(func, start, identity_default), func + ""); } var baseRest_default = baseRest; // node_modules/lodash-es/isLength.js var MAX_SAFE_INTEGER2 = 9007199254740991; function isLength(value) { return typeof value == "number" && value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER2; } var isLength_default = isLength; // node_modules/lodash-es/isArrayLike.js function isArrayLike(value) { return value != null && isLength_default(value.length) && !isFunction_default(value); } var isArrayLike_default = isArrayLike; // node_modules/lodash-es/_isPrototype.js var objectProto6 = Object.prototype; function isPrototype(value) { var Ctor = value && value.constructor, proto = typeof Ctor == "function" && Ctor.prototype || objectProto6; return value === proto; } var isPrototype_default = isPrototype; // node_modules/lodash-es/_baseTimes.js function baseTimes(n, iteratee) { var index = -1, result = Array(n); while (++index < n) { result[index] = iteratee(index); } return result; } var baseTimes_default = baseTimes; // node_modules/lodash-es/_baseIsArguments.js var argsTag = "[object Arguments]"; function baseIsArguments(value) { return isObjectLike_default(value) && baseGetTag_default(value) == argsTag; } var baseIsArguments_default = baseIsArguments; // node_modules/lodash-es/isArguments.js var objectProto7 = Object.prototype; var hasOwnProperty5 = objectProto7.hasOwnProperty; var propertyIsEnumerable = objectProto7.propertyIsEnumerable; var isArguments = baseIsArguments_default(/* @__PURE__ */ function() { return arguments; }()) ? baseIsArguments_default : function(value) { return isObjectLike_default(value) && hasOwnProperty5.call(value, "callee") && !propertyIsEnumerable.call(value, "callee"); }; var isArguments_default = isArguments; // node_modules/lodash-es/stubFalse.js function stubFalse() { return false; } var stubFalse_default = stubFalse; // node_modules/lodash-es/isBuffer.js var freeExports = typeof exports == "object" && exports && !exports.nodeType && exports; var freeModule = freeExports && typeof module == "object" && module && !module.nodeType && module; var moduleExports = freeModule && freeModule.exports === freeExports; var Buffer = moduleExports ? root_default.Buffer : void 0; var nativeIsBuffer = Buffer ? Buffer.isBuffer : void 0; var isBuffer = nativeIsBuffer || stubFalse_default; var isBuffer_default = isBuffer; // node_modules/lodash-es/_baseIsTypedArray.js var argsTag2 = "[object Arguments]"; var arrayTag = "[object Array]"; var boolTag = "[object Boolean]"; var dateTag = "[object Date]"; var errorTag = "[object Error]"; var funcTag2 = "[object Function]"; var mapTag = "[object Map]"; var numberTag = "[object Number]"; var objectTag = "[object Object]"; var regexpTag = "[object RegExp]"; var setTag = "[object Set]"; var stringTag = "[object String]"; var weakMapTag = "[object WeakMap]"; var arrayBufferTag = "[object ArrayBuffer]"; var dataViewTag = "[object DataView]"; var float32Tag = "[object Float32Array]"; var float64Tag = "[object Float64Array]"; var int8Tag = "[object Int8Array]"; var int16Tag = "[object Int16Array]"; var int32Tag = "[object Int32Array]"; var uint8Tag = "[object Uint8Array]"; var uint8ClampedTag = "[object Uint8ClampedArray]"; var uint16Tag = "[object Uint16Array]"; var uint32Tag = "[object Uint32Array]"; var typedArrayTags = {}; typedArrayTags[float32Tag] = typedArrayTags[float64Tag] = typedArrayTags[int8Tag] = typedArrayTags[int16Tag] = typedArrayTags[int32Tag] = typedArrayTags[uint8Tag] = typedArrayTags[uint8ClampedTag] = typedArrayTags[uint16Tag] = typedArrayTags[uint32Tag] = true; typedArrayTags[argsTag2] = typedArrayTags[arrayTag] = typedArrayTags[arrayBufferTag] = typedArrayTags[boolTag] = typedArrayTags[dataViewTag] = typedArrayTags[dateTag] = typedArrayTags[errorTag] = typedArrayTags[funcTag2] = typedArrayTags[mapTag] = typedArrayTags[numberTag] = typedArrayTags[objectTag] = typedArrayTags[regexpTag] = typedArrayTags[setTag] = typedArrayTags[stringTag] = typedArrayTags[weakMapTag] = false; function baseIsTypedArray(value) { return isObjectLike_default(value) && isLength_default(value.length) && !!typedArrayTags[baseGetTag_default(value)]; } var baseIsTypedArray_default = baseIsTypedArray; // node_modules/lodash-es/_baseUnary.js function baseUnary(func) { return function(value) { return func(value); }; } var baseUnary_default = baseUnary; // node_modules/lodash-es/_nodeUtil.js var freeExports2 = typeof exports == "object" && exports && !exports.nodeType && exports; var freeModule2 = freeExports2 && typeof module == "object" && module && !module.nodeType && module; var moduleExports2 = freeModule2 && freeModule2.exports === freeExports2; var freeProcess = moduleExports2 && freeGlobal_default.process; var nodeUtil = function() { try { var types = freeModule2 && freeModule2.require && freeModule2.require("util").types; if (types) { return types; } return freeProcess && freeProcess.binding && freeProcess.binding("util"); } catch (e) { } }(); var nodeUtil_default = nodeUtil; // node_modules/lodash-es/isTypedArray.js var nodeIsTypedArray = nodeUtil_default && nodeUtil_default.isTypedArray; var isTypedArray = nodeIsTypedArray ? baseUnary_default(nodeIsTypedArray) : baseIsTypedArray_default; var isTypedArray_default = isTypedArray; // node_modules/lodash-es/_arrayLikeKeys.js var objectProto8 = Object.prototype; var hasOwnProperty6 = objectProto8.hasOwnProperty; function arrayLikeKeys(value, inherited) { var isArr = isArray_default(value), isArg = !isArr && isArguments_default(value), isBuff = !isArr && !isArg && isBuffer_default(value), isType = !isArr && !isArg && !isBuff && isTypedArray_default(value), skipIndexes = isArr || isArg || isBuff || isType, result = skipIndexes ? baseTimes_default(value.length, String) : [], length = result.length; for (var key in value) { if ((inherited || hasOwnProperty6.call(value, key)) && !(skipIndexes && // Safari 9 has enumerable `arguments.length` in strict mode. (key == "length" || // Node.js 0.10 has enumerable non-index properties on buffers. isBuff && (key == "offset" || key == "parent") || // PhantomJS 2 has enumerable non-index properties on typed arrays. isType && (key == "buffer" || key == "byteLength" || key == "byteOffset") || // Skip index properties. isIndex_default(key, length)))) { result.push(key); } } return result; } var arrayLikeKeys_default = arrayLikeKeys; // node_modules/lodash-es/_overArg.js function overArg(func, transform2) { return function(arg) { return func(transform2(arg)); }; } var overArg_default = overArg; // node_modules/lodash-es/_nativeKeys.js var nativeKeys = overArg_default(Object.keys, Object); var nativeKeys_default = nativeKeys; // node_modules/lodash-es/_baseKeys.js var objectProto9 = Object.prototype; var hasOwnProperty7 = objectProto9.hasOwnProperty; function baseKeys(object) { if (!isPrototype_default(object)) { return nativeKeys_default(object); } var result = []; for (var key in Object(object)) { if (hasOwnProperty7.call(object, key) && key != "constructor") { result.push(key); } } return result; } var baseKeys_default = baseKeys; // node_modules/lodash-es/keys.js function keys(object) { return isArrayLike_default(object) ? arrayLikeKeys_default(object) : baseKeys_default(object); } var keys_default = keys; // node_modules/lodash-es/_isKey.js var reIsDeepProp = /\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/; var reIsPlainProp = /^\w*$/; function isKey(value, object) { if (isArray_default(value)) { return false; } var type = typeof value; if (type == "number" || type == "symbol" || type == "boolean" || value == null || isSymbol_default(value)) { return true; } return reIsPlainProp.test(value) || !reIsDeepProp.test(value) || object != null && value in Object(object); } var isKey_default = isKey; // node_modules/lodash-es/_nativeCreate.js var nativeCreate = getNative_default(Object, "create"); var nativeCreate_default = nativeCreate; // node_modules/lodash-es/_hashClear.js function hashClear() { this.__data__ = nativeCreate_default ? nativeCreate_default(null) : {}; this.size = 0; } var hashClear_default = hashClear; // node_modules/lodash-es/_hashDelete.js function hashDelete(key) { var result = this.has(key) && delete this.__data__[key]; this.size -= result ? 1 : 0; return result; } var hashDelete_default = hashDelete; // node_modules/lodash-es/_hashGet.js var HASH_UNDEFINED = "__lodash_hash_undefined__"; var objectProto10 = Object.prototype; var hasOwnProperty8 = objectProto10.hasOwnProperty; function hashGet(key) { var data = this.__data__; if (nativeCreate_default) { var result = data[key]; return result === HASH_UNDEFINED ? void 0 : result; } return hasOwnProperty8.call(data, key) ? data[key] : void 0; } var hashGet_default = hashGet; // node_modules/lodash-es/_hashHas.js var objectProto11 = Object.prototype; var hasOwnProperty9 = objectProto11.hasOwnProperty; function hashHas(key) { var data = this.__data__; return nativeCreate_default ? data[key] !== void 0 : hasOwnProperty9.call(data, key); } var hashHas_default = hashHas; // node_modules/lodash-es/_hashSet.js var HASH_UNDEFINED2 = "__lodash_hash_undefined__"; function hashSet(key, value) { var data = this.__data__; this.size += this.has(key) ? 0 : 1; data[key] = nativeCreate_default && value === void 0 ? HASH_UNDEFINED2 : value; return this; } var hashSet_default = hashSet; // node_modules/lodash-es/_Hash.js function Hash(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } Hash.prototype.clear = hashClear_default; Hash.prototype["delete"] = hashDelete_default; Hash.prototype.get = hashGet_default; Hash.prototype.has = hashHas_default; Hash.prototype.set = hashSet_default; var Hash_default = Hash; // node_modules/lodash-es/_listCacheClear.js function listCacheClear() { this.__data__ = []; this.size = 0; } var listCacheClear_default = listCacheClear; // node_modules/lodash-es/_assocIndexOf.js function assocIndexOf(array, key) { var length = array.length; while (length--) { if (eq_default(array[length][0], key)) { return length; } } return -1; } var assocIndexOf_default = assocIndexOf; // node_modules/lodash-es/_listCacheDelete.js var arrayProto = Array.prototype; var splice = arrayProto.splice; function listCacheDelete(key) { var data = this.__data__, index = assocIndexOf_default(data, key); if (index < 0) { return false; } var lastIndex = data.length - 1; if (index == lastIndex) { data.pop(); } else { splice.call(data, index, 1); } --this.size; return true; } var listCacheDelete_default = listCacheDelete; // node_modules/lodash-es/_listCacheGet.js function listCacheGet(key) { var data = this.__data__, index = assocIndexOf_default(data, key); return index < 0 ? void 0 : data[index][1]; } var listCacheGet_default = listCacheGet; // node_modules/lodash-es/_listCacheHas.js function listCacheHas(key) { return assocIndexOf_default(this.__data__, key) > -1; } var listCacheHas_default = listCacheHas; // node_modules/lodash-es/_listCacheSet.js function listCacheSet(key, value) { var data = this.__data__, index = assocIndexOf_default(data, key); if (index < 0) { ++this.size; data.push([key, value]); } else { data[index][1] = value; } return this; } var listCacheSet_default = listCacheSet; // node_modules/lodash-es/_ListCache.js function ListCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } ListCache.prototype.clear = listCacheClear_default; ListCache.prototype["delete"] = listCacheDelete_default; ListCache.prototype.get = listCacheGet_default; ListCache.prototype.has = listCacheHas_default; ListCache.prototype.set = listCacheSet_default; var ListCache_default = ListCache; // node_modules/lodash-es/_Map.js var Map2 = getNative_default(root_default, "Map"); var Map_default = Map2; // node_modules/lodash-es/_mapCacheClear.js function mapCacheClear() { this.size = 0; this.__data__ = { "hash": new Hash_default(), "map": new (Map_default || ListCache_default)(), "string": new Hash_default() }; } var mapCacheClear_default = mapCacheClear; // node_modules/lodash-es/_isKeyable.js function isKeyable(value) { var type = typeof value; return type == "string" || type == "number" || type == "symbol" || type == "boolean" ? value !== "__proto__" : value === null; } var isKeyable_default = isKeyable; // node_modules/lodash-es/_getMapData.js function getMapData(map, key) { var data = map.__data__; return isKeyable_default(key) ? data[typeof key == "string" ? "string" : "hash"] : data.map; } var getMapData_default = getMapData; // node_modules/lodash-es/_mapCacheDelete.js function mapCacheDelete(key) { var result = getMapData_default(this, key)["delete"](key); this.size -= result ? 1 : 0; return result; } var mapCacheDelete_default = mapCacheDelete; // node_modules/lodash-es/_mapCacheGet.js function mapCacheGet(key) { return getMapData_default(this, key).get(key); } var mapCacheGet_default = mapCacheGet; // node_modules/lodash-es/_mapCacheHas.js function mapCacheHas(key) { return getMapData_default(this, key).has(key); } var mapCacheHas_default = mapCacheHas; // node_modules/lodash-es/_mapCacheSet.js function mapCacheSet(key, value) { var data = getMapData_default(this, key), size = data.size; data.set(key, value); this.size += data.size == size ? 0 : 1; return this; } var mapCacheSet_default = mapCacheSet; // node_modules/lodash-es/_MapCache.js function MapCache(entries) { var index = -1, length = entries == null ? 0 : entries.length; this.clear(); while (++index < length) { var entry = entries[index]; this.set(entry[0], entry[1]); } } MapCache.prototype.clear = mapCacheClear_default; MapCache.prototype["delete"] = mapCacheDelete_default; MapCache.prototype.get = mapCacheGet_default; MapCache.prototype.has = mapCacheHas_default; MapCache.prototype.set = mapCacheSet_default; var MapCache_default = MapCache; // node_modules/lodash-es/memoize.js var FUNC_ERROR_TEXT2 = "Expected a function"; function memoize(func, resolver) { if (typeof func != "function" || resolver != null && typeof resolver != "function") { throw new TypeError(FUNC_ERROR_TEXT2); } var memoized = function() { var args = arguments, key = resolver ? resolver.apply(this, args) : args[0], cache2 = memoized.cache; if (cache2.has(key)) { return cache2.get(key); } var result = func.apply(this, args); memoized.cache = cache2.set(key, result) || cache2; return result; }; memoized.cache = new (memoize.Cache || MapCache_default)(); return memoized; } memoize.Cache = MapCache_default; var memoize_default = memoize; // node_modules/lodash-es/_memoizeCapped.js var MAX_MEMOIZE_SIZE = 500; function memoizeCapped(func) { var result = memoize_default(func, function(key) { if (cache2.size === MAX_MEMOIZE_SIZE) { cache2.clear(); } return key; }); var cache2 = result.cache; return result; } var memoizeCapped_default = memoizeCapped; // node_modules/lodash-es/_stringToPath.js var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g; var reEscapeChar = /\\(\\)?/g; var stringToPath = memoizeCapped_default(function(string) { var result = []; if (string.charCodeAt(0) === 46) { result.push(""); } string.replace(rePropName, function(match, number, quote, subString) { result.push(quote ? subString.replace(reEscapeChar, "$1") : number || match); }); return result; }); var stringToPath_default = stringToPath; // node_modules/lodash-es/toString.js function toString(value) { return value == null ? "" : baseToString_default(value); } var toString_default = toString; // node_modules/lodash-es/_castPath.js function castPath(value, object) { if (isArray_default(value)) { return value; } return isKey_default(value, object) ? [value] : stringToPath_default(toString_default(value)); } var castPath_default = castPath; // node_modules/lodash-es/_toKey.js var INFINITY3 = 1 / 0; function toKey(value) { if (typeof value == "string" || isSymbol_default(value)) { return value; } var result = value + ""; return result == "0" && 1 / value == -INFINITY3 ? "-0" : result; } var toKey_default = toKey; // node_modules/lodash-es/_baseGet.js function baseGet(object, path) { path = castPath_default(path, object); var index = 0, length = path.length; while (object != null && index < length) { object = object[toKey_default(path[index++])]; } return index && index == length ? object : void 0; } var baseGet_default = baseGet; // node_modules/lodash-es/get.js function get(object, path, defaultValue) { var result = object == null ? void 0 : baseGet_default(object, path); return result === void 0 ? defaultValue : result; } var get_default = get; // node_modules/lodash-es/_arrayPush.js function arrayPush(array, values) { var index = -1, length = values.length, offset = array.length; while (++index < length) { array[offset + index] = values[index]; } return array; } var arrayPush_default = arrayPush; // node_modules/lodash-es/_getPrototype.js var getPrototype = overArg_default(Object.getPrototypeOf, Object); var getPrototype_default = getPrototype; // node_modules/lodash-es/before.js var FUNC_ERROR_TEXT3 = "Expected a function"; function before(n, func) { var result; if (typeof func != "function") { throw new TypeError(FUNC_ERROR_TEXT3); } n = toInteger_default(n); return function() { if (--n > 0) { result = func.apply(this, arguments); } if (n <= 1) { func = void 0; } return result; }; } var before_default = before; // node_modules/lodash-es/_baseSlice.js function baseSlice(array, start, end) { var index = -1, length = array.length; if (start < 0) { start = -start > length ? 0 : length + start; } end = end > length ? length : end; if (end < 0) { end += length; } length = start > end ? 0 : end - start >>> 0; start >>>= 0; var result = Array(length); while (++index < length) { result[index] = array[index + start]; } return result; } var baseSlice_default = baseSlice; // node_modules/lodash-es/_stackClear.js function stackClear() { this.__data__ = new ListCache_default(); this.size = 0; } var stackClear_default = stackClear; // node_modules/lodash-es/_stackDelete.js function stackDelete(key) { var data = this.__data__, result = data["delete"](key); this.size = data.size; return result; } var stackDelete_default = stackDelete; // node_modules/lodash-es/_stackGet.js function stackGet(key) { return this.__data__.get(key); } var stackGet_default = stackGet; // node_modules/lodash-es/_stackHas.js function stackHas(key) { return this.__data__.has(key); } var stackHas_default = stackHas; // node_modules/lodash-es/_stackSet.js var LARGE_ARRAY_SIZE = 200; function stackSet(key, value) { var data = this.__data__; if (data instanceof ListCache_default) { var pairs = data.__data__; if (!Map_default || pairs.length < LARGE_ARRAY_SIZE - 1) { pairs.push([key, value]); this.size = ++data.size; return this; } data = this.__data__ = new MapCache_default(pairs); } data.set(key, value); this.size = data.size; return this; } var stackSet_default = stackSet; // node_modules/lodash-es/_Stack.js function Stack(entries) { var data = this.__data__ = new ListCache_default(entries); this.size = data.size; } Stack.prototype.clear = stackClear_default; Stack.prototype["delete"] = stackDelete_default; Stack.prototype.get = stackGet_default; Stack.prototype.has = stackHas_default; Stack.prototype.set = stackSet_default; var Stack_default = Stack; // node_modules/lodash-es/_arrayFilter.js function arrayFilter(array, predicate) { var index = -1, length = array == null ? 0 : array.length, resIndex = 0, result = []; while (++index < length) { var value = array[index]; if (predicate(value, index, array)) { result[resIndex++] = value; } } return result; } var arrayFilter_default = arrayFilter; // node_modules/lodash-es/stubArray.js function stubArray() { return []; } var stubArray_default = stubArray; // node_modules/lodash-es/_getSymbols.js var objectProto12 = Object.prototype; var propertyIsEnumerable2 = objectProto12.propertyIsEnumerable; var nativeGetSymbols = Object.getOwnPropertySymbols; var getSymbols = !nativeGetSymbols ? stubArray_default : function(object) { if (object == null) { return []; } object = Object(object); return arrayFilter_default(nativeGetSymbols(object), function(symbol) { return propertyIsEnumerable2.call(object, symbol); }); }; var getSymbols_default = getSymbols; // node_modules/lodash-es/_baseGetAllKeys.js function baseGetAllKeys(object, keysFunc, symbolsFunc) { var result = keysFunc(object); return isArray_default(object) ? result : arrayPush_default(result, symbolsFunc(object)); } var baseGetAllKeys_default = baseGetAllKeys; // node_modules/lodash-es/_getAllKeys.js function getAllKeys(object) { return baseGetAllKeys_default(object, keys_default, getSymbols_default); } var getAllKeys_default = getAllKeys; // node_modules/lodash-es/_DataView.js var DataView = getNative_default(root_default, "DataView"); var DataView_default = DataView; // node_modules/lodash-es/_Promise.js var Promise2 = getNative_default(root_default, "Promise"); var Promise_default = Promise2; // node_modules/lodash-es/_Set.js var Set = getNative_default(root_default, "Set"); var Set_default = Set; // node_modules/lodash-es/_getTag.js var mapTag2 = "[object Map]"; var objectTag2 = "[object Object]"; var promiseTag = "[object Promise]"; var setTag2 = "[object Set]"; var weakMapTag2 = "[object WeakMap]"; var dataViewTag2 = "[object DataView]"; var dataViewCtorString = toSource_default(DataView_default); var mapCtorString = toSource_default(Map_default); var promiseCtorString = toSource_default(Promise_default); var setCtorString = toSource_default(Set_default); var weakMapCtorString = toSource_default(WeakMap_default); var getTag = baseGetTag_default; if (DataView_default && getTag(new DataView_default(new ArrayBuffer(1))) != dataViewTag2 || Map_default && getTag(new Map_default()) != mapTag2 || Promise_default && getTag(Promise_default.resolve()) != promiseTag || Set_default && getTag(new Set_default()) != setTag2 || WeakMap_default && getTag(new WeakMap_default()) != weakMapTag2) { getTag = function(value) { var result = baseGetTag_default(value), Ctor = result == objectTag2 ? value.constructor : void 0, ctorString = Ctor ? toSource_default(Ctor) : ""; if (ctorString) { switch (ctorString) { case dataViewCtorString: return dataViewTag2; case mapCtorString: return mapTag2; case promiseCtorString: return promiseTag; case setCtorString: return setTag2; case weakMapCtorString: return weakMapTag2; } } return result; }; } var getTag_default = getTag; // node_modules/lodash-es/_Uint8Array.js var Uint8Array = root_default.Uint8Array; var Uint8Array_default = Uint8Array; // node_modules/lodash-es/_setCacheAdd.js var HASH_UNDEFINED3 = "__lodash_hash_undefined__"; function setCacheAdd(value) { this.__data__.set(value, HASH_UNDEFINED3); return this; } var setCacheAdd_default = setCacheAdd; // node_modules/lodash-es/_setCacheHas.js function setCacheHas(value) { return this.__data__.has(value); } var setCacheHas_default = setCacheHas; // node_modules/lodash-es/_SetCache.js function SetCache(values) { var index = -1, length = values == null ? 0 : values.length; this.__data__ = new MapCache_default(); while (++index < length) { this.add(values[index]); } } SetCache.prototype.add = SetCache.prototype.push = setCacheAdd_default; SetCache.prototype.has = setCacheHas_default; var SetCache_default = SetCache; // node_modules/lodash-es/_arraySome.js function arraySome(array, predicate) { var index = -1, length = array == null ? 0 : array.length; while (++index < length) { if (predicate(array[index], index, array)) { return true; } } return false; } var arraySome_default = arraySome; // node_modules/lodash-es/_cacheHas.js function cacheHas(cache2, key) { return cache2.has(key); } var cacheHas_default = cacheHas; // node_modules/lodash-es/_equalArrays.js var COMPARE_PARTIAL_FLAG = 1; var COMPARE_UNORDERED_FLAG = 2; function equalArrays(array, other, bitmask, customizer, equalFunc, stack) { var isPartial = bitmask & COMPARE_PARTIAL_FLAG, arrLength = array.length, othLength = other.length; if (arrLength != othLength && !(isPartial && othLength > arrLength)) { return false; } var arrStacked = stack.get(array); var othStacked = stack.get(other); if (arrStacked && othStacked) { return arrStacked == other && othStacked == array; } var index = -1, result = true, seen = bitmask & COMPARE_UNORDERED_FLAG ? new SetCache_default() : void 0; stack.set(array, other); stack.set(other, array); while (++index < arrLength) { var arrValue = array[index], othValue = other[index]; if (customizer) { var compared = isPartial ? customizer(othValue, arrValue, index, other, array, stack) : customizer(arrValue, othValue, index, array, other, stack); } if (compared !== void 0) { if (compared) { continue; } result = false; break; } if (seen) { if (!arraySome_default(other, function(othValue2, othIndex) { if (!cacheHas_default(seen, othIndex) && (arrValue === othValue2 || equalFunc(arrValue, othValue2, bitmask, customizer, stack))) { return seen.push(othIndex); } })) { result = false; break; } } else if (!(arrValue === othValue || equalFunc(arrValue, othValue, bitmask, customizer, stack))) { result = false; break; } } stack["delete"](array); stack["delete"](other); return result; } var equalArrays_default = equalArrays; // node_modules/lodash-es/_mapToArray.js function mapToArray(map) { var index = -1, result = Array(map.size); map.forEach(function(value, key) { result[++index] = [key, value]; }); return result; } var mapToArray_default = mapToArray; // node_modules/lodash-es/_setToArray.js function setToArray(set3) { var index = -1, result = Array(set3.size); set3.forEach(function(value) { result[++index] = value; }); return result; } var setToArray_default = setToArray; // node_modules/lodash-es/_equalByTag.js var COMPARE_PARTIAL_FLAG2 = 1; var COMPARE_UNORDERED_FLAG2 = 2; var boolTag2 = "[object Boolean]"; var dateTag2 = "[object Date]"; var errorTag2 = "[object Error]"; var mapTag3 = "[object Map]"; var numberTag2 = "[object Number]"; var regexpTag2 = "[object RegExp]"; var setTag3 = "[object Set]"; var stringTag2 = "[object String]"; var symbolTag2 = "[object Symbol]"; var arrayBufferTag2 = "[object ArrayBuffer]"; var dataViewTag3 = "[object DataView]"; var symbolProto2 = Symbol_default ? Symbol_default.prototype : void 0; var symbolValueOf = symbolProto2 ? symbolProto2.valueOf : void 0; function equalByTag(object, other, tag, bitmask, customizer, equalFunc, stack) { switch (tag) { case dataViewTag3: if (object.byteLength != other.byteLength || object.byteOffset != other.byteOffset) { return false; } object = object.buffer; other = other.buffer; case arrayBufferTag2: if (object.byteLength != other.byteLength || !equalFunc(new Uint8Array_default(object), new Uint8Array_default(other))) { return false; } return true; case boolTag2: case dateTag2: case numberTag2: return eq_default(+object, +other); case errorTag2: return object.name == other.name && object.message == other.message; case regexpTag2: case stringTag2: return object == other + ""; case mapTag3: var convert = mapToArray_default; case setTag3: var isPartial = bitmask & COMPARE_PARTIAL_FLAG2; convert || (convert = setToArray_default); if (object.size != other.size && !isPartial) { return false; } var stacked = stack.get(object); if (stacked) { return stacked == other; } bitmask |= COMPARE_UNORDERED_FLAG2; stack.set(object, other); var result = equalArrays_default(convert(object), convert(other), bitmask, customizer, equalFunc, stack); stack["delete"](object); return result; case symbolTag2: if (symbolValueOf) { return symbolValueOf.call(object) == symbolValueOf.call(other); } } return false; } var equalByTag_default = equalByTag; // node_modules/lodash-es/_equalObjects.js var COMPARE_PARTIAL_FLAG3 = 1; var objectProto13 = Object.prototype; var hasOwnProperty10 = objectProto13.hasOwnProperty; function equalObjects(object, other, bitmask, customizer, equalFunc, stack) { var isPartial = bitmask & COMPARE_PARTIAL_FLAG3, objProps = getAllKeys_default(object), objLength = objProps.length, othProps = getAllKeys_default(other), othLength = othProps.length; if (objLength != othLength && !isPartial) { return false; } var index = objLength; while (index--) { var key = objProps[index]; if (!(isPartial ? key in other : hasOwnProperty10.call(other, key))) { return false; } } var objStacked = stack.get(object); var othStacked = stack.get(other); if (objStacked && othStacked) { return objStacked == other && othStacked == object; } var result = true; stack.set(object, other); stack.set(other, object); var skipCtor = isPartial; while (++index < objLength) { key = objProps[index]; var objValue = object[key], othValue = other[key]; if (customizer) { var compared = isPartial ? customizer(othValue, objValue, key, other, object, stack) : customizer(objValue, othValue, key, object, other, stack); } if (!(compared === void 0 ? objValue === othValue || equalFunc(objValue, othValue, bitmask, customizer, stack) : compared)) { result = false; break; } skipCtor || (skipCtor = key == "constructor"); } if (result && !skipCtor) { var objCtor = object.constructor, othCtor = other.constructor; if (objCtor != othCtor && ("constructor" in object && "constructor" in other) && !(typeof objCtor == "function" && objCtor instanceof objCtor && typeof othCtor == "function" && othCtor instanceof othCtor)) { result = false; } } stack["delete"](object); stack["delete"](other); return result; } var equalObjects_default = equalObjects; // node_modules/lodash-es/_baseIsEqualDeep.js var COMPARE_PARTIAL_FLAG4 = 1; var argsTag3 = "[object Arguments]"; var arrayTag2 = "[object Array]"; var objectTag3 = "[object Object]"; var objectProto14 = Object.prototype; var hasOwnProperty11 = objectProto14.hasOwnProperty; function baseIsEqualDeep(object, other, bitmask, customizer, equalFunc, stack) { var objIsArr = isArray_default(object), othIsArr = isArray_default(other), objTag = objIsArr ? arrayTag2 : getTag_default(object), othTag = othIsArr ? arrayTag2 : getTag_default(other); objTag = objTag == argsTag3 ? objectTag3 : objTag; othTag = othTag == argsTag3 ? objectTag3 : othTag; var objIsObj = objTag == objectTag3, othIsObj = othTag == objectTag3, isSameTag = objTag == othTag; if (isSameTag && isBuffer_default(object)) { if (!isBuffer_default(other)) { return false; } objIsArr = true; objIsObj = false; } if (isSameTag && !objIsObj) { stack || (stack = new Stack_default()); return objIsArr || isTypedArray_default(object) ? equalArrays_default(object, other, bitmask, customizer, equalFunc, stack) : equalByTag_default(object, other, objTag, bitmask, customizer, equalFunc, stack); } if (!(bitmask & COMPARE_PARTIAL_FLAG4)) { var objIsWrapped = objIsObj && hasOwnProperty11.call(object, "__wrapped__"), othIsWrapped = othIsObj && hasOwnProperty11.call(other, "__wrapped__"); if (objIsWrapped || othIsWrapped) { var objUnwrapped = objIsWrapped ? object.value() : object, othUnwrapped = othIsWrapped ? other.value() : other; stack || (stack = new Stack_default()); return equalFunc(objUnwrapped, othUnwrapped, bitmask, customizer, stack); } } if (!isSameTag) { return false; } stack || (stack = new Stack_default()); return equalObjects_default(object, other, bitmask, customizer, equalFunc, stack); } var baseIsEqualDeep_default = baseIsEqualDeep; // node_modules/lodash-es/_baseIsEqual.js function baseIsEqual(value, other, bitmask, customizer, stack) { if (value === other) { return true; } if (value == null || other == null || !isObjectLike_default(value) && !isObjectLike_default(other)) { return value !== value && other !== other; } return baseIsEqualDeep_default(value, other, bitmask, customizer, baseIsEqual, stack); } var baseIsEqual_default = baseIsEqual; // node_modules/lodash-es/_baseIsMatch.js var COMPARE_PARTIAL_FLAG5 = 1; var COMPARE_UNORDERED_FLAG3 = 2; function baseIsMatch(object, source, matchData, customizer) { var index = matchData.length, length = index, noCustomizer = !customizer; if (object == null) { return !length; } object = Object(object); while (index--) { var data = matchData[index]; if (noCustomizer && data[2] ? data[1] !== object[data[0]] : !(data[0] in object)) { return false; } } while (++index < length) { data = matchData[index]; var key = data[0], objValue = object[key], srcValue = data[1]; if (noCustomizer && data[2]) { if (objValue === void 0 && !(key in object)) { return false; } } else { var stack = new Stack_default(); if (customizer) { var result = customizer(objValue, srcValue, key, object, source, stack); } if (!(result === void 0 ? baseIsEqual_default(srcValue, objValue, COMPARE_PARTIAL_FLAG5 | COMPARE_UNORDERED_FLAG3, customizer, stack) : result)) { return false; } } } return true; } var baseIsMatch_default = baseIsMatch; // node_modules/lodash-es/_isStrictComparable.js function isStrictComparable(value) { return value === value && !isObject_default(value); } var isStrictComparable_default = isStrictComparable; // node_modules/lodash-es/_getMatchData.js function getMatchData(object) { var result = keys_default(object), length = result.length; while (length--) { var key = result[length], value = object[key]; result[length] = [key, value, isStrictComparable_default(value)]; } return result; } var getMatchData_default = getMatchData; // node_modules/lodash-es/_matchesStrictComparable.js function matchesStrictComparable(key, srcValue) { return function(object) { if (object == null) { return false; } return object[key] === srcValue && (srcValue !== void 0 || key in Object(object)); }; } var matchesStrictComparable_default = matchesStrictComparable; // node_modules/lodash-es/_baseMatches.js function baseMatches(source) { var matchData = getMatchData_default(source); if (matchData.length == 1 && matchData[0][2]) { return matchesStrictComparable_default(matchData[0][0], matchData[0][1]); } return function(object) { return object === source || baseIsMatch_default(object, source, matchData); }; } var baseMatches_default = baseMatches; // node_modules/lodash-es/_baseHasIn.js function baseHasIn(object, key) { return object != null && key in Object(object); } var baseHasIn_default = baseHasIn; // node_modules/lodash-es/_hasPath.js function hasPath(object, path, hasFunc) { path = castPath_default(path, object); var index = -1, length = path.length, result = false; while (++index < length) { var key = toKey_default(path[index]); if (!(result = object != null && hasFunc(object, key))) { break; } object = object[key]; } if (result || ++index != length) { return result; } length = object == null ? 0 : object.length; return !!length && isLength_default(length) && isIndex_default(key, length) && (isArray_default(object) || isArguments_default(object)); } var hasPath_default = hasPath; // node_modules/lodash-es/hasIn.js function hasIn(object, path) { return object != null && hasPath_default(object, path, baseHasIn_default); } var hasIn_default = hasIn; // node_modules/lodash-es/_baseMatchesProperty.js var COMPARE_PARTIAL_FLAG6 = 1; var COMPARE_UNORDERED_FLAG4 = 2; function baseMatchesProperty(path, srcValue) { if (isKey_default(path) && isStrictComparable_default(srcValue)) { return matchesStrictComparable_default(toKey_default(path), srcValue); } return function(object) { var objValue = get_default(object, path); return objValue === void 0 && objValue === srcValue ? hasIn_default(object, path) : baseIsEqual_default(srcValue, objValue, COMPARE_PARTIAL_FLAG6 | COMPARE_UNORDERED_FLAG4); }; } var baseMatchesProperty_default = baseMatchesProperty; // node_modules/lodash-es/_baseProperty.js function baseProperty(key) { return function(object) { return object == null ? void 0 : object[key]; }; } var baseProperty_default = baseProperty; // node_modules/lodash-es/_basePropertyDeep.js function basePropertyDeep(path) { return function(object) { return baseGet_default(object, path); }; } var basePropertyDeep_default = basePropertyDeep; // node_modules/lodash-es/property.js function property(path) { return isKey_default(path) ? baseProperty_default(toKey_default(path)) : basePropertyDeep_default(path); } var property_default = property; // node_modules/lodash-es/_baseIteratee.js function baseIteratee(value) { if (typeof value == "function") { return value; } if (value == null) { return identity_default; } if (typeof value == "object") { return isArray_default(value) ? baseMatchesProperty_default(value[0], value[1]) : baseMatches_default(value); } return property_default(value); } var baseIteratee_default = baseIteratee; // node_modules/lodash-es/_createBaseFor.js function createBaseFor(fromRight) { return function(object, iteratee, keysFunc) { var index = -1, iterable = Object(object), props = keysFunc(object), length = props.length; while (length--) { var key = props[fromRight ? length : ++index]; if (iteratee(iterable[key], key, iterable) === false) { break; } } return object; }; } var createBaseFor_default = createBaseFor; // node_modules/lodash-es/_baseFor.js var baseFor = createBaseFor_default(); var baseFor_default = baseFor; // node_modules/lodash-es/_baseForOwn.js function baseForOwn(object, iteratee) { return object && baseFor_default(object, iteratee, keys_default); } var baseForOwn_default = baseForOwn; // node_modules/lodash-es/curryRight.js var WRAP_CURRY_RIGHT_FLAG4 = 16; function curryRight(func, arity, guard) { arity = guard ? void 0 : arity; var result = createWrap_default(func, WRAP_CURRY_RIGHT_FLAG4, void 0, void 0, void 0, void 0, void 0, arity); result.placeholder = curryRight.placeholder; return result; } curryRight.placeholder = {}; var curryRight_default = curryRight; // node_modules/lodash-es/now.js var now = function() { return root_default.Date.now(); }; var now_default = now; // node_modules/lodash-es/debounce.js var FUNC_ERROR_TEXT4 = "Expected a function"; var nativeMax5 = Math.max; var nativeMin3 = Math.min; function debounce(func, wait, options) { var lastArgs, lastThis, maxWait, result, timerId, lastCallTime, lastInvokeTime = 0, leading = false, maxing = false, trailing = true; if (typeof func != "function") { throw new TypeError(FUNC_ERROR_TEXT4); } wait = toNumber_default(wait) || 0; if (isObject_default(options)) { leading = !!options.leading; maxing = "maxWait" in options; maxWait = maxing ? nativeMax5(toNumber_default(options.maxWait) || 0, wait) : maxWait; trailing = "trailing" in options ? !!options.trailing : trailing; } function invokeFunc(time) { var args = lastArgs, thisArg = lastThis; lastArgs = lastThis = void 0; lastInvokeTime = time; result = func.apply(thisArg, args); return result; } function leadingEdge(time) { lastInvokeTime = time; timerId = setTimeout(timerExpired, wait); return leading ? invokeFunc(time) : result; } function remainingWait(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime, timeWaiting = wait - timeSinceLastCall; return maxing ? nativeMin3(timeWaiting, maxWait - timeSinceLastInvoke) : timeWaiting; } function shouldInvoke(time) { var timeSinceLastCall = time - lastCallTime, timeSinceLastInvoke = time - lastInvokeTime; return lastCallTime === void 0 || timeSinceLastCall >= wait || timeSinceLastCall < 0 || maxing && timeSinceLastInvoke >= maxWait; } function timerExpired() { var time = now_default(); if (shouldInvoke(time)) { return trailingEdge(time); } timerId = setTimeout(timerExpired, remainingWait(time)); } function trailingEdge(time) { timerId = void 0; if (trailing && lastArgs) { return invokeFunc(time); } lastArgs = lastThis = void 0; return result; } function cancel() { if (timerId !== void 0) { clearTimeout(timerId); } lastInvokeTime = 0; lastArgs = lastCallTime = lastThis = timerId = void 0; } function flush() { return timerId === void 0 ? result : trailingEdge(now_default()); } function debounced() { var time = now_default(), isInvoking = shouldInvoke(time); lastArgs = arguments; lastThis = this; lastCallTime = time; if (isInvoking) { if (timerId === void 0) { return leadingEdge(lastCallTime); } if (maxing) { clearTimeout(timerId); timerId = setTimeout(timerExpired, wait); return invokeFunc(lastCallTime); } } if (timerId === void 0) { timerId = setTimeout(timerExpired, wait); } return result; } debounced.cancel = cancel; debounced.flush = flush; return debounced; } var debounce_default = debounce; // node_modules/lodash-es/_arrayIncludesWith.js function arrayIncludesWith(array, value, comparator) { var index = -1, length = array == null ? 0 : array.length; while (++index < length) { if (comparator(value, array[index])) { return true; } } return false; } var arrayIncludesWith_default = arrayIncludesWith; // node_modules/lodash-es/last.js function last(array) { var length = array == null ? 0 : array.length; return length ? array[length - 1] : void 0; } var last_default = last; // node_modules/lodash-es/_baseWhile.js function baseWhile(array, predicate, isDrop, fromRight) { var length = array.length, index = fromRight ? length : -1; while ((fromRight ? index-- : ++index < length) && predicate(array[index], index, array)) { } return isDrop ? baseSlice_default(array, fromRight ? 0 : index, fromRight ? index + 1 : length) : baseSlice_default(array, fromRight ? index + 1 : 0, fromRight ? length : index); } var baseWhile_default = baseWhile; // node_modules/lodash-es/fromPairs.js function fromPairs(pairs) { var index = -1, length = pairs == null ? 0 : pairs.length, result = {}; while (++index < length) { var pair = pairs[index]; result[pair[0]] = pair[1]; } return result; } var fromPairs_default = fromPairs; // node_modules/lodash-es/_parent.js function parent(object, path) { return path.length < 2 ? object : baseGet_default(object, baseSlice_default(path, 0, -1)); } var parent_default = parent; // node_modules/lodash-es/isEqual.js function isEqual(value, other) { return baseIsEqual_default(value, other); } var isEqual_default = isEqual; // node_modules/lodash-es/mapKeys.js function mapKeys(object, iteratee) { var result = {}; iteratee = baseIteratee_default(iteratee, 3); baseForOwn_default(object, function(value, key, object2) { baseAssignValue_default(result, iteratee(value, key, object2), value); }); return result; } var mapKeys_default = mapKeys; // node_modules/lodash-es/mapValues.js function mapValues(object, iteratee) { var result = {}; iteratee = baseIteratee_default(iteratee, 3); baseForOwn_default(object, function(value, key, object2) { baseAssignValue_default(result, key, iteratee(value, key, object2)); }); return result; } var mapValues_default = mapValues; // node_modules/lodash-es/_baseUnset.js function baseUnset(object, path) { path = castPath_default(path, object); object = parent_default(object, path); return object == null || delete object[toKey_default(last_default(path))]; } var baseUnset_default = baseUnset; // node_modules/lodash-es/once.js function once(func) { return before_default(2, func); } var once_default = once; // node_modules/lodash-es/_baseIndexOfWith.js function baseIndexOfWith(array, value, fromIndex, comparator) { var index = fromIndex - 1, length = array.length; while (++index < length) { if (comparator(array[index], value)) { return index; } } return -1; } var baseIndexOfWith_default = baseIndexOfWith; // node_modules/lodash-es/_basePullAll.js var arrayProto2 = Array.prototype; var splice2 = arrayProto2.splice; function basePullAll(array, values, iteratee, comparator) { var indexOf = comparator ? baseIndexOfWith_default : baseIndexOf_default, index = -1, length = values.length, seen = array; if (array === values) { values = copyArray_default(values); } if (iteratee) { seen = arrayMap_default(array, baseUnary_default(iteratee)); } while (++index < length) { var fromIndex = 0, value = values[index], computed = iteratee ? iteratee(value) : value; while ((fromIndex = indexOf(seen, computed, fromIndex, comparator)) > -1) { if (seen !== array) { splice2.call(seen, fromIndex, 1); } splice2.call(array, fromIndex, 1); } } return array; } var basePullAll_default = basePullAll; // node_modules/lodash-es/pullAll.js function pullAll(array, values) { return array && array.length && values && values.length ? basePullAll_default(array, values) : array; } var pullAll_default = pullAll; // node_modules/lodash-es/pull.js var pull = baseRest_default(pullAll_default); var pull_default = pull; // node_modules/lodash-es/_basePullAt.js var arrayProto3 = Array.prototype; var splice3 = arrayProto3.splice; function basePullAt(array, indexes) { var length = array ? indexes.length : 0, lastIndex = length - 1; while (length--) { var index = indexes[length]; if (length == lastIndex || index !== previous) { var previous = index; if (isIndex_default(index)) { splice3.call(array, index, 1); } else { baseUnset_default(array, index); } } } return array; } var basePullAt_default = basePullAt; // node_modules/lodash-es/remove.js function remove(array, predicate) { var result = []; if (!(array && array.length)) { return result; } var index = -1, indexes = [], length = array.length; predicate = baseIteratee_default(predicate, 3); while (++index < length) { var value = array[index]; if (predicate(value, index, array)) { result.push(value); indexes.push(index); } } basePullAt_default(array, indexes); return result; } var remove_default = remove; // node_modules/lodash-es/takeRightWhile.js function takeRightWhile(array, predicate) { return array && array.length ? baseWhile_default(array, baseIteratee_default(predicate, 3), false, true) : []; } var takeRightWhile_default = takeRightWhile; // node_modules/lodash-es/transform.js function transform(object, iteratee, accumulator) { var isArr = isArray_default(object), isArrLike = isArr || isBuffer_default(object) || isTypedArray_default(object); iteratee = baseIteratee_default(iteratee, 4); if (accumulator == null) { var Ctor = object && object.constructor; if (isArrLike) { accumulator = isArr ? new Ctor() : []; } else if (isObject_default(object)) { accumulator = isFunction_default(Ctor) ? baseCreate_default(getPrototype_default(object)) : {}; } else { accumulator = {}; } } (isArrLike ? arrayEach_default : baseForOwn_default)(object, function(value, index, object2) { return iteratee(accumulator, value, index, object2); }); return accumulator; } var transform_default = transform; // node_modules/lodash-es/_createSet.js var INFINITY4 = 1 / 0; var createSet = !(Set_default && 1 / setToArray_default(new Set_default([, -0]))[1] == INFINITY4) ? noop_default : function(values) { return new Set_default(values); }; var createSet_default = createSet; // node_modules/lodash-es/_baseUniq.js var LARGE_ARRAY_SIZE2 = 200; function baseUniq(array, iteratee, comparator) { var index = -1, includes = arrayIncludes_default, length = array.length, isCommon = true, result = [], seen = result; if (comparator) { isCommon = false; includes = arrayIncludesWith_default; } else if (length >= LARGE_ARRAY_SIZE2) { var set3 = iteratee ? null : createSet_default(array); if (set3) { return setToArray_default(set3); } isCommon = false; includes = cacheHas_default; seen = new SetCache_default(); } else { seen = iteratee ? [] : result; } outer: while (++index < length) { var value = array[index], computed = iteratee ? iteratee(value) : value; value = comparator || value !== 0 ? value : 0; if (isCommon && computed === computed) { var seenIndex = seen.length; while (seenIndex--) { if (seen[seenIndex] === computed) { continue outer; } } if (iteratee) { seen.push(computed); } result.push(value); } else if (!includes(seen, computed, comparator)) { if (seen !== result) { seen.push(computed); } result.push(value); } } return result; } var baseUniq_default = baseUniq; // node_modules/lodash-es/uniqBy.js function uniqBy(array, iteratee) { return array && array.length ? baseUniq_default(array, baseIteratee_default(iteratee, 2)) : []; } var uniqBy_default = uniqBy; // lib/environment/utils/messaging.js var MessageHandlerError = class extends Error { constructor(message, stack) { super(); this.message = message; this.stack = stack; } }; function createMessageHandler(_sendMessage3, errorOnUnrecognizedTypes = false) { const listeners = /* @__PURE__ */ new Map(); function addListener3(type, callback) { if (listeners.has(type)) { throw new Error(`Listener for "${type}" already exists.`); } listeners.set(type, callback); } async function sendMessage3(type, data, context) { const { data: newData, error } = await _sendMessage3({ type, data }, context); if (error) { throw new MessageHandlerError(error.message, `${error.stack} at target's "${type}" handler`); } else { return newData; } } function _handleMessage3({ type, data }, sendResponse, context) { const listener = listeners.get(type); if (!listener) { if (errorOnUnrecognizedTypes) { sendResponse({ error: { message: `Unrecognised message type: ${type}`, stack: "" } }); } return false; } let response; try { response = listener(data, context); } catch (e) { console.error(e); sendResponse({ error: { message: e.message, stack: e.stack } }); return false; } if (response instanceof Promise) { response.then( (data2) => sendResponse({ data: data2 }), (e) => { console.error(e); sendResponse({ error: { message: e.message, stack: e.stack } }); } ); return true; } else { sendResponse({ data: response }); return false; } } return { _handleMessage: _handleMessage3, sendMessage: sendMessage3, addListener: addListener3 }; } // lib/environment/utils/api.js function apiToPromise(func) { return (...args) => new Promise((resolve, reject) => { func(...args, (...results) => { if (chrome.runtime.lastError) { reject(new Error(chrome.runtime.lastError.message)); } else { resolve(results.length > 1 ? results : results[0]); } }); }); } // lib/environment/background/messaging.js var _sendMessage = apiToPromise(chrome.tabs.sendMessage); var { _handleMessage, sendMessage, addListener } = createMessageHandler((obj, tabId) => _sendMessage(tabId, obj)); chrome.runtime.onMessage.addListener((obj, sender, sendResponse) => _handleMessage(obj, sendResponse, sender)); // lib/environment/background/ajax.js addListener("ajax", async ({ method, url, headers, data, credentials }) => { const rawResponse = await fetch(url, { method, headers, credentials, body: data }); return { ok: rawResponse.ok, status: rawResponse.status, headers: fromPairs_default(Array.from(rawResponse.headers.entries())), text: await rawResponse.text() }; }); // lib/environment/background/auth.js addListener("authFlow", ({ domain, clientId, scope, interactive }) => { const redirectUri = true ? "https://redditenhancementsuite.com/oauth" : chrome.identity.getRedirectURL(); const url = new URL(domain); url.searchParams.set("client_id", clientId); url.searchParams.set("scope", scope); url.searchParams.set("response_type", "token"); url.searchParams.set("redirect_uri", redirectUri); if (true) { if (interactive) { return emulateAuthFlowInNewWindow(url.href, redirectUri); } else { return emulateAuthFlowInBackground(url.href); } } else if (false) { return apiToPromise(chrome.identity.launchWebAuthFlow)({ url: url.href, interactive }); } }); async function emulateAuthFlowInNewWindow(url, redirectUri) { const { tabs: [{ id }] } = await apiToPromise(chrome.windows.create)({ url, type: "popup" }); return new Promise((resolve, reject) => { function updateListener(tabId, updates) { if (tabId !== id) return; if (updates.url && updates.url.startsWith(redirectUri)) { stopListening(); resolve(updates.url); apiToPromise(chrome.tabs.remove)(id); } } function removeListener(tabId) { if (tabId !== id) return; stopListening(); reject(new Error("User cancelled or denied access.")); } function stopListening() { chrome.tabs.onUpdated.removeListener(updateListener); chrome.tabs.onRemoved.removeListener(removeListener); } chrome.tabs.onUpdated.addListener(updateListener); chrome.tabs.onRemoved.addListener(removeListener); }); } function emulateAuthFlowInBackground(url) { return new Promise((resolve, reject) => { function headersListener({ redirectUrl }) { stopListening(); resolve(redirectUrl); } function stopListening() { chrome.webRequest.onBeforeRedirect.removeListener(headersListener); } chrome.webRequest.onBeforeRedirect.addListener(headersListener, { urls: [url] }); fetch(url, { credentials: "include" }).then(() => { stopListening(); reject(new Error("User interaction is required.")); }, (e) => { stopListening(); reject(new Error(`Authorization page could not be loaded: ${e.message}`)); console.error(e); }); }); } // lib/environment/background/download.js addListener("download", ({ url, filename }, { tab: { incognito } }) => { chrome.downloads.download({ url, filename, ...true ? {} : { incognito } }); }); // lib/environment/background/history.js addListener("addURLToHistory", (url) => { chrome.history.addUrl({ url }); }); addListener("isURLVisited", async (url) => { const visits = await apiToPromise(chrome.history.getVisits)({ url }); return visits.length > 0; }); // locales/locales/de.json var de_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Kommentar Navigator \xF6ffnen, wenn ein Benutzer hervorgehoben ist.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Genaues Datum f\xFCr Kommentare/Nachrichten anzeigen.", description: "" }, commentPrevDesc: { message: "Stellt eine Echtzeitvorschau beim Schreiben von Kommentaren, Textbeitr\xE4gen, Nachrichten, Wikiseiten und anderen Markdown-Textfeldern zur Verf\xFCgung, sowie einen zweispaltigen Editor wenn man Romane schreiben will.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Maximale H\xF6he", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Position von Vorschau und Editor wechseln (Vorschau links und Editor rechts).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Kommentar abw\xE4rts bewegen", description: "" }, troubleshooterBreakpointDesc: { message: "Pausiere JavaScript-Ausf\xFChrung, um Debugging zu erlauben.", description: "" }, dashboardMenuItemDesc: { message: "Zeige einen Link zu meinem Dashboard im RES-Men\xFC.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "Der Benutzer hat Reddit Gold", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Move Up Sibling", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Stylesheet laden", description: "" }, commentStyleCommentIndentTitle: { message: "Kommentar Einr\xFCckung", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Alle RES-Module abschalten", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Genaues Datum im Moderationsbericht anzeigen (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Zuf\xE4llig", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filtere diesen Subreddit in /r/all und /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Kommentare in neuem Tab weiterverfolgen", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "Entfolgen", description: "" }, showImagesAutoplayVideoTitle: { message: "Videos automatisch abspielen", description: "" }, orangeredName: { message: "Ungelesene Nachrichten", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Alle 24 Stunden einen zuf\xE4lligen Tipp anzeigen.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Schl\xFCsselw\xF6rter", description: "" }, filteRedditAllowNSFWTitle: { message: "NSFW erlauben", description: "" }, hoverOpenDelayTitle: { message: "\xD6ffnungs-Verz\xF6gerung", description: "" }, keyboardNavNextPageTitle: { message: "N\xE4chste Seite", description: "" }, commentToolsSuperKeyTitle: { message: "Super-Schalter", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Benutzerdefiniertes Ziel", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Kommentar Permalinks Kontext", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Stelle gespeicherten Tab wieder her", description: "" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar.", description: "" }, orangeredRetroUnreadCountDesc: { message: "Falls dir der reddit-native Z\xE4hler der ungelesenen Nachrichten nicht gef\xE4llt, kannst du ihn durch den Z\xE4hler mit Klammern im RES-Stil ersetzen.", description: "" }, showImagesHideNSFWTitle: { message: "NSFW ausblenden", description: "" }, nerHideDupesDesc: { message: "Doppelte Posts verblassen oder komplett verstecken, die bereits auf der Seite angezeigt werden.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "Benutzer-Markierer", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Kommentar Navigator nach unten", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Einen Button hinzuf\xFCgen, um die Suchoptionen w\xE4hrend der Suche auszublenden.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Mit Kommentar Navigator nach oben verschieben.", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Das "snoo" Icon, oder das Dropdown-Men\xFC in der \xE4lteren Version verwenden?', description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Halte Makro Liste offen", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Kommentar Navigator", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Tastenk\xFCrzel", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Link in neuem Tab weiterverfolgen (nur auf Link-Seiten)", description: "" }, onboardingDesc: { message: "Erfahre mehr \xFCber RES auf /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "NSFW Filter", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Ausblende-Verz\xF6gerung", description: "" }, profileNavigatorFadeDelayTitle: { message: "Ausblend-Verz\xF6gerung", description: "" }, commentToolsLinkKeyTitle: { message: "Link-Schalter", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+add Verkn\xFCpfung", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "Subreddit Front Page", description: "" }, keyboardNavFollowSubredditTitle: { message: "Subreddit folgen", description: "" }, accountSwitcherShowGoldTitle: { message: "Gold anzeigen", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "Stylesheet-Lader", description: "" }, subredditInfoOver18: { message: "\xDCber 18:", description: "" }, userInfoIgnore: { message: "Ignorieren", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "Men\xFC-Item", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "Sind sie sicher?", description: "" }, messageMenuAddShortcut: { message: "+add Verkn\xFCpfung", description: "" }, troubleshooterName: { message: "Fehlerbehebung", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Ungelesene Anzahl im Retro-Stil", description: "" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Posteingang Neuer Tab", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "Nachdem ein Link bewertet wurde, wird automatisch der N\xE4chste angezeigt.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "RES Begr\xFC\xDFungskomitee ", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Filtere diesen Subreddit in /r/all und /domain/* nicht mehr", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Zum obersten Kommentar im nachfolgenden Thread springen.", description: "" }, hoverName: { message: "RES Mouseover-Infopopup", description: "" }, commentPreviewEnableForCommentsTitle: { message: "F\xFCr Kommentare aktivieren", description: "" }, spamButtonDesc: { message: "F\xFCgt einen Spam-Button f\xFCr einfaches Melden hinzu.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "Markierung", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text, der automatisch in das Betreff-Feld eingef\xFCgt wird, au\xDFer wenn es durch den Kontext automatisch ausgef\xFCllt wird.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Helfen Dir deine t\xE4gliche Dosis an orange-roten Upvotes zu Bekommen.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Nachtmodus An", description: "" }, myAccountCategory: { message: "Mein Account", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments", description: "" }, yes: { message: "Ja", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Men\xFCpunkt", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Color", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Erzwinge einen bestimmten Stil der Gro\xDFschreibung bei Beitragstiteln.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Informiert dich, wie viele Kommentare geschrieben wurden, seit du das letzte Mal einen Thread besucht hast.", description: "" }, userTaggerPageXOfY: { message: "$1 von $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "Meine Benutzer-Markierungen", description: "" }, pageNavShowLinkNewTabDesc: { message: "Link in neuem Tab \xF6ffnen.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Sucheinstellungen", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "Do No Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "Subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "Video angesehen", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Zeige den "Kommentiere als" Teil in fett an, wenn sie nicht ihren Erst-Account verwenden. Der erste Account im Account-Wechsler wird als Erst-Account verwendet.', description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "Zeige beim Einreichen von Posts die Anzahl der eingegebenen Zeichen im Titel- und Textfeld und zeige an, wenn sie das 300 Zeichen-Limit beim Titel \xFCberschreiten.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Die Gr\xF6\xDFe der Bilder im markierten Beitragsbereich erh\xF6hen (genauere Kontrolle).", description: "" }, nerName: { message: "Unendliches Reddit", description: "" }, subredditInfoTitle: { message: "Titel:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatisch (erfordert Geolokalisierung)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "Link und Kommentare in neuen Hintergrund-Tabs anzeigen.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Comment Hover Border", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Verblassen", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Die Bilder im markierten Beitragsbereich verkleinern (genauere Kontrolle).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Zur n\xE4chsten Seite (Nur Linklistenseiten).", description: "" }, notificationsPerNotificationType: { message: "per notification type", description: "" }, subredditTaggerDesc: { message: "F\xFCgt dem Beginn von den Titeln von Beitr\xE4gen auf der Startseite und /r/all einen benutzerdefinierten Text hinzu. N\xFCtzlich um den Beitr\xE4gen einen Kontext zu geben.", description: "" }, spoilerTagsTransitionTitle: { message: "\xDCbergang", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Verbesserte M\xF6glichkeiten, zu verschiedenen Teilen deiner Benutzerseite zu gelangen.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "F\xFCgt zus\xE4tzliche Funktionalit\xE4t zu Reddit-Markdown-Tabellen hinzu (momentan nur Sortierung)", description: "" }, notificationsAlwaysSticky: { message: "Immer angeheftet", description: "" }, searchName: { message: "RES-Einstellungen durchsuchen", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Setze Favicon beim Verlassen zur\xFCck", description: "" }, quickMessageSendAsTitle: { message: "Senden als", description: "" }, pageNavName: { message: "Seitennavigator", description: "" }, keyboardNavFollowLinkDesc: { message: "Link folgen (nur auf Link-Seiten)", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Features verz\xF6gern", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "Speichert den Zustand versteckter Kommentare f\xFCr alle Seitenaufrufe.", description: "" }, quickMessageDesc: { message: "Ein Pop-Up-Dialog, der dir erlaubt Nachrichten von \xFCberall auf Reddit zu verschicken. Nachrichten k\xF6nnen per Strg-Enter oder Command-Enter aus dem Schnellnachricht-Dialog verschickt werden.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "Benutzername", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Video-Steuerung anzeigen", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Nachtmodus Start", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "Nutzerleiste ausgeblendet", description: "" }, accountSwitcherUnknownError: { message: "Anmelden als $1 ist wegen eines unbekannten Fehlers fehlgeschlagen: $2\n\nM\xF6chtest du deine Einstellungen \xFCberpr\xFCfen?", description: "" }, commentDepthAddSubreddit: { message: "+add Subreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Swap Big Editor Layout", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Automatisch laden", description: "" }, nerReturnToPrevPageDesc: { message: 'Zur zuletzt ge\xF6ffneten Seite zur\xFCckkehren, wenn der "Zur\xFCck"-Button gedr\xFCckt wird?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Section Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Springe zum nachfolgenden \xFCbergeordneten Kommentar.", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Alle offenen Tabs aktualisieren, wenn RES auf orangereds \xFCberpr\xFCft", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Score Hidden Time Left", description: "" }, hoverWidthDesc: { message: "Standard Popop Breite.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Nachtmodus ein/aus.", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Endlose Kommentare", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "ausgenommen eigene Posts", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "Gehe zur Modmail in einem neuen Tab.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Ausblend-Geschwindigkeit", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Ausblend-Verz\xF6gerung", description: "" }, keyboardNavModmailNewTabTitle: { message: "Modmail Neuer Tab", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Zeige den Abonnier Button?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Sichert deinen aktuellen RES-Zustand. Lade es \xFCber "Datei" herunter oder lade es zu einem Cloud-Anbieter hoch.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "\xD6ffne die Filter-Befehlszeile.", description: "" }, betteRedditDoNoCtrlFDesc: { message: 'Beim Durchsuchen von Text mit dem Browser nur Kommentare/Post Text durchsuchen, und keine Navigationslinks ("Permalink Quelle speichern...").\nStandardm\xE4ssig aufgrund des geringen Leistungsverlustes deaktiviert.', description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Nur Direktlinks", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special color for each username.", description: "" }, backupName: { message: "Sicherung & Wiederherstellung", description: "" }, profileNavigatorSectionLinksDesc: { message: "Links die im Profil-Hovermen\xFC gezeigt werden", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "Subreddit-Stil verwenden", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "F\xFCge diesen Subreddit zu ihrem Dashboard hinzu", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Andere Tabs updaten", description: "" }, nightModeUseSubredditStylesTitle: { message: "Benutze Subreddit-Stil", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "Nachdem ein Kommentar bewertet wurde, automatisch den n\xE4chsten Kommentar ausw\xE4hlen.", description: "" }, styleTweaksNavTopTitle: { message: "Navigation Oben", description: "" }, gfycatUseMobileGfycatTitle: { message: "Verwende die mobile Website von Gfycat", description: "" }, commentToolsItalicKeyDesc: { message: "Tastenk\xFCrzel f\xFCr kursiven Text.", description: "" }, messageMenuLinksDesc: { message: "Links to show in the mail icon drop down menu.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit blendet einige Kommentar-Sortieroptionen (Zuf\xE4llig, etc.) auf den meisten Seiten aus. Diese Option blendet sie ein.", description: "" }, commandLineLaunchTitle: { message: "\xD6ffnen", description: "" }, betteRedditDesc: { message: "Verbessert Reddits Benutzeroberfl\xE4che an verschiedenen Stellen, beispielsweise ein Link zu allen Kommentaren, die M\xF6glichkeit versehentlich versteckte Beitr\xE4ge wieder zu zeigen, und mehr.", description: "" }, resTipsDesc: { message: "F\xFCgt Tipps und Tricks zur RES-Konsole hinzu.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Zu vorherigem Kindkommentar springen - Springt zum vorherigen Kindkommentar auf der selben Tiefe", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Kommentarfeldhierarchie Hervorheben, wenn mit der Maus dar\xFCber gefahren wird (ausschalten f\xFCr bessere Performanz)", description: "" }, imgurImageResolutionTitle: { message: "Imgur-Bildaufl\xF6sung", description: "" }, commentToolsBoldKeyDesc: { message: "Tastenk\xFCrzel f\xFCr fettgedruckten Text.", description: "" }, hoverWidthTitle: { message: "Breite", description: "" }, dashboardName: { message: "RES Dashboard", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Show Last Edited Timestamp", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Angemeldet bleiben", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Erstelle Links zu cross-geposteten Subreddits in Beitrags-Taglines.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Verz\xF6gerung in Millisekunden, bevor der Tooltip verschwindet.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Klicken sie hier um mehr zu erfahren", description: "" }, keyboardNavInboxNewTabDesc: { message: "Gehe zum Posteingang in einem neuen Tab.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Voransicht beim Bearbeiten der Subreddit-Einstellungen anzeigen.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "Alle Nutzer", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "Add an icon to every page that takes you to the top when clicked.", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expand/collapse comments (comments pages only).", description: "" }, commentPreviewDraftStyleTitle: { message: "Entwurfs-Stil", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Genaues Datum im Wiki anzeigen.", description: "" }, logoLinkInbox: { message: "Posteingang", description: "" }, searchHelperDesc: { message: "Stellt Hilfe zur Suchfunktion zur Verf\xFCgung.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Follow Link New Tab Focus", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Zeitstempel von Beitr\xE4gen anzeigen", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "Voreinstellungen", description: "" }, styleTweaksName: { message: "Design Verbesserungen", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Ank\xFCndigungen", description: "" }, hoverInstancesDesc: { message: "Spezifische Pop-Ups managen", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Move up to the previous comment on threaded comment pages.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Show Timestamp Sidebar", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Ausblende-Geschwindigkeit", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Verz\xF6gerung, in Millisekunden, bevor ein Link ausgeblendet wird.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Karma anzeigen", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatischer Nachtmodus", description: "" }, noPartDisableCommentTextareaDesc: { message: "Kommentieren deaktivieren.", description: "" }, nerReturnToPrevPageTitle: { message: "Zur vorherigen Seite zur\xFCckkehren", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Ausblend Animations-Geschwindigkeit (in Sekunden).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'F\xFCge einen "Zeige den gesamten Kontext" Link hinzu wenn sie einen Kommentar-Link \xF6ffnen.', description: "" }, messageMenuFadeDelayTitle: { message: "Ausblende-Verz\xF6gerung", description: "" }, commentToolsDesc: { message: "Stellt Werkzeuge und Tastenk\xFCrzel zum Verfassen von Kommentaren, Textbeitr\xE4gen, Wiki-Seiten und anderen markdown Textbereichen zur Verf\xFCgung.", description: "" }, noPartName: { message: "Keine Beteiligung", description: "" }, presetsDesc: { message: "W\xE4hle zwischen verschiedenen RES Konfigurationsvoreinstellungen. Jede Voreinstellung schaltet verschiedene Komponenten/Optionen ein oder aus, setzt jedoch nicht die gesamte Konfiguration zur\xFCck.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Zeige die Kommentar-Werkzeuge im Bann-Notiz Textfeld.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Go to subreddit of selected link in a new tab (link pages only).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Subreddit-Stil", description: "" }, keyboardNavDownVoteTitle: { message: "Negativ Bewerten", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Abw\xE4rts bewegen", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Notification Types", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "Nachdem ein Kommentar bewertet wurde, wird automatisch der N\xE4chste angezeigt.", description: "" }, hoverCloseOnMouseOutDesc: { message: "Whether to close the popup on mouseout in addition to the close button.", description: "" }, subredditTaggerName: { message: "Subreddit-Markierer", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Highlight If Alt Account", description: "" }, userInfoDesc: { message: "F\xFCgt Benutzern einen Tooltip hinzu", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Close Delay", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "Erm\xF6glicht dir, den Link des Reddit-Logos zu \xE4ndern.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Richtung", description: "" }, dashboardDefaultPostsDesc: { message: "Anzahl an Posts, die standardm\xE4\xDFig in jedem Widget angezeigt werden.", description: "" }, pageNavDesc: { message: "Stellt Werkzeuge zur Verf\xFCgung, um auf der Seite zu navigieren.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Meinen aktuellen Benutzernamen im Accountwechsler anzeigen.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 ist Teil von $2 Multireddits", description: "" }, commentToolsStrikeKeyTitle: { message: "Durchgestrichen-Schalter", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Verz\xF6gerung in Millisekunden, bevor der hover Tooltip erscheint.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Benutze ", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Zeige standardm\xE4\xDFig den Kommentar Navigator.", description: "" }, keyboardNavSaveRESTitle: { message: "RES Speichern", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "Nach Verbergen runter scrollen", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Kommentarfelder", description: "" }, profileNavigatorName: { message: "Profil-Navigator", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS-Klassen, die zum
hinzugef\xFCgt werden sollen.", description: "" }, no: { message: "Nein", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Linearer Scroll-Stil", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "\xDCbergeordnete Kommentare anzeigen.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Passe RES mit verschiedenen Voreinstellungen schnell an.", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "Versteckte Kommentare merken", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Ausgew\xE4hlter Eintrag", description: "" }, betteRedditPinHeaderTitle: { message: "Seitenkopf fixieren.", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Macro Placeholders", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "F\xFCr Bann-Benachrichtigungen aktivieren", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Nachrichten in neuem Tab \xF6ffnen", description: "" }, versionDesc: { message: "Verwalte aktuelle/vorherige Versionspr\xFCfungen.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Ihr Nutzername, Karma, etc. sind ausgeblendet. Sie k\xF6nnen sie wieder einblenden indem sie den $1 Knopf in der Ecke rechts-oben.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Beim Scrollen automatisch das oberste Element ausw\xE4hlen", description: "" }, keyboardNavFollowLinkTitle: { message: "Link folgen", description: "" }, keyboardNavMoveBottomDesc: { message: "Ans Ende der Liste setzen (auf Linkseiten).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Ausgew\xE4hlten Kommentar oder Link positiv Bewerten (entfernt die positive Bewertung aber nicht).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Ausblend-Verz\xF6gerung", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Kommentar Permalinks", description: "" }, aboutOptionsLicenseTitle: { message: "Lizenz", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Vorschau f\xFCr Beitr\xE4ge anzeigen.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Bild nach rechts bewegen", description: "" }, keyboardNavPrevPageDesc: { message: "Zur vorherigen Seite (Nur Linklistenseiten).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "\xDCberwache besuchte Beitr\xE4ge", description: "" }, accountSwitcherUserSwitched: { message: "Du hast zu /u/$1 gewechselt.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "\xD6ffne Links aus Kommentaren in einem neuen Tab.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Klasse", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Ausblend-Geschwindigkeit", description: "" }, userInfoCommentKarma: { message: "Kommentar Karma", description: "" }, settingsConsoleDesc: { message: "Verwalte deine RES-Einstellungen.", description: "" }, userInfoFadeSpeedDesc: { message: "Ausblend Animations-Geschwindigkeit (in Sekunden).", description: "" }, userHighlightModColorTitle: { message: "Mod Farbe", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "Links", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Comments Links New Tabs", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Fehler beim Laden der Subreddit-Info.", description: "" }, accountSwitcherName: { message: "Accountwechsler", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Zu nachfolgendem Kindkommentar springen - Springt zum nachfolgenden Kindkommentar auf der selben Tiefe", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Ausblend-Geschwindigkeit", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Nacht-Modus", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "F\xFCr Posts aktivieren", description: "" }, showImagesImageZoomTitle: { message: "Bild Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Kommentar-Karma anzeigen", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Hilfe f\xFCr Tastenk\xFCrzel einblenden.", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "Dashboard Verkn\xFCpfung", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Verstecken", description: "" }, userInfoLink: { message: "Link:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "vor $1", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Stimmgewicht verfolgen", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Wenn m\xF6glich, Videol\xE4ngen anzeigen.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignoriert.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Antworten", description: "" }, accountSwitcherSimpleArrow: { message: "einfacher Pfeil", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Benutze Schnellnachricht", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "Standardm\xE4\xDFig werden alle Optionen angezeigt. Diese Box abw\xE4hlen, um erweiterte Optionen auszublenden.", description: "" }, betteRedditFixHideLinksTitle: { message: "Fix Hide Links", description: "" }, commentNavName: { message: "Kommentar Navigator", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Kommentar Navigator \xF6ffnen.", description: "" }, presetsLiteDesc: { message: "RES Lite: nur das popul\xE4re Zeug", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Dr\xFCcken sie Ctrl+Enter oder CMD+Enter um ihre Kommentar/Wiki-Bearbeitung einzureichen.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nichts", description: "" }, filteRedditShowFilterlineTitle: { message: "Show Filterline", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Section Links", description: "" }, hideChildCommentsDesc: { message: "Erlaubt dir Untergeordnete Kommentare zu verbergen.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover", description: "" }, submitHelperName: { message: "Beitr\xE4ge", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Begrenze die Suchfunktion standardm\xE4\xDFig auf das aktuelle Subreddit, anstatt ganz Reddit zu durchsuchen.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Testumgebung", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Spoiler-Button hervorheben", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Standard-Sortierung", description: "" }, troubleshooterResetToFactoryTitle: { message: "Auf Werkseinstellungen zur\xFCcksetzen", description: "" }, commentStyleCommentRoundedTitle: { message: "Comment Rounded", description: "" }, keyboardNavImageSizeUpTitle: { message: "Bild vergr\xF6\xDFern", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "Subreddit-Stil $1 f\xFCr $2 umschalten", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Eingeloggte-Benutzer Klasse", description: "" }, commentsCategory: { message: "Kommentare", description: "" }, commentToolsStrikeKeyDesc: { message: "Tastenk\xFCrzel, um den Text durchzustreichen.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options", description: "" }, logoLinkMyUserPage: { message: "Meine Benutzer-Seite", description: "" }, keyboardNavUseGoModeDesc: { message: 'Require initiating goMode before using "go to" shortcuts.', description: "" }, easterEggName: { message: "Easter Egg", description: "" }, commentToolsSuperKeyDesc: { message: "Tastenk\xFCrzel, um den Text hochzustellen.", description: "" }, keyboardNavUpVoteTitle: { message: "Positiv Bewerten", description: "" }, notificationNotificationTypesDesc: { message: "Verwalte Benachrichtigungen verschiedener Art.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "\xDCberwachung", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Post Karma", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "Subreddit-Stil $1 umschalten", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Weiterlesen", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Reddit Logo Ziel", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite ist eine Sammlung an Modulen die das durchst\xF6bern von Reddit sehr viel einfacher macht.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "F\xFCr die Subreddit-Konfiguration aktivieren", description: "" }, accountSwitcherShowKarmaDesc: { message: "Zeige das Post- und Kommentar-Karma jeden Accounts im Account-Wechsler.", description: "" }, keyboardNavDesc: { message: "Tastaturnavigation f\xFCr Reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Die Nummer (z.B. [+6]) statt [vw] anzeigen", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Springe zum \xFCbergeordneten Kommentar.", description: "" }, keyboardNavGoModeDesc: { message: 'Enter "goMode" (necessary before using any of the below "go to" shortcuts).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "RES Kommandozeile", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Bild nach links bewegen", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Ausblend-Verz\xF6gerung", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "Im RES Dashboard sind zahlreiche Funktionen, wie z.B. Widgets, und andere n\xFCtzliche Werkzeuge zu finden.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "Nachdem ein Makro aus der Dropdown-Liste ausgew\xE4hlt wurde, verstecke die Liste nicht.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddits", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Move the image(s) in the highlighted post area down.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Perma-Link in neuem Tab folgen", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Removes the height restriction of image(s) in the highlighted post area.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "Markiere Benutzer $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Ein Problem melden", description: "" }, aboutOptionsFAQTitle: { message: "FAQ", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Benutzerdetails anzeigen", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "Verleiht Reddit ein dunkleres Erscheinungsbild das die Augen schont und f\xFCr das Browsen in der Nacht geeignet ist.\n\nHinweis: Dieser ein/aus Schalter deaktiviert s\xE4mtliche Funktionen des Nachtmodus-Moduls.\nUm vom Nachtmodus in den Tagmodus zu wechseln verwende den Schalter weiter unten.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Subreddit-Stil deaktiviert f\xFCr den Subreddit: $1", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Farbe f\xFCr hervorgehobenen Text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Aktiven Tab aktualisieren", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Kommentar Navigator nach oben", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Gehe zu Profil", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "Link und Kommentare in neuen Tabs anzeigen.", description: "" }, onboardingUpdateNotificationName: { message: "Update Benachrichtigung", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Verz\xF6gerung in Millisekunden, bevor der hover Tooltip ausgeblendet wird.", description: "" }, nightModeNightModeStartDesc: { message: "Uhrzeit zu der der automatische Nachtmodus beginnt.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Beim Scrollen automatisch n\xE4chste Seite laden (falls ausgeschaltet, kann die n\xE4chste Seite durch Klicken geladen werden).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "angeheftet", description: "" }, userHighlightAdminColorTitle: { message: "Adminfarbe", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Zeige die Wiki Autovervollst\xE4ndigung beim Tippen in Beitr\xE4gen, Kommentaren und Antworten.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Ausblend Animations-Geschwindigkeit (in Sekunden).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Bild verkleinern", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'Der Tab "gespeichert" befindet sich jetzt in der Multireddit Seitenleiste. Dies wird den "gespeichert" Link in Titelleiste wiederherstellen (neben den Tabs "beliebt, "neu", etc.).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Default color of the bar.", description: "" }, toggleOff: { message: "Aus", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Zeige die Subreddit Autovervollst\xE4ndigung beim Tippen in Beitr\xE4gen, Kommentaren oder Antworten.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Bild verkleinern (genau)", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Show Timestamp Wiki", description: "" }, commentToolsMacrosDesc: { message: "F\xFCge Kn\xF6pfe hinzu, um h\xE4ufig verwendete Text-Schnipsel einzuf\xFCgen.", description: "" }, keyboardNavProfileTitle: { message: "Profil", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "filtere Subreddit von", description: "" }, userTaggerShowAnyway: { message: "trotzdem anzeigen?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Cache leeren", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+add Account", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Hervorheben", description: "" }, filteRedditExcludeModqueueDesc: { message: "Filter auf Moderationsseiten deaktivieren (Warteschlange, Meldungen, Spam,...)", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Teste Benachrichtigungen.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Subscribers:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Zum obersten Kommentar im vorherigen Thread springen.", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Zeige die Formatierungswerkzeuge (fett, kurisv, Tabellen, etc.) in Bearbeitungsfeldern f\xFCr Beitr\xE4ge, Kommentare und anderen snudown/markdown Bereichen an.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Nach unten bewegen", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod hover Farbe", description: "" }, spoilerTagsName: { message: "Globale Spoiler-Tags", description: "" }, betteRedditVideoUploadedDesc: { message: "Wenn m\xF6glich, Datum des Hochladens anzeigen.", description: "" }, accountSwitcherLoginError: { message: "Anmelden als $1 ist fehlgeschlagen, weil der Benutzername oder das Passwort falsch ist.\n\nM\xF6chtest du deine Einstellungen \xFCberpr\xFCfen?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Kommentare speichern", description: "" }, hoverFadeSpeedDesc: { message: "Ausblende-Geschwindigkeit (in Sekunden)", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Zeige das genaue Datum (Sun Nov 16 20:14:56 2014 UTC) anstatt des relativen Datums (vor 7 Tagen) bei Posts.", description: "" }, submissionsCategory: { message: "Beitr\xE4ge", description: "" }, keyboardNavSaveCommentDesc: { message: "Speichert den aktuellen Kommentar in ihrem Reddit-Account. Sie k\xF6nnen von \xFCberall auf in ihrem Account gespeicherte Posts zugreifen. Der originale Wortlaut wird nicht beibehalten, wenn der Post bearbeitet oder gel\xF6scht wird.", description: "" }, keyboardNavSavePostTitle: { message: "Post speichern", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Schriftfarbe", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options", description: "" }, penaltyBoxDesc: { message: "Automatisch RES-Features verz\xF6gern oder abschalten, die nicht verwendet werden.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "F\xFCgt Subreddits einen Tooltip hinzu", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Den Nachtmodus aktivieren. F\xFCgt einen Schalter zum Einstellungs-Dropdown-Men\xFC hinzu, der zwischen Tag- und Nachtmodus wechselt.", description: "" }, commentDepthDesc: { message: "Erlaubt dir, die gew\xFCnschte Tiefe an Kommentaren zu setzen, die du siehst wenn du auf Kommentarlinks klickst. 0 = Alles, 1 = Basis Ebene, 2 = Antworten auf die Basis Ebene, 3 = Antworten auf Antworten auf die Basis Ebene usw.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Klasse", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Tastenk\xFCrzel, um Text zu zitieren.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Uhrzeit zu der der automatische Nachtmodus endet.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "RES Alben bevorzugen", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sortieren", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Alle NSFW-markierten Links filtern.", description: "" }, logoLinkName: { message: "Logo-Link", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "Falls etwas nicht funktioniert, besuche /r/RESissues um Hilfe zu bekommen.", description: "" }, nightModeAutomaticNightModeNone: { message: "Deaktiviert", description: "" }, keyboardNavMoveUpDesc: { message: "Move up to the previous link or comment in flat lists.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Zeige urspr\xFCngliche Aufl\xF6sung an", description: "" }, troubleshooterNoActionTaken: { message: "Es wurde nichts unternommen.", description: "" }, commentPreviewEnableForWikiTitle: { message: "F\xFCrs Wiki aktivieren", description: "" }, filteRedditExcludeUserPagesTitle: { message: "ausgenommen Nutzerseiten", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "Name", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Speicherverbrauch reduzieren", description: "" }, showImagesName: { message: "Eingebettete Bilderanzeige", description: "" }, commentStyleCommentIndentDesc: { message: "R\xFCcke Kommentare um [x] Pixel ein (Nur die Nummer eingeben, kein 'px')", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "RES deaktivieren", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling", description: "" }, userInfoRedditorSince: { message: "Redditor seit:", description: "" }, userTaggerShow: { message: "Anzeigen", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Kommentar-Karma zus\xE4tzlich zum Beitrag-Karma anzeigen", description: "" }, hoverFadeSpeedTitle: { message: "Ausblende-Geschwindigkeit", description: "" }, necLoadChildCommentsTitle: { message: "Kind-Kommentare laden", description: "" }, showParentName: { message: "\xDCbergeordneter Kommentar beim Verweilen der Maus anzeigen", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Nummern", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Den Gold-Status aller Accounts im Account-Wechsler anzeigen.", description: "" }, keyboardNavMoveToParentTitle: { message: "Zu \xDCbergeordneten Kommentar gehen", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Zeitstempel von Kommentaren anzeigen", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Accounts", description: "" }, spoilerTagsDesc: { message: "Verstecke Spoiler auf den Benutzerprofilseiten.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Gold anzeigen", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "Kommentar-Tiefe", description: "" }, keyboardNavImageMoveDownTitle: { message: "Bild nach unten bewegen", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Vorheriges Galerie-Bild", description: "" }, userTaggerTaggedUsers: { message: "Getaggte Benutzer", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Thread aufw\xE4rts bewegen", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "F\xFCge mehr Information zum Karma neben deinem Benutzernamen in der Nutzer-Men\xFCleiste hinzu.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Standard Kommentar-Tiefe", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Features", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Move Down Parent Sibling", description: "" }, dashboardTagsPerPageTitle: { message: "Tags pro Seite", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limitiere Suche auf Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log", description: "" }, userTaggerStoreSourceLinkDesc: { message: "Standardm\xE4\xDFig einen Link zum Link/Kommentar speichern, bei dem der User getaggt wurde", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Verbessert die Navigationsleiste links auf der Startseite.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Zitat-Schalter", description: "" }, keyboardNavHideDesc: { message: "Link verstecken", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Fett-Schalter", description: "" }, xPostLinksName: { message: "X-Post Links", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Immer ein Tag-Werkzeug-Icon nach jedem Benutzernamen anzeigen.", description: "" }, commentPreviewDraftStyleDesc: { message: "Den Hintergrund des Voransichtfensters im 'Entwurf'-Stil zeigen, um es von den \xFCbrigen Kommentaren unterscheiden.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Kommentaren folgen", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Modmail", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Maximale Kommentar-H\xF6he", description: "" }, userTaggerColor: { message: "Farbe", description: "" }, hideChildCommentsHideNestedTitle: { message: "Verschachtelte verstecken", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Kommentare bereinigen", description: "" }, messageMenuFadeSpeedDesc: { message: "\xDCberblende Animationsgeschwindigkeit (in Sekunden)", description: "" }, userInfoComments: { message: "Kommentare", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Filter Synchronisation erzwingen", description: "" }, nerShowServerInfoTitle: { message: "Server-Informationen anzeigen", description: "" }, troubleshooterSettingsReset: { message: "Alle Einstellungen wurden zur\xFCck gesetzt. Laden sie die Seite neu um die \xC4nderungen anzuzeigen.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Move the image(s) in the highlighted post area left.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "\xD6ffnen Sie den Permalink des aktuellen Kommentars (nur Kommentarseiten).", description: "" }, subredditInfoAddRemoveShortcut: { message: "Verkn\xFCpfung", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature-Verz\xF6gerung", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Farbenblindfreundlich", description: "" }, userInfoSendMessage: { message: "Nachricht senden", description: "" }, showKarmaUseCommasDesc: { message: "Verwende Kommas f\xFCr gro\xDFe Karma-Anzahlen.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Abstimmungs-Buttons deaktivieren", description: "" }, commentToolsLinkKeyDesc: { message: "Tastenk\xFCrzel, um einen Link hinzuzuf\xFCgen.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Kommentar aufw\xE4rts bewegen", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "Seite", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Change the default context value on context link.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Bild vergr\xF6\xDFern (genau)", description: "" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Zeige Anzahl der ungelesenen Nachrichten im Favicon an?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Suchhelfer", description: "" }, keyboardNavNextGalleryImageDesc: { message: "N\xE4chstes Bild in der Inline-Galerie anzeigen.", description: "" }, nightModeName: { message: "Nachtmodus", description: "" }, filteRedditExcludeModqueueTitle: { message: "ausgenommen Moderatoren-Warteliste", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Filter-Befehlszeile starten.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "Kann Markierung nicht setzen - kein Post/Kommentar ausgew\xE4hlt.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "An", description: "" }, contextDesc: { message: "F\xFCgt der gelben Infoleiste einen Link hinzu, um tief verlinkte Kommentare im vollen Kontext zu sehen.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Up Vote Without Toggling", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Nach oben bewegen", description: "" }, nightModeAutomaticNightModeUser: { message: "Benutzerdefinierte Stunden", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignoriert", description: "" }, commentToolsCommentingAsDesc: { message: "Zeigt den Nutzernamen ihres aktuell angemeldeten Accounts an, um Posts vom Account zu verhindern.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Link im neuen Tab weiterverfolgen", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "Du kannst dies sp\xE4ter in den $1-Einstellungen \xE4ndern.", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Schalter", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "Nach dem Kontowechsel eine Warnung in allen anderen Tabs anzeigen.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Sicherung und Wiederherstellung deiner Reddit Enhancement Suite Einstellungen", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Drop-Down-Men\xFC-Stil", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Dr\xFCcken sie Ctrl+Enter oder Cmd+Enter um ihren Post einzureichen.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "Options-ID", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Lade extra CSS oder deinen eigenen CSS-Code", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "Passwort", description: "" }, userInfoUnignore: { message: "Nicht mehr ignorieren", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "Makros", description: "" }, nightModeAutomaticNightModeDesc: { message: "Automatischen Nacht-Modus aktivieren.\n\nF\xFCr den automatischen Nacht-Modus wird deinen Position ben\xF6tigt um Sonnen -auf und -untergang zu berechenen.\n\nIm benutzerdefinierten Stundenmodus wird der Nacht-Modus anhand der angegebenen Stunden verwendet.\n\nF\xFCr die Zeitangabe w\xFCrd eine 24-Stunden Uhr verwendet, also 0:00 bis 23:59.\n\nUm tempor\xE4r den Nacht-Modus umzuschalten dr\xFCcke einfach den Nacht-Modus Knopf. Wie lange die tempor\xE4re Einstellung anh\xE4lt kannst du hier konfigurieren.", description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filtere diesen Subreddit in /r/all und /domain/*", description: "" }, presetsNoPopupsTitle: { message: "Keine Popups", description: "" }, searchCopyResultForComment: { message: "F\xFCr einen Kommentar kopieren", description: "" }, moduleID: { message: "Modul-ID", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Zeige Anzahl der ungelesenen Nachrichten im Titel der Seite / des Tabs an?", description: "" }, xPostLinksXpostedFrom: { message: "x-posted von", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Kinder umschalten", description: "" }, commandLineLaunchDesc: { message: "Open the RES Command Line", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Subreddit-Info", description: "" }, betteRedditVideoUploadedTitle: { message: "Video hochgeladen", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Fade Animations-Geschwindigkeit (in Sekunden)", description: "" }, aboutOptionsDonate: { message: "Unterst\xFCtze die RES Entwicklung.", description: "" }, aboutOptionsBugsTitle: { message: "Fehler", description: "" }, nerShowPauseButtonTitle: { message: "Pause-Button zeigen", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Ein-Klick-\xD6ffner", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Anzahl der Tage, bevor RES einen gelesenen Thread nicht mehr verfolgt.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Versionsmanager", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: 'Favicon vorm Verlassen einer Seite zur\xFCcksetzen.\n\nVerhindert, dass "Ungelesene Nachricht" bei Lesezeichen auftaucht, verschlechtert jedoch unter Umst\xE4nden das Browser-Caching.', description: "" }, commentDepthName: { message: "Benutzerdefinierte Kommentartiefe ", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Zeige Anzahl der ungelesenen Nachrichten im Favicon an", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Zeige Abonnier Button", description: "" }, commentToolsKey: { message: "Schl\xFCssel", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Benutzernamen automatisch einf\xE4rben", description: "" }, commentStyleName: { message: "Kommentarstil", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Alle Optionen anzeigen", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "Front Page", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatisch zum ausgew\xE4hlten Post/Kommentar scrollen, wenn die Seite l\xE4dt", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "Sollen Nachrichten beim Klick auf den Umschlag oder das ModMail-Symbol in einem neuen Tab ge\xF6ffnet werden?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "Text", description: "" }, notificationStickyTitle: { message: "Angeheftet", description: "" }, aboutOptionsAnnouncements: { message: "Lies die Neuigkeiten in /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Automatisch alle Kindkommentare ausblenden oder einen Link anbieten, um alle Kommentare auszublenden?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Schnipsel", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Diesen Subreddit aus Deiner Schnellwahlleiste entfernen.", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "Vorherige Seite", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Kommentarfelder hervorheben f\xFCr bessere Lesbarkeit / einfacheres Ausfindigmachen in grossen Threads.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "Nach Vote nach unten bewegen", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Duplikate verstecken", description: "" }, keyboardNavFrontPageDesc: { message: "Gehe zur Front Page.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Link und Kommentare in neuem Hintergrund-Tab weiterverfolgen", description: "" }, singleClickDesc: { message: "F\xFCgt einen [l+c]-Link hinzu, um einen Link und seine Kommentarseite mit einem Klick in neuen Tabs zu \xF6ffnen.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Mit Rad browsen", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Zeige ein Briefumschlag(Posteingang)-Icon in der oberen rechten Ecke an.", description: "" }, aboutName: { message: "\xDCber RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "Sicherung", description: "" }, productivityCategory: { message: "Produktivit\xE4t", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "Kein Subreddit ausgew\xE4hlt.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Schlie\xDFen, wenn Mauszeiger au\xDFerhalb des Fensters ist", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Zum obersten Kommentar im momentanen Thread springen.", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Standard Betreff", description: "" }, betteRedditFixHideLinksDesc: { message: '\xC4ndert die Beschriftung von "verstecken" Links, auf "verstecken" oder "anzeigen", je nachdem ob sie versteckt sind oder nicht.', description: "" }, commentQuickCollapseName: { message: "Kommentar-Schnell-Einklappen", description: "" }, troubleshooterEntriesRemoved: { message: "$1 Eintr\xE4ge entfernt", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "\xDCberschreibe alle standardm\xE4\xDFigen /r/all Filter sofort", description: "" }, searchHelperSearchPageTabsDesc: { message: "Tabs zur Suchseite hinzuf\xFCgen.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter speichert Live-Threads", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Subreddit Kommentar-Tiefe", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Aktiviere den 2 Spalten Editor.", description: "" }, floaterName: { message: "Schwebende Inseln", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "schneller NSFW Abschalter", description: "" }, filteRedditAllowNSFWDesc: { message: "Blende auf bestimmten Subreddits NSFW-Posts trotz aktiviertem NSFW-Filter nicht aus.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "F\xFCge einen Schalter ein, um die Nutzerleiste ein- oder auszublenden.", description: "" }, showImagesDesc: { message: "\xD6ffnet Bilder inline auf Knopfdruck in deinem Browser. Hat auch Einstellungsm\xF6glichkeiten, siehs dir an!", description: "" }, commentToolsMacroButtonsTitle: { message: "Makro-Schalter", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "Eigene Beitr\xE4ge nicht filtern.", description: "" }, notificationStickyDesc: { message: "Angeheftete Notifikationen bleiben sichtbar bis sie geschlossen werden (Schlie\xDFen Knopf).", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "Diese Funktion versteckt deinen Benutzernamen auf deinem Bildschirm, wenn du in Reddit eingeloggt bist. Wenn dir jemand bei der Arbeit \xFCber die Schulter guckt oder du einen Screenshot machst, wird dein Benutzername nicht gezeigt. Die Funktion betrifft nur deinen Bildschirm, es gibt keine M\xF6glichkeit, auf Reddit zu posten oder zu kommentieren, ohne den Post mit dem Account zu verkn\xFCpfen, mit dem der Post abgesendet wurde.", description: "" }, betteRedditName: { message: "besseReddit", description: "" }, voteEnhancementsName: { message: "Abstimmungs-Verbesserungen", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Versteckte Sortier-Optionen anzeigen", description: "" }, betteRedditTruncateLongLinksDesc: { message: "K\xFCrzt lange Post-Titel (l\xE4nger als 1 Zeile) durch Auslassungspunkte ab.", description: "" }, subredditInfoAddRemoveDashboard: { message: "Dashboard", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autovervollst\xE4ndigung", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "Benutzer Autovervollst\xE4ndigung", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Ausblend-Geschwindigkeit", description: "" }, aboutOptionsCodeTitle: { message: "Code", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Benutzername", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Move the image(s) in the highlighted post area up.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Spenden", description: "" }, keyboardNavGoModeTitle: { message: "Go-Modus", description: "" }, keyboardNavName: { message: "Tastaturnavigation", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "Benutzer hervorheben", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Aktueller Subreddit/Multireddit", description: "" }, troubleshooterTestNotificationsTitle: { message: "Benachrichtigungen testen", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Perma-Link folgen", description: "" }, hoverDesc: { message: "Passe das Verhalten von den Informations-Pop-ups an die erscheinen wenn die Maus \xFCber bestimmten Elementen ist.", description: "" }, modhelperName: { message: "Mod-Helfer", description: "" }, multiredditNavbarUrl: { message: "URL", description: "" }, hideChildCommentsName: { message: "Alle untergeordneten Kommentare verstecken", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'Sie m\xFCssen "$1" oder "$2" festlegen.', description: "" }, keyboardNavMoveUpTitle: { message: "Aufw\xE4rts bewegen", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Open Quick Message", description: "" }, pageNavToTopTitle: { message: "Nach oben", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Scroll On Expando", description: "" }, userTaggerTag: { message: "Tag", description: "" }, userbarHiderToggleUserbar: { message: "Nutzerleiste ein-/ausblenden", description: "" }, nerReversePauseIconTitle: { message: "Pause-Icon umdrehen", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Entferne diesen Subreddit aus ihrem Dashboard", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Wechsle zu Benutzernamen: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Formatiere oder zeige zus\xE4tzliche Informationen \xFCber die Abstimmung zu Beitr\xE4gen oder Kommentaren.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Subreddit-Manager", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Vorschl\xE4ge", description: "" }, keyboardNavSaveCommentTitle: { message: "Kommentar speichern", description: "" }, nerPauseAfterEveryTitle: { message: "Pausieren nach jedem", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Kommandozeile zur Navigation in Reddit, zum Ver\xE4ndern von RES-Einstellungen und zur Fehlersuche in RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "Vorheriges Bild in der Inline-Galerie anzeigen.", description: "" }, userInfoInvalidUsernameLink: { message: "Ung\xFCltiger Benutzernamen-Link", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Mit Kommentar Navigator nach unten verschieben.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Nachtmodus Ende", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "Zeigt Daten in deiner lokalen Zeitzone, wenn die Maus auf einem relativen Datum verweilt.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Kern", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "Strafe", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "minimum Kommentare", description: "" }, aboutOptionsCode: { message: "Du kannst RES mit deinem Code, Design und Ideen verbessern! RES ist ein Open-Source Projekt und auf GitHub.", description: "" }, commentNavDesc: { message: "Stellt ein Kommentarnavigationswerkzeug zur Verf\xFCgung, um einfach Kommentare von OP, mod, etc. zu finden.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Dr\xFCcken sie Ctrl+Enter oder Cmd+Enter um Updates an ihrem Live-Thread zu speichern.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite wird unter der GPL v3.0 Lizenz ver\xF6ffentlicht.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Enable On Ban Messages", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Number of days before thread subscriptions expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 ist sich nicht sicher, was es tun soll, wenn du das Tastaturk\xFCrzel $2 dr\xFCckst. $3 Was soll beim Dr\xFCcken von $4 passieren?", description: "" }, styleTweaksToggleSubredditStyle: { message: "Subreddit-Stil umschalten", description: "" }, RESTipsDailyTipTitle: { message: "T\xE4glicher Hinweis", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "Anzahl neuer Kommentare", description: "" }, keyboardNavSlashAllDesc: { message: "Zu /r/all gehen.", description: "" }, keyboardNavShowParentsTitle: { message: "\xDCbergeordnete Kommentare Anzeigen", description: "" }, userTaggerHardIgnoreTitle: { message: "Alles Ignorieren", description: "" }, logoLinkFrontpage: { message: "Titelseite", description: "" }, commentToolsCategory: { message: "Kategorie", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "Zeige, wenn sie ihre Maus \xFCber [Bewertung versteckt] bewegen, die verbleibende Zeit anstatt der Versteckdauer.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Die Zeit zu der ein Post/Kommentar ge\xE4ndert wurde anzeigen, ohne dass die Maus \xFCber den Zeitstempel bewegt werden muss.", description: "" }, aboutOptionsSearchSettings: { message: "Suche nach RES Einstellungen", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "N\xE4chstes Galerie-Bild", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Subreddit-Stil aktiviert f\xFCr den Subreddit: $1", description: "" }, notificationsNeverSticky: { message: "Niemals angeheftet", description: "" }, keyboardNavMoveDownDesc: { message: "Move down to the next link or comment in flat lists.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Zeige den [-] Verkleinern-Knopf im Posteingang.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Diesen Subreddit zu Deiner Schnellwahlleiste hinzuf\xFCgen.", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Andere Tabs neu laden", description: "" }, betteRedditVideoTimesTitle: { message: "Video Dauern", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Aussehen", description: "" }, userTaggerShowIgnoredDesc: { message: "Provide a link to reveal an ignored link or comment.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "Kursiv-Schalter", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Reddit Filter nutzen", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatisch das zuletzt gew\xE4hlte Element ausw\xE4hlen", description: "" }, aboutOptionsPresetsTitle: { message: "Voreinstellungen", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Standardtiefe die f\xFCr alle nicht im Folgenden aufgelisteten Subreddits verwendet wird.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Erlaube Anzeige im Subreddit-Stil w\xE4hrend der Nachtmodus aktiv ist, auch falls useSubredditStyles deaktiviert ist.", description: "" }, nerHideDupesHide: { message: "Verstecken", description: "" }, aboutOptionsContributorsTitle: { message: "Mitwirkende", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Hilfe ein-/ausschalten", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "Fokussiere den Tab wenn ein neuer Tab mit einem Link ge\xF6ffnet wurde", description: "" }, aboutOptionsFAQ: { message: "Erfahre mehr \xFCber RES im /r/Enhancement-Wiki.", description: "" }, betteRedditPinHeaderDesc: { message: "H\xE4lt die Subreddit-Leiste, das Nutzermen\xFC, oder die Titelleiste fest an der oberen Kante, sodass sie sich w\xE4hrend des Scrollens mit nach unten bewegen.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Genaues Datum in der Seitenleiste anzeigen.", description: "" }, keyboardNavUpVoteDesc: { message: "Upvote selected link or comment (or remove the upvote).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Verz\xF6gerung in Millisekunden, bevor der Tooltip l\xE4dt.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Go to subreddit of selected link (link pages only).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Angemeldet bleiben, wenn ich meinen Browser neu starte.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Toggle expando (image/text/video).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "Kommentare zum Link in neuem Tab weiterverfolgen", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "Sicherung", description: "" }, profileNavigatorHoverDelayDesc: { message: "Verz\xF6gerung in Millisekunden, bevor der Tooltip l\xE4dt.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES erlaubt es ihnen spezifische Subreddit-Stile zu deaktivieren!", description: "" }, customTogglesDesc: { message: "Setze benutzerdefinierte an/aus-Schalter f\xFCr verschiedene RES-Einstellungen.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "Kein Benutzername ausgew\xE4hlt.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Ein Element zum RES-Dropdown-Men\xFC hinzuf\xFCgen, um Tipps anzuzeigen.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Formatierungswerkzeug Buttons", description: "" }, commentPreviewEnableForWikiDesc: { message: "Vorschau f\xFCr Wiki-Seiten anzeigen.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Bild nach oben bewegen", description: "" }, settingsNavDesc: { message: "Erleichtert die Nutzung der RES Einstellungskonsole.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox", description: "" }, usernameHiderName: { message: "Benutzernamen verstecken", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "aktiviert", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Tabellenwerkzeuge", description: "" }, showParentFadeSpeedTitle: { message: "Ausblend-Geschwindigkeit", description: "" }, userInfoUserNotFound: { message: "Benutzer nicht gefunden", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Lange Links k\xFCrzen", description: "" }, keyboardNavToggleCmdLineDesc: { message: "\xD6ffne die RES Befehlszeile.", description: "" }, nerHideDupesDontHide: { message: "Nicht verstecken", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "NSFW-Button hervorheben", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 wird deaktiviert, weil es nicht benutzt wird. Du kannst es in der RES Einstellungs-Konsole wieder aktivieren.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "Deine Stimmen f\xFCr $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Zeige Makro-Schalter in den Bearbeitungsfeldern f\xFCr Beitr\xE4ge, Kommentare, und andere snudown/markdown Text Bereichen.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Move the image(s) in the highlighted post area right.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (Alien)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Gro\xDFen Editor \xF6ffnen", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height", description: "" }, pageNavShowLinkNewTabTitle: { message: "Show Link New Tab", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Nicht linearer Scroll-Stil", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Das aktuelle Markdown-Feld im grossen Editor \xF6ffnen. (Nur wenn ein Markdown-Formular fokussiert ist).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Die Tiefe einstellen, welche bei Links zu einzelnen Kommentaren mit Kontext verwendet wird.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "Abklingzeit", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Gehe zur Subreddit Front Page.", description: "" }, menuName: { message: "RES Men\xFC", description: "" }, messageMenuDesc: { message: "Bewege deine Maus \xFCber das Mail Icon um auf verschiedene Arten von Nachrichten zuzugreifen oder um eine neue Nachricht zu erstellen.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Eine Transition abspielen, wenn Tabs ge\xF6ffnet und geschlossen werden.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "Nach dem verstecken eines Links automatisch den n\xE4chsten ausw\xE4hlen.", description: "" }, commentStyleDesc: { message: "F\xFCgt Kommentaren Verbesserungen zur Lesbarkeit hinzu.", description: "" }, keyboardNavRandomDesc: { message: "Gehe zu einem zuf\xE4lligen Subreddit.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "Kommentiere als", description: "" }, keyboardNavImageSizeUpDesc: { message: "Die Gr\xF6\xDFe der Bilder im markierten Beitragsbereich erh\xF6hen.", description: "" }, floaterDesc: { message: "Verwalte freischwebende Elemente von RES.", description: "" }, subredditManDesc: { message: "Erlaubt es, die obere Leiste durch benutzerdefinierte Subreddit-Verkn\xFCpfungen (inklusive Drop-Down-Men\xFCs von Multi-Reddits etc.) anzupassen.", description: "" }, keyboardNavSavePostDesc: { message: "Speichert den aktuellen Post in ihrem Reddit-Account. Sie k\xF6nnen von \xFCberall auf in ihrem Account gespeicherte Posts zugreifen. Der originale Wortlaut wird nicht beibehalten, wenn der Post bearbeitet oder gel\xF6scht wird.", description: "" }, hideChildCommentsNestedTitle: { message: "Verschachtelt", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Gro\xDFen Editor aktivieren", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Benachrichtigung", description: "" }, announcementsDesc: { message: "Bleib auf dem Laufenden mit wichtigen Neuigkeiten", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Zeile hinzuf\xFCgen", description: "" }, keyboardNavReplyDesc: { message: "Auf den aktuellen Kommentar antworten (nur auf Kommentarseiten).", description: "" }, accountSwitcherGoldUntil: { message: "Bis $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "RES Benachrichtigungen", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Klassen", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "View comments for link (shift opens them in a new tab).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Zeige die live Markdown-Vorschau w\xE4hrend des Editierens in der Seitenleiste.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Profil Neuer Tab", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Link und Kommentare in neuem Tab weiterverfolgen", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Multireddit-Navigation", description: "" }, keyboardNavToggleExpandoTitle: { message: "Toggle Expando", description: "" }, showKarmaName: { message: "Karma anzeigen", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Subreddit Autovervollst\xE4ndigung", description: "" }, settingsNavName: { message: "RES-Einstellungen Navigation", description: "" }, contributeName: { message: "Spenden und Mitwirken", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Kommentar-Textbox deaktivieren", description: "" }, tableToolsSortDesc: { message: "Aktiviere Spaltensortierung.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Die Tiefe einstellen, welche bei Links zu einzelnen Kommentaren verwendet wird.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Zeigt ein Men\xFC, welches zu verschiedenen Sektionen des derzeitigen Benutzerprofiles f\xFChrt wenn die Maus auf den Benutzernamen in der oberen rechten Ecke gefahren wird.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "Bearbeitungswerkzeuge", description: "" }, accountSwitcherAccountsDesc: { message: "Richten sie ihre Accounts hier ein. Ihre Daten werden ausschlie\xDFlich in den RES Einstellungen gespeichert.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "Wo soll der Filter (siehe oben) angewendet werden?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Livevorschau", description: "" }, hoverOpenDelayDesc: { message: "Einblende-Verz\xF6gerung zwischen dem \xDCberfahren mit der Maus und dem \xD6ffnen des Pop-Ups.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color of the bar when collapsed.", description: "" }, announcementsName: { message: "RES Ank\xFCndigungen", description: "" }, betteRedditVideoViewedDesc: { message: "Wenn m\xF6glich, Anzahl der Videoaufrufe anzeigen.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Zum obersten Kommentar gehen", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "Neu Laden", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Andere Tabs aktualisieren", description: "" }, notificationsNotificationID: { message: "Benachrichtigungs-ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Zeige Snudown-Quelltext", description: "" }, keyboardNavInboxDesc: { message: "Gehe zum Posteingang.", description: "" }, gfycatUseMobileGfycatDesc: { message: "Zeige gfycat gifs in mobiler Version mit geringerer Aufl\xF6sung.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Bilder-Anzeige umschalten", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Sichere deine RES Einstellungen und stelle sie wieder her.", description: "" }, showParentDesc: { message: 'Zeigt den \xFCbergeordneten Kommentar an, wenn die Maus \xFCber dem "parent" Link eines Kommentars verweilt.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Die Bilder im markierten Beitragsbereich verkleinern.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Zeige Eingabel\xE4nge an", description: "" }, keyboardNavSaveRESDesc: { message: "Speichert den aktuellen Kommentar mit RES. Der originale Wortlaut des Kommentars wird beibehalten, allerdings kann nur lokal darauf zugegriffen werden.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Inspiriert von Modulen wie River of Reddit und Auto Pager \u2013 gibt dir einen endlosen Strom von Reddit-Freude.", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "Deaktiviere Filter auf Profilseiten von Nutzern.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Konnte Benutzer nicht wechseln. Reddit ist zur Zeit m\xF6glicherweise ausgelastet. Bitte versuche es in ein paar Momenten noch mal.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Wiederherstellung", description: "" }, logoLinkCustom: { message: "Benutzerdefiniert", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Zeige schwebenden Briefumschlag an", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Aktiviere/Deaktiviere alles was mit diesem Schalter verbunden ist. Optional k\xF6nnen diesen Schalter zum RES Zahnrad-Men\xFC hinzuf\xFCgen.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Zeige Linien f\xFCr den Kommentar Fluss an.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Filtere diesen Subreddit in /r/all und /domain/* nicht mehr", description: "" }, dashboardDefaultPostsTitle: { message: "Standard-Posts", description: "" }, contextViewFullContextTitle: { message: "Vollst\xE4ndigen Kontext anzeigen", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privatsph\xE4re", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Ein Werkzeug, um den urspr\xFCnglichen Text von Beitr\xE4gen und Kommentaren anzuzeigen, bevor Reddit ihn formatiert.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Move down to the next comment on threaded comment pages.", description: "" }, showParentHoverDelayDesc: { message: "Verz\xF6gerung in Millisekunden, bevor der hover Tooltip erscheint.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Bietet Hilfen zum Abschicken von Beitr\xE4gen.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Automatisch", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Trennzeichen", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Ausblende-Verz\xF6gerung zwischen dem Verlassen des Element-Bereichs mit der Maus und dem Ausblenden des Pop-Ups", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Ziel beim Klick auf das Reddit-Logo.", description: "" }, settingsConsoleName: { message: "Einstellungs-Konsole", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Subreddit-spezifische Kommentar-Tiefen.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "In neuem Fenster \xF6ffnen", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Gehe zur Modmail", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "Standard Sortiermethode f\xFCr neue Widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "Nach dem Kontowechsel alle anderen Tabs neu laden.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Animationen deaktivieren", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "aktiviert", description: "" }, nightModeColoredLinksTitle: { message: "Farbige Links", description: "" }, modhelperDesc: { message: "Hilft Moderatoren mit Tips und Tricks, um mit RES zusammenzuarbeiten.", description: "" }, quickMessageName: { message: "Schnellnachricht", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Enable this feature again", description: "" }, userHighlightDesc: { message: "Hebt bestimmte Benutzer in Kommentarthreads hervor: OP, Admins, Freunde, Moderatoren \u2013 Beigesteuert von MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Scroll window to top of link when expando key is used (to keep pics etc in view).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Verz\xF6gerung in Millisekunden, bevor der Tooltip verschwindet.", description: "" }, userInfoAddRemoveFriends: { message: "$1 Freunde", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Dauer des automatischen Nachtmodus in Stunden.\nEs ist m\xF6glich den Wert in Dezimalzahlen anzugeben: z.B. 0.1 Stunden (entspricht 6 Min.).", description: "" }, presetsNoPopupsDesc: { message: "Benachrichtigungen und Hover-Popups abschalten", description: "" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Verz\xF6gere das Einblenden von Spoiler-Text f\xFCr einen Moment.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Nachrichtenmen\xFC", description: "" }, aboutOptionsSuggestions: { message: "Falls du eine Idee f\xFCr RES hast oder dich mit anderen Nutzern unterhalten willst, besuche /r/Enhancement.", description: "" }, userbarHiderName: { message: "Nutzerleiste verstecken", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "When jumping to a entry (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), when and how should RES scroll the window?", description: "" }, subredditInfoFadeDelayTitle: { message: "Ausblend-Verz\xF6gerung", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "Alle Caches geleert.", description: "" }, localDateName: { message: "Lokales Datum", description: "" }, commentStyleCommentRoundedDesc: { message: "Ecken der Kommentarfelder abrunden.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Verwende den Go-Modus", description: "" }, messageMenuLabel: { message: "Markierung", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Aktuellen Benutzernamen anzeigen", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filtern", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Zeige Anzahl der ungelesenen Nachrichten im Titel an", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Verstecke Benutzernamen im Accountwechsler", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Seitenleisten-Vorschau", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "F\xFCgt eine Leiste links an jedes Kommentar an. Durch anklicken der Leiste wird das Kommentar eingeklappt.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Follow Subreddit New Tab", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Zeige die Benutzer Autovervollst\xE4ndigung beim Tippen in Beitr\xE4gen, Kommentaren oder Antworten.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "F\xFCge einen NSFW an/aus Schalter zum Zahnrad-Men\xFC hinzu.", description: "" }, subredditInfoSubscribe: { message: "Folgen", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Ausgew\xE4hlten Kommentar oder Link negativ Bewerten (oder die Bewertung entfernen).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Kommentare von Admins hervorheben", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter sendet Kommentare ab", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter reicht Posts ein", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit erstellt:", description: "" }, multiredditNavbarLabel: { message: "Beschriftung", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Verstecke [l=c], wenn Link- und Kommentarseite identisch sind.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 wurde wieder eingeschaltet. Dieses Feature wird nicht wieder verz\xF6gert oder automatisch abgeschaltet.", description: "" }, messageMenuHoverDelayTitle: { message: "Hover Delay", description: "" }, stylesheetUsernameClassTitle: { message: "Benutzername Klasse", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Zeige eine Vorschau f\xFCr Bann-Notizen.", description: "" }, usersCategory: { message: "Benutzer", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Links blau und violett einf\xE4rben.", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit nicht gefunden.", description: "" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here.", description: "" }, resTipsName: { message: "RES Tipps und Tricks", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Kommandozeile ein-/aublenden", description: "" }, contextName: { message: "Kontext", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: 'Dies wird alle ihre Einstellungen und gespeicherten Daten entfernen. Geben sie "$1" ein wenn sie sicher sind.', description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "Nutzer suspendiert.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Verwende Kommas", description: "" }, userInfoLinks: { message: "Links", description: "" }, userHighlightHighlightAdminTitle: { message: "Admin hervorheben", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "An den Anfang der Liste setzen (auf Linkseiten).", description: "" }, contextDefaultContextTitle: { message: "Standard-Kontext", description: "" }, userTaggerTagUserAs: { message: "Markiere Benutzer $1 als: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Maximale Breite", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Move Down Sibling", description: "" }, customTogglesName: { message: "Benutzerdefinierte Schalter", description: "" }, pageNavShowLinkTitle: { message: "Link Anzeigen", description: "" }, keyboardNavProfileNewTabDesc: { message: "Zum Profil in einem neuen Tab.", description: "" }, aboutCategory: { message: "\xDCber RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "Reddit Gold schenken", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Stelle eine Sicherung deiner RES-Einstellungen wieder her.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Vorschau f\xFCr Kommentare anzeigen.", description: "" }, spamButtonName: { message: "Spam-Button", description: "" }, hoverInstancesTitle: { message: "Instanzen", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Einige Hoverfarben konnten nicht generiert werden. Das liegt wahrscheinlich an der Verwendung von Farben besonderen Formats.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Benutze Tastenk\xFCrzel um den Stil des ausgew\xE4hlten Textes zu ver\xE4ndern.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Suchoptionen und Vorschl\xE4ge auf der Suchseite automatisch ausblenden.", description: "" }, notificationsDesc: { message: "Verwaltet Pop-Up-Benachrichtigungen f\xFCr RES-Funktionen.", description: "" }, logoLinkDashboard: { message: "Dashboard", description: "" }, dashboardDashboardShortcutDesc: { message: "Zeige den +Dashboard Link in der Seitenleiste um einfach Widgets zum Dashboard hinzuzuf\xFCgen.", description: "" }, userInfoName: { message: "Benutzerinformationen", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Width of the bar.", description: "" }, filteRedditDomainsTitle: { message: "Domains", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Mod Mail verstecken", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "\xD6ffnen, nachdem ein Benutzer hervorgehoben wurde.", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "Informiere dich \xFCber die Datenschutzrichtlinie von RES.", description: "" }, commentStyleContinuityTitle: { message: "Kommentar Fluss", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Details jedes Accounts im Accountwechsler anzeigen, wie z. B. Karma oder Goldstatus.", description: "" }, browsingCategory: { message: "St\xF6bern", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Sind sie sicher, dass sie den Tag f\xFCr den Benutzer $1 l\xF6schen wollen?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Thread abw\xE4rts bewegen", description: "" }, keyboardNavInboxTitle: { message: "Posteingang", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "Nicht mehr hervorheben", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "Du wurdest abgemeldet.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Standardm\xE4\xDFig anzeigen", description: "" } }; // locales/locales/el.json var el_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03A0\u03BB\u03BF\u03B7\u03B3\u03BF\u03CD \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03CC\u03C4\u03B1\u03BD \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03AD\u03BD\u03B1\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03BA\u03C1\u03B9\u03B2\u03AE \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03C4\u03C9\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD/\u03BC\u03B7\u03BD\u03C5\u03BC\u03AC\u03C4\u03C9\u03BD.", description: "" }, commentPrevDesc: { message: "\u03A0\u03B1\u03C1\u03AD\u03C7\u03B5\u03B9 \u03BC\u03B9\u03B1 \u03B6\u03C9\u03BD\u03C4\u03B1\u03BD\u03AE \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03CC\u03C3\u03BF \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03AC\u03B6\u03B5\u03C3\u03B1\u03B9 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1, \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5, \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 wiki \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03B5\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AD\u03C2 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 markdown, \u03CC\u03C0\u03C9\u03C2 \u03B5\u03C0\u03AF\u03C3\u03B7\u03C2 \u03BA\u03B1\u03B9 \u03AD\u03BD\u03B1\u03BD \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03B4\u03CD\u03BF \u03C3\u03B5\u03BB\u03AF\u03B4\u03C9\u03BD \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B3\u03C1\u03AC\u03C6\u03B5\u03B9\u03C2 \u03C3\u03B5\u03BD\u03C4\u03CC\u03BD\u03B9\u03B1 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C4\u03B7\u03C2 \u03B8\u03AD\u03C3\u03B7\u03C2 \u03C4\u03B7\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 (\u03CE\u03C3\u03C4\u03B5 \u03B7 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03BD\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03C4\u03B1 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC \u03BA\u03B1\u03B9 \u03BF \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE\u03C2 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03C4\u03B1 \u03B4\u03B5\u03BE\u03B9\u03AC).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03A3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u039A\u03AC\u03C4\u03C9", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C0\u03C1\u03BF\u03C2 \u03C4\u03BF\u03BD \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD \u03BC\u03BF\u03C5 \u03C3\u03C4\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD \u03C4\u03BF\u03C5 RES.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "\u039F \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2 \u03AD\u03C7\u03B5\u03B9 \u03A7\u03C1\u03C5\u03C3\u03CC \u03C4\u03BF\u03C5 Reddit", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B1\u03B4\u03B5\u03C1\u03C6\u03BF\u03CD \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03B5\u03C0\u03AC\u03BD\u03C9", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "\u0395\u03C3\u03BF\u03C7\u03AE \u03A3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03BC\u03BF\u03BD\u03AC\u03B4\u03C9\u03BD RES", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03BA\u03C1\u03B9\u03B2\u03AE \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03C3\u03C4\u03BF \u03BA\u03B1\u03C4\u03B1\u03B3\u03C1\u03B1\u03C6\u03BF\u03BB\u03CC\u03B3\u03B9\u03BF \u03B4\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7\u03C2 (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "\u03A4\u03C5\u03C7\u03B1\u03AF\u03BF", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "\u03A6\u03AF\u03BB\u03C4\u03C1\u03B1\u03C1\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C5\u03C0\u03BFreddit \u03B1\u03C0\u03CC \u03C4\u03BF /r/all \u03BA\u03B1\u03B9 \u03C4\u03BF\u03BD /\u03C4\u03BF\u03BC\u03AD\u03B1/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03B1 \u03A3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03B5 \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "\u03BA\u03B1\u03C4\u03AC\u03C1\u03B3\u03B7\u03C3\u03B7 \u03C3\u03C5\u03BD\u03B4\u03C1\u03BF\u03BC\u03AE\u03C2", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "\u0391\u03B4\u03B9\u03AC\u03B2\u03B1\u03C3\u03C4\u03B1 \u039C\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03B1", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03C5\u03C7\u03B1\u03AF\u03B1\u03C2 \u03C3\u03C5\u03BC\u03B2\u03BF\u03C5\u03BB\u03AE\u03C2 \u03BA\u03AC\u03B8\u03B5 24 \u03CE\u03C1\u03B5\u03C2.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "\u039B\u03AD\u03BE\u03B5\u03B9\u03C2 \u039A\u03BB\u03B5\u03B9\u03B4\u03B9\u03AC", description: "" }, filteRedditAllowNSFWTitle: { message: "\u0395\u03C0\u03AF\u03C4\u03C1\u03B5\u03C8\u03B5 \u0391\u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03B1", description: "" }, hoverOpenDelayTitle: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u0391\u03BD\u03BF\u03AF\u03B3\u03BC\u03B1\u03C4\u03BF\u03C2", description: "" }, keyboardNavNextPageTitle: { message: "\u0395\u03C0\u03CC\u03BC. \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1", description: "" }, commentToolsSuperKeyTitle: { message: "\u03A0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u0395\u03BA\u03B8\u03AD\u03C4\u03B7", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "\u03A0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03C3\u03BC\u03AD\u03BD\u03BF\u03C2 \u03A0\u03C1\u03BF\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "\u03A0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u039C\u03CC\u03BD\u03B9\u03BC\u03C9\u03BD \u03A3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, betteRedditRestoreSavedTabTitle: { message: "\u0391\u03BD\u03AC\u03BA\u03C4\u03B7\u03C3\u03B5 \u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03BC\u03AD\u03BD\u03B7 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, orangeredHideModMailDesc: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03C4\u03BF\u03C5 \u03BA\u03BF\u03C5\u03BC\u03C0\u03B9\u03BF\u03CD \u03B1\u03BB\u03BB\u03B7\u03BB\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1\u03C2 \u03B4\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE \u03C3\u03C4\u03B7\u03BD \u03BC\u03C0\u03AC\u03C1\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7.", description: "" }, orangeredRetroUnreadCountDesc: { message: "\u0391\u03BD \u03B4\u03B5\u03BD \u03C3\u03B1\u03C2 \u03B1\u03C1\u03AD\u03C3\u03B5\u03B9 \u03BF \u03C3\u03C7\u03B5\u03B4\u03B9\u03B1\u03C3\u03BC\u03CC\u03C2 \u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03CC\u03BB\u03BF\u03C5 \u03C4\u03C9\u03BD \u03BC\u03B7 \u03B1\u03BD\u03B1\u03B3\u03BD\u03C9\u03C3\u03BC\u03AD\u03BD\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C0\u03B1\u03C1\u03AD\u03C7\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF\u03C0\u03B9\u03BA\u03AC \u03B1\u03C0\u03CC \u03C4\u03BF reddit, \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03BF \u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03B1\u03C3\u03C4\u03AE\u03C3\u03B5\u03C4\u03B5 \u03BC\u03B5 \u03C4\u03BF \u03AD\u03BD\u03B1 \u03C3\u03C7\u03B5\u03B4\u03B9\u03B1\u03C3\u03BC\u03CC \u03BC\u03B5 \u03C4\u03BF \u03C3\u03C4\u03C5\u03BB \u03C4\u03BF\u03C5 RES", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "\u0395\u03BB\u03B1\u03C6\u03C1\u03CC \u03C3\u03B2\u03AE\u03C3\u03B9\u03BC\u03BF \u03AE \u03BF\u03BB\u03BF\u03BA\u03BB\u03B7\u03C1\u03C9\u03C4\u03B9\u03BA\u03AE \u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03B4\u03B9\u03C0\u03BB\u03CE\u03BD \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD \u03C0\u03BF\u03C5 \u03AE\u03B4\u03B7 \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03C3\u03C4\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "\u0398\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C4\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03B9\u03B6\u03CC\u03BC\u03B5\u03BD\u03B1 \u03C3\u03C4\u03B7\u03BD \u03BF\u03B8\u03CC\u03BD\u03B7 \u03B8\u03C5\u03B3\u03B1\u03C4\u03C1\u03B9\u03BA\u03AC \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C0\u03B5\u03BA\u03C4\u03B5\u03AF\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B7\u03BD \u03C0\u03B1\u03CD\u03C3\u03B7, \u03B5\u03C0\u03B9\u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 \u03B1\u03C0\u03CC \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C0\u03C1\u03CE\u03C4\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5;", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "\u0395\u03C4\u03B9\u03BA\u03AD\u03C4\u03B5\u03C2 \u03A7\u03C1\u03B7\u03C3\u03C4\u03CE\u03BD", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03A0\u03BB\u03BF\u03B7\u03B3\u03BF\u03CD \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u039A\u03AC\u03C4\u03C9", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03BA\u03BF\u03C5\u03BC\u03C0\u03AF \u03C0\u03BF\u03C5 \u03BA\u03C1\u03CD\u03B2\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03AE\u03C3\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03CE\u03BD\u03C4\u03B1\u03C2 \u03C4\u03BF\u03BD \u03A0\u03BB\u03BF\u03B7\u03B3\u03CC \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, accountSwitcherDropDownStyleDesc: { message: '\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 \u03C4\u03BF \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03C4\u03BF\u03C5 "snoo", \u03AE \u03C0\u03B1\u03BB\u03B9\u03CC\u03C4\u03B5\u03C1\u03BF\u03C5 \u03C3\u03C4\u03C5\u03BB \u03B1\u03BD\u03B1\u03C0\u03C4\u03C5\u03C3\u03C3\u03CC\u03BC\u03B5\u03BD\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1;', description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "\u039A\u03C1\u03AC\u03C4\u03B1 \u03C4\u03B7\u03BD \u039B\u03AF\u03C3\u03C4\u03B1 \u039C\u03B1\u03BA\u03C1\u03BF\u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u0391\u03BD\u03BF\u03B9\u03C7\u03C4\u03AE", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03A0\u03BB\u03BF\u03B7\u03B3\u03CC \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "\u03A3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03A0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1 (\u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD).", description: "" }, onboardingDesc: { message: "\u039C\u03AC\u03B8\u03B5 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03BF RES \u03C3\u03C4\u03BF /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "\u03A6\u03AF\u03BB\u03C4\u03C1\u03BF \u0391\u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03C9\u03BD", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u039F\u03BC\u03B1\u03BB\u03AE\u03C2 \u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2", description: "" }, profileNavigatorFadeDelayTitle: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u039F\u03BC\u03B1\u03BB\u03AE\u03C2 \u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2", description: "" }, commentToolsLinkKeyTitle: { message: "\u03A0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u03A3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+\u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C3\u03B5 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "\u0391\u03C1\u03C7\u03B9\u03BA\u03AE \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03A5\u03C0\u03BFreddit.", description: "" }, keyboardNavFollowSubredditTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF \u03A5\u03C0\u03BFreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5 \u03C4\u03BF\u03BD \u03A7\u03C1\u03C5\u03C3\u03CC", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u03A6\u03CD\u03BB\u03BB\u03BF\u03C5 \u03A3\u03C4\u03C5\u03BB", description: "" }, subredditInfoOver18: { message: "\u0386\u03BD\u03C9 \u03C4\u03C9\u03BD 18:", description: "" }, userInfoIgnore: { message: "\u0391\u03B3\u03BD\u03CC\u03B7\u03C3\u03B5", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "\u03A3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF \u039C\u03B5\u03BD\u03BF\u03CD", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "\u039B\u03AF\u03C3\u03C4\u03B1 \u0395\u03C0\u03B9\u03C4\u03C1\u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03C9\u03BD \u03A3\u03C4\u03C5\u03BB \u03A5\u03C0\u03BFreddit", description: "" }, troubleshooterAreYouPositive: { message: "\u0395\u03AF\u03C3\u03B1\u03B9 \u03C3\u03AF\u03B3\u03BF\u03C5\u03C1\u03BF\u03C2;", description: "" }, messageMenuAddShortcut: { message: "+\u03C0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7\u03C2", description: "" }, troubleshooterName: { message: "\u0391\u03BD\u03C4\u03B9\u03BC\u03B5\u03C4\u03CE\u03C0\u03B9\u03C3\u03B7 \u03A0\u03C1\u03BF\u03B2\u03BB\u03B7\u03BC\u03AC\u03C4\u03C9\u03BD", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "\u03A1\u03B5\u03C4\u03C1\u03CC \u03A3\u03CD\u03BD\u03BF\u03BB\u03BF \u039C\u03B7 \u0391\u03BD\u03B1\u03B3\u03BD\u03C9\u03C3\u03BC\u03AD\u03BD\u03C9\u03BD ", description: "" }, messageMenuUseQuickMessageDesc: { message: "\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 \u03C4\u03BF \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03BF \u0393\u03C1\u03AE\u03B3\u03BF\u03C1\u03BF \u039C\u03AE\u03BD\u03C5\u03BC\u03B1 \u03CC\u03C4\u03B1\u03BD \u03C3\u03C5\u03BD\u03C4\u03AC\u03C3\u03C3\u03B5\u03B9\u03C2 \u03BD\u03AD\u03BF \u03BC\u03AE\u03BD\u03C5\u03BC\u03B1.", description: "" }, keyboardNavInboxNewTabTitle: { message: "\u0395\u03B9\u03C3\u03B5\u03C1\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1 \u03C3\u03B5 \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "\u0391\u03BD\u03BF\u03AF\u03B3\u03B5\u03B9 \u03C4\u03BF\u03BD \u03BC\u03CC\u03BD\u03B9\u03BC\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C4\u03BF\u03C5 \u03C0\u03B1\u03C1\u03CC\u03BD\u03C4\u03BF\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5 \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1 (\u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "\u039C\u03B5\u03C4\u03AC \u03C4\u03B7\u03BD \u03C8\u03AE\u03C6\u03B9\u03C3\u03B7 \u03C3\u03B5 \u03AD\u03BD\u03B1\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF, \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03B5\u03C0\u03AF\u03BB\u03B5\u03BE\u03B5 \u03C4\u03BF\u03BD \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "\u039A\u03B1\u03BB\u03C9\u03C3\u03CC\u03C1\u03B9\u03C3\u03BC\u03B1 \u03C4\u03BF\u03C5 RES", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "\u03A3\u03C4\u03B1\u03BC\u03AC\u03C4\u03B1 \u03BD\u03B1 \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B5\u03B9\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF /r/all \u03BA\u03B1\u03B9 \u03C4\u03BF\u03BD /\u03C4\u03BF\u03BC\u03AD\u03B1/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF \u03BA\u03BF\u03C1\u03C5\u03C6\u03B1\u03AF\u03BF \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C4\u03BF\u03C5 \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 \u03BD\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 (\u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1)", description: "" }, hoverName: { message: "\u0391\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03BA\u03B1\u03C4\u03AC\u03B4\u03B5\u03B9\u03BE\u03B7\u03C2 RES", description: "" }, commentPreviewEnableForCommentsTitle: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03CC \u0393\u03B9\u03B1 \u03A3\u03C7\u03CC\u03BB\u03B9\u03B1", description: "" }, spamButtonDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03BA\u03BF\u03C5\u03BC\u03C0\u03AF \u03B1\u03BD\u03B5\u03C0\u03B9\u03B8\u03CD\u03BC\u03B7\u03C4\u03C9\u03BD \u03C3\u03C4\u03B9\u03C2 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03B3\u03B9\u03B1 \u03B5\u03CD\u03BA\u03BF\u03BB\u03B7 \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "\u03A0\u03BB\u03AE\u03C1\u03B7\u03C2 \u03B1\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C4\u03C9\u03BD \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD \u03BA\u03B1\u03B9 \u03C4\u03C9\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03C0\u03BF\u03C5 \u03AD\u03C7\u03BF\u03C5\u03BD \u03C0\u03C1\u03B1\u03B3\u03BC\u03B1\u03C4\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03B1\u03C0\u03CC \u03B1\u03B3\u03BD\u03BF\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B5\u03C2. \u0391\u03BD \u03AD\u03BD\u03B1 \u03B1\u03B3\u03BD\u03BF\u03B7\u03BC\u03AD\u03BD\u03BF \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03AD\u03C7\u03B5\u03B9 \u03B1\u03C0\u03B1\u03BD\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2, \u03BD\u03B1 \u03C3\u03C5\u03BC\u03C0\u03C4\u03CD\u03C3\u03C3\u03B5\u03C4\u03B1\u03B9 \u03BA\u03B1\u03B9 \u03BD\u03B1 \u03BA\u03C1\u03CD\u03B2\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03CC \u03C4\u03BF\u03C5, \u03B1\u03BD\u03C4\u03AF \u03C4\u03BF\u03C5 \u03BD\u03B1 \u03B1\u03C6\u03B1\u03B9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9.", description: "" }, commentToolsLabel: { message: "\u03C4\u03B1\u03BC\u03C0\u03AD\u03BB\u03B1", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "\u03A4\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C0\u03BF\u03C5 \u03B5\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03C3\u03C4\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF \u03B8\u03AD\u03BC\u03B1\u03C4\u03BF\u03C2, \u03B5\u03BA\u03C4\u03CC\u03C2 \u03B1\u03BD \u03C3\u03C5\u03BC\u03C0\u03BB\u03B7\u03C1\u03CE\u03BD\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "\u03A0\u03B1\u03C1\u03B1\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03BA\u03B1\u03B9 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 \u03C4\u03C9\u03BD \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD \u03C0\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9\u03C2 \u03B5\u03C0\u03B9\u03C3\u03BA\u03B5\u03C6\u03C4\u03B5\u03AF.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "\u0392\u03BF\u03B7\u03B8\u03CE\u03BD\u03C4\u03B1\u03C2 \u03C3\u03B5 \u03BD\u03B1 \u03C0\u03B1\u03AF\u03C1\u03BD\u03B5\u03B9\u03C2 \u03C4\u03B7\u03BD \u03B7\u03BC\u03B5\u03C1\u03AE\u03C3\u03B9\u03B1 \u03B4\u03CC\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03C1\u03C4\u03BF\u03BA\u03B1\u03BB\u03BF\u03BA\u03CC\u03BA\u03BA\u03B9\u03BD\u03BF\u03C5 \u03C6\u03B1\u03BA\u03AD\u03BB\u03BF\u03C5 \u03C3\u03BF\u03C5.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "\u039D\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u039B\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u0395\u03BD\u03B5\u03C1\u03B3\u03AE", description: "" }, myAccountCategory: { message: "\u039F \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CC\u03C2 \u03BC\u03BF\u03C5", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B1 \u0395\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03B1 \u03A3\u03C7\u03CC\u03BB\u03B9\u03B1", description: "" }, yes: { message: "\u039D\u03B1\u03B9", description: "" }, filteRedditName: { message: "\u03C6\u03AF\u03BB\u03C4Reddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "\u03A3\u03B5 \u03C7\u03B9\u03BB\u03B9\u03BF\u03C3\u03C4\u03AC \u03C4\u03BF\u03C5 \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03BF\u03BB\u03AD\u03C0\u03C4\u03BF\u03C5, \u03BF \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF\u03C2 \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03C4\u03C1\u03B1\u03C0\u03B5\u03AF \u03B7 \u03B5\u03BE\u03B1\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BC\u03B9\u03B1\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2.", description: "" }, commandLineMenuItemTitle: { message: "\u03A3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF \u039C\u03B5\u03BD\u03BF\u03CD", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Color", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "\u03A3\u03BF\u03C5 \u03B4\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C0\u03CC\u03C3\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03AD\u03C7\u03BF\u03C5\u03BD \u03B1\u03BD\u03B1\u03C1\u03C4\u03B7\u03B8\u03B5\u03AF \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03C6\u03BF\u03C1\u03AC \u03C0\u03BF\u03C5 \u03B5\u03AF\u03B4\u03B5\u03C2 \u03AD\u03BD\u03B1 \u03BD\u03AE\u03BC\u03B1 \u03C3\u03C5\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2.", description: "" }, userTaggerPageXOfY: { message: "$1 \u03B1\u03C0\u03CC $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "\u039F\u03B9 \u0395\u03C4\u03B9\u03BA\u03AD\u03C4\u03B5\u03C2 \u03A7\u03C1\u03B7\u03C3\u03C4\u03CE\u03BD \u03BC\u03BF\u03C5", description: "" }, pageNavShowLinkNewTabDesc: { message: "\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "\u03A1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "\u039C\u03B7\u03BD \u03BA\u03AC\u03BD\u03B5\u03B9\u03C2 Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "\u03C5\u03C0\u03BFreddit", description: "" }, betteRedditVideoViewedTitle: { message: "\u03A4\u03BF \u0392\u03AF\u03BD\u03C4\u03B5\u03BF \u0398\u03B5\u03AC\u03B8\u03B7", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: '\u039A\u03AC\u03BD\u03B5\u03B9 \u03C4\u03BF "\u03A3\u03C7\u03BF\u03BB\u03B9\u03AC\u03B6\u03B5\u03B9 \u03A9\u03C2" \u03C3\u03B5 \u03AD\u03BD\u03C4\u03BF\u03BD\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03B1\u03C4\u03BF\u03C3\u03B5\u03B9\u03C1\u03AC \u03B1\u03BD \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C2 \u03B5\u03BD\u03B1\u03BB\u03BB\u03B1\u03BA\u03C4\u03B9\u03BA\u03CC \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CC. \u039F \u03C0\u03C1\u03CE\u03C4\u03BF\u03C2 \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CC\u03C2 \u03C3\u03C4\u03B7\u03BD \u03BC\u03BF\u03BD\u03AC\u03B4\u03B1 \u0395\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7\u03C2 \u039B\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CE\u03BD \u03B8\u03B5\u03C9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9 \u03BF \u03BA\u03CD\u03C1\u03B9\u03BF\u03C2 \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CC\u03C2 \u03C3\u03BF\u03C5.', description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "\u038C\u03C4\u03B1\u03BD \u03BA\u03AC\u03BD\u03B5\u03B9\u03C2 \u03BC\u03B9\u03B1 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7, \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03C4\u03C9\u03BD \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03AD\u03C7\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B1 \u03C0\u03B5\u03B4\u03AF\u03B1 \u03C4\u03BF\u03C5 \u03C4\u03AF\u03C4\u03BB\u03BF\u03C5 \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5, \u03BA\u03B1\u03B9 \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03AF\u03BD\u03B5\u03B9 \u03CC\u03C4\u03B1\u03BD \u03BF\u03B9 \u03C4\u03AF\u03C4\u03BB\u03BF\u03B9 \u03C5\u03C0\u03B5\u03C1\u03B2\u03B1\u03AF\u03BD\u03BF\u03C5\u03BD \u03C4\u03BF \u03CC\u03C1\u03B9\u03BF \u03C4\u03C9\u03BD 300 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03AE\u03C1\u03C9\u03BD.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "\u0391\u03CD\u03BE\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BC\u03B5\u03B3\u03AD\u03B8\u03BF\u03C5\u03C2 \u03C4\u03B7\u03C2/\u03C4\u03C9\u03BD \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2/\u03B5\u03B9\u03BA\u03CC\u03BD\u03C9\u03BD \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2 (\u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03B5\u03C1\u03AE\u03C2 \u03C1\u03CD\u03B8\u03BC\u03B9\u03C3\u03B7).", description: "" }, nerName: { message: "\u0391\u03C4\u03B5\u03BB\u03B5\u03B9\u03CE\u03C4\u03BF Reddit", description: "" }, subredditInfoTitle: { message: "\u03A4\u03AF\u03C4\u03BB\u03BF\u03C2:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03BF (\u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "\u0394\u03B5\u03C2 \u03C4\u03BF\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03B5 \u03BD\u03AD\u03B5\u03C2 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2 \u03C3\u03C4\u03BF \u03C6\u03CC\u03BD\u03C4\u03BF.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "\u03A0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u0391\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "\u0395\u03BB\u03B1\u03C6\u03C1\u03CC \u03A3\u03B2\u03AE\u03C3\u03B9\u03BC\u03BF", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "\u039C\u03B5\u03AF\u03C9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BC\u03B5\u03B3\u03AD\u03B8\u03BF\u03C5\u03C2 \u03C4\u03B7\u03C2/\u03C4\u03C9\u03BD \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2/\u03B5\u03B9\u03BA\u03CC\u03BD\u03C9\u03BD \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2 (\u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03B5\u03C1\u03AE\u03C2 \u03C1\u03CD\u03B8\u03BC\u03B9\u03C3\u03B7).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 (\u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD).", description: "" }, notificationsPerNotificationType: { message: "\u03B1\u03BD\u03AC \u03B5\u03AF\u03B4\u03BF\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2", description: "" }, subredditTaggerDesc: { message: "Add custom text to the beginning of submission titles on your front page, multireddits, and /r/all. Useful for adding context to submissions.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "\u0392\u03B5\u03BB\u03C4\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF \u03BD\u03B1 \u03C0\u03B7\u03B3\u03B1\u03AF\u03BD\u03B5\u03B9\u03C2 \u03C3\u03B5 \u03B4\u03B9\u03AC\u03C6\u03BF\u03C1\u03B1 \u03BC\u03AD\u03C1\u03B7 \u03C4\u03B7\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03C3\u03BF\u03C5.", description: "" }, wheelBrowseDesc: { message: "\u03A0\u03BB\u03BF\u03AE\u03B3\u03B7\u03C3\u03B7 \u03BA\u03B1\u03C4\u03B1\u03C7\u03C9\u03C1\u03AE\u03C3\u03B5\u03C9\u03BD \u03BA\u03B1\u03B9 \u03C3\u03C5\u03BB\u03BB\u03BF\u03B3\u03CE\u03BD \u03BC\u03B5 \u03BA\u03CD\u03BB\u03B9\u03C3\u03B7 \u03BC\u03AD\u03C3\u03B1 \u03C3\u03C4\u03BF \u03B3\u03BA\u03C1\u03B9 \u03B1\u03B9\u03C9\u03C1\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF.", description: "" }, tableToolsDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03B5\u03C0\u03B9\u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B7 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03B9\u03BA\u03CC\u03C4\u03B7\u03C4\u03B1 \u03C3\u03C4\u03BF Markdown \u03C4\u03C9\u03BD \u03C0\u03B9\u03BD\u03AC\u03BA\u03C9\u03BD \u03C4\u03BF\u03C5 Reddit (\u03BC\u03CC\u03BD\u03BF \u03C4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03CE\u03C1\u03B1).", description: "" }, notificationsAlwaysSticky: { message: "\u03C0\u03AC\u03BD\u03C4\u03B1 \u03B1\u03C5\u03C4\u03BF\u03BA\u03CC\u03BB\u03BB\u03B7\u03C4\u03BF", description: "" }, searchName: { message: "\u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C3\u03C4\u03B9\u03C2 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 RES", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C4\u03BF\u03C5 \u0395\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 \u0391\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u039A\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u0391\u03C0\u03B1\u03C7\u03CE\u03C1\u03B7\u03C3\u03B7", description: "" }, quickMessageSendAsTitle: { message: "\u0391\u03C0\u03BF\u03C3\u03C4\u03BF\u03BB\u03AE \u03A9\u03C2", description: "" }, pageNavName: { message: "\u03A0\u03B5\u03C1\u03B9\u03B7\u03B3\u03B7\u03C4\u03AE\u03C2 \u03A3\u03B5\u03BB\u03AF\u03B4\u03C9\u03BD", description: "" }, keyboardNavFollowLinkDesc: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF (\u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD).", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "\u0391\u03BD\u03B1\u03B2\u03AC\u03BB\u03B5\u03C4\u03B5 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B5\u03C2.", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "\u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03C9\u03BD \u03BA\u03C1\u03C5\u03BC\u03BC\u03AD\u03BD\u03C9\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03B5\u03C4\u03B9\u03BA\u03CE\u03BD \u03C0\u03C1\u03BF\u03B2\u03BF\u03BB\u03CE\u03BD \u03C4\u03B7\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2.", description: "" }, quickMessageDesc: { message: "\u0388\u03BD\u03B1 \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF \u03B4\u03B9\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u03C0\u03BF\u03C5 \u03C3\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C3\u03C4\u03AD\u03BB\u03BD\u03B5\u03B9\u03C2 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03B1 \u03B1\u03C0\u03CC \u03BF\u03C0\u03BF\u03C5\u03B4\u03AE\u03C0\u03BF\u03C4\u03B5 \u03C3\u03C4\u03BF reddit. \u03A4\u03B1 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03B1 \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B1\u03C0\u03BF\u03C3\u03C4\u03B1\u03BB\u03BF\u03CD\u03BD \u03B1\u03C0\u03CC \u03C4\u03BF \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF \u03B4\u03B9\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u03B1\u03C5\u03C4\u03CC \u03C0\u03B1\u03C4\u03CE\u03BD\u03C4\u03B1\u03C2 control-enter \u03AE command-enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "\u03B5\u03BD\u03AC\u03BB\u03BB\u03B1\u03BE\u03B5 \u03C4\u03BF \u03C3\u03C4\u03C5\u03BB \u03C4\u03BF\u03C5 \u03C5\u03C0\u03BFreddit on/off (\u03B1\u03BD \u03BA\u03B1\u03BD\u03AD\u03BD\u03B1 \u03C5\u03C0\u03BFreddit \u03B4\u03B5\u03BD \u03BA\u03B1\u03B8\u03BF\u03C1\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5, \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 \u03C4\u03BF \u03C0\u03B1\u03C1\u03CC\u03BD \u03C5\u03C0\u03BFreddit)", description: "" }, accountSwitcherUsername: { message: "\u03CC\u03BD\u03BF\u03BC\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, multiredditNavbarSectionLinksDesc: { message: "\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9 \u03C0\u03BF\u03C5 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03C0\u03C4\u03C5\u03C3\u03C3\u03CC\u03BC\u03B5\u03BD\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "\u0388\u03BD\u03B1\u03C1\u03BE\u03B7 \u039D\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE\u03C2 \u039B\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "\u039C\u03C0\u03AC\u03C1\u03B1 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7 \u039A\u03C1\u03C5\u03C6\u03AE", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+\u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C3\u03B5 \u03C5\u03C0\u03BFreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "\u0395\u03BD\u03AC\u03BB\u03BB\u03B1\u03BE\u03B5 \u03C4\u03B7\u03BD \u0394\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7 \u03C4\u03BF\u03C5 \u039C\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5 \u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u039A\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7", description: "" }, nerReturnToPrevPageDesc: { message: '\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03C3\u03C4\u03B7\u03BD \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03C0\u03BF\u03C5 \u03B2\u03C1\u03B9\u03C3\u03BA\u03CC\u03C3\u03B1\u03C3\u03C4\u03B1\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03C5\u03BC\u03AD\u03BD\u03C9\u03C2 \u03CC\u03C4\u03B1\u03BD \u03C0\u03B1\u03C4\u03AC\u03C4\u03B5 \u03C4\u03BF \u03BA\u03BF\u03C5\u03BC\u03C0\u03AF "\u03C0\u03AF\u03C3\u03C9";', description: "" }, multiredditNavbarSectionMenuTitle: { message: "\u039C\u03B5\u03BD\u03BF\u03CD \u03A4\u03BC\u03B7\u03BC\u03AC\u03C4\u03C9\u03BD", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03B1\u03B4\u03B5\u03C1\u03C6\u03CC \u03C4\u03BF\u03C5 \u03B3\u03BF\u03BD\u03AD\u03B1 (\u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1)", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "\u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03B1\u03BD\u03BF\u03B9\u03C7\u03C4\u03CE\u03BD \u03BA\u03B1\u03C1\u03C4\u03B5\u03BB\u03CE\u03BD \u03CC\u03C4\u03B1\u03BD \u03BF RES \u03C8\u03AC\u03C7\u03BD\u03B5\u03B9 \u03B3\u03B9\u03B1 \u03C0\u03BF\u03C1\u03C4\u03BF\u03BA\u03B1\u03BB\u03BF\u03BA\u03CC\u03BA\u03BA\u03B9\u03BD\u03B1.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "\u03A7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03C0\u03BF\u03C5 \u0391\u03C0\u03BF\u03BC\u03AD\u03BD\u03B5\u03B9 \u03C3\u03C4\u03B7\u03BD \u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u0392\u03B1\u03B8\u03BC\u03BF\u03BB\u03BF\u03B3\u03AF\u03B1\u03C2", description: "" }, hoverWidthDesc: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03C0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5/\u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 \u03C4\u03B7\u03BD \u03BD\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1.", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "\u0391\u03C4\u03B5\u03BB\u03B5\u03AF\u03C9\u03C4\u03B1 \u03A3\u03C7\u03CC\u03BB\u03B9\u03B1", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "\u0395\u03BE\u03B1\u03AF\u03C1\u03B5\u03C3\u03B5 \u03C4\u03B9\u03C2 \u0394\u03B9\u03BA\u03AD\u03C2 \u03BC\u03BF\u03C5 \u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C4\u03B1 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03B1 \u03B4\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "\u039C\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03B1 \u0394\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE \u03C3\u03B5 \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "\u039D\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03BA\u03BF\u03C5\u03BC\u03C0\u03AF \u03C3\u03C5\u03BD\u03B4\u03C1\u03BF\u03BC\u03AE\u03C2;", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C4\u03B7\u03C2 \u03BC\u03C0\u03AC\u03C1\u03B1\u03C2 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "\u0395\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03A6\u03AF\u03BB\u03C4\u03C1\u03BF\u03C5 \u0393\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u0395\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD", description: "" }, betteRedditDoNoCtrlFDesc: { message: '\u038C\u03C4\u03B1\u03BD \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C2 \u03C4\u03B7\u03BD \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 Ctrl+F/Cmd+F \u03C4\u03BF\u03C5 \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03CD\u03C1\u03B5\u03C3\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5, \u03C8\u03AC\u03C7\u03BD\u03B5\u03B9 \u03BC\u03CC\u03BD\u03BF \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1/\u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BA\u03B1\u03B9 \u03CC\u03C7\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5\u03C2 \u03C0\u03BB\u03BF\u03AE\u03B3\u03B7\u03C3\u03B7\u03C2 ("\u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2 \u03C0\u03B7\u03B3\u03AE \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7..."). \u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF \u03B1\u03C0\u03CC \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE, \u03BB\u03CC\u03B3\u03C9 \u03BC\u03B9\u03BA\u03C1\u03AE\u03C2 \u03B5\u03C0\u03AF\u03B4\u03C1\u03B1\u03C3\u03B7\u03C2 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03AF\u03B4\u03BF\u03C3\u03B7.', description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "\u039A\u03C1\u03CD\u03B2\u03B5\u03B9 \u03A4\u03B1 \u03A3\u03C7\u03CC\u03BB\u03B9\u03B1 \u039C\u03B5 \u0394\u03B9\u03C0\u03BB\u03CC \u039A\u03BB\u03B9\u03BA \u03A3\u03C4\u03B7 \u039A\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1.", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special color for each username.", description: "" }, backupName: { message: "\u0391\u03BD\u03C4\u03AF\u03B3\u03C1\u03B1\u03C6\u03B1 \u0391\u03C3\u03C6\u03B1\u03BB\u03B5\u03AF\u03B1\u03C2", description: "" }, profileNavigatorSectionLinksDesc: { message: "\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9 \u03C0\u03BF\u03C5 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF \u03B1\u03B9\u03C9\u03C1\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C6\u03AF\u03BB.", description: "" }, notificationCloseDelayDesc: { message: "\u03A3\u03B5 \u03C7\u03B9\u03BB\u03B9\u03BF\u03C3\u03C4\u03AC \u03C4\u03BF\u03C5 \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03BF\u03BB\u03AD\u03C0\u03C4\u03BF\u03C5, \u03BF \u03C7\u03C1\u03CC\u03BD\u03BF\u03C2 \u03BC\u03AD\u03C7\u03C1\u03B9 \u03BD\u03B1 \u03B1\u03C1\u03C7\u03AF\u03C3\u03B5\u03B9 \u03BD\u03B1 \u03B5\u03BE\u03B1\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03BC\u03B9\u03B1 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7.", description: "" }, styleTweaksUseSubredditStyle: { message: "\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 \u03C4\u03BF \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03BFreddit", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03AD\u03BD\u03B1\u03C1\u03BE\u03B7 \u03BC\u03B5 \u03AD\u03BD\u03B1\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C3\u03C4\u03B7\u03BD \u03C0\u03B1\u03C1\u03BF\u03CD\u03C3\u03B1 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03C3\u03C4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03C4\u03BF\u03C5 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03BF\u03C2 (\u03AE, \u03B1\u03BD \u03AD\u03C7\u03B5\u03B9 \u03B1\u03BD\u03BF\u03B9\u03C7\u03C4\u03B5\u03AF \u03B1\u03C0\u03CC \u03C4\u03BF \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03BF \u03C4\u03C9\u03BD \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7, \u03AD\u03BD\u03B1\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B7\u03BD \u03C0\u03B1\u03C1\u03BF\u03CD\u03C3\u03B1 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 \u03AE \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C3\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C5\u03C0\u03BFreddit \u03C3\u03C4\u03BF\u03BD \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03A0\u03BB\u03AC\u03C4\u03BF\u03C5\u03C2 \u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE\u03C2 \u0386\u03BA\u03C1\u03B7\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "\u0391\u03BD\u03B1\u03BD\u03AD\u03C9\u03C3\u03B5 \u03C4\u03B9\u03C2 \u0386\u03BB\u03BB\u03B5\u03C2 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2", description: "" }, nightModeUseSubredditStylesTitle: { message: "\u03A7\u03C1\u03AE\u03C3\u03B7 \u03A3\u03C4\u03C5\u03BB \u03A5\u03C0\u03BFreddit ", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "\u039C\u03B5\u03C4\u03AC \u03C4\u03B7\u03BD \u03C8\u03AE\u03C6\u03B9\u03C3\u03B7 \u03C3\u03B5 \u03AD\u03BD\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF, \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03B5\u03C0\u03AF\u03BB\u03B5\u03BE\u03B5 \u03C4\u03BF \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "\u03A7\u03C1\u03AE\u03C3\u03B7 Gfycat \u039A\u03B9\u03BD\u03B7\u03C4\u03CE\u03BD", description: "" }, commentToolsItalicKeyDesc: { message: "\u03A3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03BA\u03AC\u03BD\u03B5\u03B9 \u03C4\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C0\u03BB\u03AC\u03B3\u03B9\u03BF.", description: "" }, messageMenuLinksDesc: { message: "\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9 \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03B1\u03BB\u03BB\u03B7\u03BB\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1\u03C2 \u03C3\u03C4\u03BF \u03B1\u03BD\u03B1\u03C0\u03C4\u03C5\u03C3\u03C3\u03CC\u03BC\u03B5\u03BD\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "\u03A4\u03BF Reddit \u03B1\u03C0\u03BF\u03BA\u03C1\u03CD\u03C0\u03C4\u03B5\u03B9 \u03BA\u03AC\u03C0\u03BF\u03B9\u03B5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03C4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7\u03C2 (\u03C4\u03C5\u03C7\u03B1\u03AF\u03BF \u03BA\u03BB\u03C0) \u03C3\u03C4\u03B9\u03C2 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2. \u0391\u03C5\u03C4\u03AE \u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C4\u03B9\u03C2 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9.", description: "" }, commandLineLaunchTitle: { message: "\u0388\u03BD\u03B1\u03C1\u03BE\u03B7", description: "" }, betteRedditDesc: { message: '\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03B1\u03C0\u03CC \u03B2\u03B5\u03BB\u03C4\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03B7 \u03B4\u03B9\u03B5\u03C0\u03B1\u03C6\u03AE \u03C4\u03BF\u03C5 Reddit, \u03CC\u03C0\u03C9\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5\u03C2 \u03B3\u03B9\u03B1 "\u03C0\u03BB\u03AE\u03C1\u03B7 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1", \u03C4\u03B7 \u03B4\u03C5\u03BD\u03B1\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1 \u03BD\u03B1 \u03BE\u03B1\u03BD\u03B1\u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9\u03C2 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BF\u03C5 \u03AD\u03BA\u03C1\u03C5\u03C8\u03B5\u03C2 \u03BA\u03B1\u03C4\u03AC \u03BB\u03AC\u03B8\u03BF\u03C2, \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03B1.', description: "" }, resTipsDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 \u03C3\u03C5\u03BC\u03B2\u03BF\u03C5\u03BB\u03CE\u03BD/\u03BA\u03CC\u03BB\u03C0\u03C9\u03BD \u03C3\u03C4\u03B7\u03BD \u03BA\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1 \u03C4\u03BF\u03C5 RES.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03B1\u03B4\u03B5\u03C1\u03C6\u03CC (\u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1) - \u03AC\u03BB\u03BC\u03B1 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03BF\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03B1\u03B4\u03B5\u03C1\u03C6\u03CC \u03C4\u03BF\u03C5 \u03AF\u03B4\u03B9\u03BF\u03C5 \u03B2\u03AC\u03B8\u03BF\u03C5\u03C2.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "\u0395\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03AF\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B9\u03B5\u03C1\u03B1\u03C1\u03C7\u03AF\u03B1 \u03C4\u03C9\u03BD \u03BA\u03BF\u03C5\u03C4\u03B9\u03CE\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03BF\u03CD (\u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 \u03B3\u03B9\u03B1 \u03C4\u03B1\u03C7\u03CD\u03C4\u03B5\u03C1\u03B5\u03C2 \u03B5\u03C0\u03B9\u03B4\u03CC\u03C3\u03B5\u03B9\u03C2).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "\u03A3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03BA\u03AC\u03BD\u03B5\u03B9 \u03C4\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03AD\u03BD\u03C4\u03BF\u03BD\u03BF.", description: "" }, hoverWidthTitle: { message: "\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2", description: "" }, dashboardName: { message: "\u03A4\u03B1\u03BC\u03C0\u03BB\u03CC RES", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03B7\u03BD \u03A7\u03C1\u03BF\u03BD\u03BF\u03C3\u03C6\u03C1\u03B1\u03B3\u03AF\u03B4\u03B1 \u03A4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1\u03C2 \u03A4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "\u03A0\u03B1\u03C1\u03AC\u03BC\u03B5\u03B9\u03BD\u03B5 \u03A3\u03C5\u03BD\u03B4\u03B5\u03B4\u03B5\u03BC\u03AD\u03BD\u03BF\u03C2", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "\u03A6\u03C4\u03B9\u03AC\u03BE\u03B5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5\u03C2 \u03C3\u03C4\u03B1 \u03C0\u03B1\u03C1\u03AC\u03BB\u03BB\u03B7\u03BB\u03B1 \u03C5\u03C0\u03BFreddit \u03C3\u03C4\u03BF\u03BD \u03C4\u03AF\u03C4\u03BB\u03BF \u03C4\u03B7\u03C2 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7, \u03C3\u03B5 \u03C7\u03B9\u03BB\u03B9\u03BF\u03C3\u03C4\u03AC \u03C4\u03BF\u03C5 \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03BF\u03BB\u03AD\u03C0\u03C4\u03BF\u03C5 \u03C0\u03C1\u03B9\u03BD \u03B5\u03BE\u03B1\u03C6\u03B1\u03BD\u03B9\u03C3\u03C4\u03B5\u03AF \u03B7 \u03C5\u03C0\u03CC\u03BC\u03BD\u03B7\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "\u039A\u03AC\u03BD\u03B5 \u03BA\u03BB\u03B9\u03BA \u03B5\u03B4\u03CE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03BC\u03AC\u03B8\u03B5\u03B9\u03C2 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1", description: "" }, keyboardNavInboxNewTabDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03B1 \u03B5\u03B9\u03C3\u03B5\u03C1\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1 \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03C4\u03C9\u03BD \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03C5\u03C0\u03BFreddit.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "\u03CC\u03BB\u03BF\u03B9 \u03BF\u03B9 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B5\u03C2", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03C3\u03B5 \u03BA\u03AC\u03B8\u03B5 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1, \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF, \u03CC\u03C4\u03B1\u03BD \u03C0\u03B1\u03C4\u03B7\u03B8\u03B5\u03AF, \u03C3\u03B1\u03C2 \u03C0\u03B7\u03B3\u03B1\u03AF\u03BD\u03B5\u03B9 \u03C3\u03C4\u03B7\u03BD \u03BA\u03BF\u03C1\u03C5\u03C6\u03AE \u03C4\u03B7\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2.", description: "" }, subredditsCategory: { message: "\u03A5\u03C0\u03BFreddit", description: "" }, keyboardNavToggleChildrenDesc: { message: "\u0391\u03BD\u03AC\u03C0\u03C4\u03C5\u03BE\u03B5/\u03C3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B5 \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 (\u03BC\u03CC\u03BD\u03BF \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD).", description: "" }, commentPreviewDraftStyleTitle: { message: "\u03A3\u03C4\u03C5\u03BB \u03A0\u03C1\u03BF\u03C7\u03B5\u03AF\u03C1\u03BF\u03C5", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03BA\u03C1\u03B9\u03B2\u03AE \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03C3\u03C4\u03BF wiki.", description: "" }, logoLinkInbox: { message: "\u0395\u03B9\u03C3\u03B5\u03C1\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1", description: "" }, searchHelperDesc: { message: "\u03A0\u03B1\u03C1\u03AD\u03C7\u03B5\u03B9 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03B7 \u03C7\u03C1\u03AE\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C3\u03B5 \u039D\u03AD\u03B1 \u0395\u03C3\u03C4\u03B9\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u0391\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7\u03C2", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "\u0394\u03B5\u03AF\u03BE\u03B5 \u03A7\u03C1\u03BF\u03BD\u03BF\u03C3\u03C6\u03C1\u03B1\u03B3\u03AF\u03B4\u03B5\u03C2 \u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "\u039C\u03B7 \u0391\u03BD\u03B1\u03B3\u03BD\u03C9\u03C3\u03BC\u03AD\u03BD\u03B1 \u039F\u03B4\u03B7\u03B3\u03B5\u03AF \u03C3\u03C4\u03B1 \u0395\u03B9\u03C3\u03B5\u03C1\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1", description: "" }, presetsName: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2", description: "" }, styleTweaksName: { message: "\u0395\u03C0\u03B5\u03BC\u03B2\u03AC\u03C3\u03B5\u03B9\u03C2 \u03A3\u03C4\u03C5\u03BB", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "\u0391\u03BD\u03B1\u03BA\u03BF\u03B9\u03BD\u03CE\u03C3\u03B5\u03B9\u03C2", description: "" }, hoverInstancesDesc: { message: "\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03C9\u03BD \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03C9\u03BD \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03C9\u03BD", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD, \u03A7\u03C1\u03CE\u03BC\u03B1 \u0391\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7\u03C2 \u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE\u03C2 \u0386\u03BA\u03C1\u03B7\u03C2", description: "" }, keyboardNavMoveUpCommentDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03B5\u03C0\u03AC\u03BD\u03C9 \u03C3\u03C4\u03BF \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C3\u03B5 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03BD\u03B7\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "\u0394\u03B5\u03AF\u03BE\u03B5 \u03A0\u03BB\u03B5\u03C5\u03C1\u03B9\u03BA\u03AE \u039C\u03C0\u03AC\u03C1\u03B1 \u03A7\u03C1\u03BF\u03BD\u03BF\u03C3\u03C6\u03C1\u03B1\u03B3\u03AF\u03B4\u03C9\u03BD", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u039F\u03BC\u03B1\u03BB\u03AE\u03C2 \u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7, \u03C3\u03B5 \u03C7\u03B9\u03BB\u03B9\u03BF\u03C3\u03C4\u03AC \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03BF\u03BB\u03AD\u03C0\u03C4\u03BF\u03C5, \u03C0\u03C1\u03B9\u03BD \u03AD\u03BD\u03B1\u03C2 \u03BA\u03C1\u03C5\u03BC\u03BC\u03AD\u03BD\u03BF\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2 \u03C3\u03B2\u03AE\u03C3\u03B5\u03B9.", description: "" }, accountSwitcherShowKarmaTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5 \u03C4\u03BF \u039A\u03AC\u03C1\u03BC\u03B1", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u039D\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u039B\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1", description: "" }, noPartDisableCommentTextareaDesc: { message: "\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B4\u03C5\u03BD\u03B1\u03C4\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2 \u03C3\u03C5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, nerReturnToPrevPageTitle: { message: "\u0395\u03C0\u03B9\u03C3\u03C4\u03C1\u03BF\u03C6\u03AE \u03C3\u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u03B5\u03C6\u03AD \u03BF\u03BC\u03B1\u03BB\u03AE\u03C2 \u03BC\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2 (\u03C3\u03B5 \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03CC\u03BB\u03B5\u03C0\u03C4\u03B1).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7\u03C2 \u03B1\u03B9\u03C4\u03AF\u03C9\u03BD \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF\u03C5", description: "" }, contextViewFullContextDesc: { message: '\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5 \u03C4\u03BF \u03A0\u03BB\u03AE\u03C1\u03B5\u03C2 \u03A0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF" \u03C3\u03B5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.', description: "" }, messageMenuFadeDelayTitle: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u039F\u03BC\u03B1\u03BB\u03AE\u03C2 \u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7\u03C2/\u0395\u03BE\u03B1\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7\u03C2", description: "" }, commentToolsDesc: { message: "\u03A0\u03B1\u03C1\u03AD\u03C7\u03B5\u03B9 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03B1 \u03BA\u03B1\u03B9 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C3\u03C5\u03BD\u03B8\u03AD\u03C4\u03B5\u03B9\u03C2 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1, \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5, \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 wiki \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03B5\u03C2 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AD\u03C2 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 markdown.", description: "" }, noPartName: { message: "\u0391\u03C0\u03B1\u03B3\u03CC\u03C1\u03B5\u03C5\u03C3\u03B7 \u03A3\u03C5\u03BC\u03BC\u03B5\u03C4\u03BF\u03C7\u03AE\u03C2", description: "" }, presetsDesc: { message: "\u0395\u03C0\u03AF\u03BB\u03B5\u03BE\u03B5 \u03B1\u03C0\u03CC \u03B4\u03B9\u03AC\u03C6\u03BF\u03C1\u03B5\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD RES. \u039A\u03AC\u03B8\u03B5 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03AE \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03B4\u03B9\u03AC\u03C6\u03BF\u03C1\u03B5\u03C2 \u03BC\u03BF\u03BD\u03AC\u03B4\u03B5\u03C2 \u03AE \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2, \u03B1\u03BB\u03BB\u03AC \u03B4\u03B5\u03BD \u03B5\u03C0\u03B1\u03BD\u03B1\u03C6\u03AD\u03C1\u03B5\u03B9 \u03CC\u03BB\u03B5\u03C2 \u03C4\u03B9\u03C2 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C2 \u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03BF\u03C2 \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03C0\u03BF\u03C5 \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C6\u03B1\u03C1\u03BC\u03BF\u03C3\u03C4\u03B5\u03AF \u03C0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03C3\u03BC\u03AD\u03BD\u03BF \u03B2\u03AC\u03B8\u03BF\u03C2.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5 \u03C4\u03B1 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03B1 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03C3\u03C4\u03BF \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD \u03B1\u03C0\u03BF\u03BA\u03BB\u03B5\u03B9\u03C3\u03BC\u03BF\u03CD.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03BF \u03C5\u03C0\u03BFreddit \u03C4\u03BF\u03C5 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1 (\u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: '\u03A0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7 \u03C3\u03C4\u03B7 \u03C4\u03C9\u03C1\u03B9\u03BD\u03AE \u03C3\u03B1\u03C2 \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1 \u03B1\u03C1\u03BD\u03AE\u03B8\u03B7\u03BA\u03B5. \u0391\u03C0\u03B1\u03B9\u03C4\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03B5\u03AF \u03B7 \u03B4\u03CD\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03B7 \u03B1\u03BD\u03B1\u03C4\u03BF\u03BB\u03AE \u03C4\u03BF\u03C5 \u03B7\u03BB\u03AF\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BD\u03C5\u03BA\u03C4\u03CE\u03C2. \u0393\u03B9\u03B1 \u03BD\u03B1 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03B1\u03C5\u03C4\u03AE \u03C4\u03B7 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1, \u03C0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 "$1".', description: "" }, styleTweaksSubredditStyle: { message: "\u03A3\u03C4\u03C5\u03BB \u03A5\u03C0\u03BFreddit", description: "" }, keyboardNavDownVoteTitle: { message: "\u039A\u03AC\u03C4\u03C9 \u03A8\u03AE\u03C6\u03BF\u03C2", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u039A\u03AC\u03C4\u03C9", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "\u0391\u03BD\u03B1\u03C3\u03C4\u03B5\u03AF\u03BB\u03B5\u03C4\u03B5 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B5\u03C2.", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "\u0395\u03AF\u03B4\u03B7 \u0395\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C9\u03BD", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u039A\u03AC\u03C4\u03C9 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03A8\u03AE\u03C6\u03B9\u03C3\u03B7 \u03A3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5", description: "" }, hoverCloseOnMouseOutDesc: { message: "\u0391\u03BD \u03C4\u03BF \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03B8\u03B1 \u03BA\u03BB\u03B5\u03AF\u03C3\u03B5\u03B9 \u03CC\u03C4\u03B1\u03BD \u03B1\u03C0\u03BF\u03BC\u03B1\u03BA\u03C1\u03C5\u03BD\u03B8\u03B5\u03AF \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9, \u03B5\u03C0\u03B9\u03C0\u03BB\u03AD\u03BF\u03BD \u03C4\u03BF\u03C5 \u03BA\u03BF\u03C5\u03BC\u03C0\u03B9\u03BF\u03CD \u03BA\u03BB\u03B5\u03B9\u03C3\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2.", description: "" }, subredditTaggerName: { message: "\u0395\u03C4\u03B9\u03BA\u03AD\u03C4\u03B5\u03C2 \u03A5\u03C0\u03BFreddit", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "\u0395\u03C0\u03B9\u03C3\u03AE\u03BC\u03B1\u03BD\u03C3\u03B7 \u03B1\u03BD \u03C3\u03B5 \u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03BA\u03C4\u03B9\u03BA\u03CC \u039B\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CC", description: "" }, userInfoDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03BC\u03B9\u03B1 \u03C5\u03C0\u03CC\u03BC\u03BD\u03B7\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD \u03C3\u03C4\u03BF\u03C5\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B5\u03C2.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "\u0391\u03C0\u03CC \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE, \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03CC\u03C4\u03B1\u03BD \u03C0\u03C1\u03BF\u03C3\u03C4\u03AF\u03B8\u03B5\u03C4\u03B1\u03B9 \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 \u03C3\u03B5 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03C3\u03B5 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5. \u03A3\u03B5 \u03AC\u03BB\u03BB\u03B7 \u03C0\u03B5\u03C1\u03AF\u03C0\u03C4\u03C9\u03C3\u03B7, \u03B8\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2 (\u03C3\u03C4\u03BF\u03BD \u03BF\u03C0\u03BF\u03AF\u03BF \u03B1\u03BD\u03B1\u03C6\u03AD\u03C1\u03B5\u03C4\u03B1\u03B9 \u03B7 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7).", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u039A\u03BB\u03B5\u03B9\u03C3\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "\u0395\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03C3\u03C4\u03BF \u03BB\u03BF\u03B3\u03CC\u03C4\u03C5\u03C0\u03BF \u03C4\u03BF\u03C5 reddit.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "\u03A3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 \u03C0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5 \u03C0\u03BF\u03C5 \u03B1\u03BD\u03BF\u03AF\u03B3\u03B5\u03B9 \u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03B3\u03C1\u03AE\u03B3\u03BF\u03C1\u03BF\u03C5 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03BF\u03C2.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "\u0391\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C3\u03B5 \u03BA\u03AC\u03B8\u03B5 \u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03CC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF.", description: "" }, pageNavDesc: { message: "\u03A0\u03B1\u03C1\u03AD\u03C7\u03B5\u03B9 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03B1 \u03B3\u03B9\u03B1 \u03C0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7 \u03C3\u03C4\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03BF \u03C0\u03B1\u03C1\u03CC\u03BD \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03C3\u03C4\u03BF\u03BD \u0395\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7 \u039B\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CE\u03BD.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03B5 $2 \u03C0\u03BF\u03BB\u03C5reddit", description: "" }, commentToolsStrikeKeyTitle: { message: "\u03A0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u0394\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7\u03C2", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7, \u03C3\u03B5 \u03C7\u03B9\u03BB\u03B9\u03BF\u03C3\u03C4\u03AC \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03BF\u03BB\u03AD\u03C0\u03C4\u03BF\u03C5, \u03C0\u03C1\u03B9\u03BD \u03C6\u03BF\u03C1\u03C4\u03CE\u03C3\u03B5\u03B9 \u03C4\u03BF \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03BF \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7\u03C2.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colorblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03A0\u03BB\u03BF\u03B7\u03B3\u03BF\u03CD \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03B1\u03C0\u03CC \u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE.", description: "" }, keyboardNavSaveRESTitle: { message: "\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u039A\u03AC\u03C4\u03C9 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "\u039A\u03BF\u03C5\u03C4\u03B9\u03AC \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, profileNavigatorName: { message: "\u03A0\u03BB\u03BF\u03AE\u03B3\u03B7\u03C3\u03B7 \u03A0\u03C1\u03BF\u03C6\u03AF\u03BB", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "\u038C\u03C7\u03B9", description: "" }, notificationFadeOutLengthTitle: { message: "\u03A7\u03C1\u03CC\u03BD\u03BF\u03C2 \u039F\u03BC\u03B1\u03BB\u03AE\u03C2 \u0395\u03BE\u03B1\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7\u03C2", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "\u0393\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03CC \u03A3\u03C4\u03C5\u03BB \u039A\u03CD\u03BB\u03B9\u03C3\u03B7\u03C2", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "\u03A4\u03BF Reddit Enhancement Suite \u03B1\u03BD\u03B1\u03B2\u03B1\u03B8\u03BC\u03AF\u03C3\u03C4\u03B7\u03BA\u03B5 \u03C3\u03C4\u03B7\u03BD \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 $1.", description: "" }, keyboardNavShowParentsDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03C9\u03BD \u03B3\u03BF\u03BD\u03B5\u03CA\u03BA\u03CE\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "\u0393\u03C1\u03AE\u03B3\u03BF\u03C1\u03B7 \u03C0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03C4\u03BF\u03C5 RES \u03BC\u03B5 \u03B4\u03B9\u03AC\u03C6\u03BF\u03C1\u03B5\u03C2 \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2.", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "\u0391\u03BD \u03BF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2 \u03BA\u03AC\u03BD\u03B5\u03B9 \u03BA\u03BB\u03B9\u03BA \u03C3\u03B5 \u03AD\u03BD\u03B1\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C0\u03C1\u03BF\u03C2 \u03BC\u03B9\u03B1 \u03C0\u03C1\u03BF\u03C7\u03C9\u03C1\u03B7\u03BC\u03AD\u03BD\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03CC\u03C4\u03B1\u03BD \u03BF\u03B9 \u03C0\u03C1\u03BF\u03C7\u03C9\u03C1\u03B7\u03BC\u03AD\u03BD\u03B5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03C1\u03C5\u03BC\u03BC\u03AD\u03BD\u03B5\u03C2, \u03BD\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03B9\u03C3\u03C4\u03B5\u03AF \u03BC\u03B9\u03B1 \u03BA\u03C1\u03AF\u03C3\u03B9\u03BC\u03B7 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7;", description: "" }, commentHidePerName: { message: "\u039C\u03CC\u03BD\u03B9\u03BC\u03B7 \u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "\u0395\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u039A\u03B1\u03C4\u03B1\u03C7\u03CE\u03C1\u03B9\u03C3\u03B7", description: "" }, betteRedditPinHeaderTitle: { message: "\u039A\u03B1\u03C1\u03C6\u03AF\u03C4\u03C3\u03C9\u03BC\u03B1 \u039A\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1\u03C2", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "\u0394\u03B5\u03C3\u03BC\u03B5\u03C5\u03C4\u03B9\u03BA\u03AC \u0398\u03AD\u03C3\u03B7\u03C2 \u039C\u03B1\u03BA\u03C1\u03BF\u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03CC \u0393\u03B9\u03B1 \u039C\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03B1 \u0391\u03C0\u03BF\u03BA\u03BB\u03B5\u03B9\u03C3\u03BC\u03BF\u03CD", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u039C\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C3\u03B5 \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, versionDesc: { message: "\u0394\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03B5\u03BB\u03AD\u03B3\u03C7\u03BF\u03C5\u03C2 \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 \u03BA\u03B1\u03B9 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03C9\u03BD \u03B5\u03BA\u03B4\u03CC\u03C3\u03B5\u03C9\u03BD.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "\u03A4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7, \u03C4\u03BF \u03BA\u03AC\u03C1\u03BC\u03B1, \u03BF\u03B9 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2, \u03C4\u03BF \u03B3\u03C1\u03B1\u03BD\u03AC\u03B6\u03B9 \u03C4\u03BF\u03C5 RES \u03BA.\u03B1. \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03C1\u03C5\u03BC\u03BC\u03AD\u03BD\u03B1. \u039C\u03C0\u03BF\u03C1\u03B5\u03AF\u03C2 \u03BD\u03B1 \u03C4\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03C3\u03B5\u03B9\u03C2 \u03BE\u03B1\u03BD\u03AC \u03BA\u03AC\u03BD\u03BF\u03BD\u03C4\u03B1\u03C2 \u03BA\u03BB\u03B9\u03BA \u03C3\u03C4\u03BF \u03BA\u03BF\u03C5\u03BC\u03C0\u03AF $1 \u03C3\u03C4\u03B7\u03BD \u03C0\u03AC\u03BD\u03C9 \u03B4\u03B5\u03BE\u03B9\u03AC \u03B3\u03C9\u03BD\u03AF\u03B1.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C4\u03BF\u03C5 \u03BA\u03BF\u03C1\u03C5\u03C6\u03B1\u03AF\u03BF\u03C5 \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF\u03C5 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03BA\u03CD\u03BB\u03B9\u03C3\u03B7", description: "" }, keyboardNavFollowLinkTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF\u03BD \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF", description: "" }, keyboardNavMoveBottomDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF \u03C4\u03AD\u03BB\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2 (\u03C3\u03B5 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD)", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "\u03A8\u03AE\u03C6\u03B9\u03C3\u03B5 \u03C0\u03AC\u03BD\u03C9 \u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03AE \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF (\u03B1\u03BB\u03BB\u03AC \u03BC\u03B7\u03BD \u03B1\u03C6\u03B1\u03B9\u03C1\u03B5\u03AF\u03C2 \u03C4\u03B7\u03BD \u03C0\u03AC\u03BD\u03C9 \u03C8\u03AE\u03C6\u03BF).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u039F\u03BC\u03B1\u03BB\u03AE\u03C2 \u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2", description: "" }, commentDepthCommentPermaLinksTitle: { message: "\u039C\u03CC\u03BD\u03B9\u03BC\u03BF\u03B9 \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, aboutOptionsLicenseTitle: { message: "\u0386\u03B4\u03B5\u03B9\u03B1 \u03A7\u03C1\u03AE\u03C3\u03B7\u03C2", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03C4\u03C9\u03BD \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD.", description: "" }, keyboardNavImageMoveRightTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03C4\u03B7\u03BD \u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u0394\u03B5\u03BE\u03B9\u03AC", description: "" }, keyboardNavPrevPageDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 (\u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "\u03A0\u03B1\u03C1\u03B1\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B7 \u0395\u03C0\u03B9\u03C3\u03BA\u03B5\u03C6\u03B8\u03AD\u03BD\u03C4\u03C9\u03BD \u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD ", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "\u0391\u03BD\u03BF\u03AF\u03B3\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5\u03C2 \u03C0\u03BF\u03C5 \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03BC\u03AD\u03C3\u03B1 \u03C3\u03B5 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u039F\u03BC\u03B1\u03BB\u03AE\u03C2 \u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2", description: "" }, userInfoCommentKarma: { message: "\u039A\u03AC\u03C1\u03BC\u03B1 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD:", description: "" }, settingsConsoleDesc: { message: "\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03BA\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C4\u03B9\u03BC\u03AE\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 RES.", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Mod Color", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7\u03C2 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD \u03C5\u03C0\u03BFreddit.", description: "" }, accountSwitcherName: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u039B\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CE\u03BD", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03B1\u03B4\u03B5\u03C1\u03C6\u03CC (\u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1) - \u03AC\u03BB\u03BC\u03B1 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03BF\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03B1\u03B4\u03B5\u03C1\u03C6\u03CC \u03C4\u03BF\u03C5 \u03AF\u03B4\u03B9\u03BF\u03C5 \u03B2\u03AC\u03B8\u03BF\u03C5\u03C2.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "\u0394\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7\u03C2 \u039D\u03CD\u03C7\u03C4\u03B1\u03C2", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03CC \u0393\u03B9\u03B1 \u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD.", description: "" }, presetsLiteTitle: { message: "\u0395\u03BB\u03B1\u03C6\u03C1\u03CD", description: "" }, dashboardDashboardShortcutTitle: { message: "\u03A3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 \u03A0\u03AF\u03BD\u03B1\u03BA\u03B1 \u0395\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B5", description: "" }, userInfoLink: { message: "\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "\u03A0\u03C1\u03B9\u03BD $1", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03B4\u03B9\u03AC\u03C1\u03BA\u03B5\u03B9\u03B5\u03C2 \u03C4\u03C9\u03BD \u03B2\u03AF\u03BD\u03C4\u03B5\u03BF \u03CC\u03C4\u03B1\u03BD \u03B1\u03C5\u03C4\u03CC \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03C6\u03B9\u03BA\u03C4\u03CC.", description: "" }, userTaggerIgnoredPlaceholder: { message: "\u03B1\u03B3\u03BD\u03BF\u03AE\u03B8\u03B7\u03BA\u03B5.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "\u0391\u03C0\u03AC\u03BD\u03C4\u03B7\u03C3\u03B7", description: "" }, accountSwitcherSimpleArrow: { message: "\u03B1\u03C0\u03BB\u03CC \u03B2\u03AD\u03BB\u03BF\u03C2", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "\u0388\u03BC\u03B2\u03BB\u03B7\u03BC\u03B1", description: "" }, messageMenuUseQuickMessageTitle: { message: "\u03A7\u03C1\u03AE\u03C3\u03B7 \u0393\u03C1\u03AE\u03B3\u03BF\u03C1\u03BF\u03C5 \u039C\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03BF\u03C2", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "\u03B2\u03AC\u03B6\u03B5\u03B9 \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 \u03C3\u03C4\u03BF\u03BD \u03C3\u03C5\u03BD\u03C4\u03AC\u03BA\u03C4\u03B7 \u03C4\u03BF\u03C5 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5/\u03C3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "\u038C\u03BB\u03B5\u03C2 \u03BF\u03B9 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE. \u0391\u03C6\u03B1\u03B9\u03C1\u03AD\u03C3\u03C4\u03B5 \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B1\u03BD \u03B8\u03AD\u03BB\u03B5\u03C4\u03B5 \u03BD\u03B1 \u03BA\u03C1\u03CD\u03C8\u03B5\u03C4\u03B5 \u03C4\u03B9\u03C2 \u03C0\u03C1\u03BF\u03C7\u03C9\u03C1\u03B7\u03BC\u03AD\u03BD\u03B5\u03C2 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2.", description: "" }, betteRedditFixHideLinksTitle: { message: "\u0394\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B5 \u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03A3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD", description: "" }, commentNavName: { message: "\u03A0\u03B5\u03C1\u03B9\u03B7\u03B3\u03B7\u03C4\u03AE\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "\u0386\u03BD\u03BF\u03B9\u03BE\u03B5 \u03C4\u03BF\u03BD \u03A0\u03BB\u03BF\u03B7\u03B3\u03CC \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, presetsLiteDesc: { message: "\u0395\u03BB\u03B1\u03C6\u03C1\u03CD RES: \u03BC\u03CC\u03BD\u03BF \u03C4\u03B1 \u03B4\u03B7\u03BC\u03BF\u03C6\u03B9\u03BB\u03AE", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "\u03A0\u03B1\u03C4\u03CE\u03BD\u03C4\u03B1\u03C2 Ctrl+Enter \u03AE Cmd+Enter \u03BA\u03B1\u03C4\u03B1\u03C7\u03C9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C4\u03BF \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03BC\u03AD\u03BD\u03BF \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF/wiki.", description: "" }, onboardingUpdateNotifictionNothing: { message: "\u03A4\u03AF\u03C0\u03BF\u03C4\u03B1", description: "" }, filteRedditShowFilterlineTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u0393\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03A6\u03AF\u03BB\u03C1\u03C9\u03BD", description: "" }, multiredditNavbarSectionLinksTitle: { message: "\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9 \u03A4\u03BC\u03B7\u03BC\u03AC\u03C4\u03C9\u03BD", description: "" }, hideChildCommentsDesc: { message: "\u0395\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD-\u03C0\u03B1\u03B9\u03B4\u03B9\u03CE\u03BD.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover", description: "" }, submitHelperName: { message: "\u0392\u03BF\u03B7\u03B8\u03CC\u03C2 \u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B7\u03C2", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03A4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "\u03A3\u03C4\u03C1\u03BF\u03B3\u03B3\u03C5\u03BB\u03B5\u03BC\u03AD\u03BD\u03BF \u03A3\u03C7\u03CC\u03BB\u03B9\u03BF", description: "" }, keyboardNavImageSizeUpTitle: { message: "\u039C\u03B5\u03B3\u03AC\u03BB\u03C9\u03C3\u03B5 \u03C4\u03B7\u03BD \u0395\u03B9\u03BA\u03CC\u03BD\u03B1", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "\u03B5\u03BD\u03AC\u03BB\u03BB\u03B1\u03BE\u03B5 \u03C4\u03BF \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03BFreddit $1 \u03B3\u03B9\u03B1 \u03C4\u03BF: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "\u03A3\u03C7\u03CC\u03BB\u03B9\u03B1", description: "" }, commentToolsStrikeKeyDesc: { message: "\u03A3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C3\u03B5\u03B9 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03BC\u03BC\u03B9\u03C3\u03B7 \u03C3\u03C4\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 \u03CC\u03C4\u03B1\u03BD \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BA\u03CD\u03BB\u03B9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03C0\u03AC\u03BD\u03C9 \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options", description: "" }, logoLinkMyUserPage: { message: "\u0397 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03BC\u03BF\u03C5", description: "" }, keyboardNavUseGoModeDesc: { message: '\u0391\u03C0\u03B1\u03AF\u03C4\u03B7\u03C3\u03B5 \u03AD\u03BD\u03B1\u03C1\u03BE\u03B7 \u03C4\u03BF\u03C5 goMode, \u03C0\u03C1\u03B9\u03BD \u03C4\u03B7\u03BD \u03C7\u03C1\u03AE\u03C3\u03B7 \u03C4\u03C9\u03BD \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03C9\u03BD "go to".', description: "" }, easterEggName: { message: "\u039A\u03C1\u03C5\u03BC\u03BC\u03AD\u03BD\u03BF\u03C2 \u0398\u03B7\u03C3\u03B1\u03C5\u03C1\u03CC\u03C2", description: "" }, commentToolsSuperKeyDesc: { message: "\u03A3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03C3\u03B5\u03B9 \u03C4\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C9\u03C2 \u03B5\u03BA\u03B8\u03AD\u03C4\u03B7.", description: "" }, keyboardNavUpVoteTitle: { message: "\u03A0\u03AC\u03BD\u03C9 \u03A8\u03AE\u03C6\u03BF\u03C2", description: "" }, notificationNotificationTypesDesc: { message: "\u0394\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03AF\u03C3\u03BF\u03C5 \u03B4\u03B9\u03AC\u03C6\u03BF\u03C1\u03B5\u03C4\u03B9\u03BA\u03AC \u03B5\u03AF\u03B4\u03B7 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C9\u03BD.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "\u03C0\u03B1\u03C1\u03B1\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B7", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03B4\u03B9\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u03B3\u03C1\u03AE\u03B3\u03BF\u03C1\u03BF\u03C5 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03BF\u03C2 \u03CC\u03C4\u03B1\u03BD \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BA\u03BB\u03B9\u03BA \u03C3\u03B5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5\u03C2 reddit.com/message/compose \u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1, selftext \u03AE \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 wiki.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "\u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7 \u03C4\u03C9\u03BD \u03BA\u03BF\u03C5\u03BC\u03C0\u03B9\u03CE\u03BD \u03C4\u03C9\u03BD \u03BC\u03B7\u03BD\u03C5\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C4\u03B7\u03BD \u03C4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1 \u03CC\u03C4\u03B1\u03BD \u03BF RES \u03B5\u03BB\u03AD\u03B3\u03C7\u03B5\u03B9 \u03B3\u03B9\u03B1 \u03C0\u03BF\u03C1\u03C4\u03BF\u03BA\u03B1\u03BB\u03BF\u03BA\u03CC\u03BA\u03BA\u03B9\u03BD\u03B1.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "\u03A0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7\u03C2 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD \u03C0\u03BF\u03C5 \u03AD\u03C7\u03BF\u03C5\u03BD \u03C5\u03C8\u03B7\u03BB\u03AE \u03C0\u03BF\u03B9\u03BD\u03AE.", description: "" }, userInfoPostKarma: { message: "\u039A\u03AC\u03C1\u03BC\u03B1 \u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "\u03B5\u03BD\u03AC\u03BB\u03BB\u03B1\u03BE\u03B5 \u03C4\u03BF \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03BFreddit $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "\u0394\u03B9\u03B1\u03B2\u03AC\u03C3\u03C4\u03B5 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "\u03A0\u03C1\u03BF\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u039B\u03BF\u03B3\u03CC\u03C4\u03C5\u03C0\u03BF\u03C5 Reddit", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03CC \u0393\u03B9\u03B1 \u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03A5\u03C0\u03BFreddit", description: "" }, accountSwitcherShowKarmaDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03BF \u03BA\u03AC\u03C1\u03BC\u03B1 \u03C4\u03C9\u03BD \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD \u03BA\u03B1\u03B9 \u03C4\u03C9\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, keyboardNavDesc: { message: "\u03A0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7 \u03BC\u03AD\u03C3\u03C9 \u03C0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03C4\u03BF reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03B9\u03B8\u03BC\u03BF\u03CD (\u03C0.\u03C7. [+6]) \u03B1\u03BD\u03C4\u03AF \u03C4\u03BF\u03C5 [vw]", description: "" }, pageNavToCommentTitle: { message: "\u03A3\u03B5 \u039D\u03AD\u03B1 \u03A0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u03B3\u03BF\u03BD\u03AD\u03B1 (\u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1)", description: "" }, keyboardNavGoModeDesc: { message: '\u0395\u03AF\u03C3\u03BF\u03B4\u03BF\u03C2 \u03C3\u03C4\u03B7\u03BD "\u039B\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 Go" (\u03B1\u03C0\u03B1\u03C1\u03B1\u03AF\u03C4\u03B7\u03C4\u03BF \u03C0\u03C1\u03B9\u03BD \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF \u03B1\u03C0\u03CC \u03C4\u03B9\u03C2 \u03C0\u03B1\u03C1\u03B1\u03BA\u03AC\u03C4\u03C9 "go to" \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2).', description: "" }, hideChildCommentsHideNestedDesc: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03C0\u03B1\u03B9\u03B4\u03B9\u03CE\u03BD \u03B3\u03B9\u03B1 \u03AD\u03BD\u03B8\u03B5\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03CC\u03C4\u03B1\u03BD \u03BA\u03C1\u03CD\u03B2\u03BF\u03BD\u03C4\u03B1\u03B9 \u03CC\u03BB\u03B1 \u03C4\u03B1 \u03B8\u03C5\u03B3\u03B1\u03C4\u03C1\u03B9\u03BA\u03AC \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+\u03C0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7\u03C2 \u03C4\u03BC\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C0\u03BF\u03BB\u03C5reddit", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD, \u03A7\u03C1\u03CE\u03BC\u03B1 \u03A3\u03C5\u03BC\u03C0\u03C4\u03C5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE\u03C2 \u0386\u03BA\u03C1\u03B7\u03C2", description: "" }, scrollOnCollapseDesc: { message: "\u039A\u03CD\u03BB\u03B9\u03C3\u03B7 \u03C3\u03C4\u03BF \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03CC\u03C4\u03B1\u03BD \u03AD\u03BD\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03AD\u03C7\u03B5\u03B9 \u03C3\u03C5\u03BC\u03C0\u03C4\u03C5\u03C7\u03B8\u03B5\u03AF.", description: "" }, commandLineName: { message: "\u0393\u03C1\u03B1\u03BC\u03BC\u03AE \u0395\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD RES", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03C4\u03B7\u03BD \u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "\u03C7\u03B5\u03B9\u03C1\u03BF\u03BA\u03AF\u03BD\u03B7\u03C4\u03B7 \u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "\u03A4\u03BF \u03C4\u03B1\u03BC\u03C0\u03BB\u03CC RES \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C4\u03BF \u03BA\u03B5\u03BD\u03C4\u03C1\u03B9\u03BA\u03CC \u03C3\u03B7\u03BC\u03B5\u03AF\u03BF \u03B3\u03B9\u03B1 \u03B4\u03B9\u03AC\u03C6\u03BF\u03C1\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC, \u03CC\u03C0\u03C9\u03C2 \u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03B1 \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03B1 \u03C7\u03C1\u03AE\u03C3\u03B9\u03BC\u03B1 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03B1.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "\u0391\u03C6\u03BF\u03CD \u03B5\u03C0\u03B9\u03BB\u03AD\u03BE\u03B5\u03B9\u03C2 \u03BC\u03B9\u03B1 \u03BC\u03B1\u03BA\u03C1\u03BF\u03B5\u03BD\u03C4\u03BF\u03BB\u03AE \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03C0\u03C4\u03C5\u03C3\u03C3\u03CC\u03BC\u03B5\u03BD\u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1, \u03BD\u03B1 \u03BC\u03B7\u03BD \u03BA\u03C1\u03C5\u03C6\u03C4\u03B5\u03AF \u03B7 \u03BB\u03AF\u03C3\u03C4\u03B1.", description: "" }, filteRedditSubredditsTitle: { message: "\u03A5\u03C0\u03BFreddit", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03B5\u03AF \u03C4\u03B7\u03BD/\u03C4\u03B9\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1/\u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF\u03BD \u039C\u03CC\u03BD\u03B9\u03BC\u03BF \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C3\u03B5 \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "\u0391\u03C6\u03B1\u03B9\u03C1\u03B5\u03AF \u03C4\u03BF\u03BD \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC \u03CD\u03C8\u03BF\u03C5\u03C2 \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "\u03C0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 $1", description: "" }, searchHelperLegacySearchDesc: { message: '\u0391\u03AF\u03C4\u03B7\u03BC\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 "\u03C0\u03B1\u03BB\u03B9\u03AC\u03C2 \u03B4\u03B9\u03AC\u03C4\u03B1\u03BE\u03B7\u03C2" \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF \u03C1\u03AD\u03BD\u03C4\u03B9\u03C4.\n\n\n\u0391\u03C5\u03C4\u03CC \u03B8\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B4\u03B9\u03B1\u03B8\u03AD\u03C3\u03B9\u03BC\u03BF \u03B3\u03B9\u03B1 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C7\u03C1\u03CC\u03BD\u03BF.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u0396\u03B7\u03C4\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2", description: "" }, aboutOptionsFAQTitle: { message: "\u03A3\u03C5\u03C7\u03BD\u03AD\u03C2 \u0395\u03C1\u03C9\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5 \u03C4\u03B9\u03C2 \u039B\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "\u039C\u03B9\u03B1 \u03C0\u03B9\u03BF \u03C3\u03BA\u03BF\u03C5\u03C1\u03CC\u03C7\u03C1\u03C9\u03BC\u03B7, \u03C0\u03B9\u03BF \u03C6\u03B9\u03BB\u03B9\u03BA\u03AE \u03C3\u03C4\u03BF \u03BC\u03AC\u03C4\u03B9 \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7 \u03C4\u03BF\u03C5 Reddit, \u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03B7 \u03B3\u03B9\u03B1 \u03C0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7 \u03BD\u03CD\u03C7\u03C4\u03B1.\n\n\u03A3\u03B7\u03BC\u03B5\u03AF\u03C9\u03C3\u03B7: \u0397 \u03C7\u03C1\u03AE\u03C3\u03B7 \u03B1\u03C5\u03C4\u03BF\u03CD \u03C4\u03BF\u03C5 \u03B4\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7 on/off \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03C4\u03B5\u03BB\u03B5\u03AF\u03C9\u03C2 \u03CC\u03BB\u03B1 \u03C4\u03B1 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03B1 \u03C4\u03B7\u03C2 \u03BC\u03BF\u03BD\u03AC\u03B4\u03B1\u03C2 \u03BD\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2.\n\u0393\u03B9\u03B1 \u03BD\u03B1 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03B1\u03C0\u03BB\u03AC \u03C4\u03B7 \u03BD\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1, \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 \u03C4\u03BF\u03BD \u03C0\u03B1\u03C1\u03B1\u03BA\u03AC\u03C4\u03C9 nightModeOn \u03B4\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "\u03A4\u03BF \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03BFreddit \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF \u03B3\u03B9\u03B1 \u03C4\u03BF \u03C5\u03C0\u03BFreddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Color for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "\u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03A4\u03C1\u03AD\u03C7\u03BF\u03C5\u03C3\u03B1\u03C2 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1\u03C2", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03A0\u03BB\u03BF\u03B7\u03B3\u03BF\u03CD \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03A0\u03AC\u03BD\u03C9", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03BF \u03C0\u03C1\u03BF\u03C6\u03AF\u03BB.", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "\u0394\u03B5\u03C2 \u03C4\u03BF\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03B5 \u03BD\u03AD\u03B5\u03C2 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2.", description: "" }, onboardingUpdateNotificationName: { message: "\u0395\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7\u03C2", description: "" }, multiredditNavbarFadeDelayDesc: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7, \u03C3\u03B5 \u03C7\u03B9\u03BB\u03B9\u03BF\u03C3\u03C4\u03AC \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03BF\u03BB\u03AD\u03C0\u03C4\u03BF\u03C5, \u03C0\u03C1\u03B9\u03BD \u03B5\u03BE\u03B1\u03C6\u03B1\u03BD\u03B9\u03C3\u03C4\u03B5\u03AF \u03BF\u03BC\u03B1\u03BB\u03AC \u03C4\u03BF \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03BF \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7\u03C2.", description: "" }, nightModeNightModeStartDesc: { message: "\u0397 \u03CE\u03C1\u03B1 \u03C0\u03BF\u03C5 \u03B7 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BD\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BE\u03B5\u03BA\u03B9\u03BD\u03AC.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u03BD\u03AD\u03B1\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03BA\u03CD\u03BB\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C4\u03C1\u03BF\u03C7\u03BF\u03CD (\u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC, \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03BA\u03AC\u03BD\u03B5\u03C4\u03B5 \u03BA\u03BB\u03B9\u03BA \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C6\u03BF\u03C1\u03C4\u03CE\u03C3\u03B5\u03B9 \u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1)", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "\u03B1\u03C5\u03C4\u03BF\u03BA\u03CC\u03BB\u03BB\u03B7\u03C4\u03BF", description: "" }, userHighlightAdminColorTitle: { message: "Admin Color", description: "" }, commentToolsWikiAutocompleteDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5 \u03C4\u03BF \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03BF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03C3\u03C5\u03BC\u03C0\u03BB\u03AE\u03C1\u03C9\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 wiki \u03CC\u03C4\u03B1\u03BD \u03B3\u03C1\u03AC\u03C6\u03B5\u03C4\u03B5 \u03C3\u03B5 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2, \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1, \u03BA\u03B1\u03B9 \u03B1\u03C0\u03B1\u03BD\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "\u039C\u03AF\u03BA\u03C1\u03C5\u03BD\u03B5 \u03C4\u03B7\u03BD \u0395\u03B9\u03BA\u03CC\u03BD\u03B1", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: '\u0397 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03BC\u03AD\u03BD\u03B7 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1 \u03C4\u03CE\u03C1\u03B1 \u03B2\u03C1\u03AF\u03C3\u03BA\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B7\u03BD \u03C0\u03BB\u03B5\u03C5\u03C1\u03B9\u03BA\u03AE \u03BC\u03C0\u03AC\u03C1\u03B1 \u03C0\u03BF\u03BB\u03C5reddit. \u0391\u03C5\u03C4\u03CC \u03B8\u03B1 \u03B5\u03C0\u03B1\u03BD\u03B1\u03C6\u03AD\u03C1\u03B5\u03B9 \u03AD\u03BD\u03B1 "\u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03BC\u03AD\u03BD\u03BF" \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C3\u03C4\u03B7\u03BD \u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1 (\u03B4\u03AF\u03C0\u03BB\u03B1 \u03B1\u03C0\u03CC \u03C4\u03B9\u03C2 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2 "\u03C4\u03C1\u03AD\u03C7\u03BF\u03BD\u03C4\u03B1", "\u03BD\u03AD\u03B1" \u03BA\u03BB\u03C0).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "\u03A0\u03C1\u03BF\u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF \u03C7\u03C1\u03CE\u03BC\u03B1 \u03C4\u03B7\u03C2 \u03BC\u03C0\u03AC\u03C1\u03B1\u03C2.", description: "" }, toggleOff: { message: "\u03B1\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03BF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03C3\u03C5\u03BC\u03C0\u03BB\u03AE\u03C1\u03C9\u03C3\u03B7\u03C2 \u03C5\u03C0\u03BFreddit \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03C0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03CC\u03B3\u03B7\u03C3\u03B7 \u03C3\u03B5 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2, \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03BA\u03B1\u03B9 \u03B1\u03C0\u03B1\u03BD\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "\u039C\u03AF\u03BA\u03C1\u03C5\u03BD\u03B5 \u03C4\u03B7\u03BD \u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u039B\u03AF\u03B3\u03BF", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "\u0394\u03B5\u03AF\u03BE\u03B5 \u03A7\u03C1\u03BF\u03BD\u03BF\u03C3\u03C6\u03C1\u03B1\u03B3\u03AF\u03B4\u03B5\u03C2 Wiki", description: "" }, commentToolsMacrosDesc: { message: "\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C3\u03B5 \u03BA\u03BF\u03C5\u03BC\u03C0\u03B9\u03AC \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03B9\u03C3\u03B1\u03B3\u03C9\u03B3\u03AE \u03C3\u03C5\u03C7\u03BD\u03AC \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BC\u03B5\u03BD\u03C9\u03BD \u03BA\u03BF\u03BC\u03BC\u03B1\u03C4\u03B9\u03CE\u03BD \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5.", description: "" }, keyboardNavProfileTitle: { message: "\u03A0\u03C1\u03BF\u03C6\u03AF\u03BB", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "\u03A6\u03AF\u03BB\u03C4\u03C1\u03B1\u03C1\u03B5 \u03C4\u03B1 \u03A5\u03C0\u03BFreddit \u0391\u03C0\u03CC", description: "" }, userTaggerShowAnyway: { message: "\u03BD\u03B1 \u03C4\u03BF \u03B4\u03B5\u03AF\u03BE\u03C9 \u03AD\u03C4\u03C3\u03B9 \u03BA\u03B9 \u03B1\u03BB\u03BB\u03B9\u03CE\u03C2;", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Clear Cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+\u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C3\u03B5 \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CC", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "\u0395\u03C0\u03B9\u03C3\u03AE\u03BC\u03B1\u03BD\u03C3\u03B7", description: "" }, filteRedditExcludeModqueueDesc: { message: "\u039D\u03B1 \u03BC\u03B7\u03BD \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 modqueue (modqueue, \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AD\u03C2, \u03C3\u03C0\u03B1\u03BC \u03BA\u03BB\u03C0).", description: "" }, filteRedditEmptyNotificationHeader: { message: "\u038C\u03BB\u03B5\u03C2 \u03BF\u03B9 \u03B4\u03B7\u03BC\u03BF\u03C3\u03B9\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03AD\u03C7\u03BF\u03C5\u03BD \u03C6\u03B9\u03BB\u03C4\u03C1\u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifications.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "\u03A3\u03C5\u03BD\u03B4\u03C1\u03BF\u03BC\u03B7\u03C4\u03AD\u03C2:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF \u03BA\u03BF\u03C1\u03C5\u03C6\u03B1\u03AF\u03BF \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C5 \u03BD\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 (\u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1)", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B1 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03B1 \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 (\u03AD\u03BD\u03C4\u03BF\u03BD\u03BF, \u03C0\u03BB\u03AC\u03B3\u03B9\u03BF, \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2 \u03BA\u03BB\u03C0) \u03C3\u03C4\u03B7\u03BD \u03C6\u03CC\u03C1\u03BC\u03B1 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD, \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03C9\u03BD \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03CE\u03BD snudown/markdown.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03A3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Color Hover", description: "" }, spoilerTagsName: { message: "\u039A\u03B1\u03B8\u03BF\u03BB\u03B9\u03BA\u03AE \u0395\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 \u03A3\u03C0\u03CC\u03B9\u03BB\u03B5\u03C1", description: "" }, betteRedditVideoUploadedDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03BC\u03B5\u03C4\u03B1\u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7\u03C2 \u03C4\u03C9\u03BD \u03B2\u03AF\u03BD\u03C4\u03B5\u03BF \u03CC\u03C4\u03B1\u03BD \u03B1\u03C5\u03C4\u03CC \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03C6\u03B9\u03BA\u03C4\u03CC.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, hoverFadeSpeedDesc: { message: "\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u039F\u03BC\u03B1\u03BB\u03AE\u03C2 \u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2 (\u03C3\u03B5 \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03CC\u03BB\u03B5\u03C0\u03C4\u03B1)", description: "" }, betteRedditShowTimestampPostsDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5 \u03C4\u03B7\u03BD \u03B1\u03BA\u03C1\u03B9\u03B2\u03AE \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 (\u039A\u03C5\u03C1 16 \u039D\u03BF\u03B5 20:14:56 2014 UTC) \u03B1\u03BD\u03C4\u03AF \u03C4\u03B7\u03C2 \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AE\u03C2 \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1\u03C2 (\u03A0\u03C1\u03B9\u03BD \u03B1\u03C0\u03CC 7 \u03B7\u03BC\u03AD\u03C1\u03B5\u03C2), \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2.", description: "" }, submissionsCategory: { message: "\u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2", description: "" }, keyboardNavSaveCommentDesc: { message: "\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B5 \u03C4\u03BF \u03C0\u03B1\u03C1\u03CC\u03BD \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C3\u03C4\u03BF\u03BD \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CC \u03C3\u03BF\u03C5 \u03C3\u03C4\u03BF reddit. \u0391\u03C5\u03C4\u03CC \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C3\u03B2\u03AC\u03C3\u03B9\u03BC\u03BF \u03B1\u03C0\u03CC \u03BF\u03C0\u03BF\u03C5\u03B4\u03AE\u03C0\u03BF\u03C4\u03B5 \u03AD\u03C7\u03B5\u03B9\u03C2 \u03C3\u03C5\u03BD\u03B4\u03B5\u03B8\u03B5\u03AF, \u03B1\u03BB\u03BB\u03AC \u03B4\u03B5\u03BD \u03B4\u03B9\u03B1\u03C4\u03B7\u03C1\u03B5\u03AF \u03C4\u03BF \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03B1\u03BD \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03B7 \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03B5\u03AF.", description: "" }, keyboardNavSavePostTitle: { message: "\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u0391\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Font Color", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options", description: "" }, penaltyBoxDesc: { message: "\u0391\u03BD\u03B1\u03B2\u03AC\u03BB\u03B5\u03C4\u03B5 \u03AE \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03C4\u03B5 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B5\u03C2 \u03C4\u03BF\u03C5 RES \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9.", description: "" }, searchHelperSearchByFlairDesc: { message: "\u039A\u03B1\u03C4\u03AC \u03C4\u03BF \u03BA\u03BB\u03B9\u03BA \u03C3\u03C4\u03BF \u03AD\u03BC\u03B2\u03BB\u03B7\u03BC\u03B1 \u03BC\u03B9\u03B1\u03C2 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2, \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C5\u03C0\u03BFreddit \u03C4\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03AD\u03BC\u03B2\u03BB\u03B7\u03BC\u03B1.\n\u039C\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03BC\u03B7 \u03B4\u03BF\u03C5\u03BB\u03B5\u03CD\u03B5\u03B9 \u03C3\u03B5 \u03BC\u03B5\u03C1\u03B9\u03BA\u03AC \u03C5\u03C0\u03BFreddit \u03C0\u03BF\u03C5 \u03BA\u03C1\u03CD\u03B2\u03BF\u03C5\u03BD \u03C4\u03BF \u03C0\u03C1\u03B1\u03B3\u03BC\u03B1\u03C4\u03B9\u03BA\u03CC \u03AD\u03BC\u03B2\u03BB\u03B7\u03BC\u03B1 \u03BA\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03BF\u03C5\u03BD \u03C8\u03B5\u03CD\u03C4\u03B9\u03BA\u03BF \u03AD\u03BC\u03B2\u03BB\u03B7\u03BC\u03B1 \u03BC\u03B5 CSS (\u03B7 \u03BC\u03CC\u03BD\u03B7 \u03C0\u03B1\u03C1\u03AC\u03BA\u03B1\u03BC\u03C8\u03B7 \u03B1\u03C5\u03C4\u03BF\u03CD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C3\u03C4\u03C5\u03BB \u03C4\u03BF\u03C5 \u03C5\u03C0\u03BFreddit).", description: "" }, subredditInfoDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03BC\u03B9\u03B1 \u03C5\u03C0\u03CC\u03BC\u03BD\u03B7\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03C4\u03B1 \u03C5\u03C0\u03BFreddit.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: '\u0395\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C4\u03BF\u03BD \u03B4\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7 \u03BD\u03CD\u03C7\u03C4\u03B1\u03C2, \u03AD\u03BD\u03B1\u03BD \u03B5\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03BC\u03AD\u03C1\u03B1\u03C2 \u03BA\u03B1\u03B9 \u03BD\u03CD\u03C7\u03C4\u03B1\u03C2 \u03C0\u03BF\u03C5 \u03B2\u03C1\u03AF\u03C3\u03BA\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03BF \u03B1\u03BD\u03B1\u03C0\u03C4\u03C5\u03C3\u03C3\u03CC\u03BC\u03B5\u03BD\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD "\u03A1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2".', description: "" }, commentDepthDesc: { message: "Allows you to set the preferred depth of comments you wish to see when clicking on comments links.\n\n0 = Everything, 1 = Root level, 2 = Responses to root level, 3 = Responses to responses to root level, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u039C\u03B7 \u03A3\u03C5\u03BC\u03BC\u03B5\u03C4\u03BF\u03C7\u03AE\u03C2 \u03C3\u03B5 \u03C5\u03C0\u03BFreddit \u03C3\u03C4\u03B1 \u03BF\u03C0\u03BF\u03AF\u03B1 \u03AD\u03C7\u03B5\u03C4\u03B5 \u03BA\u03AC\u03BD\u03B5\u03B9 \u03C3\u03C5\u03BD\u03B4\u03C1\u03BF\u03BC\u03AE ", description: "" }, commentToolsQuoteKeyDesc: { message: "\u03A3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03C4\u03B5\u03B8\u03B5\u03AF \u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "\u0397 \u03CE\u03C1\u03B1 \u03C0\u03BF\u03C5 \u03B7 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BD\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03C3\u03C4\u03B1\u03BC\u03B1\u03C4\u03AC.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sort", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "\u03A6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B5\u03B9 \u03CC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03BF\u03C5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5\u03C2 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03AD\u03BD\u03B4\u03B5\u03B9\u03BE\u03B7 \u03B1\u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03BF\u03C5 (NSFW).", description: "" }, logoLinkName: { message: "\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2 \u039B\u03BF\u03B3\u03BF\u03C4\u03CD\u03C0\u03BF\u03C5", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "\u0391\u03BD \u03BA\u03AC\u03C4\u03B9 \u03B4\u03B5\u03BD \u03B4\u03BF\u03C5\u03BB\u03B5\u03CD\u03B5\u03B9 \u03C3\u03C9\u03C3\u03C4\u03AC, \u03C0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03BF /r/RESIssues \u03B3\u03B9\u03B1 \u03B2\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1.", description: "" }, nightModeAutomaticNightModeNone: { message: "\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF.", description: "" }, keyboardNavMoveUpDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03B5\u03C0\u03AC\u03BD\u03C9 \u03C3\u03C4\u03BF\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03AE \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03B5 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03B5\u03C2 \u03BB\u03AF\u03C3\u03C4\u03B5\u03C2.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "\u0394\u03B5\u03BD \u03AD\u03B3\u03B9\u03BD\u03B5 \u03BA\u03AC\u03C0\u03BF\u03B9\u03B1 \u03B5\u03BD\u03AD\u03C1\u03B3\u03B5\u03B9\u03B1.", description: "" }, commentPreviewEnableForWikiTitle: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03CC \u0393\u03B9\u03B1 Wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "\u0395\u03BE\u03B1\u03AF\u03C1\u03B5\u03C3\u03B5 \u03A3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03A7\u03C1\u03B7\u03C3\u03C4\u03CE\u03BD", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "\u03CC\u03BD\u03BF\u03BC\u03B1", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "\u0395\u03BD\u03C3\u03C9\u03BC\u03B1\u03C4\u03C9\u03BC\u03AD\u03BD\u03B7 \u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u0395\u03B9\u03BA\u03CC\u03BD\u03C9\u03BD", description: "" }, commentStyleCommentIndentDesc: { message: '\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03C3\u03BF\u03C7\u03AE\u03C2 [x] \u03C0\u03AF\u03BE\u03B5\u03BB \u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 (\u03BC\u03CC\u03BD\u03BF \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2, \u03C7\u03C9\u03C1\u03AF\u03C2 "px").', description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Disable RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "\u03A8\u03AE\u03C6\u03B9\u03C3\u03B7 \u039A\u03AC\u03C4\u03C9 \u03A7\u03C9\u03C1\u03AF\u03C2 \u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE", description: "" }, userInfoRedditorSince: { message: "\u03A7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2 \u03C4\u03BF\u03C5 Reddit \u03B1\u03C0\u03CC:", description: "" }, userTaggerShow: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u039F\u03BC\u03B1\u03BB\u03AE\u03C2 \u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2", description: "" }, necLoadChildCommentsTitle: { message: "\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD-\u03A0\u03B1\u03B9\u03B4\u03B9\u03CE\u03BD", description: "" }, showParentName: { message: "\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03BF \u0393\u03BF\u03BD\u03AD\u03B1 \u03C3\u03C4\u03B7\u03BD \u0391\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C7\u03C1\u03C5\u03C3\u03BF\u03CD \u03B3\u03B9\u03B1 \u03BA\u03AC\u03B8\u03B5 \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CC \u03C3\u03C4\u03BF\u03BD \u0395\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7 \u039B\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CE\u03BD.", description: "" }, keyboardNavMoveToParentTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF\u03BD \u0393\u03BF\u03BD\u03AD\u03B1", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD, \u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE \u0386\u03BA\u03C1\u03B7 \u03C3\u03C4\u03BF \u039A\u03BB\u03B9\u03BA", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "\u0394\u03B5\u03AF\u03BE\u03B5 \u03A7\u03C1\u03BF\u03BD\u03BF\u03C3\u03C6\u03C1\u03B1\u03B3\u03AF\u03B4\u03B5\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "\u039B\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03BF\u03AF", description: "" }, spoilerTagsDesc: { message: "\u039A\u03C1\u03CD\u03B2\u03B5\u03B9 \u03C4\u03B1 \u03C3\u03C0\u03CC\u03B9\u03BB\u03B5\u03C1 \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C0\u03C1\u03BF\u03C6\u03AF\u03BB \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, onboardingUpdateNotifictionNotification: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03B7\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "\u03A8\u03AE\u03C6\u03B9\u03C3\u03B5 \u03BA\u03AC\u03C4\u03C9 \u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03AE \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF (\u03B1\u03BB\u03BB\u03AC \u03BC\u03B7\u03BD \u03B1\u03C6\u03B1\u03B9\u03C1\u03B5\u03AF\u03C2 \u03C4\u03B7\u03BD \u03BA\u03AC\u03C4\u03C9 \u03C8\u03AE\u03C6\u03BF).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Show Gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "\u03B2\u03AC\u03B8\u03BF\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, keyboardNavImageMoveDownTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03C4\u03B7\u03BD \u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u039A\u03AC\u03C4\u03C9", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "\u03A0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u03A3\u03C5\u03BB\u03BB\u03BF\u03B3\u03AE\u03C2", description: "" }, userTaggerTaggedUsers: { message: "\u03C7\u03C1\u03AE\u03C3\u03C4\u03B5\u03C2 \u03BC\u03B5 \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03BD\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03B5\u03C0\u03AC\u03BD\u03C9", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B5\u03C2 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u03BA\u03B1\u03B9 \u03BC\u03B9\u03BA\u03C1\u03BF\u03B5\u03C0\u03B5\u03BC\u03B2\u03AC\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF \u03BA\u03AC\u03C1\u03BC\u03B1 \u03B4\u03AF\u03C0\u03BB\u03B1 \u03B1\u03C0\u03CC \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03C3\u03C4\u03B7\u03BD \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE \u03BC\u03B5\u03BD\u03BF\u03CD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u0392\u03AC\u03B8\u03BF\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "\u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03AC", description: "" }, hideChildCommentsNestedDesc: { message: '\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03C4\u03BF\u03C5 \u03BA\u03BF\u03C5\u03BC\u03C0\u03B9\u03BF\u03CD "\u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03B8\u03C5\u03B3\u03B1\u03C4\u03C1\u03B9\u03BA\u03CE\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD" \u03C3\u03B5 \u03CC\u03BB\u03B1 \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C0\u03BF\u03C5 \u03AD\u03C7\u03BF\u03C5\u03BD \u03C0\u03B1\u03B9\u03B4\u03B9\u03AC, \u03B1\u03BD\u03C4\u03AF \u03B3\u03B9\u03B1 \u03BC\u03CC\u03BD\u03BF \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C0\u03C1\u03CE\u03C4\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C0\u03AD\u03B4\u03BF\u03C5.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "\u0394\u03B9\u03AC\u03C1\u03BA\u03B5\u03B9\u03B1 \u03A3\u03C5\u03BD\u03B4\u03C1\u03BF\u03BC\u03AE\u03C2", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B1\u03B4\u03B5\u03C1\u03C6\u03BF\u03CD \u03B3\u03BF\u03BD\u03B9\u03BF\u03CD \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9", description: "" }, dashboardTagsPerPageTitle: { message: "\u0395\u03C4\u03B9\u03BA\u03AD\u03C4\u03B5\u03C2 \u0391\u03BD\u03AC \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "\u0394\u03B5\u03AF\u03BE\u03B5 \u03A7\u03C1\u03BF\u03BD\u03BF\u03C3\u03C6\u03C1\u03B1\u03B3\u03AF\u03B4\u03B5\u03C2 \u039A\u03B1\u03C4\u03B1\u03B3\u03C1\u03B1\u03C6\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5 \u0394\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE", description: "" }, userTaggerStoreSourceLinkDesc: { message: "\u0391\u03C0\u03CC \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE, \u03B1\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03BF\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF/\u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03B3\u03B9\u03B1 \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03C0\u03C1\u03BF\u03C3\u03C4\u03AD\u03B8\u03B7\u03BA\u03B5 \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 \u03C3\u03B5 \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "\u0392\u03B5\u03BB\u03C4\u03B9\u03CE\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03BC\u03C0\u03AC\u03C1\u03B1 \u03C0\u03BB\u03BF\u03AE\u03B3\u03B7\u03C3\u03B7\u03C2 \u03C0\u03BF\u03C5 \u03C6\u03B1\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B1 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC \u03C4\u03B7\u03C2 \u03C0\u03C1\u03CE\u03C4\u03B7\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "\u03A0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u0391\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC\u03C2", description: "" }, keyboardNavHideDesc: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B5 \u03C4\u03BF\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "\u03A0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u0388\u03BD\u03C4\u03BF\u03BD\u03BF\u03C5", description: "" }, xPostLinksName: { message: "\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9 \u03A0\u03B1\u03C1\u03AC\u03BB\u03BB\u03B7\u03BB\u03B7\u03C2 \u0391\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "\u03A0\u03AC\u03BD\u03C4\u03B1 \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03BF\u03C5 \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1\u03C2 \u03BC\u03B5\u03C4\u03AC \u03B1\u03C0\u03CC \u03BA\u03AC\u03B8\u03B5 \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7.", description: "" }, commentPreviewDraftStyleDesc: { message: '\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03AD\u03BD\u03B1 \u03C3\u03C4\u03C5\u03BB "\u03C0\u03C1\u03BF\u03C7\u03B5\u03AF\u03C1\u03BF\u03C5" \u03B3\u03B9\u03B1 \u03C6\u03CC\u03BD\u03C4\u03BF \u03C3\u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7, \u03CE\u03C3\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03BF \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C4\u03BF\u03C5 \u03C3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5.', description: "" }, keyboardNavFollowCommentsTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03A3\u03C7\u03CC\u03BB\u03B9\u03B1", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "\u039C\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03B1 \u0394\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "\u03A7\u03C1\u03CE\u03BC\u03B1", description: "" }, hideChildCommentsHideNestedTitle: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u0388\u03BD\u03B8\u03B5\u03C4\u03C9\u03BD.", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "\u039A\u03B1\u03B8\u03B1\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "\u03A3\u03C7\u03CC\u03BB\u03B9\u03B1", description: "" }, filteRedditForceSyncFiltersTitle: { message: "\u0395\u03C0\u03AF\u03B2\u03B1\u03BB\u03B5 \u03A6\u03AF\u03BB\u03C4\u03C1\u03B1 \u03A3\u03C5\u03B3\u03C7\u03C1\u03BF\u03BD\u03B9\u03C3\u03BC\u03BF\u03CD", description: "" }, nerShowServerInfoTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD \u0394\u03B9\u03B1\u03BA\u03BF\u03BC\u03B9\u03C3\u03C4\u03AE", description: "" }, troubleshooterSettingsReset: { message: "\u038C\u03BB\u03B5\u03C2 \u03BF\u03B9 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03B5\u03C0\u03B1\u03BD\u03B1\u03C6\u03AD\u03C1\u03B8\u03B7\u03BA\u03B1\u03BD. \u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B5 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B4\u03B5\u03B9\u03C2 \u03C4\u03BF \u03B1\u03C0\u03BF\u03C4\u03AD\u03BB\u03B5\u03C3\u03BC\u03B1.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03B5\u03AF \u03C4\u03B7\u03BD/\u03C4\u03B9\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1/\u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AC.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "\u0386\u03BD\u03BF\u03B9\u03BE\u03B5 \u03C4\u03BF\u03BD \u03BC\u03CC\u03BD\u03B9\u03BC\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C4\u03BF\u03C5 \u03C0\u03B1\u03C1\u03CC\u03BD\u03C4\u03BF\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5 (\u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD).", description: "" }, subredditInfoAddRemoveShortcut: { message: "\u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "\u03A0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03BC\u03CC\u03C2 \u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD RES", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Color Blind Friendly", description: "" }, userInfoSendMessage: { message: "\u03C3\u03C4\u03B5\u03AF\u03BB\u03B5 \u03BC\u03AE\u03BD\u03C5\u03BC\u03B1", description: "" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers.", description: "" }, noPartDisableVoteButtonsTitle: { message: "\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u039A\u03BF\u03C5\u03BC\u03C0\u03B9\u03CE\u03BD \u03A8\u03AE\u03C6\u03C9\u03BD", description: "" }, commentToolsLinkKeyDesc: { message: "\u03A3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C3\u03B5\u03B9 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03A3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u0395\u03C0\u03AC\u03BD\u03C9", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "\u038C\u03C4\u03B1\u03BD \u03C3\u03B5 \u03C0\u03C1\u03BF\u03C6\u03AF\u03BB \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7, \u03C0\u03C1\u03BF\u03C3\u03C6\u03AD\u03C1\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7 \u03C4\u03C9\u03BD \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03BF \u03C5\u03C0\u03BFreddit \u03AE \u03C0\u03BF\u03BB\u03C5reddit \u03C0\u03C1\u03BF\u03AD\u03BB\u03B5\u03C5\u03C3\u03B7\u03C2.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "\u03A3\u03B5\u03BB\u03AF\u03B4\u03B1", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "\u0386\u03BB\u03BB\u03B1\u03BE\u03B5 \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03C4\u03B9\u03BC\u03AE \u03C0\u03BB\u03B1\u03B9\u03C3\u03AF\u03BF\u03C5 \u03C3\u03C4\u03BF\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C0\u03BB\u03B1\u03B9\u03C3\u03AF\u03BF\u03C5.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "\u039C\u03B5\u03B3\u03AC\u03BB\u03C9\u03C3\u03B5 \u03C4\u03B7\u03BD \u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u039B\u03AF\u03B3\u03BF", description: "" }, pageNavToCommentDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 \u03C3\u03B5 \u03CC\u03BB\u03B5\u03C2 \u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2, \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF, \u03CC\u03C4\u03B1\u03BD \u03C0\u03B1\u03C4\u03B7\u03B8\u03B5\u03AF, \u03BF\u03B4\u03B7\u03B3\u03B5\u03AF \u03C3\u03C4\u03B7 \u03BD\u03AD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03B9\u03B8\u03BC\u03BF\u03CD \u03BC\u03B7 \u03B1\u03BD\u03B1\u03B3\u03BD\u03C9\u03C3\u03BC\u03AD\u03BD\u03C9\u03BD \u03BC\u03B7\u03BD\u03C5\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C4\u03BF \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03B1\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5;", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "\u0392\u03BF\u03B7\u03B8\u03CC\u03C2 \u0391\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2", description: "" }, keyboardNavNextGalleryImageDesc: { message: "\u0394\u03B5\u03C2 \u03C4\u03B7\u03BD \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03B7 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 \u03C3\u03C4\u03B7\u03BD \u03B5\u03BD\u03C3\u03C9\u03BC\u03B1\u03C4\u03C9\u03BC\u03AD\u03BD\u03B7 \u03C3\u03C5\u03BB\u03BB\u03BF\u03B3\u03AE.", description: "" }, nightModeName: { message: "\u039D\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u039B\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1", description: "" }, filteRedditExcludeModqueueTitle: { message: "\u0395\u03BE\u03B1\u03AF\u03C1\u03B5\u03C3\u03B5 \u03C4\u03BF Modqueue", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "\u0395\u03BA\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF\u03C5 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "\u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 - \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF \u03BA\u03AC\u03C0\u03BF\u03B9\u03B1 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7/\u03C3\u03C7\u03CC\u03BB\u03B9\u03BF.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC", description: "" }, contextDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C3\u03C4\u03B7\u03BD \u03BA\u03AF\u03C4\u03C1\u03B9\u03BD\u03B7 \u03BC\u03C0\u03AC\u03C1\u03B1 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03B9\u03CE\u03BD \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B2\u03BB\u03AD\u03C0\u03B5\u03B9\u03C2 \u03B2\u03B1\u03B8\u03B9\u03AC \u03C7\u03C9\u03BC\u03AD\u03BD\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03C4\u03BF \u03C0\u03BB\u03AE\u03C1\u03B5\u03C2 \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03CC \u03C4\u03BF\u03C5\u03C2.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "\u03A8\u03AE\u03C6\u03B9\u03C3\u03B7 \u03A0\u03AC\u03BD\u03C9 \u03A7\u03C9\u03C1\u03AF\u03C2 \u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03C3\u03C4\u03B7\u03BD \u039A\u03BF\u03C1\u03C5\u03C6\u03AE", description: "" }, nightModeAutomaticNightModeUser: { message: "\u039A\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03B5\u03C2 \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03CE\u03C1\u03B5\u03C2.", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "\u0391\u03B3\u03BD\u03BF\u03B7\u03BC\u03AD\u03BD\u03BF", description: "" }, commentToolsCommentingAsDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF \u03C0\u03B1\u03C1\u03CC\u03BD \u03B5\u03BD\u03B5\u03C1\u03B3\u03CC \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03CE\u03C3\u03C4\u03B5 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03C6\u03B5\u03C5\u03C7\u03B8\u03B5\u03AF \u03B7 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC \u03BB\u03AC\u03B8\u03BF\u03C2 \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CC.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF\u03BD \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C3\u03B5 \u03BD\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "\u039C\u03C0\u03BF\u03C1\u03B5\u03AF\u03C2 \u03BD\u03B1 \u03C4\u03BF \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9\u03C2 \u03B1\u03C1\u03B3\u03CC\u03C4\u03B5\u03C1\u03B1 \u03B1\u03C0\u03CC \u03C4\u03B9\u03C2 $1 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2.", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "\u0391\u03C6\u03BF\u03CD \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9\u03C2 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CE\u03BD, \u03B4\u03B5\u03AF\u03BE\u03B5 \u03BC\u03B9\u03B1 \u03C0\u03C1\u03BF\u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C3\u03C4\u03B9\u03C2 \u03AC\u03BB\u03BB\u03B5\u03C2 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "\u039B\u03AE\u03C8\u03B7 \u03BA\u03B1\u03B9 \u03B1\u03BD\u03AC\u03BA\u03C4\u03B7\u03C3\u03B7 \u03B1\u03BD\u03C4\u03B9\u03B3\u03C1\u03AC\u03C6\u03C9\u03BD \u03B1\u03C3\u03C6\u03B1\u03BB\u03B5\u03AF\u03B1\u03C2 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 RES.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "\u03A3\u03C4\u03C5\u03BB \u0391\u03BD\u03B1\u03C0\u03C4\u03C5\u03C3\u03C3\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 \u03A0\u03B5\u03B4\u03AF\u03BF\u03C5", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "\u03A0\u03B1\u03C4\u03CE\u03BD\u03C4\u03B1\u03C2 Ctrl+Enter \u03AE Cmd+Enter \u03BA\u03B1\u03C4\u03B1\u03C7\u03C9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B7 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03AE \u03C3\u03BF\u03C5.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "ID \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "\u03A6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B5 \u03B5\u03C0\u03B9\u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B1 \u03C6\u03CD\u03BB\u03BB\u03B1 \u03C3\u03C4\u03C5\u03BB \u03AE \u03C4\u03B1 \u03B4\u03B9\u03BA\u03AC \u03C3\u03BF\u03C5 \u03C4\u03BC\u03AE\u03BC\u03B1\u03C4\u03B1 \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1 CSS.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "\u03BA\u03C9\u03B4\u03B9\u03BA\u03CC\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2", description: "" }, userInfoUnignore: { message: "\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B5 \u03C4\u03B7\u03BD \u03B1\u03B3\u03BD\u03CC\u03B7\u03C3\u03B7", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03A7\u03C1\u03CE\u03BC\u03B1\u03C4\u03BF\u03C2 \u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE\u03C2 \u0386\u03BA\u03C1\u03B7\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, commentToolsMacrosTitle: { message: "\u039C\u03B1\u03BA\u03C1\u03BF\u03B5\u03BD\u03C4\u03BF\u03BB\u03AD\u03C2", description: "" }, nightModeAutomaticNightModeDesc: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 \u03C4\u03B7\u03BD \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BD\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\n\n\u03A3\u03C4\u03B7\u03BD \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7, \u03B8\u03B1 \u03B5\u03C1\u03C9\u03C4\u03B7\u03B8\u03B5\u03AF\u03C2 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03BC\u03BF\u03B9\u03C1\u03B1\u03C3\u03C4\u03B5\u03AF\u03C2 \u03C4\u03B7\u03BD \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1 \u03C3\u03BF\u03C5. \u0397 \u03C4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1 \u03C3\u03BF\u03C5 \u03B8\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03BC\u03CC\u03BD\u03BF \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C5\u03C0\u03BF\u03BB\u03BF\u03B3\u03B9\u03C3\u03C4\u03BF\u03CD\u03BD \u03BF\u03B9 \u03CE\u03C1\u03B5\u03C2 \u03B1\u03BD\u03B1\u03C4\u03BF\u03BB\u03AE\u03C2 \u03BA\u03B1\u03B9 \u03B4\u03CD\u03C3\u03B7\u03C2.\n\n\u03A3\u03C4\u03B7\u03BD \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C9\u03C1\u03CE\u03BD \u03BF\u03C1\u03B9\u03C3\u03BC\u03AD\u03BD\u03C9\u03BD \u03B1\u03C0\u03CC \u03C4\u03BF \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7, \u03B7 \u03BD\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BE\u03B5\u03BA\u03B9\u03BD\u03AC\u03B5\u03B9 \u03BA\u03B1\u03B9 \u03C3\u03C4\u03B1\u03BC\u03B1\u03C4\u03AC\u03B5\u03B9 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03C3\u03C4\u03B9\u03C2 \u03CE\u03C1\u03B5\u03C2 \u03C0\u03BF\u03C5 \u03BF\u03C1\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C0\u03B1\u03C1\u03B1\u03BA\u03AC\u03C4\u03C9.\n\n\u0393\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03C0\u03B1\u03C1\u03B1\u03BA\u03AC\u03C4\u03C9 \u03CE\u03C1\u03B5\u03C2, \u03C4\u03BF \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B7 24\u03C9\u03C1\u03B7 \u03BC\u03BF\u03C1\u03C6\u03AE \u03C4\u03B7\u03C2 \u03CE\u03C1\u03B1\u03C2, \u03B1\u03C0\u03CC 0:00 \u03C9\u03C2 23:59.\n\u03C0.\u03C7. \u03B7 8:20\u03BC\u03BC \u03B3\u03C1\u03AC\u03C6\u03B5\u03C4\u03B1\u03B9 20:00, \u03BA\u03B1\u03B9 \u03B7 12:30\u03C0\u03BC \u03B3\u03C1\u03AC\u03C6\u03B5\u03C4\u03B1\u03B9 00:30 \u03AE 0:30\n\n\u0393\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C0\u03C1\u03BF\u03C3\u03C9\u03C1\u03B9\u03BD\u03AC \u03C4\u03B7 \u03BD\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1, \u03B3\u03CD\u03C1\u03B9\u03C3\u03B5 \u03C4\u03BF \u03B4\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7 \u03BD\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u03BC\u03B5 \u03C4\u03BF \u03C7\u03AD\u03C1\u03B9.\n\u038C\u03C1\u03B9\u03C3\u03B5 \u03C0\u03CC\u03C3\u03BF \u03BA\u03C1\u03B1\u03C4\u03AC\u03B5\u03B9 \u03B7 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C0\u03B1\u03C1\u03B1\u03BA\u03AC\u03C4\u03C9.", description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "\u03A6\u03AF\u03BB\u03C4\u03C1\u03B1\u03C1\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C5\u03C0\u03BFreddit \u03B1\u03C0\u03CC \u03C4\u03BF /r/all \u03BA\u03B1\u03B9 \u03C4\u03BF\u03BD /\u03C4\u03BF\u03BC\u03AD\u03B1/*", description: "" }, presetsNoPopupsTitle: { message: "\u03A7\u03C9\u03C1\u03AF\u03C2 \u0391\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03B1 \u03A0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03B1", description: "" }, searchCopyResultForComment: { message: "\u03B1\u03BD\u03C4\u03B9\u03B3\u03C1\u03B1\u03C6\u03AE \u03B1\u03C5\u03C4\u03BF\u03CD \u03B3\u03B9\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF", description: "" }, moduleID: { message: "ID \u03BC\u03BF\u03BD\u03AC\u03B4\u03B1\u03C2", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "\u039D\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C3\u03CD\u03BD\u03BF\u03BB\u03BF \u03C4\u03C9\u03BD \u03BC\u03B7 \u03B1\u03BD\u03B1\u03B3\u03BD\u03C9\u03C3\u03BC\u03AD\u03BD\u03C9\u03BD \u03C3\u03C4\u03BF\u03BD \u03C4\u03AF\u03C4\u03BB\u03BF \u03C4\u03B7\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2/\u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1\u03C2;", description: "" }, xPostLinksXpostedFrom: { message: "\u03C0\u03B1\u03C1\u03AC\u03BB\u03BB\u03B7\u03BB\u03B7 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03A4\u03AD\u03BA\u03BD\u03C9\u03BD", description: "" }, commandLineLaunchDesc: { message: "\u0386\u03BD\u03BF\u03B9\u03BE\u03B5 \u03C4\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C4\u03BF\u03C5 RES", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u03A5\u03C0\u03BFreddit", description: "" }, betteRedditVideoUploadedTitle: { message: "\u03A4\u03BF \u0392\u03AF\u03BD\u03C4\u03B5\u03BF \u039C\u03B5\u03C4\u03B1\u03C6\u03BF\u03C1\u03C4\u03CE\u03B8\u03B7\u03BA\u03B5", description: "" }, profileNavigatorFadeSpeedDesc: { message: "\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u03B5\u03C6\u03AD \u03BF\u03BC\u03B1\u03BB\u03AE\u03C2 \u03BC\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2 (\u03C3\u03B5 \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03CC\u03BB\u03B5\u03C0\u03C4\u03B1)", description: "" }, aboutOptionsDonate: { message: "\u03A5\u03C0\u03BF\u03C3\u03C4\u03AE\u03C1\u03B9\u03BE\u03B5 \u03C4\u03B7\u03BD \u03C0\u03B5\u03C1\u03B5\u03C4\u03B1\u03AF\u03C1\u03C9 \u03B1\u03BD\u03AC\u03C0\u03C4\u03C5\u03BE\u03B7 \u03C4\u03BF\u03C5 RES.", description: "" }, aboutOptionsBugsTitle: { message: "\u03A3\u03C6\u03AC\u03BB\u03BC\u03B1\u03C4\u03B1", description: "" }, nerShowPauseButtonTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u039A\u03BF\u03C5\u03BC\u03C0\u03B9\u03BF\u03CD \u03A0\u03B1\u03CD\u03C3\u03B7\u03C2", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03BC\u03B5 \u0388\u03BD\u03B1 \u039A\u03BB\u03B9\u03BA", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "\u0391\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B7\u03BC\u03B5\u03C1\u03CE\u03BD \u03C0\u03C1\u03B9\u03BD \u03C4\u03BF RES \u03C3\u03C4\u03B1\u03BC\u03B1\u03C4\u03AE\u03C3\u03B5\u03B9 \u03BD\u03B1 \u03C0\u03B1\u03C1\u03B1\u03BA\u03BF\u03BB\u03BF\u03C5\u03B8\u03B5\u03AF \u03AD\u03BD\u03B1 \u03BD\u03AE\u03BC\u03B1 \u03C0\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9 \u03C0\u03C1\u03BF\u03B2\u03BB\u03B7\u03B8\u03B5\u03AF.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u0395\u03BA\u03B4\u03CC\u03C3\u03B5\u03C9\u03BD", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C4\u03BF\u03C5 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 \u03B1\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C0\u03C1\u03B9\u03BD \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03B1\u03C0\u03BF\u03C7\u03CE\u03C1\u03B7\u03C3\u03B7 \u03B1\u03C0\u03CC \u03C4\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1.\n\n\u0391\u03C5\u03C4\u03CC \u03B1\u03C0\u03BF\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C4\u03BF \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03BC\u03B7 \u03B1\u03BD\u03B1\u03B3\u03BD\u03C9\u03C3\u03BC\u03AD\u03BD\u03C9\u03BD \u03B1\u03C0\u03CC \u03C4\u03BF \u03BD\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B9\u03C2 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2, \u03B1\u03BB\u03BB\u03AC \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03B2\u03BB\u03AC\u03C0\u03C4\u03B5\u03B9 \u03C4\u03B7\u03BD \u03BA\u03C1\u03C5\u03B3\u03AE \u03BC\u03BD\u03AE\u03BC\u03B7 \u03C4\u03BF\u03C5 \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE.", description: "" }, commentDepthName: { message: "\u03A0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03C3\u03BC\u03AD\u03BD\u03BF \u0392\u03AC\u03B8\u03BF\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u0391\u03C1\u03B9\u03B8\u03BC\u03BF\u03CD \u039C\u03B7 \u0391\u03BD\u03B1\u03B3\u03BD\u03C9\u03C3\u03BC\u03AD\u03BD\u03C9\u03BD \u03C3\u03C4\u03BF \u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u0391\u03B3\u03B1\u03C0\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CE\u03BD \u03C0\u03BF\u03C5 \u03BE\u03B5\u03C0\u03B5\u03C1\u03BD\u03BF\u03CD\u03BD \u03C4\u03B7\u03BD \u03BC\u03AD\u03B3\u03B9\u03C3\u03C4\u03B7 \u03C0\u03BF\u03B9\u03BD\u03AE.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u0391\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7\u03C2", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u039A\u03BF\u03C5\u03BC\u03C0\u03B9\u03BF\u03CD \u03A3\u03C5\u03BD\u03B4\u03C1\u03BF\u03BC\u03AE\u03C2", description: "" }, commentToolsKey: { message: "\u03BA\u03BB\u03B5\u03B9\u03B4\u03AF", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Color Usernames", description: "" }, commentStyleName: { message: "\u03A3\u03C4\u03C5\u03BB \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Show All Options", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "\u039C\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03B5\u03BD\u03B7\u03BC\u03B5\u03C1\u03CE\u03C3\u03B5\u03B9\u03C2 beta.", description: "" }, keyboardNavFrontPageTitle: { message: "\u0391\u03C1\u03C7\u03B9\u03BA\u03AE \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03BA\u03CD\u03BB\u03B9\u03C3\u03B7 \u03C3\u03C4\u03B7\u03BD \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7/\u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03CC\u03C4\u03B1\u03BD \u03C6\u03BF\u03C1\u03C4\u03CE\u03BD\u03B5\u03B9 \u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C4\u03B7\u03C2 \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7\u03C2 \u03C3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5 \u03CC\u03C4\u03B1\u03BD \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03B4\u03B9\u03C0\u03BB\u03CC \u03BA\u03BB\u03B9\u03BA \u03C3\u03C4\u03BF\u03BD \u03C4\u03AF\u03C4\u03BB\u03BF \u03C4\u03BF\u03C5.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "\u038C\u03C4\u03B1\u03BD \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BA\u03BB\u03B9\u03BA \u03C3\u03C4\u03BF \u03C6\u03AC\u03BA\u03B5\u03BB\u03BF \u03C4\u03BF\u03C5 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03BF\u03C2 \u03AE \u03C4\u03BF\u03C5 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03BF\u03C2 \u03B4\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE, \u03BD\u03B1 \u03B1\u03BD\u03BF\u03AF\u03B3\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03BC\u03AE\u03BD\u03C5\u03BC\u03B1 \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1;", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF", description: "" }, notificationStickyTitle: { message: "\u0391\u03C5\u03C4\u03BF\u03BA\u03CC\u03BB\u03BB\u03B7\u03C4\u03BF", description: "" }, aboutOptionsAnnouncements: { message: "\u0394\u03B9\u03AC\u03B2\u03B1\u03C3\u03B5 \u03C4\u03B1 \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03B1 \u03BD\u03AD\u03B1 \u03C3\u03C4\u03BF /r/RESAnnoucements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C0\u03BB\u03B7\u03BD \u03C4\u03C9\u03BD \u03B3\u03BF\u03BD\u03B5\u03CA\u03BA\u03CE\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD, \u03AE \u03C0\u03B1\u03C1\u03BF\u03C7\u03AE \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B1\u03C0\u03BF\u03BA\u03C1\u03CD\u03C0\u03C4\u03BF\u03BD\u03C4\u03B1\u03B9 \u03CC\u03BB\u03B1;", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C5\u03C0\u03BFreddit \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03BC\u03C0\u03AC\u03C1\u03B1 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03C9\u03BD", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "\u03A0\u03C1\u03BF\u03B7\u03B3. \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "\u0395\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03AF\u03BD\u03B5\u03B9 \u03C4\u03B1 \u03BA\u03BF\u03C5\u03C4\u03B9\u03AC \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03B3\u03B9\u03B1 \u03B5\u03C5\u03BA\u03BF\u03BB\u03CC\u03C4\u03B5\u03C1\u03B7 \u03B1\u03BD\u03AC\u03B3\u03BD\u03C9\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03B5\u03CD\u03C1\u03B5\u03C3\u03B7 \u03B8\u03AD\u03C3\u03B7\u03C2 \u03C3\u03B5 \u03BC\u03B5\u03B3\u03AC\u03BB\u03B1 \u03BD\u03AE\u03BC\u03B1\u03C4\u03B1.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u039A\u03AC\u03C4\u03C9 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03A8\u03AE\u03C6\u03B9\u03C3\u03B7", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03A8\u03B5\u03CD\u03C4\u03B9\u03BA\u03C9\u03BD", description: "" }, keyboardNavFrontPageDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03B7\u03BD \u03B1\u03C1\u03C7\u03B9\u03BA\u03AE \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF\u03BD \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03A3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03B5 \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1 BG", description: "" }, singleClickDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF [l+c] \u03C0\u03BF\u03C5 \u03B1\u03BD\u03BF\u03AF\u03B3\u03B5\u03B9 \u03C4\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03B5 \u03BD\u03AD\u03B5\u03C2 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2 \u03BC\u03B5 \u03AD\u03BD\u03B1 \u03BA\u03BB\u03B9\u03BA.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "\u03A0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7 \u03BC\u03B5 \u03A1\u03BF\u03B4\u03AD\u03BB\u03B1", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 \u03B5\u03BD\u03CC\u03C2 \u03C6\u03B1\u03BA\u03AD\u03BB\u03BF\u03C5 (\u03B5\u03B9\u03C3\u03B5\u03C1\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1) \u03C3\u03C4\u03B7\u03BD \u03C0\u03AC\u03BD\u03C9 \u03B4\u03B5\u03BE\u03B9\u03AC \u03B3\u03C9\u03BD\u03AF\u03B1.", description: "" }, aboutName: { message: "\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03C4\u03BF RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "\u0391\u03BD\u03C4\u03AF\u03B3\u03C1\u03B1\u03C6\u03BF \u0391\u03C3\u03C6\u03B1\u03BB\u03B5\u03AF\u03B1\u03C2", description: "" }, productivityCategory: { message: "\u03A0\u03B1\u03C1\u03B1\u03B3\u03C9\u03B3\u03B9\u03BA\u03CC\u03C4\u03B7\u03C4\u03B1", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "\u0394\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03C5\u03C0\u03BFreddit.", description: "" }, hoverCloseOnMouseOutTitle: { message: "\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B1\u03C0\u03BF\u03BC\u03AC\u03BA\u03C1\u03C5\u03BD\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF \u03BA\u03BF\u03C1\u03C5\u03C6\u03B1\u03AF\u03BF \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C4\u03BF\u03C5 \u03C0\u03B1\u03C1\u03CC\u03BD\u03C4\u03BF\u03C2 \u03BD\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 (\u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1)", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: '\u0391\u03BB\u03BB\u03AC\u03B6\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03B5\u03B9\u03C2 "\u03BA\u03C1\u03CD\u03C8\u03B5" ("hide") \u03BD\u03B1 \u03C6\u03B1\u03AF\u03BD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C9\u03C2 "\u03BA\u03C1\u03CD\u03C8\u03B5" \u03BA\u03B1\u03B9 "\u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5" \u03B1\u03BD\u03AC\u03BB\u03BF\u03B3\u03B1 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03AE\u03C2 \u03C4\u03BF\u03C5\u03C2.', description: "" }, commentQuickCollapseName: { message: "\u0393\u03C1\u03AE\u03B3\u03BF\u03C1\u03B7 \u03A3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, troubleshooterEntriesRemoved: { message: "\u0391\u03C6\u03B1\u03B9\u03C1\u03AD\u03B8\u03B7\u03BA\u03B1\u03BD $1 \u03BA\u03B1\u03C4\u03B1\u03C7\u03C9\u03C1\u03AE\u03C3\u03B5\u03B9\u03C2.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "\u03A0\u03B1\u03C1\u03B1\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B7 \u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD \u03C0\u03BF\u03C5 \u03AD\u03C7\u03B5\u03C4\u03B5 \u03B5\u03C0\u03B9\u03C3\u03BA\u03B5\u03C6\u03B8\u03B5\u03AF \u03C3\u03B5 \u03B1\u03BD\u03CE\u03BD\u03C5\u03BC\u03B7 \u03C0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7 ", description: "" }, filteRedditForceSyncFiltersDesc: { message: "\u0391\u03C0\u03B5\u03C5\u03B8\u03B5\u03AF\u03B1\u03C2 \u03B5\u03C0\u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE \u03C4\u03C9\u03BD \u03C4\u03BF\u03C0\u03B9\u03BA\u03CE\u03BD \u03C6\u03AF\u03BB\u03C4\u03C1\u03C9\u03BD /r/all.", description: "" }, searchHelperSearchPageTabsDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2 \u03C3\u03C4\u03B7\u03BD \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "\u03A4\u03BF Ctrl+Enter \u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03B9 \u0396\u03C9\u03BD\u03C4\u03B1\u03BD\u03AC \u039D\u03AE\u03BC\u03B1\u03C4\u03B1", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "\u0392\u03AC\u03B8\u03BF\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03A5\u03C0\u03BFreddit", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03C4\u03C9\u03BD \u03C3\u03C5\u03BD\u03C4\u03AC\u03BA\u03C4\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 2 \u03C3\u03C4\u03B7\u03BB\u03CE\u03BD.", description: "" }, floaterName: { message: "\u0395\u03C0\u03B9\u03C0\u03BB\u03AD\u03BF\u03BD\u03C4\u03B1 \u039D\u03B7\u03C3\u03B9\u03AC", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "\u039F\u03BC\u03B1\u03BB\u03AE \u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7 \u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7\u03C2 \u03A3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "\u0393\u03C1\u03AE\u03B3\u03BF\u03C1\u03B7 \u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u0391\u03BA\u03B1\u03C4\u03B1\u03BB\u03BB\u03AE\u03BB\u03C9\u03BD", description: "" }, filteRedditAllowNSFWDesc: { message: "\u039C\u03B7\u03BD \u03B1\u03C0\u03BF\u03BA\u03C1\u03CD\u03C0\u03C4\u03B5\u03B9\u03C2 \u03C4\u03B9\u03C2 \u0391\u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03B5\u03C2 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03B1\u03C0\u03CC \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B1 \u03C5\u03C0\u03BFreddit \u03CC\u03C4\u03B1\u03BD \u03C4\u03BF \u03C6\u03AF\u03BB\u03C4\u03C1\u03BF \u0391\u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03C9\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03B4\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B4\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03AE \u03BD\u03B1 \u03BA\u03C1\u03CD\u03B2\u03B5\u03B9 \u03C4\u03B7 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7.", description: "" }, showImagesDesc: { message: "\u0391\u03BD\u03BF\u03AF\u03B3\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 \u03B5\u03BD\u03C3\u03C9\u03BC\u03B1\u03C4\u03C9\u03BC\u03AD\u03BD\u03B1 \u03C3\u03C4\u03BF \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03C0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7\u03C2 \u03C0\u03B1\u03C4\u03CE\u03BD\u03C4\u03B1\u03C2 \u03AD\u03BD\u03B1 \u03BA\u03BF\u03C5\u03BC\u03C0\u03AF. \u0388\u03C7\u03B5\u03B9 \u03BA\u03B1\u03B9 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2, \u03B4\u03B5\u03C2 \u03C4\u03B9\u03C2!", description: "" }, commentToolsMacroButtonsTitle: { message: "\u039A\u03BF\u03C5\u03BC\u03C0\u03B9\u03AC \u039C\u03B1\u03BA\u03C1\u03BF\u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "\u039D\u03B1 \u03BC\u03B7\u03BD \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BF\u03B9 \u03B4\u03B9\u03BA\u03AD\u03C2 \u03C3\u03BF\u03C5 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2.", description: "" }, notificationStickyDesc: { message: "\u039F\u03B9 \u03B1\u03C5\u03C4\u03BF\u03BA\u03CC\u03BB\u03BB\u03B7\u03C4\u03B5\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C0\u03B1\u03C1\u03B1\u03BC\u03AD\u03BD\u03BF\u03C5\u03BD \u03BF\u03C1\u03B1\u03C4\u03AD\u03C2 \u03AD\u03C9\u03C2 \u03CC\u03C4\u03BF\u03C5 \u03C0\u03B1\u03C4\u03B7\u03B8\u03B5\u03AF \u03C4\u03BF \u03BA\u03BF\u03C5\u03BC\u03C0\u03AF \u03BA\u03BB\u03B5\u03B9\u03C3\u03AF\u03BC\u03B1\u03C4\u03BF\u03C2.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "\u0397 \u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03C4\u03BF\u03C5 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03BA\u03C1\u03CD\u03B2\u03B5\u03B9 \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03C3\u03BF\u03C5 \u03B1\u03C0\u03CC \u03C4\u03BF \u03BD\u03B1 \u03C6\u03B1\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B7\u03BD \u03BF\u03B8\u03CC\u03BD\u03B7 \u03C3\u03BF\u03C5 \u03CC\u03C4\u03B1\u03BD \u03B5\u03AF\u03C3\u03B1\u03B9 \u03C3\u03C5\u03BD\u03B4\u03B5\u03B4\u03B5\u03BC\u03AD\u03BD\u03BF\u03C2 \u03C3\u03C4\u03BF reddit. \u0388\u03C4\u03C3\u03B9, \u03B1\u03BD \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF\u03C2 \u03B2\u03BB\u03AD\u03C0\u03B5\u03B9 \u03C4\u03B7\u03BD \u03BF\u03B8\u03CC\u03BD\u03B7 \u03C3\u03BF\u03C5 \u03C3\u03C4\u03B7 \u03B4\u03BF\u03C5\u03BB\u03B5\u03B9\u03AC, \u03AE \u03B1\u03BD \u03C0\u03AC\u03C1\u03B5\u03B9\u03C2 \u03AD\u03BD\u03B1 \u03C3\u03C4\u03B9\u03B3\u03BC\u03B9\u03CC\u03C4\u03C5\u03C0\u03BF \u03BF\u03B8\u03CC\u03BD\u03B7\u03C2, \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03C3\u03BF\u03C5 \u03B4\u03B5\u03BD \u03B8\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03C4\u03B1\u03B9. \u0391\u03C5\u03C4\u03CC \u03B5\u03C0\u03B7\u03C1\u03B5\u03AC\u03B6\u03B5\u03B9 \u03BC\u03CC\u03BD\u03BF \u03C4\u03B7\u03BD \u03BF\u03B8\u03CC\u03BD\u03B7 \u03C3\u03BF\u03C5. \u0394\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03B5\u03B9 \u03C4\u03C1\u03CC\u03C0\u03BF\u03C2 \u03BD\u03B1 \u03BA\u03AC\u03BD\u03B5\u03B9\u03C2 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03AE \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03C4\u03BF reddit \u03C7\u03C9\u03C1\u03AF\u03C2 \u03BD\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03BF \u03CC\u03BD\u03BF\u03BC\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03B1\u03C0' \u03CC\u03C0\u03BF\u03C5 \u03C4\u03B1 \u03AD\u03BA\u03B1\u03BD\u03B5\u03C2.", description: "" }, betteRedditName: { message: "\u03BA\u03B1\u03BB\u03C5\u03C4\u03B5Reddit", description: "" }, voteEnhancementsName: { message: "\u0392\u03B5\u03BB\u03C4\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 \u03A8\u03AE\u03C6\u03C9\u03BD", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "\u0394\u03B5\u03AF\u03BE\u03B5 \u039A\u03C1\u03C5\u03BC\u03BC\u03AD\u03BD\u03B5\u03C2 \u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2 \u03A4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7\u03C2", description: "" }, betteRedditTruncateLongLinksDesc: { message: "\u03A0\u03B5\u03C1\u03B9\u03BA\u03CC\u03C0\u03C4\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5\u03C2 \u03C4\u03AF\u03C4\u03BB\u03BF\u03C5\u03C2 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD (\u03BC\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03BF\u03C5\u03C2 \u03B1\u03C0\u03CC 1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE), \u03BC\u03B5 \u03B1\u03C0\u03BF\u03C3\u03B9\u03C9\u03C0\u03BF\u03B9\u03B7\u03C4\u03B9\u03BA\u03AC.", description: "" }, subredditInfoAddRemoveDashboard: { message: "\u03C0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03C3\u03C5\u03BC\u03C0\u03BB\u03AE\u03C1\u03C9\u03C3\u03B7 \u03C4\u03BF\u03C5 Wiki.", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03A3\u03C5\u03BC\u03C0\u03BB\u03AE\u03C1\u03C9\u03C3\u03B7 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "\u03A4\u03B1\u03C7\u03CD\u03C4\u03B7\u03C4\u03B1 \u039F\u03BC\u03B1\u03BB\u03AE\u03C2 \u039C\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2", description: "" }, aboutOptionsCodeTitle: { message: "\u039A\u03CE\u03B4\u03B9\u03BA\u03B1\u03C2", description: "" }, scrollOnCollapseTitle: { message: "\u039A\u03CD\u03BB\u03B9\u03C3\u03B7 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03A3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7", description: "" }, nerReversePauseIconDesc: { message: '\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 \u03B3\u03C1\u03B1\u03BC\u03BC\u03CE\u03BD "\u03C3\u03B5 \u03C0\u03B1\u03CD\u03C3\u03B7" \u03CC\u03C4\u03B1\u03BD \u03B7 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B7 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03B5 \u03C0\u03B1\u03CD\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03CC\u03C4\u03B1\u03BD \u03C4\u03BF \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03C3\u03C6\u03AE\u03BD\u03B1\u03C2 \u03C4\u03B7\u03C2 \u03B1\u03BD\u03B1\u03C0\u03B1\u03C1\u03B1\u03B3\u03C9\u03B3\u03AE\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03BD\u03B5\u03C1\u03B3\u03CC.', description: "" }, userTaggerUsername: { message: "\u038C\u03BD\u03BF\u03BC\u03B1 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "\u0395\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u0395\u03BD\u03B7\u03BC\u03B5\u03C1\u03CE\u03C3\u03B5\u03C9\u03BD \u0395\u03C0\u03B9\u03B4\u03B9\u03CC\u03C1\u03B8\u03C9\u03C3\u03B7\u03C2", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03B5\u03AF \u03C4\u03B7\u03BD/\u03C4\u03B9\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1/\u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03B5\u03C0\u03AC\u03BD\u03C9.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "\u0394\u03C9\u03C1\u03B5\u03AC", description: "" }, keyboardNavGoModeTitle: { message: "\u039B\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 Go", description: "" }, keyboardNavName: { message: "\u03A0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7 \u03A0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03BF\u03B3\u03AF\u03BF\u03C5", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "\u03A5\u03C0\u03B5\u03C1\u03C4\u03BF\u03BD\u03B9\u03C3\u03BC\u03CC\u03C2 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "\u0395\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03A4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03B5\u03C2 \u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "\u03A0\u03B1\u03C1\u03CC\u03BD \u03C5\u03C0\u03BFreddit/\u03C0\u03BF\u03BB\u03C5reddit", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications", description: "" }, keyboardNavFollowPermalinkTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF\u03BD \u039C\u03CC\u03BD\u03B9\u03BC\u03BF \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF", description: "" }, hoverDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03B3\u03AE \u03C4\u03B7\u03C2 \u03C3\u03C5\u03BC\u03C0\u03B5\u03C1\u03B9\u03C6\u03BF\u03C1\u03AC\u03C2 \u03C4\u03C9\u03BD \u03BC\u03B5\u03B3\u03AC\u03BB\u03C9\u03BD \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03C9\u03BD \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03C9\u03BD \u03C0\u03BF\u03C5 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03CC\u03C4\u03B1\u03BD \u03B1\u03B9\u03C9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03BA\u03AC\u03C0\u03BF\u03B9\u03B1 \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03B1.", description: "" }, modhelperName: { message: "\u0392\u03BF\u03B7\u03B8\u03CC\u03C2 \u03A3\u03C5\u03BD\u03C4\u03BF\u03BD\u03B9\u03C3\u03C4\u03AE", description: "" }, multiredditNavbarUrl: { message: "\u03B4\u03B9\u03B5\u03CD\u03B8\u03C5\u03BD\u03C3\u03B7", description: "" }, hideChildCommentsName: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD-\u03C0\u03B1\u03B9\u03B4\u03B9\u03CE\u03BD", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: '\u03A0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03BF\u03C1\u03AF\u03C3\u03B5\u03B9\u03C2 "$1" \u03AE "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03A0\u03AC\u03BD\u03C9", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Open Quick Message", description: "" }, pageNavToTopTitle: { message: "\u03A3\u03C4\u03B7\u03BD \u039A\u03BF\u03C1\u03C5\u03C6\u03AE", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "\u039A\u03CD\u03BB\u03B9\u03C3\u03B7 \u03C3\u03C4\u03BF Expando", description: "" }, userTaggerTag: { message: "\u0395\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1", description: "" }, userbarHiderToggleUserbar: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u039C\u03C0\u03AC\u03C1\u03B1\u03C2 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, nerReversePauseIconTitle: { message: "\u0395\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u0391\u03BD\u03C4\u03AF\u03C3\u03C4\u03C1\u03BF\u03C6\u03B7\u03C2 \u03A0\u03B1\u03CD\u03C3\u03B7\u03C2", description: "" }, userTaggerTrackVoteWeightDesc: { message: "\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03B9\u03B8\u03BC\u03BF\u03CD \u03C4\u03C9\u03BD \u03C3\u03C5\u03C3\u03C3\u03C9\u03C1\u03B5\u03C5\u03BC\u03AD\u03BD\u03C9\u03BD \u03C0\u03AC\u03BD\u03C9 / \u03BA\u03AC\u03C4\u03C9 \u03C8\u03AE\u03C6\u03C9\u03BD \u03C0\u03BF\u03C5 \u03AD\u03C7\u03BF\u03C5\u03BD \u03B4\u03BF\u03B8\u03B5\u03AF \u03C3\u03B5 \u03BA\u03AC\u03B8\u03B5 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03BA\u03B1\u03B9 \u03B1\u03BD\u03C4\u03B9\u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B5\u03B9\u03BA\u03BF\u03BD\u03B9\u03B4\u03AF\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7\u03C2 \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1\u03C2 \u03BC\u03B5 \u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03C4\u03BF\u03C5 \u03B2\u03AC\u03C1\u03BF\u03C5\u03C2 \u03C4\u03B7\u03C2 \u03C8\u03AE\u03C6\u03BF\u03C5, \u03C4\u03BF \u03BF\u03C0\u03BF\u03AF\u03BF \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03B1\u03C5\u03C4\u03CC\u03BD \u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C5\u03C0\u03BFreddit \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD \u03C0\u03AF\u03BD\u03B1\u03BA\u03B1 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "\u039C\u03BF\u03C1\u03BF\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 \u03AE \u03B4\u03B5\u03AF\u03BE\u03B5 \u03B5\u03C0\u03B9\u03C0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C4\u03B5\u03C2 \u03C0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03C4\u03B9\u03C2 \u03C8\u03AE\u03C6\u03BF\u03C5\u03C2 \u03C3\u03B5 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BA\u03B1\u03B9 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03A5\u03C0\u03BFreddit", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "\u03A0\u03C1\u03BF\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2", description: "" }, keyboardNavSaveCommentTitle: { message: "\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B7 \u03A3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5", description: "" }, nerPauseAfterEveryTitle: { message: "\u03A0\u03B1\u03CD\u03C3\u03B7 \u039C\u03B5\u03C4\u03AC \u0391\u03C0\u03CC \u039A\u03AC\u03B8\u03B5", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "\u0393\u03C1\u03B1\u03BC\u03BC\u03AE \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03C0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF reddit, \u03B5\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 RES \u03BA\u03B1\u03B9 \u03B1\u03C0\u03BF\u03C3\u03C6\u03B1\u03BB\u03BC\u03AC\u03C4\u03C9\u03C3\u03B7 \u03C4\u03BF\u03C5 RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: '\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C4\u03BF\u03C5 \u03B4\u03B9\u03B1\u03BB\u03CC\u03B3\u03BF\u03C5 \u03B3\u03C1\u03AE\u03B3\u03BF\u03C1\u03BF\u03C5 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03BF\u03C2 \u03CC\u03C4\u03B1\u03BD \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BA\u03BB\u03B9\u03BA \u03C3\u03B5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5\u03C2 reddit.com/message/compose \u03C3\u03C4\u03B7\u03BD \u03C0\u03BB\u03B5\u03C5\u03C1\u03B9\u03BA\u03AE \u03BC\u03C0\u03AC\u03C1\u03B1 (\u03C0.\u03C7. "\u03BC\u03AE\u03BD\u03C5\u03BC\u03B1 \u03C0\u03C1\u03BF\u03C2 \u03B4\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AD\u03C2")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "\u0394\u03B5\u03C2 \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B7 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 \u03C3\u03C4\u03B7\u03BD \u03B5\u03BD\u03C3\u03C9\u03BC\u03B1\u03C4\u03C9\u03BC\u03AD\u03BD\u03B7 \u03C3\u03C5\u03BB\u03BB\u03BF\u03B3\u03AE.", description: "" }, userInfoInvalidUsernameLink: { message: "\u0395\u03C3\u03C6\u03B1\u03BB\u03BC\u03AD\u03BD\u03BF\u03C2 \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "\u0395\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7 \u03BA\u03B1\u03B9 \u03C7\u03C1\u03BF\u03BD\u03B9\u03BA\u03BF\u03CD \u03B5\u03CD\u03C1\u03BF\u03C5\u03C2 \u03C3\u03C4\u03B7\u03BD \u03C6\u03CC\u03C1\u03BC\u03B1 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03BB\u03B5\u03C5\u03C1\u03B9\u03BA\u03BF\u03CD \u03C0\u03AC\u03BD\u03B5\u03BB.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03AE\u03C3\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03CE\u03BD\u03C4\u03B1\u03C2 \u03C4\u03BF\u03BD \u03A0\u03BB\u03BF\u03B7\u03B3\u03CC \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "\u039B\u03AE\u03BE\u03B7 \u039D\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE\u03C2 \u039B\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "\u03A0\u03C1\u03BF\u03B2\u03AC\u03BB\u03BB\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03C3\u03C4\u03B7\u03BD \u03C4\u03BF\u03C0\u03B9\u03BA\u03AE \u03CE\u03C1\u03B1 \u03CC\u03C4\u03B1\u03BD \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9 \u03B1\u03B9\u03C9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03BC\u03B9\u03B1 \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AE \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1.", description: "" }, noPartEscapeNPTitle: { message: "\u0391\u03C0\u03BF\u03C6\u03C5\u03B3\u03AE \u039C\u03B7 \u03A3\u03C5\u03BC\u03BC\u03B5\u03C4\u03BF\u03C7\u03AE\u03C2", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "\u0397 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1 \u03C0\u03BF\u03C5 \u03B8\u03B1 \u03B1\u03BD\u03B1\u03C0\u03C4\u03CD\u03C3\u03C3\u03B5\u03C4\u03B1\u03B9 \u03CC\u03C0\u03BF\u03C4\u03B5 \u03C0\u03C1\u03B1\u03B3\u03BC\u03B1\u03C4\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "\u03A0\u03C5\u03C1\u03AE\u03BD\u03B1\u03C2", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "\u03C0\u03BF\u03B9\u03BD\u03AE", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "\u03A7\u03C1\u03AE\u03C3\u03B7 \u03B4\u03B9\u03B1\u03C6\u03CC\u03C1\u03C9\u03BD \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03B9\u03CE\u03BD.", description: "" }, commentDepthMinimumComments: { message: "\u03B5\u03BB\u03AC\u03C7\u03B9\u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1", description: "" }, aboutOptionsCode: { message: "\u039C\u03C0\u03BF\u03C1\u03B5\u03AF\u03C2 \u03BD\u03B1 \u03B2\u03B5\u03BB\u03B9\u03C4\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF RES \u03BC\u03B5 \u03C4\u03BF\u03BD \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1, \u03C4\u03BF\u03BD \u03C3\u03C7\u03B5\u03B4\u03B9\u03B1\u03C3\u03BC\u03CC \u03BA\u03B1\u03B9 \u03C4\u03B9\u03C2 \u03B9\u03B4\u03AD\u03B5\u03C2 \u03C3\u03BF\u03C5! \u03A4\u03BF RES \u03B5\u03AF\u03BD\u03B1\u03B9 \u03AD\u03BD\u03B1 \u03C0\u03C1\u03CC\u03B3\u03C1\u03B1\u03BC\u03BC\u03B1 \u03B1\u03BD\u03BF\u03B9\u03C7\u03C4\u03BF\u03CD \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1 \u03C3\u03C4\u03BF GitHub.", description: "" }, commentNavDesc: { message: "\u03A0\u03B1\u03C1\u03AD\u03C7\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03BF \u03C0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B2\u03C1\u03AF\u03C3\u03BA\u03B5\u03B9\u03C2 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03BC\u03B5 \u03B2\u03AC\u03C3\u03B7 \u03C4\u03BF\u03BD \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC \u03B1\u03C0\u03BF\u03C3\u03C4\u03BF\u03BB\u03AD\u03B1 (OP), \u03C4\u03BF\u03C5\u03C2 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BD\u03B9\u03C3\u03C4\u03AD\u03C2 \u03BA\u03BB\u03C0.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "\u03A0\u03B1\u03C4\u03CE\u03BD\u03C4\u03B1\u03C2 Ctrl+Enter \u03AE Cmd+Enter \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BF\u03B9 \u03B5\u03BD\u03B7\u03BC\u03B5\u03C1\u03CE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03BF \u03B6\u03C9\u03BD\u03C4\u03B1\u03BD\u03CC \u03C3\u03BF\u03C5 \u03BD\u03AE\u03BC\u03B1.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "\u03A4\u03BF Reddit Enhancement Suite \u03B4\u03B9\u03B1\u03C4\u03AF\u03B8\u03B5\u03C4\u03B1\u03B9 \u03BA\u03AC\u03C4\u03C9 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03AC\u03B4\u03B5\u03B9\u03B1 GPL v3.0.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u039C\u03B7\u03BD\u03C5\u03BC\u03AC\u03C4\u03C9\u03BD \u03BA\u03B1\u03C4\u03AC \u03C4\u03BF\u03BD \u0391\u03C0\u03BF\u03BA\u03BB\u03B5\u03B9\u03C3\u03BC\u03CC", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "\u0391\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u03B7\u03BC\u03B5\u03C1\u03CE\u03BD \u03C0\u03C1\u03BF\u03C4\u03BF\u03CD \u03B7 \u03C3\u03C5\u03BD\u03B4\u03C1\u03BF\u03BC\u03AE \u03C3\u03B5 \u03AD\u03BD\u03B1 \u03BD\u03AE\u03BC\u03B1 \u03BB\u03AE\u03BE\u03B5\u03B9", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "\u03A4\u03BF RES' $1 \u03B4\u03B5\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03AF\u03B3\u03BF\u03C5\u03C1\u03BF \u03C4\u03B9 \u03BD\u03B1 \u03BA\u03AC\u03BD\u03B5\u03B9 \u03CC\u03C4\u03B1\u03BD \u03C0\u03B1\u03C4\u03AC\u03C4\u03B5 \u03C3\u03C4\u03BF \u03C0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03CC\u03B3\u03B9\u03BF \u03C4\u03B7 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 $2. $3 \u03A4\u03B9 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03CC\u03C4\u03B1\u03BD \u03C0\u03B1\u03C4\u03B9\u03AD\u03C4\u03B1\u03B9 $4 ;", description: "" }, styleTweaksToggleSubredditStyle: { message: "\u03B5\u03BD\u03AC\u03BB\u03BB\u03B1\u03BE\u03B5 \u03C4\u03BF \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03BFreddit", description: "" }, RESTipsDailyTipTitle: { message: "Daily Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "\u03A0\u03AC\u03BD\u03C4\u03B1 \u03BD\u03B1 \u03C0\u03B7\u03B3\u03B1\u03AF\u03BD\u03B5\u03B9 \u03C3\u03C4\u03B1 \u03B5\u03B9\u03C3\u03B5\u03C1\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1, \u03CC\u03C7\u03B9 \u03C4\u03B1 \u03B1\u03B4\u03B9\u03AC\u03B2\u03B1\u03C3\u03C4\u03B1 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03B1, \u03CC\u03C4\u03B1\u03BD \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BA\u03BB\u03B9\u03BA \u03C3\u03C4\u03BF \u03C0\u03BF\u03C1\u03C4\u03BF\u03BA\u03B1\u03BB\u03BF\u03BA\u03CC\u03BA\u03BA\u03B9\u03BD\u03BF.", description: "" }, newCommentCountName: { message: "\u0391\u03C1\u03B9\u03B8\u03BC\u03CC\u03C2 \u039D\u03AD\u03C9\u03BD \u039C\u03B7\u03BD\u03C5\u03BC\u03AC\u03C4\u03C9\u03BD", description: "" }, keyboardNavSlashAllDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03BF /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5 \u0393\u03BF\u03BD\u03B5\u03AF\u03C2", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "\u0391\u03C1\u03C7\u03B9\u03BA\u03AE", description: "" }, commentToolsCategory: { message: "\u03BA\u03B1\u03C4\u03B7\u03B3\u03BF\u03C1\u03AF\u03B1", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "\u038C\u03C4\u03B1\u03BD \u03B1\u03B9\u03C9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03C4\u03BF [\u03BA\u03C1\u03C5\u03BC\u03BC\u03AD\u03BD\u03B7 \u03B2\u03B1\u03B8\u03BC\u03BF\u03BB\u03BF\u03B3\u03AF\u03B1] \u03B4\u03B5\u03AF\u03BE\u03B5 \u03C4\u03BF\u03BD \u03C7\u03C1\u03CC\u03BD\u03BF \u03C0\u03BF\u03C5 \u03B1\u03C0\u03BF\u03BC\u03AD\u03BD\u03B5\u03B9 \u03B1\u03BD\u03C4\u03AF \u03C4\u03B7\u03C2 \u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7\u03C2 \u03B4\u03B9\u03AC\u03C1\u03BA\u03B5\u03B9\u03B1\u03C2.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03CE\u03C1\u03B1 \u03C0\u03BF\u03C5 \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03AE\u03B8\u03B7\u03BA\u03B5 \u03BC\u03AF\u03B1 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5/\u03C3\u03C7\u03CC\u03BB\u03B9\u03BF, \u03C7\u03C9\u03C1\u03AF\u03C2 \u03BD\u03B1 \u03C7\u03C1\u03B5\u03B9\u03AC\u03B6\u03B5\u03C4\u03B1\u03B9 \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03C7\u03C1\u03BF\u03BD\u03BF\u03C3\u03C6\u03C1\u03B1\u03B3\u03AF\u03B4\u03B1.", description: "" }, aboutOptionsSearchSettings: { message: "\u0395\u03CD\u03C1\u03B5\u03C3\u03B7 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD RES.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "\u0395\u03C0\u03CC\u03BC\u03B5\u03BD\u03B7 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1 \u03A3\u03C5\u03BB\u03BB\u03BF\u03B3\u03AE\u03C2", description: "" }, styleTweaksSubredditStyleEnabled: { message: "\u03A4\u03BF \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03BFreddit \u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF \u03B3\u03B9\u03B1 \u03C4\u03BF \u03C5\u03C0\u03BFreddit: $1.", description: "" }, notificationsNeverSticky: { message: "\u03C0\u03BF\u03C4\u03AD \u03B1\u03C5\u03C4\u03BF\u03BA\u03CC\u03BB\u03BB\u03B7\u03C4\u03BF", description: "" }, keyboardNavMoveDownDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9 \u03C3\u03C4\u03BF\u03BD \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03AE \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03B5 \u03B5\u03C0\u03AF\u03C0\u03B5\u03B4\u03B5\u03C2 \u03BB\u03AF\u03C3\u03C4\u03B5\u03C2.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03BF [-] \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u03C3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7\u03C2 \u03C3\u03C4\u03B1 \u03B5\u03B9\u03C3\u03B5\u03C1\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1.", description: "" }, noPartEvenIfSubscriberTitle: { message: "\u0391\u03BA\u03CC\u03BC\u03B1 \u03BA\u03B1\u03B9 \u03B1\u03BD \u03AD\u03C7\u03B5\u03B9 \u03B3\u03AF\u03BD\u03B5\u03B9 \u03A3\u03C5\u03BD\u03B4\u03C1\u03BF\u03BC\u03AE", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C3\u03B5 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C5\u03C0\u03BFreddit \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03BC\u03C0\u03AC\u03C1\u03B1 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03C9\u03BD", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B5 \u03C4\u03B9\u03C2 \u0386\u03BB\u03BB\u03B5\u03C2 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2", description: "" }, betteRedditVideoTimesTitle: { message: "\u03A7\u03C1\u03CC\u03BD\u03BF\u03B9 \u0392\u03AF\u03BD\u03C4\u03B5\u03BF", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7", description: "" }, userTaggerShowIgnoredDesc: { message: "\u03A0\u03B1\u03C1\u03BF\u03C7\u03AE \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7\u03C2 \u03B5\u03BD\u03CC\u03C2 \u03B1\u03B3\u03BD\u03BF\u03B7\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03AE \u03C3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "\u03A0\u03BB\u03AE\u03BA\u03C4\u03C1\u03BF \u03A0\u03BB\u03B1\u03B3\u03AF\u03BF\u03C5", description: "" }, filteRedditUseRedditFiltersTitle: { message: "\u03A7\u03C1\u03AE\u03C3\u03B7 \u03A6\u03AF\u03BB\u03C4\u03C1\u03C9\u03BD Reddit", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C4\u03BF\u03C5 \u03C4\u03B5\u03BB\u03B5\u03C5\u03C4\u03B1\u03AF\u03BF\u03C5 \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03BF\u03C5 \u03C0\u03BF\u03C5 \u03B5\u03AF\u03C7\u03B5 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03B5\u03AF", description: "" }, aboutOptionsPresetsTitle: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AD\u03C2", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03B2\u03AC\u03B8\u03BF\u03C2 \u03C0\u03BF\u03C5 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03B3\u03B9\u03B1 \u03CC\u03BB\u03B1 \u03C4\u03B1 \u03C5\u03C0\u03BFreddit \u03C0\u03BF\u03C5 \u03B4\u03B5\u03BD \u03C5\u03C0\u03AC\u03C1\u03C7\u03BF\u03C5\u03BD \u03C3\u03C4\u03B7\u03BD \u03C0\u03B1\u03C1\u03B1\u03BA\u03AC\u03C4\u03C9 \u03BB\u03AF\u03C3\u03C4\u03B1.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "\u0395\u03C0\u03AF\u03C4\u03C1\u03B5\u03C8\u03B5 \u03C3\u03C4\u03B1 \u03C5\u03C0\u03BF\u03C1\u03AD\u03BD\u03C4\u03B9\u03C4 \u03C4\u03B7\u03C2 \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2 \u03BD\u03B1 \u03B5\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03C4\u03B1 \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03BFreddit \u03C4\u03BF\u03C5\u03C2 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7 \u03BD\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF \u03C4\u03BF useSubredditStyles.", description: "" }, nerHideDupesHide: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7", description: "" }, aboutOptionsContributorsTitle: { message: "\u03A3\u03C5\u03BD\u03B5\u03B9\u03C3\u03C6\u03AD\u03C1\u03BF\u03BD\u03C4\u03B5\u03C2", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u0392\u03BF\u03AE\u03B8\u03B5\u03B9\u03B1\u03C2", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "\u038C\u03C4\u03B1\u03BD \u03B1\u03BA\u03BF\u03BB\u03BF\u03C5\u03B8\u03B5\u03AF\u03C2 \u03AD\u03BD\u03B1\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1, \u03BD\u03B1 \u03AD\u03C1\u03B8\u03B5\u03B9 \u03B7 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1 \u03C3\u03B5 \u03B5\u03C3\u03C4\u03AF\u03B1\u03C3\u03B7;", description: "" }, aboutOptionsFAQ: { message: "\u039C\u03AC\u03B8\u03B5 \u03C0\u03B5\u03C1\u03B9\u03C3\u03C3\u03CC\u03C4\u03B5\u03C1\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03BF RES \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 wiki \u03C4\u03BF\u03C5 /r/Enhancement.", description: "" }, betteRedditPinHeaderDesc: { message: "\u039A\u03B1\u03C1\u03C6\u03AF\u03C4\u03C3\u03C9\u03C3\u03B5 \u03C4\u03B7\u03BD \u03BC\u03C0\u03AC\u03C1\u03B1 \u03C5\u03C0\u03BFreddit, \u03C4\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03AE \u03C4\u03B7\u03BD \u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1, \u03BD\u03B1 \u03B1\u03B9\u03C9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C3\u03C4\u03B7\u03BD \u03BA\u03BF\u03C1\u03C5\u03C6\u03AE \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03BA\u03CD\u03BB\u03B9\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD \u03AD\u03BA\u03B4\u03BF\u03C3\u03B7\u03C2 \u03C3\u03B5 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1 \u03C0\u03B1\u03C1\u03B1\u03C3\u03BA\u03B7\u03BD\u03AF\u03BF\u03C5", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B1\u03BA\u03C1\u03B9\u03B2\u03AE \u03B7\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1 \u03C3\u03C4\u03B7\u03BD \u03C0\u03BB\u03B5\u03C5\u03C1\u03B9\u03BA\u03AE \u03BC\u03C0\u03AC\u03C1\u03B1.", description: "" }, keyboardNavUpVoteDesc: { message: "\u03A8\u03AE\u03C6\u03B9\u03C3\u03B5 \u03C0\u03AC\u03BD\u03C9 \u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03AE \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF (\u03AE \u03B1\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B5 \u03C4\u03B7\u03BD \u03C0\u03AC\u03BD\u03C9 \u03C8\u03AE\u03C6\u03BF).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7, \u03C3\u03B5 \u03C7\u03B9\u03BB\u03B9\u03BF\u03C3\u03C4\u03AC \u03C4\u03BF\u03C5 \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03BF\u03BB\u03AD\u03C0\u03C4\u03BF\u03C5 \u03C0\u03C1\u03B9\u03BD \u03B5\u03BC\u03C6\u03B1\u03BD\u03B9\u03C3\u03C4\u03B5\u03AF \u03B7 \u03C5\u03C0\u03CC\u03BC\u03BD\u03B7\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD.", description: "" }, keyboardNavFollowSubredditDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03BF \u03C5\u03C0\u03BFreddit \u03C4\u03BF\u03C5 \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 (\u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "\u039A\u03C1\u03AC\u03C4\u03B7\u03C3\u03AD \u03BC\u03B5 \u03C3\u03C5\u03BD\u03B4\u03B5\u03B4\u03B5\u03BC\u03AD\u03BD\u03BF \u03CC\u03C4\u03B1\u03BD \u03B5\u03C0\u03B1\u03BD\u03B5\u03BA\u03BA\u03B9\u03BD\u03AE\u03C3\u03C9 \u03C4\u03BF\u03BD \u03C6\u03C5\u03BB\u03BB\u03BF\u03BC\u03B5\u03C4\u03C1\u03B7\u03C4\u03AE \u03BC\u03BF\u03C5.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE expando (\u03B5\u03B9\u03BA\u03CC\u03BD\u03B1/\u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF/\u03B2\u03AF\u03BD\u03C4\u03B5\u03BF).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "\u0394\u03B5\u03C2 \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "\u0391\u03BD\u03C4\u03AF\u03B3\u03C1\u03B1\u03C6\u03BF \u0391\u03C3\u03C6\u03B1\u03BB\u03B5\u03AF\u03B1\u03C2", description: "" }, profileNavigatorHoverDelayDesc: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7, \u03C3\u03B5 \u03C7\u03B9\u03BB\u03B9\u03BF\u03C3\u03C4\u03AC \u03C4\u03BF\u03C5 \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03BF\u03BB\u03AD\u03C0\u03C4\u03BF\u03C5 \u03C0\u03C1\u03B9\u03BD \u03B5\u03BC\u03C6\u03B1\u03BD\u03B9\u03C3\u03C4\u03B5\u03AF \u03B7 \u03C5\u03C0\u03CC\u03BC\u03BD\u03B7\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "\u03A4\u03BF RES \u03C3\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B1 \u03C3\u03C4\u03C5\u03BB \u03C5\u03C0\u03BFreddit!", description: "" }, customTogglesDesc: { message: "\u038C\u03C1\u03B9\u03C3\u03B5 \u03C0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03C3\u03BC\u03AD\u03BD\u03BF\u03C5\u03C2 \u03B4\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B5\u03C2 \u03B3\u03B9\u03B1 \u03B4\u03B9\u03AC\u03C6\u03BF\u03C1\u03B1 \u03BC\u03AD\u03C1\u03B7 \u03C4\u03BF\u03C5 RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE\u03C2 \u03C3\u03C4\u03BF \u03B1\u03BD\u03B1\u03C0\u03C4\u03C5\u03C3\u03C3\u03CC\u03BC\u03B5\u03BD\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD \u03C4\u03BF\u03C5 RES \u03B3\u03B9\u03B1 \u03C4\u03B7\u03BD \u03B5\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C5\u03C0\u03BF\u03B4\u03B5\u03AF\u03BE\u03B5\u03C9\u03BD.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "\u039A\u03BF\u03C5\u03BC\u03C0\u03B9\u03AC \u0395\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD \u039C\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2", description: "" }, commentPreviewEnableForWikiDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03C4\u03C9\u03BD \u03C3\u03B5\u03BB\u03AF\u03B4\u03C9\u03BD wiki.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B5 \u03C4\u03B7\u03BD \u0395\u03B9\u03BA\u03CC\u03BD\u03B1 \u03A0\u03AC\u03BD\u03C9", description: "" }, settingsNavDesc: { message: "\u03A3\u03B5 \u03B2\u03BF\u03B7\u03B8\u03AC \u03BD\u03B1 \u03C0\u03B5\u03C1\u03B9\u03B7\u03B3\u03B7\u03B8\u03B5\u03AF\u03C2 \u03C3\u03C4\u03B7\u03BD \u03BA\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 RES \u03BC\u03B5 \u03BC\u03B5\u03B3\u03B1\u03BB\u03CD\u03C4\u03B5\u03C1\u03B7 \u03B5\u03C5\u03BA\u03BF\u03BB\u03AF\u03B1.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "\u03A3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03C3\u03C4\u03B1 \u0395\u03B9\u03C3\u03B5\u03C1\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1", description: "" }, usernameHiderName: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u039F\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03BC\u03AD\u03BD\u03BF", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "\u0395\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03B1 \u03A0\u03B9\u03BD\u03AC\u03BA\u03C9\u03BD", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "\u039F \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2 \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "\u03A0\u03B5\u03C1\u03AF\u03BA\u03BF\u03C8\u03B5 \u039C\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5\u03C2 \u03A3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5\u03C2", description: "" }, keyboardNavToggleCmdLineDesc: { message: "\u0395\u03BA\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD RES.", description: "" }, nerHideDupesDontHide: { message: "\u039D\u03B1 \u03BC\u03B7\u03BD \u03B3\u03AF\u03BD\u03B5\u03B9 \u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "\u0395\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03B1\u03BD \u03BC\u03AF\u03B1 \u03B5\u03B3\u03B3\u03B5\u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03BD\u03B7 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03AE\u03B8\u03B7\u03BA\u03B5.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 \u03B8\u03B1 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF, \u03BB\u03CC\u03B3\u03C9 \u03AD\u03BB\u03BB\u03B5\u03B9\u03C8\u03B7\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2. \u039C\u03C0\u03BF\u03C1\u03B5\u03AF\u03C4\u03B5 \u03BD\u03B1 \u03C4\u03BF \u03B5\u03C0\u03B1\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C4\u03B5 \u03B1\u03C1\u03B3\u03CC\u03C4\u03B5\u03C1\u03B1 \u03C3\u03C4\u03B7\u03BD \u03BA\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 RES. ", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "\u039F\u03B9 \u03C8\u03AE\u03C6\u03BF\u03B9 \u03C3\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03C4\u03BF $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03BA\u03BF\u03C5\u03BC\u03C0\u03B9\u03AC \u03BC\u03B1\u03BA\u03C1\u03BF\u03B5\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD \u03C3\u03C4\u03B7\u03BD \u03C6\u03CC\u03C1\u03BC\u03B1 \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2 \u03C4\u03C9\u03BD \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03C9\u03BD, \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03C9\u03BD \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03CE\u03BD \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 snudown/markdown.", description: "" }, keyboardNavImageMoveRightDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03B5\u03AF \u03C4\u03B7\u03BD/\u03C4\u03B9\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1/\u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03B4\u03B5\u03BE\u03B9\u03AC.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (\u03B5\u03BE\u03C9\u03B3\u03AE\u03B9\u03BD\u03BF\u03C2)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "\u0386\u03BD\u03BF\u03B9\u03BE\u03B5 \u03C4\u03BF\u03BD \u039C\u03B5\u03B3\u03AC\u03BB\u03BF \u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u039A\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "\u039C\u03AD\u03B3\u03B5\u03B8\u03BF\u03C2 \u0395\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2, \u039A\u03AC\u03B8\u03B5 \u038E\u03C8\u03BF\u03C2", description: "" }, pageNavShowLinkNewTabTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03A3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03C3\u03B5 \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "\u039C\u03B7-\u03B3\u03C1\u03B1\u03BC\u03BC\u03B9\u03BA\u03CC \u03A3\u03C4\u03C5\u03BB \u039A\u03CD\u03BB\u03B9\u03C3\u03B7\u03C2", description: "" }, commentPreviewOpenBigEditorDesc: { message: "\u0386\u03BD\u03BF\u03B9\u03BE\u03B5 \u03C4\u03BF \u03C0\u03B1\u03C1\u03CC\u03BD \u03C0\u03B5\u03B4\u03AF\u03BF markdown \u03C3\u03C4\u03BF\u03BD \u03BC\u03B5\u03B3\u03AC\u03BB\u03BF \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u03BA\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5. (\u039C\u03CC\u03BD\u03BF \u03CC\u03C4\u03B1\u03BD \u03BC\u03AF\u03B1 \u03C6\u03CC\u03C1\u03BC\u03B1 markdown \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C3\u03B5 \u03B5\u03C3\u03C4\u03AF\u03B1\u03C3\u03B7)", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "\u039F\u03C1\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF \u03B2\u03AC\u03B8\u03BF\u03C2 \u03C4\u03C9\u03BD \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD \u03C3\u03B5 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03BC\u03B5 \u03C0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "\u03C8\u03CD\u03BE\u03B7", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03B7\u03BD \u03B1\u03C1\u03C7\u03B9\u03BA\u03AE \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03C4\u03BF\u03C5 \u03C5\u03C0\u03BFreddit.", description: "" }, menuName: { message: "\u039C\u03B5\u03BD\u03BF\u03CD RES", description: "" }, messageMenuDesc: { message: "\u0391\u03B9\u03C9\u03C1\u03AE\u03C3\u03BF\u03C5 \u03BC\u03B5 \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03C4\u03BF \u03B5\u03B9\u03BA\u03BF\u03BD\u03AF\u03B4\u03B9\u03BF \u03B1\u03BB\u03BB\u03B7\u03BB\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1\u03C2 \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B4\u03B5\u03B9\u03C2 \u03B4\u03B9\u03B1\u03C6\u03BF\u03C1\u03B5\u03C4\u03B9\u03BA\u03BF\u03CD\u03C2 \u03C4\u03CD\u03C0\u03BF\u03C5\u03C2 \u03BC\u03B7\u03BD\u03C5\u03BC\u03AC\u03C4\u03C9\u03BD, \u03AE \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03C3\u03C5\u03BD\u03B8\u03AD\u03C3\u03B5\u03B9\u03C2 \u03BD\u03AD\u03BF \u03BC\u03AE\u03BD\u03C5\u03BC\u03B1.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03BC\u03B5\u03BD\u03BF\u03CD \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03C9\u03BD \u03C0\u03C1\u03BF\u03C2 \u03B4\u03B9\u03AC\u03C6\u03BF\u03C1\u03B1 \u03C4\u03BC\u03AE\u03BC\u03B1\u03C4\u03B1 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BB\u03C5reddit \u03CC\u03C4\u03B1\u03BD \u03B1\u03B9\u03C9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03AD\u03BD\u03B1\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03BF\u03BC\u03B1\u03BB\u03AE\u03C2 \u03BC\u03B5\u03C4\u03AC\u03B2\u03B1\u03C3\u03B7\u03C2 \u03CC\u03C4\u03B1\u03BD \u03B1\u03BD\u03BF\u03AF\u03B3\u03BF\u03C5\u03BD \u03AE \u03BA\u03BB\u03B5\u03AF\u03BD\u03BF\u03C5\u03BD \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "\u0391\u03C6\u03BF\u03CD \u03B1\u03C0\u03BF\u03BA\u03C1\u03CD\u03C8\u03B5\u03B9\u03C2 \u03AD\u03BD\u03B1\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF, \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03B5\u03C0\u03AF\u03BB\u03B5\u03BE\u03B5 \u03C4\u03BF\u03BD \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF.", description: "" }, commentStyleDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03B2\u03B5\u03BB\u03C4\u03B9\u03CE\u03C3\u03B5\u03B9\u03C2 \u03B1\u03BD\u03B1\u03B3\u03BD\u03C9\u03C3\u03B9\u03BC\u03CC\u03C4\u03B7\u03C4\u03B1\u03C2 \u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1.", description: "" }, keyboardNavRandomDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03B5 \u03AD\u03BD\u03B1 \u03C4\u03C5\u03C7\u03B1\u03AF\u03BF \u03C5\u03C0\u03BFreddit.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "\u03A3\u03C7\u03BF\u03BB\u03B9\u03B1\u03C3\u03BC\u03CC\u03C2 \u03A9\u03C2", description: "" }, keyboardNavImageSizeUpDesc: { message: "\u0391\u03CD\u03BE\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BC\u03B5\u03B3\u03AD\u03B8\u03BF\u03C5\u03C2 \u03C4\u03B7\u03C2/\u03C4\u03C9\u03BD \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2/\u03B5\u03B9\u03BA\u03CC\u03BD\u03C9\u03BD \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2.", description: "" }, floaterDesc: { message: "\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03C9\u03BD \u03C4\u03BF\u03C5 RES \u03C0\u03BF\u03C5 \u03BC\u03B5\u03C4\u03B1\u03BA\u03B9\u03BD\u03BF\u03CD\u03BD\u03C4\u03B1\u03B9 \u03B5\u03BB\u03B5\u03CD\u03B8\u03B5\u03C1\u03B1 \u03C3\u03C4\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1.", description: "" }, subredditManDesc: { message: "\u03A3\u03BF\u03C5 \u03B5\u03C0\u03B9\u03C4\u03C1\u03AD\u03C8\u03B5\u03B9 \u03BD\u03B1 \u03C0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03CC\u03B6\u03B5\u03B9\u03C2 \u03C4\u03B7\u03BD \u03BA\u03BF\u03C1\u03C5\u03C6\u03B1\u03AF\u03B1 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AE \u03BC\u03B5 \u03C4\u03B9\u03C2 \u03B4\u03B9\u03BA\u03AD\u03C2 \u03C3\u03BF\u03C5 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03B3\u03B9\u03B1 \u03C5\u03C0\u03BFreddit, \u03C3\u03C5\u03BC\u03C0\u03B5\u03C1\u03B9\u03BB\u03B1\u03BC\u03B2\u03B1\u03BD\u03BF\u03BC\u03AD\u03BD\u03C9\u03BD \u03B1\u03BD\u03B1\u03C0\u03C4\u03C5\u03C3\u03C3\u03CC\u03BC\u03B5\u03BD\u03C9\u03BD \u03BC\u03B5\u03BD\u03BF\u03CD \u03B3\u03B9\u03B1 \u03C0\u03BF\u03BB\u03C5reddit \u03BA\u03B1\u03B9 \u03AC\u03BB\u03BB\u03B1.", description: "" }, keyboardNavSavePostDesc: { message: "\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B5 \u03C4\u03BF \u03C0\u03B1\u03C1\u03CC\u03BD \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C3\u03C4\u03BF\u03BD \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CC \u03C3\u03BF\u03C5 \u03C3\u03C4\u03BF reddit. \u0391\u03C5\u03C4\u03CC \u03B5\u03AF\u03BD\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C3\u03B2\u03AC\u03C3\u03B9\u03BC\u03BF \u03B1\u03C0\u03CC \u03BF\u03C0\u03BF\u03C5\u03B4\u03AE\u03C0\u03BF\u03C4\u03B5 \u03AD\u03C7\u03B5\u03B9\u03C2 \u03C3\u03C5\u03BD\u03B4\u03B5\u03B8\u03B5\u03AF, \u03B1\u03BB\u03BB\u03AC \u03B4\u03B5\u03BD \u03B4\u03B9\u03B1\u03C4\u03B7\u03C1\u03B5\u03AF \u03C4\u03BF \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03B1\u03BD \u03C4\u03C1\u03BF\u03C0\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03B7 \u03B4\u03B9\u03B1\u03B3\u03C1\u03B1\u03C6\u03B5\u03AF.", description: "" }, hideChildCommentsNestedTitle: { message: "\u0388\u03BD\u03B8\u03B5\u03C4\u03BF", description: "" }, commentPreviewEnableBigEditorTitle: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u039C\u03B5\u03B3\u03AC\u03BB\u03BF\u03C5 \u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03C4\u03AE \u039A\u03B5\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "\u0391\u03BD\u03B1\u03C3\u03C4\u03B5\u03AF\u03BB\u03B5\u03C4\u03B5 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1.", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "\u0395\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u0395\u03BD\u03B7\u03BC\u03B5\u03C1\u03CE\u03C3\u03B5\u03C9\u03BD Beta", description: "" }, announcementsDesc: { message: "\u0395\u03BD\u03B7\u03BC\u03B5\u03C1\u03CE\u03C3\u03BF\u03C5 \u03B3\u03B9\u03B1 \u03C3\u03B7\u03BC\u03B1\u03BD\u03C4\u03B9\u03BA\u03AC \u03BD\u03AD\u03B1.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "\u03A0\u03C1\u03CC\u03C3\u03B8\u03B5\u03C3\u03B5 \u0393\u03C1\u03B1\u03BC\u03BC\u03AE", description: "" }, keyboardNavReplyDesc: { message: "\u0391\u03C0\u03AC\u03BD\u03C4\u03B7\u03C3\u03B5 \u03C3\u03C4\u03BF \u03C0\u03B1\u03C1\u03CC\u03BD \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF (\u03BC\u03CC\u03BD\u03BF \u03C3\u03B5 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD).", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "\u03B5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE \u03BD\u03AD\u03BF\u03C5 \u03B5\u03AF\u03B4\u03BF\u03C5\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "\u0395\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9\u03C2 RES", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "\u0394\u03B5\u03C2 \u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF (\u03C4\u03BF Shift \u03C4\u03B1 \u03B1\u03BD\u03BF\u03AF\u03B3\u03B5\u03B9 \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B7\u03BD \u03B6\u03C9\u03BD\u03C4\u03B1\u03BD\u03AE \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 markdown \u03B1\u03C0\u03B5\u03C5\u03B8\u03B5\u03AF\u03B1\u03C2 \u03C3\u03C4\u03B7\u03BD \u03C0\u03BB\u03B5\u03C5\u03C1\u03B9\u03BA\u03AE \u03BC\u03C0\u03AC\u03C1\u03B1 \u03BA\u03B1\u03C4\u03AC \u03C4\u03B7\u03BD \u03B5\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "\u03A0\u03C1\u03BF\u03C6\u03AF\u03BB \u03C3\u03B5 \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF\u03BD \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03A3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03C3\u03B5 \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "\u03A0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7 \u03A0\u03BF\u03BB\u03C5reddit", description: "" }, keyboardNavToggleExpandoTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE Expando", description: "" }, showKarmaName: { message: "\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u039A\u03AC\u03C1\u03BC\u03B1", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03A3\u03C5\u03BC\u03C0\u03BB\u03AE\u03C1\u03C9\u03C3\u03B7 \u03A5\u03C0\u03BFreddit", description: "" }, settingsNavName: { message: "\u03A0\u03BB\u03BF\u03AE\u03B3\u03B7\u03C3\u03B7 \u03C3\u03C4\u03B9\u03C2 \u03A1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 RES", description: "" }, contributeName: { message: "\u03A0\u03C1\u03CC\u03C3\u03C6\u03B5\u03C1\u03B5 \u03BA\u03B1\u03B9 \u03A3\u03CD\u03BC\u03B2\u03B1\u03BB\u03BB\u03B5", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B4\u03B9\u03B1\u03BA\u03BF\u03BC\u03B9\u03C3\u03C4\u03AE \u03C0 / \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2 \u03B1\u03C0\u03BF\u03C3\u03C6\u03B1\u03BB\u03BC\u03AC\u03C4\u03C9\u03C3\u03B7\u03C2 \u03B4\u03AF\u03C0\u03BB\u03B1 \u03B1\u03C0\u03CC \u03C4\u03B1 \u03B1\u03B9\u03C9\u03C1\u03BF\u03CD\u03BC\u03B5\u03BD\u03B1 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03B1 \u0391\u03C4\u03B5\u03BB\u03B5\u03AF\u03C9\u03C4\u03BF\u03C5 \u03A1\u03AD\u03BD\u03C4\u03B9\u03C4.", description: "" }, noPartDisableCommentTextareaTitle: { message: "\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03A0\u03BB\u03B1\u03B9\u03C3\u03AF\u03BF\u03C5 \u03A3\u03C5\u03B3\u03B3\u03C1\u03B1\u03C6\u03AE\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "\u039F\u03C1\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF \u03B2\u03AC\u03B8\u03BF\u03C2 \u03C4\u03C9\u03BD \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD \u03C3\u03B5 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03BC\u03B5\u03BD\u03BF\u03CD \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03C9\u03BD \u03B3\u03B9\u03B1 \u03B4\u03B9\u03AC\u03C6\u03BF\u03C1\u03B5\u03C2 \u03B5\u03BD\u03CC\u03C4\u03B7\u03C4\u03B5\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03C1\u03BF\u03C6\u03AF\u03BB \u03C4\u03BF\u03C5 \u03C4\u03C1\u03AD\u03C7\u03BF\u03BD\u03C4\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03CC\u03C4\u03B1\u03BD \u03B1\u03B9\u03C9\u03C1\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03C4\u03BF\u03C5 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03C3\u03C4\u03B7\u03BD \u03C0\u03AC\u03BD\u03C9 \u03B4\u03B5\u03BE\u03B9\u03AC \u03B3\u03C9\u03BD\u03AF\u03B1.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "\u0395\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03B1 \u0395\u03C0\u03B5\u03BE\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1\u03C2", description: "" }, accountSwitcherAccountsDesc: { message: "\u038C\u03C1\u03B9\u03C3\u03B5 \u03C4\u03B1 \u03BF\u03BD\u03CC\u03BC\u03B1\u03C4\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03BA\u03B1\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03BA\u03C9\u03B4\u03B9\u03BA\u03BF\u03CD\u03C2 \u03C0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7\u03C2 \u03C0\u03B1\u03C1\u03B1\u03BA\u03AC\u03C4\u03C9. \u0391\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03CC\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03C4\u03BF\u03C5 RES.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "\u038C\u03C4\u03B1\u03BD \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03BF\u03BD\u03C4\u03B1\u03B9 \u03C4\u03B1 \u03C5\u03C0\u03BFreddit \u03BC\u03B5 \u03C4\u03B7\u03BD \u03C0\u03B1\u03C1\u03B1\u03C0\u03AC\u03BD\u03C9 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE, \u03C0\u03BF\u03CD \u03B8\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03BF\u03BD\u03C4\u03B1\u03B9;", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "\u0396\u03C9\u03BD\u03C4\u03B1\u03BD\u03AE \u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7", description: "" }, hoverOpenDelayDesc: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03BA\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7\u03C2 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03BF\u03CD \u03BA\u03B1\u03B9 \u03B1\u03BD\u03BF\u03AF\u03B3\u03BC\u03B1\u03C4\u03BF\u03C2 \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "\u03A7\u03C1\u03CE\u03BC\u03B1 \u03C4\u03B7\u03C2 \u03BC\u03C0\u03AC\u03C1\u03B1\u03C2 \u03CC\u03C4\u03B1\u03BD \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03BB\u03B5\u03B9\u03C3\u03C4\u03AE.", description: "" }, announcementsName: { message: "\u0391\u03BD\u03B1\u03BA\u03BF\u03B9\u03BD\u03CE\u03C3\u03B5\u03B9\u03C2 RES", description: "" }, betteRedditVideoViewedDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03BF\u03BD \u03B1\u03C1\u03B9\u03B8\u03BC\u03CC \u03C4\u03C9\u03BD \u03B8\u03B5\u03AC\u03C3\u03B5\u03C9\u03BD \u03B5\u03BD\u03CC\u03C2 \u03B2\u03AF\u03BD\u03C4\u03B5\u03BF \u03CC\u03C4\u03B1\u03BD \u03B1\u03C5\u03C4\u03CC \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03C6\u03B9\u03BA\u03C4\u03CC.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03BF \u039A\u03BF\u03C1\u03C5\u03C6\u03B1\u03AF\u03BF \u03A3\u03C7\u03CC\u03BB\u03B9\u03BF", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "reload", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames", description: "" }, orangeredUpdateOtherTabsTitle: { message: "\u0395\u03BD\u03B7\u03BC\u03AD\u03C1\u03C9\u03C3\u03B7 \u03C4\u03C9\u03BD \u03A5\u03C0\u03BF\u03BB\u03BF\u03AF\u03C0\u03C9\u03BD \u039A\u03B1\u03C1\u03C4\u03B5\u03BB\u03CE\u03BD ", description: "" }, notificationsNotificationID: { message: "ID \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1 Snudown", description: "" }, keyboardNavInboxDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03B1 \u03B5\u03B9\u03C3\u03B5\u03C1\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1.", description: "" }, gfycatUseMobileGfycatDesc: { message: "\u03A7\u03C1\u03AE\u03C3\u03B7 gif \u03BA\u03B9\u03BD\u03B7\u03C4\u03CE\u03BD (\u03BC\u03B9\u03BA\u03C1\u03CC\u03C4\u03B5\u03C1\u03B7 \u03B1\u03BD\u03AC\u03BB\u03C5\u03C3\u03B7) \u03B1\u03C0\u03CC \u03C4\u03BF gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u0398\u03AD\u03B1\u03C3\u03B7\u03C2 \u0395\u03B9\u03BA\u03BF\u03BD\u03CE\u03BD", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1 \u03BA\u03B1\u03B9 \u03B5\u03C0\u03B1\u03BD\u03AC\u03BA\u03C4\u03B7\u03C3\u03B7 \u03B1\u03BD\u03C4\u03B9\u03B3\u03C1\u03AC\u03C6\u03C9\u03BD \u03B1\u03C3\u03C6\u03B1\u03BB\u03B5\u03AF\u03B1\u03C2 \u03C4\u03C9\u03BD \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 RES.", description: "" }, showParentDesc: { message: '\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03B1 \u03B3\u03BF\u03BD\u03B5\u03CA\u03BA\u03AC \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03CC\u03C4\u03B1\u03BD \u03B4\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9 \u03C0\u03AC\u03BD\u03C9 \u03B1\u03C0\u03CC \u03C4\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF "\u03B3\u03BF\u03BD\u03AD\u03B1\u03C2" \u03B5\u03BD\u03CC\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5.', description: "" }, keyboardNavImageSizeDownDesc: { message: "\u039C\u03B5\u03AF\u03C9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03BC\u03B5\u03B3\u03AD\u03B8\u03BF\u03C5\u03C2 \u03C4\u03B7\u03C2/\u03C4\u03C9\u03BD \u03B5\u03B9\u03BA\u03CC\u03BD\u03B1\u03C2/\u03B5\u03B9\u03BA\u03CC\u03BD\u03C9\u03BD \u03C3\u03C4\u03B7\u03BD \u03B5\u03C0\u03B9\u03C3\u03B7\u03BC\u03B1\u03C3\u03BC\u03AD\u03BD\u03B7 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C7\u03AE \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7\u03C2.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5 \u03C4\u03BF \u039C\u03AE\u03BA\u03BF\u03C2 \u0395\u03B9\u03C3\u03CC\u03B4\u03BF\u03C5", description: "" }, keyboardNavSaveRESDesc: { message: "\u0391\u03C0\u03BF\u03B8\u03AE\u03BA\u03B5\u03C5\u03C3\u03B5 \u03C4\u03BF \u03C0\u03B1\u03C1\u03CC\u03BD \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03BC\u03B5 \u03C4\u03BF RES. \u0391\u03C5\u03C4\u03CC \u03B4\u03B9\u03B1\u03C4\u03B7\u03C1\u03B5\u03AF \u03C4\u03BF \u03B1\u03C1\u03C7\u03B9\u03BA\u03CC \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF \u03C4\u03BF\u03C5 \u03C3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5, \u03B1\u03BB\u03BB\u03AC \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03CD\u03B5\u03C4\u03B1\u03B9 \u03BC\u03CC\u03BD\u03BF \u03C4\u03BF\u03C0\u03B9\u03BA\u03AC.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "\u0395\u03BC\u03C0\u03B5\u03C5\u03C3\u03BC\u03AD\u03BD\u03BF \u03B1\u03C0\u03CC \u03BC\u03BF\u03BD\u03AC\u03B4\u03B5\u03C2 \u03CC\u03C0\u03C9\u03C2 \u03C4\u03BF River of Reddit \u03BA\u03B1\u03B9 \u03C4\u03BF Auto Pager - \u03C0\u03C1\u03BF\u03C3\u03C6\u03AD\u03C1\u03B5\u03B9 \u03BC\u03B9\u03B1 \u03B1\u03C4\u03B5\u03BB\u03B5\u03AF\u03C9\u03C4\u03B7 \u03C1\u03BF\u03AE \u03B1\u03C0\u03CC \u03C4\u03B7\u03BD \u03BF\u03BC\u03BF\u03C1\u03C6\u03B9\u03AC \u03C4\u03BF\u03C5 reddit.", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "\u039D\u03B1 \u03BC\u03B7\u03BD \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03C4\u03B9\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C0\u03C1\u03BF\u03C6\u03AF\u03BB \u03C7\u03C1\u03B7\u03C3\u03C4\u03CE\u03BD.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "\u03A0\u03B1\u03C1\u03B1\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03B1\u03C1\u03B9\u03B8\u03BC\u03BF\u03CD \u03C4\u03C9\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03C3\u03B5 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BF\u03C5 \u03AD\u03C7\u03B5\u03B9\u03C2 \u03B5\u03C0\u03B9\u03C3\u03BA\u03B5\u03C6\u03B8\u03B5\u03AF \u03B5\u03BD\u03CE \u03B2\u03C1\u03B9\u03C3\u03BA\u03CC\u03C3\u03B1\u03C3\u03C4\u03B1\u03BD \u03C3\u03B5 \u03B1\u03BD\u03CE\u03BD\u03C5\u03BC\u03B7/\u03B9\u03B4\u03B9\u03C9\u03C4\u03B9\u03BA\u03AE \u03C0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "\u03A4\u03BF RES \u03C0\u03B1\u03C1\u03B1\u03C4\u03AE\u03C1\u03B7\u03C3\u03B5 \u03CC\u03C4\u03B9 \u03BA\u03AC\u03B8\u03B5 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03BA\u03C1\u03C5\u03BC\u03BC\u03AD\u03BD\u03B7. \u03A0\u03B1\u03C4\u03AE\u03C3\u03C4\u03B5 \u03C4\u03BF \u03BA\u03AC\u03C4\u03C9\u03B8\u03B9 \u03BA\u03BF\u03C5\u03BC\u03C0\u03AF \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B4\u03B5\u03AF\u03C4\u03B5 \u03C4\u03BF \u03BB\u03CC\u03B3\u03BF \u03C0\u03BF\u03C5 \u03AD\u03C7\u03BF\u03C5\u03BD \u03C6\u03B9\u03BB\u03C4\u03C1\u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF.", description: "" }, backupAndRestoreRestoreTitle: { message: "\u0391\u03BD\u03AC\u03BA\u03C4\u03B7\u03C3\u03B7 \u0391\u03BD\u03C4\u03B9\u03B3\u03C1\u03AC\u03C6\u03BF\u03C5 \u0391\u03C3\u03C6\u03B1\u03BB\u03B5\u03AF\u03B1\u03C2", description: "" }, logoLinkCustom: { message: "\u03A0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03C3\u03BC\u03AD\u03BD\u03BF", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u0391\u03B9\u03C9\u03C1\u03BF\u03CD\u03BC\u03B5\u03BD\u03BF\u03C5 \u03A6\u03B1\u03BA\u03AD\u03BB\u03BF\u03C5", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "\u0395\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03AE \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF \u03CC\u03BB\u03B1 \u03CC\u03C3\u03B1 \u03C3\u03C5\u03BD\u03B4\u03AD\u03BF\u03BD\u03C4\u03B1\u03B9 \u03BC\u03B5 \u03B1\u03C5\u03C4\u03CC\u03BD \u03C4\u03BF\u03BD \u03B5\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7, \u03BA\u03B1\u03B9 \u03C0\u03C1\u03BF\u03B1\u03B9\u03C1\u03B5\u03C4\u03B9\u03BA\u03AC \u03C0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1\u03BD \u03B5\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7 \u03C3\u03C4\u03BF \u03B1\u03BD\u03B1\u03C0\u03C4\u03C5\u03C3\u03C3\u03CC\u03BC\u03B5\u03BD\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD \u03C4\u03BF\u03C5 \u03B3\u03C1\u03B1\u03BD\u03B1\u03B6\u03B9\u03BF\u03CD.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "\u0393\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03C4\u03C9\u03BD \u03BA\u03BF\u03C5\u03BC\u03C0\u03B9\u03CE\u03BD \u03C8\u03AE\u03C6\u03C9\u03BD. \u0391\u03BD \u03AD\u03C7\u03B5\u03C4\u03B5 \u03AE\u03B4\u03B7 \u03B5\u03C0\u03B9\u03C3\u03BA\u03B5\u03C6\u03B8\u03B5\u03AF \u03C4\u03B7 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03BA\u03B1\u03B9 \u03AD\u03C7\u03B5\u03C4\u03B5 \u03C8\u03B7\u03C6\u03AF\u03C3\u03B5\u03B9, \u03BF\u03B9 \u03C0\u03C1\u03BF\u03B7\u03B3\u03BF\u03CD\u03BC\u03B5\u03BD\u03B5\u03C2 \u03C8\u03AE\u03C6\u03BF\u03B9 \u03C3\u03B1\u03C2 \u03B8\u03B1 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B1\u03BA\u03CC\u03BC\u03B1 \u03BF\u03C1\u03B1\u03C4\u03AD\u03C2.", description: "" }, commentStyleContinuityDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03B3\u03C1\u03B1\u03BC\u03BC\u03AD\u03C2 \u03C3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1\u03C2 \u03C3\u03C4\u03B1 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "\u03A3\u03C4\u03B1\u03BC\u03AC\u03C4\u03B1 \u03BD\u03B1 \u03C6\u03B9\u03BB\u03C4\u03C1\u03AC\u03C1\u03B5\u03B9\u03C2 \u03B1\u03C5\u03C4\u03CC \u03C4\u03BF \u03C5\u03C0\u03BFreddit \u03B1\u03C0\u03CC \u03C4\u03BF /r/all \u03BA\u03B1\u03B9 \u03C4\u03BF\u03BD /\u03C4\u03BF\u03BC\u03AD\u03B1/*", description: "" }, dashboardDefaultPostsTitle: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B5\u03C2 \u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2", description: "" }, contextViewFullContextTitle: { message: "\u0394\u03B5\u03C2 \u03C4\u03BF \u03A0\u03BB\u03AE\u03C1\u03B5\u03C2 \u03A0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03AC\u03C3\u03C3\u03B5\u03B9 \u03C4\u03B7\u03BD \u03C3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03BA\u03B1\u03C4\u03AC \u03C4\u03BF \u03B4\u03B9\u03C0\u03BB\u03CC \u03BA\u03BB\u03B9\u03BA \u03C3\u03C4\u03B7\u03BD \u03BA\u03B5\u03C6\u03B1\u03BB\u03AF\u03B4\u03B1.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "\u0399\u03B4\u03B9\u03C9\u03C4\u03B9\u03BA\u03CC\u03C4\u03B7\u03C4\u03B1", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03BF \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B4\u03B5\u03AF\u03BE\u03B5\u03B9 \u03C4\u03BF\u03BD \u03C0\u03C1\u03C9\u03C4\u03CC\u03C4\u03C5\u03C0\u03BF \u03BA\u03CE\u03B4\u03B9\u03BA\u03B1 \u03C3\u03B5 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BA\u03B1\u03B9 \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1, \u03C0\u03C1\u03B9\u03BD \u03C4\u03BF reddit \u03BC\u03BF\u03C1\u03C6\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03B9 \u03C4\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9 \u03C3\u03C4\u03BF \u03B5\u03C0\u03CC\u03BC\u03B5\u03BD\u03BF \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF \u03C3\u03B5 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03BD\u03B7\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "\u03A0\u03B1\u03C1\u03AD\u03C7\u03B5\u03B9 \u03C5\u03C0\u03B7\u03C1\u03B5\u03C3\u03AF\u03B5\u03C2 \u03C0\u03BF\u03C5 \u03B2\u03BF\u03B7\u03B8\u03BF\u03CD\u03BD \u03CC\u03C4\u03B1\u03BD \u03BA\u03AC\u03BD\u03B5\u03B9\u03C2 \u03BC\u03B9\u03B1 \u03B1\u03BD\u03AC\u03C1\u03C4\u03B7\u03C3\u03B7.", description: "" }, hideChildCommentsAutomaticTitle: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03BF", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separator", description: "" }, onboardingUpdateNotificationDescription: { message: "\u039C\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03BC\u03B5\u03B3\u03AC\u03BB\u03B5\u03C2/\u03BC\u03B9\u03BA\u03C1\u03AD\u03C2 \u03B5\u03BD\u03B7\u03BC\u03B5\u03C1\u03CE\u03C3\u03B5\u03B9\u03C2.", description: "" }, hoverFadeDelayDesc: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03BA\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u03C0\u03C1\u03B9\u03BD \u03C4\u03BF \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF \u03B5\u03BE\u03B1\u03C6\u03B1\u03BD\u03B9\u03C3\u03C4\u03B5\u03AF \u03CC\u03C4\u03B1\u03BD \u03B1\u03C0\u03BF\u03BC\u03B1\u03BA\u03C1\u03C5\u03BD\u03B8\u03B5\u03AF \u03C4\u03BF \u03C0\u03BF\u03BD\u03C4\u03AF\u03BA\u03B9.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "\u03A4\u03BF\u03C0\u03BF\u03B8\u03B5\u03C3\u03AF\u03B1 \u03CC\u03C4\u03B1\u03BD \u03BA\u03AC\u03BD\u03B5\u03B9\u03C2 \u03BA\u03BB\u03B9\u03BA \u03C3\u03C4\u03BF \u03BB\u03BF\u03B3\u03CC\u03C4\u03C5\u03C0\u03BF \u03C4\u03BF\u03C5 Reddit.", description: "" }, settingsConsoleName: { message: "\u039A\u03BF\u03BD\u03C3\u03CC\u03BB\u03B1 \u03A1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "\u0392\u03AC\u03B8\u03BF\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD \u03C3\u03B5 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03B1 \u03C5\u03C0\u03BFreddit.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C4\u03B1 \u03BC\u03B7\u03BD\u03CD\u03BC\u03B1\u03C4\u03B1 \u03B4\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03B7 \u03BC\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03C4\u03B1\u03BE\u03B9\u03BD\u03CC\u03BC\u03B7\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03BD\u03AD\u03B1 \u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03AC \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03B1.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "\u0391\u03C6\u03BF\u03CD \u03B1\u03BB\u03BB\u03AC\u03BE\u03B5\u03B9\u03C2 \u03BC\u03B5\u03C4\u03B1\u03BE\u03CD \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CE\u03BD, \u03B5\u03C0\u03B1\u03BD\u03B1\u03C6\u03CC\u03C1\u03C4\u03C9\u03C3\u03B5 \u03C4\u03B9\u03C2 \u03AC\u03BB\u03BB\u03B5\u03C2 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B5\u03C2.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "\u039C\u03AD\u03B8\u03BF\u03B4\u03BF\u03C2 \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7\u03C2 \u03B3\u03B9\u03B1 \u03B5\u03BD\u03B7\u03BC\u03B5\u03C1\u03CE\u03C3\u03B5\u03B9\u03C2 \u03B5\u03C0\u03B9\u03B4\u03B9\u03BF\u03C1\u03B8\u03CE\u03C3\u03B5\u03C9\u03BD.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "\u03B5\u03BD\u03B5\u03C1\u03B3\u03CC", description: "" }, nightModeColoredLinksTitle: { message: "\u03A7\u03C1\u03C9\u03BC\u03B1\u03C4\u03B9\u03C3\u03BC\u03AD\u03BD\u03BF\u03B9 \u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9", description: "" }, modhelperDesc: { message: "\u0392\u03BF\u03B7\u03B8\u03AC\u03B5\u03B9 \u03C4\u03BF\u03C5\u03C2 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BD\u03B9\u03C3\u03C4\u03AD\u03C2 \u03BC\u03B5 \u03C3\u03C5\u03BC\u03B2\u03BF\u03C5\u03BB\u03AD\u03C2 \u03BA\u03B1\u03B9 \u03BA\u03CC\u03BB\u03C0\u03B1 \u03B3\u03B9\u03B1 \u03BA\u03B1\u03BB\u03AE \u03C3\u03C5\u03BD\u03B5\u03C1\u03B3\u03B1\u03C3\u03AF\u03B1 \u03BC\u03B5 \u03C4\u03BF RES.", description: "" }, quickMessageName: { message: "\u0393\u03C1\u03AE\u03B3\u03BF\u03C1\u03BF \u039C\u03AE\u03BD\u03C5\u03BC\u03B1", description: "" }, noPartEscapeNPDesc: { message: "\u0391\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u03C4\u03B7\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 \u039C\u03B7 \u03A3\u03C5\u03BC\u03BC\u03B5\u03C4\u03BF\u03C7\u03AE\u03C2 \u03CC\u03C4\u03B1\u03BD \u03C6\u03B5\u03CD\u03B3\u03B5\u03C4\u03B5 \u03B1\u03C0\u03CC \u03BC\u03AF\u03B1 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u039C\u03B7 \u03A3\u03C5\u03BC\u03BC\u03B5\u03C4\u03BF\u03C7\u03AE\u03C2", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "\u0395\u03C0\u03B1\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03BF\u03CD", description: "" }, userHighlightDesc: { message: "\u03A5\u03C0\u03B5\u03C1\u03C4\u03BF\u03BD\u03AF\u03B6\u03B5\u03B9 \u03BA\u03AC\u03C0\u03BF\u03B9\u03BF\u03C5\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B5\u03C2 \u03C3\u03B5 \u03BD\u03AE\u03BC\u03B1\u03C4\u03B1 \u03C3\u03C5\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2: \u0391\u03C1\u03C7\u03B9\u03BA\u03CC\u03C2 \u0391\u03C0\u03BF\u03C3\u03C4\u03BF\u03BB\u03AD\u03B1\u03C2, \u0394\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AD\u03C2, \u03A6\u03AF\u03BB\u03BF\u03B9, \u03A3\u03C5\u03BD\u03C4\u03BF\u03BD\u03B9\u03C3\u03C4\u03AD\u03C2. \u03A3\u03C5\u03BD\u03B5\u03B9\u03C3\u03C6\u03BF\u03C1\u03AC \u03B1\u03C0\u03CC \u03C4\u03BF\u03BD MrDerk", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "\u039A\u03CD\u03BB\u03B9\u03C3\u03B7 \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 \u03C3\u03C4\u03B7\u03BD \u03BA\u03BF\u03C1\u03C5\u03C6\u03AE \u03C4\u03BF\u03C5 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5 \u03CC\u03C4\u03B1\u03BD \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B5\u03AF\u03C4\u03B1\u03B9 \u03C4\u03BF \u03BA\u03BF\u03C5\u03BC\u03C0\u03AF expando (\u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03C4\u03B7\u03C1\u03AE\u03C3\u03B5\u03B9 \u03C4\u03B9\u03C2 \u03B5\u03B9\u03BA\u03CC\u03BD\u03B5\u03C2 \u03BA.\u03B1. \u03C3\u03B5 \u03B8\u03AD\u03B1\u03C3\u03B7).", description: "" }, profileNavigatorFadeDelayDesc: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7, \u03C3\u03B5 \u03C7\u03B9\u03BB\u03B9\u03BF\u03C3\u03C4\u03AC \u03C4\u03BF\u03C5 \u03B4\u03B5\u03C5\u03C4\u03B5\u03C1\u03BF\u03BB\u03AD\u03C0\u03C4\u03BF\u03C5 \u03C0\u03C1\u03B9\u03BD \u03B5\u03BE\u03B1\u03C6\u03B1\u03BD\u03B9\u03C3\u03C4\u03B5\u03AF \u03B7 \u03C5\u03C0\u03CC\u03BC\u03BD\u03B7\u03C3\u03B7 \u03BC\u03B5 \u03C4\u03B7\u03BD \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C0\u03BF\u03BD\u03C4\u03B9\u03BA\u03B9\u03BF\u03CD.", description: "" }, userInfoAddRemoveFriends: { message: "$1 \u03C6\u03AF\u03BB\u03BF\u03B9", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "\u0391\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B7 \u03CC\u03BB\u03C9\u03BD \u03C4\u03C9\u03BD \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C9\u03BD \u03BA\u03B1\u03B9 \u03C4\u03C9\u03BD \u03B1\u03B9\u03C9\u03C1\u03BF\u03CD\u03BC\u03B5\u03BD\u03C9\u03BD \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03C9\u03BD", description: "" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03B5\u03BD\u03CC\u03C2 \u03BA\u03BF\u03C5\u03BC\u03C0\u03B9\u03BF\u03CD \u03AD\u03BD\u03B1\u03C1\u03BE\u03B7/\u03C0\u03B1\u03CD\u03C3\u03B7 \u03B3\u03B9\u03B1 \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03BF \u03C6\u03CC\u03C1\u03C4\u03C9\u03BC\u03B1 \u03C3\u03C4\u03B7\u03BD \u03C0\u03AC\u03BD\u03C9 \u03B4\u03B5\u03BE\u03B9\u03AC \u03B3\u03C9\u03BD\u03AF\u03B1.", description: "" }, messageMenuName: { message: "\u039C\u03B5\u03BD\u03BF\u03CD \u039C\u03B7\u03BD\u03C5\u03BC\u03AC\u03C4\u03C9\u03BD", description: "" }, aboutOptionsSuggestions: { message: "\u0391\u03BD \u03AD\u03C7\u03B5\u03B9\u03C2 \u03BC\u03B9\u03B1 \u03B9\u03B4\u03AD\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03BF RES \u03AE \u03B8\u03B5\u03C2 \u03BD\u03B1 \u03C3\u03C5\u03B6\u03B7\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2 \u03BC\u03B5 \u03AC\u03BB\u03BB\u03BF\u03C5\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B5\u03C2, \u03C0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03BF /r/Enhancement.", description: "" }, userbarHiderName: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u0393\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "\u038C\u03C4\u03B1\u03BD \u03C0\u03B7\u03B4\u03AC\u03C2 \u03C3\u03B5 \u03BC\u03B9\u03B1 \u03BA\u03B1\u03C4\u03B1\u03C7\u03CE\u03C1\u03B7\u03C3\u03B7 (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent \u03BA\u03B1\u03B9 moveDownParentSibling), \u03C0\u03CC\u03C4\u03B5 \u03BA\u03B1\u03B9 \u03C0\u03CE\u03C2 \u03B8\u03B1 \u03C0\u03C1\u03AD\u03C0\u03B5\u03B9 \u03BD\u03B1 \u03BA\u03C5\u03BB\u03AF\u03C3\u03B5\u03B9 \u03C4\u03BF RES \u03C4\u03BF \u03C0\u03B1\u03C1\u03AC\u03B8\u03C5\u03C1\u03BF;", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "\u0394\u03B9\u03B1\u03C4\u03AE\u03C1\u03B7\u03C3\u03B5 \u03C4\u03B7 \u03C1\u03BF\u03AE \u03C3\u03C4\u03B9\u03C2 \u03B9\u03B4\u03B9\u03B1\u03AF\u03C4\u03B5\u03C1\u03B1 \u03BC\u03B5\u03B3\u03AC\u03BB\u03B5\u03C2 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "\u038C\u03BB\u03B5\u03C2 \u03BF\u03B9 \u03C0\u03C1\u03BF\u03C3\u03C9\u03C1\u03B9\u03BD\u03AD\u03C2 \u03BC\u03BD\u03AE\u03BC\u03B5\u03C2 \u03B4\u03B9\u03B5\u03B3\u03C1\u03AC\u03C6\u03B7\u03C3\u03B1\u03BD.", description: "" }, localDateName: { message: "\u03A4\u03BF\u03C0\u03B9\u03BA\u03AE \u0397\u03BC\u03B5\u03C1\u03BF\u03BC\u03B7\u03BD\u03AF\u03B1", description: "" }, commentStyleCommentRoundedDesc: { message: "\u03A3\u03C4\u03C1\u03BF\u03B3\u03B3\u03C5\u03BB\u03B5\u03BC\u03AD\u03BD\u03B5\u03C2 \u03B3\u03C9\u03BD\u03AF\u03B5\u03C2 \u03C4\u03C9\u03BD \u03BA\u03BF\u03C5\u03C4\u03B9\u03CE\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "\u03A7\u03C1\u03AE\u03C3\u03B7 \u03C4\u03B7\u03C2 \u039B\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2 Go", description: "" }, messageMenuLabel: { message: "\u03C4\u03B1\u03BC\u03C0\u03AD\u03BB\u03B1", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B5 \u03C4\u03BF \u03A0\u03B1\u03C1\u03CC\u03BD \u038C\u03BD\u03BF\u03BC\u03B1 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "\u03C6\u03AF\u03BB\u03C4\u03C1\u03BF", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03A3\u03C5\u03BD\u03CC\u03BB\u03BF\u03C5 \u03C4\u03C9\u03BD \u039C\u03B7 \u0391\u03BD\u03B1\u03B3\u03BD\u03C9\u03C3\u03BC\u03AD\u03BD\u03C9\u03BD \u03C3\u03C4\u03BF\u03BD \u03A4\u03AF\u03C4\u03BB\u03BF \u03C4\u03B7\u03C2 \u03A3\u03B5\u03BB\u03AF\u03B4\u03B1\u03C2", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03A0\u03BB\u03B5\u03C5\u03C1\u03B9\u03BA\u03AE\u03C2 \u039C\u03C0\u03AC\u03C1\u03B1\u03C2", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "\u0394\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03B5\u03AF \u03BC\u03AF\u03B1 \u03BC\u03C0\u03AC\u03C1\u03B1 \u03C3\u03C4\u03B7\u03BD \u03B1\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE \u03C0\u03BB\u03B5\u03C5\u03C1\u03AC \u03BA\u03AC\u03B8\u03B5 \u03C3\u03C7\u03BF\u03BB\u03AF\u03BF\u03C5. \u038C\u03C4\u03B1\u03BD \u03B3\u03AF\u03BD\u03B5\u03C4\u03B1\u03B9 \u03BA\u03BB\u03B9\u03BA \u03C3\u03C4\u03B7\u03BD \u03BC\u03C0\u03AC\u03C1\u03B1, \u03C3\u03C5\u03BC\u03C0\u03C4\u03CD\u03C3\u03C3\u03B5\u03C4\u03B1\u03B9 \u03C4\u03BF \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "\u0391\u03BA\u03BF\u03BB\u03BF\u03CD\u03B8\u03B7\u03C3\u03B5 \u03C4\u03BF \u03A5\u03C0\u03BFreddit \u03C3\u03B5 \u039D\u03AD\u03B1 \u039A\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1", description: "" }, commentToolsUserAutoCompleteDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03BF \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03BF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7\u03C2 \u03C3\u03C5\u03BC\u03C0\u03BB\u03AE\u03C1\u03C9\u03C3\u03B7\u03C2 \u03CC\u03C4\u03B1\u03BD \u03C0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03BF\u03B3\u03B5\u03AF\u03C2 \u03C3\u03B5 \u03B1\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2, \u03C3\u03C7\u03CC\u03BB\u03B9\u03B1 \u03BA\u03B1\u03B9 \u03B1\u03C0\u03B1\u03BD\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "\u03A0\u03C1\u03BF\u03C3\u03B8\u03AD\u03C4\u03B5\u03B9 \u03AD\u03BD\u03B1\u03BD \u03B3\u03C1\u03AE\u03B3\u03BF\u03C1\u03BF \u03B4\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B7 on/off \u03B3\u03B9\u03B1 \u03B1\u03BA\u03B1\u03C4\u03AC\u03BB\u03BB\u03B7\u03BB\u03B1 \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03B1 \u03C3\u03C4\u03BF \u03BC\u03B5\u03BD\u03BF\u03CD \u03B3\u03C1\u03B1\u03BD\u03B1\u03B6\u03B9\u03BF\u03CD.", description: "" }, subredditInfoSubscribe: { message: "\u03C3\u03C5\u03BD\u03B4\u03C1\u03BF\u03BC\u03AE", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "\u03A8\u03AE\u03C6\u03B9\u03C3\u03B5 \u03BA\u03AC\u03C4\u03C9 \u03C4\u03BF\u03BD \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF \u03AE \u03C3\u03C7\u03CC\u03BB\u03B9\u03BF (\u03AE \u03B1\u03C6\u03B1\u03AF\u03C1\u03B5\u03C3\u03B5 \u03C4\u03B7\u03BD \u03BA\u03AC\u03C4\u03C9 \u03C8\u03AE\u03C6\u03BF).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "\u03A4\u03BF Ctrl+Enter \u039A\u03B1\u03C4\u03B1\u03C7\u03C9\u03C1\u03B5\u03AF \u03A3\u03C7\u03CC\u03BB\u03B9\u03B1", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7\u03C2 \u03A3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD, \u039A\u03BF\u03C5\u03BC\u03C0\u03AF \u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7\u03C2 \u0391\u03C1\u03B9\u03C3\u03C4\u03B5\u03C1\u03AE\u03C2 \u0386\u03BA\u03C1\u03B7\u03C2", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "\u03A4\u03BF Ctrl+Enter \u039A\u03B1\u03C4\u03B1\u03C7\u03C9\u03C1\u03B5\u03AF \u0391\u03BD\u03B1\u03C1\u03C4\u03AE\u03C3\u03B5\u03B9\u03C2", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "\u03A4\u03BF \u03C5\u03C0\u03BFreddit \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03B8\u03B7\u03BA\u03B5:", description: "" }, multiredditNavbarLabel: { message: "\u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "\u03A4\u03BF $1 \u03B5\u03C0\u03B1\u03BD\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03AE\u03B8\u03B7\u03BA\u03B5. \u0391\u03C5\u03C4\u03CC \u03C4\u03BF \u03C7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CC \u03B4\u03B5\u03BD \u03B8\u03B1 \u03C0\u03B5\u03C1\u03B9\u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF, \u03BF\u03CD\u03C4\u03B5 \u03B8\u03B1 \u03B1\u03C0\u03B5\u03BD\u03B5\u03C1\u03B3\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF \u03B1\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B1 \u03BE\u03B1\u03BD\u03AC.", description: "" }, messageMenuHoverDelayTitle: { message: "\u039A\u03B1\u03B8\u03C5\u03C3\u03C4\u03AD\u03C1\u03B7\u03C3\u03B7 \u0391\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7\u03C2", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03C4\u03C9\u03BD \u03C3\u03B7\u03BC\u03B5\u03B9\u03CE\u03C3\u03B5\u03C9\u03BD \u03B1\u03C0\u03BF\u03BA\u03BB\u03B5\u03B9\u03C3\u03BC\u03BF\u03CD.", description: "" }, usersCategory: { message: "\u03A7\u03C1\u03AE\u03C3\u03C4\u03B5\u03C2", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "\u03A7\u03C1\u03C9\u03BC\u03AC\u03C4\u03B9\u03C3\u03B5 \u03C4\u03BF\u03C5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5\u03C2 \u03BC\u03C0\u03BB\u03B5 \u03BA\u03B1\u03B9 \u03BC\u03BF\u03B2.", description: "" }, subredditInfoSubredditNotFound: { message: "\u03A4\u03BF \u03C5\u03C0\u03BFreddit \u03B4\u03B5\u03BD \u03B2\u03C1\u03AD\u03B8\u03B7\u03BA\u03B5.", description: "" }, logoLinkCustomDestinationDesc: { message: "\u0391\u03BD \u03C4\u03BF redditLogoDestination \u03AD\u03C7\u03B5\u03B9 \u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03C9\u03C2 \u03C0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03C3\u03BC\u03AD\u03BD\u03BF, \u03BF \u03C3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03C2 \u03B5\u03AF\u03BD\u03B1\u03B9 \u03B5\u03B4\u03CE.", description: "" }, resTipsName: { message: "\u03A3\u03C5\u03BC\u03B2\u03BF\u03C5\u03BB\u03AD\u03C2 \u03BA\u03B1\u03B9 \u039A\u03CC\u03BB\u03C0\u03B1 RES", description: "" }, keyboardNavToggleCmdLineTitle: { message: "\u0395\u03BD\u03B1\u03BB\u03BB\u03B1\u03B3\u03AE \u0393\u03C1\u03B1\u03BC\u03BC\u03AE\u03C2 \u0395\u03BD\u03C4\u03BF\u03BB\u03CE\u03BD", description: "" }, contextName: { message: "\u03A0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: '\u0391\u03C5\u03C4\u03CC \u03B8\u03B1 "\u03C3\u03BA\u03BF\u03C4\u03CE\u03C3\u03B5\u03B9" \u03CC\u03BB\u03B5\u03C2 \u03C4\u03B9\u03C2 \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03B9\u03C2 \u03BA\u03B1\u03B9 \u03C4\u03B1 \u03B1\u03C0\u03BF\u03B8\u03B7\u03BA\u03B5\u03C5\u03BC\u03AD\u03BD\u03B1 \u03B4\u03B5\u03B4\u03BF\u03BC\u03AD\u03BD\u03B1 \u03C3\u03BF\u03C5. \u0391\u03BD \u03B5\u03AF\u03C3\u03B1\u03B9 \u03C3\u03AF\u03B3\u03BF\u03C5\u03C1\u03BF\u03C2 \u03C0\u03BB\u03B7\u03BA\u03C4\u03C1\u03BF\u03BB\u03CC\u03B3\u03B7\u03C3\u03B5 "$1".', description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "\u038F\u03C1\u03B5\u03C2 \u03A0\u03B1\u03C1\u03AC\u03BA\u03B1\u03BC\u03C8\u03B7\u03C2 \u039D\u03C5\u03C7\u03C4\u03B5\u03C1\u03B9\u03BD\u03AE\u03C2 \u039B\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B1\u03C2", description: "" }, userInfoUserSuspended: { message: "\u039F \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2 \u03AD\u03C7\u03B5\u03B9 \u03B1\u03BD\u03B1\u03C3\u03C4\u03B1\u03BB\u03B5\u03AF.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "\u03A3\u03CD\u03BD\u03B4\u03B5\u03C3\u03BC\u03BF\u03B9", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "\u0391\u03C0\u03BF\u03BA\u03C1\u03CD\u03C0\u03C4\u03B5\u03B9 \u03C4\u03BF \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03BA\u03BF\u03C5\u03BC\u03C0\u03AF ([-]) \u03C3\u03CD\u03BC\u03C0\u03C4\u03C5\u03BE\u03B7\u03C2 \u03C4\u03C9\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03C3\u03C4\u03B7\u03BD \u03BA\u03BF\u03C1\u03C5\u03C6\u03AE \u03C4\u03B7\u03C2 \u03BB\u03AF\u03C3\u03C4\u03B1\u03C2 (\u03C3\u03B5 \u03C3\u03B5\u03BB\u03AF\u03B4\u03B5\u03C2 \u03C3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03C9\u03BD)", description: "" }, contextDefaultContextTitle: { message: "\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03A0\u03BB\u03B1\u03AF\u03C3\u03B9\u03BF", description: "" }, userTaggerTagUserAs: { message: "\u03C0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 $1 \u03C9\u03C2: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03B1\u03B4\u03B5\u03C1\u03C6\u03BF\u03CD \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9", description: "" }, customTogglesName: { message: "\u03A0\u03C1\u03BF\u03C3\u03B1\u03C1\u03BC\u03BF\u03C3\u03BC\u03AD\u03BD\u03BF\u03B9 \u0394\u03B9\u03B1\u03BA\u03CC\u03C0\u03C4\u03B5\u03C2", description: "" }, pageNavShowLinkTitle: { message: "\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7 \u03A3\u03C5\u03BD\u03B4\u03AD\u03C3\u03BC\u03BF\u03C5", description: "" }, keyboardNavProfileNewTabDesc: { message: "\u03A0\u03AE\u03B3\u03B1\u03B9\u03BD\u03B5 \u03C3\u03C4\u03BF \u03C0\u03C1\u03BF\u03C6\u03AF\u03BB \u03C3\u03B5 \u03BD\u03AD\u03B1 \u03BA\u03B1\u03C1\u03C4\u03AD\u03BB\u03B1.", description: "" }, aboutCategory: { message: "\u03A3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03C4\u03BF RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: '\u039F \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF\u03C2 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7\u03C2 \u03AE \u03C5\u03C0\u03BFreddit \u03C0\u03BF\u03C5 \u03B5\u03C0\u03B9\u03BB\u03AD\u03B3\u03B5\u03C4\u03B1\u03B9 \u03CC\u03C4\u03B1\u03BD \u03B4\u03B5\u03BD \u03AD\u03C7\u03B5\u03B9 \u03BA\u03B1\u03B8\u03BF\u03C1\u03B9\u03C3\u03C4\u03B5\u03AF \u03C4\u03BF \u03C0\u03B5\u03B4\u03AF\u03BF "\u03B1\u03C0\u03CC".\n\u0395\u03C0\u03B1\u03BD\u03B1\u03C6\u03BF\u03C1\u03AC \u03C0\u03C1\u03BF\u03C2 \u03C4\u03BF\u03BD \u03C0\u03B1\u03C1\u03CC\u03BD\u03C4\u03B1 \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7 \u03B1\u03BD \u03B7 \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03B5\u03AF \u03BD\u03B1 \u03C7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03B9\u03B7\u03B8\u03B5\u03AF (\u03C0.\u03C7. \u03CC\u03C4\u03B1\u03BD \u03B4\u03B5\u03BD \u03B5\u03AF\u03C3\u03C4\u03B5 \u03BF \u03B4\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE\u03C2 \u03C4\u03BF\u03C5 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03BF\u03C5 \u03C5\u03C0\u03BFreddit ).', description: "" }, userInfoGiftRedditGold: { message: "\u0394\u03CE\u03C1\u03B9\u03C3\u03B5 \u03A7\u03C1\u03C5\u03C3\u03CC \u03C4\u03BF\u03C5 Reddit", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "\u0395\u03C0\u03B1\u03BD\u03AC\u03BA\u03C4\u03B7\u03C3\u03B5 \u03AD\u03BD\u03B1 \u03B1\u03BD\u03C4\u03AF\u03B3\u03C1\u03B1\u03C6\u03BF \u03B1\u03C3\u03C6\u03B1\u03BB\u03B5\u03AF\u03B1\u03C2 \u03C4\u03C9\u03BD \u03C1\u03C5\u03B8\u03BC\u03AF\u03C3\u03B5\u03C9\u03BD \u03C4\u03BF\u03C5 RES. ", description: "" }, commentPreviewEnableForCommentsDesc: { message: "\u0395\u03BC\u03C6\u03B1\u03BD\u03AF\u03B6\u03B5\u03B9 \u03C4\u03B7\u03BD \u03C0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7 \u03C4\u03C9\u03BD \u03C3\u03C7\u03BF\u03BB\u03AF\u03C9\u03BD.", description: "" }, spamButtonName: { message: "\u039A\u03BF\u03C5\u03BC\u03C0\u03AF \u0391\u03BD\u03B5\u03C0\u03B9\u03B8\u03CD\u03BC\u03B7\u03C4\u03C9\u03BD", description: "" }, hoverInstancesTitle: { message: "\u03A5\u03C0\u03BF\u03C3\u03C4\u03AC\u03C3\u03B5\u03B9\u03C2", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "\u039A\u03AC\u03C0\u03BF\u03B9\u03B1 \u03C7\u03C1\u03CE\u03BC\u03B1\u03C4\u03B1 \u03B1\u03B9\u03CE\u03C1\u03B7\u03C3\u03B7\u03C2 \u03B4\u03B5\u03BD \u03BC\u03C0\u03BF\u03C1\u03BF\u03CD\u03C3\u03B1\u03BD \u03BD\u03B1 \u03C0\u03B1\u03C1\u03B1\u03C7\u03B8\u03BF\u03CD\u03BD. \u0391\u03C5\u03C4\u03CC \u03C3\u03C5\u03BD\u03AD\u03B2\u03B7 \u03C0\u03B9\u03B8\u03B1\u03BD\u03CC\u03BD \u03BB\u03CC\u03B3\u03C9 \u03C4\u03B7\u03C2 \u03C7\u03C1\u03AE\u03C3\u03B7\u03C2 \u03C7\u03C1\u03C9\u03BC\u03AC\u03C4\u03C9\u03BD \u03C3\u03B5 \u03C3\u03C5\u03B3\u03BA\u03B5\u03BA\u03C1\u03B9\u03BC\u03AD\u03BD\u03BF \u03BC\u03BF\u03C1\u03C6\u03CC\u03C4\u03C5\u03C0\u03BF.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "\u03A7\u03C1\u03B7\u03C3\u03B9\u03BC\u03BF\u03C0\u03BF\u03AF\u03B7\u03C3\u03B5 \u03C3\u03C5\u03BD\u03C4\u03BF\u03BC\u03B5\u03CD\u03C3\u03B5\u03B9\u03C2 \u03C0\u03BB\u03AE\u03BA\u03C4\u03C1\u03C9\u03BD \u03B3\u03B9\u03B1 \u03BD\u03B1 \u03B5\u03C6\u03B1\u03C1\u03BC\u03CC\u03C3\u03B5\u03B9\u03C2 \u03C3\u03C4\u03C5\u03BB \u03C3\u03C4\u03BF \u03B5\u03C0\u03B9\u03BB\u03B5\u03B3\u03BC\u03AD\u03BD\u03BF \u03BA\u03B5\u03AF\u03BC\u03B5\u03BD\u03BF.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "\u0391\u03C5\u03C4\u03CC\u03BC\u03B1\u03C4\u03B7 \u03B1\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u03C4\u03C9\u03BD \u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03CE\u03BD \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2 \u03BA\u03B1\u03B9 \u03C0\u03C1\u03BF\u03C4\u03AC\u03C3\u03B5\u03C9\u03BD \u03C3\u03C4\u03B7\u03BD \u03C3\u03B5\u03BB\u03AF\u03B4\u03B1 \u03B1\u03BD\u03B1\u03B6\u03AE\u03C4\u03B7\u03C3\u03B7\u03C2.", description: "" }, notificationsDesc: { message: "\u0394\u03B9\u03B1\u03C7\u03B5\u03AF\u03C1\u03B9\u03C3\u03B7 \u03C4\u03C9\u03BD \u03B1\u03BD\u03B1\u03B4\u03C5\u03CC\u03BC\u03B5\u03BD\u03C9\u03BD \u03B5\u03B9\u03B4\u03BF\u03C0\u03BF\u03B9\u03AE\u03C3\u03B5\u03C9\u03BD \u03B3\u03B9\u03B1 \u03C4\u03B9\u03C2 \u03BB\u03B5\u03B9\u03C4\u03BF\u03C5\u03C1\u03B3\u03AF\u03B5\u03C2 \u03C4\u03BF\u03C5 RES.", description: "" }, logoLinkDashboard: { message: "\u03A0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2 \u0395\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD", description: "" }, dashboardDashboardShortcutDesc: { message: "\u0394\u03B5\u03AF\u03BE\u03B5 \u03C4\u03B7 \u03C3\u03C5\u03BD\u03C4\u03CC\u03BC\u03B5\u03C5\u03C3\u03B7 +\u03C0\u03AF\u03BD\u03B1\u03BA\u03B1\u03C2 \u03B5\u03C1\u03B3\u03B1\u03BB\u03B5\u03AF\u03C9\u03BD \u03C3\u03C4\u03B7\u03BD \u03C0\u03BB\u03B5\u03C5\u03C1\u03B9\u03BA\u03AE \u03BC\u03C0\u03AC\u03C1\u03B1 \u03B3\u03B9\u03B1 \u03B5\u03CD\u03BA\u03BF\u03BB\u03B7 \u03C0\u03C1\u03BF\u03C3\u03B8\u03AE\u03BA\u03B7 \u03B3\u03C1\u03B1\u03C6\u03B9\u03BA\u03CE\u03BD \u03C3\u03C4\u03BF\u03B9\u03C7\u03B5\u03AF\u03C9\u03BD.", description: "" }, userInfoName: { message: "\u03A0\u03BB\u03B7\u03C1\u03BF\u03C6\u03BF\u03C1\u03AF\u03B5\u03C2 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "\u03A0\u03BB\u03AC\u03C4\u03BF\u03C2 \u03C4\u03B7\u03C2 \u03BC\u03C0\u03AC\u03C1\u03B1\u03C2.", description: "" }, filteRedditDomainsTitle: { message: "\u03A4\u03BF\u03BC\u03B5\u03AF\u03C2", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "\u03A3\u03C5\u03B3\u03C7\u03C9\u03C1\u03B7\u03BC\u03AD\u03BD\u03BF \u03A7\u03B1\u03C1\u03B1\u03BA\u03C4\u03B7\u03C1\u03B9\u03C3\u03C4\u03B9\u03BA\u03CC", description: "" }, orangeredHideModMailTitle: { message: "\u0391\u03C0\u03CC\u03BA\u03C1\u03C5\u03C8\u03B7 \u0391\u03BB\u03BB\u03B7\u03BB\u03BF\u03B3\u03C1\u03B1\u03C6\u03AF\u03B1\u03C2 \u0394\u03B9\u03B1\u03C7\u03B5\u03B9\u03C1\u03B9\u03C3\u03C4\u03AE", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "\u0386\u03BD\u03BF\u03B9\u03B3\u03BC\u03B1 \u03C3\u03C4\u03B7\u03BD \u0395\u03C0\u03B9\u03C3\u03AE\u03BC\u03B1\u03BD\u03C3\u03B7 \u03A7\u03C1\u03AE\u03C3\u03C4\u03B7", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "\u0394\u03B9\u03AC\u03B2\u03B1\u03C3\u03B5 \u03C3\u03C7\u03B5\u03C4\u03B9\u03BA\u03AC \u03BC\u03B5 \u03C4\u03B7\u03BD \u03C0\u03BF\u03BB\u03B9\u03C4\u03B9\u03BA\u03AE \u03B1\u03C0\u03BF\u03C1\u03C1\u03AE\u03C4\u03BF\u03C5 \u03C4\u03BF\u03C5 RES.", description: "" }, commentStyleContinuityTitle: { message: "\u03A3\u03C5\u03BD\u03AD\u03C7\u03B5\u03B9\u03B1", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "\u0394\u03B5\u03AF\u03C7\u03BD\u03B5\u03B9 \u03BB\u03B5\u03C0\u03C4\u03BF\u03BC\u03AD\u03C1\u03B5\u03B9\u03B5\u03C2 \u03BA\u03AC\u03B8\u03B5 \u03BB\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03BF\u03CD \u03C3\u03C4\u03BF\u03BD \u0395\u03BD\u03B1\u03BB\u03BB\u03AC\u03BA\u03C4\u03B7 \u039B\u03BF\u03B3\u03B1\u03C1\u03B9\u03B1\u03C3\u03BC\u03CE\u03BD, \u03CC\u03C0\u03C9\u03C2 \u03C4\u03BF \u03BA\u03AC\u03C1\u03BC\u03B1 \u03BA\u03B1\u03B9 \u03BA\u03B1\u03C4\u03AC\u03C3\u03C4\u03B1\u03C3\u03B7 \u03C4\u03BF\u03C5 \u03C7\u03C1\u03C5\u03C3\u03BF\u03CD.", description: "" }, browsingCategory: { message: "\u03A0\u03B5\u03C1\u03B9\u03AE\u03B3\u03B7\u03C3\u03B7", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "\u0395\u03AF\u03C3\u03B1\u03B9 \u03C3\u03AF\u03B3\u03BF\u03C5\u03C1\u03BF\u03C2 \u03CC\u03C4\u03B9 \u03B8\u03AD\u03BB\u03B5\u03B9\u03C2 \u03BD\u03B1 \u03B4\u03B9\u03B1\u03B3\u03C1\u03AC\u03C8\u03B5\u03B9\u03C2 \u03C4\u03B7\u03BD \u03B5\u03C4\u03B9\u03BA\u03AD\u03C4\u03B1 \u03B3\u03B9\u03B1 \u03C4\u03BF\u03BD \u03C7\u03C1\u03AE\u03C3\u03C4\u03B7: $1;", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "\u039C\u03B5\u03C4\u03B1\u03BA\u03AF\u03BD\u03B7\u03C3\u03B7 \u03BD\u03AE\u03BC\u03B1\u03C4\u03BF\u03C2 \u03C0\u03C1\u03BF\u03C2 \u03C4\u03B1 \u03BA\u03AC\u03C4\u03C9", description: "" }, keyboardNavInboxTitle: { message: "\u0395\u03B9\u03C3\u03B5\u03C1\u03C7\u03CC\u03BC\u03B5\u03BD\u03B1", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "\u0391\u03BD\u03B1\u03AF\u03C1\u03B5\u03C3\u03B7 \u0395\u03C0\u03B9\u03C3\u03AE\u03BC\u03B1\u03BD\u03C3\u03B7\u03C2", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "\u0394\u03B5\u03AF\u03BE\u03B5 \u0391\u03C0\u03CC \u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE", description: "" } }; // locales/locales/en.json var en_default = { yes: { message: "Yes" }, no: { message: "No" }, aboutCategory: { message: "About RES" }, myAccountCategory: { message: "My Account" }, usersCategory: { message: "Users" }, commentsCategory: { message: "Comments" }, submissionsCategory: { message: "Submissions" }, subredditsCategory: { message: "Subreddits" }, appearanceCategory: { message: "Appearance" }, browsingCategory: { message: "Browsing" }, productivityCategory: { message: "Productivity" }, coreCategory: { message: "Core" }, moduleID: { message: "module ID" }, optionKey: { message: "option ID" }, aboutName: { message: "About RES" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier." }, aboutOptionsPresetsTitle: { message: "Presets" }, aboutOptionsPresets: { message: "Quickly customize RES with various presets." }, aboutOptionsBackupTitle: { message: "Backup" }, aboutOptionsBackup: { message: "Backup (export) and restore (import) your RES settings." }, aboutOptionsSearchSettingsTitle: { message: "Search Settings" }, aboutOptionsSearchSettings: { message: "Find RES settings." }, aboutOptionsAnnouncementsTitle: { message: "Announcements" }, aboutOptionsAnnouncements: { message: "Read the latest at /r/RESAnnouncements." }, aboutOptionsDonateTitle: { message: "Donate" }, aboutOptionsDonate: { message: "Support further RES development." }, aboutOptionsBugsTitle: { message: "Bugs" }, aboutOptionsBugs: { message: "If something isn't working right, visit /r/RESissues for help." }, aboutOptionsSuggestionsTitle: { message: "Suggestions" }, aboutOptionsSuggestions: { message: "If you have an idea for RES or want to chat with other users, visit /r/Enhancement." }, aboutOptionsFAQTitle: { message: "FAQ" }, aboutOptionsFAQ: { message: "Learn more about RES on the /r/Enhancement wiki." }, aboutOptionsCodeTitle: { message: "Code" }, aboutOptionsCode: { message: "You can improve RES with your code, designs, and ideas! RES is an open-source project on GitHub." }, aboutOptionsContributorsTitle: { message: "Contributors" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES." }, aboutOptionsPrivacyTitle: { message: "Privacy" }, aboutOptionsPrivacy: { message: "Read about RES's privacy policy." }, aboutOptionsLicenseTitle: { message: "License" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite is released under the GPL v3.0 license." }, accountSwitcherName: { message: "Account Switcher" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account." }, accountSwitcherAddAccount: { message: "+add account" }, accountSwitcherUsername: { message: "username" }, accountSwitcherPassword: { message: "password" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)" }, accountSwitcherSnoo: { message: "snoo (alien)" }, accountSwitcherSimpleArrow: { message: "simple arrow" }, accountSwitcherCliHelp: { message: "switch users to [username]" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username:" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments." }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?" }, accountSwitcherOTPError: { message: "Could not log in as $1 due to an invalid one time password.\n\nCheck your settings?" }, accountSwitcherReload: { message: "reload" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1." }, accountSwitcherUserSwitched: { message: "You switched to /u/$1." }, accountSwitcherLoggedOut: { message: "You have been logged out." }, announcementsName: { message: "RES Announcements" }, announcementsDesc: { message: "Keep up with important news." }, announcementsNewPost: { message: "A new post has been made to /r/$1" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2" }, announcementsMarkAsRead: { message: "mark as read" }, backupName: { message: "Backup & Restore" }, backupDesc: { message: "Backup (export) and restore (import) your Reddit Enhancement Suite settings." }, betteRedditName: { message: "betteReddit" }, betteRedditDesc: { message: 'Adds a number of interface enhancements to Reddit, such as "full comments" links, the ability to unhide accidentally hidden posts, and more.' }, commandLineName: { message: "RES Command Line" }, commandLineDesc: { message: "Command line for navigating reddit, toggling RES settings, and debugging RES." }, commentDepthName: { message: "Custom Comment Depth" }, commentDepthDesc: { message: "Allows you to set the preferred depth of comments you wish to see when clicking on comments links.\n\n0 = Everything, 1 = Root level, 2 = Responses to root level, 3 = Responses to responses to root level, etc." }, commentHidePerName: { message: "Comment Hide Persistor" }, commentHidePerDesc: { message: "Saves the state of hidden comments across page views." }, commentNavName: { message: "Comment Navigator" }, commentNavDesc: { message: "Provides a comment navigation tool to easily find comments by OP, mod, etc." }, commentNavigatorShowByDefaultTitle: { message: "Show By Default" }, commentNavigatorShowByDefaultDesc: { message: "Display Comment Navigator by default." }, commentNavigatorShowOnKeyboardMoveTitle: { message: "Show On Keyboard Move" }, commentNavigatorShowOnKeyboardMoveDesc: { message: "Display the comment navigator interface when using the keyboard shortcuts (Shift + \u2193 or Shift + \u2191) to navigate." }, commentNavigatorSkipReadCommentsTitle: { message: "Skip Read Comments" }, commentNavigatorSkipReadCommentsDesc: { message: "Prevents navigating to already read comments." }, commentNavigatorOpenOnHighlightUserTitle: { message: "Open On Highlight User" }, commentNavigatorOpenOnHighlightUserDesc: { message: "Display Comment Navigator when a user is highlighted." }, commentNavigatorPopularConditionsTitle: { message: "Popular Conditions" }, commentNavigatorPopularConditionsDesc: { message: "When navigating by popular, comments are filtered by these conditions." }, commentPrevName: { message: "Live Preview" }, commentPrevDesc: { message: "Provides a live preview while editing comments, text submissions, messages, wiki pages, and other markdown text areas; as well as a two column editor for writing walls of text." }, commentQuickCollapseName: { message: "Comment Quick Collapse" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked." }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked." }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click" }, commentStyleName: { message: "Comment Style" }, commentStyleDesc: { message: "Add readability enhancements to comments." }, commentToolsName: { message: "Editing Tools" }, commentToolsDesc: { message: "Provides tools and shortcuts for composing comments, text posts, wiki pages, and other markdown text areas." }, contextName: { message: "Context" }, contextDesc: { message: "Adds a link to the yellow infobar to view deeply linked comments in their full context." }, contributeName: { message: "Donate and Contribute" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/)." }, customTogglesName: { message: "Custom Toggles" }, customTogglesDesc: { message: "Set up custom on/off switches for various parts of RES." }, dashboardName: { message: "RES Dashboard" }, dashboardDesc: { message: "The RES Dashboard is home to a number of features including widgets and other useful tools." }, easterEggName: { message: "Easter Egg" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A." }, autoHideName: { message: "Auto Hide" }, autoHideDesc: { message: "Automatically hide viewed link posts or comments. To hide comments, make sure the module [readComments](#res:settings/readComments) is enabled." }, autoHideMustBeVisibleDurationTitle: { message: "Must Be Visible Duration" }, autoHideMustBeVisibleDurationDesc: { message: "How long must a post be viewed before being hidden (in ms)?" }, autoHideTypesTitle: { message: "Types" }, autoHideTypesDesc: { message: "Restrict post types which are hidden." }, filteRedditName: { message: "filteReddit" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp)." }, hideChildCommentsName: { message: "Hide All Child Comments" }, hideChildCommentsDesc: { message: "Allows you to hide child comments." }, hideChildCommentsAutomaticTitle: { message: "Automatic" }, hideChildCommentsAutomaticDesc: { message: "Automatically hide all but parent comments, or provide a link to hide them all?" }, hideChildCommentsNestedTitle: { message: "Nested" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.' }, hideChildCommentsHideNestedTitle: { message: "Hide Nested" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments." }, hideChildCommentsShowAllLinkLabel: { message: "show all child comments" }, hideChildCommentsHideAllLinkLabel: { message: "hide all child comments" }, hideChildCommentsShowLinkLabel: { message: "show $1 child comments" }, hideChildCommentsHideLinkLabel: { message: "hide child comments" }, hoverName: { message: "RES Pop-up Hover" }, hoverDesc: { message: "Customize the behavior of the large informational pop-ups which appear when you hover your mouse over certain elements." }, hoverInstancesTitle: { message: "Instances" }, hoverInstancesDesc: { message: "Manage particular pop-ups" }, hoverInstancesName: { message: "name" }, hoverInstancesEnabled: { message: "enabled" }, hoverOpenDelayTitle: { message: "Open Delay" }, hoverOpenDelayDesc: { message: "Default delay between mouseover and the popup opening." }, hoverFadeDelayTitle: { message: "Fade Delay" }, hoverFadeDelayDesc: { message: "Default delay before the popup fades after mouseout." }, hoverFadeSpeedTitle: { message: "Fade Speed" }, hoverFadeSpeedDesc: { message: "Fade speed (in seconds)." }, hoverWidthTitle: { message: "Width" }, hoverWidthDesc: { message: "Default popup width." }, hoverCloseOnMouseOutTitle: { message: "Close On Mouse Out" }, hoverCloseOnMouseOutDesc: { message: "Whether to close the popup on mouseout in addition to the close button." }, keyboardNavName: { message: "Keyboard Navigation" }, keyboardNavDesc: { message: "Keyboard navigation for reddit!" }, disableChatName: { message: "Disable Chat" }, disableChatDesc: { message: "Prevent Reddit's chat from running and improve page load speed." }, showImagesMediaBrowseTitle: { message: "Media Browse" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post." }, keyboardNavScrollOnExpandoTitle: { message: "Scroll On Expando" }, keyboardNavScrollOnExpandoDesc: { message: "Scroll window to top of link when expando key is used (to keep pics etc in view)." }, keyboardNavLinearScrollStyleTitle: { message: "Linear Scroll Style" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top." }, keyboardNavNonLinearScrollStyleTitle: { message: "Non-linear Scroll Style" }, keyboardNavNonLinearScrollStyleDesc: { message: "When jumping to a entry (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), when and how should RES scroll the window?" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry." }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed." }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action." }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action." }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab." }, keyboardNavOnHideMoveDownTitle: { message: "On Hide Move Down" }, keyboardNavOnHideMoveDownDesc: { message: "After hiding a link, automatically select the next link." }, keyboardNavOnVoteMoveDownTitle: { message: "On Vote Move Down" }, keyboardNavOnVoteMoveDownDesc: { message: "After voting on a link, automatically select the next link." }, keyboardNavOnVoteCommentMoveDownTitle: { message: "On Vote Comment Move Down" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "After voting on a comment, automatically select the next comment." }, keyboardNavUseGoModeTitle: { message: "Use Go Mode" }, keyboardNavUseGoModeDesc: { message: 'Require initiating goMode before using "go to" shortcuts.' }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Follow Link New Tab Focus" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "When following a link in new tab - focus the tab?" }, keyboardNavToggleHelpTitle: { message: "Toggle Help" }, keyboardNavToggleHelpDesc: { message: "Show help for keyboard shortcuts." }, keyboardNavToggleCmdLineTitle: { message: "Toggle Cmd Line" }, keyboardNavToggleCmdLineDesc: { message: "Launch RES command line." }, keyboardNavEnterFilterCommandLineTitle: { message: "Enter Filter Command Line" }, keyboardNavEnterFilterCommandLineDesc: { message: "Launch filter command line." }, keyboardNavHideTitle: { message: "Hide" }, keyboardNavHideDesc: { message: "Hide link." }, keyboardNavMoveUpTitle: { message: "Move Up" }, keyboardNavMoveUpDesc: { message: "Move up to the previous link or comment in flat lists." }, keyboardNavMoveDownTitle: { message: "Move Down" }, keyboardNavMoveDownDesc: { message: "Move down to the next link or comment in flat lists." }, keyboardNavMoveUpCommentTitle: { message: "Move Up Comment" }, keyboardNavMoveUpCommentDesc: { message: "Move up to the previous comment on threaded comment pages." }, keyboardNavMoveDownCommentTitle: { message: "Move Down Comment" }, keyboardNavMoveDownCommentDesc: { message: "Move down to the next comment on threaded comment pages." }, keyboardNavMoveTopTitle: { message: "Move Top" }, keyboardNavMoveTopDesc: { message: "Move to top of list (on link pages)." }, keyboardNavMoveBottomTitle: { message: "Move Bottom" }, keyboardNavMoveBottomDesc: { message: "Move to bottom of list (on link pages)." }, keyboardNavMoveUpSiblingTitle: { message: "Move Up Sibling" }, keyboardNavMoveUpSiblingDesc: { message: "Move to previous sibling (in comments) - skips to previous sibling at the same depth." }, keyboardNavMoveDownSiblingTitle: { message: "Move Down Sibling" }, keyboardNavMoveDownSiblingDesc: { message: "Move to next sibling (in comments) - skips to next sibling at the same depth." }, keyboardNavMoveDownParentSiblingTitle: { message: "Move Down Parent Sibling" }, keyboardNavMoveDownParentSiblingDesc: { message: "Move to parent's next sibling (in comments)." }, keyboardNavMoveUpThreadTitle: { message: "Move Up Thread" }, keyboardNavMoveUpThreadDesc: { message: "Move to the topmost comment of the previous thread (in comments)." }, keyboardNavMoveDownThreadTitle: { message: "Move Down Thread" }, keyboardNavMoveDownThreadDesc: { message: "Move to the topmost comment of the next thread (in comments)." }, keyboardNavMoveToTopCommentTitle: { message: "Move To Top Comment" }, keyboardNavMoveToTopCommentDesc: { message: "Move to the topmost comment of the current thread (in comments)." }, keyboardNavMoveToParentTitle: { message: "Move To Parent" }, keyboardNavMoveToParentDesc: { message: "Move to parent (in comments)." }, keyboardNavUndoMoveTitle: { message: "Undo Move" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing." }, keyboardNavShowParentsTitle: { message: "Show Parents" }, keyboardNavShowParentsDesc: { message: "Display parent comments." }, keyboardNavFollowLinkTitle: { message: "Follow Link" }, keyboardNavFollowLinkDesc: { message: "Follow link (link pages only)." }, keyboardNavFollowLinkNewTabTitle: { message: "Follow Link New Tab" }, keyboardNavFollowLinkNewTabDesc: { message: "Follow link in new tab (link pages only)." }, keyboardNavToggleExpandoTitle: { message: "Toggle Expando" }, keyboardNavToggleExpandoDesc: { message: "Toggle expando (image/text/video)." }, keyboardNavImageSizeUpTitle: { message: "Image Size Up" }, keyboardNavImageSizeUpDesc: { message: "Increase the size of image(s) in the highlighted post area." }, keyboardNavImageSizeDownTitle: { message: "Image Size Down" }, keyboardNavImageSizeDownDesc: { message: "Decrease the size of image(s) in the highlighted post area." }, keyboardNavImageSizeUpFineTitle: { message: "Image Size Up Fine" }, keyboardNavImageSizeUpFineDesc: { message: "Increase the size of image(s) in the highlighted post area (finer control)." }, keyboardNavImageSizeDownFineTitle: { message: "Image Size Down Fine" }, keyboardNavImageSizeDownFineDesc: { message: "Decrease the size of image(s) in the highlighted post area (finer control)." }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height" }, keyboardNavImageSizeAnyHeightDesc: { message: "Removes the height restriction of image(s) in the highlighted post area." }, keyboardNavImageMoveUpTitle: { message: "Image Move Up" }, keyboardNavImageMoveUpDesc: { message: "Move the image(s) in the highlighted post area up." }, keyboardNavImageMoveDownTitle: { message: "Image Move Down" }, keyboardNavImageMoveDownDesc: { message: "Move the image(s) in the highlighted post area down." }, keyboardNavImageMoveLeftTitle: { message: "Image Move Left" }, keyboardNavImageMoveLeftDesc: { message: "Move the image(s) in the highlighted post area left." }, keyboardNavImageMoveRightTitle: { message: "Image Move Right" }, keyboardNavImageMoveRightDesc: { message: "Move the image(s) in the highlighted post area right." }, keyboardNavPreviousGalleryImageTitle: { message: "Previous Gallery Image" }, keyboardNavPreviousGalleryImageDesc: { message: "View the previous image of an inline gallery." }, keyboardNavNextGalleryImageTitle: { message: "Next Gallery Image" }, keyboardNavNextGalleryImageDesc: { message: "View the next image of an inline gallery." }, keyboardNavScrollOnGalleryNavigateTitle: { message: "Scroll To Gallery Image" }, keyboardNavScrollOnGalleryNavigateDesc: { message: "Scroll window to top of gallery image when browsing using keyboard." }, keyboardNavToggleViewImagesTitle: { message: "Toggle View Images" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.' }, keyboardNavToggleChildrenTitle: { message: "Toggle Children" }, keyboardNavToggleChildrenDesc: { message: "Expand/collapse comments (comments pages only)." }, keyboardNavFollowCommentsTitle: { message: "Follow Comments" }, keyboardNavFollowCommentsDesc: { message: "View comments for link (shift opens them in a new tab)." }, keyboardNavFollowCommentsNewTabTitle: { message: "Follow Comments New Tab" }, keyboardNavFollowCommentsNewTabDesc: { message: "View comments for link in a new tab." }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Follow Link And Comments New Tab" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "View link and comments in new tabs." }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Follow Link And Comments New Tab BG" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "View link and comments in new background tabs." }, keyboardNavUpVoteTitle: { message: "Up Vote" }, keyboardNavUpVoteDesc: { message: "Upvote selected link or comment (or remove the upvote)." }, keyboardNavDownVoteTitle: { message: "Down Vote" }, keyboardNavDownVoteDesc: { message: "Downvote selected link or comment (or remove the downvote)." }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Up Vote Without Toggling" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Upvote selected link or comment (but don't remove the upvote)." }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote)." }, keyboardNavSavePostTitle: { message: "Save Post" }, keyboardNavSavePostDesc: { message: "Save the current post to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted." }, keyboardNavSaveCommentTitle: { message: "Save Comment" }, keyboardNavSaveCommentDesc: { message: "Save the current comment to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted." }, keyboardNavSaveRESTitle: { message: "Save RES" }, keyboardNavSaveRESDesc: { message: "Save the current comment with RES. This does preserve the original text of the comment, but is only saved locally." }, keyboardNavReplyTitle: { message: "Reply" }, keyboardNavReplyDesc: { message: "Reply to current comment (comment pages only)." }, keyboardNavEditTitle: { message: "Edit" }, keyboardNavEditDesc: { message: "Edit current comment or self-post." }, keyboardNavShowChildCommentsTitle: { message: "Show child comments" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only)." }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only)." }, keyboardNavFollowPermalinkTitle: { message: "Follow Permalink" }, keyboardNavFollowPermalinkDesc: { message: "Open the current comment's permalink (comment pages only)." }, keyboardNavFollowPermalinkNewTabTitle: { message: "Follow Permalink New Tab" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only)." }, keyboardNavFollowSubredditTitle: { message: "Follow Subreddit" }, keyboardNavFollowSubredditDesc: { message: "Go to subreddit of selected link (link pages only)." }, keyboardNavFollowSubredditNewTabTitle: { message: "Follow Subreddit New Tab" }, keyboardNavFollowSubredditNewTabDesc: { message: "Go to subreddit of selected link in a new tab (link pages only)." }, keyboardNavFollowProfileTitle: { message: "Follow Profile" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author." }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab." }, keyboardNavGoModeTitle: { message: "Go Mode" }, keyboardNavGoModeDesc: { message: 'Enter "goMode" (necessary before using any of the below "go to" shortcuts).' }, keyboardNavInboxTitle: { message: "Inbox" }, keyboardNavInboxDesc: { message: "Go to inbox." }, keyboardNavInboxNewTabTitle: { message: "Inbox New Tab" }, keyboardNavInboxNewTabDesc: { message: "Go to inbox in a new tab." }, keyboardNavModmailTitle: { message: "Modmail" }, keyboardNavModmailDesc: { message: "Go to modmail." }, keyboardNavModmailNewTabTitle: { message: "Modmail New Tab" }, keyboardNavModmailNewTabDesc: { message: "Go to modmail in a new tab." }, keyboardNavProfileTitle: { message: "Profile" }, keyboardNavProfileDesc: { message: "Go to profile." }, keyboardNavProfileNewTabTitle: { message: "Profile New Tab" }, keyboardNavProfileNewTabDesc: { message: "Go to profile in a new tab." }, keyboardNavFrontPageTitle: { message: "Front Page" }, keyboardNavFrontPageDesc: { message: "Go to front page." }, keyboardNavSlashAllTitle: { message: "/r/all" }, keyboardNavSlashAllDesc: { message: "Go to /r/all." }, keyboardNavsSubredditFrontPageTitle: { message: "Subreddit Front Page" }, keyboardNavsSubredditFrontPageDesc: { message: "Go to subreddit front page." }, keyboardNavRandomTitle: { message: "Random" }, keyboardNavRandomDesc: { message: "Go to a random subreddit." }, keyboardNavNextPageTitle: { message: "Next Page" }, keyboardNavNextPageDesc: { message: "Go to next page (link list pages only)." }, keyboardNavPrevPageTitle: { message: "Prev Page" }, keyboardNavPrevPageDesc: { message: "Go to previous page (link list pages only)." }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only)." }, keyboardNavProfileViewTitle: { message: "New Profile" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only)." }, keyboardNavToggleCommentNavigatorTitle: { message: "Toggle Comment Navigator" }, keyboardNavToggleCommentNavigatorDesc: { message: "Open Comment Navigator." }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Comment Navigator Move Up" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Move up using Comment Navigator." }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Comment Navigator Move Down" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Move down using Comment Navigator." }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "You can change this later from the $1 settings" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box." }, localDateName: { message: "Local Date" }, localDateDesc: { message: "Shows date in your local time zone when you hover over a relative date." }, logoLinkName: { message: "Logo Link" }, logoLinkDesc: { message: "Allow you to change the link on the reddit logo." }, logoLinkRedditLogoDestinationTitle: { message: "Reddit Logo Destination" }, logoLinkRedditLogoDestinationDesc: { message: "Location when you click on the reddit logo." }, logoLinkFrontpage: { message: "Frontpage" }, logoLinkAll: { message: "/r/all" }, logoLinkHot: { message: "/hot/" }, logoLinkDashboard: { message: "Dashboard" }, logoLinkCurrent: { message: "Current subreddit/multireddit" }, logoLinkMyUserPage: { message: "My user page" }, logoLinkInbox: { message: "Inbox" }, logoLinkCustom: { message: "Custom" }, logoLinkCustomDestinationTitle: { message: "Custom Destination" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here." }, menuName: { message: "RES Menu" }, messageMenuName: { message: "Message Menu" }, messageMenuDesc: { message: "Hover over the mail icon to access different types of messages or to compose a new message." }, messageMenuAddShortcut: { message: "+add shortcut" }, messageMenuLabel: { message: "label" }, messageMenuUrl: { message: "url" }, messageMenuLinksTitle: { message: "Links" }, messageMenuLinksDesc: { message: "Links to show in the mail icon drop down menu." }, messageMenuUseQuickMessageTitle: { message: "Use Quick Message" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message." }, messageMenuHoverDelayTitle: { message: "Hover Delay" }, messageMenuHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads." }, messageMenuFadeDelayTitle: { message: "Fade Delay" }, messageMenuFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away." }, messageMenuFadeSpeedTitle: { message: "Fade Speed" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds)." }, modhelperName: { message: "Mod Helper" }, modhelperDesc: { message: "Helps moderators via tips and tricks for playing nice with RES." }, multiredditNavbarName: { message: "Multireddit Navigation" }, multiredditNavbarDesc: { message: "Enhance the navigation bar shown on the left side of the frontpage." }, multiredditNavbarSectionMenuTitle: { message: "Section Menu" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link." }, multiredditNavbarSectionLinksTitle: { message: "Section Links" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown." }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut" }, multiredditNavbarLabel: { message: "label" }, multiredditNavbarUrl: { message: "url" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay" }, multiredditNavbarHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads." }, multiredditNavbarFadeDelayTitle: { message: "Fade Delay" }, multiredditNavbarFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away." }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds)." }, nerName: { message: "Never Ending Reddit" }, nerDesc: { message: "Inspired by modules like River of Reddit and Auto Pager - gives you a never ending stream of reddit goodness." }, nerReturnToPrevPageTitle: { message: "Return To Previous Page" }, nerReturnToPrevPageDesc: { message: 'Return to the page you were last on when hitting "back" button?' }, nerAutoLoadTitle: { message: "Auto Load" }, nerAutoLoadDesc: { message: "Automatically load new page on scroll (if off, you click to load)." }, nerPauseAfterEveryTitle: { message: "Pause After Every" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner." }, nerReversePauseIconTitle: { message: "Reverse Pause Icon" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner." }, nerShowPauseButtonTitle: { message: "Show Pause Button" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.' }, nerShowServerInfoTitle: { message: "Show Server Info" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools." }, necName: { message: "Never Ending Comments" }, necDescription: { message: "Keep ultra-long comment pages flowing." }, necLoadChildCommentsTitle: { message: "Load Child Comments" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?" }, newCommentCountName: { message: "New Comment Count" }, newCommentCountDesc: { message: "Tells you how many comments have been posted since you last viewed a thread." }, newCommentCountHideWhenUnchangedTitle: { message: "Hide When Unchanged" }, newCommentCountHideWhenUnchangedDesc: { message: "Only display the count when there are new comments." }, newCommentCountCleanCommentsTitle: { message: "Clean Comments" }, newCommentCountCleanCommentsDesc: { message: "Number of days before RES stops keeping track of a viewed thread." }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length" }, newCommentCountSubscriptionLengthDesc: { message: "Number of days before thread subscriptions expire." }, newCommentCountShowSubscribeButtonTitle: { message: "Show Subscribe Button" }, newCommentCountShowSubscribeButtonDesc: { message: "Show the Subscribe button?" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited." }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited." }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode." }, readCommentsName: { message: "Read Comments" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments." }, readCommentsCleanCommentsTitle: { message: "Clean Comments" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page." }, readCommentsMonitorSelectedTitle: { message: "Monitor Selected" }, readCommentsMonitorSelectedDesc: { message: "Mark selected posts as read." }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode." }, commentSortByTitle: { message: "Comment Sort By" }, commentSortByDesc: { message: "Add link to set default comment sort by the drop down menu." }, nightModeName: { message: "Night Mode" }, noPartName: { message: "No Participation" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)' }, noPartDisableVoteButtonsTitle: { message: "Disable Vote Buttons" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible." }, noPartDisableCommentTextareaTitle: { message: "Disable Comment Textarea" }, noPartDisableCommentTextareaDesc: { message: "Disable commenting." }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber." }, noPartEscapeNPTitle: { message: "Escape NP" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page." }, notificationsName: { message: "RES Notifications" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions." }, notificationStickyTitle: { message: "Sticky" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button." }, notificationsPerNotificationType: { message: "per notification type" }, notificationsAlwaysSticky: { message: "always sticky" }, notificationsNeverSticky: { message: "never sticky" }, notificationCloseDelayTitle: { message: "Close Delay" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear." }, notificationFadeOutLengthTitle: { message: "Fade Out Length" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing." }, notificationNotificationTypesTitle: { message: "Notification Types" }, notificationNotificationTypesDesc: { message: "Manage different types of notifications." }, notificationsAddNotificationType: { message: "manually register notification type" }, notificationsNotificationID: { message: "notification ID" }, notificationsEnabled: { message: "enabled" }, notificationsSticky: { message: "sticky" }, onboardingName: { message: "RES Welcome Wagon" }, onboardingDesc: { message: "Learn more about RES at /r/Enhancement." }, onboardingUpdateNotificationName: { message: "Update Notification" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates." }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates." }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates." }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1." }, onboardingUpgradeCta: { message: "Read more" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification" }, onboardingUpdateNotifictionNothing: { message: "Nothing" }, orangeredName: { message: "Unread Messages" }, orangeredDesc: { message: "Helping you get your daily dose of orangereds." }, orangeredOpenMailInNewTabTitle: { message: "Open Mail In New Tab" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?" }, orangeredUpdateCurrentTabTitle: { message: "Update Current Tab" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds." }, orangeredUpdateOtherTabsTitle: { message: "Update Other Tabs" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds." }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope" }, orangeredShowFloatingEnvelopeDesc: { message: "Show an envelope (inbox) icon in the top right corner." }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count." }, orangeredShowUnreadCountInTitleTitle: { message: "Show Unread Count In Title" }, orangeredShowUnreadCountInTitleDesc: { message: "Show unread message count in page/tab title?" }, orangeredShowUnreadCountInFaviconTitle: { message: "Show Unread Count In Favicon" }, orangeredShowUnreadCountInFaviconDesc: { message: "Show unread message count in favicon?" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching." }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered." }, orangeredHideModMailTitle: { message: "Hide Mod Mail" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar." }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar." }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty." }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty." }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty." }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon." }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon." }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color" }, pageNavName: { message: "Page Navigator" }, pageNavDesc: { message: "Provides tools for getting around the page." }, pageNavToTopTitle: { message: "To Top" }, pageNavToTopDesc: { message: "Add an icon to every page that takes you to the top when clicked." }, pageNavToCommentTitle: { message: "To New Comment Area" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked." }, pageNavShowLinkTitle: { message: "Show Link" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages." }, pageNavShowLinkNewTabTitle: { message: "Show Link New Tab" }, pageNavShowLinkNewTabDesc: { message: "Open link in new tab." }, presetsName: { message: "Presets" }, presetsDesc: { message: "Select from various preset RES configurations. Each preset turns on or off various modules/options, but does not reset your entire configuration." }, quickMessageName: { message: "Quick Message" }, quickMessageDesc: { message: "A pop-up dialog that allows you to send messages from anywhere on reddit. Messages can be sent from the quick message dialog by pressing control-enter or command-enter." }, resTipsName: { message: "RES Tips and Tricks" }, resTipsDesc: { message: "Adds tips/tricks help to RES console." }, saveCommentsName: { message: "Save Comments" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments in the dashboard. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)` }, searchName: { message: "Search RES Settings" }, searchHelperName: { message: "Search Helper" }, searchHelperDesc: { message: "Provide help with the use of search." }, searchCopyResultForComment: { message: "copy this for a comment" }, selectedEntryName: { message: "Selected Entry" }, selectedEntryDesc: { message: "Style the currently selected submission or comment." }, settingsConsoleDefaultAddRowText: { message: "Add Row" }, settingsNavName: { message: "RES Settings Navigation" }, settingsNavDesc: { message: "Helping you get around the RES Settings Console with greater ease." }, showImagesName: { message: "Inline Image Viewer" }, showImagesDesc: { message: "Opens images inline in your browser with the click of a button. Also has configuration options, check it out!" }, showKarmaName: { message: "Show Karma" }, showKarmaDesc: { message: "Add more info and tweaks to the karma next to your username in the user menu bar." }, showParentName: { message: "Show Parent on Hover" }, showParentDesc: { message: 'Shows the parent comments when hovering over the "parent" link of a comment.' }, singleClickName: { message: "Single Click Opener" }, singleClickDesc: { message: "Adds an [l+c] link that opens a link and the comments page in new tabs for you in one click." }, sourceSnudownName: { message: "Show Snudown Source" }, sourceSnudownDesc: { message: "Add tool to show the original text on posts and comments, before reddit formats the text." }, spamButtonName: { message: "Spam Button" }, spamButtonDesc: { message: "Adds a Spam button to posts for easy reporting." }, spoilerTagsName: { message: "Global Spoiler Tags" }, spoilerTagsDesc: { message: "Hide spoilers on user profile pages." }, stylesheetName: { message: "Stylesheet Loader" }, stylesheetDesc: { message: "Load extra stylesheets or your own CSS snippets." }, styleTweaksName: { message: "Style Tweaks" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface." }, submitHelperName: { message: "Submission Helper" }, submitHelperDesc: { message: "Provides utilities to help with submitting a post." }, submitIssueName: { message: "Submit an Issue" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement." }, subredditInfoName: { message: "Subreddit Info" }, subredditInfoDesc: { message: "Adds a hover tooltip to subreddits." }, subredditManName: { message: "Subreddit Manager" }, subredditManDesc: { message: "Allows you to customize the top bar with your own subreddit shortcuts, including dropdown menus of multi-reddits and more." }, subredditTaggerName: { message: "Subreddit Tagger" }, subredditTaggerDesc: { message: "Add custom text to the beginning of submission titles on your front page, multireddits, and /r/all. Useful for adding context to submissions." }, tableToolsName: { message: "Table Tools" }, tableToolsDesc: { message: "Include additional functionality to Reddit Markdown tables (only sorting at the moment)." }, troubleshooterName: { message: "Troubleshooter" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings." }, userbarHiderName: { message: "User Bar Hider" }, userbarHiderDesc: { message: "Add a toggle button to show or hide the user bar." }, userHighlightName: { message: "User Highlighter" }, userHighlightDesc: { message: "Highlights certain users in comment threads: OP, Admin, Friends, Mod - contributed by MrDerk." }, userInfoName: { message: "User Info" }, userInfoDesc: { message: "Adds a hover tooltip to users." }, redditUserInfoName: { message: "Reddit User Info" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users." }, usernameHiderName: { message: "Username Hider" }, usernameHiderDesc: { message: "Username hider hides your username from displaying on your screen when you're logged in to reddit. This way, if someone looks over your shoulder at work, or if you take a screenshot, your reddit username is not shown. This only affects your screen. There is no way to post or comment on reddit without your post being linked to the account you made it from." }, userTaggerName: { message: "User Tagger" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents)." }, versionName: { message: "Version Manager" }, versionDesc: { message: "Handle current/previous version checks." }, voteEnhancementsName: { message: "Vote Enhancements" }, voteEnhancementsDesc: { message: "Format or show additional information about votes on posts and comments." }, wheelBrowseName: { message: "Browse by Wheel" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater." }, xPostLinksName: { message: "X-post Links" }, xPostLinksDesc: { message: "Create links to x-posted subreddits in post taglines." }, profileNavigatorName: { message: "Profile Navigator" }, profileNavigatorDesc: { message: "Enhance getting to various parts of your user page." }, profileNavigatorSectionMenuDesc: { message: "Show a menu linking to various sections of the current user's profile when hovering your mouse over the username link in the top right corner." }, profileNavigatorSectionLinksDesc: { message: "Links to display in the profile hover menu." }, profileNavigatorHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads." }, profileNavigatorFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away." }, profileNavigatorFadeSpeedDesc: { message: "Fade animation's speed (in seconds)." }, accountSwitcherKeepLoggedInTitle: { message: "Keep Logged In" }, accountSwitcherKeepLoggedInDesc: { message: "Keep me logged in when I restart my browser." }, accountSwitcherAccountsTitle: { message: "Accounts" }, accountSwitcherAccountsDesc: { message: "Set your usernames and passwords below. They are only stored in RES preferences." }, accountSwitcherUpdateOtherTabsTitle: { message: "Update Other Tabs" }, accountSwitcherUpdateOtherTabsDesc: { message: "After switching accounts, show a warning in other tabs." }, accountSwitcherReloadOtherTabsTitle: { message: "Reload Other Tabs" }, accountSwitcherReloadOtherTabsDesc: { message: "After switching accounts, automatically reload other tabs." }, accountSwitcherShowCurrentUserNameTitle: { message: "Show Current User Name" }, accountSwitcherShowCurrentUserNameDesc: { message: "Show my current user name in the Account Switcher." }, accountSwitcherShowUserDetailsTitle: { message: "Show User Details" }, accountSwitcherShowUserDetailsDesc: { message: "Show details of each account in the Account Switcher, such as karma or gold status." }, accountSwitcherShowKarmaTitle: { message: "Show Karma" }, accountSwitcherShowKarmaDesc: { message: "Show the post and comment karma of each account in the Account Switcher." }, accountSwitcherShowGoldTitle: { message: "Show Gold" }, accountSwitcherShowGoldDesc: { message: "Show the gold status of each account in the Account Switcher." }, accountSwitcherDropDownStyleTitle: { message: "Drop Down Style" }, accountSwitcherDropDownStyleDesc: { message: 'Use the "snoo" icon, or older style dropdown?' }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1" }, backupAndRestoreProvidersFile: { message: "File" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect." }, backupAndRestoreReloadWarningNone: { message: "Do nothing." }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs." }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs." }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost." }, backupAndRestoreAutomaticBackupsNone: { message: "None" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore" }, backupAndRestoreAutomaticRestoreDesc: { message: "Should RES automatically restore a newer backup (e.g. from another computer) when available?" }, backupAndRestoreAutomaticRestoreTitle: { message: "Automatic Restore" }, backupAndRestoreSyncFrequencyDesc: { message: "How often (in hours) should RES update its backup?" }, backupAndRestoreSyncFrequencyTitle: { message: "Sync Frequency" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk." }, backupAndRestoreGoogleAccountTitle: { message: "Google Account" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option." }, backupAndRestoreBackupTitle: { message: "Backup" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.' }, backupAndRestoreRestoreTitle: { message: "Restore" }, backupAndRestoreRestoreDesc: { message: "Restore a backup of your RES settings." }, backupAndRestoreRestoreDescFirefox: { message: "Restore a backup of your RES settings. Note that OneDrive backups for Firefox are separate from OneDrive backups for other browsers." }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit." }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1." }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1." }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one." }, backupAndRestoreBackupDate: { message: "Backup date: $1" }, backupAndRestoreBackupSize: { message: "Backup size: $1" }, betteRedditCommentsLinksNewTabTitle: { message: "Comments Links New Tabs" }, betteRedditCommentsLinksNewTabDesc: { message: "Open links found in comments in a new tab." }, filteRedditHideUntilProcessedTitle: { message: "Hide Until Processed" }, filteRedditHideUntilProcessedDesc: { message: "Don't show posts and comments until they have been processed by the filters." }, betteRedditFixHideLinksTitle: { message: "Fix Hide Links" }, betteRedditFixHideLinksDesc: { message: 'Changes "hide" links to read as "hide" or "unhide" depending on the hide state.' }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously." }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay" }, betteRedditHideLinkFadeDelayDesc: { message: "Delay, in milliseconds, before a hidden link fades." }, betteRedditVideoTimesTitle: { message: "Video Times" }, betteRedditVideoTimesDesc: { message: "Show lengths of videos when possible." }, betteRedditVideoUploadedTitle: { message: "Video Uploaded" }, betteRedditVideoUploadedDesc: { message: "Show upload date of videos when possible." }, betteRedditVideoViewedTitle: { message: "Video Viewed" }, betteRedditVideoViewedDesc: { message: "Show number of views for a video when possible." }, betteRedditPinHeaderTitle: { message: "Pin Header" }, betteRedditPinHeaderDesc: { message: "Pin the subreddit bar, user menu, or header to top, floating down as you scroll." }, betteRedditPermanentVerticalScrollbarTitle: { message: "Permanent vertical scrollbar" }, betteRedditPermanentVerticalScrollbarDesc: { message: "Display the vertical body scrollbar during the entire page lifespan. This prevents the content shifting during load." }, betteRedditShowLastEditedTimestampTitle: { message: "Show Last Edited Timestamp" }, betteRedditShowLastEditedTimestampDesc: { message: "Show the time that a text post/comment was edited, without having to hover over the timestamp." }, betteRedditScoreHiddenTimeLeftTitle: { message: "Score Hidden Time Left" }, betteRedditScoreHiddenTimeLeftDesc: { message: "When hovering over [score hidden] show time left instead of hide duration." }, betteRedditShowTimestampPostsTitle: { message: "Show Timestamp Posts" }, betteRedditShowTimestampPostsDesc: { message: "Show the precise date (Sun Nov 16 20:14:56 2014 UTC) instead of a relative date (7 days ago), for posts." }, betteRedditShowTimestampCommentsTitle: { message: "Show Timestamps Comments" }, betteRedditShowTimestampCommentsDesc: { message: "Show the precise date for comments / messages." }, betteRedditShowTimestampSidebarTitle: { message: "Show Timestamp Sidebar" }, betteRedditShowTimestampSidebarDesc: { message: "Show the precise date in the sidebar." }, betteRedditShowTimestampWikiTitle: { message: "Show Timestamp Wiki" }, betteRedditShowTimestampWikiDesc: { message: "Show the precise date in the wiki." }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log" }, betteRedditShowTimestampModerationLogDesc: { message: "Show the precise date in the moderation log (/r/mod/about/log)." }, betteRedditRestoreSavedTabTitle: { message: "Restore Saved Tab" }, betteRedditRestoreSavedTabDesc: { message: 'The saved tab is now located in the multireddit sidebar. This will restore a "saved" link to the header (next to the "hot", "new", etc. tabs).' }, betteRedditDoNoCtrlFTitle: { message: "Do No Ctrl+F" }, betteRedditDoNoCtrlFDesc: { message: `When using the browser's Ctrl+F/Cmd+F "find text", only search comment/post text and not navigation links ("permalink source save..."). Disabled by default due to a slight performance impact.` }, betteRedditShowHiddenSortOptionsTitle: { message: "Show Hidden Sort Options" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit hides some comment sorting options (random, etc.) on most pages. This option reveals them." }, betteRedditTruncateLongLinksTitle: { message: "Truncate Long Links" }, betteRedditTruncateLongLinksDesc: { message: "Truncates long post titles (greater than 1 line) with an ellipsis." }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox" }, betteRedditCommentCollapseInInboxDesc: { message: "Show the [-] collapse button in the inbox." }, betteRedditBlankPageUntilMeaningfulContentTitle: { message: "Blank Page Until Meaningful Content" }, betteRedditBlankPageUntilMeaningfulContentDesc: { message: "May improve performance by not rendering Reddit while meaningful content has yet to be loaded." }, betteRedditRestrictScrollEventsTitle: { message: "Restrict Scroll Events" }, betteRedditRestrictScrollEventsDesc: { message: "Reddit performs much work every time you scroll, which may cause lag on pages with many comments. Reducing the number of scroll events it processes improves performance." }, betteRedditHideLinkLabel: { message: "hide" }, betteRedditUnhideLinkLabel: { message: "unhide" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again." }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again." }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1" }, betteRedditVideoViewed: { message: "[Views: $1]" }, commentDepthDefaultCommentDepthTitle: { message: "Default Comment Depth" }, commentDepthDefaultCommentDepthDesc: { message: "Default depth to use for all subreddits not listed below." }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth." }, commentDepthCommentPermaLinksTitle: { message: "Comment Permalinks" }, commentDepthCommentPermaLinksDesc: { message: "Set depth on links to particular comments." }, commentDepthCommentPermalinksContextTitle: { message: "Comment Permalinks Context" }, commentDepthCommentPermalinksContextDesc: { message: "Set depth on links to particular comments with context." }, commentDepthSubredditCommentDepthsTitle: { message: "Subreddit Comment Depths" }, commentDepthSubredditCommentDepthsDesc: { message: "Subreddit-specific comment depths." }, commentDepthAddSubreddit: { message: "+add subreddit" }, commentDepthSubreddit: { message: "subreddit" }, commentDepthCommentDepth: { message: "comment depth" }, commentDepthMinimumComments: { message: "minimum comments" }, commentPreviewEnableBigEditorTitle: { message: "Enable Big Editor" }, commentPreviewEnableBigEditorDesc: { message: "Enable the 2 column editor." }, commentPreviewSwapBigEditorLayoutTitle: { message: "Swap Big Editor Layout" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Swap the preview and editor (so preview is on left and editor is on right)." }, commentPreviewOpenBigEditorTitle: { message: "Open Big Editor" }, commentPreviewOpenBigEditorDesc: { message: "Open the current markdown field in the big editor. (Only when a markdown form is focused)." }, commentPreviewDraftStyleTitle: { message: "Draft Style" }, commentPreviewDraftStyleDesc: { message: "Apply a 'draft' style background to the preview to differentiate it from the comment textarea." }, commentPreviewEnableForCommentsTitle: { message: "Enable For Comments" }, commentPreviewEnableForCommentsDesc: { message: "Show preview for comments." }, commentPreviewEnableForPostsTitle: { message: "Enable For Posts" }, commentPreviewEnableForPostsDesc: { message: "Show preview for posts." }, commentPreviewEnableForWikiTitle: { message: "Enable For Wiki" }, commentPreviewEnableForWikiDesc: { message: "Show preview for wiki pages." }, commentPreviewEnableForSubredditConfigTitle: { message: "Enable For Subreddit Config" }, commentPreviewEnableForSubredditConfigDesc: { message: "Show preview for editing subreddit settings." }, commentPreviewEnableForBanMessagesTitle: { message: "Enable For Ban Messages" }, commentPreviewEnableForBanMessagesDesc: { message: "Show preview for ban notes." }, commentPreviewSidebarPreviewTitle: { message: "Sidebar Preview" }, commentPreviewSidebarPreviewDesc: { message: "Show the markdown live preview directly in the sidebar when editing." }, commentStyleCommentBoxesTitle: { message: "Comment Boxes" }, commentStyleCommentBoxesDesc: { message: "Highlights comment boxes for easier reading / placefinding in large threads." }, commentStyleCommentRoundedTitle: { message: "Comment Rounded" }, commentStyleCommentRoundedDesc: { message: "Round corners of comment boxes." }, commentStyleCommentHoverBorderTitle: { message: "Comment Hover Border" }, commentStyleCommentHoverBorderDesc: { message: "Highlight comment box hierarchy on hover (turn off for faster performance)." }, commentStyleCommentIndentTitle: { message: "Comment Indent" }, commentStyleCommentIndentDesc: { message: "Indent comments by [x] pixels (only enter the number, no 'px')." }, commentStyleContinuityTitle: { message: "Continuity" }, commentStyleContinuityDesc: { message: "Show comment continuity lines." }, commentToolsUserAutoCompleteTitle: { message: "User Autocomplete" }, commentToolsUserAutoCompleteDesc: { message: "Show user autocomplete tool when typing in posts, comments, and replies." }, commentToolsSubredditAutocompleteTitle: { message: "Subreddit Autocomplete" }, commentToolsSubredditAutocompleteDesc: { message: "Show subreddit autocomplete tool when typing in posts, comments, and replies." }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies." }, commentToolsFormattingToolButtonsTitle: { message: "Formatting Tool Buttons" }, commentToolsFormattingToolButtonsDesc: { message: "Show formatting tools (bold, italic, tables, etc.) to the edit form for posts, comments, and other snudown/markdown areas." }, commentToolsKeyboardShortcutsTitle: { message: "Keyboard Shortcuts" }, commentToolsKeyboardShortcutsDesc: { message: "Use keyboard shortcuts to apply styles to selected text." }, commentToolsBoldKeyTitle: { message: "Bold Key" }, commentToolsBoldKeyDesc: { message: "Keyboard shortcut to make text bold." }, commentToolsItalicKeyTitle: { message: "Italic Key" }, commentToolsItalicKeyDesc: { message: "Keyboard shortcut to make text italic." }, commentToolsStrikeKeyTitle: { message: "Strike Key" }, commentToolsStrikeKeyDesc: { message: "Keyboard shortcut to add a strikethrough." }, commentToolsSuperKeyTitle: { message: "Super Key" }, commentToolsSuperKeyDesc: { message: "Keyboard shortcut to make text superscript." }, commentToolsLinkKeyTitle: { message: "Link Key" }, commentToolsLinkKeyDesc: { message: "Keyboard shortcut to add a link." }, commentToolsQuoteKeyTitle: { message: "Quote Key" }, commentToolsQuoteKeyDesc: { message: "Keyboard shortcut to quote text." }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter Submits Comments" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your comment/wiki edit." }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter Saves Live Threads" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will save updates to your live thread." }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter Submits Posts" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your post." }, commentToolsCommentingAsTitle: { message: "Commenting As" }, commentToolsCommentingAsDesc: { message: "Shows your currently logged in username to avoid posting from the wrong account." }, commentToolsHighlightIfAltAccountTitle: { message: "Highlight If Alt Account" }, commentToolsHighlightIfAltAccountDesc: { message: 'Put in bold the "Commenting As" part if you are using an alt account. The first account in the Account Switcher module is considered as your main account.' }, commentToolsShowInputLengthTitle: { message: "Show Input Length" }, commentToolsShowInputLengthDesc: { message: "When submitting, display the number of characters entered in the title and text fields and indicate when you go over the 300 character limit for titles." }, commentToolsMacroButtonsTitle: { message: "Macro Buttons" }, commentToolsMacroButtonsDesc: { message: "Add macro buttons to the edit form for posts, comments, and other snudown/markdown text areas." }, commentToolsMacrosTitle: { message: "Macros" }, commentToolsMacrosDesc: { message: "Add buttons to insert frequently used snippets of text." }, commentToolsAddShortcut: { message: "+add shortcut" }, commentToolsLabel: { message: "label" }, commentToolsText: { message: "text" }, commentToolsCategory: { message: "category" }, commentToolsKey: { message: "key" }, commentToolsKeepMacroListOpenTitle: { message: "Keep Macro List Open" }, commentToolsKeepMacroListOpenDesc: { message: "After selecting a macro from the dropdown list, do not hide the list." }, commentToolsMacroPlaceholdersTitle: { message: "Macro Placeholders" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link." }, commentToolsEnableOnBanMessagesTitle: { message: "Enable On Ban Messages" }, commentToolsEnableOnBanMessagesDesc: { message: "Show the comment tools on the ban note textbox." }, contextViewFullContextTitle: { message: "View Full Context" }, contextViewFullContextDesc: { message: 'Add a "View the Full Context" link when on a comment link.' }, contextDefaultContextTitle: { message: "Default Context" }, contextDefaultContextDesc: { message: "Change the default context value on context link." }, customTogglesToggleTitle: { message: "Toggle" }, customTogglesToggleDesc: { message: "Enable or disable everything connected to this toggle; and optionally add a toggle to the RES gear dropdown menu." }, dashboardMenuItemTitle: { message: "Menu Item" }, dashboardMenuItemDesc: { message: "Show link to my dashboard in RES menu." }, dashboardDefaultPostsTitle: { message: "Default Posts" }, dashboardDefaultPostsDesc: { message: "Number of posts to show by default in each widget." }, dashboardDefaultSortTitle: { message: "Default Sort" }, dashboardDefaultSortDesc: { message: "Default sort method for new widgets." }, dashboardDefaultSortSearchTitle: { message: "Default Search Sort" }, dashboardDefaultSortSearchDesc: { message: "Default sort method for new search widgets." }, dashboardDashboardShortcutTitle: { message: "Dashboard Shortcut" }, dashboardDashboardShortcutDesc: { message: "Show +dashboard shortcut in sidebar for easy addition of dashboard widgets." }, filteRedditUsersMatchActionTitle: { message: "Users Match Action" }, filteRedditUsersMatchActionDesc: { message: "When filtering users in the above list, how should they be ignored?\n\n**Hidden**: Hide all links and comments.\n\n**Replaced with placeholder**: Display a placeholder which can be clicked on to display the post's original content." }, filteRedditUsersMatchRepliesActionTitle: { message: "Users Match Replies Action" }, filteRedditUsersMatchRepliesActionDesc: { message: "What should be done to filtered comments which has replies?\n\n**Kept visible**: Show replies normally, but fade and shrink the filtered comment.\n\n**Collapsed**: Like _kept visible_, but collapse the filtered comment.\n\n**Hidden**: Hide both the filtered comment and its replies." }, filteRedditNSFWfilterTitle: { message: "NSFW Filter" }, filteRedditNSFWfilterDesc: { message: "Filters all links labelled NSFW." }, filteRedditNSFWQuickToggleTitle: { message: "NSFW Quick Toggle" }, filteRedditNSFWQuickToggleDesc: { message: "Add a quick NSFW on/off toggle to the gear menu." }, filteRedditShowFilterlineTitle: { message: "Show Filterline" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default." }, filteRedditExcludeOwnPostsTitle: { message: "Exclude Own Posts" }, filteRedditExcludeOwnPostsDesc: { message: "Don't filter your own posts." }, filteRedditExcludeModqueueTitle: { message: "Exclude Modqueue" }, filteRedditExcludeModqueueDesc: { message: "Don't filter anything on modqueue pages (modqueue, reports, spam, etc.)." }, filteRedditExcludeUserPagesTitle: { message: "Exclude User Pages" }, filteRedditExcludeUserPagesDesc: { message: "Don't filter anything on users' profile pages." }, filteRedditKeywordsTitle: { message: "Keywords" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title." }, filteRedditSubredditsTitle: { message: "Subreddits" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits." }, filteRedditSubredditsSubreddits: { message: "subreddits" }, filteRedditFilterSubredditsFromTitle: { message: "Filter Subreddits From" }, filteRedditFilterSubredditsFromDesc: { message: "When filtering subreddits with the above option, where should they be filtered?" }, filteRedditUseRedditFiltersTitle: { message: "Use Reddit Filters" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen." }, filteRedditForceSyncFiltersTitle: { message: "Force Sync Filters" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters." }, filteRedditForceSyncFiltersLabel: { message: "sync" }, filteRedditDomainsTitle: { message: "Domains" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".' }, filteRedditFlairTitle: { message: "Flair" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair." }, filteRedditCommentContentTitle: { message: "Comment Content" }, filteRedditCommentContentDesc: { message: "Hide comments containing certain keywords.\n\nAdvanced examples:\n\n`/^/?r/w$/s` hides comments which only links to a subreddit\n\n`/(?=^.{0,40}$)(?=.*cake day.*)/is` hides short comment (at most 40 characters) that contains `cake day`" }, filteRedditCommentContentHideRepliesTitle: { message: "Comment Content Hide Replies" }, filteRedditCommentContentHideRepliesDesc: { message: "When disabled, matching comments are completely hidden only when they don't have any replies." }, filteRedditUsername: { message: "Username" }, filteRedditUsersTitle: { message: "Users" }, filteRedditUsersDesc: { message: "Hide posts and commment from these users (except on user pages)." }, filteRedditAllowNSFWTitle: { message: "Allow NSFW" }, filteRedditAllowNSFWDesc: { message: "Don't hide NSFW posts from certain subreddits when the NSFW filter is turned on." }, filteRedditAllowNSFWWhere: { message: "where" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions." }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out." }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons" }, filteRedditKeyword: { message: "keyword" }, filteRedditApplyTo: { message: "apply to" }, filteRedditEverywhere: { message: "Everywhere" }, filteRedditEverywhereBut: { message: "Everywhere but:" }, filteRedditOnlyOn: { message: "Only on:" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages" }, filteRedditSubreddits: { message: "subreddits" }, filteRedditAddFilter: { message: "+add filter" }, filteRedditAddSubreddits: { message: "+add subreddits" }, filteRedditAddCustomFilter: { message: "+add custom filter" }, subredditManagerMultiCountTitle: { message: "/r/$1 is in $2 multireddits" }, RESSettings: { message: "RES settings" }, myDashboard: { message: "my dashboard" }, tipsAndTricks: { message: "tips & tricks" }, donateToRES: { message: "donate to RES" }, nightModeToggleText: { message: "night mode" }, nightModeToggleTitle: { message: "Toggle night and day" }, nsfwSwitchToggleText: { message: "nsfw filter" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter" }, RESSettingsConsole: { message: "RES settings console" }, saveOptions: { message: "save options" }, showAdvancedOptions: { message: "Show advanced options" }, searchRESSettings: { message: "search RES settings" }, toggleOn: { message: "on" }, toggleOff: { message: "off" }, subredditStyleToggleUse: { message: "Use subreddit style" }, submitHelperTimeAgo: { message: "$1 ago", description: "As in '1 day ago'" }, subredditInfoErrorLoadingSubredditInfo: { message: "Error loading subreddit info." }, subredditInfoSubredditNotFound: { message: "Subreddit not found." }, subredditInfoSubredditCreated: { message: "Subreddit created:" }, subredditInfoSubscribers: { message: "Subscribers:" }, subredditInfoTitle: { message: "Title:" }, subredditInfoOver18: { message: "Over 18:" }, subredditInfoAddRemoveShortcut: { message: "shortcut", description: "as in '+shortcut' or '-shortcut'" }, subredditInfoAddThisSubredditToShortcuts: { message: "Add this subreddit to your shortcut bar" }, subredditInfoAddRemoveDashboard: { message: "dashboard", description: "as in '+dashboard' or '-dashboard'" }, subredditInfoAddThisSubredditToDashboard: { message: "Add this subreddit to your dashboard" }, subredditInfoAddRemoveFilter: { message: "filter" }, subredditInfoFilterFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*" }, subredditInfoSubscribe: { message: "subscribe" }, troubleshooterCachesCleared: { message: "All caches cleared." }, troubleshooterAreYouPositive: { message: "Are you positive?" }, troubleshooterEntriesRemoved: { message: "$1 entries removed." }, troubleshooterNoActionTaken: { message: "No action was taken." }, troubleshooterThisWillKillYourSettings: { message: `This will kill all your settings and saved data. If you're certain, type in "$1".` }, troubleshooterSettingsReset: { message: "All settings reset. Reload to see the result." }, userbarHiderUserBarHidden: { message: "User Bar Hidden" }, userbarHiderContentHiddenNotification: { message: "Your username, karma, preferences, RES gear, and so on are hidden. You can show them again by clicking the $1 button in the top right corner." }, userbarHiderToggleUserbar: { message: "Toggle Userbar" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colors couldn't be generated. This is probably due to the use of colors in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, userInfoInvalidUsernameLink: { message: "Invalid username link." }, userInfoUserNotFound: { message: "User not found." }, userInfoUserSuspended: { message: "User suspended." }, userInfoLinks: { message: "Links" }, userInfoComments: { message: "Comments" }, userInfoAddRemoveFriends: { message: "friends" }, userInfoRedditorSince: { message: "Redditor since:" }, userInfoPostKarma: { message: "Post Karma:" }, userInfoCommentKarma: { message: "Comment Karma:" }, userInfoLink: { message: "Link:" }, userInfoSendMessage: { message: "send message" }, userInfoUserHasRedditGold: { message: "User has Reddit Gold" }, userInfoGiftRedditGold: { message: "Gift Reddit Gold" }, userInfoHighlight: { message: "Highlight" }, userInfoUnhighlight: { message: "Unhighlight" }, userInfoIgnore: { message: "Ignore" }, userInfoUnignore: { message: "Unignore" }, userTaggerMyUserTags: { message: "My User Tags" }, userTaggerTaggedUsers: { message: "tagged users" }, userTaggerAllUsers: { message: "all users" }, userTaggerUsername: { message: "Username" }, userTaggerTag: { message: "Tag" }, userTaggerColor: { message: "Color" }, userTaggerVotesUp: { message: "Upvotes" }, userTaggerVotesDown: { message: "Downvotes" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment." }, userTaggerTagUser: { message: "tag user $1" }, userTaggerTagUserAs: { message: "tag user $1 as: $2" }, userTaggerTagCanNotSetTag: { message: "can't set tag - no post/comment selected." }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Are you sure you want to delete the tag for user: $1?" }, userTaggerYourVotesFor: { message: "your votes for $1: $2", description: "As in `your votes for username: 42`" }, xPostLinksXpostedFrom: { message: "x-posted from", description: "As in 'x-posted from /r/subreddit'" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below." }, nightModeNightModeOnTitle: { message: "Night Mode On" }, nightModeNightModeOnDesc: { message: "Enable/disable night mode." }, nightModeNightSwitchTitle: { message: "Night Switch" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu." }, nightModeAutomaticNightModeTitle: { message: "Automatic Night Mode" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn **automatic** mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn **user-defined hours** mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nBy choosing **system preference**, night mode is enabled only when the browser or OS indicates that a dark theme is preferred.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.' }, nightModeAutomaticNightModeNone: { message: "Disabled" }, nightModeAutomaticNightModeAutomatic: { message: "Automatic (requires geolocation)" }, nightModeAutomaticNightModeUser: { message: "User-defined hours" }, nightModeAutomaticNightModeSystem: { message: "System preference" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".' }, nightModeNightModeStartTitle: { message: "Night Mode Start" }, nightModeNightModeStartDesc: { message: "Time that automatic night mode starts." }, nightModeNightModeEndTitle: { message: "Night Mode End" }, nightModeNightModeEndDesc: { message: "Time that automatic night mode ends." }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min)." }, nightModeUseSubredditStylesTitle: { message: "Use Subreddit Styles" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.` }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled." }, nightModeColoredLinksTitle: { message: "Colored Links" }, nightModeColoredLinksDesc: { message: "Color links blue and purple." }, gfycatUseMobileGfycatTitle: { message: "Use Mobile Gfycat" }, gfycatUseMobileGfycatDesc: { message: "Use mobile (lower resolution) gifs from gfycat." }, presetsLiteDesc: { message: "RES Lite: just the popular stuff" }, presetsCleanSlateDesc: { message: "Turn off all the RES modules" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog." }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context." }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).` }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages." }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")' }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment)." }, requestPermissionsName: { message: "Request Permissions" }, requestPermissionsDesc: { message: "Grant optional permissions now so that prompts won't appear later.\n\nIf no prompt appears when enabling this, permissions are likely already granted." }, RESTipsDailyTipDesc: { message: "Show a random tip once every 24 hours." }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips." }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time." }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel." }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.' }, searchHelperToggleSearchOptionsDesc: { message: "Add a button to hide search options while searching." }, searchHelperHideSearchOptionsDesc: { message: "Automatically hide search options and suggestions on the search page." }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from." }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style)." }, searchHelperSearchPageTabsDesc: { message: "Add tabs to the search page." }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search." }, searchHelperTransitionSearchTabsDesc: { message: "Play a transition when you open and close tabs." }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit." }, searchHelperDefaultSortOptionDesc: { message: "Set a default sort on the search form of the side panel." }, searchHelperDefaultTimeOptionDesc: { message: "Set a default time on the search form of the side panel." }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatically scroll to the post/comment that is selected when the page loads" }, selectedEntryAddLineDesc: { message: "Show a line on right side." }, selectedEntrySetColorsDesc: { message: "Set colors" }, selectedEntryBackgroundColorDesc: { message: "The background color" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)" }, settingsNavigationShowAllOptionsDesc: { message: "All options are displayed by default. Uncheck this box if you would like to hide advanced options." }, userTaggerShowTaggingIconDesc: { message: "Always show a tag tool icon after every username." }, userTaggerStoreSourceLinkDesc: { message: "By default, store a link to the link/comment you tagged a user on" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used." }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number." }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content." }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user." }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed." }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment." }, toggleCommentsLeftEdgeColorDesc: { message: "Default color of the bar." }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color of the bar when hovered." }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color of the bar when collapsed." }, toggleCommentsLeftEdgeWidthDesc: { message: "Width of the bar." }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments." }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button" }, scrollOnCollapseTitle: { message: "Scroll On Collapse" }, penaltyBoxName: { message: "RES Feature Throttle" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused." }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty." }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty." }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features." }, penaltyBoxFeaturesTitle: { message: "Features" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console." }, penaltyBoxSuspendFeaturesUndoButton: { message: "Enable this feature again" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again." }, penaltyBoxFeaturesMonitoring: { message: "monitoring" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, commandLineLaunchTitle: { message: "Launch" }, commandLineLaunchDesc: { message: "Open the RES Command Line" }, commandLineMenuItemTitle: { message: "Menu Item" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu' }, presetsLiteTitle: { message: "Lite" }, presetsCleanSlateTitle: { message: "Clean Slate" }, presetsNoPopupsTitle: { message: "No Popups" }, profileNavigatorSectionMenuTitle: { message: "Section Menu" }, profileNavigatorSectionLinksTitle: { message: "Section Links" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed" }, profileRedirectName: { message: "Profile Redirect" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/)." }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.' }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}" }, quickMessageOpenQuickMessageTitle: { message: "Open Quick Message" }, quickMessageDefaultSubjectTitle: { message: "Default Subject" }, quickMessageSendAsTitle: { message: "Send As" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options" }, searchHelperLegacySearchTitle: { message: "Legacy Search" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit" }, searchHelperSearchByFlairTitle: { message: "Search By Flair" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit" }, searchHelperDefaultSortOptionTitle: { message: "Default Sort Option" }, searchHelperDefaultTimeOptionTitle: { message: "Default Time Option" }, settingsNavigationShowAllOptionsTitle: { message: "Show All Options" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll" }, selectedEntryAddLineTitle: { message: "Add Line" }, selectedEntrySetColorsTitle: { message: "Set Colors" }, selectedEntryBackgroundColorTitle: { message: "Background Color" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night" }, selectedEntryTextColorNightTitle: { message: "Text Color Night" }, selectedEntryOutlineStyleTitle: { message: "Outline Style" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night" }, RESTipsMenuItemTitle: { message: "Menu Item" }, RESTipsDailyTipTitle: { message: "Daily Tip" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight" }, userTaggerVwNumberTitle: { message: "VW Number" }, userTaggerTruncateTagTitle: { message: "Truncate Tags" }, userTaggerPresetTagsTitle: { message: "Preset Tags" }, singleClickOpenOrderTitle: { message: "Open Order" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in." }, singleClickHideLECTitle: { message: "Hide LEC" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page." }, singleClickOpenFrontpageTitle: { message: "Open Frontpage" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts." }, singleClickOpenBackgroundTitle: { message: "Open Background" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs." }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma." }, showKarmaSeparatorTitle: { message: "Separator" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma." }, showKarmaUseCommasTitle: { message: "Use Commas" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers." }, showKarmaShowGoldTitle: { message: "Show Gold" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status." }, showParentHoverDelayTitle: { message: "Hover Delay" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads." }, showParentFadeDelayTitle: { message: "Fade Delay" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves." }, showParentFadeSpeedTitle: { message: "Fade Speed" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds)." }, showParentDirectionTitle: { message: "Direction" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children." }, spoilerTagsTransitionTitle: { message: "Transition" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily." }, stylesheetRedditThemesTitle: { message: "Reddit Themes" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit." }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load." }, stylesheetSnippetsTitle: { message: "Snippets" }, stylesheetSnippetsDesc: { message: "CSS snippets to load." }, stylesheetBodyClassesTitle: { message: "Body Classes" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>." }, stylesheetSubredditClassTitle: { message: "Subreddit Class" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`." }, stylesheetMultiredditClassTitle: { message: "Multireddit Class" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`." }, stylesheetUsernameClassTitle: { message: "Username Class" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`." }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`." }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.' }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads." }, styleTweaksNavTopTitle: { message: "Nav Top" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)" }, styleTweaksVisitedStyleTitle: { message: "Visited Style" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)" }, styleTweaksShowExpandosTitle: { message: "Show Expandos" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display." }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age)." }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown." }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").' }, styleTweaksColorBlindFriendlyTitle: { message: "Color Blind Friendly" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colorblind friendly styles when possible." }, subredditStyleToggleName: { message: "Subreddit Style Toggle" }, subredditStyleToggleDesc: { message: "Lets you disable specific subreddit styles (the [global setting](/prefs/#show_stylesheets) must be on)." }, subredditStyleToggleBrowserToolbarButtonTitle: { message: "Browser Toolbar Button" }, subredditStyleToggleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar toggle - note this may be behind a hamburger menu in some browsers." }, subredditStyleToggleCheckboxTitle: { message: "Checkbox" }, subredditStyleToggleCheckboxDesc: { message: "Add a checkbox in the sidebar." }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager)." }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction." }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments." }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments." }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it." }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles." }, styleTweaksHideDomainLink: { message: "Hide Domain Link" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines." }, styleTweaksFlairEmojiAsText: { message: "Flair Emoji As Text" }, styleTweaksFlairEmojiAsTextDesc: { message: "Show emoji flairs as text instead of icons" }, styleTweaksFlairEmojiAsTextNever: { message: "Never" }, styleTweaksFlairEmojiAsTextNoSubStyle: { message: "Subreddit Style Disabled" }, styleTweaksFlairEmojiAsTextAlways: { message: "Always" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc..." }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?" }, subredditInfoHoverDelayTitle: { message: "Hover Delay" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads." }, subredditInfoFadeDelayTitle: { message: "Fade Delay" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away." }, subredditInfoFadeSpeedTitle: { message: "Fade Speed" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds)." }, troubleshooterClearLabel: { message: "Clear" }, troubleshooterResetLabel: { message: "Reset" }, troubleshooterDisableLabel: { message: "Disable" }, troubleshooterClearCacheTitle: { message: "Clear Cache" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.' }, troubleshooterClearTagsTitle: { message: "Clear Tags" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users)." }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!" }, troubleshooterDisableRESTitle: { message: "Disable RES" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting." }, troubleshooterBreakpointTitle: { message: "Breakpoint" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging." }, troubleshooterBreakpointLabel: { message: "Pause JavaScript" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications" }, troubleshooterTestNotificationsDesc: { message: "Test notifications." }, troubleshooterTestNotificationsLabel: { message: "Test notifications" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests." }, troubleshooterTestEnvironmentLabel: { message: "Test environment" }, tableToolsSortTitle: { message: "Sort" }, tableToolsSortDesc: { message: "Enable column sorting." }, userbarHiderUserbarStateTitle: { message: "Userbar State" }, userbarHiderUserbarStateDesc: { message: "User bar" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button" }, usernameHiderDisplayTextTitle: { message: "Display Text" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with." }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user." }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText." }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes." }, userInfoHoverInfoTitle: { message: "Hover Info" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover." }, userInfoUseQuickMessageTitle: { message: "Use Quick Message" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.` }, userInfoHoverDelayTitle: { message: "Hover Delay" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads." }, userInfoFadeDelayTitle: { message: "Fade Delay" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away." }, userInfoFadeSpeedTitle: { message: "Fade Speed" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds)." }, userInfoGildCommentsTitle: { message: "Gild Comments" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.' }, userInfoHighlightButtonTitle: { message: "Highlight Button" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.' }, userInfoHighlightColorTitle: { message: "Highlight Color" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.' }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover." }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip." }, redditUserInfoHideTitle: { message: "Hide Native Tooltip" }, userHighlightHighlightSelfTitle: { message: "Highlight Self" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments." }, userHighlightSelfColorTitle: { message: "Self Color" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user." }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover." }, userHighlightHighlightOPTitle: { message: "Highlight OP" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments." }, userHighlightOPColorTitle: { message: "OP Color" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP." }, userHighlightOPColorHoverTitle: { message: "OP Color Hover" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover." }, userHighlightOpMentionsTitle: { message: "Highlight OP mentions" }, userHighlightOpMentionsDesc: { message: "Highlight users who are mentioned by the OP in self-posts." }, userHighlightOpMentionsColorTitle: { message: "Mentioned User Color" }, userHighlightOpMentionsColorDesc: { message: "Color to use to highlight mentioned users." }, userHighlightOpMentionsHoverTitle: { message: "Mentioned User Hover" }, userHighlightOpMentionsHoverDesc: { message: "Color to use to highlight mentioned users on hover." }, userHighlightHighlightAdminTitle: { message: "Highlight Admin" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments." }, userHighlightAdminColorTitle: { message: "Admin Color" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins." }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover." }, userHighlightHighlightAlumTitle: { message: "Highlight Alum" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments." }, userHighlightAlumColorTitle: { message: "Alum Color" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums." }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover." }, userHighlightHighlightFriendTitle: { message: "Highlight Friend" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments." }, userHighlightFriendColorTitle: { message: "Friend Color" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends." }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover." }, userHighlightHighlightModTitle: { message: "Highlight Mod" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments." }, userHighlightModColorTitle: { message: "Mod Color" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods." }, userHighlightModColorHoverTitle: { message: "Mod Color Hover" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover." }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree." }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.` }, userHighlightFirstCommentColorTitle: { message: "First Comment Color" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter." }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover." }, userHighlightFontColorTitle: { message: "Font Color" }, userHighlightFontColorDesc: { message: "Color for highlighted text." }, userHighlightAutoColorUsernamesTitle: { message: "Auto Color Usernames" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special color for each username." }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames." }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color." }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts." }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account." }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x." }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits..." }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.' }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase." }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.' }, subredditManagerLinkAllTitle: { message: "Link All" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.' }, subredditManagerLinkFrontTitle: { message: "Link Home" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.' }, subredditManagerLinkPopularTitle: { message: "Link Popular" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.' }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.' }, subredditManagerLinkRandomTitle: { message: "Link Random" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.' }, subredditManagerLinkMyRandomTitle: { message: "Link My Random" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).' }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.' }, subredditManagerLinkUsersTitle: { message: "Link Users" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.' }, subredditManagerLinkFriendsTitle: { message: "Link Friends" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.' }, subredditManagerLinkModTitle: { message: "Link Mod" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.' }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.' }, subredditManagerLinkSavedTitle: { message: "Link Saved" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.' }, subredditManagerButtonEditTitle: { message: "Button Edit" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.' }, subredditManagerLastUpdateTitle: { message: "Last Update" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info)." }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit." }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode." }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit." }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find." }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.` }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice." }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value." }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice." }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds." }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).' }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.' }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation." }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing." }, showImagesCollapseInlineMediaTitle: { message: "Collapse Inline Media" }, showImagesCollapseInlineMediaDesc: { message: "Replace Reddit's inline media with an expando." }, showImagesConserveMemoryTitle: { message: "Conserve Memory" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen." }, showImagesMaxWidthTitle: { message: "Max Width" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").' }, showImagesMaxHeightTitle: { message: "Max Height" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").' }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip." }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited)." }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited)." }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height." }, showImagesOpenInNewWindowTitle: { message: "Open In New Window" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?" }, showImagesHideNSFWTitle: { message: "Hide NSFW" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW." }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW." }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers." }, showImagesImageZoomTitle: { message: "Image Zoom" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images." }, showImagesImageMoveTitle: { message: "Image Move" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images." }, showImagesMediaControlsTitle: { message: "Media Controls" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover." }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls." }, showImagesClippyTitle: { message: "Clippy" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.' }, showImagesCrosspostsTitle: { message: "Crossposts" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information." }, showImagesCaptionsPositionTitle: { message: "Captions Position" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image." }, showImagesMarkVisitedTitle: { message: "Mark Visited" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando." }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando." }, showImagesSfwHistoryTitle: { message: "Sfw History" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing." }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style." }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once." }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.' }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos." }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando." }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW." }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content." }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?" }, showImagesStartVideosMutedTitle: { message: "Start Videos Muted" }, showImagesStartVideosMutedDesc: { message: "Don't auto-play audio when using RES' video player." }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos." }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page." }, showImagesHostToggleDesc: { message: "Display expandos for this host." }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages." }, temporaryDropdownLinksAlwaysTitle: { message: "Always" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones." }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)" }, showImagesForceReplaceNativeExpandoTitle: { message: "Force Replace Native Expando" }, showImagesForceReplaceNativeExpandoDesc: { message: "Always replace Reddit's player." }, showImagesVredditMinimumVideoBandwidthTitle: { message: "Minimum Video Bandwidth" }, showImagesVredditMinimumVideoBandwidthDesc: { message: "The lowest video quality (in kB/s) the adaptive player shall use." }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support." }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur." }, imgurImageResolutionTitle: { message: "Imgur Image Resolution" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?" }, userInfoUserTag: { message: "User Tag:" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu." }, menuGearIconClickActionOpenSettings: { message: "Open settings console" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line" }, menuGearIconClickActionToggleMenu: { message: "Open menu" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)" }, numPoints: { message: "$1 points" }, numComments: { message: "$1 comments" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead." }, quarantineHideName: { message: "Quarantine Hider" }, quarantineHideDesc: { message: "Hide quarantine warnings" }, quarantineHideFlairTitle: { message: "Hide post flair" }, quarantineHideFlairDesc: { message: 'Hide "Quarantined" post flair (regardless of where the post is being viewed from)' }, quarantineHideInSubTitle: { message: "Hide subreddit warnings" }, quarantineHideInSubDesc: { message: "Hide all warnings of quarantine while viewing a quarantined subreddit" } }; // locales/locales/en@lolcat.json var en_lolcat_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Display Comment Navigator when a user is highlighted.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Show the precise date for comments / messages.", description: "" }, commentPrevDesc: { message: "PROVIDEZ LIV PREVIEW WHILE EDITIN COMMENTS, TEXT SUBMISHUNS, MESAGEZ, WIKI PAGEZ, AN OTHR MARKDOWN TEXT AREAS; AS WELL AS 2 COLUMN EDITOR 4 WRITIN WALLS OV TEXT.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Swap the preview and editor (so preview is on left and editor is on right).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Move Down Comment", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Show link to my dashboard in RES menu.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "User has Reddit Gold", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Move Up Sibling", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Comment Indent", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Turn off all the RES modules", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Show the precise date in the moderation log (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Random", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Follow Comments New Tab", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "unsubscribe", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "Unread Messages", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Show a random tip once every 24 hours.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Keywords", description: "" }, filteRedditAllowNSFWTitle: { message: "Allow NSFW", description: "" }, hoverOpenDelayTitle: { message: "Open Delay", description: "" }, keyboardNavNextPageTitle: { message: "Next Page", description: "" }, commentToolsSuperKeyTitle: { message: "Super Key", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Custom Destination", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Comment Permalinks Context", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Restore Saved Tab", description: "" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Fade or completely hide duplicate posts already showing on the page.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "User Tagger", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Comment Navigator Move Down", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Add a button to hide search options while searching.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Move up using Comment Navigator.", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Use the "snoo" icon, or older style dropdown?', description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Keep Macro List Open", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Toggle Comment Navigator", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Keyboard Shortcuts", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Follow link in new tab (link pages only).", description: "" }, onboardingDesc: { message: "Learn more about RES at /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "NSFW Filter", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Fade Delay", description: "" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsLinkKeyTitle: { message: "Link Key", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+add shortcut", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "Subreddit Front Page", description: "" }, keyboardNavFollowSubredditTitle: { message: "Follow Subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Show Gold", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "Stylesheet Loader", description: "" }, subredditInfoOver18: { message: "Over 18:", description: "" }, userInfoIgnore: { message: "Ignore", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "Menu Item", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "Are you positive?", description: "" }, messageMenuAddShortcut: { message: "+add shortcut", description: "" }, troubleshooterName: { message: "Troubleshooter", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Inbox New Tab", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "After voting on a link, automatically select the next link.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "RES Welcome Wagon", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Stop filtering from /r/all and /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Move to the topmost comment of the next thread (in comments).", description: "" }, hoverName: { message: "RES Pop-up Hover", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Enable For Comments", description: "" }, spamButtonDesc: { message: "Adds a Spam button to posts for easy reporting.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "label", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Helping you get your daily dose of orangereds.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Night Mode On", description: "" }, myAccountCategory: { message: "MAH AKOWNT", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments", description: "" }, yes: { message: "Yes", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Menu Item", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Color", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Tells you how many comments have been posted since you last viewed a thread.", description: "" }, userTaggerPageXOfY: { message: "$1 of $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "My User Tags", description: "" }, pageNavShowLinkNewTabDesc: { message: "Open link in new tab.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Search Settings", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "Do No Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "Video Viewed", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Put in bold the "Commenting As" part if you are using an alt account. The first account in the Account Switcher module is considered as your main account.', description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "When submitting, display the number of characters entered in the title and text fields and indicate when you go over the 300 character limit for titles.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Increase the size of image(s) in the highlighted post area (finer control).", description: "" }, nerName: { message: "Never Ending Reddit", description: "" }, subredditInfoTitle: { message: "Title:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatic (requires geolocation)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "View link and comments in new background tabs.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Comment Hover Border", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Fade", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Decrease the size of image(s) in the highlighted post area (finer control).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Go to next page (link list pages only).", description: "" }, notificationsPerNotificationType: { message: "per notification type", description: "" }, subredditTaggerDesc: { message: "Add custom text to the beginning of submission titles on your front page, multireddits, and /r/all. Useful for adding context to submissions.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Enhance getting to various parts of your user page.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Include additional functionality to Reddit Markdown tables (only sorting at the moment).", description: "" }, notificationsAlwaysSticky: { message: "always sticky", description: "" }, searchName: { message: "Search RES Settings", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Send As", description: "" }, pageNavName: { message: "Page Navigator", description: "" }, keyboardNavFollowLinkDesc: { message: "Follow link (link pages only).", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "Saves the state of hidden comments across page views.", description: "" }, quickMessageDesc: { message: "A pop-up dialog that allows you to send messages from anywhere on reddit. Messages can be sent from the quick message dialog by pressing control-enter or command-enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "username", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Night Mode Start", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "User Bar Hidden", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+add subreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Swap Big Editor Layout", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Auto Load", description: "" }, nerReturnToPrevPageDesc: { message: 'Return to the page you were last on when hitting "back" button?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Section Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Move to parent's next sibling (in comments).", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "SKOR HIDDEN TIEM LEFT", description: "" }, hoverWidthDesc: { message: "Default popup width.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Enable/disable night mode.", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Never Ending Comments", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Exclude Own Posts", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "Go to modmail in a new tab.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "Modmail New Tab", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Show the Subscribe button?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Enter Filter Command Line", description: "" }, betteRedditDoNoCtrlFDesc: { message: `When using the browser's Ctrl+F/Cmd+F "find text", only search comment/post text and not navigation links ("permalink source save..."). Disabled by default due to a slight performance impact.`, description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special color for each username.", description: "" }, backupName: { message: "Backup & Restore", description: "" }, profileNavigatorSectionLinksDesc: { message: "Links to display in the profile hover menu.", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "Use subreddit style", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Add this subreddit to your dashboard", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, nightModeUseSubredditStylesTitle: { message: "Use Subreddit Styles", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "After voting on a comment, automatically select the next comment.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Use Mobile Gfycat", description: "" }, commentToolsItalicKeyDesc: { message: "Keyboard shortcut to make text italic.", description: "" }, messageMenuLinksDesc: { message: "Links to show in the mail icon drop down menu.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit hides some comment sorting options (random, etc.) on most pages. This option reveals them.", description: "" }, commandLineLaunchTitle: { message: "Launch", description: "" }, betteRedditDesc: { message: 'Adds a number of interface enhancements to Reddit, such as "full comments" links, the ability to unhide accidentally hidden posts, and more.', description: "" }, resTipsDesc: { message: "Adds tips/tricks help to RES console.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Move to previous sibling (in comments) - skips to previous sibling at the same depth.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Highlight comment box hierarchy on hover (turn off for faster performance).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Keyboard shortcut to make text bold.", description: "" }, hoverWidthTitle: { message: "Width", description: "" }, dashboardName: { message: "RES Dashboard", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Show Last Edited Timestamp", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Keep Logged In", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Create links to x-posted subreddits in post taglines.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Click here to learn more", description: "" }, keyboardNavInboxNewTabDesc: { message: "Go to inbox in a new tab.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Show preview for editing subreddit settings.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "all users", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "Add an icon to every page that takes you to the top when clicked.", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expand/collapse comments (comments pages only).", description: "" }, commentPreviewDraftStyleTitle: { message: "Draft Style", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Show the precise date in the wiki.", description: "" }, logoLinkInbox: { message: "Inbox", description: "" }, searchHelperDesc: { message: "Provide help with the use of search.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Follow Link New Tab Focus", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Show Timestamp Posts", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "Presets", description: "" }, styleTweaksName: { message: "Style Tweaks", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Announcements", description: "" }, hoverInstancesDesc: { message: "Manage particular pop-ups", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Move up to the previous comment on threaded comment pages.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Show Timestamp Sidebar", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Fade Speed", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Delay, in milliseconds, before a hidden link fades.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Show Karma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatic Night Mode", description: "" }, noPartDisableCommentTextareaDesc: { message: "Disable commenting.", description: "" }, nerReturnToPrevPageTitle: { message: "Return To Previous Page", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'Add a "View the Full Context" link when on a comment link.', description: "" }, messageMenuFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsDesc: { message: "PROVIDEZ TOOLS AN SHORTCUTS 4 COMPOSIN COMMENTS, TEXT POSTS, WIKI PAGEZ, AN OTHR MARKDOWN TEXT AREAS.", description: "" }, noPartName: { message: "No Participation", description: "" }, presetsDesc: { message: "Select from various preset RES configurations. Each preset turns on or off various modules/options, but does not reset your entire configuration.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Show the comment tools on the ban note textbox.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Go to subreddit of selected link in a new tab (link pages only).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Subreddit Style", description: "" }, keyboardNavDownVoteTitle: { message: "Down Vote", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Move Down", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Notification Types", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "On Vote Comment Move Down", description: "" }, hoverCloseOnMouseOutDesc: { message: "Whether to close the popup on mouseout in addition to the close button.", description: "" }, subredditTaggerName: { message: "Subreddit Tagger", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Highlight If Alt Account", description: "" }, userInfoDesc: { message: "Adds a hover tooltip to users.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Close Delay", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "Allow you to change the link on the reddit logo.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "Number of posts to show by default in each widget.", description: "" }, pageNavDesc: { message: "Provides tools for getting around the page.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Show my current user name in the Account Switcher.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 is in $2 multireddits", description: "" }, commentToolsStrikeKeyTitle: { message: "Strike Key", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colorblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Display Comment Navigator by default.", description: "" }, keyboardNavSaveRESTitle: { message: "Save RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "On Hide Move Down", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Comment Boxes", description: "" }, profileNavigatorName: { message: "Profile Navigator", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "No", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Linear Scroll Style", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "Display parent comments.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "QUICKLY CUSTOMIZE REZ WIF VARIOUS PRESETS.", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "Comment Hide Persistor", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Selected Entry", description: "" }, betteRedditPinHeaderTitle: { message: "Pin Header", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Macro Placeholders", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Enable For Ban Messages", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Open Mail In New Tab", description: "" }, versionDesc: { message: "Handle current/previous version checks.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Your username, karma, preferences, RES gear, and so on are hidden. You can show them again by clicking the $1 button in the top right corner.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling", description: "" }, keyboardNavFollowLinkTitle: { message: "Follow Link", description: "" }, keyboardNavMoveBottomDesc: { message: "Move to bottom of list (on link pages).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Upvote selected link or comment (but don't remove the upvote).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Fade Delay", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Comment Permalinks", description: "" }, aboutOptionsLicenseTitle: { message: "License", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Show preview for posts.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Image Move Right", description: "" }, keyboardNavPrevPageDesc: { message: "Go to previous page (link list pages only).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Open links found in comments in a new tab.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoCommentKarma: { message: "Comment Karma:", description: "" }, settingsConsoleDesc: { message: "Manage your RES settings and preferences.", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Mod Color", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "Links", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Comments Links New Tabs", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Error loading subreddit info.", description: "" }, accountSwitcherName: { message: "AKOWNT SWITCHR", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Move to next sibling (in comments) - skips to next sibling at the same depth.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Night Switch", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Enable For Posts", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Show help for keyboard shortcuts.", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "Dashboard Shortcut", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Hide", description: "" }, userInfoLink: { message: "Link:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "$1 ago", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Show lengths of videos when possible.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignored.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Reply", description: "" }, accountSwitcherSimpleArrow: { message: "simple arrow", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "All options are displayed by default. Uncheck this box if you would like to hide advanced options.", description: "" }, betteRedditFixHideLinksTitle: { message: "Fix Hide Links", description: "" }, commentNavName: { message: "Comment Navigator", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Open Comment Navigator.", description: "" }, presetsLiteDesc: { message: "RES Lite: just the popular stuff", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your comment/wiki edit.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nothing", description: "" }, filteRedditShowFilterlineTitle: { message: "Show Filterline", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Section Links", description: "" }, hideChildCommentsDesc: { message: "Allows you to hide child comments.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover", description: "" }, submitHelperName: { message: "Submission Helper", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Default Sort", description: "" }, dashboardDefaultSortSearchTitle: { message: "Default Search Sort", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "Comment Rounded", description: "" }, keyboardNavImageSizeUpTitle: { message: "Image Size Up", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "toggle subreddit style $1 for: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Comments", description: "" }, commentToolsStrikeKeyDesc: { message: "Keyboard shortcut to add a strikethrough.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options", description: "" }, logoLinkMyUserPage: { message: "My user page", description: "" }, keyboardNavUseGoModeDesc: { message: 'Require initiating goMode before using "go to" shortcuts.', description: "" }, easterEggName: { message: "EASTR EGG", description: "" }, commentToolsSuperKeyDesc: { message: "Keyboard shortcut to make text superscript.", description: "" }, keyboardNavUpVoteTitle: { message: "Up Vote", description: "" }, notificationNotificationTypesDesc: { message: "Manage different types of notifications.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Post Karma:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "toggle subreddit style $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Read more", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Reddit Logo Destination", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Enable For Subreddit Config", description: "" }, accountSwitcherShowKarmaDesc: { message: "Show the post and comment karma of each account in the Account Switcher.", description: "" }, keyboardNavDesc: { message: "Keyboard navigation for reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Move to parent (in comments).", description: "" }, keyboardNavGoModeDesc: { message: 'Enter "goMode" (necessary before using any of the below "go to" shortcuts).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "RES Command Line", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Image Move Left", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "The RES Dashboard is home to a number of features including widgets and other useful tools.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "After selecting a macro from the dropdown list, do not hide the list.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddits", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Move the image(s) in the highlighted post area down.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Follow Permalink New Tab", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Removes the height restriction of image(s) in the highlighted post area.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "tag user $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Submit an Issue", description: "" }, aboutOptionsFAQTitle: { message: "FAQ", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Show User Details", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Subreddit style disabled for subreddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Color for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Update Current Tab", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Comment Navigator Move Up", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Go to profile.", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "View link and comments in new tabs.", description: "" }, onboardingUpdateNotificationName: { message: "Update Notification", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, nightModeNightModeStartDesc: { message: "Time that automatic night mode starts.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Automatically load new page on scroll (if off, you click to load).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "sticky", description: "" }, userHighlightAdminColorTitle: { message: "Admin Color", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Image Size Down", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'The saved tab is now located in the multireddit sidebar. This will restore a "saved" link to the header (next to the "hot", "new", etc. tabs).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Default color of the bar.", description: "" }, toggleOff: { message: "off", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Show subreddit autocomplete tool when typing in posts, comments, and replies.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Image Size Down Fine", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Show Timestamp Wiki", description: "" }, commentToolsMacrosDesc: { message: "Add buttons to insert frequently used snippets of text.", description: "" }, keyboardNavProfileTitle: { message: "Profile", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Filter Subreddits From", description: "" }, userTaggerShowAnyway: { message: "show anyway?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Clear Cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+add account", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Highlight", description: "" }, filteRedditExcludeModqueueDesc: { message: "Don't filter anything on modqueue pages (modqueue, reports, spam, etc.).", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifications.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Subscribers:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Move to the topmost comment of the previous thread (in comments).", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Show formatting tools (bold, italic, tables, etc.) to the edit form for posts, comments, and other snudown/markdown areas.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Move Bottom", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Color Hover", description: "" }, spoilerTagsName: { message: "Global Spoiler Tags", description: "" }, betteRedditVideoUploadedDesc: { message: "Show upload date of videos when possible.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Save Comments", description: "" }, hoverFadeSpeedDesc: { message: "Fade speed (in seconds).", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Show the precise date (Sun Nov 16 20:14:56 2014 UTC) instead of a relative date (7 days ago), for posts.", description: "" }, submissionsCategory: { message: "Submissions", description: "" }, keyboardNavSaveCommentDesc: { message: "Save the current comment to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, keyboardNavSavePostTitle: { message: "Save Post", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Font Color", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "Adds a hover tooltip to subreddits.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu.", description: "" }, commentDepthDesc: { message: "Allows you to set the preferred depth of comments you wish to see when clicking on comments links.\n\n0 = Everything, 1 = Root level, 2 = Responses to root level, 3 = Responses to responses to root level, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Keyboard shortcut to quote text.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Time that automatic night mode ends.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sort", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filters all links labelled NSFW.", description: "" }, logoLinkName: { message: "Logo Link", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "If something isn't working right, visit /r/RESissues for help.", description: "" }, nightModeAutomaticNightModeNone: { message: "Disabled", description: "" }, keyboardNavMoveUpDesc: { message: "Move up to the previous link or comment in flat lists.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "No action was taken.", description: "" }, commentPreviewEnableForWikiTitle: { message: "Enable For Wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Exclude User Pages", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "name", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "Inline Image Viewer", description: "" }, commentStyleCommentIndentDesc: { message: "Indent comments by [x] pixels (only enter the number, no 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Disable RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling", description: "" }, userInfoRedditorSince: { message: "Redditor since:", description: "" }, userTaggerShow: { message: "Show", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "Fade Speed", description: "" }, necLoadChildCommentsTitle: { message: "Load Child Comments", description: "" }, showParentName: { message: "Show Parent on Hover", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Show the gold status of each account in the Account Switcher.", description: "" }, keyboardNavMoveToParentTitle: { message: "Move To Parent", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Show Timestamps Comments", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Accounts", description: "" }, spoilerTagsDesc: { message: "Hide spoilers on user profile pages.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Show Gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "comment depth", description: "" }, keyboardNavImageMoveDownTitle: { message: "Image Move Down", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Previous Gallery Image", description: "" }, userTaggerTaggedUsers: { message: "tagged users", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Move Up Thread", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "Add more info and tweaks to the karma next to your username in the user menu bar.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Default Comment Depth", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Features", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Move Down Parent Sibling", description: "" }, dashboardTagsPerPageTitle: { message: "Tags Per Page", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log", description: "" }, userTaggerStoreSourceLinkDesc: { message: "By default, store a link to the link/comment you tagged a user on", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Enhance the navigation bar shown on the left side of the frontpage.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Quote Key", description: "" }, keyboardNavHideDesc: { message: "Hide link.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Bold Key", description: "" }, xPostLinksName: { message: "X-post Links", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Always show a tag tool icon after every username.", description: "" }, commentPreviewDraftStyleDesc: { message: "Apply a 'draft' style background to the preview to differentiate it from the comment textarea.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Follow Comments", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Modmail", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Color", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Clean Comments", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "Comments", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Force Sync Filters", description: "" }, nerShowServerInfoTitle: { message: "Show Server Info", description: "" }, troubleshooterSettingsReset: { message: "All settings reset. Reload to see the result.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Move the image(s) in the highlighted post area left.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Open the current comment's permalink (comment pages only).", description: "" }, subredditInfoAddRemoveShortcut: { message: "shortcut", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Color Blind Friendly", description: "" }, userInfoSendMessage: { message: "send message", description: "" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Disable Vote Buttons", description: "" }, commentToolsLinkKeyDesc: { message: "Keyboard shortcut to add a link.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Move Up Comment", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "Page", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Change the default context value on context link.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Image Size Up Fine", description: "" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Show unread message count in favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Search Helper", description: "" }, keyboardNavNextGalleryImageDesc: { message: "View the next image of an inline gallery.", description: "" }, nightModeName: { message: "Night Mode", description: "" }, filteRedditExcludeModqueueTitle: { message: "Exclude Modqueue", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Launch filter command line.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "can't set tag - no post/comment selected.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "on", description: "" }, contextDesc: { message: "Adds a link to the yellow infobar to view deeply linked comments in their full context.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Up Vote Without Toggling", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Move Top", description: "" }, nightModeAutomaticNightModeUser: { message: "User-defined hours", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignored", description: "" }, commentToolsCommentingAsDesc: { message: "Shows your currently logged in username to avoid posting from the wrong account.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Follow Link New Tab", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "You can change this later from the $1 settings", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Toggle", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "After switching accounts, show a warning in other tabs.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Backup (export) and restore (import) your Reddit Enhancement Suite settings.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Drop Down Style", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your post.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "option ID", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Load extra stylesheets or your own CSS snippets.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "password", description: "" }, userInfoUnignore: { message: "Unignore", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "Macros", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn automatic mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn user-defined hours mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, presetsNoPopupsTitle: { message: "No Popups", description: "" }, searchCopyResultForComment: { message: "copy this for a comment", description: "" }, moduleID: { message: "module ID", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Show unread message count in page/tab title?", description: "" }, xPostLinksXpostedFrom: { message: "x-posted from", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Toggle Children", description: "" }, commandLineLaunchDesc: { message: "Open the RES Command Line", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Subreddit Info", description: "" }, betteRedditVideoUploadedTitle: { message: "Video Uploaded", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, aboutOptionsDonate: { message: "Support further RES development.", description: "" }, aboutOptionsBugsTitle: { message: "Bugs", description: "" }, nerShowPauseButtonTitle: { message: "Show Pause Button", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Single Click Opener", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Number of days before RES stops keeping track of a viewed thread.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Version Manager", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching.", description: "" }, commentDepthName: { message: "Custom Comment Depth", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Show Unread Count In Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Show Subscribe Button", description: "" }, commentToolsKey: { message: "key", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Color Usernames", description: "" }, commentStyleName: { message: "Comment Style", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Show All Options", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "Front Page", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatically scroll to the post/comment that is selected when the page loads", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "text", description: "" }, notificationStickyTitle: { message: "Sticky", description: "" }, aboutOptionsAnnouncements: { message: "Read the latest at /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Automatically hide all but parent comments, or provide a link to hide them all?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Remove this subreddit from your shortcut bar", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "Prev Page", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Highlights comment boxes for easier reading / placefinding in large threads.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "On Vote Move Down", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Hide Dupes", description: "" }, keyboardNavFrontPageDesc: { message: "Go to front page.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Follow Link And Comments New Tab BG", description: "" }, singleClickDesc: { message: "Adds an [l+c] link that opens a link and the comments page in new tabs for you in one click.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Browse by Wheel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Show an envelope (inbox) icon in the top right corner.", description: "" }, aboutName: { message: "BOUT REZ", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "Backup", description: "" }, productivityCategory: { message: "Productivity", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "No subreddit specified.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Close On Mouse Out", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Move to the topmost comment of the current thread (in comments).", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: 'Changes "hide" links to read as "hide" or "unhide" depending on the hide state.', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 entries removed.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Add tabs to the search page.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter Saves Live Threads", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Subreddit Comment Depths", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Enable the 2 column editor.", description: "" }, floaterName: { message: "FLOATIN ISLANDZ", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "NSFW Quick Toggle", description: "" }, filteRedditAllowNSFWDesc: { message: "Don't hide NSFW posts from certain subreddits when the NSFW filter is turned on.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Add a toggle button to show or hide the user bar.", description: "" }, showImagesDesc: { message: "Opens images inline in your browser with the click of a button. Also has configuration options, check it out!", description: "" }, commentToolsMacroButtonsTitle: { message: "Macro Buttons", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "Don't filter your own posts.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "Username hider hides your username from displaying on your screen when you're logged in to reddit. This way, if someone looks over your shoulder at work, or if you take a screenshot, your reddit username is not shown. This only affects your screen. There is no way to post or comment on reddit without your post being linked to the account you made it from.", description: "" }, betteRedditName: { message: "betteReddit", description: "" }, voteEnhancementsName: { message: "Vote Enhancements", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Show Hidden Sort Options", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Truncates long post titles (greater than 1 line) with an ellipsis.", description: "" }, subredditInfoAddRemoveDashboard: { message: "dashboard", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "User Autocomplete", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed", description: "" }, aboutOptionsCodeTitle: { message: "Code", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Username", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Move the image(s) in the highlighted post area up.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Donate", description: "" }, keyboardNavGoModeTitle: { message: "Go Mode", description: "" }, keyboardNavName: { message: "KEYBORD NAVIGASHUN", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "User Highlighter", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Current subreddit/multireddit", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Follow Permalink", description: "" }, hoverDesc: { message: "Customize the behavior of the large informational pop-ups which appear when you hover your mouse over certain elements.", description: "" }, modhelperName: { message: "MOD HELPR", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Hide All Child Comments", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'You must specify "$1" or "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "Move Up", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Open Quick Message", description: "" }, pageNavToTopTitle: { message: "To Top", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Scroll On Expando", description: "" }, userTaggerTag: { message: "Tag", description: "" }, userbarHiderToggleUserbar: { message: "Toggle Userbar", description: "" }, nerReversePauseIconTitle: { message: "Reverse Pause Icon", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Remove this subreddit from your dashboard", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Format or show additional information about votes on posts and comments.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Subreddit Manager", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Suggestions", description: "" }, keyboardNavSaveCommentTitle: { message: "Save Comment", description: "" }, nerPauseAfterEveryTitle: { message: "Pause After Every", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Command line for navigating reddit, toggling RES settings, and debugging RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "View the previous image of an inline gallery.", description: "" }, userInfoInvalidUsernameLink: { message: "Invalid username link.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Move down using Comment Navigator.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Night Mode End", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "SHOWS DATE IN UR LOCAL TIEM ZONE WHEN U HOVR OVAR RELATIV DATE.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Core", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "minimum comments", description: "" }, aboutOptionsCode: { message: "You can improve RES with your code, designs, and ideas! RES is an open-source project on GitHub.", description: "" }, commentNavDesc: { message: "Provides a comment navigation tool to easily find comments by OP, mod, etc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will save updates to your live thread.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite is released under the GPL v3.0 license.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Enable On Ban Messages", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Number of days before thread subscriptions expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?", description: "" }, styleTweaksToggleSubredditStyle: { message: "toggle subreddit style", description: "" }, RESTipsDailyTipTitle: { message: "Daily Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "New Comment Count", description: "" }, keyboardNavSlashAllDesc: { message: "Go to /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "Show Parents", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "Frontpage", description: "" }, commentToolsCategory: { message: "category", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "When hovering over [score hidden] show time left instead of hide duration.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Show the time that a text post/comment was edited, without having to hover over the timestamp.", description: "" }, aboutOptionsSearchSettings: { message: "Find RES settings.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Next Gallery Image", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Subreddit style enabled for subreddit: $1.", description: "" }, notificationsNeverSticky: { message: "never sticky", description: "" }, keyboardNavMoveDownDesc: { message: "Move down to the next link or comment in flat lists.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Show the [-] collapse button in the inbox.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Add this subreddit to your shortcut bar", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Reload Other Tabs", description: "" }, betteRedditVideoTimesTitle: { message: "Video Times", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Appearance", description: "" }, userTaggerShowIgnoredDesc: { message: "Provide a link to reveal an ignored link or comment.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "Italic Key", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Use Reddit Filters", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatically select the last thing you had selected", description: "" }, aboutOptionsPresetsTitle: { message: "Presets", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Default depth to use for all subreddits not listed below.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Hide", description: "" }, aboutOptionsContributorsTitle: { message: "Contributors", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Toggle Help", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "When following a link in new tab - focus the tab?", description: "" }, aboutOptionsFAQ: { message: "Learn more about RES on the /r/Enhancement wiki.", description: "" }, betteRedditPinHeaderDesc: { message: "Pin the subreddit bar, user menu, or header to top, floating down as you scroll.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Show the precise date in the sidebar.", description: "" }, keyboardNavUpVoteDesc: { message: "Upvote selected link or comment (or remove the upvote).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Go to subreddit of selected link (link pages only).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Keep me logged in when I restart my browser.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Toggle expando (image/text/video).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "View comments for link in a new tab.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "Backup", description: "" }, profileNavigatorHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES allows you to disable specific subreddit styles!", description: "" }, customTogglesDesc: { message: "Set up custom on/off switches for various parts of RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Formatting Tool Buttons", description: "" }, commentPreviewEnableForWikiDesc: { message: "Show preview for wiki pages.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Image Move Up", description: "" }, settingsNavDesc: { message: "Helping you get around the RES Settings Console with greater ease.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox", description: "" }, usernameHiderName: { message: "Username Hider", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "enabled", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Table Tools", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "User not found.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Truncate Long Links", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Launch RES command line.", description: "" }, nerHideDupesDontHide: { message: "Do not hide", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "your votes for $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Add macro buttons to the edit form for posts, comments, and other snudown/markdown text areas.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Move the image(s) in the highlighted post area right.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alien)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Open Big Editor", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height", description: "" }, pageNavShowLinkNewTabTitle: { message: "Show Link New Tab", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Non-linear Scroll Style", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Open the current markdown field in the big editor. (Only when a markdown form is focused).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Set depth on links to particular comments with context.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Go to subreddit front page.", description: "" }, menuName: { message: "RES Menu", description: "" }, messageMenuDesc: { message: "Hover over the mail icon to access different types of messages or to compose a new message.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Play a transition when you open and close tabs.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "After hiding a link, automatically select the next link.", description: "" }, commentStyleDesc: { message: "Add readability enhancements to comments.", description: "" }, keyboardNavRandomDesc: { message: "Go to a random subreddit.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "Commenting As", description: "" }, keyboardNavImageSizeUpDesc: { message: "Increase the size of image(s) in the highlighted post area.", description: "" }, floaterDesc: { message: "Managing free-floating RES elements.", description: "" }, subredditManDesc: { message: "Allows you to customize the top bar with your own subreddit shortcuts, including dropdown menus of multi-reddits and more.", description: "" }, keyboardNavSavePostDesc: { message: "Save the current post to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Enable Big Editor", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification", description: "" }, announcementsDesc: { message: "KEEP UP WIF IMPORTANT NEWS.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Add Row", description: "" }, keyboardNavReplyDesc: { message: "Reply to current comment (comment pages only).", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "RES Notifications", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "View comments for link (shift opens them in a new tab).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Show the markdown live preview directly in the sidebar when editing.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Profile New Tab", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Follow Link And Comments New Tab", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Multireddit Navigation", description: "" }, keyboardNavToggleExpandoTitle: { message: "Toggle Expando", description: "" }, showKarmaName: { message: "Show Karma", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Subreddit Autocomplete", description: "" }, settingsNavName: { message: "RES Settings Navigation", description: "" }, contributeName: { message: "Donate and Contribute", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Disable Comment Textarea", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Set depth on links to particular comments.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Show a menu linking to various sections of the current user's profile when hovering your mouse over the username link in the top right corner.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "Editing Tools", description: "" }, accountSwitcherAccountsDesc: { message: "Set your usernames and passwords below. They are only stored in RES preferences.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "When filtering subreddits with the above option, where should they be filtered?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Live Preview", description: "" }, hoverOpenDelayDesc: { message: "Default delay between mouseover and the popup opening.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color of the bar when collapsed.", description: "" }, announcementsName: { message: "RES Announcements", description: "" }, betteRedditVideoViewedDesc: { message: "Show number of views for a video when possible.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Move To Top Comment", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "reload", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, notificationsNotificationID: { message: "notification ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Show Snudown Source", description: "" }, keyboardNavInboxDesc: { message: "Go to inbox.", description: "" }, gfycatUseMobileGfycatDesc: { message: "Use mobile (lower resolution) gifs from gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Toggle View Images", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Backup (export) and restore (import) your RES settings.", description: "" }, showParentDesc: { message: 'Shows the parent comments when hovering over the "parent" link of a comment.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Decrease the size of image(s) in the highlighted post area.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Show Input Length", description: "" }, keyboardNavSaveRESDesc: { message: "Save the current comment with RES. This does preserve the original text of the comment, but is only saved locally.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Inspired by modules like River of Reddit and Auto Pager - gives you a never ending stream of reddit goodness.", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "Don't filter anything on users' profile pages.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Restore", description: "" }, logoLinkCustom: { message: "Custom", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Enable or disable everything connected to this toggle; and optionally add a toggle to the RES gear dropdown menu.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Show comment continuity lines.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Stop filtering this subreddit from /r/all and /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Default Posts", description: "" }, contextViewFullContextTitle: { message: "View Full Context", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacy", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Add tool to show the original text on posts and comments, before reddit formats the text.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Move down to the next comment on threaded comment pages.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Provides utilities to help with submitting a post.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Automatic", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separator", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Default delay before the popup fades after mouseout.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Location when you click on the reddit logo.", description: "" }, settingsConsoleName: { message: "Settings Console", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Subreddit-specific comment depths.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Go to modmail.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "Default sort method for new widgets.", description: "" }, dashboardDefaultSortSearchDesc: { message: "Default sort method for new search widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "After switching accounts, automatically reload other tabs.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "enabled", description: "" }, nightModeColoredLinksTitle: { message: "Colored Links", description: "" }, modhelperDesc: { message: "Helps moderators via tips and tricks for playing nice with RES.", description: "" }, quickMessageName: { message: "Quick Message", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Enable this feature again", description: "" }, userHighlightDesc: { message: "Highlights certain users in comment threads: OP, Admin, Friends, Mod - contributed by MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Scroll window to top of link when expando key is used (to keep pics etc in view).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, userInfoAddRemoveFriends: { message: "$1 friends", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups", description: "" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Message Menu", description: "" }, aboutOptionsSuggestions: { message: "If you have an idea for RES or want to chat with other users, visit /r/Enhancement.", description: "" }, userbarHiderName: { message: "User Bar Hider", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "When jumping to a entry (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), when and how should RES scroll the window?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "All caches cleared.", description: "" }, localDateName: { message: "Local Date", description: "" }, commentStyleCommentRoundedDesc: { message: "Round corners of comment boxes.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Use Go Mode", description: "" }, messageMenuLabel: { message: "label", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Show Current User Name", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filter", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Show Unread Count In Title", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Sidebar Preview", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Follow Subreddit New Tab", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Show user autocomplete tool when typing in posts, comments, and replies.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Add a quick NSFW on/off toggle to the gear menu.", description: "" }, subredditInfoSubscribe: { message: "subscribe", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Downvote selected link or comment (or remove the downvote).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter Submits Comments", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter Submits Posts", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit created:", description: "" }, multiredditNavbarLabel: { message: "label", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Hover Delay", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Show preview for ban notes.", description: "" }, usersCategory: { message: "Users", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Color links blue and purple.", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit not found.", description: "" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here.", description: "" }, resTipsName: { message: "RES Tips and Tricks", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Toggle Cmd Line", description: "" }, contextName: { message: "CONTEXT", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: `This will kill all your settings and saved data. If you're certain, type in "$1".`, description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "User suspended.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "Links", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Move to top of list (on link pages).", description: "" }, contextDefaultContextTitle: { message: "Default Context", description: "" }, userTaggerTagUserAs: { message: "tag user $1 as: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Move Down Sibling", description: "" }, customTogglesName: { message: "CUSTOM TOGGLEZ", description: "" }, pageNavShowLinkTitle: { message: "Show Link", description: "" }, keyboardNavProfileNewTabDesc: { message: "Go to profile in a new tab.", description: "" }, aboutCategory: { message: "BOUT REZ", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "Gift Reddit Gold", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restore a backup of your RES settings.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Show preview for comments.", description: "" }, spamButtonName: { message: "Spam Button", description: "" }, hoverInstancesTitle: { message: "Instances", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colors couldn't be generated. This is probably due to the use of colors in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Use keyboard shortcuts to apply styles to selected text.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Automatically hide search options and suggestions on the search page.", description: "" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions.", description: "" }, logoLinkDashboard: { message: "Dashboard", description: "" }, dashboardDashboardShortcutDesc: { message: "Show +dashboard shortcut in sidebar for easy addition of dashboard widgets.", description: "" }, userInfoName: { message: "User Info", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Width of the bar.", description: "" }, filteRedditDomainsTitle: { message: "Domains", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Hide Mod Mail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Open On Highlight User", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "READ BOUT REZ'Z PRIVACY POLICY.", description: "" }, commentStyleContinuityTitle: { message: "Continuity", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Show details of each account in the Account Switcher, such as karma or gold status.", description: "" }, browsingCategory: { message: "Browsing", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Are you sure you want to delete the tag for user: $1?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Move Down Thread", description: "" }, keyboardNavInboxTitle: { message: "Inbox", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "Unhighlight", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Show By Default", description: "" } }; // locales/locales/en@pirate.json var en_pirate_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Display Comment Navigator when a user is highlighted.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Show the precise date for comments / messages.", description: "" }, commentPrevDesc: { message: "Provides a live preview while editing comments, text submissions, messages, wiki pages, and other markdown text areas; as well as a two column editor for writing walls of text.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Swap the preview and editor (so preview is on left and editor is on right).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Move Down Comment", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Show link to my dashboard in RES menu.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "User has Reddit Gold", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Move Up Sibling", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Comment Indent", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Turn off all the RES modules", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Show the precise date in the moderation log (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Random", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Follow Comments New Tab", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "unsubscribe", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "Unread Messages", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Show a random tip once every 24 hours.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Keywords", description: "" }, filteRedditAllowNSFWTitle: { message: "Allow NSFW", description: "" }, hoverOpenDelayTitle: { message: "Open Delay", description: "" }, keyboardNavNextPageTitle: { message: "Next Page", description: "" }, commentToolsSuperKeyTitle: { message: "Super Key", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Custom Destination", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Comment Permalinks Context", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Restore Saved Tab", description: "" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Fade or completely hide duplicate posts already showing on the page.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "User Tagger", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Comment Navigator Move Down", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Add a button to hide search options while searching.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Move up using Comment Navigator.", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Use the "snoo" icon, or older style dropdown?', description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Keep Macro List Open", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Toggle Comment Navigator", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Keyboard Shortcuts", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Follow link in new tab (link pages only).", description: "" }, onboardingDesc: { message: "Learn more about RES at /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "NSFW Filter", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Fade Delay", description: "" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsLinkKeyTitle: { message: "Link Key", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+add shortcut", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "Subreddit Front Page", description: "" }, keyboardNavFollowSubredditTitle: { message: "Follow Subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Show Gold", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "Stylesheet Loader", description: "" }, subredditInfoOver18: { message: "Over 18:", description: "" }, userInfoIgnore: { message: "Ignore", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "Menu Item", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "Are you positive?", description: "" }, messageMenuAddShortcut: { message: "+add shortcut", description: "" }, troubleshooterName: { message: "Troubleshooter", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Inbox New Tab", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "After voting on a link, automatically select the next link.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "RES Welcome Wagon", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Stop filtering from /r/all and /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Move to the topmost comment of the next thread (in comments).", description: "" }, hoverName: { message: "RES Pop-up Hover", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Enable For Comments", description: "" }, spamButtonDesc: { message: "Be addin' a spam button to yer posts fer easy squawkin'", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "label", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Helping you get your daily dose of orangereds.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Night Mode On", description: "" }, myAccountCategory: { message: "Me Account", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments", description: "" }, yes: { message: "Yes", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Menu Item", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Color", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Tells you how many comments have been posted since you last viewed a thread.", description: "" }, userTaggerPageXOfY: { message: "$1 of $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "My User Tags", description: "" }, pageNavShowLinkNewTabDesc: { message: "Open link in new tab.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Search Settings", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "Do No Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "Video Viewed", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Put in bold the "Commenting As" part if you are using an alt account. The first account in the Account Switcher module is considered as your main account.', description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "When submitting, display the number of characters entered in the title and text fields and indicate when you go over the 300 character limit for titles.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Increase the size of image(s) in the highlighted post area (finer control).", description: "" }, nerName: { message: "Never Ending Reddit", description: "" }, subredditInfoTitle: { message: "Title:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatic (requires geolocation)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "View link and comments in new background tabs.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Comment Hover Border", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Fade", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Decrease the size of image(s) in the highlighted post area (finer control).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Go to next page (link list pages only).", description: "" }, notificationsPerNotificationType: { message: "per notification type", description: "" }, subredditTaggerDesc: { message: "Add custom text to the beginning of submission titles on your front page, multireddits, and /r/all. Useful for adding context to submissions.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Enhance getting to various parts of your user page.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Include additional functionality to Reddit Markdown tables (only sorting at the moment).", description: "" }, notificationsAlwaysSticky: { message: "always sticky", description: "" }, searchName: { message: "Search RES Settings", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Send As", description: "" }, pageNavName: { message: "Page Navigator", description: "" }, keyboardNavFollowLinkDesc: { message: "Follow link (link pages only).", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "Saves the state of hidden comments across page views.", description: "" }, quickMessageDesc: { message: "A pop-up dialog that allows you to send messages from anywhere on reddit. Messages can be sent from the quick message dialog by pressing control-enter or command-enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "username", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Night Mode Start", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "User Bar Hidden", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+add subreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Swap Big Editor Layout", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Auto Load", description: "" }, nerReturnToPrevPageDesc: { message: 'Return to the page you were last on when hitting "back" button?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Section Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Move to parent's next sibling (in comments).", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Score Hidden Time Left", description: "" }, hoverWidthDesc: { message: "Default popup width.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Enable/disable night mode.", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Never Ending Comments", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Exclude Own Posts", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "Go to modmail in a new tab.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "Modmail New Tab", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Show the Subscribe button?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Enter Filter Command Line", description: "" }, betteRedditDoNoCtrlFDesc: { message: `When using the browser's Ctrl+F/Cmd+F "find text", only search comment/post text and not navigation links ("permalink source save..."). Disabled by default due to a slight performance impact.`, description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special color for each username.", description: "" }, backupName: { message: "Backup & Restore", description: "" }, profileNavigatorSectionLinksDesc: { message: "Links to display in the profile hover menu.", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "Use subreddit style", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Add this subreddit to your dashboard", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, nightModeUseSubredditStylesTitle: { message: "Use Subreddit Styles", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "After voting on a comment, automatically select the next comment.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Use Mobile Gfycat", description: "" }, commentToolsItalicKeyDesc: { message: "Keyboard shortcut to make text italic.", description: "" }, messageMenuLinksDesc: { message: "Links to show in the mail icon drop down menu.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit hides some comment sorting options (random, etc.) on most pages. This option reveals them.", description: "" }, commandLineLaunchTitle: { message: "Launch", description: "" }, betteRedditDesc: { message: `Adds a number o' interface enhancements t' Reddit, such as "full comments" links, th' ability t' unhide accidentally hidden posts, 'n more.`, description: "" }, resTipsDesc: { message: "Adds tips/tricks help to RES console.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Move to previous sibling (in comments) - skips to previous sibling at the same depth.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Highlight comment box hierarchy on hover (turn off for faster performance).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Keyboard shortcut to make text bold.", description: "" }, hoverWidthTitle: { message: "Width", description: "" }, dashboardName: { message: "RES Dashboard", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Show Last Edited Timestamp", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Keep Logged In", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Be creatin' links to plundered subreddits in yer post taglines.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Click here to learn more", description: "" }, keyboardNavInboxNewTabDesc: { message: "Go to inbox in a new tab.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Show preview for editing subreddit settings.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "all users", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "Add an icon to every page that takes you to the top when clicked.", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expand/collapse comments (comments pages only).", description: "" }, commentPreviewDraftStyleTitle: { message: "Draft Style", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Show the precise date in the wiki.", description: "" }, logoLinkInbox: { message: "Inbox", description: "" }, searchHelperDesc: { message: "Provide help with the use of search.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Follow Link New Tab Focus", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Show Timestamp Posts", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "Presets", description: "" }, styleTweaksName: { message: "Style Tweaks", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Announcements", description: "" }, hoverInstancesDesc: { message: "Manage particular pop-ups", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Move up to the previous comment on threaded comment pages.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Show Timestamp Sidebar", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Fade Speed", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Delay, in milliseconds, before a hidden link fades.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Show Karma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatic Night Mode", description: "" }, noPartDisableCommentTextareaDesc: { message: "Disable commenting.", description: "" }, nerReturnToPrevPageTitle: { message: "Return To Previous Page", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'Add a "View the Full Context" link when on a comment link.', description: "" }, messageMenuFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsDesc: { message: "Provides tools and shortcuts for composing comments, text posts, wiki pages, and other markdown text areas.", description: "" }, noPartName: { message: "No Participation", description: "" }, presetsDesc: { message: "Select from various preset RES configurations. Each preset turns on or off various modules/options, but does not reset your entire configuration.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Show the comment tools on the ban note textbox.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Go to subreddit of selected link in a new tab (link pages only).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Subreddit Style", description: "" }, keyboardNavDownVoteTitle: { message: "Down Vote", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Move Down", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Notification Types", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "On Vote Comment Move Down", description: "" }, hoverCloseOnMouseOutDesc: { message: "Whether to close the popup on mouseout in addition to the close button.", description: "" }, subredditTaggerName: { message: "Subreddit Tagger", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Highlight If Alt Account", description: "" }, userInfoDesc: { message: "Adds a hover tooltip to users.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Close Delay", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "Allow ye t' change th' link on th' reddit logo.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "Number of posts to show by default in each widget.", description: "" }, pageNavDesc: { message: "Provides tools for getting around the page.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Show my current user name in the Account Switcher.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 is in $2 multireddits", description: "" }, commentToolsStrikeKeyTitle: { message: "Strike Key", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colorblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Display Comment Navigator by default.", description: "" }, keyboardNavSaveRESTitle: { message: "Save RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "On Hide Move Down", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Comment Boxes", description: "" }, profileNavigatorName: { message: "Profile Navigator", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "No", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Linear Scroll Style", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "Display parent comments.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Smartly be settin' yer RES preferences wit' various presets.", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "Comment Hide Persistor", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Selected Entry", description: "" }, betteRedditPinHeaderTitle: { message: "Pin Header", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Macro Placeholders", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Enable For Ban Messages", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Open Mail In New Tab", description: "" }, versionDesc: { message: "Handle current/previous version checks.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Your username, karma, preferences, RES gear, and so on are hidden. You can show them again by clicking the $1 button in the top right corner.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling", description: "" }, keyboardNavFollowLinkTitle: { message: "Follow Link", description: "" }, keyboardNavMoveBottomDesc: { message: "Move to bottom of list (on link pages).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Upvote selected link or comment (but don't remove the upvote).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Fade Delay", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Comment Permalinks", description: "" }, aboutOptionsLicenseTitle: { message: "License", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Show preview for posts.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Image Move Right", description: "" }, keyboardNavPrevPageDesc: { message: "Go to previous page (link list pages only).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Open links found in comments in a new tab.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoCommentKarma: { message: "Comment Karma:", description: "" }, settingsConsoleDesc: { message: "Manage your RES settings and preferences.", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Mod Color", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "Links", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Comments Links New Tabs", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Error loading subreddit info.", description: "" }, accountSwitcherName: { message: "Account Switcher", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Move to next sibling (in comments) - skips to next sibling at the same depth.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Night Switch", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Enable For Posts", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Show help for keyboard shortcuts.", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "Dashboard Shortcut", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Hide", description: "" }, userInfoLink: { message: "Link:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "$1 ago", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Show lengths of videos when possible.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignored.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Reply", description: "" }, accountSwitcherSimpleArrow: { message: "simple arrow", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "All options are displayed by default. Uncheck this box if you would like to hide advanced options.", description: "" }, betteRedditFixHideLinksTitle: { message: "Fix Hide Links", description: "" }, commentNavName: { message: "Comment Navigator", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Open Comment Navigator.", description: "" }, presetsLiteDesc: { message: "RES Lite: just the popular stuff", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your comment/wiki edit.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nothing", description: "" }, filteRedditShowFilterlineTitle: { message: "Show Filterline", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Section Links", description: "" }, hideChildCommentsDesc: { message: "Allows you to hide child comments.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover", description: "" }, submitHelperName: { message: "Submission Helper", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Default Sort", description: "" }, dashboardDefaultSortSearchTitle: { message: "Default Search Sort", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "Comment Rounded", description: "" }, keyboardNavImageSizeUpTitle: { message: "Image Size Up", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "toggle subreddit style $1 for: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Comments", description: "" }, commentToolsStrikeKeyDesc: { message: "Keyboard shortcut to add a strikethrough.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options", description: "" }, logoLinkMyUserPage: { message: "My user page", description: "" }, keyboardNavUseGoModeDesc: { message: 'Require initiating goMode before using "go to" shortcuts.', description: "" }, easterEggName: { message: "Easter Egg", description: "" }, commentToolsSuperKeyDesc: { message: "Keyboard shortcut to make text superscript.", description: "" }, keyboardNavUpVoteTitle: { message: "Up Vote", description: "" }, notificationNotificationTypesDesc: { message: "Manage different types of notifications.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Post Karma:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "toggle subreddit style $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Read more", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Reddit Logo Destination", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Enable For Subreddit Config", description: "" }, accountSwitcherShowKarmaDesc: { message: "Show the post and comment karma of each account in the Account Switcher.", description: "" }, keyboardNavDesc: { message: "Keyboard navigation for reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Move to parent (in comments).", description: "" }, keyboardNavGoModeDesc: { message: 'Enter "goMode" (necessary before using any of the below "go to" shortcuts).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "RES Command Line", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Image Move Left", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "Th' RES Dashboard be home to a number 'o features includin' widgets 'n other useful tools.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "After selecting a macro from the dropdown list, do not hide the list.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddits", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Move the image(s) in the highlighted post area down.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Follow Permalink New Tab", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Removes the height restriction of image(s) in the highlighted post area.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "tag user $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Submit an Issue", description: "" }, aboutOptionsFAQTitle: { message: "FAQ", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Show User Details", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Subreddit style disabled for subreddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Color for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Update Current Tab", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Comment Navigator Move Up", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Go to profile.", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "View link and comments in new tabs.", description: "" }, onboardingUpdateNotificationName: { message: "Update Notification", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, nightModeNightModeStartDesc: { message: "Time that automatic night mode starts.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Automatically load new page on scroll (if off, you click to load).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "sticky", description: "" }, userHighlightAdminColorTitle: { message: "Admin Color", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Image Size Down", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'The saved tab is now located in the multireddit sidebar. This will restore a "saved" link to the header (next to the "hot", "new", etc. tabs).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Default color of the bar.", description: "" }, toggleOff: { message: "off", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Show subreddit autocomplete tool when typing in posts, comments, and replies.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Image Size Down Fine", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Show Timestamp Wiki", description: "" }, commentToolsMacrosDesc: { message: "Add buttons to insert frequently used snippets of text.", description: "" }, keyboardNavProfileTitle: { message: "Profile", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Filter Subreddits From", description: "" }, userTaggerShowAnyway: { message: "show anyway?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Clear Cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+add account", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Highlight", description: "" }, filteRedditExcludeModqueueDesc: { message: "Don't filter anything on modqueue pages (modqueue, reports, spam, etc.).", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifications.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Subscribers:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Move to the topmost comment of the previous thread (in comments).", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Show formatting tools (bold, italic, tables, etc.) to the edit form for posts, comments, and other snudown/markdown areas.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Move Bottom", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Color Hover", description: "" }, spoilerTagsName: { message: "Global Spoiler Tags", description: "" }, betteRedditVideoUploadedDesc: { message: "Show upload date of videos when possible.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Save Comments", description: "" }, hoverFadeSpeedDesc: { message: "Fade speed (in seconds).", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Show the precise date (Sun Nov 16 20:14:56 2014 UTC) instead of a relative date (7 days ago), for posts.", description: "" }, submissionsCategory: { message: "Submissions", description: "" }, keyboardNavSaveCommentDesc: { message: "Save the current comment to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, keyboardNavSavePostTitle: { message: "Save Post", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Font Color", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "Adds a hover tooltip to subreddits.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu.", description: "" }, commentDepthDesc: { message: "Allows you to set the preferred depth of comments you wish to see when clicking on comments links.\n\n0 = Everything, 1 = Root level, 2 = Responses to root level, 3 = Responses to responses to root level, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Keyboard shortcut to quote text.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Time that automatic night mode ends.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sort", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filters all links labelled NSFW.", description: "" }, logoLinkName: { message: "Logo Link", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "If somethin' ain't workin' rightly, visit /r/RESissues fer help.", description: "" }, nightModeAutomaticNightModeNone: { message: "Disabled", description: "" }, keyboardNavMoveUpDesc: { message: "Move up to the previous link or comment in flat lists.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "No action was taken.", description: "" }, commentPreviewEnableForWikiTitle: { message: "Enable For Wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Exclude User Pages", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "name", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "Inline Image Viewer", description: "" }, commentStyleCommentIndentDesc: { message: "Indent comments by [x] pixels (only enter the number, no 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Disable RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling", description: "" }, userInfoRedditorSince: { message: "Redditor since:", description: "" }, userTaggerShow: { message: "Show", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "Fade Speed", description: "" }, necLoadChildCommentsTitle: { message: "Load Child Comments", description: "" }, showParentName: { message: "Show Parent on Hover", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Show the gold status of each account in the Account Switcher.", description: "" }, keyboardNavMoveToParentTitle: { message: "Move To Parent", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Show Timestamps Comments", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Accounts", description: "" }, spoilerTagsDesc: { message: "Hide spoilers on user profile pages.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Show Gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "comment depth", description: "" }, keyboardNavImageMoveDownTitle: { message: "Image Move Down", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Previous Gallery Image", description: "" }, userTaggerTaggedUsers: { message: "tagged users", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Move Up Thread", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "Add more info and tweaks to the karma next to your username in the user menu bar.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Default Comment Depth", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Features", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Move Down Parent Sibling", description: "" }, dashboardTagsPerPageTitle: { message: "Tags Per Page", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log", description: "" }, userTaggerStoreSourceLinkDesc: { message: "By default, store a link to the link/comment you tagged a user on", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Enhance the navigation bar shown on the left side of the frontpage.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Quote Key", description: "" }, keyboardNavHideDesc: { message: "Hide link.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Bold Key", description: "" }, xPostLinksName: { message: "Plunder Links", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Always show a tag tool icon after every username.", description: "" }, commentPreviewDraftStyleDesc: { message: "Apply a 'draft' style background to the preview to differentiate it from the comment textarea.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Follow Comments", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Modmail", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Color", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Clean Comments", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "Comments", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Force Sync Filters", description: "" }, nerShowServerInfoTitle: { message: "Show Server Info", description: "" }, troubleshooterSettingsReset: { message: "All settings reset. Reload to see the result.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Move the image(s) in the highlighted post area left.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Open the current comment's permalink (comment pages only).", description: "" }, subredditInfoAddRemoveShortcut: { message: "shortcut", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Color Blind Friendly", description: "" }, userInfoSendMessage: { message: "send message", description: "" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Disable Vote Buttons", description: "" }, commentToolsLinkKeyDesc: { message: "Keyboard shortcut to add a link.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Move Up Comment", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "Page", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Change the default context value on context link.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Image Size Up Fine", description: "" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Show unread message count in favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Search Helper", description: "" }, keyboardNavNextGalleryImageDesc: { message: "View the next image of an inline gallery.", description: "" }, nightModeName: { message: "Night Mode", description: "" }, filteRedditExcludeModqueueTitle: { message: "Exclude Modqueue", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Launch filter command line.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "can't set tag - no post/comment selected.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "on", description: "" }, contextDesc: { message: "Adds a link to the yellow infobar to view deeply linked comments in their full context.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Up Vote Without Toggling", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Move Top", description: "" }, nightModeAutomaticNightModeUser: { message: "User-defined hours", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignored", description: "" }, commentToolsCommentingAsDesc: { message: "Shows your currently logged in username to avoid posting from the wrong account.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Follow Link New Tab", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "You can change this later from the $1 settings", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Toggle", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "After switching accounts, show a warning in other tabs.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Backup 'n restore yer Reddit Enhancement Suite settin's.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Drop Down Style", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your post.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "option ID", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Load extra stylesheets or your own CSS snippets.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "password", description: "" }, userInfoUnignore: { message: "Unignore", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "Macros", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn automatic mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn user-defined hours mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, presetsNoPopupsTitle: { message: "No Popups", description: "" }, searchCopyResultForComment: { message: "copy this for a comment", description: "" }, moduleID: { message: "module ID", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Show unread message count in page/tab title?", description: "" }, xPostLinksXpostedFrom: { message: "plundered from", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Toggle Children", description: "" }, commandLineLaunchDesc: { message: "Open the RES Command Line", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Subreddit Info", description: "" }, betteRedditVideoUploadedTitle: { message: "Video Uploaded", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, aboutOptionsDonate: { message: "Be supportin' more o' th' RES development.", description: "" }, aboutOptionsBugsTitle: { message: "Bugs", description: "" }, nerShowPauseButtonTitle: { message: "Show Pause Button", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Single Click Opener", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Number of days before RES stops keeping track of a viewed thread.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Version Manager", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching.", description: "" }, commentDepthName: { message: "Custom Comment Depth", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Show Unread Count In Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Show Subscribe Button", description: "" }, commentToolsKey: { message: "key", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Color Usernames", description: "" }, commentStyleName: { message: "Comment Style", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Show All Options", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "Front Page", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatically scroll to the post/comment that is selected when the page loads", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "text", description: "" }, notificationStickyTitle: { message: "Sticky", description: "" }, aboutOptionsAnnouncements: { message: "Read the latest at /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Automatically hide all but parent comments, or provide a link to hide them all?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Remove this subreddit from your shortcut bar", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "Prev Page", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Highlights comment boxes for easier reading / placefinding in large threads.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "On Vote Move Down", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Hide Dupes", description: "" }, keyboardNavFrontPageDesc: { message: "Go to front page.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Follow Link And Comments New Tab BG", description: "" }, singleClickDesc: { message: "Adds an [l+c] link that opens a link and the comments page in new tabs for you in one click.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Browse by Wheel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Show an envelope (inbox) icon in the top right corner.", description: "" }, aboutName: { message: "'bout RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "Backup", description: "" }, productivityCategory: { message: "Productivity", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "No subreddit specified.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Close On Mouse Out", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Move to the topmost comment of the current thread (in comments).", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: 'Changes "hide" links to read as "hide" or "unhide" depending on the hide state.', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 entries removed.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Add tabs to the search page.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter Saves Live Threads", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Subreddit Comment Depths", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Enable the 2 column editor.", description: "" }, floaterName: { message: "Floatin' Islands", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "NSFW Quick Toggle", description: "" }, filteRedditAllowNSFWDesc: { message: "Don't hide NSFW posts from certain subreddits when the NSFW filter is turned on.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Add a toggle button to show or hide the user bar.", description: "" }, showImagesDesc: { message: "Opens images inline in your browser with the click of a button. Also has configuration options, check it out!", description: "" }, commentToolsMacroButtonsTitle: { message: "Macro Buttons", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "Don't filter your own posts.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "Username hider hides your username from displaying on your screen when you're logged in to reddit. This way, if someone looks over your shoulder at work, or if you take a screenshot, your reddit username is not shown. This only affects your screen. There is no way to post or comment on reddit without your post being linked to the account you made it from.", description: "" }, betteRedditName: { message: "betteReddit", description: "" }, voteEnhancementsName: { message: "Vote Enhancements", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Show Hidden Sort Options", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Truncates long post titles (greater than 1 line) with an ellipsis.", description: "" }, subredditInfoAddRemoveDashboard: { message: "dashboard", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "User Autocomplete", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed", description: "" }, aboutOptionsCodeTitle: { message: "Code", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Username", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Move the image(s) in the highlighted post area up.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Donate", description: "" }, keyboardNavGoModeTitle: { message: "Go Mode", description: "" }, keyboardNavName: { message: "Keyboard Navigation", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "User Highlighter", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Current subreddit/multireddit", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Follow Permalink", description: "" }, hoverDesc: { message: "Customize the behavior of the large informational pop-ups which appear when you hover your mouse over certain elements.", description: "" }, modhelperName: { message: "Mod Helper", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Hide All Child Comments", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'You must specify "$1" or "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "Move Up", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Open Quick Message", description: "" }, pageNavToTopTitle: { message: "To Top", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Scroll On Expando", description: "" }, userTaggerTag: { message: "Tag", description: "" }, userbarHiderToggleUserbar: { message: "Toggle Userbar", description: "" }, nerReversePauseIconTitle: { message: "Reverse Pause Icon", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Remove this subreddit from your dashboard", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Format or show additional information about votes on posts and comments.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Subreddit Manager", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Suggestions", description: "" }, keyboardNavSaveCommentTitle: { message: "Save Comment", description: "" }, nerPauseAfterEveryTitle: { message: "Pause After Every", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Command line fer navigatin' reddit, togglin' RES settin's, 'n debuggin' RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "View the previous image of an inline gallery.", description: "" }, userInfoInvalidUsernameLink: { message: "Invalid username link.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Move down using Comment Navigator.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Night Mode End", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "Shows date in your local time zone when you hover over a relative date.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Core", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "minimum comments", description: "" }, aboutOptionsCode: { message: "Ye can improve RES wit' yer code, designs, 'n ideas! RES be an open-source project on GitHub.", description: "" }, commentNavDesc: { message: "Provides a comment navigator t' easily spy comments by OP, mod, etc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will save updates to your live thread.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite be released under th' GPL v3.0 license", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Enable On Ban Messages", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Number of days before thread subscriptions expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?", description: "" }, styleTweaksToggleSubredditStyle: { message: "toggle subreddit style", description: "" }, RESTipsDailyTipTitle: { message: "Daily Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "New Comment Count", description: "" }, keyboardNavSlashAllDesc: { message: "Go to /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "Show Parents", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "Frontpage", description: "" }, commentToolsCategory: { message: "category", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "When hovering over [score hidden] show time left instead of hide duration.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Show the time that a text post/comment was edited, without having to hover over the timestamp.", description: "" }, aboutOptionsSearchSettings: { message: "Spy RES settings.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Next Gallery Image", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Subreddit style enabled for subreddit: $1.", description: "" }, notificationsNeverSticky: { message: "never sticky", description: "" }, keyboardNavMoveDownDesc: { message: "Move down to the next link or comment in flat lists.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Show the [-] collapse button in the inbox.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Add this subreddit to your shortcut bar", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Reload Other Tabs", description: "" }, betteRedditVideoTimesTitle: { message: "Video Times", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Appearance", description: "" }, userTaggerShowIgnoredDesc: { message: "Provide a link to reveal an ignored link or comment.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "Italic Key", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Use Reddit Filters", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatically select the last thing you had selected", description: "" }, aboutOptionsPresetsTitle: { message: "Presets", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Default depth to use for all subreddits not listed below.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Hide", description: "" }, aboutOptionsContributorsTitle: { message: "Contributors", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Toggle Help", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "When following a link in new tab - focus the tab?", description: "" }, aboutOptionsFAQ: { message: "Learn more about RES on the /r/Enhancement wiki.", description: "" }, betteRedditPinHeaderDesc: { message: "Pin the subreddit bar, user menu, or header to top, floating down as you scroll.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Show the precise date in the sidebar.", description: "" }, keyboardNavUpVoteDesc: { message: "Upvote selected link or comment (or remove the upvote).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Go to subreddit of selected link (link pages only).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Keep me logged in when I restart my browser.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Toggle expando (image/text/video).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "View comments for link in a new tab.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "Backup", description: "" }, profileNavigatorHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES allows you to disable specific subreddit styles!", description: "" }, customTogglesDesc: { message: "Set up custom on/off switches for various parts of RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Formatting Tool Buttons", description: "" }, commentPreviewEnableForWikiDesc: { message: "Show preview for wiki pages.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Image Move Up", description: "" }, settingsNavDesc: { message: "Helping you get around the RES Settings Console with greater ease.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox", description: "" }, usernameHiderName: { message: "Username Hider", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "enabled", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Table Tools", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "User not found.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Truncate Long Links", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Launch RES command line.", description: "" }, nerHideDupesDontHide: { message: "Do not hide", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "your votes for $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Add macro buttons to the edit form for posts, comments, and other snudown/markdown text areas.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Move the image(s) in the highlighted post area right.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alien)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Open Big Editor", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height", description: "" }, pageNavShowLinkNewTabTitle: { message: "Show Link New Tab", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Non-linear Scroll Style", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Open the current markdown field in the big editor. (Only when a markdown form is focused).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Set depth on links to particular comments with context.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Go to subreddit front page.", description: "" }, menuName: { message: "RES Menu", description: "" }, messageMenuDesc: { message: "Hover over the mail icon to access different types of messages or to compose a new message.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Play a transition when you open and close tabs.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "After hiding a link, automatically select the next link.", description: "" }, commentStyleDesc: { message: "Add readability enhancements to comments.", description: "" }, keyboardNavRandomDesc: { message: "Go to a random subreddit.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "Commenting As", description: "" }, keyboardNavImageSizeUpDesc: { message: "Increase the size of image(s) in the highlighted post area.", description: "" }, floaterDesc: { message: "Managing free-floating RES elements.", description: "" }, subredditManDesc: { message: "Allows you to customize the top bar with your own subreddit shortcuts, including dropdown menus of multi-reddits and more.", description: "" }, keyboardNavSavePostDesc: { message: "Save the current post to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Enable Big Editor", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification", description: "" }, announcementsDesc: { message: "Keep up with important news.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Add Row", description: "" }, keyboardNavReplyDesc: { message: "Reply to current comment (comment pages only).", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "RES Notifications", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "View comments for link (shift opens them in a new tab).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Show the markdown live preview directly in the sidebar when editing.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Profile New Tab", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Follow Link And Comments New Tab", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Multireddit Navigation", description: "" }, keyboardNavToggleExpandoTitle: { message: "Toggle Expando", description: "" }, showKarmaName: { message: "Show Karma", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Subreddit Autocomplete", description: "" }, settingsNavName: { message: "RES Settings Navigation", description: "" }, contributeName: { message: "Donate and Contribute", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Disable Comment Textarea", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Set depth on links to particular comments.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Show a menu linking to various sections of the current user's profile when hovering your mouse over the username link in the top right corner.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "Editing Tools", description: "" }, accountSwitcherAccountsDesc: { message: "Set your usernames and passwords below. They are only stored in RES preferences.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "When filtering subreddits with the above option, where should they be filtered?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Live Preview", description: "" }, hoverOpenDelayDesc: { message: "Default delay between mouseover and the popup opening.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color of the bar when collapsed.", description: "" }, announcementsName: { message: "RES Announcements", description: "" }, betteRedditVideoViewedDesc: { message: "Show number of views for a video when possible.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Move To Top Comment", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "reload", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, notificationsNotificationID: { message: "notification ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Show Snudown Source", description: "" }, keyboardNavInboxDesc: { message: "Go to inbox.", description: "" }, gfycatUseMobileGfycatDesc: { message: "Use mobile (lower resolution) gifs from gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Toggle View Images", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Backup 'n restore yer RES settin's.", description: "" }, showParentDesc: { message: 'Shows the parent comments when hovering over the "parent" link of a comment.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Decrease the size of image(s) in the highlighted post area.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Show Input Length", description: "" }, keyboardNavSaveRESDesc: { message: "Save the current comment with RES. This does preserve the original text of the comment, but is only saved locally.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Ensures thar'l always be more reddit posts on yer horizon", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "Don't filter anything on users' profile pages.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Restore", description: "" }, logoLinkCustom: { message: "Custom", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Enable or disable everything connected to this toggle; and optionally add a toggle to the RES gear dropdown menu.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Show comment continuity lines.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Stop filtering this subreddit from /r/all and /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Default Posts", description: "" }, contextViewFullContextTitle: { message: "View Full Context", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacy", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Add tool to show the original text on posts and comments, before reddit formats the text.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Move down to the next comment on threaded comment pages.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Provides utilities to help with submitting a post.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Automatic", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separator", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Default delay before the popup fades after mouseout.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Location when you click on the reddit logo.", description: "" }, settingsConsoleName: { message: "Settings Console", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Subreddit-specific comment depths.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Go to modmail.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "Default sort method for new widgets.", description: "" }, dashboardDefaultSortSearchDesc: { message: "Default sort method for new search widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "After switching accounts, automatically reload other tabs.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "enabled", description: "" }, nightModeColoredLinksTitle: { message: "Colored Links", description: "" }, modhelperDesc: { message: "Helps moderators via tips and tricks for playing nice with RES.", description: "" }, quickMessageName: { message: "Quick Message", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Enable this feature again", description: "" }, userHighlightDesc: { message: "Be highlightin' certain Gentlemen o' fortune in comment threads: OP, Admin, bucko's and Mods", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Scroll window to top of link when expando key is used (to keep pics etc in view).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, userInfoAddRemoveFriends: { message: "$1 hearties ", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups", description: "" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Message Menu", description: "" }, aboutOptionsSuggestions: { message: "If you have an idea for RES or want to chat with other users, visit /r/Enhancement.", description: "" }, userbarHiderName: { message: "User Bar Hider", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "When jumping to a entry (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), when and how should RES scroll the window?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "All caches cleared.", description: "" }, localDateName: { message: "Local Date", description: "" }, commentStyleCommentRoundedDesc: { message: "Round corners of comment boxes.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Use Go Mode", description: "" }, messageMenuLabel: { message: "label", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Show Current User Name", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filter", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Show Unread Count In Title", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Sidebar Preview", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Follow Subreddit New Tab", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Show user autocomplete tool when typing in posts, comments, and replies.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Add a quick NSFW on/off toggle to the gear menu.", description: "" }, subredditInfoSubscribe: { message: "subscribe", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Downvote selected link or comment (or remove the downvote).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter Submits Comments", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter Submits Posts", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit created:", description: "" }, multiredditNavbarLabel: { message: "label", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Hover Delay", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Show preview for ban notes.", description: "" }, usersCategory: { message: "Gentlemen o' fortune", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Color links blue and purple.", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit not found.", description: "" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here.", description: "" }, resTipsName: { message: "RES Tips and Tricks", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Toggle Cmd Line", description: "" }, contextName: { message: "Context", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: `This will kill all your settings and saved data. If you're certain, type in "$1".`, description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "User suspended.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "Links", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Move to top of list (on link pages).", description: "" }, contextDefaultContextTitle: { message: "Default Context", description: "" }, userTaggerTagUserAs: { message: "tag user $1 as: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Move Down Sibling", description: "" }, customTogglesName: { message: "Custom Toggles", description: "" }, pageNavShowLinkTitle: { message: "Show Link", description: "" }, keyboardNavProfileNewTabDesc: { message: "Go to profile in a new tab.", description: "" }, aboutCategory: { message: "About RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "Gift Reddit Gold", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restore a backup of your RES settings.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Show preview for comments.", description: "" }, spamButtonName: { message: "Spam Button", description: "" }, hoverInstancesTitle: { message: "Instances", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colors couldn't be generated. This is probably due to the use of colors in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Use keyboard shortcuts to apply styles to selected text.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Automatically hide search options and suggestions on the search page.", description: "" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions.", description: "" }, logoLinkDashboard: { message: "Dashboard", description: "" }, dashboardDashboardShortcutDesc: { message: "Show +dashboard shortcut in sidebar for easy addition of dashboard widgets.", description: "" }, userInfoName: { message: "User Info", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Width of the bar.", description: "" }, filteRedditDomainsTitle: { message: "Domains", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Hide Mod Mail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Open On Highlight User", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "Read about RES's privacy policy.", description: "" }, commentStyleContinuityTitle: { message: "Continuity", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Show details of each account in the Account Switcher, such as karma or gold status.", description: "" }, browsingCategory: { message: "Browsin'", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Are you sure you want to delete the tag for user: $1?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Move Down Thread", description: "" }, keyboardNavInboxTitle: { message: "Inbox", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "Unhighlight", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Show By Default", description: "" } }; // locales/locales/en_CA.json var en_CA_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Display Comment Navigator when a user is highlighted.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Show the precise date for comments / messages.", description: "" }, commentPrevDesc: { message: "Provides a live preview while editing comments, text submissions, messages, wiki pages, and other markdown text areas; as well as a two column editor for writing walls of text.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Swap the preview and editor (so preview is on left and editor is on right).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Move Down Comment", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Show link to my dashboard in RES menu.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "User has Reddit Gold", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Move Up Sibling", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Comment Indent", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Turn off all the RES modules", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Show the precise date in the moderation log (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Random", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Follow Comments New Tab", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "unsubscribe", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "Unread Messages", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Show a random tip once every 24 hours.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Keywords", description: "" }, filteRedditAllowNSFWTitle: { message: "Allow NSFW", description: "" }, hoverOpenDelayTitle: { message: "Open Delay", description: "" }, keyboardNavNextPageTitle: { message: "Next Page", description: "" }, commentToolsSuperKeyTitle: { message: "Super Key", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Custom Destination", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Comment Permalinks Context", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Restore Saved Tab", description: "" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Fade or completely hide duplicate posts already showing on the page.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Colour Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "User Tagger", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Comment Navigator Move Down", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Add a button to hide search options while searching.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Move up using Comment Navigator.", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Use the "snoo" icon, or older style dropdown?', description: "" }, userHighlightOPColorTitle: { message: "OP Colour", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Keep Macro List Open", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Toggle Comment Navigator", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Keyboard Shortcuts", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a colour for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Follow link in new tab (link pages only).", description: "" }, onboardingDesc: { message: "Learn more about RES at /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Colour", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the colour of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "NSFW Filter", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Fade Delay", description: "" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsLinkKeyTitle: { message: "Link Key", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+add shortcut", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "Subreddit Front Page", description: "" }, keyboardNavFollowSubredditTitle: { message: "Follow Subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Show Gold", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Colour", description: "" }, stylesheetName: { message: "Stylesheet Loader", description: "" }, subredditInfoOver18: { message: "Over 18:", description: "" }, userInfoIgnore: { message: "Ignore", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "Menu Item", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "Are you positive?", description: "" }, messageMenuAddShortcut: { message: "+add shortcut", description: "" }, troubleshooterName: { message: "Troubleshooter", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Inbox New Tab", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colours", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "After voting on a link, automatically select the next link.", description: "" }, userInfoHighlightColorDesc: { message: 'Colour used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "RES Welcome Wagon", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Colour Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Stop filtering from /r/all and /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Move to the topmost comment of the next thread (in comments).", description: "" }, hoverName: { message: "RES Pop-up Hover", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Enable For Comments", description: "" }, spamButtonDesc: { message: "Adds a Spam button to posts for easy reporting.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "label", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Colour used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Helping you get your daily dose of orangereds.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Night Mode On", description: "" }, myAccountCategory: { message: "My Account", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments", description: "" }, yes: { message: "Yes", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Colour used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Menu Item", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Colour", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Tells you how many comments have been posted since you last viewed a thread.", description: "" }, userTaggerPageXOfY: { message: "$1 of $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "My User Tags", description: "" }, pageNavShowLinkNewTabDesc: { message: "Open link in new tab.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Search Settings", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "Do No Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Colour", description: "" }, commentDepthSubreddit: { message: "subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "Video Viewed", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Put in bold the "Commenting As" part if you are using an alt account. The first account in the Account Switcher module is considered as your main account.', description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "When submitting, display the number of characters entered in the title and text fields and indicate when you go over the 300 character limit for titles.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Increase the size of image(s) in the highlighted post area (finer control).", description: "" }, nerName: { message: "Never Ending Reddit", description: "" }, subredditInfoTitle: { message: "Title:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatic (requires geolocation)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "View link and comments in new background tabs.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Comment Hover Border", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Fade", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Decrease the size of image(s) in the highlighted post area (finer control).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background colour", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Go to next page (link list pages only).", description: "" }, notificationsPerNotificationType: { message: "per notification type", description: "" }, subredditTaggerDesc: { message: "Add custom text to the beginning of submission titles on your front page, multireddits, and /r/all. Useful for adding context to submissions.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Enhance getting to various parts of your user page.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Include additional functionality to Reddit Markdown tables (only sorting at the moment).", description: "" }, notificationsAlwaysSticky: { message: "always sticky", description: "" }, searchName: { message: "Search RES Settings", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Send As", description: "" }, pageNavName: { message: "Page Navigator", description: "" }, keyboardNavFollowLinkDesc: { message: "Follow link (link pages only).", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add colour to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "Saves the state of hidden comments across page views.", description: "" }, quickMessageDesc: { message: "A pop-up dialog that allows you to send messages from anywhere on reddit. Messages can be sent from the quick message dialog by pressing control-enter or command-enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "username", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Night Mode Start", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "User Bar Hidden", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+add subreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Swap Big Editor Layout", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Auto Load", description: "" }, nerReturnToPrevPageDesc: { message: 'Return to the page you were last on when hitting "back" button?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Section Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Move to parent's next sibling (in comments).", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Score Hidden Time Left", description: "" }, hoverWidthDesc: { message: "Default popup width.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Enable/disable night mode.", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Never Ending Comments", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Exclude Own Posts", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Colour", description: "" }, keyboardNavModmailNewTabDesc: { message: "Go to modmail in a new tab.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "Modmail New Tab", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Colour", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Show the Subscribe button?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Colour of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colours", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Enter Filter Command Line", description: "" }, betteRedditDoNoCtrlFDesc: { message: `When using the browser's Ctrl+F/Cmd+F "find text", only search comment/post text and not navigation links ("permalink source save..."). Disabled by default due to a slight performance impact.`, description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special colour for each username.", description: "" }, backupName: { message: "Backup & Restore", description: "" }, profileNavigatorSectionLinksDesc: { message: "Links to display in the profile hover menu.", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "Use subreddit style", description: "" }, userHighlightModColorDesc: { message: "Colour to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Add this subreddit to your dashboard", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, nightModeUseSubredditStylesTitle: { message: "Use Subreddit Styles", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "After voting on a comment, automatically select the next comment.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Use Mobile Gfycat", description: "" }, commentToolsItalicKeyDesc: { message: "Keyboard shortcut to make text italic.", description: "" }, messageMenuLinksDesc: { message: "Links to show in the mail icon drop down menu.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text colour while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit hides some comment sorting options (random, etc.) on most pages. This option reveals them.", description: "" }, commandLineLaunchTitle: { message: "Launch", description: "" }, betteRedditDesc: { message: 'Adds a number of interface enhancements to Reddit, such as "full comments" links, the ability to unhide accidentally hidden posts, and more.', description: "" }, resTipsDesc: { message: "Adds tips/tricks help to RES console.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Move to previous sibling (in comments) - skips to previous sibling at the same depth.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Highlight comment box hierarchy on hover (turn off for faster performance).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Keyboard shortcut to make text bold.", description: "" }, hoverWidthTitle: { message: "Width", description: "" }, dashboardName: { message: "RES Dashboard", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Show Last Edited Timestamp", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Keep Logged In", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Create links to x-posted subreddits in post taglines.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Click here to learn more", description: "" }, keyboardNavInboxNewTabDesc: { message: "Go to inbox in a new tab.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Show preview for editing subreddit settings.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "all users", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "Add an icon to every page that takes you to the top when clicked.", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expand/collapse comments (comments pages only).", description: "" }, commentPreviewDraftStyleTitle: { message: "Draft Style", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Show the precise date in the wiki.", description: "" }, logoLinkInbox: { message: "Inbox", description: "" }, searchHelperDesc: { message: "Provide help with the use of search.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Follow Link New Tab Focus", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Show Timestamp Posts", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "Presets", description: "" }, styleTweaksName: { message: "Style Tweaks", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Announcements", description: "" }, hoverInstancesDesc: { message: "Manage particular pop-ups", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Colour", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Move up to the previous comment on threaded comment pages.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Show Timestamp Sidebar", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Fade Speed", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Delay, in milliseconds, before a hidden link fades.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Show Karma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatic Night Mode", description: "" }, noPartDisableCommentTextareaDesc: { message: "Disable commenting.", description: "" }, nerReturnToPrevPageTitle: { message: "Return To Previous Page", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'Add a "View the Full Context" link when on a comment link.', description: "" }, messageMenuFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsDesc: { message: "Provides tools and shortcuts for composing comments, text posts, wiki pages, and other markdown text areas.", description: "" }, noPartName: { message: "No Participation", description: "" }, presetsDesc: { message: "Select from various preset RES configurations. Each preset turns on or off various modules/options, but does not reset your entire configuration.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Show the comment tools on the ban note textbox.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Go to subreddit of selected link in a new tab (link pages only).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Subreddit Style", description: "" }, keyboardNavDownVoteTitle: { message: "Down Vote", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Move Down", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Notification Types", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "On Vote Comment Move Down", description: "" }, hoverCloseOnMouseOutDesc: { message: "Whether to close the popup on mouseout in addition to the close button.", description: "" }, subredditTaggerName: { message: "Subreddit Tagger", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Highlight If Alt Account", description: "" }, userInfoDesc: { message: "Adds a hover tooltip to users.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Close Delay", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "Allow you to change the link on the reddit logo.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "Number of posts to show by default in each widget.", description: "" }, pageNavDesc: { message: "Provides tools for getting around the page.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Show my current user name in the Account Switcher.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 is in $2 multireddits", description: "" }, commentToolsStrikeKeyTitle: { message: "Strike Key", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colourblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Display Comment Navigator by default.", description: "" }, keyboardNavSaveRESTitle: { message: "Save RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "On Hide Move Down", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Colour used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Comment Boxes", description: "" }, profileNavigatorName: { message: "Profile Navigator", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "No", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Linear Scroll Style", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "Display parent comments.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Quickly customize RES with various presets.", description: "" }, userHighlightOPColorDesc: { message: "Colour to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "Comment Hide Persistor", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Selected Entry", description: "" }, betteRedditPinHeaderTitle: { message: "Pin Header", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Macro Placeholders", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Enable For Ban Messages", description: "" }, userHighlightSelfColorHoverDesc: { message: "Colour used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Open Mail In New Tab", description: "" }, versionDesc: { message: "Handle current/previous version checks.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Colour", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Your username, karma, preferences, RES gear, and so on are hidden. You can show them again by clicking the $1 button in the top right corner.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling", description: "" }, keyboardNavFollowLinkTitle: { message: "Follow Link", description: "" }, keyboardNavMoveBottomDesc: { message: "Move to bottom of list (on link pages).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Upvote selected link or comment (but don't remove the upvote).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Fade Delay", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Comment Permalinks", description: "" }, aboutOptionsLicenseTitle: { message: "License", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Show preview for posts.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Image Move Right", description: "" }, keyboardNavPrevPageDesc: { message: "Go to previous page (link list pages only).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Open links found in comments in a new tab.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colours for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoCommentKarma: { message: "Comment Karma:", description: "" }, settingsConsoleDesc: { message: "Manage your RES settings and preferences.", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Mod Colour", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "Links", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Comments Links New Tabs", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Error loading subreddit info.", description: "" }, accountSwitcherName: { message: "Account Switcher", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Move to next sibling (in comments) - skips to next sibling at the same depth.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Night Switch", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Enable For Posts", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Show help for keyboard shortcuts.", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "Dashboard Shortcut", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Hide", description: "" }, userInfoLink: { message: "Link:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "$1 ago", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background colour while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Show lengths of videos when possible.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignored.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Reply", description: "" }, accountSwitcherSimpleArrow: { message: "simple arrow", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "All options are displayed by default. Uncheck this box if you would like to hide advanced options.", description: "" }, betteRedditFixHideLinksTitle: { message: "Fix Hide Links", description: "" }, commentNavName: { message: "Comment Navigator", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Open Comment Navigator.", description: "" }, presetsLiteDesc: { message: "RES Lite: just the popular stuff", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your comment/wiki edit.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nothing", description: "" }, filteRedditShowFilterlineTitle: { message: "Show Filterline", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Section Links", description: "" }, hideChildCommentsDesc: { message: "Allows you to hide child comments.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Colour Hover", description: "" }, submitHelperName: { message: "Submission Helper", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text colour of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Colour Hover", description: "" }, dashboardDefaultSortTitle: { message: "Default Sort", description: "" }, dashboardDefaultSortSearchTitle: { message: "Default Search Sort", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "Comment Rounded", description: "" }, keyboardNavImageSizeUpTitle: { message: "Image Size Up", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "toggle subreddit style $1 for: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Comments", description: "" }, commentToolsStrikeKeyDesc: { message: "Keyboard shortcut to add a strikethrough.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options", description: "" }, logoLinkMyUserPage: { message: "My user page", description: "" }, keyboardNavUseGoModeDesc: { message: 'Require initiating goMode before using "go to" shortcuts.', description: "" }, easterEggName: { message: "Easter Egg", description: "" }, commentToolsSuperKeyDesc: { message: "Keyboard shortcut to make text superscript.", description: "" }, keyboardNavUpVoteTitle: { message: "Up Vote", description: "" }, notificationNotificationTypesDesc: { message: "Manage different types of notifications.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Post Karma:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "toggle subreddit style $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Read more", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Reddit Logo Destination", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Enable For Subreddit Config", description: "" }, accountSwitcherShowKarmaDesc: { message: "Show the post and comment karma of each account in the Account Switcher.", description: "" }, keyboardNavDesc: { message: "Keyboard navigation for reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Colour used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Move to parent (in comments).", description: "" }, keyboardNavGoModeDesc: { message: 'Enter "goMode" (necessary before using any of the below "go to" shortcuts).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Colour", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "RES Command Line", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Image Move Left", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "The RES Dashboard is home to a number of features including widgets and other useful tools.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "After selecting a macro from the dropdown list, do not hide the list.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddits", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Move the image(s) in the highlighted post area down.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Follow Permalink New Tab", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Removes the height restriction of image(s) in the highlighted post area.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "tag user $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Submit an Issue", description: "" }, aboutOptionsFAQTitle: { message: "FAQ", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Show User Details", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Subreddit style disabled for subreddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Colour for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Update Current Tab", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Comment Navigator Move Up", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Go to profile.", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "View link and comments in new tabs.", description: "" }, onboardingUpdateNotificationName: { message: "Update Notification", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, nightModeNightModeStartDesc: { message: "Time that automatic night mode starts.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Automatically load new page on scroll (if off, you click to load).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a colour for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "sticky", description: "" }, userHighlightAdminColorTitle: { message: "Admin Colour", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Image Size Down", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'The saved tab is now located in the multireddit sidebar. This will restore a "saved" link to the header (next to the "hot", "new", etc. tabs).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Default colour of the bar.", description: "" }, toggleOff: { message: "off", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Show subreddit autocomplete tool when typing in posts, comments, and replies.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Image Size Down Fine", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Show Timestamp Wiki", description: "" }, commentToolsMacrosDesc: { message: "Add buttons to insert frequently used snippets of text.", description: "" }, keyboardNavProfileTitle: { message: "Profile", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Filter Subreddits From", description: "" }, userTaggerShowAnyway: { message: "show anyway?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Clear Cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+add account", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Highlight", description: "" }, filteRedditExcludeModqueueDesc: { message: "Don't filter anything on modqueue pages (modqueue, reports, spam, etc.).", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifications.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Colour Link Score", description: "" }, subredditInfoSubscribers: { message: "Subscribers:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Move to the topmost comment of the previous thread (in comments).", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Show formatting tools (bold, italic, tables, etc.) to the edit form for posts, comments, and other snudown/markdown areas.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Move Bottom", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Colour Hover", description: "" }, spoilerTagsName: { message: "Global Spoiler Tags", description: "" }, betteRedditVideoUploadedDesc: { message: "Show upload date of videos when possible.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Save Comments", description: "" }, hoverFadeSpeedDesc: { message: "Fade speed (in seconds).", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Show the precise date (Sun Nov 16 20:14:56 2014 UTC) instead of a relative date (7 days ago), for posts.", description: "" }, submissionsCategory: { message: "Submissions", description: "" }, keyboardNavSaveCommentDesc: { message: "Save the current comment to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, keyboardNavSavePostTitle: { message: "Save Post", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Font Colour", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "Adds a hover tooltip to subreddits.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu.", description: "" }, commentDepthDesc: { message: "Allows you to set the preferred depth of comments you wish to see when clicking on comments links.\n\n0 = Everything, 1 = Root level, 2 = Responses to root level, 3 = Responses to responses to root level, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Keyboard shortcut to quote text.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Time that automatic night mode ends.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sort", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filters all links labelled NSFW.", description: "" }, logoLinkName: { message: "Logo Link", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "If something isn't working right, visit /r/RESissues for help.", description: "" }, nightModeAutomaticNightModeNone: { message: "Disabled", description: "" }, keyboardNavMoveUpDesc: { message: "Move up to the previous link or comment in flat lists.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "No action was taken.", description: "" }, commentPreviewEnableForWikiTitle: { message: "Enable For Wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Exclude User Pages", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "name", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "Inline Image Viewer", description: "" }, commentStyleCommentIndentDesc: { message: "Indent comments by [x] pixels (only enter the number, no 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Disable RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling", description: "" }, userInfoRedditorSince: { message: "Redditor since:", description: "" }, userTaggerShow: { message: "Show", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "Fade Speed", description: "" }, necLoadChildCommentsTitle: { message: "Load Child Comments", description: "" }, showParentName: { message: "Show Parent on Hover", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Show the gold status of each account in the Account Switcher.", description: "" }, keyboardNavMoveToParentTitle: { message: "Move To Parent", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Show Timestamps Comments", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Accounts", description: "" }, spoilerTagsDesc: { message: "Hide spoilers on user profile pages.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Show Gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "comment depth", description: "" }, keyboardNavImageMoveDownTitle: { message: "Image Move Down", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Previous Gallery Image", description: "" }, userTaggerTaggedUsers: { message: "tagged users", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Move Up Thread", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "Add more info and tweaks to the karma next to your username in the user menu bar.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Colour", description: "" }, userHighlightAdminColorDesc: { message: "Colour to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Default Comment Depth", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Features", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Move Down Parent Sibling", description: "" }, dashboardTagsPerPageTitle: { message: "Tags Per Page", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add colour to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log", description: "" }, userTaggerStoreSourceLinkDesc: { message: "By default, store a link to the link/comment you tagged a user on", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Enhance the navigation bar shown on the left side of the frontpage.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Quote Key", description: "" }, keyboardNavHideDesc: { message: "Hide link.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Bold Key", description: "" }, xPostLinksName: { message: "X-post Links", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Always show a tag tool icon after every username.", description: "" }, commentPreviewDraftStyleDesc: { message: "Apply a 'draft' style background to the preview to differentiate it from the comment textarea.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Follow Comments", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Modmail", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Colour", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Clean Comments", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "Comments", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Force Sync Filters", description: "" }, nerShowServerInfoTitle: { message: "Show Server Info", description: "" }, troubleshooterSettingsReset: { message: "All settings reset. Reload to see the result.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Move the image(s) in the highlighted post area left.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Open the current comment's permalink (comment pages only).", description: "" }, subredditInfoAddRemoveShortcut: { message: "shortcut", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Colour Blind Friendly", description: "" }, userInfoSendMessage: { message: "send message", description: "" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Disable Vote Buttons", description: "" }, commentToolsLinkKeyDesc: { message: "Keyboard shortcut to add a link.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Move Up Comment", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Colour Hover", description: "" }, userTaggerPage: { message: "Page", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Change the default context value on context link.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Image Size Up Fine", description: "" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Show unread message count in favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Search Helper", description: "" }, keyboardNavNextGalleryImageDesc: { message: "View the next image of an inline gallery.", description: "" }, nightModeName: { message: "Night Mode", description: "" }, filteRedditExcludeModqueueTitle: { message: "Exclude Modqueue", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Launch filter command line.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "can't set tag - no post/comment selected.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "on", description: "" }, contextDesc: { message: "Adds a link to the yellow infobar to view deeply linked comments in their full context.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Up Vote Without Toggling", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Move Top", description: "" }, nightModeAutomaticNightModeUser: { message: "User-defined hours", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignored", description: "" }, commentToolsCommentingAsDesc: { message: "Shows your currently logged in username to avoid posting from the wrong account.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Follow Link New Tab", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "You can change this later from the $1 settings", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Toggle", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "After switching accounts, show a warning in other tabs.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Colour to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Backup (export) and restore (import) your Reddit Enhancement Suite settings.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Drop Down Style", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your post.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "option ID", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Load extra stylesheets or your own CSS snippets.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "password", description: "" }, userInfoUnignore: { message: "Unignore", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Colour", description: "" }, commentToolsMacrosTitle: { message: "Macros", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn automatic mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn user-defined hours mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, presetsNoPopupsTitle: { message: "No Popups", description: "" }, searchCopyResultForComment: { message: "copy this for a comment", description: "" }, moduleID: { message: "module ID", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Show unread message count in page/tab title?", description: "" }, xPostLinksXpostedFrom: { message: "x-posted from", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Toggle Children", description: "" }, commandLineLaunchDesc: { message: "Open the RES Command Line", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Subreddit Info", description: "" }, betteRedditVideoUploadedTitle: { message: "Video Uploaded", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, aboutOptionsDonate: { message: "Support further RES development.", description: "" }, aboutOptionsBugsTitle: { message: "Bugs", description: "" }, nerShowPauseButtonTitle: { message: "Show Pause Button", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Single Click Opener", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Number of days before RES stops keeping track of a viewed thread.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Version Manager", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching.", description: "" }, commentDepthName: { message: "Custom Comment Depth", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Show Unread Count In Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Show Subscribe Button", description: "" }, commentToolsKey: { message: "key", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Colour Usernames", description: "" }, commentStyleName: { message: "Comment Style", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Colour Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Show All Options", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "Front Page", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatically scroll to the post/comment that is selected when the page loads", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "text", description: "" }, notificationStickyTitle: { message: "Sticky", description: "" }, aboutOptionsAnnouncements: { message: "Read the latest at /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Automatically hide all but parent comments, or provide a link to hide them all?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Remove this subreddit from your shortcut bar", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "Prev Page", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Highlights comment boxes for easier reading / placefinding in large threads.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "On Vote Move Down", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Hide Dupes", description: "" }, keyboardNavFrontPageDesc: { message: "Go to front page.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Follow Link And Comments New Tab BG", description: "" }, singleClickDesc: { message: "Adds an [l+c] link that opens a link and the comments page in new tabs for you in one click.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Browse by Wheel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Show an envelope (inbox) icon in the top right corner.", description: "" }, aboutName: { message: "About RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background colour of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "Backup", description: "" }, productivityCategory: { message: "Productivity", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "No subreddit specified.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Close On Mouse Out", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Move to the topmost comment of the current thread (in comments).", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Colour", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: 'Changes "hide" links to read as "hide" or "unhide" depending on the hide state.', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 entries removed.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Add tabs to the search page.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter Saves Live Threads", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Subreddit Comment Depths", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Enable the 2 column editor.", description: "" }, floaterName: { message: "Floating Islands", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Colour Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "NSFW Quick Toggle", description: "" }, filteRedditAllowNSFWDesc: { message: "Don't hide NSFW posts from certain subreddits when the NSFW filter is turned on.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Add a toggle button to show or hide the user bar.", description: "" }, showImagesDesc: { message: "Opens images inline in your browser with the click of a button. Also has configuration options, check it out!", description: "" }, commentToolsMacroButtonsTitle: { message: "Macro Buttons", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "Don't filter your own posts.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "Username hider hides your username from displaying on your screen when you're logged in to reddit. This way, if someone looks over your shoulder at work, or if you take a screenshot, your reddit username is not shown. This only affects your screen. There is no way to post or comment on reddit without your post being linked to the account you made it from.", description: "" }, betteRedditName: { message: "betteReddit", description: "" }, voteEnhancementsName: { message: "Vote Enhancements", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Show Hidden Sort Options", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Truncates long post titles (greater than 1 line) with an ellipsis.", description: "" }, subredditInfoAddRemoveDashboard: { message: "dashboard", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "User Autocomplete", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed", description: "" }, aboutOptionsCodeTitle: { message: "Code", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Username", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Move the image(s) in the highlighted post area up.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Donate", description: "" }, keyboardNavGoModeTitle: { message: "Go Mode", description: "" }, keyboardNavName: { message: "Keyboard Navigation", description: "" }, userHighlightModColorHoverDesc: { message: "Colour used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "User Highlighter", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Current subreddit/multireddit", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Follow Permalink", description: "" }, hoverDesc: { message: "Customize the behaviour of the large informational pop-ups which appear when you hover your mouse over certain elements.", description: "" }, modhelperName: { message: "Mod Helper", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Hide All Child Comments", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'You must specify "$1" or "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "Move Up", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Open Quick Message", description: "" }, pageNavToTopTitle: { message: "To Top", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Scroll On Expando", description: "" }, userTaggerTag: { message: "Tag", description: "" }, userbarHiderToggleUserbar: { message: "Toggle Userbar", description: "" }, nerReversePauseIconTitle: { message: "Reverse Pause Icon", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Colour Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Remove this subreddit from your dashboard", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Colour used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Format or show additional information about votes on posts and comments.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Subreddit Manager", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Suggestions", description: "" }, keyboardNavSaveCommentTitle: { message: "Save Comment", description: "" }, nerPauseAfterEveryTitle: { message: "Pause After Every", description: "" }, userHighlightAlumColorDesc: { message: "Colour to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Command line for navigating reddit, toggling RES settings, and debugging RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "View the previous image of an inline gallery.", description: "" }, userInfoInvalidUsernameLink: { message: "Invalid username link.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Move down using Comment Navigator.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Night Mode End", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "Shows date in your local time zone when you hover over a relative date.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Core", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "minimum comments", description: "" }, aboutOptionsCode: { message: "You can improve RES with your code, designs, and ideas! RES is an open-source project on GitHub.", description: "" }, commentNavDesc: { message: "Provides a comment navigation tool to easily find comments by OP, mod, etc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will save updates to your live thread.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite is released under the GPL v3.0 license.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Enable On Ban Messages", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Number of days before thread subscriptions expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?", description: "" }, styleTweaksToggleSubredditStyle: { message: "toggle subreddit style", description: "" }, RESTipsDailyTipTitle: { message: "Daily Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Colour Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "New Comment Count", description: "" }, keyboardNavSlashAllDesc: { message: "Go to /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "Show Parents", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "Frontpage", description: "" }, commentToolsCategory: { message: "category", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "When hovering over [score hidden] show time left instead of hide duration.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Show the time that a text post/comment was edited, without having to hover over the timestamp.", description: "" }, aboutOptionsSearchSettings: { message: "Find RES settings.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Next Gallery Image", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Subreddit style enabled for subreddit: $1.", description: "" }, notificationsNeverSticky: { message: "never sticky", description: "" }, keyboardNavMoveDownDesc: { message: "Move down to the next link or comment in flat lists.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Show the [-] collapse button in the inbox.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Add this subreddit to your shortcut bar", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Reload Other Tabs", description: "" }, betteRedditVideoTimesTitle: { message: "Video Times", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Appearance", description: "" }, userTaggerShowIgnoredDesc: { message: "Provide a link to reveal an ignored link or comment.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "Italic Key", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Use Reddit Filters", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Colouration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatically select the last thing you had selected", description: "" }, aboutOptionsPresetsTitle: { message: "Presets", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Default depth to use for all subreddits not listed below.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a colour for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Hide", description: "" }, aboutOptionsContributorsTitle: { message: "Contributors", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Toggle Help", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "When following a link in new tab - focus the tab?", description: "" }, aboutOptionsFAQ: { message: "Learn more about RES on the /r/Enhancement wiki.", description: "" }, betteRedditPinHeaderDesc: { message: "Pin the subreddit bar, user menu, or header to top, floating down as you scroll.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Show the precise date in the sidebar.", description: "" }, keyboardNavUpVoteDesc: { message: "Upvote selected link or comment (or remove the upvote).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Go to subreddit of selected link (link pages only).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Keep me logged in when I restart my browser.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Toggle expando (image/text/video).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "View comments for link in a new tab.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "Backup", description: "" }, profileNavigatorHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES allows you to disable specific subreddit styles!", description: "" }, customTogglesDesc: { message: "Set up custom on/off switches for various parts of RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Formatting Tool Buttons", description: "" }, commentPreviewEnableForWikiDesc: { message: "Show preview for wiki pages.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Image Move Up", description: "" }, settingsNavDesc: { message: "Helping you get around the RES Settings Console with greater ease.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox", description: "" }, usernameHiderName: { message: "Username Hider", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "enabled", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Table Tools", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "User not found.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Truncate Long Links", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Launch RES command line.", description: "" }, nerHideDupesDontHide: { message: "Do not hide", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "your votes for $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Add macro buttons to the edit form for posts, comments, and other snudown/markdown text areas.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Move the image(s) in the highlighted post area right.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add colour to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Colour", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alien)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colours", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Open Big Editor", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height", description: "" }, pageNavShowLinkNewTabTitle: { message: "Show Link New Tab", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover colour based on normal colour.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Non-linear Scroll Style", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Open the current markdown field in the big editor. (Only when a markdown form is focused).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Set depth on links to particular comments with context.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Go to subreddit front page.", description: "" }, menuName: { message: "RES Menu", description: "" }, messageMenuDesc: { message: "Hover over the mail icon to access different types of messages or to compose a new message.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Play a transition when you open and close tabs.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "After hiding a link, automatically select the next link.", description: "" }, commentStyleDesc: { message: "Add readability enhancements to comments.", description: "" }, keyboardNavRandomDesc: { message: "Go to a random subreddit.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colours when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "Commenting As", description: "" }, keyboardNavImageSizeUpDesc: { message: "Increase the size of image(s) in the highlighted post area.", description: "" }, floaterDesc: { message: "Managing free-floating RES elements.", description: "" }, subredditManDesc: { message: "Allows you to customize the top bar with your own subreddit shortcuts, including dropdown menus of multi-reddits and more.", description: "" }, keyboardNavSavePostDesc: { message: "Save the current post to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Enable Big Editor", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification", description: "" }, announcementsDesc: { message: "Keep up with important news.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Add Row", description: "" }, keyboardNavReplyDesc: { message: "Reply to current comment (comment pages only).", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "RES Notifications", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "View comments for link (shift opens them in a new tab).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Show the markdown live preview directly in the sidebar when editing.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Profile New Tab", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Follow Link And Comments New Tab", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Multireddit Navigation", description: "" }, keyboardNavToggleExpandoTitle: { message: "Toggle Expando", description: "" }, showKarmaName: { message: "Show Karma", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Colouration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Subreddit Autocomplete", description: "" }, settingsNavName: { message: "RES Settings Navigation", description: "" }, contributeName: { message: "Donate and Contribute", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Disable Comment Textarea", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Set depth on links to particular comments.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Show a menu linking to various sections of the current user's profile when hovering your mouse over the username link in the top right corner.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the colour to separate top-level comments.", description: "" }, commentToolsName: { message: "Editing Tools", description: "" }, accountSwitcherAccountsDesc: { message: "Set your usernames and passwords below. They are only stored in RES preferences.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "When filtering subreddits with the above option, where should they be filtered?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Live Preview", description: "" }, hoverOpenDelayDesc: { message: "Default delay between mouseover and the popup opening.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Colour of the bar when collapsed.", description: "" }, announcementsName: { message: "RES Announcements", description: "" }, betteRedditVideoViewedDesc: { message: "Show number of views for a video when possible.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Move To Top Comment", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "reload", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, notificationsNotificationID: { message: "notification ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Show Snudown Source", description: "" }, keyboardNavInboxDesc: { message: "Go to inbox.", description: "" }, gfycatUseMobileGfycatDesc: { message: "Use mobile (lower resolution) gifs from gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Toggle View Images", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Backup (export) and restore (import) your RES settings.", description: "" }, showParentDesc: { message: 'Shows the parent comments when hovering over the "parent" link of a comment.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Decrease the size of image(s) in the highlighted post area.", description: "" }, userHighlightSelfColorTitle: { message: "Self Colour", description: "" }, commentToolsShowInputLengthTitle: { message: "Show Input Length", description: "" }, keyboardNavSaveRESDesc: { message: "Save the current comment with RES. This does preserve the original text of the comment, but is only saved locally.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Inspired by modules like River of Reddit and Auto Pager - gives you a never ending stream of reddit goodness.", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "Don't filter anything on users' profile pages.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Restore", description: "" }, logoLinkCustom: { message: "Custom", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Enable or disable everything connected to this toggle; and optionally add a toggle to the RES gear dropdown menu.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Show comment continuity lines.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Stop filtering this subreddit from /r/all and /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Default Posts", description: "" }, contextViewFullContextTitle: { message: "View Full Context", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacy", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Add tool to show the original text on posts and comments, before reddit formats the text.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Move down to the next comment on threaded comment pages.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Provides utilities to help with submitting a post.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Automatic", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separator", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Default delay before the popup fades after mouseout.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Location when you click on the reddit logo.", description: "" }, settingsConsoleName: { message: "Settings Console", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Subreddit-specific comment depths.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Colour Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Go to modmail.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "Default sort method for new widgets.", description: "" }, dashboardDefaultSortSearchDesc: { message: "Default sort method for new search widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "After switching accounts, automatically reload other tabs.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "enabled", description: "" }, nightModeColoredLinksTitle: { message: "Coloured Links", description: "" }, modhelperDesc: { message: "Helps moderators via tips and tricks for playing nice with RES.", description: "" }, quickMessageName: { message: "Quick Message", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Enable this feature again", description: "" }, userHighlightDesc: { message: "Highlights certain users in comment threads: OP, Admin, Friends, Mod - contributed by MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Scroll window to top of link when expando key is used (to keep pics etc in view).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, userInfoAddRemoveFriends: { message: "$1 friends", description: "" }, userHighlightSelfColorDesc: { message: "Colour to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups", description: "" }, userHighlightFriendColorDesc: { message: "Colour to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Message Menu", description: "" }, aboutOptionsSuggestions: { message: "If you have an idea for RES or want to chat with other users, visit /r/Enhancement.", description: "" }, userbarHiderName: { message: "User Bar Hider", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "When jumping to a entry (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), when and how should RES scroll the window?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "All caches cleared.", description: "" }, localDateName: { message: "Local Date", description: "" }, commentStyleCommentRoundedDesc: { message: "Round corners of comment boxes.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Use Go Mode", description: "" }, messageMenuLabel: { message: "label", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Colour used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Show Current User Name", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filter", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Show Unread Count In Title", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Sidebar Preview", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Follow Subreddit New Tab", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Show user autocomplete tool when typing in posts, comments, and replies.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Add a quick NSFW on/off toggle to the gear menu.", description: "" }, subredditInfoSubscribe: { message: "subscribe", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Downvote selected link or comment (or remove the downvote).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter Submits Comments", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter Submits Posts", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit created:", description: "" }, multiredditNavbarLabel: { message: "label", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Colour Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Hover Delay", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Show preview for ban notes.", description: "" }, usersCategory: { message: "Users", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Colour links blue and purple.", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit not found.", description: "" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here.", description: "" }, resTipsName: { message: "RES Tips and Tricks", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Toggle Cmd Line", description: "" }, contextName: { message: "Context", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: `This will kill all your settings and saved data. If you're certain, type in "$1".`, description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "User suspended.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "Links", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Move to top of list (on link pages).", description: "" }, contextDefaultContextTitle: { message: "Default Context", description: "" }, userTaggerTagUserAs: { message: "tag user $1 as: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Move Down Sibling", description: "" }, customTogglesName: { message: "Custom Toggles", description: "" }, pageNavShowLinkTitle: { message: "Show Link", description: "" }, keyboardNavProfileNewTabDesc: { message: "Go to profile in a new tab.", description: "" }, aboutCategory: { message: "About RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "Gift Reddit Gold", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restore a backup of your RES settings.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Show preview for comments.", description: "" }, spamButtonName: { message: "Spam Button", description: "" }, hoverInstancesTitle: { message: "Instances", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colours couldn't be generated. This is probably due to the use of colours in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Use keyboard shortcuts to apply styles to selected text.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Automatically hide search options and suggestions on the search page.", description: "" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions.", description: "" }, logoLinkDashboard: { message: "Dashboard", description: "" }, dashboardDashboardShortcutDesc: { message: "Show +dashboard shortcut in sidebar for easy addition of dashboard widgets.", description: "" }, userInfoName: { message: "User Info", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Width of the bar.", description: "" }, filteRedditDomainsTitle: { message: "Domains", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Hide Mod Mail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Open On Highlight User", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "Read about RES's privacy policy.", description: "" }, commentStyleContinuityTitle: { message: "Continuity", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Show details of each account in the Account Switcher, such as karma or gold status.", description: "" }, browsingCategory: { message: "Browsing", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Are you sure you want to delete the tag for user: $1?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Move Down Thread", description: "" }, keyboardNavInboxTitle: { message: "Inbox", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "Unhighlight", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Show By Default", description: "" } }; // locales/locales/en_GB.json var en_GB_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Display Comment Navigator when a user is highlighted ", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Show the precise date for comments / messages.", description: "" }, commentPrevDesc: { message: "Provides a live preview while editing comments, text submissions, messages, wiki pages, and other markdown text areas; as well as a two column editor for writing walls of text.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Swap the preview and editor (so preview is on left and editor is on right).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Move Down Comment", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Show link to my dashboard in RES menu.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "User has Reddit Gold", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Move Up Sibling", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Comment Indent", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Turn off all the RES modules", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Show the precise date in the moderation log (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Random", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Follow Comments New Tab", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "unsubscribe", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "Unread Messages", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Show a random tip once every 24 hours.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Keywords", description: "" }, filteRedditAllowNSFWTitle: { message: "Allow NSFW", description: "" }, hoverOpenDelayTitle: { message: "Open Delay", description: "" }, keyboardNavNextPageTitle: { message: "Next Page", description: "" }, commentToolsSuperKeyTitle: { message: "Super Key", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Custom Destination", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Comment Permalinks Context", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Restore Saved Tab", description: "" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Fade or completely hide duplicate posts already showing on the page.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Colour Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "User Tagger", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Comment Navigator Move Down", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Add a button to hide search options while searching.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Move up using Comment Navigator.", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Use the "snoo" icon, or older style dropdown?', description: "" }, userHighlightOPColorTitle: { message: "OP Colour", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Keep Macro List Open", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Toggle Comment Navigator", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Keyboard Shortcuts", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a colour for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Follow link in new tab (link pages only).", description: "" }, onboardingDesc: { message: "Learn more about RES at /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Colour", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the colour of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "NSFW Filter", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Fade Delay", description: "" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsLinkKeyTitle: { message: "Link Key", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+add shortcut", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "Subreddit Front Page", description: "" }, keyboardNavFollowSubredditTitle: { message: "Follow Subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Show Gold", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Colour", description: "" }, stylesheetName: { message: "Stylesheet Loader", description: "" }, subredditInfoOver18: { message: "Over 18:", description: "" }, userInfoIgnore: { message: "Ignore", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalised shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "Menu Item", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "Are you positive?", description: "" }, messageMenuAddShortcut: { message: "+add shortcut", description: "" }, troubleshooterName: { message: "Troubleshooter", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Inbox New Tab", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colours", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "After voting on a link, automatically select the next link.", description: "" }, userInfoHighlightColorDesc: { message: 'Colour used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "RES Welcome Wagon", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Colour Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Stop filtering from /r/all and /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Move to the topmost comment of the next thread (in comments).", description: "" }, hoverName: { message: "RES Pop-up Hover", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Enable For Comments", description: "" }, spamButtonDesc: { message: "Adds a Spam button to posts for easy reporting.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "label", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Colour used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Helping you get your daily dose of orangereds.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Night Mode On", description: "" }, myAccountCategory: { message: "My Account", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments", description: "" }, yes: { message: "Yes", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Colour used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Menu Item", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Colour", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalisation on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Tells you how many comments have been posted since you last viewed a thread.", description: "" }, userTaggerPageXOfY: { message: "$1 of $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "My User Tags", description: "" }, pageNavShowLinkNewTabDesc: { message: "Open link in new tab.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Search Settings ", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "Do No Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Colour", description: "" }, commentDepthSubreddit: { message: "subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "Video Viewed", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Put in bold the "Commenting As" part if you are using an alt account. The first account in the Account Switcher module is considered as your main account.', description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "When submitting, display the number of characters entered in the title and text fields and indicate when you go over the 300 character limit for titles.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Increase the size of image(s) in the highlighted post area (finer control).", description: "" }, nerName: { message: "Never Ending Reddit", description: "" }, subredditInfoTitle: { message: "Title:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatic (requires geolocation)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "View link and comments in new background tabs.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Comment Hover Border", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Fade", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Decrease the size of image(s) in the highlighted post area (finer control).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background colour", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Go to next page (link list pages only).", description: "" }, notificationsPerNotificationType: { message: "per notification type", description: "" }, subredditTaggerDesc: { message: "Add custom text to the beginning of submission titles on your front page, multireddits, and /r/all. Useful for adding context to submissions.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Enhance getting to various parts of your user page.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Include additional functionality to Reddit Markdown tables (only sorting at the moment).", description: "" }, notificationsAlwaysSticky: { message: "always sticky", description: "" }, searchName: { message: "Search RES Settings", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Send As", description: "" }, pageNavName: { message: "Page Navigator", description: "" }, keyboardNavFollowLinkDesc: { message: "Follow link (link pages only).", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add colour to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "Saves the state of hidden comments across page views.", description: "" }, quickMessageDesc: { message: "A pop-up dialog that allows you to send messages from anywhere on reddit. Messages can be sent from the quick message dialog by pressing control-enter or command-enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "username", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Night Mode Start", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "User Bar Hidden", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+add subreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Swap Big Editor Layout", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Auto Load", description: "" }, nerReturnToPrevPageDesc: { message: 'Return to the page you were last on when hitting "back" button?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Section Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Move to parent's next sibling (in comments).", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Score Hidden Time Left", description: "" }, hoverWidthDesc: { message: "Default popup width.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Enable/disable night mode.", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Never Ending Comments", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Exclude Own Posts", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Colour", description: "" }, keyboardNavModmailNewTabDesc: { message: "Go to modmail in a new tab.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "Modmail New Tab", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Colour", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Show the Subscribe button?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Colour of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colours", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Enter Filter Command Line", description: "" }, betteRedditDoNoCtrlFDesc: { message: `When using the browser's Ctrl+F/Cmd+F "find text", only search comment/post text and not navigation links ("permalink source save..."). Disabled by default due to a slight performance impact.`, description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special colour for each username.", description: "" }, backupName: { message: "Backup & Restore", description: "" }, profileNavigatorSectionLinksDesc: { message: "Links to display in the profile hover menu.", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "Use subreddit style", description: "" }, userHighlightModColorDesc: { message: "Colour to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Add this subreddit to your dashboard", description: "" }, userTaggerDesc: { message: "Adds a great deal of customisation around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, nightModeUseSubredditStylesTitle: { message: "Use Subreddit Styles", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "After voting on a comment, automatically select the next comment.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Use Mobile Gfycat", description: "" }, commentToolsItalicKeyDesc: { message: "Keyboard shortcut to make text italic.", description: "" }, messageMenuLinksDesc: { message: "Links to show in the mail icon drop down menu.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text colour while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit hides some comment sorting options (random, etc.) on most pages. This option reveals them.", description: "" }, commandLineLaunchTitle: { message: "Launch", description: "" }, betteRedditDesc: { message: 'Adds a number of interface enhancements to Reddit, such as "full comments" links, the ability to unhide accidentally hidden posts, and more.', description: "" }, resTipsDesc: { message: "Adds tips/tricks help to RES console.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Move to previous sibling (in comments) - skips to previous sibling at the same depth.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Highlight comment box hierarchy on hover (turn off for faster performance).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Keyboard shortcut to make text bold.", description: "" }, hoverWidthTitle: { message: "Width", description: "" }, dashboardName: { message: "RES Dashboard", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Show Last Edited Timestamp", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Keep Logged In", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Create links to x-posted subreddits in post taglines.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Click here to learn more", description: "" }, keyboardNavInboxNewTabDesc: { message: "Go to inbox in a new tab.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Show preview for editing subreddit settings.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "all users", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "Add an icon to every page that takes you to the top when clicked.", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expand/collapse comments (comments pages only).", description: "" }, commentPreviewDraftStyleTitle: { message: "Draft Style", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Show the precise date in the wiki.", description: "" }, logoLinkInbox: { message: "Inbox", description: "" }, searchHelperDesc: { message: "Provide help with the use of search.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Follow Link New Tab Focus", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Show Timestamp Posts", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "Presets", description: "" }, styleTweaksName: { message: "Style Tweaks", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Announcements", description: "" }, hoverInstancesDesc: { message: "Manage particular pop-ups", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Colour", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Move up to the previous comment on threaded comment pages.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Show Timestamp Sidebar", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Fade Speed", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Delay, in milliseconds, before a hidden link fades.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Show Karma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatic Night Mode", description: "" }, noPartDisableCommentTextareaDesc: { message: "Disable commenting.", description: "" }, nerReturnToPrevPageTitle: { message: "Return To Previous Page", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'Add a "View the Full Context" link when on a comment link.', description: "" }, messageMenuFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsDesc: { message: "Provides tools and shortcuts for composing comments, text posts, wiki pages, and other markdown text areas.", description: "" }, noPartName: { message: "No Participation", description: "" }, presetsDesc: { message: "Select from various preset RES configurations. Each preset turns on or off various modules/options, but does not reset your entire configuration.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Show the comment tools on the ban note textbox.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Go to subreddit of selected link in a new tab (link pages only).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Subreddit Style", description: "" }, keyboardNavDownVoteTitle: { message: "Down Vote", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Move Down", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Notification Types", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "On Vote Comment Move Down", description: "" }, hoverCloseOnMouseOutDesc: { message: "Whether to close the pop-up on mouseout in addition to the close button.", description: "" }, subredditTaggerName: { message: "Subreddit Tagger", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Highlight If Alt Account", description: "" }, userInfoDesc: { message: "Adds a hover tooltip to users.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Close Delay", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "Allow you to change the link on the reddit logo.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "Number of posts to show by default in each widget.", description: "" }, pageNavDesc: { message: "Provides tools for getting around the page.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Show my current user name in the Account Switcher.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 is in $2 multireddits", description: "" }, commentToolsStrikeKeyTitle: { message: "Strike Key", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colourblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Display Comment Navigator by Default", description: "" }, keyboardNavSaveRESTitle: { message: "Save RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "On Hide Move Down", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Colour used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Comment Boxes", description: "" }, profileNavigatorName: { message: "Profile Navigator", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "No", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Linear Scroll Style", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "Display parent comments.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Quickly customise RES with various presets.", description: "" }, userHighlightOPColorDesc: { message: "Colour to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "Comment Hide Persistor", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Selected Entry", description: "" }, betteRedditPinHeaderTitle: { message: "Pin Header", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Macro Placeholders", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Enable For Ban Messages", description: "" }, userHighlightSelfColorHoverDesc: { message: "Colour used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Open Mail In New Tab", description: "" }, versionDesc: { message: "Handle current/previous version checks.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Colour", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Your username, karma, preferences, RES gear, and so on are hidden. You can show them again by clicking the $1 button in the top right corner.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling", description: "" }, keyboardNavFollowLinkTitle: { message: "Follow Link", description: "" }, keyboardNavMoveBottomDesc: { message: "Move to bottom of list (on link pages).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Upvote selected link or comment (but don't remove the upvote).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Fade Delay", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Comment Permalinks", description: "" }, aboutOptionsLicenseTitle: { message: "License", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Show preview for posts.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Image Move Right", description: "" }, keyboardNavPrevPageDesc: { message: "Go to previous page (link list pages only).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Open links found in comments in a new tab.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colours for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoCommentKarma: { message: "Comment Karma:", description: "" }, settingsConsoleDesc: { message: "Manage your RES settings and preferences.", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Mod Colour", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "Links", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Comments Links New Tabs", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Error loading subreddit info.", description: "" }, accountSwitcherName: { message: "Account Switcher", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Move to next sibling (in comments) - skips to next sibling at the same depth.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Night Switch", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Enable For Posts", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Show help for keyboard shortcuts.", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "Dashboard Shortcut", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Hide", description: "" }, userInfoLink: { message: "Link:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "$1 ago", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background colour while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Show lengths of videos when possible.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignored.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Reply", description: "" }, accountSwitcherSimpleArrow: { message: "simple arrow", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "All options are displayed by default. Uncheck this box if you would like to hide advanced options.", description: "" }, betteRedditFixHideLinksTitle: { message: "Fix Hide Links", description: "" }, commentNavName: { message: "Comment Navigator", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Open Comment Navigator.", description: "" }, presetsLiteDesc: { message: "RES Lite: just the popular stuff", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your comment/wiki edit.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nothing", description: "" }, filteRedditShowFilterlineTitle: { message: "Show Filterline", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Section Links", description: "" }, hideChildCommentsDesc: { message: "Allows you to hide child comments.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Colour Hover", description: "" }, submitHelperName: { message: "Submission Helper", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text colour of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Colour Hover", description: "" }, dashboardDefaultSortTitle: { message: "Default Sort", description: "" }, dashboardDefaultSortSearchTitle: { message: "Default Search Sort", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "Comment Rounded", description: "" }, keyboardNavImageSizeUpTitle: { message: "Image Size Up", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "toggle subreddit style $1 for: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Comments", description: "" }, commentToolsStrikeKeyDesc: { message: "Keyboard shortcut to add a strikethrough.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options", description: "" }, logoLinkMyUserPage: { message: "My user page", description: "" }, keyboardNavUseGoModeDesc: { message: 'Require initiating goMode before using "go to" shortcuts.', description: "" }, easterEggName: { message: "Easter Egg", description: "" }, commentToolsSuperKeyDesc: { message: "Keyboard shortcut to make text superscript.", description: "" }, keyboardNavUpVoteTitle: { message: "Up Vote", description: "" }, notificationNotificationTypesDesc: { message: "Manage different types of notifications.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Post Karma:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "toggle subreddit style $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Read more", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Reddit Logo Destination", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Enable For Subreddit Config", description: "" }, accountSwitcherShowKarmaDesc: { message: "Show the post and comment karma of each account in the Account Switcher.", description: "" }, keyboardNavDesc: { message: "Keyboard navigation for reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Colour used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Move to parent (in comments).", description: "" }, keyboardNavGoModeDesc: { message: 'Enter "goMode" (necessary before using any of the below "go to" shortcuts).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Colour", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "RES Command Line", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Image Move Left", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "The RES Dashboard is home to a number of features including widgets and other useful tools.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "After selecting a macro from the dropdown list, do not hide the list.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddits", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Move the image(s) in the highlighted post area down.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Follow Permalink New Tab", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Removes the height restriction of image(s) in the highlighted post area.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "tag user $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Submit an Issue", description: "" }, aboutOptionsFAQTitle: { message: "FAQ", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Show User Details", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Subreddit style disabled for subreddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Colour for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Update Current Tab", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Comment Navigator Move Up", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Go to profile.", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "View link and comments in new tabs.", description: "" }, onboardingUpdateNotificationName: { message: "Update Notification", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, nightModeNightModeStartDesc: { message: "Time that automatic night mode starts.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Automatically load new page on scroll (if off, you click to load).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a colour for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "sticky", description: "" }, userHighlightAdminColorTitle: { message: "Admin Colour", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Image Size Down", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'The saved tab is now located in the multireddit sidebar. This will restore a "saved" link to the header (next to the "hot", "new", etc. tabs).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Default colour of the bar.", description: "" }, toggleOff: { message: "off", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Show subreddit autocomplete tool when typing in posts, comments, and replies.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Image Size Down Fine", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Show Timestamp Wiki", description: "" }, commentToolsMacrosDesc: { message: "Add buttons to insert frequently used snippets of text.", description: "" }, keyboardNavProfileTitle: { message: "Profile", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Filter Subreddits From", description: "" }, userTaggerShowAnyway: { message: "show anyway?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Clear Cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+add account", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Highlight", description: "" }, filteRedditExcludeModqueueDesc: { message: "Don't filter anything on modqueue pages (modqueue, reports, spam, etc.).", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifications.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Colour Link Score", description: "" }, subredditInfoSubscribers: { message: "Subscribers:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Move to the topmost comment of the previous thread (in comments).", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Show formatting tools (bold, italic, tables, etc.) to the edit form for posts, comments, and other snudown/markdown areas.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Move Bottom", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Colour Hover", description: "" }, spoilerTagsName: { message: "Global Spoiler Tags", description: "" }, betteRedditVideoUploadedDesc: { message: "Show upload date of videos when possible.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Save Comments", description: "" }, hoverFadeSpeedDesc: { message: "Fade speed (in seconds).", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Show the precise date (Sun Nov 16 20:14:56 2014 UTC) instead of a relative date (7 days ago), for posts.", description: "" }, submissionsCategory: { message: "Submissions", description: "" }, keyboardNavSaveCommentDesc: { message: "Save the current comment to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, keyboardNavSavePostTitle: { message: "Save Post", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Font Colour", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "Adds a hover tooltip to subreddits.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu.", description: "" }, commentDepthDesc: { message: "Allows you to set the preferred depth of comments you wish to see when clicking on comments links.\n\n0 = Everything, 1 = Root level, 2 = Responses to root level, 3 = Responses to responses to root level, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Keyboard shortcut to quote text.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Time that automatic night mode ends.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sort", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filters all links labelled NSFW.", description: "" }, logoLinkName: { message: "Logo Link", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "If something isn't working right, visit /r/RESissues for help.", description: "" }, nightModeAutomaticNightModeNone: { message: "Disabled", description: "" }, keyboardNavMoveUpDesc: { message: "Move up to the previous link or comment in flat lists.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "No action was taken.", description: "" }, commentPreviewEnableForWikiTitle: { message: "Enable For Wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Exclude User Pages", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "name ", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "Inline Image Viewer", description: "" }, commentStyleCommentIndentDesc: { message: "Indent comments by [x] pixels (only enter the number, no 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Disable RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling", description: "" }, userInfoRedditorSince: { message: "Redditor since:", description: "" }, userTaggerShow: { message: "Show", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "Fade Speed", description: "" }, necLoadChildCommentsTitle: { message: "Load Child Comments", description: "" }, showParentName: { message: "Show Parent on Hover", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Show the gold status of each account in the Account Switcher.", description: "" }, keyboardNavMoveToParentTitle: { message: "Move To Parent", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Show Timestamps Comments", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Accounts", description: "" }, spoilerTagsDesc: { message: "Hide spoilers on user profile pages.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Show Gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "comment depth", description: "" }, keyboardNavImageMoveDownTitle: { message: "Image Move Down", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Previous Gallery Image", description: "" }, userTaggerTaggedUsers: { message: "tagged users", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Move Up Thread", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalisation", description: "" }, showKarmaDesc: { message: "Add more info and tweaks to the karma next to your username in the user menu bar.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Colour", description: "" }, userHighlightAdminColorDesc: { message: "Colour to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Default Comment Depth", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Features", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Move Down Parent Sibling", description: "" }, dashboardTagsPerPageTitle: { message: "Tags Per Page", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add colour to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log", description: "" }, userTaggerStoreSourceLinkDesc: { message: "By default, store a link to the link/comment you tagged a user on", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Enhance the navigation bar shown on the left side of the frontpage.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Quote Key", description: "" }, keyboardNavHideDesc: { message: "Hide link.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Bold Key", description: "" }, xPostLinksName: { message: "X-post Links", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Always show a tag tool icon after every username.", description: "" }, commentPreviewDraftStyleDesc: { message: "Apply a 'draft' style background to the preview to differentiate it from the comment textarea.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Follow Comments", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Modmail", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Colour", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Clean Comments", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "Comments", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Force Sync Filters", description: "" }, nerShowServerInfoTitle: { message: "Show Server Info", description: "" }, troubleshooterSettingsReset: { message: "All settings reset. Reload to see the result.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Move the image(s) in the highlighted post area left.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Open the current comment's permalink (comment pages only).", description: "" }, subredditInfoAddRemoveShortcut: { message: "shortcut", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Colour Blind Friendly", description: "" }, userInfoSendMessage: { message: "send message", description: "" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Disable Vote Buttons", description: "" }, commentToolsLinkKeyDesc: { message: "Keyboard shortcut to add a link.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Move Up Comment", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Colour Hover", description: "" }, userTaggerPage: { message: "Page", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Change the default context value on context link.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Image Size Up Fine", description: "" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Show unread message count in favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Search Helper", description: "" }, keyboardNavNextGalleryImageDesc: { message: "View the next image of an inline gallery.", description: "" }, nightModeName: { message: "Night Mode", description: "" }, filteRedditExcludeModqueueTitle: { message: "Exclude Modqueue", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Launch filter command line.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "can't set tag - no post/comment selected.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "on", description: "" }, contextDesc: { message: "Adds a link to the yellow infobar to view deeply linked comments in their full context.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Up Vote Without Toggling", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Move Top", description: "" }, nightModeAutomaticNightModeUser: { message: "User-defined hours", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignored", description: "" }, commentToolsCommentingAsDesc: { message: "Shows your currently logged in username to avoid posting from the wrong account.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Follow Link New Tab", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "You can change this later from the $1 settings", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Toggle", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "After switching accounts, show a warning in other tabs.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Colour to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Backup (export) and restore (import) your Reddit Enhancement Suite settings.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Drop Down Style", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your post.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "option ID", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Load extra stylesheets or your own CSS snippets.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "password", description: "" }, userInfoUnignore: { message: "Unignore", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Colour", description: "" }, commentToolsMacrosTitle: { message: "Macros", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn automatic mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn user-defined hours mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, presetsNoPopupsTitle: { message: "No Popups", description: "" }, searchCopyResultForComment: { message: "copy this for a comment", description: "" }, moduleID: { message: "module ID", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Show unread message count in page/tab title?", description: "" }, xPostLinksXpostedFrom: { message: "x-posted from", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Toggle Children", description: "" }, commandLineLaunchDesc: { message: "Open the RES Command Line", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Subreddit Info", description: "" }, betteRedditVideoUploadedTitle: { message: "Video Uploaded", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, aboutOptionsDonate: { message: "Support further RES development.", description: "" }, aboutOptionsBugsTitle: { message: "Bugs", description: "" }, nerShowPauseButtonTitle: { message: "Show Pause Button", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Single Click Opener", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Number of days before RES stops keeping track of a viewed thread.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Version Manager", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching.", description: "" }, commentDepthName: { message: "Custom Comment Depth", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Show Unread Count In Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Show Subscribe Button", description: "" }, commentToolsKey: { message: "key", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Colour Usernames", description: "" }, commentStyleName: { message: "Comment Style", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Colour Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Show All Options", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "Front Page", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatically scroll to the post/comment that is selected when the page loads", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "text", description: "" }, notificationStickyTitle: { message: "Sticky", description: "" }, aboutOptionsAnnouncements: { message: "Read the latest at /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Automatically hide all but parent comments, or provide a link to hide them all? ", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Remove this subreddit from your shortcut bar", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "Prev Page", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Highlights comment boxes for easier reading / placefinding in large threads.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "On Vote Move Down", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Hide Dupes", description: "" }, keyboardNavFrontPageDesc: { message: "Go to front page.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Follow Link And Comments New Tab BG", description: "" }, singleClickDesc: { message: "Adds an [l+c] link that opens a link and the comments page in new tabs for you in one click.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Browse by Wheel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Show an envelope (inbox) icon in the top right corner.", description: "" }, aboutName: { message: "About RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background colour of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "Backup", description: "" }, productivityCategory: { message: "Productivity", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "No subreddit specified.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Close On Mouse Out", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Move to the topmost comment of the current thread (in comments).", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Colour", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: 'Changes "hide" links to read as "hide" or "unhide" depending on the hide state.', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 entries removed.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Add tabs to the search page.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter Saves Live Threads", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Subreddit Comment Depths", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Enable the 2 column editor.", description: "" }, floaterName: { message: "Floating Islands", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Colour Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "NSFW Quick Toggle", description: "" }, filteRedditAllowNSFWDesc: { message: "Don't hide NSFW posts from certain subreddits when the NSFW filter is turned on.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Add a toggle button to show or hide the user bar.", description: "" }, showImagesDesc: { message: "Opens images inline in your browser with the click of a button. Also has configuration options, check it out!", description: "" }, commentToolsMacroButtonsTitle: { message: "Macro Buttons", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "Don't filter your own posts.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "Username hider hides your username from displaying on your screen when you're logged in to reddit. This way, if someone looks over your shoulder at work, or if you take a screenshot, your reddit username is not shown. This only affects your screen. There is no way to post or comment on reddit without your post being linked to the account you made it from.", description: "" }, betteRedditName: { message: "betteReddit", description: "" }, voteEnhancementsName: { message: "Vote Enhancements", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Show Hidden Sort Options", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Truncates long post titles (greater than 1 line) with an ellipsis.", description: "" }, subredditInfoAddRemoveDashboard: { message: "dashboard", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "User Autocomplete", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed", description: "" }, aboutOptionsCodeTitle: { message: "Code", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Username", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Move the image(s) in the highlighted post area up.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Donate", description: "" }, keyboardNavGoModeTitle: { message: "Go Mode", description: "" }, keyboardNavName: { message: "Keyboard Navigation", description: "" }, userHighlightModColorHoverDesc: { message: "Colour used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "User Highlighter", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Current subreddit/multireddit", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Follow Permalink", description: "" }, hoverDesc: { message: "Customise the behaviour of the large informational pop-ups which appear when you hover your mouse over certain elements.", description: "" }, modhelperName: { message: "Mod Helper", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Hide All Child Comments", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'You must specify "$1" or "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "Move Up", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Open Quick Message", description: "" }, pageNavToTopTitle: { message: "To Top", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Scroll On Expando", description: "" }, userTaggerTag: { message: "Tag", description: "" }, userbarHiderToggleUserbar: { message: "Toggle Userbar", description: "" }, nerReversePauseIconTitle: { message: "Reverse Pause Icon", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Colour Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Remove this subreddit from your dashboard", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Colour used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Format or show additional information about votes on posts and comments.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Subreddit Manager", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Suggestions", description: "" }, keyboardNavSaveCommentTitle: { message: "Save Comment", description: "" }, nerPauseAfterEveryTitle: { message: "Pause After Every", description: "" }, userHighlightAlumColorDesc: { message: "Colour to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Command line for navigating reddit, toggling RES settings, and debugging RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "View the previous image of an inline gallery.", description: "" }, userInfoInvalidUsernameLink: { message: "Invalid username link.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Move down using Comment Navigator.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Night Mode End", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "Shows date in your local time zone when you hover over a relative date.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Core", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "minimum comments", description: "" }, aboutOptionsCode: { message: "You can improve RES with your code, designs, and ideas! RES is an open-source project on GitHub.", description: "" }, commentNavDesc: { message: "Provides a comment navigation tool to easily find comments by OP, mod, etc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will save updates to your live thread.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite is released under the GPL v3.0 license.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Enable On Ban Messages", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Number of days before thread subscriptions expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?", description: "" }, styleTweaksToggleSubredditStyle: { message: "toggle subreddit style", description: "" }, RESTipsDailyTipTitle: { message: "Daily Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Colour Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "New Comment Count", description: "" }, keyboardNavSlashAllDesc: { message: "Go to /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "Show Parents", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "Frontpage", description: "" }, commentToolsCategory: { message: "category", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "When hovering over [score hidden] show time left instead of hide duration.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Show the time that a text post/comment was edited, without having to hover over the timestamp.", description: "" }, aboutOptionsSearchSettings: { message: "Find RES settings.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customise the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Next Gallery Image", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Subreddit style enabled for subreddit: $1.", description: "" }, notificationsNeverSticky: { message: "never sticky", description: "" }, keyboardNavMoveDownDesc: { message: "Move down to the next link or comment in flat lists.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Show the [-] collapse button in the inbox.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Add this subreddit to your shortcut bar", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Reload Other Tabs", description: "" }, betteRedditVideoTimesTitle: { message: "Video Times", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Appearance", description: "" }, userTaggerShowIgnoredDesc: { message: "Provide a link to reveal an ignored link or comment.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "Italic Key", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Use Reddit Filters", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Colouration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatically select the last thing you had selected", description: "" }, aboutOptionsPresetsTitle: { message: "Presets", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Default depth to use for all subreddits not listed below.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a colour for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Hide", description: "" }, aboutOptionsContributorsTitle: { message: "Contributors", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Toggle Help", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "When following a link in a new tab, automatically focus the tab?", description: "" }, aboutOptionsFAQ: { message: "Learn more about RES on the /r/Enhancement wiki.", description: "" }, betteRedditPinHeaderDesc: { message: "Pin the subreddit bar, user menu, or header to top, floating down as you scroll.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Show the precise date in the sidebar.", description: "" }, keyboardNavUpVoteDesc: { message: "Upvote selected link or comment (or remove the upvote).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Go to subreddit of selected link (link pages only).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Keep me logged in when I restart my browser.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Toggle expando (image/text/video).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "View comments for link in a new tab.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "Backup", description: "" }, profileNavigatorHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES allows you to disable specific subreddit styles!", description: "" }, customTogglesDesc: { message: "Set up custom on/off switches for various parts of RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Formatting Tool Buttons", description: "" }, commentPreviewEnableForWikiDesc: { message: "Show preview for wiki pages.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Image Move Up", description: "" }, settingsNavDesc: { message: "Helping you get around the RES Settings Console with greater ease.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox", description: "" }, usernameHiderName: { message: "Username Hider", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "enabled", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Table Tools", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "User not found.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Truncate Long Links", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Launch RES command line.", description: "" }, nerHideDupesDontHide: { message: "Do not hide", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "your votes for $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Add macro buttons to the edit form for posts, comments, and other snudown/markdown text areas.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Move the image(s) in the highlighted post area right.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add colour to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Colour", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alien) ", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colours", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Open Big Editor", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height", description: "" }, pageNavShowLinkNewTabTitle: { message: "Show Link New Tab", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover colour based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Non-linear Scroll Style", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Open the current markdown field in the big editor. (Only when a markdown form is focused).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Set depth on links to particular comments with context.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Go to subreddit front page.", description: "" }, menuName: { message: "RES Menu", description: "" }, messageMenuDesc: { message: "Hover over the mail icon to access different types of messages or to compose a new message.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Play a transition when you open and close tabs.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "After hiding a link, automatically select the next link.", description: "" }, commentStyleDesc: { message: "Add readability enhancements to comments.", description: "" }, keyboardNavRandomDesc: { message: "Go to a random subreddit.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colours when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "Commenting As", description: "" }, keyboardNavImageSizeUpDesc: { message: "Increase the size of image(s) in the highlighted post area.", description: "" }, floaterDesc: { message: "Managing free-floating RES elements.", description: "" }, subredditManDesc: { message: "Allows you to customise the top bar with your own subreddit shortcuts, including dropdown menus of multi-reddits and more.", description: "" }, keyboardNavSavePostDesc: { message: "Save the current post to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Enable Big Editor", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification", description: "" }, announcementsDesc: { message: "Keep up with important news.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Add Row", description: "" }, keyboardNavReplyDesc: { message: "Reply to current comment (comment pages only).", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "RES Notifications", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "View comments for link (shift opens them in a new tab).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Show the markdown live preview directly in the sidebar when editing.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Profile New Tab", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Follow Link And Comments New Tab", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Multireddit Navigation", description: "" }, keyboardNavToggleExpandoTitle: { message: "Toggle Expando", description: "" }, showKarmaName: { message: "Show Karma", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Colouration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Subreddit Autocomplete", description: "" }, settingsNavName: { message: "RES Settings Navigation", description: "" }, contributeName: { message: "Donate and Contribute", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Disable Comment Textarea", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Set depth on links to particular comments.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Show a menu linking to various sections of the current user's profile when hovering your mouse over the username link in the top right corner.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the colour to separate top-level comments.", description: "" }, commentToolsName: { message: "Editing Tools", description: "" }, accountSwitcherAccountsDesc: { message: "Set your usernames and passwords below. They are only stored in RES preferences.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "When filtering subreddits with the above option, where should they be filtered?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Live Preview", description: "" }, hoverOpenDelayDesc: { message: "Default delay between mouseover and the popup opening.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Colour of the bar when collapsed.", description: "" }, announcementsName: { message: "RES Announcements", description: "" }, betteRedditVideoViewedDesc: { message: "Show number of views for a video when possible.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Move To Top Comment", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "reload", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, notificationsNotificationID: { message: "notification ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Show Snudown Source", description: "" }, keyboardNavInboxDesc: { message: "Go to inbox.", description: "" }, gfycatUseMobileGfycatDesc: { message: "Use mobile (lower resolution) gifs from gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Toggle View Images", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Backup (export) and restore (import) your RES settings.", description: "" }, showParentDesc: { message: 'Shows the parent comments when hovering over the "parent" link of a comment.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Decrease the size of image(s) in the highlighted post area.", description: "" }, userHighlightSelfColorTitle: { message: "Self Colour", description: "" }, commentToolsShowInputLengthTitle: { message: "Show Input Length", description: "" }, keyboardNavSaveRESDesc: { message: "Save the current comment with RES. This does preserve the original text of the comment, but is only saved locally.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Inspired by modules like River of Reddit and Auto Pager - gives you a never ending stream of reddit goodness.", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "Don't filter anything on users' profile pages.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Restore", description: "" }, logoLinkCustom: { message: "Custom", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Enable or disable everything connected to this toggle; and optionally add a toggle to the RES gear dropdown menu.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Show comment continuity lines.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Stop filtering this subreddit from /r/all and /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Default Posts", description: "" }, contextViewFullContextTitle: { message: "View Full Context", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacy", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Add tool to show the original text on posts and comments, before reddit formats the text.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed grey` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Move down to the next comment on threaded comment pages.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Provides utilities to help with submitting a post.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Automatic ", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separator", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Default delay before the popup fades after mouseout.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Location when you click on the reddit logo.", description: "" }, settingsConsoleName: { message: "Settings Console", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Subreddit-specific comment depths.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Colour Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Go to modmail.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "Default sort method for new widgets.", description: "" }, dashboardDefaultSortSearchDesc: { message: "Default sort method for new search widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "After switching accounts, automatically reload other tabs.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "enabled", description: "" }, nightModeColoredLinksTitle: { message: "Coloured Links", description: "" }, modhelperDesc: { message: "Helps moderators via tips and tricks for playing nice with RES.", description: "" }, quickMessageName: { message: "Quick Message", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Enable this feature again", description: "" }, userHighlightDesc: { message: "Highlights certain users in comment threads: OP, Admin, Friends, Mod - contributed by MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Scroll window to top of link when expando key is used (to keep pics etc. in view).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, userInfoAddRemoveFriends: { message: "$1 friends", description: "" }, userHighlightSelfColorDesc: { message: "Colour to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups", description: "" }, userHighlightFriendColorDesc: { message: "Colour to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Message Menu", description: "" }, aboutOptionsSuggestions: { message: "If you have an idea for RES or want to chat with other users, visit /r/Enhancement.", description: "" }, userbarHiderName: { message: "User Bar Hider", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "When jumping to an entry (moveUpThread/moveDownThread,moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), when and how should RES scroll the window?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "All caches cleared.", description: "" }, localDateName: { message: "Local Date", description: "" }, commentStyleCommentRoundedDesc: { message: "Round corners of comment boxes.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Use Go Mode", description: "" }, messageMenuLabel: { message: "label", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Colour used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Show Current User Name", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filter", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Show Unread Count In Title", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Sidebar Preview", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Follow Subreddit New Tab", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Show user autocomplete tool when typing in posts, comments, and replies.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Add a quick NSFW on/off toggle to the gear menu.", description: "" }, subredditInfoSubscribe: { message: "subscribe", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Downvote selected link or comment (or remove the downvote).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter Submits Comments", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter Submits Posts", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit created:", description: "" }, multiredditNavbarLabel: { message: "label", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Colour Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Hover Delay", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Show preview for ban notes.", description: "" }, usersCategory: { message: "Users", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Colour links blue and purple.", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit not found.", description: "" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here.", description: "" }, resTipsName: { message: "RES Tips and Tricks", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Toggle Command Line", description: "" }, contextName: { message: "Context", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: `This will kill all your settings and saved data. If you're certain, type in "$1".`, description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "User suspended.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "Links", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Move to top of list (on link pages).", description: "" }, contextDefaultContextTitle: { message: "Default Context", description: "" }, userTaggerTagUserAs: { message: "tag user $1 as: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Move Down Sibling", description: "" }, customTogglesName: { message: "Custom Toggles", description: "" }, pageNavShowLinkTitle: { message: "Show Link", description: "" }, keyboardNavProfileNewTabDesc: { message: "Go to profile in a new tab.", description: "" }, aboutCategory: { message: "About RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "Gift Reddit Gold", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restore a backup of your RES settings.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Show preview for comments.", description: "" }, spamButtonName: { message: "Spam Button", description: "" }, hoverInstancesTitle: { message: "Instances ", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colours couldn't be generated. This is probably due to the use of colours in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Use keyboard shortcuts to apply styles to selected text.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Automatically hide search options and suggestions on the search page.", description: "" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions.", description: "" }, logoLinkDashboard: { message: "Dashboard", description: "" }, dashboardDashboardShortcutDesc: { message: "Show +dashboard shortcut in sidebar for easy addition of dashboard widgets.", description: "" }, userInfoName: { message: "User Info", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Width of the bar.", description: "" }, filteRedditDomainsTitle: { message: "Domains", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Hide Mod Mail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Open On Highlight User ", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "Read about RES's privacy policy.", description: "" }, commentStyleContinuityTitle: { message: "Continuity", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Show details of each account in the Account Switcher, such as karma or gold status.", description: "" }, browsingCategory: { message: "Browsing", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Are you sure you want to delete the tag for user: $1?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Move Down Thread", description: "" }, keyboardNavInboxTitle: { message: "Inbox", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "Unhighlight", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Show by Default", description: "" } }; // locales/locales/es.json var es_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Mostrar el navegador de comentarios cuando se resalte un usuario.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Mostrar la fecha exacta para comentarios / mensajes.", description: "" }, commentPrevDesc: { message: "Ofrece una previsualizaci\xF3n en vivo mientras se editan comentarios, env\xEDos de texto, mensajes, p\xE1ginas wiki y otras zonas con texto Markdown; as\xED como un editor de dos columnas para escribir muros de texto.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Intercambia la vista previa y el editor (tal que la vista previa se encuentre a la izquierda y el editor a la derecha).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Comentario abajo", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Mostrar enlace a mi cuadro de mandos en el men\xFA de RES.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: 'El usuario tiene "Reddit Gold"', description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Move Up Sibling", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Sangrado de comentario", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Desactivar todos los m\xF3dulos de RES", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Mostrar la fecha exacta en el registro de moderaci\xF3n (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Aleatorio", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filtrar este subreddit de /r/all y /dominio/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Seguir comentarios en una nueva pesta\xF1a", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "eliminar suscripci\xF3n", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "Mensajes sin leer", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Poner puntaje de posts y comentarios en negrita, para hacerlos m\xE1s f\xE1cil de encontrar", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Mostrar un tip aleatorio cada 24 horas", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Palabras clave", description: "" }, filteRedditAllowNSFWTitle: { message: "Permitir NSFW", description: "" }, hoverOpenDelayTitle: { message: "Retardo de apertura", description: "" }, keyboardNavNextPageTitle: { message: "P\xE1gina siguiente", description: "" }, commentToolsSuperKeyTitle: { message: "Tecla s\xFAper", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Destino personalizado", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Comment Permalinks Context", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Restaurar pesta\xF1a guardado", description: "" }, orangeredHideModMailDesc: { message: "Ocultar bot\xF3n de correo de mods en barra de usuario", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Fade or completely hide duplicate posts already showing on the page.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Editar", description: "" }, userTaggerName: { message: "Etiquetador de usuarios.", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Comment Navigator Move Down", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "A\xF1adir un bot\xF3n para ocultar opciones de b\xFAsqueda", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Move up using Comment Navigator.", description: "" }, accountSwitcherDropDownStyleDesc: { message: '\xBFUsar el \xEDcono "snoo", o el men\xFA desplegable antiguo?', description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Mantener la lista de Macros abierta", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Alternar navegador de comentarios", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Atajos de teclado", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "modo nocturno", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Abrir enlace en nueva pesta\xF1a (solamente paginas enlazadas)", description: "" }, onboardingDesc: { message: "Aprende m\xE1s sobre RES en /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "Filtro NSFW", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Retardo del desvanecimiento", description: "" }, profileNavigatorFadeDelayTitle: { message: "Retardo del desvanecimiento", description: "" }, commentToolsLinkKeyTitle: { message: "Tecla de enlace", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+a\xF1adir acceso directo", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "Portada del subreddit", description: "" }, keyboardNavFollowSubredditTitle: { message: "Seguir subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Mostrar Oro", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "Cargador de Estilos", description: "" }, subredditInfoOver18: { message: "Para mayores de 18:", description: "" }, userInfoIgnore: { message: "Ignorar", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "\xEDtem de men\xFA", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "\xBFEst\xE1 seguro?", description: "" }, messageMenuAddShortcut: { message: "+a\xF1adir acceso directo", description: "" }, troubleshooterName: { message: "Solucionador de Problemas", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Ocultar publicaciones compartidas en ciertos subreddits", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Bandeja de entrada en nueva pesta\xF1a", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only).", description: "" }, selectedEntrySetColorsDesc: { message: "Establecer colores", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "Tras votar en un enlace, autom\xE1ticamente selecciona el siguiente.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "Vag\xF3n de bienvenida de RES", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Color de fondo nocturno", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Dejar de filtrar de /r/all y /dominio/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Moverse al comentario m\xE1s alto del siguiente hilo (en comentarios)", description: "" }, hoverName: { message: "Flotante emergente de RES", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Habilitar para comentarios", description: "" }, spamButtonDesc: { message: "A\xF1ade un bot\xF3n Spam a las entradas para reportarlas con facilidad.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "etiqueta", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Ayud\xE1ndolo a obtener su dosis diaria de naranjarojas.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Prender modo nocturno", description: "" }, myAccountCategory: { message: "Mi cuenta", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments", description: "" }, yes: { message: "S\xED", description: "" }, filteRedditName: { message: "filtraReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Menu Item", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Color", description: "" }, searchHelperSearchByFlairTitle: { message: "Buscar por adorno", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "Etiqueta de usuario", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Muestra cuandos comentarios han sido publicados desde que viste un determinado hilo por \xFAltima vez.", description: "" }, userTaggerPageXOfY: { message: "$1 de $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "Mis etiquetas de usuario", description: "" }, pageNavShowLinkNewTabDesc: { message: "Abrir enlace en una pesta\xF1a nueva", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Ajustes de b\xFAsqueda", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "No haga Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "Video visto", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Pone en negrita el apartado de "Comentando como" si est\xE1s usando una cuenta alternativa. La primera cuenta en el seleccionador de cuentas ser\xE1 considerada tu cuenta principal.', description: "" }, usernameHiderDisplayTextTitle: { message: "Mostrar texto", description: "" }, commentToolsShowInputLengthDesc: { message: "Muestra el n\xFAmero de caracteres introducido en los campos de t\xEDtulo y texto e indica cuando superas el l\xEDmite de 300 caracteres para los t\xEDtulos cuando est\xE9s editando una nueva publicaci\xF3n.", description: "" }, redditUserInfoName: { message: "Informaci\xF3n del usuario de Reddit", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Aumentar el tama\xF1o de las im\xE1genes en el \xE1rea del post marcada. ", description: "" }, nerName: { message: "Reddit Sin Fin", description: "" }, subredditInfoTitle: { message: "T\xEDtulo:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatic (requires geolocation)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "Ver enlaces y comentarios en pesta\xF1as nuevas al fondo", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Borde de comentario al pasar por encima", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Desvanecer", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Disminuir el tama\xF1o de las im\xE1genes en el \xE1rea del post marcada. ", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Ir a la siguiente p\xE1gina (s\xF3lo en las p\xE1ginas de lista de enlaces).", description: "" }, notificationsPerNotificationType: { message: "per notification type", description: "" }, subredditTaggerDesc: { message: "A\xF1ade texto personalizado al comienzo de los t\xEDtulos de las publicaciones en tu p\xE1gina principal, multireddits y /r/all. \xDAtil para a\xF1adir contexto a las publicaciones.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Mejora el acceso a varias partes de tu p\xE1gina de usuario.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Incluye funcionalidad adicional a las tablas de clasificaci\xF3n de Reddit (Por el momento s\xF3lo ordenar disponible)", description: "" }, notificationsAlwaysSticky: { message: "always sticky", description: "" }, searchName: { message: "Buscar Opciones de RES", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Enviar como", description: "" }, pageNavName: { message: "Navegador de P\xE1ginas.", description: "" }, keyboardNavFollowLinkDesc: { message: "Seguir enlace (s\xF3lo p\xE1ginas de enlace)", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features", description: "" }, subredditInfoFadeDelayDesc: { message: "Demora, en milisegundos, antes de que la informaci\xF3n flotante se desvanezca.", description: "" }, commentHidePerDesc: { message: "Guarda el estado de comentarios ocultos a traves de p\xE1ginas visitadas.", description: "" }, quickMessageDesc: { message: "Un pop-up que te permite mandar mensajes desde cualquier lugar en reddit. Los mensajes pueden ser enviados desde la ventana de Mensaje R\xE1pido presionando Ctrl+Enter o Command+Enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "nombre de usuario", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Inicio del modo nocturno", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "Barra de usuario escondida", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+a\xF1adir subreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Swap Big Editor Layout", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Cargar autom\xE1ticamente", description: "" }, nerReturnToPrevPageDesc: { message: 'Return to the page you were last on when hitting "back" button?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Men\xFA de secci\xF3n", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Move to parent's next sibling (in comments).", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Score Hidden Time Left", description: "" }, hoverWidthDesc: { message: "Anchura por defecto de la ventana emergente.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Habilitar/deshabilitar el modo nocturno.", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Comentarios Sin Fin", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Exclu\xEDr las publicaciones de uno mismo", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "Ir al correo de moderador en una nueva pesta\xF1a.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Velocidad de desvanecimiento", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Retardo del desvanecimiento", description: "" }, keyboardNavModmailNewTabTitle: { message: "Correo de moderador en una nueva pesta\xF1a", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Show the Subscribe button?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Guarda los datos del estado de RES actual. Desc\xE1rgalo con "Archivo" o s\xFAbelo a un servicio en la nube.', description: "" }, selectedEntrySetColorsTitle: { message: "Establecer colores", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "L\xEDnea de comandos de filtros", description: "" }, betteRedditDoNoCtrlFDesc: { message: 'Al usar la herramienta de "buscar texto" con Ctrl+F/Cmd+F, s\xF3lo busca texto de comentarios o publicaciones y no enlaces de navegaci\xF3n ("enlace source guardar..."). Desactivado por defecto por un peque\xF1o impacto en el rendimiento.', description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special color for each username.", description: "" }, backupName: { message: "Respaldo y restauraci\xF3n", description: "" }, profileNavigatorSectionLinksDesc: { message: "Enlaces a mostrar en el men\xFA de perfil flotante.", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "Usar el estilo del subreddit", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "A\xF1adir este subreddit a su cuadro de mandos", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Actualizar otras pesta\xF1as", description: "" }, nightModeUseSubredditStylesTitle: { message: "Usar el estilo del subreddit", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "Tras votar en un comentario, autom\xE1ticamente selecciona el siguiente.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Usar Gfycat m\xF3vil", description: "" }, commentToolsItalicKeyDesc: { message: "Atajo de teclado para poner el texto en cursiva.", description: "" }, messageMenuLinksDesc: { message: "Links to show in the mail icon drop down menu.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit oculta algunas opciones de clasificaci\xF3n (al azar, etc.) en la mayor\xEDa de p\xE1ginas. Esta opci\xF3n los revela.", description: "" }, commandLineLaunchTitle: { message: "Launch", description: "" }, betteRedditDesc: { message: 'Agrega varias mejoras a la interfaz de Reddit, tales como enlaces a "comentarios completos", la habilidad de mostrar publicaciones accidentalmente escondidas, y m\xE1s.', description: "" }, resTipsDesc: { message: "A\xF1ade consejos y trucos auxiliares a la consola RES.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Move to previous sibling (in comments) - skips to previous sibling at the same depth.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Resaltar la jerarqu\xEDa de la caja de comentarios al pasar por encima con el rat\xF3n (desact\xEDvelo para un mejor rendimiento). ", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Atajo de teclado para poner el texto en negrita.", description: "" }, hoverWidthTitle: { message: "Ancho", description: "" }, dashboardName: { message: "Panel de control de RES", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Show Last Edited Timestamp", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Mantener la sesi\xF3n iniciada", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Crea links a subreddits x-publicados en las etiquetas de la publicaci\xF3n.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Demora, en milisegundos, antes de que la informaci\xF3n flotante se desvanezca.", description: "" }, saveOptions: { message: "guardar opciones", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Haga clic aqu\xED para aprender m\xE1s", description: "" }, keyboardNavInboxNewTabDesc: { message: "Ir a la bandeja de entrada en una nueva pesta\xF1a.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Mostrar una vista previa de la edici\xF3n de la configuraci\xF3n del subreddit.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "todos los usuarios", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "A\xF1adir un \xEDcono que te devuelva a la parte superior de la p\xE1gina cuando le das clic", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expandir/reducir comentarios (p\xE1ginas de comentarios solamente)", description: "" }, commentPreviewDraftStyleTitle: { message: "Estilo de borrador", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Mostrar la fecha exacta en la wiki.", description: "" }, logoLinkInbox: { message: "Bandeja de entrada", description: "" }, searchHelperDesc: { message: "Da ayuda con el uso de la funci\xF3n de b\xFAsqueda.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Abrir enlace en nueva pesta\xF1a concentrado", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Retraso de informaci\xF3n flotante", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Show Timestamp Posts", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "Ajustes preestablecidos", description: "" }, styleTweaksName: { message: "Cambios de estilo", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Avisos", description: "" }, hoverInstancesDesc: { message: "Gestionar ventanas emergentes en concreto", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Move up to the previous comment on threaded comment pages.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Show Timestamp Sidebar", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Velocidad de desvanecimiento", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Retraso de informaci\xF3n flotante", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Retraso, en milisegundos, antes de que un enlace oculto se desvanezca.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Mostrar Karma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Modo nocturno autom\xE1tico", description: "" }, noPartDisableCommentTextareaDesc: { message: "Desactivar comentarios", description: "" }, nerReturnToPrevPageTitle: { message: "Return To Previous Page", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Velocidad de la animaci\xF3n de desvanecimiento (en segundos)", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: "A\xF1ade un enlace para ver el contexto completo a los enlaces de comentario.", description: "" }, messageMenuFadeDelayTitle: { message: "Retardo del desvanecimiento", description: "" }, commentToolsDesc: { message: "Ofrece herramientas y accesos directos para componer comentarios, env\xEDos de texto, p\xE1ginas wiki y otras zonas con texto Markdown.", description: "" }, noPartName: { message: "Modo de No-Participaci\xF3n", description: "" }, presetsDesc: { message: "Selecciona a partir de varias configuraciones preestablecidas de RES. Cada preajuste activa o desactiva varios m\xF3dulos y opciones, pero no resetea tu configuraci\xF3n entera.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Mostrar las herramientas de comentarios en la caja de texto de las notas de expulsi\xF3n.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Go to subreddit of selected link in a new tab (link pages only).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Aceso a tu ubicaci\xF3n actual fue negado. Es necesario para calcular la puesta y salida del sol en el modo nocturno autom\xE1tico. Para inutilizar este funcionalidad, hacer click en "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Estilo del subreddit", description: "" }, keyboardNavDownVoteTitle: { message: "Votar negativo", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Ir abajo", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Tipos de notificaciones", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "Al votar comentario mover abajo", description: "" }, hoverCloseOnMouseOutDesc: { message: "Cerrar o n\xF3 el emergente al quitar el cursor sobre \xE9l adem\xE1s del bot\xF3n de cerrar.", description: "" }, subredditTaggerName: { message: "Etiquetador de Subreddits", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Resaltar si la cuenta es alternativa", description: "" }, userInfoDesc: { message: "A\xF1ade informaci\xF3n flotante a los usuarios.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Close Delay", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "Permite cambiar el enlace en el logo de reddit.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Atajo de teclado para abrir las conversaciones r\xE1pidas por mensajes", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "N\xFAmero de posts a mostrar por defecto en cada widget.", description: "" }, pageNavDesc: { message: "Proporciona herramientas para desplazarse por la p\xE1gina.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Mostrar mi nombre de usuario actual en el Seleccionador de Cuentas.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 est\xE1 en $2 multireddits", description: "" }, commentToolsStrikeKeyTitle: { message: "Tecla de tachado", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Demora, en milisegundos, antes de que la informaci\xF3n flotante cargue.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colorblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Mostrar el navegador de comentarios por defecto", description: "" }, keyboardNavSaveRESTitle: { message: "Guardar RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "Al ocultar mover abajo", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Cajas de comentario", description: "" }, profileNavigatorName: { message: "Navegador de perfil.", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "No", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Estilo de desplazamiento lineal", description: "" }, userbarHiderUserbarStateDesc: { message: "Usar barra", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "Mostrar los comentarios padres", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Personaliza RES r\xE1pidamente con varios ajustes predeterminados.", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "Ocultado de comentarios permanente", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Entrada Seleccionada", description: "" }, betteRedditPinHeaderTitle: { message: "Pin Header", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Texto provisional de Macro", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Habilitar para mensajes de expulsi\xF3n", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Abrir mensaje en una nueva pesta\xF1a", description: "" }, versionDesc: { message: "Controlar las verificaciones de la versi\xF3n actual/anterior.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Color de fondo", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Su nombre de usuario, karma, preferencias, equipo de RES y dem\xE1s est\xE1n ocultos. Puede mostrarles de nuevo haciendo clic en el bot\xF3n de $1en la esquina superior derecha.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling", description: "" }, keyboardNavFollowLinkTitle: { message: "Seguir enlace", description: "" }, keyboardNavMoveBottomDesc: { message: "Mover al pie de la lista (para enlaces)", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Votar positivo el enlace o comentario elegido (pero no quitar el voto positivo)", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Retardo del desvanecimiento", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Enlaces permanentes a comentario", description: "" }, aboutOptionsLicenseTitle: { message: "Licencia", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Mostrar una vista previa de las publicaciones.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Mover imagen a la derecha", description: "" }, keyboardNavPrevPageDesc: { message: "Ir a la p\xE1gina anterior (s\xF3lo en p\xE1ginas de lista de enlaces).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited", description: "" }, accountSwitcherUserSwitched: { message: "Has cambiado a /u/$1", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Abrir enlaces encontrados en comentarios en una nueva pesta\xF1a.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Velocidad de desvanecimiento", description: "" }, userInfoCommentKarma: { message: "Karma de comentario:", description: "" }, settingsConsoleDesc: { message: "Administra tus ajustes y preferencias de RES", description: "" }, userInfoFadeSpeedDesc: { message: "Velocidad de la animaci\xF3n de desvanecimiento (en segundos).", description: "" }, userHighlightModColorTitle: { message: "Color del mod", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Retraso de informaci\xF3n flotante", description: "" }, messageMenuLinksTitle: { message: "Enlaces", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Comments Links New Tabs", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Error al cargar la informaci\xF3n del subreddit.", description: "" }, accountSwitcherName: { message: "Seleccionador de cuentas", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Move to next sibling (in comments) - skips to next sibling at the same depth.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Velocidad de desvanecimiento", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Night Switch", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Demora, en milisegundos, antes de que la informaci\xF3n flotante se desvanezca.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Habilitar para publicaciones", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Mostrar karma de comentarios", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Mostrar ayuda para los atajos de teclado.", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "Acceso directo al cuadro de mandos", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Esconder", description: "" }, userInfoLink: { message: "Enlace:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "Hace $1", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Mostrar la duraci\xF3n de los v\xEDdeos cuando sea posible.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignorado.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Responder", description: "" }, accountSwitcherSimpleArrow: { message: "flecha simple", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Adorno", description: "" }, messageMenuUseQuickMessageTitle: { message: "Usar mensaje r\xE1pido", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "Todas las opciones est\xE1n marcadas por default. Desmarca la opci\xF3n si quieres esconder las opciones avanzadas", description: "" }, betteRedditFixHideLinksTitle: { message: "Arreglar enlaces escondidos", description: "" }, commentNavName: { message: "Navegador de comentarios", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Abrir navegador de comentarios.", description: "" }, presetsLiteDesc: { message: "RES Lite: s\xF3lo lo popular", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Pulsar Ctrl+Enter o Cmd+Enter enviar\xE1 su comentario o edici\xF3n de wiki.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nada", description: "" }, filteRedditShowFilterlineTitle: { message: "Mostrar l\xEDnea de filtros", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Enlaces de secci\xF3n", description: "" }, hideChildCommentsDesc: { message: "Te permite ocultar comentarios descendientes.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Color del admin al pasar rat\xF3n", description: "" }, submitHelperName: { message: "Ayudante para Env\xEDos", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Orden por defecto", description: "" }, troubleshooterResetToFactoryTitle: { message: "Resetear a predeterminado", description: "" }, commentStyleCommentRoundedTitle: { message: "Comentario redondeado", description: "" }, keyboardNavImageSizeUpTitle: { message: "Aumentar el tema\xF1o de im\xE1gen", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "alternar estilo de subreddit $1 para: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Comentarios", description: "" }, commentToolsStrikeKeyDesc: { message: "Atajo de teclado para tachar el texto.", description: "" }, filteRedditShowFilterlineDesc: { message: 'Mostrar controles de filtro "filterline" por defecto.', description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options", description: "" }, logoLinkMyUserPage: { message: "Mi p\xE1gina de usuario", description: "" }, keyboardNavUseGoModeDesc: { message: 'Necesita iniciar goMode antes usando el atajo "ir a"', description: "" }, easterEggName: { message: "Huevo de pascua", description: "" }, commentToolsSuperKeyDesc: { message: "Atajo de teclado para convertir el texto en super\xEDndice.", description: "" }, keyboardNavUpVoteTitle: { message: "Votar positivo", description: "" }, notificationNotificationTypesDesc: { message: "Manage different types of notifications.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Karma de publicaci\xF3n:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "alternar el estilo del subreddit $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Leer m\xE1s", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Destino al logo de Reddit ", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite es una colleci\xF3n de m\xF3dulos que hacen ver Reddit mucho mas f\xE1cil", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Habilitar para configuraci\xF3n de subreddit", description: "" }, accountSwitcherShowKarmaDesc: { message: "Mostrar el karma de posts y comentarios de cada cuenta en el Seleccionador de Cuentas.", description: "" }, keyboardNavDesc: { message: "\xA1Navegaci\xF3n con el teclado para Reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Moverse al comentario padre (en comentarios)", description: "" }, keyboardNavGoModeDesc: { message: 'Enter "goMode" (necessary before using any of the below "go to" shortcuts).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+a\xF1adir atajo de secci\xF3n de multireddit", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "Linea de Comandos de RES", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Mover imagen a la izquierda", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Retardo del desvanecimiento", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "El Panel de Control de RES alberga varias caracter\xEDsticas, incluyendo widgets y otras herramientas \xFAtiles.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "Tras seleccionar una macro de la lista desplegable, esta no se oculta.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddits", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Move the image(s) in the highlighted post area down.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Seguir enlace permanente en una nueva pesta\xF1a", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Removes the height restriction of image(s) in the highlighted post area.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "etiquetar usuario $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Reportar un problema", description: "" }, aboutOptionsFAQTitle: { message: "Preguntas frecuentes", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Mostrar detalles de usuario", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Estilo del subreddit deshabilitado para el subreddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Color for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Actualizar pesta\xF1a", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Comment Navigator Move Up", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Ir al perfil", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "Ver enlaces y comentarios en pesta\xF1as nuevas", description: "" }, onboardingUpdateNotificationName: { message: "Actualizar notificaci\xF3n", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Demora, en milisegundos, antes de que la informaci\xF3n flotante se desvanezca.", description: "" }, nightModeNightModeStartDesc: { message: "Hora que el modo nocturno autom\xE1tico empieza", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Automatically load new page on scroll (if off, you click to load).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "sticky", description: "" }, userHighlightAdminColorTitle: { message: "Admin Color", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Velocidad de la animaci\xF3n de desvanecimiento (en segundos).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Reducir imagen", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'La pesta\xF1a de guardados ahora se encuentra en la barra lateral de multireddit. Esto restaurar\xE1 un enlace guardado al encabezado (junto a las pesta\xF1as de "caliente", "nuevo, etc.)', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Color de la barra predeterminado", description: "" }, toggleOff: { message: "apagado", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Mostar herramienta de auto-completado de subreddits al escribir en publicaciones, comentarios y respuestas.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Disminuir el tama\xF1o de la imagen", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "T\xEDtulo de YouTube: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Show Timestamp Wiki", description: "" }, commentToolsMacrosDesc: { message: "A\xF1adir botones para insertar fragmentos de texto usados de manera frecuente.", description: "" }, keyboardNavProfileTitle: { message: "Perfil", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Fitrar subreddits de", description: "" }, userTaggerShowAnyway: { message: "\xBFmostrar de todos modos?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Eliminar datos de Cach\xE9", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+a\xF1adir cuenta", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Resaltar", description: "" }, filteRedditExcludeModqueueDesc: { message: "No filtrar nada en las p\xE1ginas de cola de moderaci\xF3n (cola de moderaci\xF3n, reportes, spam, etc.).", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Probar notificaciones.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Suscriptores:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Moverse al comentario m\xE1s alto del hilo anterior (en comentarios)", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Muestra herramientas de formato (negrita, it\xE1lico, tablas, etc) para la edici\xF3n en posts, comentarios, y otras \xE1reas de snudown/markdown.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "ir abajo", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Color del mod al pasar rat\xF3n", description: "" }, spoilerTagsName: { message: "Etiquetas Spoiler Globales", description: "" }, betteRedditVideoUploadedDesc: { message: "Mostrar la fecha de publicaci\xF3n de los v\xEDdeos cuando sea posible.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Guardar Comentarios", description: "" }, hoverFadeSpeedDesc: { message: "Velocidad de desvanecimiento (en segundos).", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Mostrar la fecha exacta (Dom Nov 16 20:14:56 2014 UTC) en lugar de una fecha relativa (Hace 7 d\xEDas), para las publicaciones.", description: "" }, submissionsCategory: { message: "Env\xEDos", description: "" }, keyboardNavSaveCommentDesc: { message: "Guardar el comentario curriente a tu cuenta Reddit. Esto es acesible de cada lugar que tu has iniciado la sesi\xF3n, pero no preserva el texto original si se editado o borrado.", description: "" }, keyboardNavSavePostTitle: { message: "Guardar publicaci\xF3n", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Color de la fuente", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "Al dar clic en el adorno de un post, realizar una b\xFAsqueda dentro de dicho subreddit para ese adorno.\nPuede no funcionar en ciertos subreddits que ocultan el adorno real y a\xF1aden un adorno con CSS (el \xFAnico arreglo es deshabilitar el estilo del subreddit)", description: "" }, subredditInfoDesc: { message: "A\xF1ade una descripci\xF3n a los subreddits al se\xF1alarlos.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu.", description: "" }, commentDepthDesc: { message: "Permite ajustar la profundidad de comentarios que desea ver cuando cliquee en enlaces de comentarios.\n\n 0 = Todo, 1 = Nivel de ra\xEDz, 2 = Respuestas al nivel de ra\xEDz, 3 = Respuestas a las respuestas al nivel de ra\xEDz, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Atajo de teclado para citar texto.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Hora que el modo nocturno autom\xE1tico termina", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Ordenar", description: "" }, RESSettings: { message: "Ajustes de RES", description: "" }, filteRedditNSFWfilterDesc: { message: 'Filtrar todos los enlaces etiquetados como "no aptos para el trabajo".', description: "" }, logoLinkName: { message: "Enlace del Logo.", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "Si algo no est\xE1 funcionando bien, visita /r/RESIssues para obtener ayuda.", description: "" }, nightModeAutomaticNightModeNone: { message: "Desactivado", description: "" }, keyboardNavMoveUpDesc: { message: "Move up to the previous link or comment in flat lists.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "No se ha llevado a cabo ninguna acci\xF3n.", description: "" }, commentPreviewEnableForWikiTitle: { message: "Habilitar para wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Excluir p\xE1ginas de usuarios", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "nombre", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conservar Memoria", description: "" }, showImagesName: { message: "Visualizador de Im\xE1genes Inline", description: "" }, commentStyleCommentIndentDesc: { message: 'Sangra los comentarios un n\xFAmero [x] de p\xEDxeles (introducir \xFAnicamente el n\xFAmero, no "px").', description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Desactivar RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling", description: "" }, userInfoRedditorSince: { message: "Miembro de Reddit desde:", description: "" }, userTaggerShow: { message: "Mostrar", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "Velocidad de desvanecimiento", description: "" }, necLoadChildCommentsTitle: { message: "Load Child Comments", description: "" }, showParentName: { message: "Mostrar comentario padre al pasar rat\xF3n", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Mostrar el estado de gold de cada cuenta en el Seleccionador de Cuentas.", description: "" }, keyboardNavMoveToParentTitle: { message: "Moverse a padre", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Show Timestamps Comments", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conservar memoria al esconder temporalmente las im\xE1genes cuando no est\xE9n en pantalla", description: "" }, announcementsMarkAsRead: { message: "marcar como le\xEDdo", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Cuentas", description: "" }, spoilerTagsDesc: { message: "Esconde los spoilers en p\xE1ginas de perfil de usuario.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Mostrar oro", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "profundidad de comentario", description: "" }, keyboardNavImageMoveDownTitle: { message: "Mover imagen por abajo", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Anterior imagen de la galer\xEDa", description: "" }, userTaggerTaggedUsers: { message: "usuarios etiquetados", description: "" }, subredditInfoHoverDelayDesc: { message: "Demora, en milisegundos, antes de que la informaci\xF3n flotante cargue.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Hilo arriba", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "A\xF1adir m\xE1s informaci\xF3n y mejoras al karma del lado de tu nombre de usuario en la barra de usuario.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Profundidad de comentario por defecto", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Funcionalidades", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Car\xE1cter de separaci\xF3n entre karma de posts/comentarios", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Move Down Parent Sibling", description: "" }, dashboardTagsPerPageTitle: { message: "Etiquetas por p\xE1gina", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log", description: "" }, userTaggerStoreSourceLinkDesc: { message: "Por default, almacenar un enlace al post/comentario donde etiquetaste a un usuario", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Mejora la barra de navegaci\xF3n que se muestra en el lado izquierdo de la p\xE1gina principal.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Tecla de cita", description: "" }, keyboardNavHideDesc: { message: "Esconder enlace.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Tecla de negrita", description: "" }, xPostLinksName: { message: "Links de X-posts", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Siempre mostrar la herramienta de etiqueta despu\xE9s de los nombres de usuario", description: "" }, commentPreviewDraftStyleDesc: { message: "Aplica un estilo distintivo al fondo de la vista previa para diferenciarla de la secci\xF3n de comentarios.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Seguir comentarios", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Correo de moderador", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Altura m\xE1xima de comentarios", description: "" }, userTaggerColor: { message: "Color", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Limpiar comentarios", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "Comentarios", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Forzar la sincronizaci\xF3n de los filtros", description: "" }, nerShowServerInfoTitle: { message: "Mostrar informaci\xF3n del servidor", description: "" }, troubleshooterSettingsReset: { message: "Toda la configuraci\xF3n ha sido restablecida. Recargue para ver el resultado.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Move the image(s) in the highlighted post area left.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Open the current comment's permalink (comment pages only).", description: "" }, subredditInfoAddRemoveShortcut: { message: "acceso directo", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Color Blind Friendly", description: "" }, userInfoSendMessage: { message: "mandar mensaje", description: "" }, showKarmaUseCommasDesc: { message: "Usar comas para n\xFAmeros de karma grandes", description: "" }, noPartDisableVoteButtonsTitle: { message: "Desactivar botones de votaciones", description: "" }, commentToolsLinkKeyDesc: { message: "Atajo de teclado para a\xF1adir un enlace.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Comentario arriba", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "Cuando en un perfil, ofrecer la opci\xF3n de buscar los posts que el usuario haya posteado en el subreddit o multireddit del que vienes", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Color del alum al pasar rat\xF3n", description: "" }, userTaggerPage: { message: "P\xE1gina", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Cambia el valor por defecto en los enlaces de contexto.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Aumentar el tama\xF1o de la imagen", description: "" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Mostrar la cuenta no le\xEDdo en el Favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Llenar autom\xE1ticamente tus filtros de /r/all nativos con subreddits filtrados por este m\xF3dulo. Si tienes m\xE1s de 100, se eligen los subreddits m\xE1s populares.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Auxiliar de B\xFAsqueda", description: "" }, keyboardNavNextGalleryImageDesc: { message: "View the next image of an inline gallery.", description: "" }, nightModeName: { message: "Modo nocturno", description: "" }, filteRedditExcludeModqueueTitle: { message: "Excluir la cola de moderaci\xF3n", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Lanza la l\xEDnea de comandos de filtros", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "no se puede asignar etiqueta - no se ha seleccionado ning\xFAn env\xEDo/comentario.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "encendido", description: "" }, contextDesc: { message: "A\xF1ade un link a la barra de informaci\xF3n amarilla para ver comentarios enlazados muy profundos con todo su contexto.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Votar positivo sin cambiar", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Ir arriba", description: "" }, nightModeAutomaticNightModeUser: { message: "User-defined hours", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignorados", description: "" }, commentToolsCommentingAsDesc: { message: "Muestra el nombre de usuario con el que ha iniciado sesi\xF3n para evitar publicar con la cuenta equivocada.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Abrir enlace en nueva pesta\xF1a", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "You can change this later from the $1 settings", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Alternar", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "Despu\xE9s de cambiar cuentas, mostrar una advertencia en otras pesta\xF1as.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Respalda y restaura tus configuraciones de Reddit Enhancement Suite", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Estilo del desplegable", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Pulsar Ctrl+Enter o Cmd+Enter enviar\xE1 su publicaci\xF3n.", description: "" }, RESTipsMenuItemTitle: { message: "\xCDtem de men\xFA", description: "" }, optionKey: { message: "Identificaci\xF3n de la opci\xF3n", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Carga hojas de estilo extras, o hasta tus propios fragmentos de CSS.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "contrase\xF1a", description: "" }, userInfoUnignore: { message: "Dejar de ignorar", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "Macros", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn automatic mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn user-defined hours mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, presetsNoPopupsTitle: { message: "Sin ventanas emergentes", description: "" }, searchCopyResultForComment: { message: "copiar esto para un comentario", description: "" }, moduleID: { message: "Identificaci\xF3n del m\xF3dulo", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "\xBFMostrar n\xFAmero de mensajes no le\xEDdos en el t\xEDtulo de la p\xE1gina/pesta\xF1a?", description: "" }, xPostLinksXpostedFrom: { message: "publicado desde", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Alternar hijos", description: "" }, commandLineLaunchDesc: { message: "Open the RES Command Line", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Info del subreddit", description: "" }, betteRedditVideoUploadedTitle: { message: "Video subido", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Velocidad de la animaci\xF3n de desvanecimiento (en segundos).", description: "" }, aboutOptionsDonate: { message: "Apoya el desarrollo futuro de RES.", description: "" }, aboutOptionsBugsTitle: { message: "Errores", description: "" }, nerShowPauseButtonTitle: { message: "Mostrar el bot\xF3n de pausa", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Abrir con Clic \xDAnico", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Number of days before RES stops keeping track of a viewed thread.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Administrador de versiones.", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching.", description: "" }, commentDepthName: { message: "Profundidad de Comentarios Personalizada.", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Mostrar la cuenta no le\xEDdo en el Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Velocidad de la animaci\xF3n de desvanecimiento (en segundos).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Retraso de informaci\xF3n flotante", description: "" }, troubleshooterClearTagsTitle: { message: "Eliminar etiquetas", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Mostrar bot\xF3n de suscripci\xF3n", description: "" }, commentToolsKey: { message: "llave", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Color Usernames", description: "" }, commentStyleName: { message: "Estilo del comentario", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Mostrar todas las opciones", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "Portada", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatically scroll to the post/comment that is selected when the page loads", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "texto", description: "" }, notificationStickyTitle: { message: "Sticky", description: "" }, aboutOptionsAnnouncements: { message: "Lee las \xFAltimas novedades en /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "\xBFOcultar autom\xE1ticamente todo salvo los comentarios padre, o proporcionar un enlace para ocultarlos?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Quitar este subreddit de su barra de accesos directos", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "P\xE1gina anterior", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Resaltar cajas de comentarios para una lectura m\xE1s f\xE1cil / no perderse en hilos grandes.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "Al votar mover abajo", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Ocultar duplicados", description: "" }, keyboardNavFrontPageDesc: { message: "Ir a la portada", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Follow Link And Comments New Tab BG", description: "" }, singleClickDesc: { message: "A\xF1ade un enlace [l+c] que te abre el enlace y sus comentarios en pesta\xF1as nuevas con un solo clic.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Mostrar pesta\xF1a Ver Im\xE1genes", description: "" }, wheelBrowseName: { message: "Browse by Wheel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Show an envelope (inbox) icon in the top right corner.", description: "" }, aboutName: { message: "Acerca de RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "Copia de seguridad", description: "" }, productivityCategory: { message: "Productividad", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "No se ha especificado ning\xFAn subreddit.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Cerrar al mover el rat\xF3n fuera", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Moverse al comentario m\xE1s alto del hilo actual (en comentarios)", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: 'Cambia los enlaces de "ocultar" a que sean "ocultar" o "mostrar" en funci\xF3n de c\xF3mo se encuentran.', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 entradas eliminadas.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Reemplazar inmediatamente tus filtros de /r/all nativos.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Agregar columnas en la p\xE1gina de b\xFAsqueda", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter guarda hilos en vivo", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Profundidades de comentarios de subreddit", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Habilitar el editor de 2 columnas.", description: "" }, floaterName: { message: "Islas flotantes", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "Filtro r\xE1pido NSFW", description: "" }, filteRedditAllowNSFWDesc: { message: "No esconder publicaciones no aptas para el trabajo de determinados subreddits cuando el filtro NSFW est\xE9 encendido.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "A\xF1ade un bot\xF3n para mostrar u ocultar la barra de usuario.", description: "" }, showImagesDesc: { message: "Abre las im\xE1genes dentro del contenido del navegador con un solo clic de bot\xF3n. Tambi\xE9n tiene ajustes, \xA1echa un vistazo!", description: "" }, commentToolsMacroButtonsTitle: { message: "Botones de macro", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "No filtrar sus propias publicaciones.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Informaci\xF3n al pasar rat\xF3n", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "El ocultador de nombre de usuario oculta tu nombre de usuario en tu pantalla cuando est\xE1s conectado a reddit. De esta manera, si alguien mira sobre tu hombro durante el trabajo, o si est\xE1s tomando una captura de pantalla, tu nombre de usuario de reddit no se mostrar\xE1. Esto solo afecta tu pantalla.\nNo hay manera de publicar o comentar en reddit sin que tu publicaci\xF3n este vinculada a la cuenta con la que has publicado.", description: "" }, betteRedditName: { message: "betteReddit", description: "" }, voteEnhancementsName: { message: "Mejora de votos.", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: 'Mostrar opciones de "ordenar por" ocultas', description: "" }, betteRedditTruncateLongLinksDesc: { message: "Acorta los t\xEDtulos de publicaciones largos (de m\xE1s de 1 l\xEDnea) con puntos suspensivos.", description: "" }, subredditInfoAddRemoveDashboard: { message: "cuadro de mandos", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "Auto-completado de usuario", description: "" }, keyboardNavFollowProfileTitle: { message: "Seguir perfil", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Velocidad de desvanecimiento", description: "" }, aboutOptionsCodeTitle: { message: "C\xF3digo", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Nombre de usuario", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Move the image(s) in the highlighted post area up.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Donar", description: "" }, keyboardNavGoModeTitle: { message: "Go Mode", description: "" }, keyboardNavName: { message: "Navegaci\xF3n con el teclado", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "Resaltador de Usuarios", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notificar publicaciones editadas", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "subreddit/multireddit actual", description: "" }, troubleshooterTestNotificationsTitle: { message: "Probar Notificaciones", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Seguir enlace permanente", description: "" }, hoverDesc: { message: "Personalizar el comportamiento de los pop-ups informativos grandes que aparecen cuando posas el rat\xF3n encima de ciertos elementos.", description: "" }, modhelperName: { message: "Ayuda para Mod", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Esconder comentarios descendientes", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'Debe especificar "$1" o "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "Ir arriba", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Abrir mensaje r\xE1pido", description: "" }, pageNavToTopTitle: { message: "Al parte superior", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Hacer scroll en desplegables", description: "" }, userTaggerTag: { message: "Etiqueta", description: "" }, userbarHiderToggleUserbar: { message: "Alternar barra de usuario", description: "" }, nerReversePauseIconTitle: { message: "Reverse Pause Icon", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Quitar este subreddit de su cuadro de mandos", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Formatear o mostrar informaci\xF3n adicional sobre votos en publicaciones y comentarios.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Administrador de subreddit", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Sugerencias", description: "" }, keyboardNavSaveCommentTitle: { message: "Guardar comentario", description: "" }, nerPauseAfterEveryTitle: { message: "Pause After Every", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Linea de comandos para navegar por reddit, cambiar la configuraci\xF3n de RES y Depurar RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "Ver la imagen anterior en una galer\xEDa en l\xEDnea.", description: "" }, userInfoInvalidUsernameLink: { message: "Enlace a nombre de usuario inv\xE1lido.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Move down using Comment Navigator.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Fin del modo nocturno", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "Muestra la fecha en la zona horaria local al ubicar el cursor sobre una fecha.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "La pesta\xF1a que ser\xE1 expandida cada vez que realices una b\xFAsqueda", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "N\xFAcleo", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "M\xEDnimo de comentarios", description: "" }, aboutOptionsCode: { message: "\xA1Puedes mejorar RES con tu c\xF3digo, dise\xF1os e ideas! RES es un proyecto open-source en GitHub.", description: "" }, commentNavDesc: { message: "Ofrece un navegador de comentarios para encontrar f\xE1cilmente comentarios del OP, mods, etc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Pulsar Ctrl+Enter o Cmd+Enter guardar\xE1 actualizaciones a su hilo en vivo.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite est\xE1 bajo la licencia GPL v3.0.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Habilitar en mensajes de expulsi\xF3n", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Number of days before thread subscriptions expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?", description: "" }, styleTweaksToggleSubredditStyle: { message: "alternar el estilo del subreddit", description: "" }, RESTipsDailyTipTitle: { message: "Sugerencia diaria", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "Contador de Nuevos Comentarios", description: "" }, keyboardNavSlashAllDesc: { message: "Ir a /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "Mostrar padres", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "Portada", description: "" }, commentToolsCategory: { message: "categor\xEDa", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: 'Cuando pasas el cursor por encima de "puntuaci\xF3n oculta", muestra el tiempo restante en lugar de la duraci\xF3n del ocultado.', description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Muestra la hora a la que un aporte de texto o comentario fue editado, sin tener que pasar el rat\xF3n por el tiempo. ", description: "" }, aboutOptionsSearchSettings: { message: "Encuentra los ajustes de RES.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Siguiente imagen de la galer\xEDa", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Estilo de subreddit habilitado para el subreddit: $1", description: "" }, notificationsNeverSticky: { message: "never sticky", description: "" }, keyboardNavMoveDownDesc: { message: "Move down to the next link or comment in flat lists.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Mostrar el bot\xF3n de plegar [-] en la bandeja de entrada.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "A\xF1adir este subreddit a su barra de accesos directos", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Votos positivos", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Recargar otras pesta\xF1as", description: "" }, betteRedditVideoTimesTitle: { message: "Video Times", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Dise\xF1ar\xA0el env\xEDo o comentario seleccionado", description: "" }, appearanceCategory: { message: "Apariencia", description: "" }, userTaggerShowIgnoredDesc: { message: "Proveer un enlace para revelar un enlace o comentario ignorado", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "Tecla de cursiva", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Usar los filtros de Reddit", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Esconder flechas de voto en hilos en que no puedes votar (p.ej. son archivados debido a su edad)", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatically select the last thing you had selected", description: "" }, aboutOptionsPresetsTitle: { message: "Preajustes", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Profundidad por defecto que usar para todos los subreddits que no figuren en la lista de debajo.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Esconder", description: "" }, aboutOptionsContributorsTitle: { message: "Colaboradores", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Conmutar ayuda", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "Cuando abriendo enlace - concentra la pesta\xF1a?", description: "" }, aboutOptionsFAQ: { message: "Para aprender m\xE1s acerca de RES, consulta la wiki de /r/Enhancement.", description: "" }, betteRedditPinHeaderDesc: { message: "Fija la barra de subreddit, men\xFA de usuario, o cabecera a la parte de arriba, acompa\xF1\xE1ndote mientras bajas por la p\xE1gina.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Mostrar los apuntes del lanzamiento en pesta\xF1a al fondo", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Mostrar la fecha exacta en la barra lateral.", description: "" }, keyboardNavUpVoteDesc: { message: "Votar positivo el enlace o comentario (o quitar el voto positivo).", description: "" }, singleClickOpenFrontpageTitle: { message: "Abrir Portada", description: "" }, messageMenuHoverDelayDesc: { message: "Demora, en milisegundos, antes de que la informaci\xF3n flotante cargue.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Go to subreddit of selected link (link pages only).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Mantenerme conectado cuando reinicie mi navegador.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Toggle expando (image/text/video).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "Ver comentarios para el enlace en una nueva pesta\xF1a.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "Copia de seguridad", description: "" }, profileNavigatorHoverDelayDesc: { message: "Demora, en milisegundos, antes de que la informaci\xF3n flotante cargue.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "\xA1RES le permite deshabilitar los estilos espec\xEDficos de los subreddits!", description: "" }, customTogglesDesc: { message: "Crear botones de encendido/apagado personalizados para varias partes de RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "Sin nombre de usuario espec\xEDfico.", description: "" }, filteRedditDesc: { message: "Filtra el contenido NSFW, o enlaces por palabras clave, dominio (usa el Etiquetador de usuarios para ignorar por usuario) o subreddit (para /r/all o /dominio/*).\n\nExpresiones regulares como `/(estoesoaquello)/i` se permiten en cajas de texto. Aprende m\xE1s en la [wiki de /r/Enhancement](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Botones de herramientas de formato", description: "" }, commentPreviewEnableForWikiDesc: { message: "Mostrar una vista previa de las p\xE1ginas de la wiki.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Mover imagen por arriba", description: "" }, settingsNavDesc: { message: "Te ayuda a moverte por la Consola de Ajustes de RES con mayor facilidad.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox", description: "" }, usernameHiderName: { message: "Ocultador de nombre de usuario.", description: "" }, subredditManagerLinkModTitle: { message: "Enlace al mod", description: "" }, notificationsEnabled: { message: "activado", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Herramientas de tabla.", description: "" }, showParentFadeSpeedTitle: { message: "Velocidad de desvanecimiento", description: "" }, userInfoUserNotFound: { message: "Usuario no encontrado.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Cortar enlaces largos", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Abrir la l\xEDnea de comandos de RES.", description: "" }, nerHideDupesDontHide: { message: "No esconder", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Mostrar el nombre del usuario al pasar rat\xF3n", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "sus votos para $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "A\xF1ade botones macro al cuadro de edici\xF3n de posts, comentarios, y otras \xE1reas de texto de snudown/markdown.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Move the image(s) in the highlighted post area right.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alien)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Abrir editor grande", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height", description: "" }, pageNavShowLinkNewTabTitle: { message: "Mostrar enlace del pesta\xF1a nueva", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Estilo de desplazamiento no lineal", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Abre el campo marcado actualmente en el editor grande. (Solo cuando hay un formulario enfocado).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Establecer profundidad en los enlaces a comentarios en particular con contexto.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Ir a la portada del subreddit", description: "" }, menuName: { message: "Men\xFA de RES", description: "" }, messageMenuDesc: { message: "Pasa el rat\xF3n por encima del icono del sobre para acceder a diferentes tipos de mensajes o componer un nuevo mensaje.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Mostrar una transici\xF3n cuando abres y cierras pesta\xF1as", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "Tras ocultar un enlace, autom\xE1ticamente selecciona el siguiente.", description: "" }, commentStyleDesc: { message: "A\xF1adir mejoras para la lectura a los comentarios.", description: "" }, keyboardNavRandomDesc: { message: "Ir a un subreddit aleatorio.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "Comentando como", description: "" }, keyboardNavImageSizeUpDesc: { message: "Increase the size of image(s) in the highlighted post area.", description: "" }, floaterDesc: { message: "Gestiona los elementos flotantes de RES", description: "" }, subredditManDesc: { message: "Te permite personalizar la barra superior con tus propios atajos a subreddits, incluyendo menus desplegables de multi-reddits y m\xE1s.", description: "" }, keyboardNavSavePostDesc: { message: "Save the current post to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Habilitar editor grande", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification", description: "" }, announcementsDesc: { message: "Mant\xE9nte informado de noticias importantes.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "A\xF1adir fila", description: "" }, keyboardNavReplyDesc: { message: "Responder al comentario actual (s\xF3lo en p\xE1ginas de comentarios).", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "Notificaciones de RES", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "Ver comentarios para el enlace (shift los abre en una pesta\xF1a nueva)", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Mostrar vista previa de markdown en la barra lateral mientras editas", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Perfil nueva pesta\xF1a", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Seguir enlace y comentarios en una pesta\xF1a nueva", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Navegaci\xF3n de multireddit", description: "" }, keyboardNavToggleExpandoTitle: { message: "Habilitar Expando", description: "" }, showKarmaName: { message: "Mostrar Karma", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Auto-completado de subreddit", description: "" }, settingsNavName: { message: "Navegaci\xF3n de Ajustes de RES", description: "" }, contributeName: { message: "Donar y contribuir", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Mostrar detalles de depuraci\xF3n (servidor \u03C0) cerca de las herramientas flotantes de Never-Ending Reddit.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Disable Comment Textarea", description: "" }, tableToolsSortDesc: { message: "Activar ordenaci\xF3n de columna", description: "" }, userInfoHoverDelayDesc: { message: "Demora, en milisegundos, antes de que la informaci\xF3n flotante cargue.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Establecer profundidad en los enlaces a comentarios en concreto.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Muestra un men\xFA enlazando a varias secciones del perfil de usuario actual mientras se desplaza el rat\xF3n sobre el enlace del nombre de usuario en la esquina superior derecha.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "Herramientas de edici\xF3n", description: "" }, accountSwitcherAccountsDesc: { message: "Asigna tus nombres de usuario y contrase\xF1as abajo. S\xF3lo ser\xE1n almacenadas en las preferencias de RES.", description: "" }, singleClickOpenBackgroundTitle: { message: "Abrir el fondo", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "Cuando se filren subreddits con la opci\xF3n de arriba, donde deber\xEDan ser filtrados?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Previsualizaci\xF3n en directo", description: "" }, hoverOpenDelayDesc: { message: "Retardo por defecto entre pasar el rat\xF3n por encima y la apertura de la ventana emergente", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color of the bar when collapsed.", description: "" }, announcementsName: { message: "Anuncios de RES", description: "" }, betteRedditVideoViewedDesc: { message: "Mostrar el numero de visualizaciones de un v\xEDdeo cuando sea posible.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Moverse al comentario m\xE1s alto", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "Volver a cargar", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Esconder los nombres de usuario", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Actualizar otras pesta\xF1as", description: "" }, notificationsNotificationID: { message: "notification ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Mostrar Fuente Snudown", description: "" }, keyboardNavInboxDesc: { message: "Ir a la bandeja de entrada", description: "" }, gfycatUseMobileGfycatDesc: { message: "Usar los gifs m\xF3viles (de menor resoluci\xF3n) de gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Alternar ver im\xE1genes", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Respalda y restaura tus configuraciones de RES.", description: "" }, showParentDesc: { message: 'Muestra los comentarios padre cuando se pasa el rat\xF3n por encima del enlace "padre" de un comentario.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Reduce el tama\xF1o de las im\xE1genes en el \xE1rea del post marcada.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Mostrar longitud de lo introducido", description: "" }, keyboardNavSaveRESDesc: { message: "Save the current comment with RES. This does preserve the original text of the comment, but is only saved locally.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Inspirado por m\xF3dulos como 'River of Reddit' y 'Auto Pager'; ofrece un torrente sin fin de lo mejor de reddit.", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "No filtrar nada en las p\xE1ginas de perfil de usuarios", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Restaurar", description: "" }, logoLinkCustom: { message: "Personalizado", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Activa o desactiva todo lo conectado a este interruptor, y opcionalmente, a\xF1ade un interruptor al men\xFA desplegable de la tuerca de RES.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Mostrar las l\xEDneas de continuidad de comentario", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Stop filtering this subreddit from /r/all and /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Publicaciones por defecto", description: "" }, contextViewFullContextTitle: { message: "Ver contexto completo", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacidad", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "A\xF1ade una herramienta para ver el texto original de entradas y comentarios, antes que se le aplique el formato de reddit.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Move down to the next comment on threaded comment pages.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Votos negativos", description: "" }, submitHelperDesc: { message: "Provee utilidades para ayudar a enviar un post", description: "" }, hideChildCommentsAutomaticTitle: { message: "Autom\xE1tico", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separador", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Retardo por defecto antes de que el emergente se disipe tras quitar el cursor sobre \xE9l.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Ubicaci\xF3n al hacer clic en el logotipo de Reddit", description: "" }, settingsConsoleName: { message: "Consola de ajustes.", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Profundidades de comentarios espec\xEDficas para subreddits.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Color de su amigo al pasar rat\xF3n", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Ir al correo de moderador.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Destaca el mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "M\xE9todo de ordenar por defecto nuevos widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "Despu\xE9s de cambiar cuentas, recargar autom\xE1ticamente otras pesta\xF1as.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Desactivar animaciones", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "habilitado", description: "" }, nightModeColoredLinksTitle: { message: "Enlaces a color", description: "" }, modhelperDesc: { message: "Ayuda a los moderadores mediante consejos y trucos para aprovechar RES al m\xE1ximo.", description: "" }, quickMessageName: { message: "Mensaje r\xE1pido", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Enable this feature again", description: "" }, userHighlightDesc: { message: "Resalta ciertos usuarios en los hilos de comentarios: OP, Admin, Amigos, Mod - Contribuido por MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Desplazar la ventana al comienzo del enlace cuando se use la tecla de expando (para que se vean en pantalla im\xE1genes y otros).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Demora, en milisegundos, antes de que la informaci\xF3n flotante se desvanezca.", description: "" }, userInfoAddRemoveFriends: { message: "$1 amigos", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Horas en que el modo nocturno autom\xE1tico anulaci\xF3n dura.\nPuedes usar un n\xFAmero decimal tambi\xE9n, p.ej. 0.1 horas (igual a 6 minutos)", description: "" }, presetsNoPopupsDesc: { message: "Desactivar todas las notificaciones y ventanas emergentes ", description: "" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Mostrar un bot\xF3n de reproducci\xF3n/pausa para auto-cargar en la esquina superior derecha", description: "" }, messageMenuName: { message: "Men\xFA de mensajes.", description: "" }, aboutOptionsSuggestions: { message: "Si tienes una idea para RES o quieres hablar con otros usuarios, visita /r/Enhacenment.", description: "" }, userbarHiderName: { message: "Ocultador de la barra de usuario.", description: "" }, stylesheetRedditThemesTitle: { message: "Temas de Reddit", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "Al saltar a una entrada (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), \xBFcu\xE1ndo y c\xF3mo deber\xEDa RES desplazar la ventana?", description: "" }, subredditInfoFadeDelayTitle: { message: "Retardo del desvanecimiento", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "Todas las memorias cach\xE9s vaciadas.", description: "" }, localDateName: { message: "Fecha local", description: "" }, commentStyleCommentRoundedDesc: { message: "Bordes redondeados en las cajas de comentarios.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Usar Go Mode", description: "" }, messageMenuLabel: { message: "etiqueta", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Mostrar el nombre de usuario actual", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filtro", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Show Unread Count In Title", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Vista previa de la barra lateral", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Seguir subreddit en una nueva pesta\xF1a", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Mostrar herramienta de auto-completado cuando se escriba en publicaciones, comentarios, y respuestas.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "A\xF1adir un bot\xF3n que active o desactive de forma r\xE1pida el filtro NSFW al men\xFA del engranaje.", description: "" }, subredditInfoSubscribe: { message: "suscribirse", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Votar negativo el enlace o comentario (o quitar el voto negativo).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter env\xEDa comentarios", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter env\xEDa publicaciones", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Retraso de informaci\xF3n flotante", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit creado.", description: "" }, multiredditNavbarLabel: { message: "etiqueta", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Retraso de informaci\xF3n flotante", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Mostrar una vista previa de una nota de expulsi\xF3n.", description: "" }, usersCategory: { message: "Usuarios", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Colorear enlaces azul y purpura", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit no encontrado.", description: "" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here.", description: "" }, resTipsName: { message: "Consejos y trucos de RES", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Alternar l\xEDnea de comandos", description: "" }, contextName: { message: "Contexto", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Siempre", description: "" }, troubleshooterThisWillKillYourSettings: { message: 'Esto destruir\xE1 todas las opciones y datos guardados. Si est\xE1 seguro, escriba "$1".', description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "Usuario suspendido.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Usar comas", description: "" }, userInfoLinks: { message: "Enlaces", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Mover a la parte superior de la lista (para enlaces)", description: "" }, contextDefaultContextTitle: { message: "Contexto por defecto", description: "" }, userTaggerTagUserAs: { message: "etiquetar usuario $1como: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Ancho M\xE1ximo", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Move Down Sibling", description: "" }, customTogglesName: { message: "Botones customizados", description: "" }, pageNavShowLinkTitle: { message: "Mostrar Enlace", description: "" }, keyboardNavProfileNewTabDesc: { message: "Ir al perfil en una pesta\xF1a nueva.", description: "" }, aboutCategory: { message: "Acerca de RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Enlace Amigos", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: 'Regalar "Reddit Gold"', description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restaura una copia de seguridad de tus ajustes de RES.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Mostrar una vista previa de los comentarios.", description: "" }, spamButtonName: { message: "Bot\xF3n de Spam", description: "" }, hoverInstancesTitle: { message: "Instancias", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colors couldn't be generated. This is probably due to the use of colors in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Use atajos de teclado para aplicar estilos al texto seleccionado.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Ocultar opciones de b\xFAsqueda y sugerencias autom\xE1ticamente en la p\xE1gina de b\xFAsqueda", description: "" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions.", description: "" }, logoLinkDashboard: { message: "Cuadro de mandos", description: "" }, dashboardDashboardShortcutDesc: { message: "Show +dashboard shortcut in sidebar for easy addition of dashboard widgets.", description: "" }, userInfoName: { message: "Informaci\xF3n del Usuario", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Width of the bar.", description: "" }, filteRedditDomainsTitle: { message: "Dominios", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Resaltar puntajes", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Ocultar modmail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Abrir cuando se se\xF1ale un usuario", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "Lee la pol\xEDtica de privacidad de RES", description: "" }, commentStyleContinuityTitle: { message: "Continuidad", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+a\xF1adir filtro", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Mostrar detalles de cada cuenta en el Seleccionador de Cuentas, como el karma o gold.", description: "" }, browsingCategory: { message: "Navegaci\xF3n", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "\xBFEst\xE1 seguro quiere borrar la etiqueta por usuario $1?", description: "" }, selectedEntryAddLineTitle: { message: "A\xF1adir l\xEDnea", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Hilo abajo", description: "" }, keyboardNavInboxTitle: { message: "Bandeja de entrada", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "Quitar resaltado", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Mostrar por defecto", description: "" } }; // locales/locales/es_419.json var es_419_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Mostrar Navegador de Comentario cuando un usuario es acentuado.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Mostrar la fecha exacta de los comentarios / mensajes.", description: "" }, commentPrevDesc: { message: "Provee una previsualizaci\xF3n en vivo mientras se edita comentarios, envi\xF3 de textos, mensajes, p\xE1ginas wiki, y otras \xE1reas de texto (markdown); as\xED como tambi\xE9n un editor a dos columnas para escribir texto no estructurado. ", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Intercambiar la previsualizaci\xF3n y editor (previsualizaci\xF3n a la izquierda y editor a la derecha)", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Mover Comentario Abajo", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Mostrar enlace a mi tablero en el men\xFA de RES.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "User has Reddit Gold", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Mover Arriba Hermano", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Comment Indent", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Desactivar todos los m\xF3dulos de RES.", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Mostrar la fecha precisa en el historial de moderaci\xF3n (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Aleatorio", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Seguir Comentarios Nueva Pesta\xF1a", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "unsubscribe", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "Mensajes No Le\xEDdos", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Mostrar una ayuda aleatoria una vez cada 24 horas.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Keywords", description: "" }, filteRedditAllowNSFWTitle: { message: "Permitir NSFW", description: "" }, hoverOpenDelayTitle: { message: "Demora al Abrir", description: "" }, keyboardNavNextPageTitle: { message: "Siguiente P\xE1gina", description: "" }, commentToolsSuperKeyTitle: { message: "Super Key", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Custom Destination", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Comment Permalinks Context", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Restore Saved Tab", description: "" }, orangeredHideModMailDesc: { message: "Ocultar el bot\xF3n de mod mail en la barra de usuario.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Difuminar o completamente ocultar temas duplicados ya mostrados en la p\xE1gina.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "Etiquetado de Usuario", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Comment Navigator Move Down", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Agregar un bot\xF3n para esconder opciones de b\xFAsqueda mientras se ejecuta una b\xFAsqueda.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Move up using Comment Navigator.", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Usar el icono "snoo", o antiguo estilo emergente? ', description: "" }, userHighlightOPColorTitle: { message: "Color OP", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Keep Macro List Open", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Toggle Comment Navigator", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Atajos de Teclado", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Seguir enlace en nueva pesta\xF1a (solo p\xE1ginas de enlace).", description: "" }, onboardingDesc: { message: "Aprenda mas sobre RES en /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "Filtro de No Apto Para Trabajo", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Demora Ocultamiento", description: "" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsLinkKeyTitle: { message: "Link Key", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+agregar atajo", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "P\xE1gina Principal Subreddit", description: "" }, keyboardNavFollowSubredditTitle: { message: "Seguir Subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Show Gold", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "Cargador de Hoja de Estilos", description: "" }, subredditInfoOver18: { message: "Over 18:", description: "" }, userInfoIgnore: { message: "Ignorar", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Mostrar atajos personalizados por cada cuenta.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "Menu Item", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Lista Blanca Estilo de Subreddit", description: "" }, troubleshooterAreYouPositive: { message: "Are you positive?", description: "" }, messageMenuAddShortcut: { message: "+agregar atajo", description: "" }, troubleshooterName: { message: "Troubleshooter", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Buz\xF3n Nueva Pesta\xF1a", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "Despu\xE9s de votar en un enlace, autom\xE1ticamente seleccionar el siguiente enlace.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "Bienvenido a RES", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Stop filtering from /r/all and /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Mover al comentario inicial del siguiente hilo (en comentarios).", description: "" }, hoverName: { message: "Puntero en Ventanas Emergentes de RES", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Activar para Comentarios", description: "" }, spamButtonDesc: { message: "Agrega un bot\xF3n de spam a temas para facilitar el reporte.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Barra Lateral Flotante", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Ultima Actualizaci\xF3n", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "etiqueta", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Texto que autom\xE1ticamente sera insertado en el campo de tema, a menos que sea auto-completado por contexto.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitorear el n\xFAmero de comentarios y editar fechas de temas que ha visitado.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Ayud\xE1ndote a recibir tu dosis diaria de orangereds.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Modo Nocturno Activo", description: "" }, myAccountCategory: { message: "Mi Cuenta", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Comentarios M\xEDnimos por Defecto", description: "" }, yes: { message: "Si", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "En milisegundos, tiempo disponible para detener una notificaci\xF3n de desaparecer.", description: "" }, commandLineMenuItemTitle: { message: "Elemento de Men\xFA", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Mostrar enlace "ALEATORIO" en administrador subreddit.', description: "" }, userHighlightFriendColorTitle: { message: "Color Amigo", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Te dice cuantos nuevos comentarios han sido creados desde tu ultima visita al hilo.", description: "" }, userTaggerPageXOfY: { message: "$1 of $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "My User Tags", description: "" }, pageNavShowLinkNewTabDesc: { message: "Abrir enlace en nueva pesta\xF1a.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Configuraci\xF3n de Busqueda", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Permitir letras en min\xFAsculas en atajos en vez de forzar may\xFAsculas.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "Do No Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "V\xEDdeo Visto", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Pone en negrita el "Comentando Como" si esta usando una cuenta alterna. La primera cuenta en el m\xF3dulo Cambiar Cuenta es considerado como su cuenta principal.', description: "" }, usernameHiderDisplayTextTitle: { message: "Mostrar Texto", description: "" }, commentToolsShowInputLengthDesc: { message: "Cuando envi\xE9 tema/comentario, mostrar el numero de caracteres ingresados en el t\xEDtulo y campos de texto e indicar cuando se pase del limite de 300 caracteres para t\xEDtulos.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Incrementar el tama\xF1o de imagen(im\xE1genes) en el \xE1rea de tema seleccionada, mejor control.", description: "" }, nerName: { message: "Reddit Sin Fin", description: "" }, subredditInfoTitle: { message: "T\xEDtulo:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Autom\xE1tico (requiere geolocalizaci\xF3n)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "Ver enlaces y comentarios en nuevas pesta\xF1as de fondo.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Comment Hover Border", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "Reemplazar su nombre de usuario con.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Desvanecer", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Disminuir el tama\xF1o de imagen(im\xE1genes) en el area de tema seleccionado, mejor control.", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Ir a la siguiente p\xE1gina (solo p\xE1gina lista de enlaces).", description: "" }, notificationsPerNotificationType: { message: "por tipo de notificaci\xF3n", description: "" }, subredditTaggerDesc: { message: "Agrega texto personalizado al inicio de los t\xEDtulos de env\xEDo en la p\xE1gina principal, multireddits y /r/all. \xDAtil para agregar contexto a env\xEDos de temas.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Mejora el manejo de varias partes de su p\xE1gina de usuario.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Incluye funcionalidad adicional a los tablas Markdown de Reddit (solo ordenamiento).", description: "" }, notificationsAlwaysSticky: { message: "siempre permanente", description: "" }, searchName: { message: "Buscar Configuraci\xF3n RES", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Enviar Como", description: "" }, pageNavName: { message: "Navegador de P\xE1ginas", description: "" }, keyboardNavFollowLinkDesc: { message: "Seguir enlace (solo p\xE1ginas de enlace).", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "Graba el estado de comentarios ocultos a trav\xE9s de visitas a p\xE1ginas.", description: "" }, quickMessageDesc: { message: "Una ventana emergente que permite enviar mensajes desde cualquier lado en reddit. Los mensajes pueden ser enviados desde un dialogo de mensaje r\xE1pido al presionar control + intro o command + intro.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "usuario", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Enlaces para mostrar el men\xFA desplegable.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Modo Nocturno Inicio", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "User Bar Hidden", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+agregar subreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Swap Big Editor Layout", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Auto cargar", description: "" }, nerReturnToPrevPageDesc: { message: 'Regresar a la p\xE1gina que se estuvo anteriormente al presionar bot\xF3n "Atr\xE1s"? ', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Secci\xF3n de Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Mover al siguiente hermano de padre (en comentarios).", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Actualizar todas las pesta\xF1as abiertas cuando RES verifica por orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Score Hidden Time Left", description: "" }, hoverWidthDesc: { message: "Longitud por defecto de ventana emergente.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Activar/desactivar modo nocturno.", description: "" }, userTaggerShowIgnoredTitle: { message: "Mostrar Ignorados", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Never Ending Comments", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Exclude Own Posts", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "Ir a modmail en una nueva pesta\xF1a.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "Modmail Nueva Pesta\xF1a", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Color Alum", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Mostrar el bot\xF3n de Suscripci\xF3n?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color de la barra cuando el puntero este sobre el.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Ingresar filtro de Linea de Comando", description: "" }, betteRedditDoNoCtrlFDesc: { message: 'Cuando se use CTrl+F/Cmd+F "Encontrar Siguiente" en el navegador, solo buscara texto en temas/comentarios y no en enlaces de navegaci\xF3n ("grabar origen de permalink ..."). Desactivado por defecto debido a ligero impacto en desempe\xF1o. ', description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Requiere Enlace Directo", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Ocultar Comentarios en Doble Clic de Cabecera", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Autom\xE1ticamente aplicar un color especial a cada nombre de usuario.", description: "" }, backupName: { message: "Respaldo & Restauraci\xF3n", description: "" }, profileNavigatorSectionLinksDesc: { message: "Enlaces a mostrar en el men\xFA emergente del perfil.", description: "" }, notificationCloseDelayDesc: { message: "En milisegundo, duraci\xF3n de tiempo hasta que una notificaci\xF3n empiece a desaparecer.", description: "" }, styleTweaksUseSubredditStyle: { message: "Use subreddit style", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Autom\xE1ticamente iniciar con un enlace a la p\xE1gina actual en el cuerpo del mensaje (o, si es abierto desde la ventana de informaci\xF3n de usuario, un enlace al tema actual o comentario).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Add this subreddit to your dashboard", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, nightModeUseSubredditStylesTitle: { message: "Usar Estilos de Subreddit", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "Despu\xE9s de votar un comentario, autom\xE1ticamente seleccionar el siguiente comentario.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Use Mobile Gfycat", description: "" }, commentToolsItalicKeyDesc: { message: "Atajo de teclado para convertir texto en it\xE1lica.", description: "" }, messageMenuLinksDesc: { message: "Links to show in the mail icon drop down menu.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit oculta algunas opciones de ordenamiento de comentarios (aleatorio, etc.) en la mayor\xEDa de paginas. Esta opci\xF3n las muestra.", description: "" }, commandLineLaunchTitle: { message: "Ejecutar", description: "" }, betteRedditDesc: { message: 'Agrega un numero de mejoras en la interfaz de Reddit, tales como enlaces a "comentarios completos", la habilidad de volver a mostrar temas que fueron accidentalmente ocultados, y m\xE1s.', description: "" }, resTipsDesc: { message: "Agrega consejos/trucos de ayuda para la consola de RES.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Mover a hermano anterior (en comentarios) - salta al hermano anterior al mismo nivel.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Acentuar jerarqu\xEDa de cajas de comentarios al posicionar el puntero sobre ellos (apagar para mejor desempe\xF1o).", description: "" }, imgurImageResolutionTitle: { message: "Resoluci\xF3n de Imagen de Imgur", description: "" }, commentToolsBoldKeyDesc: { message: "Atajo de teclado para convertir texto en negrita.", description: "" }, hoverWidthTitle: { message: "Ancho", description: "" }, dashboardName: { message: "Tablero RES", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Show Last Edited Timestamp", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Keep Logged In", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Crear enlaces a temas subreddit cruzados (x-post) en linea de etiquetas.", description: "" }, userbarHiderUserbarStateTitle: { message: "Estado Barra de Usuario", description: "" }, messageMenuFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Click here to learn more", description: "" }, keyboardNavInboxNewTabDesc: { message: "Ir al buz\xF3n en una nueva pesta\xF1a.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Mostrar previsualizaci\xF3n para edici\xF3n de configuraci\xF3n de subreddits.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Manejar Enlaces Laterales", description: "" }, userTaggerAllUsers: { message: "todos los usuarios", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "Agregar un icono a cada p\xE1gina que lo lleva al inicio cuando se hace clic sobre el.", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expande/contrae comentarios (solo p\xE1gina de comentarios). ", description: "" }, commentPreviewDraftStyleTitle: { message: "Draft Style", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Mostrar la fecha precisa en el wiki.", description: "" }, logoLinkInbox: { message: "Buz\xF3n", description: "" }, searchHelperDesc: { message: "Provee ayuda con el uso del buscador.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Seguir Enlaces Nueva Pesta\xF1a", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Enlace Todo", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Show Timestamp Posts", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Enlaces No Le\xEDdos a Buz\xF3n", description: "" }, presetsName: { message: "Pre-Configuraciones", description: "" }, styleTweaksName: { message: "Ajuste de Estilo", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Anuncios", description: "" }, hoverInstancesDesc: { message: "Administrar Ventanas Emergentes Particulares", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Mover hacia arriba al anterior comentario o p\xE1gina de hilo de comentarios.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Show Timestamp Sidebar", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Fade Speed", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Demora, en milisegundos, antes de que un enlace oculto desaparezca.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Mostrar Karma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Modo Nocturno Autom\xE1tico", description: "" }, noPartDisableCommentTextareaDesc: { message: "Desactivar comentarios.", description: "" }, nerReturnToPrevPageTitle: { message: "Regresar a P\xE1gina Anterior", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'Agregar un enlace "Ver Contexto Completo" cuando se esta en un enlace de comentario.', description: "" }, messageMenuFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsDesc: { message: "Provee herramientas y atajos para composici\xF3n de comentarios, texto en temas, p\xE1ginas de wiki, y otras \xE1reas de texto (markdown).", description: "" }, noPartName: { message: "Sin Participaci\xF3n", description: "" }, presetsDesc: { message: "Selecci\xF3n de varias pre-configuraciones de RES. Cada pre-configuraci\xF3n activa o desactiva varios m\xF3dulos/opciones, pero no modifica toda su configuraci\xF3n.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "n\xFAmero m\xEDnimo de comentarios por defecto requeridos para aplicar como nivel personalizado.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Mostrar las herramientas de comentarios en la caja de texto de notas de suspensi\xF3n.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Ir a enlace de subreddit en una nueva pesta\xF1a (solo p\xE1gina de enlaces).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Subreddit Style", description: "" }, keyboardNavDownVoteTitle: { message: "Voto Abajo", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Mover Abajo", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspender Car\xE1cteristicas", description: "" }, styleTweaksHideUnvotableTitle: { message: "Ocultar No Votable", description: "" }, notificationNotificationTypesTitle: { message: "Tipos de Notificaci\xF3n", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "Al Votar Comentario Mover Abajo", description: "" }, hoverCloseOnMouseOutDesc: { message: "Cerrar la ventana emergente al mover fuera el puntero adicional de tener el bot\xF3n cerrar.", description: "" }, subredditTaggerName: { message: "Etiquetador Subreddit", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Highlight If Alt Account", description: "" }, userInfoDesc: { message: "Agrega un mensaje emergente a usuarios.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "Por defecto, almacenar un enlace a comentarios cuando se etiqueta un usuario en un tema enlazado. De otra forma, el enlace (que el tema se refiere) sera usado.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Demora Cerrar", description: "" }, profileNavigatorSectionMenuTitle: { message: "Secci\xF3n de Men\xFA", description: "" }, logoLinkDesc: { message: "Permitir cambiar el enlace en el logo de Reddit.", description: "" }, imgurImageResolutionDesc: { message: "Que tama\xF1o de im\xE1genes de Imgur deben cargarse?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Atajo de teclado para abrir ventana de mensaje r\xE1pido", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direcci\xF3n", description: "" }, dashboardDefaultPostsDesc: { message: "N\xFAmero de temas a mostrar por defecto en cada artilugio.", description: "" }, pageNavDesc: { message: "Provee herramientas para moverse en la p\xE1gina.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Mostrar mi nombre de usuario actual en Cambiar Cuenta.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 esta en $2 multireddits", description: "" }, commentToolsStrikeKeyTitle: { message: "Strike Key", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Enlace Mi Aleatorio", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Demora, en milisegundos, antes de cargar ventana emergente.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colorblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Mostrar Navegador de Comentario por Defecto", description: "" }, keyboardNavSaveRESTitle: { message: "Grabar RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "Al Ocultar Mover Abajo", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Comment Boxes", description: "" }, profileNavigatorName: { message: "Navegador de Perfil", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "No", description: "" }, notificationFadeOutLengthTitle: { message: "Duraci\xF3n Desvanecer", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Estilo Desplazamiento Lineal", description: "" }, userbarHiderUserbarStateDesc: { message: "Barra de usuario", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "Mostrar comentarios de padre.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Personaliza RES de manera r\xE1pida con diferentes presets", description: "" }, userHighlightOPColorDesc: { message: "Color a usar para enfocar OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "Si un usuario hace clic a una opci\xF3n avanzada mientras las opciones avanzadas est\xE1n ocultas, mostrar alerta?", description: "" }, commentHidePerName: { message: "Comentario Oculto Persistente", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Elemento Seleccionado", description: "" }, betteRedditPinHeaderTitle: { message: "Pin Header", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Macro Placeholders", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Enable For Ban Messages", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Abrir Correo en Nueva Pesta\xF1a", description: "" }, versionDesc: { message: "Maneja revisi\xF3n de versi\xF3n actual/anterior. ", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Your username, karma, preferences, RES gear, and so on are hidden. You can show them again by clicking the $1 button in the top right corner.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Autom\xE1ticamente seleccionar el el elemento inicial cuando se desplace", description: "" }, keyboardNavFollowLinkTitle: { message: "Seguir Enlace", description: "" }, keyboardNavMoveBottomDesc: { message: "Mover al final de lista (en p\xE1ginas de enlaces).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "Filtro de Usuario Por Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Upvote selected link or comment (but don't remove the upvote).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Demora Transici\xF3n Ocultamiento", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Comment Permalinks", description: "" }, aboutOptionsLicenseTitle: { message: "Licencia", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Mostrar previsualizaci\xF3n para temas.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Imagen Mover Derecha", description: "" }, keyboardNavPrevPageDesc: { message: "Ir a p\xE1gina anterior (solo p\xE1gina lista de enlaces).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitorear Temas Visitados", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Abrir enlaces encontrando en comentario en una nueva pesta\xF1a.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoCommentKarma: { message: "Comment Karma:", description: "" }, settingsConsoleDesc: { message: "Administre sus configuraciones y preferencias de RES.", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Color Mod", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "V\xEDnculos", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Comments Links New Tabs", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Error cargando informaci\xF3n de subreddit.", description: "" }, accountSwitcherName: { message: "Cambiar Cuenta", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Mover al siguiente hermano (en comentarios) - salta al siguiente hermano al mismo nivel.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Night Switch", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Almacenar Enlace Origen", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Activar para Temas", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Mostrar ayuda de atajos de teclado.", description: "" }, presetsLiteTitle: { message: "Ligero", description: "" }, dashboardDashboardShortcutTitle: { message: "Dashboard Shortcut", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Esconder", description: "" }, userInfoLink: { message: "Link:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "$1 ago", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Mostrar duraci\xF3n de v\xEDdeos cuando sea posible.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignorado.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Responder", description: "" }, accountSwitcherSimpleArrow: { message: "flecha simple", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "Todas las opciones son mostradas por defecto. Desmarcar esta caja si quiere ocultar opciones avanzadas.", description: "" }, betteRedditFixHideLinksTitle: { message: "Fix Hide Links", description: "" }, commentNavName: { message: "Navegador de Comentarios", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Abrir Navegador de Comentarios.", description: "" }, presetsLiteDesc: { message: "RES Ligero: solo lo popular", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Presionar Ctrl+Intro o Cmd+Intro enviar\xE1 su edici\xF3n de comentario / wiki.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nada", description: "" }, filteRedditShowFilterlineTitle: { message: "Show Filterline", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Enlaces de Secci\xF3n", description: "" }, hideChildCommentsDesc: { message: "Permite ocultar comentarios hijo.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover", description: "" }, submitHelperName: { message: "Ayudante de Env\xEDo", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Ambiente de Pruebas", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Default Sort", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "Comment Rounded", description: "" }, keyboardNavImageSizeUpTitle: { message: "Aumentar Tama\xF1o Imagen", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "toggle subreddit style $1 for: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Comentarios", description: "" }, commentToolsStrikeKeyDesc: { message: "Atajo de teclado para convertir texto en texto tachado.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "informaci\xF3n acerca del env\xEDo cuando se desplaza hacia arriba en p\xE1ginas de comentarios.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Ocultar Opciones de B\xFAsqueda", description: "" }, logoLinkMyUserPage: { message: "My user page", description: "" }, keyboardNavUseGoModeDesc: { message: 'Requiere initiaciar goMode antes de usar atajos "ir a". ', description: "" }, easterEggName: { message: "Huevo de Pascua", description: "" }, commentToolsSuperKeyDesc: { message: "Atajo de teclado para convertir texto en texto sobre\xEDndice.", description: "" }, keyboardNavUpVoteTitle: { message: "Votar Arriba", description: "" }, notificationNotificationTypesDesc: { message: "Administrar diferentes tipos de notificaciones.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoreando", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Abre la ventana de mensaje rapido cuando se hace clic en enlaces de reddit.com/message/compose en comentarios, selftext o p\xE1ginas wiki.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Actualizar botones de correo en pesta\xF1a actual cuando RES verifica orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Post Karma:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "toggle subreddit style $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Leer m\xE1s", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Reddit Logo Destination", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Enable For Subreddit Config", description: "" }, accountSwitcherShowKarmaDesc: { message: "Mostrar el karma de tema y comentario de cada cuenta en Cambiar Cuenta.", description: "" }, keyboardNavDesc: { message: "Navegaci\xF3n por teclado para reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Mostrar el n\xFAmero (i.e [+6]) en vez de [vw]", description: "" }, pageNavToCommentTitle: { message: "Hacia Nueva Area de Comentarios", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Mover a padre (en comentarios)", description: "" }, keyboardNavGoModeDesc: { message: 'Cambia a "goModo" (necesario antes de usar cualquiera de los siguientes atajos "ir a").', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Pesta\xF1as de P\xE1gina de B\xFAsqueda", description: "" }, multiredditNavbarAddShortcut: { message: "+agregar atajo a secci\xF3n multireddit", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "Linea de Comandos de RES", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Imagen Mover Izquierda", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manualmente registrar una caracter\xEDstica", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "El Tablero de RES es el lugar de un n\xFAmero de caracter\xEDsticas incluyendo peque\xF1os utilitarios y otras herramientas \xFAtiles. ", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "Despu\xE9s de seleccionar una macro de la lista desplegable, no ocultar la lista.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddits", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Mover la imagen(im\xE1genes) en el \xE1rea de tema seleccionado hacia abajo.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Follow Permalink New Tab", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Remueve restricci\xF3n de largo(altura) de imagen(im\xE1genes) en \xE1rea de tema seleccionado.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "tag user $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Requerir la car\xE1cteristica "Esquema Original" para la b\xFAsqueda de reddit.\n\n\nsolo estar\xE1 disponible por un tiempo limitado.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Enviar un Problema", description: "" }, aboutOptionsFAQTitle: { message: "Preguntas Frecuentes", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Show User Details", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Subreddit style disabled for subreddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Color for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Actualizar Pesta\xF1a Actual", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Comment Navigator Move Up", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Ir a perfil.", description: "" }, dashboardTagsPerPageDesc: { message: "Cuantas etiquetas de usuario mostrar por p\xE1gina en la pesta\xF1a [mis etiquetas de usuario] (/r/Dashboard/#userTaggerContents). (ingrese cero para mostrar todas en la p\xE1gina)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "Ver enlace y comentarios en nuevas pesta\xF1as.", description: "" }, onboardingUpdateNotificationName: { message: "Notificaci\xF3n de Actualizaci\xF3n", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Demora, en milisegundos, antes de que ventana emergente se oculte.", description: "" }, nightModeNightModeStartDesc: { message: "Hora en que modo nocturno autom\xE1tico inicia.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Mostrar Expandos", description: "" }, nerAutoLoadDesc: { message: "Autom\xE1ticamente cargar nueva pagina al desplazarse (si esta desactivo, hacer clic para cargar).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "permanente", description: "" }, userHighlightAdminColorTitle: { message: "Color Admin", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Disminuir Tama\xF1o Imagen", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'La pesta\xF1a grabada se localiza ahora en la barra lateral de multireddit. Esta restaurara un enlace "grabado" hacia la cabecera (al lado de las pesta\xF1as "hot", "nuevo", etc.).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Color por defecto de la barra.", description: "" }, toggleOff: { message: "off", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Mostrar herramienta de autocompletado de subreddit cuando se escribe en temas, comentarios, y respuestas.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Disminuir Tama\xF1o Imagen (Control)", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Show Timestamp Wiki", description: "" }, commentToolsMacrosDesc: { message: "Agregar botones para ingresar extractos de texto frecuentes.", description: "" }, keyboardNavProfileTitle: { message: "Perfil", description: "" }, subredditManagerLinkAllDesc: { message: 'Mostrar enlace "TODO" en el administrador de subreddit.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Filter Subreddits From", description: "" }, userTaggerShowAnyway: { message: "show anyway?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Limpiar Temporal", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+agregar cuenta", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Highlight", description: "" }, filteRedditExcludeModqueueDesc: { message: "No filtrar nada en p\xE1ginas modqueue (modqueue,reports,spam,etc.). ", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Probar notificaciones.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Subscribers:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Mover al comentario inicial del hilo anterior (en comentarios).", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Mostrar herramientas de formateo (negrita, it\xE1lica, tablas, etc.) en los formularios de edici\xF3n para temas, comentarios y otros \xE1reas snudown/markdown.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Mover Al Final", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Color Hover", description: "" }, spoilerTagsName: { message: "Etiquetas de Spoiler Global", description: "" }, betteRedditVideoUploadedDesc: { message: "Mostrar fecha de subida de v\xEDdeos cuando sea posible.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Grabar Comentarios", description: "" }, hoverFadeSpeedDesc: { message: "Velocidad de ocultamiento (en segundos).", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Mostrar la fecha exacta (Dom Nov 16 20:14:56 2014 UTC) en vez de una fecha relativa (Hace 7 d\xEDas), para temas.", description: "" }, submissionsCategory: { message: "Env\xEDos ", description: "" }, keyboardNavSaveCommentDesc: { message: "Graba el comentario actual en tu cuenta de reddit. Es accesible desde cualquier lado que este conectado, pero no preserva el texto original si es editado o borrado.", description: "" }, keyboardNavSavePostTitle: { message: "Grabar Tema", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Color Tipo de Letra", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Agregar Opciones de B\xFAsqueda", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "Agrega un mensaje emergente de puntero a subreddits", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu.", description: "" }, commentDepthDesc: { message: "Permite configurar los niveles preferidos de comentarios que quiere ver cuando hace clic en los enlaces de comentarios.\n\n0 = Todos, 1 = Nivel Ra\xEDz, 2 = Respuestas a nivel ra\xEDz, 3 = Respuestas a respuestas a nivel ra\xEDz, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Activar modo NP en subreddit cuando estas suscrito.", description: "" }, commentToolsQuoteKeyDesc: { message: "Atajo de teclado para citar texto.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Hora en que modo nocturno autom\xE1tico finaliza.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Usar Mensaje R\xE1pido", description: "" }, tableToolsSortTitle: { message: "Ordenar", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filtrar todos los enlaces etiquetados NSFW.", description: "" }, logoLinkName: { message: "Enlace del Logo", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "Si algo no esta funcionando como deber\xEDa, visita el subreddit /r/RESissues para encontrar ayuda.", description: "" }, nightModeAutomaticNightModeNone: { message: "Desactivado", description: "" }, keyboardNavMoveUpDesc: { message: "Move up to the previous link or comment in flat lists.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "No action was taken.", description: "" }, commentPreviewEnableForWikiTitle: { message: "Activar para Wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Exclude User Pages", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "nombre", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "Visor de Im\xE1genes en L\xEDnea", description: "" }, commentStyleCommentIndentDesc: { message: "Sangrar comentarios por [x] pixels (solo ingresar el n\xFAmero, no 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Desactivar RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling", description: "" }, userInfoRedditorSince: { message: "Redditor desde:", description: "" }, userTaggerShow: { message: "Mostrar", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "Velocidad de Ocultamiento", description: "" }, necLoadChildCommentsTitle: { message: "Cargar Comentarios Hijo", description: "" }, showParentName: { message: "Mostrar Comentario Padre", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Mostrar el estatus de oro de cada cuenta en Cambiar Cuenta.", description: "" }, keyboardNavMoveToParentTitle: { message: "Mover A Padre", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Show Timestamps Comments", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Cuentas", description: "" }, spoilerTagsDesc: { message: "Ocultar spoiler en p\xE1ginas de perfil de usuario.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Enlace Popular", description: "" }, showKarmaShowGoldTitle: { message: "Show Gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "comment depth", description: "" }, keyboardNavImageMoveDownTitle: { message: "Imagen Mover Abajo", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Imagen Anterior de Galer\xEDa", description: "" }, userTaggerTaggedUsers: { message: "tagged users", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Mover Arriba Hilo", description: "" }, quickMessageHandleContentLinksTitle: { message: "Manejar Enlaces de Contenido", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "T\xEDtulo Tema Mayusculas", description: "" }, showKarmaDesc: { message: "Agregar mas informaci\xF3n y ajustes al karma al lado de su nombre de usuario en la barra de men\xFA de usuario.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Atajos Por Cuenta", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Default Comment Depth", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Caracter\xEDsticas", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Mover Abajo Padre Hermano", description: "" }, dashboardTagsPerPageTitle: { message: "Tags Per Page", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log", description: "" }, userTaggerStoreSourceLinkDesc: { message: "Por defecto, almacenar un enlace al enlace/comentario etiquetado ", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Mejora la barra de navegaci\xF3n mostrada a la izquierda de la primera p\xE1gina.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Quote Key", description: "" }, keyboardNavHideDesc: { message: "Esconder enlace.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Bold Key", description: "" }, xPostLinksName: { message: "Enlaces Cruzados (X-post)", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Atajo Subreddit", description: "" }, userTaggerShowTaggingIconDesc: { message: "Siempre mostrar un icono de etiqueta despu\xE9s del nombre de usuario.", description: "" }, commentPreviewDraftStyleDesc: { message: 'Aplicar un estilo de fondo "borrador" a la previsualizaci\xF3n para diferenciarlo del \xE1rea de texto del comentario.', description: "" }, keyboardNavFollowCommentsTitle: { message: "Seguir Comentarios", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Modmail", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Color", description: "" }, hideChildCommentsHideNestedTitle: { message: "Ocultar Enlazado", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Limpiar Comentarios", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "Comentarios", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Force Sync Filters", description: "" }, nerShowServerInfoTitle: { message: "Mostrar Informaci\xF3n del Servidor", description: "" }, troubleshooterSettingsReset: { message: "All settings reset. Reload to see the result.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Mover la imagen(im\xE1genes) en el \xE1rea seleccionada hacia la izquierda.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Open the current comment's permalink (comment pages only).", description: "" }, subredditInfoAddRemoveShortcut: { message: "atajo", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Color Blind Friendly", description: "" }, userInfoSendMessage: { message: "enviar mensaje", description: "" }, showKarmaUseCommasDesc: { message: "Usar formato de n\xFAmero local en karma.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Desactivar Botones de Votaci\xF3n", description: "" }, commentToolsLinkKeyDesc: { message: "Atajo de teclado para agregar un enlace.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Mover Comentario Arriba", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "En perfil de usuario, ofrecer buscar por temas de usuario del subreddit o multireddit de donde se vino.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "P\xE1gina", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Cambiar el valor de contexto por defecto en el enlace de contexto.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Aumentar Tama\xF1o Imagen (Control)", description: "" }, pageNavToCommentDesc: { message: "Agregar un icono a cada pagina que lo lleva al area de nuevo comentario cuando se hace clic en el.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Mostrar contador de mensajes no le\xEDdos en favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Ayudante de Busqueda", description: "" }, keyboardNavNextGalleryImageDesc: { message: "Ver la imagen siguiente de la galer\xEDa en linea.", description: "" }, nightModeName: { message: "Modo Nocturno", description: "" }, filteRedditExcludeModqueueTitle: { message: "Exclude Modqueue", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Ejecutar filtro de linea de comando.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "can't set tag - no post/comment selected.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "on", description: "" }, contextDesc: { message: "Agrega un enlace a la barra de informaci\xF3n amarilla para visualizar comentarios enlazados en su contexto completo.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Up Vote Without Toggling", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Mover Al Inicio", description: "" }, nightModeAutomaticNightModeUser: { message: "Horas definidas por el usuario", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Desmarcar Respuestas Enviadas a Buz\xF3n", description: "" }, userTaggerIgnored: { message: "Ignorado", description: "" }, commentToolsCommentingAsDesc: { message: "Muestra su nombre usuario conectado actualmente para evitar crear temas desde la cuenta equivocada.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Seguir Enlace Nueva Pesta\xF1a", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "Puede cambiar esto despu\xE9s en la configuraci\xF3n de $1", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Toggle", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "Despu\xE9s de cambiar de cuenta, mostrar una advertencia en las otras pesta\xF1as.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color a usar para iluminar el primer comentador.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Respalde y restaure su configuraci\xF3n de Reddit Enhancement Suite.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Drop Down Style", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Estilo Visitado", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Presionando Ctrl+Intro o cmd+Intro enviar\xE1 su tema.", description: "" }, RESTipsMenuItemTitle: { message: "Elemento de Men\xFA", description: "" }, optionKey: { message: "ID opci\xF3n", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Cargar hojas de estilo extra en sus propios CSS.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "contrase\xF1a", description: "" }, userInfoUnignore: { message: "Unignore", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "Macros", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn automatic mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn user-defined hours mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, presetsNoPopupsTitle: { message: "No Popups", description: "" }, searchCopyResultForComment: { message: "copiar esto para un comentario", description: "" }, moduleID: { message: "ID modulo", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Mostrar el contador de mensajes no le\xEDdos en t\xEDtulo de p\xE1gina/pesta\xF1a.", description: "" }, xPostLinksXpostedFrom: { message: "x-posted from", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Toggle Children", description: "" }, commandLineLaunchDesc: { message: "Abrir Linea de Comandos RES", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Informaci\xF3n de Subreddit", description: "" }, betteRedditVideoUploadedTitle: { message: "Video Uploaded", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Velocidad de animaci\xF3n de ocultamiento (en segundos)", description: "" }, aboutOptionsDonate: { message: "Apoyar futuro desarrollo RES.", description: "" }, aboutOptionsBugsTitle: { message: "Errores", description: "" }, nerShowPauseButtonTitle: { message: "Mostrar Bot\xF3n de Pausa", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Abrir con Clic Simple", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Usar Enlace de Comentarios Como Origen", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "N\xFAmero de d\xEDas antes que RES deje de dar seguimiento a un hilo visto.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Administrador de Versi\xF3n", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching.", description: "" }, commentDepthName: { message: "Personalizar Niveles de Comentario", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Mostrar Contador de No Le\xEDdos en Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Demora Posicionamiento Cursor", description: "" }, troubleshooterClearTagsTitle: { message: "Limpiar Etiquetas", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Mostrar Bot\xF3n de Suscripci\xF3n", description: "" }, commentToolsKey: { message: "key", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Colorar Nombres de Usuario", description: "" }, commentStyleName: { message: "Estilo de Comentario", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Mostrar Todas Las Opciones", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "M\xE9todo de notificaci\xF3n para actualizaciones beta.", description: "" }, keyboardNavFrontPageTitle: { message: "P\xE1gina Principal", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Autom\xE1ticamente desplazarse al tema/comentario que esta seleccionado cuando se carga la p\xE1gina.", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "Cuando se hace clic sobre el sobre de correo o icono de modmail, abrir correo en una nueva pesta\xF1a?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "texto", description: "" }, notificationStickyTitle: { message: "Permanente", description: "" }, aboutOptionsAnnouncements: { message: "Lee los \xFAltimos anuncios en el subreddit /r/RESAnnouncements", description: "" }, hideChildCommentsAutomaticDesc: { message: "Autom\xE1ticamente ocultar todo menos los comentarios padre, o proveer un enlace para ocultarlos todos?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Remove this subreddit from your shortcut bar", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "P\xE1gina Anterior", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Acentuar cajas de comentario para facilidad de lectura / ubicaci\xF3n en hilos largos.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "Al Votar Mover Abajo", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Esconder Duplicados", description: "" }, keyboardNavFrontPageDesc: { message: "Ir a P\xE1gina Principal", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Seguir Enlace Y Comentarios Nueva Pesta\xF1a Fondo", description: "" }, singleClickDesc: { message: "Agrega un enlace [l+c] que abre un enlace y la p\xE1gina de comentarios en una nueva pesta\xF1a del navegador con un solo clic. ", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Navegar con Boton Medio", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Muestrar un icono de sobre (buz\xF3n) en la esquina superior derecha. ", description: "" }, aboutName: { message: "Acerca de RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "Respaldo", description: "" }, productivityCategory: { message: "Productividad", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "Subreddit no especificado.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Cerrar En Puntero Fuera", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Mover a comentario inicial del hilo actual (en comentarios).", description: "" }, userHighlightFirstCommentColorTitle: { message: "Color Primer Comentario", description: "" }, quickMessageDefaultSubjectTitle: { message: "Tema Por Defecto", description: "" }, betteRedditFixHideLinksDesc: { message: 'Cambiar enlaces "ocultar" a mostrarse como "ocultar" o "mostrar" dependiendo del estado de ocultamiento. ', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 entries removed.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitorear Temas Visitados Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Agregar pesta\xF1as a cada p\xE1gina de busqueda.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter Saves Live Threads", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Subreddit Comment Depths", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Activar editor de 2 columnas.", description: "" }, floaterName: { message: "\xC1reas Flotantes", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "NSFW Quick Toggle", description: "" }, filteRedditAllowNSFWDesc: { message: "No ocultar temas NSFW de ciertos subreddits cuando el filtro NSFW este activo.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Agrega un bot\xF3n de encendido/apagado para mostrar o ocultar la barra de usuario.", description: "" }, showImagesDesc: { message: "Abre im\xE1genes en linea en tu navegador con el clic de un bot\xF3n. Tambi\xE9n tiene opciones de configuraci\xF3n.", description: "" }, commentToolsMacroButtonsTitle: { message: "Macro Buttons", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "No filtrar sus propios temas.", description: "" }, notificationStickyDesc: { message: "Notificaciones permanentes se mantienen visibles hasta cuando se de clic al bot\xF3n cerrar.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "Oculta su nombre de usuario de mostrarse en la pantalla cuando esta conectado en reddit. De esta forma, si alguien mira sobre su hombro en el trabajo. o si toma una captura de pantalla, su usuario de reddit no es mostrado. Esto solo afecta a su pantalla. No hay manera de crear temas o comentar en reddit sin que su tema/comentario no sea enlazado a la cuenta desde donde la creo.", description: "" }, betteRedditName: { message: "betteReddit", description: "" }, voteEnhancementsName: { message: "Mejoras Votaci\xF3n", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Show Hidden Sort Options", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Acortar t\xEDtulos en temas largos (mayores a 1 linea) con una elipsis.", description: "" }, subredditInfoAddRemoveDashboard: { message: "dashboard", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "User Autocomplete", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed", description: "" }, aboutOptionsCodeTitle: { message: "C\xF3digo", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Mostrar barra de iconos de "pausado" cuando auto-carga esta pausado y icono "ejecutar" este activo. ', description: "" }, userTaggerUsername: { message: "Usuario", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Mover la imagen(im\xE1genes) en el \xE1rea de tema seleccionado hacia arriba.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Donar", description: "" }, keyboardNavGoModeTitle: { message: "Modo Ir", description: "" }, keyboardNavName: { message: "Navegaci\xF3n por Teclado", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "Usuario Relevante", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notificar Temas Editados", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Current subreddit/multireddit", description: "" }, troubleshooterTestNotificationsTitle: { message: "Probar Notificaciones", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Follow Permalink", description: "" }, hoverDesc: { message: "Personaliza el comportamiento de ventanas emergentes grandes que aparecen cuando se posiciona el puntero sobre ciertos elementos.", description: "" }, modhelperName: { message: "Ayudante del Mod", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Ocultar Todos Los Elementos Hijo", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'Debe especificar "$1" o "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "Mover Arriba", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Abrir Mensaje R\xE1pido", description: "" }, pageNavToTopTitle: { message: "Al Inicio", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Desplazar en Expando", description: "" }, userTaggerTag: { message: "Etiqueta", description: "" }, userbarHiderToggleUserbar: { message: "Toggle Userbar", description: "" }, nerReversePauseIconTitle: { message: "Icono de Reversa de Pausa", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Remove this subreddit from your dashboard", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Aplica formato o muestra informaci\xF3n adicional acerca de votos en temas y comentarios.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Administrador de Subreddit", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Sugerencias", description: "" }, keyboardNavSaveCommentTitle: { message: "Grabar Comentario", description: "" }, nerPauseAfterEveryTitle: { message: "Detener Despues de Cada", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Linea de Comandos para navegar Reddit, cambiar configuraci\xF3n de RES, y depurar RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Abrir la ventana de mensaje r\xE1pido cuando se hace clic a enlaces reddit.com/message/compose en la barra lateral. (ejemplo "mensaje a los moderadores")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "Ver la imagen anterior en la galer\xEDa en linea.", description: "" }, userInfoInvalidUsernameLink: { message: "Invalid username link.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Permitir escoger ordenamiento y rango de tiempo en el formulario de busqueda del panel lateral.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Move down using Comment Navigator.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Modo Nocturno Fin", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "Mostrar fechas en zona horaria local cuando posicione el puntero sobre una fecha relativa.", description: "" }, noPartEscapeNPTitle: { message: "Salir de NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "La pesta\xF1a que ser\xE1 ampliada cada vez que usted busque.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Nucleo", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalidad", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Monitorear uso de distintas car\xE1cteristicas.", description: "" }, commentDepthMinimumComments: { message: "comentarios m\xEDnimos", description: "" }, aboutOptionsCode: { message: "Puede mejorar RES con su propio c\xF3digo, dise\xF1os, y ideas! RES es un proyecto de c\xF3digo abierto en GitHub.", description: "" }, commentNavDesc: { message: "Provee una herramienta de navegaci\xF3n de comentarios para f\xE1cilmente encontrar comentarios del OP, mod, etc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Presionando Ctrl+Enter o Cmd+Enter grabar\xE1 las actualizaciones a su hilo activo.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite es liberado bajo licencia GPL v3.0.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Permitir min\xFAsculas", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Enable On Ban Messages", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "N\xFAmero de d\xEDas antes que la suscripci\xF3n a un hilo expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?", description: "" }, styleTweaksToggleSubredditStyle: { message: "toggle subreddit style", description: "" }, RESTipsDailyTipTitle: { message: "Daily Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Siempre ir al buz\xF3n, mensajes no le\xEDdos, cuando se hace clic a orangered.", description: "" }, newCommentCountName: { message: "Contador Nuevos Comentarios", description: "" }, keyboardNavSlashAllDesc: { message: "Ir a /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "Mostrar Padres", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "P\xE1gina Principal", description: "" }, commentToolsCategory: { message: "categor\xEDa", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "Cuando se posicione el puntero sobre [score hidden] mostrar el tiempo restante en vez de la duraci\xF3n de ocultamiento.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Mostrar la hora en que un texto de tema/comentario fue editado, sin necesidad de posicionar el puntero sobre la hora.", description: "" }, aboutOptionsSearchSettings: { message: "Ubicar configuraci\xF3n RES.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Imagen Siguiente de Galer\xEDa", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Subreddit style enabled for subreddit: $1.", description: "" }, notificationsNeverSticky: { message: "nunca permanente", description: "" }, keyboardNavMoveDownDesc: { message: "Mover hacia abajo al siguiente enlace o comentario en lista plana.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Mostrar el [-] bot\xF3n de expandir en el buz\xF3n. ", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Add this subreddit to your shortcut bar", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Reload Other Tabs", description: "" }, betteRedditVideoTimesTitle: { message: "Video Times", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Apariencia", description: "" }, userTaggerShowIgnoredDesc: { message: "Proveer un enlace para revelar un enlace o comentario ignorado.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "Italic Key", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Use Reddit Filters", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Autom\xE1ticamente seleccionar lo \xFAltimo que seleccion\xF3.", description: "" }, aboutOptionsPresetsTitle: { message: "Pre-Configuraciones", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Nivel por defecto a usar para todos los subreddit no listados abajo.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Esconder", description: "" }, aboutOptionsContributorsTitle: { message: "Colaboradores", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Activar Ayuda", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "Cuando se siga un enlace en una nueva pesta\xF1a, enfocar la pesta\xF1a?", description: "" }, aboutOptionsFAQ: { message: "Aprenda m\xE1s sobre RES en el wiki de /r/Enhancement.", description: "" }, betteRedditPinHeaderDesc: { message: "Fijar la barra de subreddit, men\xFA de usuario, o cabecera al inicio, flotando hacia abajo mientras se desplace por la p\xE1gina.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Mostrar la fecha precisa en la barra lateral.", description: "" }, keyboardNavUpVoteDesc: { message: "Votar arriba enlace seleccionado o comentario (o remover el voto arriba).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavFollowSubredditDesc: { message: "ir a enlace de subreddit (solo p\xE1gina de enlaces)", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Mantenerme conectado cuando reinicia el navegador.", description: "" }, subredditManagerLinkPopularDesc: { message: 'Mostrar enlace "POPULAR" en el administrador de subreddit.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Activar expando (imagen/texto/v\xEDdeo)", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "Ver comentarios de enlace en una nueva pesta\xF1a.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "Respaldo", description: "" }, profileNavigatorHoverDelayDesc: { message: "Demora, en milisegundos, antes de mostrar el mensaje emergente. ", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES allows you to disable specific subreddit styles!", description: "" }, customTogglesDesc: { message: "Configurar opciones personalizadas de Activo/Inactivo para varias partes de RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Formatting Tool Buttons", description: "" }, commentPreviewEnableForWikiDesc: { message: "Mostrar previsualizaci\xF3n para p\xE1ginas wiki.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Imagen Mover Arriba", description: "" }, settingsNavDesc: { message: "Ayuda en en manejar la consola de Configuraci\xF3n de RES con mayor facilidad.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox", description: "" }, usernameHiderName: { message: "Ocultar Usuario", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "activado", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Herramientas de Tabla", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "Usuario no encontrado.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Truncate Long Links", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Ejecutar linea de comando de RES.", description: "" }, nerHideDupesDontHide: { message: "No Ocultar", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notificar si un tema suscrito es editado.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Mostrar Nombre de Usuario Puntero", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "cambiar usuario a [username]", description: "" }, userTaggerYourVotesFor: { message: "your votes for $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Agregar botones macro para la edici\xF3n en formularios de temas, comentarios, y otras \xE1reas de texto sundown/markdown.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Mover la imagen(im\xE1genes) en el \xE1rea de tema seleccionada hacia la derecha.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alien)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Abrir Editor Grande", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Tama\xF1o Imagen Cualquier Largo", description: "" }, pageNavShowLinkNewTabTitle: { message: "Mostrar Enlace en Nueva Pesta\xF1a", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Estilo Desplazamiento No-Lineal", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Abrir el campo markdown actual en el editor grande. (Solo cuando un formulario markdown esta activo).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Nivel en enlaces a comentarios en particular con contexto.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Ir a p\xE1gina principal subreddit.", description: "" }, menuName: { message: "Men\xFA de RES", description: "" }, messageMenuDesc: { message: "Posicionar el puntero sobre el icono de correo para acceder a diferentes tipos de mensajes o redactar un nuevo mensaje.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Muestra un enlace de men\xFA a varias secciones del multireddit cuando se posiciona el puntero sobre el enlace.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Ejecutar una transici\xF3n cuando se abra y cierre pesta\xF1as.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "Despu\xE9s de ocultar un enlace, autom\xE1ticamente seleccionar el siguiente enlace.", description: "" }, commentStyleDesc: { message: "Agregar mejoras de legibilidad a comentarios.", description: "" }, keyboardNavRandomDesc: { message: "Ir a un subreddit aleatorio.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "Commenting As", description: "" }, keyboardNavImageSizeUpDesc: { message: "Incrementar en tama\xF1o de la imagen(im\xE1genes) en el \xE1rea de tema seleccionado.", description: "" }, floaterDesc: { message: "Administrando Elementos RES de flotaci\xF3n libre.", description: "" }, subredditManDesc: { message: "permite personalizar el barra superior con sus propios atajos de subreddit, incluyendo men\xFAs emergentes de multi-reddits y m\xE1s.", description: "" }, keyboardNavSavePostDesc: { message: "Graba el tema actual en tu cuenta de reddit. Es accesible desde cualquier lado que este conectado, pero no preserva el texto original si es editado o borrado.", description: "" }, hideChildCommentsNestedTitle: { message: "Enlazado", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Habilitar Editor Grande", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Notificaci\xF3n Actualizaci\xF3n Beta", description: "" }, announcementsDesc: { message: "Mant\xE9ngase informado con noticias importantes.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Agregar Fila", description: "" }, keyboardNavReplyDesc: { message: "Responder al comentario actual (solo p\xE1gina de comentarios).", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manualmente registrar tipo de notificaci\xF3n", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "Notificaciones RES", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "Ver comentarios por enlace (shift los abre en una nueva pesta\xF1a).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Mostrar la previsualizaci\xF3n en vivo de markdown en la barra lateral cuando se este editando.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Mostrar enlace "AMIGOS" en administraci\xF3n de subreddit.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Perfil Nueva Pesta\xF1a", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Seguir Enlace Y Comentarios Nueva Pesta\xF1a", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Navegaci\xF3n Multireddit", description: "" }, keyboardNavToggleExpandoTitle: { message: "Activar Expando", description: "" }, showKarmaName: { message: "Mostrar Karma", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Subreddit Autocomplete", description: "" }, settingsNavName: { message: "Configuraci\xF3n de Navegaci\xF3n de RES", description: "" }, contributeName: { message: "Donar y Contribuir", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Mostrar el servidor \u03C0 / detalles de depuraci\xF3n al lado de las herramientas Sin-Fin de Reddit.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Desactivar Area de Texto de Comentarios", description: "" }, tableToolsSortDesc: { message: "Activar ordenamiento de columna.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Nivel en enlaces a comentarios en particular.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Muestra un men\xFA enlazando a varias secciones de perfil de usuario actual cuando se posiciona el puntero sobre el enlace de nombre de usuario en la esquina superior derecha.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "Herramientas de Edici\xF3n", description: "" }, accountSwitcherAccountsDesc: { message: "Ingrese sus nombres de usuarios y contrase\xF1as abajo. Solo son almacenados en las preferencias de RES.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "Cuando se filtre subreddit con la opci\xF3n anterior, donde debe ser filtrado?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Previsualizaci\xF3n en Vivo.", description: "" }, hoverOpenDelayDesc: { message: "Demora por defecto entre posicionar el puntero encima y la apertura de la ventana emergente.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color de la barra cuando este contraido.", description: "" }, announcementsName: { message: "Anuncios RES", description: "" }, betteRedditVideoViewedDesc: { message: "Mostrar n\xFAmero de vistas de un v\xEDdeo cuando sea posible.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Mover A Comentario Inicial", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "reload", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Ocultar Todos Nombres de Usuarios", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Actualizar Otras Pesta\xF1as", description: "" }, notificationsNotificationID: { message: "ID Notificaci\xF3n", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Mostrar C\xF3digo Snudown", description: "" }, keyboardNavInboxDesc: { message: "Ir a buz\xF3n.", description: "" }, gfycatUseMobileGfycatDesc: { message: "Use mobile (lower resolution) gifs from gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Activar Ver Im\xE1genes", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Haz una copia de seguridad y restaura tus configuraciones de RES", description: "" }, showParentDesc: { message: 'Muestra los comentarios padre cuando se posiciona el puntero sobre el enlace "padre" de un comentario.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Disminuir el tama\xF1o de la imagen(im\xE1genes) en el \xE1rea del tema seleccionado.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Show Input Length", description: "" }, keyboardNavSaveRESDesc: { message: "Graba el comentario actual con RES. Esto preserva el texto original del comentario, pero solo es grabado localmente.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Inspirado por m\xF3dulos como River of Reddit y Auto Pager - te permite obtener un flujo sin fin de reddit (temas, comentarios, etc).", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "No filtrar nada en p\xE1ginas de perfil de usuario.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitorear el n\xFAmero de comentarios y fechas de edici\xF3n de temas que ha visitado en modo incognito/privado.", description: "" }, subredditManagerLinkRandomTitle: { message: "Enlace Aleatorio", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Restaurar", description: "" }, logoLinkCustom: { message: "Custom", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Mostrar Sobre Flotante", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Activar o desactivar todo lo conectado a este bot\xF3n; y adicionalmente agregar un bot\xF3n al men\xFA desplegable del engranaje de REST.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Ocultar botones de votaci\xF3n. Si ya ha visitado la p\xE1gina y votado, votos anteriores todavia seran visibles.", description: "" }, commentStyleContinuityDesc: { message: "Mostrar lineas de continuidad de comentario.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Stop filtering this subreddit from /r/all and /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Default Posts", description: "" }, contextViewFullContextTitle: { message: "View Full Context", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacidad", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Agrega una herramienta que muestra el texto original en temas y comentarios, antes de que reddit le aplique formato al texto.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Mover hacia abajo al siguiente comentario o p\xE1ginas de hilo de comentarios.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Provee utilitarios para ayudar con el env\xEDo de un tema.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Autom\xE1tico", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separador", description: "" }, onboardingUpdateNotificationDescription: { message: "M\xE9todo de notificaci\xF3n para actualizaciones menores/mayores.", description: "" }, hoverFadeDelayDesc: { message: "Demora por defecto antes que la ventana emergente se oculta al mover el puntero.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Location when you click on the reddit logo.", description: "" }, settingsConsoleName: { message: "Consola de Configuraci\xF3", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Nivel en comentarios de subreddits espec\xEDficos.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Abrir En Nueva Ventana", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Ir a modmail.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "M\xE9todo de ordenamiento por defecto para nuevos artilugios.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "Despu\xE9s de cambiar cuentas, autom\xE1ticamente volver a cargar las otras pesta\xF1as.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Desactivar Animaciones", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "activo", description: "" }, nightModeColoredLinksTitle: { message: "Enlaces Coloreados", description: "" }, modhelperDesc: { message: "Ayudar a moderadores con consejos y trucos para un buen uso de RES.", description: "" }, quickMessageName: { message: "Mensaje R\xE1pido", description: "" }, noPartEscapeNPDesc: { message: "Remover modo np cuando salga de una p\xE1gina No-Participaci\xF3n.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Activar de nuevo esta caracter\xEDstica", description: "" }, userHighlightDesc: { message: "Acent\xFAa visualmente ciertos usuarios en comentarios o hilos: OP, Admin, Amigos, Mod - aportado por MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Desplazar ventana al principio del enlace cuando la tecla expando es usado (para mantener im\xE1genes etc en vista).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Demora, en milisegundos, antes que el mensaje emergente se oculte.", description: "" }, userInfoAddRemoveFriends: { message: "$1 friends", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "Desactivar notificaciones y ventanas emergentes de aviso.", description: "" }, userHighlightFriendColorDesc: { message: "Color para enfocar a Amigos.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Men\xFA de Mensajes", description: "" }, aboutOptionsSuggestions: { message: "Si tienes alguna idea para RES o quieres hablar con otros usuarios, visita el subreddit /r/Enhancement.", description: "" }, userbarHiderName: { message: "Ocultamiento de Barra de Usuario", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "When jumping to a entry (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), when and how should RES scroll the window?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "All caches cleared.", description: "" }, localDateName: { message: "Fecha Local", description: "" }, commentStyleCommentRoundedDesc: { message: "Redondear esquinas de cajas de comentarios.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Usar Modo Ir A", description: "" }, messageMenuLabel: { message: "etiqueta", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Show Current User Name", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filtro", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Mostrar Contador de No Le\xEDdos en T\xEDtulo", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Sidebar Preview", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Crea un barra al lado izquierdo de cada comentario. La barra se le puede hacer clic para ocultar el comentario.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Seguir Subreddit Nueva Pesta\xF1a", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Mostrar la herramienta de autocompletado de usuario cuando se escribe en temas, comentarios y respuestas.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Agregar un bot\xF3n r\xE1pido de activaci\xF3n NSFW al men\xFA de engranaje.", description: "" }, subredditInfoSubscribe: { message: "subscribir", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Votar abajo enlace seleccionado o comentario (o remover el voto abajo).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Agregar un bot\xF3n +atajo en la barra latearl de subreddit para una f\xE1cil adici\xF3n de atajos.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter Submits Comments", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter Submits Posts", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit creado:", description: "" }, multiredditNavbarLabel: { message: "etiqueta", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Hover Delay", description: "" }, stylesheetUsernameClassTitle: { message: "Clase de Usuario", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Mostrar previsualizaci\xF3n para notas de suspensi\xF3n.", description: "" }, usersCategory: { message: "Usuarios", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Color links blue and purple.", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit no encontrado.", description: "" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here.", description: "" }, resTipsName: { message: "RES Consejos y Trucos", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Activar Linea Comando", description: "" }, contextName: { message: "Contexto", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: `This will kill all your settings and saved data. If you're certain, type in "$1".`, description: "" }, searchHelperDefaultSearchTabTitle: { message: "Pesta\xF1a de B\xFAsqueda por Defecto", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Modo Nocturno Horas", description: "" }, userInfoUserSuspended: { message: "Usuario suspendido.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "Links", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Mover al inicio de lista (en p\xE1gina de enlaces).", description: "" }, contextDefaultContextTitle: { message: "Default Context", description: "" }, userTaggerTagUserAs: { message: "tag user $1 as: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Mover Abajo Hermano", description: "" }, customTogglesName: { message: "Opciones Personalizadas", description: "" }, pageNavShowLinkTitle: { message: "Mostrar Enlace", description: "" }, keyboardNavProfileNewTabDesc: { message: "Ir a perfil en una nueva pesta\xF1a.", description: "" }, aboutCategory: { message: "Acerca de RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Enlace Amigos", description: "" }, quickMessageSendAsDesc: { message: 'El usuario por defecto o subreddit a seleccionar cuando el campo "Desde" no este especificado.\nRetorna a usuario actual si la opci\xF3n seleccionada no puede ser usada (ejemplo no eres un moderador del subreddit actual).', description: "" }, userInfoGiftRedditGold: { message: "Gift Reddit Gold", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restore a backup of your RES settings.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Mostrar previsualizaci\xF3n de comentarios.", description: "" }, spamButtonName: { message: "Bot\xF3n de Spam", description: "" }, hoverInstancesTitle: { message: "Instancias", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colors couldn't be generated. This is probably due to the use of colors in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Usar atajos de teclado para aplicar estilos al texto seleccionado.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Autom\xE1ticamente ocultar opciones de b\xFAsqueda y sugerencias en la p\xE1gina de b\xFAsqueda.", description: "" }, notificationsDesc: { message: "Administrar notificaciones emergentes para funciones RES.", description: "" }, logoLinkDashboard: { message: "Dashboard", description: "" }, dashboardDashboardShortcutDesc: { message: "Show +dashboard shortcut in sidebar for easy addition of dashboard widgets.", description: "" }, userInfoName: { message: "Informaci\xF3n de Usuario", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Ancho de la barra.", description: "" }, filteRedditDomainsTitle: { message: "Dominios", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Ocultar Mod Mail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Abrir en Usuario Acentuado", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Advertencia Ya Enviado", description: "" }, aboutOptionsPrivacy: { message: "Lea sobre las pol\xEDticas de privacidad de RES.", description: "" }, commentStyleContinuityTitle: { message: "Continuity", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Mostrar detalles de cada cuenta en Cambiar Cuenta, tales como karma o estatus de oro.", description: "" }, browsingCategory: { message: "Navegaci\xF3n", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Are you sure you want to delete the tag for user: $1?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Mover Abajo Hilo", description: "" }, keyboardNavInboxTitle: { message: "Buz\xF3n", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Enlace a P\xE1gina Actual", description: "" }, userInfoUnhighlight: { message: "Unhighlight", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Secci\xF3n de Enlaces", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Mostrar por Defecto", description: "" } }; // locales/locales/he.json var he_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "\u05D4\u05E8\u05D0\u05D4 \u05E0\u05D5\u05D5\u05D8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05DB\u05D0\u05E9\u05E8 \u05E9\u05DD \u05DE\u05E9\u05EA\u05DE\u05E9 \u05DE\u05D5\u05D3\u05D2\u05E9", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Show the precise date for comments / messages.", description: "" }, commentPrevDesc: { message: "\u05DE\u05E1\u05E4\u05E7 \u05EA\u05E6\u05D5\u05D2\u05D4 \u05DE\u05E7\u05D3\u05D9\u05DE\u05D4 \u05D7\u05D9\u05D4 \u05D1\u05D6\u05DE\u05DF \u05E2\u05E8\u05D9\u05DB\u05EA \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA, \u05E4\u05E8\u05E1\u05D5\u05DD \u05E4\u05D5\u05E1\u05D8\u05D9\u05DD, \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA, \u05E2\u05DE\u05D5\u05D3\u05D9 \u05D5\u05D5\u05D9\u05E7\u05D9, \u05D5\u05D0\u05D9\u05D6\u05D5\u05E8\u05D9 \u05D8\u05E7\u05E1\u05D8 \u05E2\u05E9\u05D9\u05E8 \u05D0\u05D7\u05E8\u05D9\u05DD; \u05D5\u05E2\u05D5\u05E8\u05DA \u05D1\u05E9\u05E0\u05D9 \u05D8\u05D5\u05E8\u05D9\u05DD \u05DB\u05E9\u05DB\u05D5\u05EA\u05D1\u05D9\u05DD \u05D8\u05E7\u05E1\u05D8 \u05E2\u05E0\u05E7.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Swap the preview and editor (so preview is on left and editor is on right).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "\u05E8\u05D3 \u05EA\u05D2\u05D5\u05D1\u05D4 \u05D0\u05D7\u05EA \u05DC\u05DE\u05D8\u05D4", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Show link to my dashboard in RES menu.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "\u05DC\u05DE\u05E9\u05EA\u05DE\u05E9 \u05D9\u05E9 \u05D6\u05D4\u05D1 \u05E8\u05D3\u05D9\u05D8", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "\u05E2\u05DC\u05D4 \u05D0\u05D7 \u05D0\u05D7\u05D3 \u05DC\u05DE\u05E2\u05DC\u05D4", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "\u05E9\u05D9\u05E0\u05D5\u05DF \u05EA\u05D2\u05D5\u05D1\u05D4", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Turn off all the RES modules", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Show the precise date in the moderation log (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "\u05D0\u05E7\u05E8\u05D0\u05D9", description: "" }, messageMenuUrl: { message: "\u05DB\u05EA\u05D5\u05D1\u05EA \u05E7\u05D9\u05E9\u05D5\u05E8", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "\u05E1\u05E0\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05D6\u05D4 \u05DEr/all \u05D5/domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Follow Comments New Tab", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "\u05D1\u05D8\u05DC \u05D4\u05E8\u05E9\u05DE\u05D4", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "\u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05E9\u05DC\u05D0 \u05E0\u05E7\u05E8\u05D0\u05D5", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Show a random tip once every 24 hours.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "\u05DE\u05D9\u05DC\u05D5\u05EA \u05DE\u05E4\u05EA\u05D7", description: "" }, filteRedditAllowNSFWTitle: { message: "\u05D0\u05E4\u05E9\u05E8 \u05EA\u05D5\u05DB\u05DF \u05DE\u05D9\u05E0\u05D9/\u05E4\u05D5\u05D2\u05E2\u05E0\u05D9", description: "" }, hoverOpenDelayTitle: { message: "\u05E2\u05D9\u05DB\u05D5\u05D1 \u05E4\u05EA\u05D9\u05D7\u05D4", description: "" }, keyboardNavNextPageTitle: { message: "\u05E2\u05DE\u05D5\u05D3 \u05D4\u05D1\u05D0", description: "" }, commentToolsSuperKeyTitle: { message: "\u05DE\u05E7\u05E9 \u05E1\u05D5\u05E4\u05E8", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "\u05D9\u05E2\u05D3 \u05DE\u05D5\u05EA\u05D0\u05DD \u05D0\u05D9\u05E9\u05D9\u05EA", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "\u05D4\u05E7\u05E9\u05E8 \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05E7\u05D1\u05D5\u05E2\u05D9\u05DD \u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, betteRedditRestoreSavedTabTitle: { message: "\u05E9\u05D7\u05D6\u05E8 \u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D5\u05EA \u05E9\u05DE\u05D5\u05E8\u05D5\u05EA", description: "" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Fade or completely hide duplicate posts already showing on the page.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "\u05DE\u05EA\u05D9\u05D9\u05D2 \u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "\u05E8\u05D3 \u05DC\u05DE\u05D8\u05D4 \u05E0\u05D5\u05D5\u05D8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Add a button to hide search options while searching.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "\u05E2\u05DC\u05D4 \u05DC\u05DE\u05E2\u05DC\u05D4 \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA \u05E0\u05D5\u05D5\u05D8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Use the "snoo" icon, or older style dropdown?', description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "\u05D4\u05E9\u05D0\u05E8 \u05E8\u05E9\u05D9\u05DE\u05EA \u05DE\u05D0\u05E7\u05E8\u05D5 \u05E4\u05EA\u05D5\u05D7\u05D4", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "\u05D0\u05E4\u05E9\u05E8/\u05DB\u05D1\u05D4 \u05E0\u05D5\u05D5\u05D8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "\u05E7\u05D9\u05E6\u05D5\u05E8\u05D9 \u05DE\u05E7\u05DC\u05D3\u05EA", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "\u05E2\u05E7\u05D5\u05D1 \u05D0\u05D7\u05E8 \u05E7\u05D9\u05E9\u05D5\u05E8 \u05D1\u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D9\u05D4 \u05D7\u05D3\u05E9\u05D4 (\u05E2\u05DE\u05D5\u05D3\u05D9 \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05D1\u05DC\u05D1\u05D3)", description: "" }, onboardingDesc: { message: "\u05DC\u05DE\u05D3 \u05E2\u05D5\u05D3 \u05E2\u05DC RES \u05D1\u05D5\u05D5\u05D9\u05E7\u05D9 \u05E9\u05DC /r/Enhancement", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "\u05DE\u05E1\u05E0\u05DF \u05EA\u05D5\u05DB\u05DF \u05E4\u05D5\u05D2\u05E2\u05E0\u05D9/\u05DE\u05D9\u05E0\u05D9", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "\u05E2\u05D9\u05DB\u05D5\u05D1 \u05D3\u05E2\u05D9\u05DB\u05D4", description: "" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsLinkKeyTitle: { message: "\u05DE\u05E7\u05E9 \u05E7\u05D9\u05E9\u05D5\u05E8", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+\u05D4\u05D5\u05E1\u05E3 \u05E7\u05D9\u05E6\u05D5\u05E8 \u05D3\u05E8\u05DA", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "\u05E2\u05DE\u05D5\u05D3 \u05E8\u05D0\u05E9\u05D9 \u05E9\u05DC \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, keyboardNavFollowSubredditTitle: { message: "Follow Subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05D6\u05D4\u05D1", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "\u05D8\u05D5\u05E2\u05DF \u05DE\u05E1\u05DE\u05DB\u05D9\u05DD", description: "" }, subredditInfoOver18: { message: "\u05DE\u05E2\u05DC \u05D2\u05D9\u05DC 18:", description: "" }, userInfoIgnore: { message: "\u05D4\u05EA\u05E2\u05DC\u05DD", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "\u05E4\u05E8\u05D9\u05D8 \u05EA\u05E4\u05E8\u05D9\u05D8", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "\u05D4\u05D0\u05DD \u05D4\u05D9\u05E0\u05DA \u05D1\u05D8\u05D5\u05D7/\u05D4?", description: "" }, messageMenuAddShortcut: { message: "+\u05D4\u05D5\u05E1\u05E3 \u05E7\u05D9\u05E6\u05D5\u05E8 \u05D3\u05E8\u05DA", description: "" }, troubleshooterName: { message: "\u05E4\u05EA\u05E8\u05D5\u05DF \u05D1\u05E2\u05D9\u05D5\u05EA", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message.", description: "" }, keyboardNavInboxNewTabTitle: { message: "\u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D9\u05EA \u05EA\u05D9\u05D1\u05EA \u05D4\u05D3\u05D5\u05D0\u05E8 \u05D7\u05D3\u05E9\u05D4 ", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "After voting on a link, automatically select the next link.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "\u05D1\u05E8\u05D5\u05DB\u05D9\u05DD \u05D4\u05D1\u05D0\u05D9\u05DD \u05DCRES", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "\u05D4\u05E4\u05E1\u05E7 \u05E1\u05D9\u05E0\u05D5\u05DF \u05DEr/all \u05D5/domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "\u05E2\u05D1\u05D5\u05E8 \u05DC\u05EA\u05D2\u05D5\u05D1\u05D4 \u05D4\u05E2\u05DC\u05D9\u05D5\u05E0\u05D4 \u05E9\u05DC \u05D4\u05EA\u05E8\u05D3 \u05D4\u05D1\u05D0 (\u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA)", description: "" }, hoverName: { message: "\u05E4\u05D5\u05E4-\u05D0\u05E4 \u05D1\u05E8\u05D9\u05D7\u05D5\u05E3 \u05E2\u05DB\u05D1\u05E8", description: "" }, commentPreviewEnableForCommentsTitle: { message: "\u05D0\u05E4\u05E9\u05E8 \u05DC\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, spamButtonDesc: { message: "\u05DE\u05D5\u05E1\u05D9\u05E3 \u05DB\u05E4\u05EA\u05D5\u05E8 \u05E1\u05E4\u05D0\u05DD \u05DC\u05D3\u05D9\u05D5\u05D5\u05D7 \u05DE\u05D4\u05D9\u05E8", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "\u05EA\u05D5\u05D5\u05D9\u05EA", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "\u05E2\u05D5\u05D6\u05E8\u05D9\u05DD \u05DC\u05DA \u05DC\u05E7\u05D1\u05DC \u05D0\u05EA \u05D4\u05DB\u05DE\u05D5\u05EA \u05D4\u05D9\u05D5\u05DE\u05D9\u05EA \u05E9\u05DC \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05D7\u05D3\u05E9\u05D5\u05EA", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Night Mode On", description: "" }, myAccountCategory: { message: "\u05D4\u05D7\u05E9\u05D1\u05D5\u05DF \u05E9\u05DC\u05D9", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments", description: "" }, yes: { message: "\u05DB\u05DF", description: "" }, filteRedditName: { message: "\u05E4\u05D9\u05DC\u05D8\u05E8\u05D3\u05D9\u05D8", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Menu Item", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Color", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "\u05DE\u05D5\u05E0\u05D4 \u05D0\u05EA \u05DE\u05E1\u05E4\u05E8 \u05D4\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05E9\u05E4\u05D5\u05E8\u05E1\u05DE\u05D5 \u05DE\u05D0\u05D6 \u05E9\u05D1\u05D9\u05E7\u05E8\u05EA \u05DC\u05D0\u05D7\u05E8\u05D5\u05E0\u05D4 \u05D1\u05E4\u05D5\u05E1\u05D8.", description: "" }, userTaggerPageXOfY: { message: "$1 of $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "My User Tags", description: "" }, pageNavShowLinkNewTabDesc: { message: "Open link in new tab.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05D7\u05D9\u05E4\u05D5\u05E9", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "\u05D0\u05DC \u05EA\u05DC\u05D7\u05E5 \u05E2\u05DC Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "\u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, betteRedditVideoViewedTitle: { message: "\u05E1\u05E8\u05D8\u05D5\u05DF \u05E0\u05E6\u05E4\u05D4", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Put in bold the "Commenting As" part if you are using an alt account. The first account in the Account Switcher module is considered as your main account.', description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "When submitting, display the number of characters entered in the title and text fields and indicate when you go over the 300 character limit for titles.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Increase the size of image(s) in the highlighted post area (finer control).", description: "" }, nerName: { message: "\u05E8\u05D3\u05D9\u05D8-\u05E9\u05DC\u05D0-\u05E0\u05D2\u05DE\u05E8", description: "" }, subredditInfoTitle: { message: "\u05DB\u05D5\u05EA\u05E8\u05EA:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "\u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9 (\u05D3\u05D5\u05E8\u05E9 \u05E9\u05D9\u05E8\u05D5\u05EA\u05D9 \u05DE\u05D9\u05E7\u05D5\u05DD)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "View link and comments in new background tabs.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "\u05D2\u05D1\u05D5\u05DC \u05E8\u05D7\u05D9\u05E4\u05D4 \u05DE\u05E2\u05DC \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Fade", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Decrease the size of image(s) in the highlighted post area (finer control).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC\u05E2\u05DE\u05D5\u05D3 \u05D4\u05D1\u05D0 (\u05E2\u05DE\u05D5\u05D3\u05D9\u05DD \u05D1\u05E8\u05E9\u05D9\u05DE\u05EA \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05D1\u05DC\u05D1\u05D3)", description: "" }, notificationsPerNotificationType: { message: "per notification type", description: "" }, subredditTaggerDesc: { message: "\u05D4\u05D5\u05E1\u05E3 \u05D8\u05E7\u05E1\u05D8 \u05DE\u05D5\u05EA\u05D0\u05DD \u05D0\u05D9\u05E9\u05D9\u05EA \u05DC\u05D4\u05EA\u05D7\u05DC\u05D4 \u05E9\u05DC \u05DB\u05D5\u05EA\u05E8\u05EA \u05E4\u05E8\u05E1\u05D5\u05DE\u05D9\u05DD \u05D1\u05D3\u05E3 \u05D4\u05E8\u05D0\u05E9\u05D9 \u05E9\u05DC\u05DA, \u05D1\u05DE\u05D5\u05DC\u05D8\u05D9\u05E8\u05D3\u05D9\u05D8\u05D9\u05DD, \u05D5-/r/all. \u05E9\u05D9\u05DE\u05D5\u05E9\u05D9 \u05DB\u05D3\u05D9 \u05DC\u05D4\u05D5\u05E1\u05D9\u05E3 \u05D4\u05E7\u05E9\u05E8 \u05DC\u05E4\u05E8\u05E1\u05D5\u05DE\u05D9\u05DD.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "\u05E9\u05E4\u05E8 \u05D4\u05D2\u05E2\u05D4 \u05DC\u05D7\u05DC\u05E7\u05D9\u05DD \u05E9\u05D5\u05E0\u05D9\u05DD \u05E9\u05DC \u05D3\u05E3 \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05E9\u05DC\u05DA.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "\u05D4\u05D5\u05E1\u05E3 \u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA \u05E0\u05D5\u05E1\u05E4\u05D5\u05EA \u05DC\u05D8\u05D1\u05DC\u05D0\u05D5\u05EA \u05DE\u05E2\u05D5\u05E6\u05D1\u05D5\u05EA \u05E9\u05DC \u05E8\u05D3\u05D9\u05D8 (\u05E8\u05E7 \u05DE\u05D9\u05D5\u05DF \u05DB\u05E8\u05D2\u05E2).", description: "" }, notificationsAlwaysSticky: { message: "always sticky", description: "" }, searchName: { message: "\u05D7\u05E4\u05E9 \u05D1\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA RES", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Send As", description: "" }, pageNavName: { message: "\u05E0\u05D5\u05D5\u05D8 \u05E2\u05DE\u05D5\u05D3", description: "" }, keyboardNavFollowLinkDesc: { message: "\u05E2\u05E7\u05D5\u05D1 \u05D0\u05D7\u05E8 \u05E7\u05D9\u05E9\u05D5\u05E8 (\u05E2\u05DE\u05D5\u05D3\u05D9 \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05D1\u05DC\u05D1\u05D3)", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "\u05DE\u05E9\u05DE\u05E8 \u05D0\u05EA \u05DE\u05E6\u05D1 \u05D4\u05D4\u05E1\u05EA\u05E8\u05D4 \u05E9\u05DC \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05D1\u05D9\u05DF \u05E6\u05E4\u05D9\u05D5\u05EA \u05E9\u05D5\u05E0\u05D5\u05EA \u05D1\u05E2\u05DE\u05D5\u05D3.", description: "" }, quickMessageDesc: { message: "\u05E4\u05D5\u05E4 \u05D0\u05E4 \u05D4\u05DE\u05D0\u05E4\u05E9\u05E8 \u05DC\u05E9\u05DC\u05D5\u05D7 \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05DE\u05DB\u05DC \u05DE\u05E7\u05D5\u05DD \u05D1\u05E8\u05D3\u05D9\u05D8. \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05D9\u05DB\u05D5\u05DC\u05D5\u05EA \u05DC\u05D4\u05D9\u05E9\u05DC\u05D7 \u05DE\u05D4\u05E4\u05D5\u05E4 \u05D0\u05E4 \u05E2\u05DC \u05D9\u05D3\u05D9 \u05DC\u05D7\u05D9\u05E6\u05D4 \u05E2\u05DC control+enter \u05D0\u05D5 command+enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "\u05D0\u05E4\u05E9\u05E8/\u05DB\u05D1\u05D4 \u05E1\u05D2\u05E0\u05D5\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 (\u05D0\u05DD \u05DC\u05D0 \u05DE\u05E1\u05D5\u05E4\u05E7 \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8, \u05EA\u05E7\u05E3 \u05E2\u05DC \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05E0\u05D5\u05DB\u05D7\u05D9)", description: "" }, accountSwitcherUsername: { message: "\u05E9\u05DD \u05DE\u05E9\u05EA\u05DE\u05E9", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Night Mode Start", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "\u05E9\u05D5\u05E8\u05EA \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05D7\u05D1\u05D5\u05D9\u05D4", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+\u05D4\u05D5\u05E1\u05E3 \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "\u05E9\u05E0\u05D4 \u05EA\u05E6\u05D5\u05E8\u05EA \u05E2\u05D5\u05E8\u05DA \u05D2\u05D3\u05D5\u05DC", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Auto Load", description: "" }, nerReturnToPrevPageDesc: { message: 'Return to the page you were last on when hitting "back" button?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Section Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "\u05E2\u05D1\u05D5\u05E8 \u05DC\u05D0\u05D7 \u05D4\u05D1\u05D0 \u05E9\u05DC \u05D4\u05D4\u05D5\u05E8\u05D4 (\u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA)", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "\u05D6\u05DE\u05DF \u05E9\u05E0\u05E9\u05D0\u05E8 \u05DC\u05E0\u05D9\u05E7\u05D5\u05D3 \u05D7\u05D1\u05D5\u05D9", description: "" }, hoverWidthDesc: { message: "\u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC \u05E9\u05DC \u05E8\u05D5\u05D7\u05D1 \u05D4\u05D5\u05D3\u05E2\u05D4 \u05E7\u05D5\u05E4\u05E6\u05EA", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Enable/disable night mode.", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Never Ending Comments", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "\u05D0\u05DC \u05EA\u05DB\u05DC\u05D9\u05DC \u05D0\u05EA \u05D4\u05E4\u05D5\u05E1\u05D8\u05D9\u05DD \u05E9\u05DC\u05D9", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "\u05E4\u05EA\u05D7 \u05D3\u05D5\u05D0\u05E8 \u05D3\u05D5\u05D0\u05E8 \u05DE\u05D5\u05D3\u05D9\u05DD \u05D1\u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D9\u05D4 \u05D7\u05D3\u05E9\u05D4", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "\u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D9\u05EA \u05D3\u05D5\u05D0\u05E8 \u05DE\u05D5\u05D3\u05D9\u05DD \u05D7\u05D3\u05E9\u05D4", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Show the Subscribe button?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "\u05D4\u05DB\u05E0\u05E1 \u05E4\u05E7\u05D5\u05D3\u05EA \u05E1\u05D9\u05E0\u05D5\u05DF", description: "" }, betteRedditDoNoCtrlFDesc: { message: `When using the browser's Ctrl+F/Cmd+F "find text", only search comment/post text and not navigation links ("permalink source save..."). Disabled by default due to a slight performance impact.`, description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special color for each username.", description: "" }, backupName: { message: "\u05D2\u05D9\u05D1\u05D5\u05D9 \u05D5\u05E9\u05D7\u05D6\u05D5\u05E8", description: "" }, profileNavigatorSectionLinksDesc: { message: "\u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05DC\u05D4\u05E6\u05D2\u05D4 \u05D1\u05EA\u05E4\u05E8\u05D9\u05D8 \u05E9\u05DE\u05D5\u05E4\u05D9\u05E2 \u05D1\u05E4\u05E8\u05D5\u05E4\u05D9\u05DC \u05D1\u05E8\u05D9\u05D7\u05D5\u05E3.", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05E1\u05D2\u05E0\u05D5\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "\u05D4\u05D5\u05E1\u05E3 \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05DC\u05DC\u05D5\u05D7 \u05D4\u05DE\u05D7\u05D5\u05D5\u05E0\u05D9\u05DD \u05E9\u05DC\u05DA", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "\u05E2\u05D3\u05DB\u05DF \u05E1\u05D9\u05DE\u05E0\u05D9\u05D5\u05EA \u05D0\u05D7\u05E8\u05D5\u05EA", description: "" }, nightModeUseSubredditStylesTitle: { message: "Use Subreddit Styles", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "After voting on a comment, automatically select the next comment.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Use Mobile Gfycat", description: "" }, commentToolsItalicKeyDesc: { message: "Keyboard shortcut to make text italic.", description: "" }, messageMenuLinksDesc: { message: "\u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05D9\u05D5\u05E4\u05D9\u05E2\u05D5 \u05D1\u05EA\u05E4\u05E8\u05D9\u05D3 \u05D4\u05D9\u05D5\u05E8\u05D3 \u05E9\u05DC \u05EA\u05D9\u05D1\u05EA \u05D4\u05D3\u05D5\u05D0\u05E8", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit hides some comment sorting options (random, etc.) on most pages. This option reveals them.", description: "" }, commandLineLaunchTitle: { message: "Launch", description: "" }, betteRedditDesc: { message: '\u05DE\u05D5\u05E1\u05D9\u05E3 \u05DE\u05E1\u05E4\u05E8 \u05E9\u05D3\u05E8\u05D5\u05D2\u05D9\u05DD \u05DC\u05DE\u05DE\u05E9\u05E7 \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05D1\u05E8\u05D3\u05D9\u05D8, \u05DB\u05D2\u05D5\u05DF \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9 "\u05DB\u05DC \u05D4\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", \u05D0\u05E4\u05E9\u05E8\u05D5\u05EA \u05DC\u05D7\u05E9\u05D5\u05E3 \u05DE\u05D7\u05D3\u05E9 \u05E4\u05D5\u05E1\u05D8\u05D9\u05DD \u05E9\u05D4\u05D5\u05E1\u05EA\u05E8\u05D5 \u05D1\u05D8\u05E2\u05D5\u05EA \u05D5\u05E2\u05D5\u05D3.', description: "" }, resTipsDesc: { message: "\u05DE\u05D5\u05E1\u05D9\u05E3 \u05E1\u05D9\u05D5\u05E2 \u05E2\u05DD \u05D8\u05E8\u05D9\u05E7\u05D9\u05DD \u05D5\u05D8\u05D9\u05E4\u05D9\u05DD \u05DC\u05E7\u05D5\u05E0\u05E1\u05D5\u05DC\u05EA RES.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "\u05E2\u05D1\u05D5\u05E8 \u05DC\u05D0\u05D7 \u05D4\u05E7\u05D5\u05D3\u05DD (\u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA) - \u05E7\u05D5\u05E4\u05E5 \u05DC\u05D0\u05D7 \u05D4\u05E7\u05D5\u05D3\u05DD \u05D1\u05D0\u05D5\u05EA\u05D5 \u05D4\u05E2\u05D5\u05DE\u05E7", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Highlight comment box hierarchy on hover (turn off for faster performance).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Keyboard shortcut to make text bold.", description: "" }, hoverWidthTitle: { message: "\u05E8\u05D5\u05D7\u05D1", description: "" }, dashboardName: { message: "\u05DC\u05D5\u05D7 \u05DE\u05D7\u05D5\u05D5\u05E0\u05D9 RES", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05EA\u05D5\u05D5\u05D9\u05EA \u05D6\u05DE\u05DF \u05E9\u05DC \u05D4\u05E2\u05E8\u05D9\u05DB\u05D4 \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D4", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "\u05D4\u05D9\u05E9\u05D0\u05E8 \u05DE\u05D7\u05D5\u05D1\u05E8", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "\u05E6\u05D5\u05E8 \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05DC\u05EA\u05EA\u05E8\u05D3\u05D9\u05D8\u05D9\u05DD \u05E9\u05E7\u05D9\u05D1\u05DC\u05D5 x-post \u05D1\u05EA\u05D2\u05D9\u05D5\u05EA \u05E9\u05DC \u05D4\u05E4\u05E8\u05E1\u05D5\u05DD.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "\u05DC\u05D7\u05E5 \u05DB\u05D0\u05DF \u05D1\u05DB\u05D3\u05D9 \u05DC\u05DC\u05DE\u05D5\u05D3 \u05E2\u05D5\u05D3", description: "" }, keyboardNavInboxNewTabDesc: { message: "\u05E4\u05EA\u05D7 \u05EA\u05D9\u05D1\u05EA \u05D3\u05D5\u05D0\u05E8 \u05D1\u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D9\u05D4 \u05D7\u05D3\u05E9\u05D4", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Show preview for editing subreddit settings.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "all users", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "Add an icon to every page that takes you to the top when clicked.", description: "" }, subredditsCategory: { message: "\u05E1\u05D0\u05D1\u05E8\u05D3\u05D9\u05D8\u05D9\u05DD", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expand/collapse comments (comments pages only).", description: "" }, commentPreviewDraftStyleTitle: { message: "\u05E1\u05D2\u05E0\u05D5\u05DF \u05D8\u05D9\u05D5\u05D8\u05D4", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Show the precise date in the wiki.", description: "" }, logoLinkInbox: { message: "\u05EA\u05D9\u05D1\u05EA \u05D3\u05D5\u05D0\u05E8", description: "" }, searchHelperDesc: { message: "\u05DE\u05E1\u05E4\u05E7 \u05E1\u05D9\u05D5\u05E2 \u05E2\u05DD \u05D4\u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05D7\u05D9\u05E4\u05D5\u05E9", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Follow Link New Tab Focus", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05EA\u05D5\u05D5\u05D9\u05D5\u05EA \u05D6\u05DE\u05DF \u05E9\u05DC \u05E4\u05E8\u05E1\u05D5\u05DE\u05D9\u05DD", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "\u05EA\u05D1\u05E0\u05D9\u05D5\u05EA", description: "" }, styleTweaksName: { message: "\u05E9\u05D9\u05E0\u05D5\u05D9\u05D9 \u05E1\u05D2\u05E0\u05D5\u05DF", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "\u05DB\u05E8\u05D6\u05D5\u05EA", description: "" }, hoverInstancesDesc: { message: "\u05E0\u05D4\u05DC \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05E7\u05D5\u05E4\u05E6\u05D5\u05EA \u05DE\u05E1\u05D5\u05D9\u05DE\u05D5\u05EA", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "\u05E2\u05DC\u05D4 \u05DC\u05D2\u05D5\u05D1\u05D4 \u05D4\u05E7\u05D5\u05D3\u05DE\u05EA \u05D1\u05E2\u05DE\u05D5\u05D3\u05D9 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05DE\u05D5\u05E9\u05D7\u05DC\u05D9\u05DD", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05EA\u05D5\u05D5\u05D9\u05D5\u05EA \u05D6\u05DE\u05DF \u05E9\u05DC \u05E9\u05D5\u05E8\u05EA \u05E6\u05D3", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "\u05E7\u05E6\u05D1 \u05D3\u05E2\u05D9\u05DB\u05D4", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Delay, in milliseconds, before a hidden link fades.", description: "" }, accountSwitcherShowKarmaTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05E7\u05D0\u05E8\u05DE\u05D4", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatic Night Mode", description: "" }, noPartDisableCommentTextareaDesc: { message: "Disable commenting.", description: "" }, nerReturnToPrevPageTitle: { message: "Return To Previous Page", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "\u05D4\u05E8\u05D0\u05D4/\u05D4\u05D7\u05D1\u05D0 \u05E1\u05D9\u05D1\u05D5\u05EA \u05E1\u05D9\u05E0\u05D5\u05DF", description: "" }, contextViewFullContextDesc: { message: 'Add a "View the Full Context" link when on a comment link.', description: "" }, messageMenuFadeDelayTitle: { message: "\u05E2\u05D9\u05DB\u05D5\u05D1 \u05D3\u05E2\u05D9\u05DB\u05D4", description: "" }, commentToolsDesc: { message: "\u05DE\u05E1\u05E4\u05E7 \u05DB\u05DC\u05D9\u05DD \u05D5\u05E7\u05D9\u05E6\u05D5\u05E8\u05D9 \u05D3\u05E8\u05DA \u05DC\u05DB\u05EA\u05D9\u05D1\u05EA \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA, \u05E4\u05D5\u05E1\u05D8\u05D9\u05DD \u05E9\u05DC \u05D8\u05E7\u05E1\u05D8, \u05E2\u05DE\u05D5\u05D3\u05D9 \u05D5\u05D5\u05D9\u05E7\u05D9, \u05D5\u05D0\u05D9\u05D6\u05D5\u05E8\u05D9 \u05D8\u05E7\u05E1\u05D8 \u05E2\u05E9\u05D9\u05E8 \u05D0\u05D7\u05E8\u05D9\u05DD.", description: "" }, noPartName: { message: "\u05DC\u05DC\u05D0 \u05D4\u05E9\u05EA\u05EA\u05E4\u05D5\u05EA", description: "" }, presetsDesc: { message: "\u05D1\u05D7\u05E8 \u05DE\u05EA\u05D5\u05DA \u05EA\u05D1\u05E0\u05D9\u05D5\u05EA \u05E9\u05D5\u05E0\u05D5\u05EA \u05E9\u05DC \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA RES. \u05DB\u05DC \u05EA\u05D1\u05E0\u05D9\u05EA \u05DE\u05E4\u05E2\u05D9\u05DC\u05D4 \u05D0\u05D5 \u05DE\u05DB\u05D1\u05D4 \u05DE\u05D5\u05D3\u05D5\u05DC\u05D9\u05DD \u05D5\u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA \u05E9\u05D5\u05E0\u05D9\u05DD, \u05D0\u05DA \u05DC\u05D0 \u05DE\u05D0\u05EA\u05D7\u05DC\u05EA \u05D0\u05EA \u05DB\u05DC\u05DC \u05D4\u05E7\u05D5\u05E0\u05E4\u05D9\u05D2\u05D5\u05E8\u05E6\u05D9\u05D4", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Show the comment tools on the ban note textbox.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Go to subreddit of selected link in a new tab (link pages only).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: '\u05D2\u05D9\u05E9\u05D4 \u05DC\u05DE\u05D9\u05E7\u05D5\u05DE\u05DA \u05E0\u05D3\u05D7\u05EA\u05D4. \u05D2\u05D9\u05E9\u05D4 \u05D6\u05D5 \u05D3\u05E8\u05D5\u05E9\u05D4 \u05D1\u05DB\u05D3\u05D9 \u05DC\u05D4\u05E4\u05E2\u05D9\u05DC "\u05DE\u05E6\u05D1 \u05DC\u05D9\u05DC\u05D4" \u05D1\u05E6\u05D5\u05E8\u05D4 \u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9\u05EA. \u05D1\u05DB\u05D3\u05D9 \u05DC\u05DB\u05D1\u05D5\u05EA \u05E4\u05E2\u05D5\u05DC\u05D4 \u05D6\u05D0\u05EA, \u05DC\u05D7\u05E5 "$1"', description: "" }, styleTweaksSubredditStyle: { message: "\u05E1\u05D2\u05E0\u05D5\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, keyboardNavDownVoteTitle: { message: "Down Vote", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "\u05E8\u05D3 \u05DC\u05DE\u05D8\u05D4", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Notification Types", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "On Vote Comment Move Down", description: "" }, hoverCloseOnMouseOutDesc: { message: "Whether to close the popup on mouseout in addition to the close button.", description: "" }, subredditTaggerName: { message: "\u05DE\u05EA\u05D9\u05D9\u05D2 \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "\u05D4\u05D3\u05D2\u05E9 \u05D0\u05DD \u05D6\u05D4\u05D5 \u05DE\u05E9\u05EA\u05DE\u05E9 \u05DE\u05E9\u05E0\u05D9", description: "" }, userInfoDesc: { message: "\u05D4\u05D5\u05E1\u05E3 \u05D4\u05D5\u05D3\u05E2\u05D4 \u05DE\u05E8\u05D7\u05E4\u05EA \u05DC\u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Close Delay", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "\u05DE\u05D0\u05E4\u05E9\u05E8 \u05DC\u05E9\u05E0\u05D5\u05EA \u05D0\u05EA \u05D4\u05E7\u05D9\u05E9\u05D5\u05E8 \u05D1\u05DC\u05D5\u05D2\u05D5 \u05E9\u05DC \u05E8\u05D3\u05D9\u05D8.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "Number of posts to show by default in each widget.", description: "" }, pageNavDesc: { message: "\u05DE\u05E1\u05E4\u05E7 \u05DB\u05DC\u05D9\u05DD \u05DC\u05E0\u05D9\u05D5\u05D5\u05D8 \u05D1\u05EA\u05D5\u05DA \u05D4\u05E2\u05DE\u05D5\u05D3", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Show my current user name in the Account Switcher.", description: "" }, subredditManagerMultiCountTitle: { message: "r/$1 \u05E0\u05DE\u05E6\u05D0 \u05D1$2 \u05DE\u05D5\u05DC\u05D8\u05D9\u05E8\u05D3\u05D9\u05D8\u05D9\u05DD", description: "" }, commentToolsStrikeKeyTitle: { message: "\u05DE\u05E7\u05E9 \u05D7\u05EA\u05D5\u05DA", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colorblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "\u05D4\u05E8\u05D0\u05D4 \u05E0\u05D5\u05D5\u05D8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05D2\u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC.", description: "" }, keyboardNavSaveRESTitle: { message: "Save RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "On Hide Move Down", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "\u05E7\u05D5\u05E4\u05E1\u05D0\u05D5\u05EA \u05EA\u05D2\u05D5\u05D1\u05D4", description: "" }, profileNavigatorName: { message: "\u05E0\u05D5\u05D5\u05D8 \u05E4\u05E8\u05D5\u05E4\u05D9\u05DC", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "\u05DC\u05D0", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Linear Scroll Style", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "\u05D2\u05E8\u05E1\u05EA RES \u05E9\u05D5\u05D3\u05E8\u05D2\u05D4 \u05DCv$1", description: "" }, keyboardNavShowParentsDesc: { message: "\u05D4\u05E8\u05D0\u05D4 \u05D4\u05D5\u05E8\u05D9 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "\u05D4\u05EA\u05D0\u05DD \u05D0\u05D9\u05E9\u05D9\u05EA \u05D0\u05EA RES \u05D1\u05E7\u05DC\u05D9\u05DC\u05D5\u05EA \u05E2\u05DD \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05DE\u05D5\u05DB\u05E0\u05D5\u05EA \u05E9\u05D5\u05E0\u05D5\u05EA", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "\u05DE\u05E2\u05E7\u05D1 \u05D0\u05D7\u05E8 \u05D4\u05E1\u05EA\u05E8\u05EA \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "\u05E8\u05E9\u05D5\u05DE\u05D4 \u05E0\u05D1\u05D7\u05E8\u05EA", description: "" }, betteRedditPinHeaderTitle: { message: "\u05E7\u05D1\u05E2 \u05E8\u05D0\u05E9", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "\u05DE\u05E6\u05D9\u05D9\u05DF \u05DE\u05D9\u05E7\u05D5\u05DD \u05E2\u05D1\u05D5\u05E8 \u05DE\u05D0\u05E7\u05E8\u05D5", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "\u05D0\u05E4\u05E9\u05E8 \u05DC\u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05D0\u05D9\u05E1\u05D5\u05E8", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Open Mail In New Tab", description: "" }, versionDesc: { message: "\u05E0\u05D4\u05DC \u05D1\u05D3\u05D9\u05E7\u05D5\u05EA \u05D2\u05E8\u05E1\u05D4 \u05E0\u05D5\u05DB\u05D7\u05D9\u05EA\\\u05E7\u05D5\u05D3\u05DE\u05EA.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Your username, karma, preferences, RES gear, and so on are hidden. You can show them again by clicking the $1 button in the top right corner.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling", description: "" }, keyboardNavFollowLinkTitle: { message: "\u05E2\u05E7\u05D5\u05D1 \u05D0\u05D7\u05E8 \u05E7\u05D9\u05E9\u05D5\u05E8", description: "" }, keyboardNavMoveBottomDesc: { message: "\u05E8\u05D3 \u05DC\u05EA\u05D7\u05EA\u05D9\u05EA \u05D4\u05E8\u05E9\u05D9\u05DE\u05D4 (\u05D1\u05D3\u05E4\u05D9 \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD)", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Upvote selected link or comment (but don't remove the upvote).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Fade Delay", description: "" }, commentDepthCommentPermaLinksTitle: { message: "\u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05E7\u05D1\u05D5\u05E2\u05D9\u05DD \u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, aboutOptionsLicenseTitle: { message: "\u05E8\u05D9\u05E9\u05D9\u05D5\u05DF", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "\u05E2\u05DE\u05D5\u05D3 \u05DB\u05DC\u05DC\u05D9", description: "" }, commentPreviewEnableForPostsDesc: { message: "Show preview for posts.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Image Move Right", description: "" }, keyboardNavPrevPageDesc: { message: "\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC\u05E2\u05DE\u05D5\u05D3 \u05D4\u05E7\u05D5\u05D3\u05DD (\u05E2\u05DE\u05D5\u05D3\u05D9\u05DD \u05D1\u05E8\u05E9\u05D9\u05DE\u05EA \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05D1\u05DC\u05D1\u05D3)", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Open links found in comments in a new tab.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoCommentKarma: { message: "\u05E7\u05D0\u05E8\u05DE\u05EA \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA:", description: "" }, settingsConsoleDesc: { message: "\u05E0\u05D4\u05DC \u05D0\u05EA \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05D5\u05D4\u05E2\u05D3\u05E4\u05D5\u05EA RES.", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Mod Color", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "\u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "\u05E4\u05EA\u05D7 \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05D1\u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D5\u05EA \u05D7\u05D3\u05E9\u05D5\u05EA", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "\u05EA\u05E7\u05DC\u05D4 \u05D1\u05D8\u05E2\u05D9\u05E0\u05EA \u05DE\u05D9\u05D3\u05E2 \u05E2\u05D1\u05D5\u05E8 \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, accountSwitcherName: { message: "\u05DE\u05D7\u05DC\u05D9\u05E3 \u05D7\u05E9\u05D1\u05D5\u05E0\u05D5\u05EA", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "\u05E2\u05D1\u05D5\u05E8 \u05DC\u05D0\u05D7 \u05D4\u05D1\u05D0 (\u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA) - \u05DE\u05D3\u05DC\u05D2 \u05E2\u05DC \u05D4\u05D0\u05D7 \u05D4\u05D1\u05D0 \u05D1\u05D0\u05D5\u05EA\u05D5 \u05D4\u05E2\u05D5\u05DE\u05E7.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Night Switch", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "\u05D0\u05E4\u05E9\u05E8 \u05DC\u05E4\u05D5\u05E1\u05D8\u05D9\u05DD", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "\u05D4\u05E8\u05D0\u05D4 \u05E7\u05D9\u05E6\u05D5\u05E8\u05D9 \u05DE\u05E7\u05DC\u05D3\u05EA", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "\u05E7\u05D9\u05E6\u05D5\u05E8\u05D9 \u05DC\u05D5\u05D7 \u05DE\u05D7\u05D5\u05D5\u05E0\u05D9\u05DD", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "\u05D4\u05D7\u05D1\u05D0", description: "" }, userInfoLink: { message: "\u05E7\u05D9\u05E9\u05D5\u05E8:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "\u05DC\u05E4\u05E0\u05D9 $1", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Show lengths of videos when possible.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignored.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Reply", description: "" }, accountSwitcherSimpleArrow: { message: "\u05D7\u05E5 \u05E4\u05E9\u05D5\u05D8", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "\u05E1\u05D9\u05DE\u05D5\u05DF", description: "" }, messageMenuUseQuickMessageTitle: { message: "\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D4\u05D5\u05D3\u05E2\u05D4 \u05DE\u05D4\u05D9\u05E8\u05D4", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "All options are displayed by default. Uncheck this box if you would like to hide advanced options.", description: "" }, betteRedditFixHideLinksTitle: { message: "\u05EA\u05E7\u05DF \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05D7\u05D1\u05D5\u05D9\u05D9\u05DD", description: "" }, commentNavName: { message: "\u05E0\u05D5\u05D5\u05D8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "\u05E4\u05EA\u05D7 \u05E0\u05D5\u05D5\u05D8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, presetsLiteDesc: { message: "RES Lite: just the popular stuff", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your comment/wiki edit.", description: "" }, onboardingUpdateNotifictionNothing: { message: "\u05DB\u05DC\u05D5\u05DD", description: "" }, filteRedditShowFilterlineTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05E7\u05D5 \u05E1\u05D9\u05E0\u05D5\u05DF", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Section Links", description: "" }, hideChildCommentsDesc: { message: "\u05D0\u05E4\u05E9\u05E8 \u05D4\u05E1\u05EA\u05E8\u05EA \u05D9\u05DC\u05D3 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover", description: "" }, submitHelperName: { message: "\u05E2\u05D5\u05D6\u05E8 \u05D4\u05D2\u05E9\u05D4", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "\u05E1\u05D9\u05E0\u05D5\u05DF \u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05DE\u05E2\u05D5\u05D2\u05DC\u05D5\u05EA", description: "" }, keyboardNavImageSizeUpTitle: { message: "\u05D4\u05D2\u05D3\u05DC \u05D0\u05EA \u05D2\u05D5\u05D3\u05DC \u05D4\u05EA\u05DE\u05D5\u05E0\u05D4 \u05D1\u05DE\u05D9\u05D3\u05D4 \u05D0\u05D7\u05EA", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "\u05D0\u05E4\u05E9\u05E8/\u05DB\u05D1\u05D4 \u05E1\u05D2\u05E0\u05D5\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 $1 \u05E2\u05D1\u05D5\u05E8: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, commentToolsStrikeKeyDesc: { message: "Keyboard shortcut to add a strikethrough.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options", description: "" }, logoLinkMyUserPage: { message: "\u05E2\u05DE\u05D5\u05D3 \u05D1\u05DE\u05E9\u05EA\u05DE\u05E9 \u05E9\u05DC\u05D9", description: "" }, keyboardNavUseGoModeDesc: { message: 'Require initiating goMode before using "go to" shortcuts.', description: "" }, easterEggName: { message: "\u05EA\u05DB\u05DE\u05D9\u05DF", description: "" }, commentToolsSuperKeyDesc: { message: "Keyboard shortcut to make text superscript.", description: "" }, keyboardNavUpVoteTitle: { message: "Up Vote", description: "" }, notificationNotificationTypesDesc: { message: "Manage different types of notifications.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "\u05E7\u05D0\u05E8\u05DE\u05EA \u05E4\u05D5\u05E1\u05D8\u05D9\u05DD:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "\u05D0\u05E4\u05E9\u05E8/\u05DB\u05D1\u05D4 \u05E1\u05D2\u05E0\u05D5\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "\u05E7\u05E8\u05D0 \u05E2\u05D5\u05D3", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "\u05D9\u05D9\u05E2\u05D5\u05D3 \u05E1\u05DE\u05DC \u05E8\u05D3\u05D9\u05D8", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "\u05D0\u05E4\u05E9\u05E8 \u05DC\u05EA\u05E6\u05D5\u05E8\u05EA \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, accountSwitcherShowKarmaDesc: { message: "Show the post and comment karma of each account in the Account Switcher.", description: "" }, keyboardNavDesc: { message: "\u05E0\u05D9\u05D5\u05D5\u05D8 \u05D1\u05E2\u05D6\u05E8\u05EA \u05DE\u05E7\u05DC\u05D3\u05EA \u05DC\u05E8\u05D3\u05D9\u05D8!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "\u05E2\u05D1\u05D5\u05E8 \u05DC\u05D4\u05D5\u05E8\u05D4 (\u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA)", description: "" }, keyboardNavGoModeDesc: { message: '\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC"\u05DE\u05E6\u05D1 \u05E4\u05E2\u05D9\u05DC" (\u05D4\u05DB\u05E8\u05D7\u05D9 \u05DC\u05E4\u05E0\u05D9 \u05E9\u05D9\u05DE\u05D5\u05E9 \u05D1\u05E7\u05D9\u05E6\u05D5\u05E8 "\u05DC\u05DA \u05D0\u05DC" \u05DE\u05EA\u05D7\u05EA)', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "\u05E9\u05D5\u05E8\u05EA \u05E4\u05E7\u05D5\u05D3\u05D5\u05EA RES", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Image Move Left", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "\u05DC\u05D5\u05D7 \u05DE\u05D7\u05D5\u05D5\u05E0\u05D9 RES \u05D4\u05D5\u05D0 \u05DE\u05E7\u05D5\u05DE\u05DD \u05E9\u05DC \u05DE\u05E1\u05E4\u05E8 \u05E4\u05D9\u05E6'\u05E8\u05D9\u05DD, \u05DB\u05D5\u05DC\u05DC \u05D5\u05D5\u05D9\u05D3\u05D2'\u05D8\u05D9\u05DD \u05D5\u05DB\u05DC\u05D9\u05DD \u05E9\u05D9\u05DE\u05D5\u05E9\u05D9\u05D9\u05DD \u05D0\u05D7\u05E8\u05D9\u05DD.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "After selecting a macro from the dropdown list, do not hide the list.", description: "" }, filteRedditSubredditsTitle: { message: "\u05E1\u05D0\u05D1\u05E8\u05D3\u05D9\u05D8\u05D9\u05DD", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Move the image(s) in the highlighted post area down.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Follow Permalink New Tab", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Removes the height restriction of image(s) in the highlighted post area.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "tag user $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "\u05E1\u05E4\u05E8 \u05D0\u05D5\u05D3\u05D5\u05EA \u05D1\u05E2\u05D9\u05D4", description: "" }, aboutOptionsFAQTitle: { message: "\u05E9\u05D0\u05DC\u05D5\u05EA \u05D5\u05EA\u05E9\u05D5\u05D1\u05D5\u05EA", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05E4\u05E8\u05D8\u05D9 \u05DE\u05E9\u05EA\u05DE\u05E9", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "\u05E1\u05D2\u05E0\u05D5\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05E0\u05D7\u05E1\u05DD \u05E2\u05D1\u05D5\u05E8: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Color for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Update Current Tab", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "\u05E2\u05DC\u05D4 \u05DC\u05DE\u05E2\u05DC\u05D4 \u05E0\u05D5\u05D5\u05D8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC\u05E4\u05E8\u05D5\u05E4\u05D9\u05DC", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "View link and comments in new tabs.", description: "" }, onboardingUpdateNotificationName: { message: "\u05E2\u05D3\u05DB\u05DF \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, nightModeNightModeStartDesc: { message: "Time that automatic night mode starts.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Automatically load new page on scroll (if off, you click to load).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "sticky", description: "" }, userHighlightAdminColorTitle: { message: "Admin Color", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Image Size Down", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'The saved tab is now located in the multireddit sidebar. This will restore a "saved" link to the header (next to the "hot", "new", etc. tabs).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Default color of the bar.", description: "" }, toggleOff: { message: "\u05DB\u05D1\u05D5\u05D9", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Show subreddit autocomplete tool when typing in posts, comments, and replies.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Image Size Down Fine", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05EA\u05D5\u05D5\u05D9\u05D5\u05EA \u05D6\u05DE\u05DF \u05E9\u05DC \u05D5\u05D9\u05E7\u05D9", description: "" }, commentToolsMacrosDesc: { message: "Add buttons to insert frequently used snippets of text.", description: "" }, keyboardNavProfileTitle: { message: "\u05E4\u05E8\u05D5\u05E4\u05D9\u05DC", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "\u05E1\u05E0\u05DF \u05E1\u05D0\u05D1\u05E8\u05D3\u05D9\u05D8\u05D9\u05DD \u05DE", description: "" }, userTaggerShowAnyway: { message: "show anyway?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Clear Cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+\u05D4\u05D5\u05E1\u05E3 \u05DE\u05E9\u05EA\u05DE\u05E9", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "\u05D4\u05D3\u05D2\u05E9", description: "" }, filteRedditExcludeModqueueDesc: { message: "Don't filter anything on modqueue pages (modqueue, reports, spam, etc.).", description: "" }, filteRedditEmptyNotificationHeader: { message: "\u05DB\u05DC \u05D4\u05E4\u05D5\u05E1\u05D8\u05D9\u05DD \u05DE\u05E1\u05D5\u05E0\u05E0\u05D9\u05DD.", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifications.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "\u05DE\u05E0\u05D5\u05D9\u05D9\u05DD:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "\u05E2\u05D1\u05D5\u05E8 \u05DC\u05EA\u05D2\u05D5\u05D1\u05D4 \u05D4\u05E2\u05DC\u05D9\u05D5\u05E0\u05D4 \u05D1\u05EA\u05E8\u05D3 \u05D4\u05E7\u05D5\u05D3\u05DD (\u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA)", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Show formatting tools (bold, italic, tables, etc.) to the edit form for posts, comments, and other snudown/markdown areas.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "\u05E8\u05D3 \u05DC\u05EA\u05D7\u05EA\u05D9\u05EA", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Color Hover", description: "" }, spoilerTagsName: { message: "\u05EA\u05D2\u05D9\u05D5\u05EA \u05E1\u05E4\u05D5\u05D9\u05DC\u05E8 \u05D2\u05DC\u05D5\u05D1\u05DC\u05D9\u05D5\u05EA", description: "" }, betteRedditVideoUploadedDesc: { message: "Show upload date of videos when possible.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "\u05E9\u05DE\u05D5\u05E8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, hoverFadeSpeedDesc: { message: "\u05DE\u05D4\u05D9\u05E8\u05D5\u05EA \u05D3\u05E2\u05D9\u05DB\u05D4(\u05D1\u05E9\u05E0\u05D9\u05D5\u05EA)", description: "" }, betteRedditShowTimestampPostsDesc: { message: "\u05D4\u05E8\u05D0\u05D4 \u05EA\u05D0\u05E8\u05D9\u05DA \u05DE\u05D3\u05D5\u05D9\u05E7(\u05D9\u05D5\u05DD \u05E8\u05D0\u05E9\u05D5\u05DF 16 \u05D1\u05E0\u05D5\u05D1\u05DE\u05D1\u05E8 2014 20:14:56 UTC) \u05D1\u05DE\u05E7\u05D5\u05DD \u05EA\u05D0\u05E8\u05D9\u05DA \u05D9\u05D7\u05E1\u05D9 (\u05DC\u05E4\u05E0\u05D9 7 \u05D9\u05DE\u05D9\u05DD) \u05D1\u05E4\u05D5\u05E1\u05D8\u05D9\u05DD.", description: "" }, submissionsCategory: { message: "\u05E4\u05E8\u05E1\u05D5\u05DE\u05D9\u05DD", description: "" }, keyboardNavSaveCommentDesc: { message: "Save the current comment to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, keyboardNavSavePostTitle: { message: "Save Post", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Font Color", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "\u05DE\u05D5\u05E1\u05D9\u05E3 \u05D4\u05D5\u05D3\u05E2\u05EA \u05E2\u05DB\u05D1\u05E8 \u05D1\u05E8\u05D9\u05D7\u05D5\u05E3 \u05DC\u05E1\u05D0\u05D1\u05E8\u05D3\u05D9\u05D8\u05D9\u05DD", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu.", description: "" }, commentDepthDesc: { message: "\u05DE\u05D0\u05E4\u05E9\u05E8 \u05DC\u05DA \u05DC\u05D4\u05D2\u05D3\u05D9\u05E8 \u05D0\u05EA \u05D4\u05E2\u05D5\u05DE\u05E7 \u05D4\u05DE\u05D5\u05E2\u05D3\u05E3 \u05E9\u05DC \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05E9\u05EA\u05E8\u05E6\u05D4 \u05DC\u05E8\u05D0\u05D5\u05EA \u05D1\u05DC\u05D7\u05D9\u05E6\u05D4 \u05E2\u05DC \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05DC\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA.\n\n0 = \u05D4\u05DB\u05D5\u05DC, 1 = \u05E8\u05DE\u05EA \u05D4\u05D1\u05E1\u05D9\u05E1, 2 = \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05E2\u05D3 \u05E8\u05DE\u05EA \u05D4\u05D1\u05E1\u05D9\u05E1, 3 = \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05DC\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05E2\u05D3 \u05E8\u05DE\u05EA \u05D4\u05D1\u05E1\u05D9\u05E1, \u05D5\u05DB\u05D5'.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Keyboard shortcut to quote text.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Time that automatic night mode ends.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sort", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filters all links labelled NSFW.", description: "" }, logoLinkName: { message: "\u05E7\u05D9\u05E9\u05D5\u05E8 \u05DC\u05D5\u05D2\u05D5", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "\u05D0\u05DD \u05D3\u05D1\u05E8 \u05DE\u05D4 \u05D0\u05D9\u05E0\u05D5 \u05E2\u05D5\u05D1\u05D3 \u05DB\u05E9\u05D5\u05E8\u05D4, \u05D1\u05E7\u05E9 \u05E2\u05D6\u05E8\u05D4 \u05D1- /r/RESissues", description: "" }, nightModeAutomaticNightModeNone: { message: "\u05DB\u05D1\u05D5\u05D9", description: "" }, keyboardNavMoveUpDesc: { message: "\u05E2\u05DC\u05D4 \u05DC\u05E7\u05D9\u05E9\u05D5\u05E8 \u05E7\u05D5\u05D3\u05DD \u05D0\u05D5 \u05EA\u05D2\u05D5\u05D1\u05D4 \u05E7\u05D5\u05D3\u05DE\u05EA \u05D1\u05E8\u05E9\u05D9\u05DE\u05D5\u05EA \u05E9\u05D8\u05D5\u05D7\u05D5\u05EA", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "\u05DC\u05D0 \u05E0\u05E2\u05E9\u05EA\u05D4 \u05E4\u05E2\u05D5\u05DC\u05D4", description: "" }, commentPreviewEnableForWikiTitle: { message: "\u05D0\u05E4\u05E9\u05E8 \u05DC\u05D5\u05D9\u05E7\u05D9", description: "" }, filteRedditExcludeUserPagesTitle: { message: "\u05D0\u05DC \u05EA\u05DB\u05DC\u05D9\u05DC \u05D3\u05E4\u05D9 \u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "\u05E9\u05DD", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "\u05DE\u05E6\u05D9\u05D2 \u05EA\u05DE\u05D5\u05E0\u05D4 \u05D1\u05E9\u05D5\u05E8\u05D4", description: "" }, commentStyleCommentIndentDesc: { message: "Indent comments by [x] pixels (only enter the number, no 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Disable RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling", description: "" }, userInfoRedditorSince: { message: "\u05DE\u05E9\u05EA\u05DE\u05E9 \u05E8\u05D3\u05D9\u05D8 \u05DE\u05D0\u05D6:", description: "" }, userTaggerShow: { message: "Show", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "\u05DE\u05D4\u05D9\u05E8\u05D5\u05EA \u05D3\u05E2\u05D9\u05DB\u05D4", description: "" }, necLoadChildCommentsTitle: { message: "Load Child Comments", description: "" }, showParentName: { message: "\u05D4\u05E6\u05D2 \u05EA\u05D2\u05D5\u05D1\u05EA-\u05D0\u05DD \u05D1\u05E8\u05D9\u05D7\u05D5\u05E3", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Show the gold status of each account in the Account Switcher.", description: "" }, keyboardNavMoveToParentTitle: { message: "\u05E2\u05D1\u05D5\u05E8 \u05DC\u05D4\u05D5\u05E8\u05D4", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05EA\u05D5\u05D5\u05D9\u05D5\u05EA \u05D6\u05DE\u05DF \u05E9\u05DC \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "\u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD", description: "" }, spoilerTagsDesc: { message: "\u05DE\u05E1\u05EA\u05D9\u05E8 \u05E1\u05E4\u05D5\u05D9\u05DC\u05E8\u05D9\u05DD \u05D1\u05E2\u05DE\u05D5\u05D3\u05D9 \u05D4\u05E4\u05E8\u05D5\u05E4\u05D9\u05DC \u05E9\u05DC \u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD.", description: "" }, onboardingUpdateNotifictionNotification: { message: "\u05D4\u05E8\u05D0\u05D4 \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05E7\u05D5\u05E4\u05E6\u05D5\u05EA", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Show Gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "\u05E2\u05D5\u05DE\u05E7 \u05EA\u05D2\u05D5\u05D1\u05D4", description: "" }, keyboardNavImageMoveDownTitle: { message: "Image Move Down", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Previous Gallery Image", description: "" }, userTaggerTaggedUsers: { message: "tagged users", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "\u05E2\u05DC\u05D4 \u05EA\u05E8\u05D3 \u05D0\u05D7\u05D3 \u05DC\u05DE\u05E2\u05DC\u05D4", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "\u05DE\u05D5\u05E1\u05D9\u05E3 \u05DE\u05D9\u05D3\u05E2 \u05D5\u05E9\u05E4\u05E6\u05D5\u05E8\u05D9\u05DD \u05E7\u05D8\u05E0\u05D9\u05DD \u05DC\u05E7\u05D0\u05E8\u05DE\u05D4 \u05DC\u05E6\u05D3 \u05E9\u05DD \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05D1\u05D0\u05D9\u05D6\u05D5\u05E8 \u05EA\u05E4\u05E8\u05D9\u05D8 \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "\u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC \u05E9\u05DC \u05E2\u05D5\u05DE\u05E7 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Features", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "\u05E2\u05D1\u05D5\u05D0 \u05D0\u05D7 \u05D4\u05D5\u05E8\u05D4 \u05D0\u05D7\u05D3 \u05DC\u05DE\u05D8\u05D4", description: "" }, dashboardTagsPerPageTitle: { message: "\u05EA\u05D2\u05D9\u05D5\u05EA \u05DC\u05E4\u05D9 \u05E2\u05DE\u05D5\u05D3", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05EA\u05D5\u05D5\u05D9\u05D5\u05EA \u05D6\u05DE\u05DF \u05E9\u05DC \u05D9\u05D5\u05DE\u05DF \u05E9\u05D9\u05E0\u05D5\u05D9\u05D9\u05DD", description: "" }, userTaggerStoreSourceLinkDesc: { message: "By default, store a link to the link/comment you tagged a user on", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "\u05DE\u05E9\u05D3\u05E8\u05D2 \u05D0\u05EA \u05EA\u05E4\u05E8\u05D9\u05D8 \u05D4\u05E0\u05D9\u05D5\u05D5\u05D8 \u05D4\u05DE\u05D5\u05E4\u05D9\u05E2 \u05D1\u05E6\u05D3 \u05E9\u05DE\u05D0\u05DC \u05E9\u05DC \u05D4\u05D3\u05E3 \u05D4\u05E8\u05D0\u05E9\u05D9 (\u05E4\u05E8\u05D5\u05E0\u05D8\u05E4\u05D9\u05D9\u05D2')", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "\u05DE\u05E7\u05E9 \u05E6\u05D9\u05D8\u05D5\u05D8", description: "" }, keyboardNavHideDesc: { message: "\u05D4\u05D7\u05D1\u05D0 \u05E7\u05D9\u05E9\u05D5\u05E8", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "\u05DE\u05E7\u05E9 \u05D1\u05D5\u05DC\u05D8", description: "" }, xPostLinksName: { message: "\u05DC\u05D9\u05E0\u05E7\u05D9\u05DD \u05DC\u05E4\u05D5\u05E1\u05D8\u05D9\u05DD \u05DE\u05D5\u05E6\u05DC\u05D1\u05D9\u05DD", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Always show a tag tool icon after every username.", description: "" }, commentPreviewDraftStyleDesc: { message: "Apply a 'draft' style background to the preview to differentiate it from the comment textarea.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Follow Comments", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "\u05D3\u05D5\u05D0\u05E8 \u05DE\u05D5\u05D3\u05D9\u05DD", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Color", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Clean Comments", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, filteRedditForceSyncFiltersTitle: { message: "\u05D4\u05DB\u05E8\u05D7 \u05DE\u05E1\u05E0\u05E0\u05D9 \u05E1\u05D9\u05E0\u05DB\u05E8\u05D5\u05DF", description: "" }, nerShowServerInfoTitle: { message: "Show Server Info", description: "" }, troubleshooterSettingsReset: { message: "\u05DB\u05DC \u05D4\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05D0\u05D5\u05EA\u05D7\u05DC\u05D5. \u05E8\u05E2\u05E0\u05DF \u05D1\u05DB\u05D3\u05D9 \u05DC\u05E6\u05E4\u05D5\u05EA \u05D1\u05EA\u05D5\u05E6\u05D0\u05D5\u05EA", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Move the image(s) in the highlighted post area left.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Open the current comment's permalink (comment pages only).", description: "" }, subredditInfoAddRemoveShortcut: { message: "\u05E7\u05D9\u05E6\u05D5\u05E8 \u05D3\u05E8\u05DA", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Color Blind Friendly", description: "" }, userInfoSendMessage: { message: "\u05E9\u05DC\u05D7 \u05D4\u05D5\u05D3\u05E2\u05D4", description: "" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Disable Vote Buttons", description: "" }, commentToolsLinkKeyDesc: { message: "Keyboard shortcut to add a link.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "\u05E2\u05DC\u05D4 \u05EA\u05D2\u05D5\u05D1\u05D4 \u05D0\u05D7\u05EA \u05DC\u05DE\u05E2\u05DC\u05D4", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "Page", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Change the default context value on context link.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Image Size Up Fine", description: "" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Show unread message count in favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "\u05DE\u05E1\u05D9\u05D9\u05E2 \u05D7\u05D9\u05E4\u05D5\u05E9", description: "" }, keyboardNavNextGalleryImageDesc: { message: "View the next image of an inline gallery.", description: "" }, nightModeName: { message: "\u05DE\u05E6\u05D1 \u05DC\u05D9\u05DC\u05D4", description: "" }, filteRedditExcludeModqueueTitle: { message: "\u05D0\u05DC \u05EA\u05DB\u05DC\u05D9\u05DC \u05EA\u05D5\u05E8\u05D9 \u05DE\u05D5\u05D3\u05D9\u05DD", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "\u05D4\u05E4\u05E2\u05DC \u05E9\u05D5\u05E8\u05EA \u05E4\u05E7\u05D5\u05D3\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8 \u05E1\u05D9\u05E0\u05D5\u05DF", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "can't set tag - no post/comment selected.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "\u05E4\u05D5\u05E2\u05DC", description: "" }, contextDesc: { message: "\u05DE\u05D5\u05E1\u05D9\u05E3 \u05E7\u05D9\u05E9\u05D5\u05E8 \u05DC\u05E9\u05D5\u05E8\u05EA \u05DE\u05D9\u05D3\u05E2 \u05D4\u05E6\u05D4\u05D5\u05D1\u05D4 \u05E2\u05DC \u05DE\u05E0\u05EA \u05DC\u05E8\u05D0\u05D5\u05EA \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05D1\u05E2\u05D5\u05DE\u05E7 \u05D2\u05D3\u05D5\u05DC \u05D1\u05D4\u05E7\u05E9\u05E8 \u05D4\u05DE\u05DC\u05D0 \u05E9\u05DC\u05D4\u05DF.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Up Vote Without Toggling", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "\u05E2\u05DC\u05D4 \u05DC\u05E6\u05DE\u05E8\u05EA", description: "" }, nightModeAutomaticNightModeUser: { message: "\u05E9\u05E2\u05D5\u05EA \u05DC\u05E4\u05D9 \u05D4\u05D2\u05D3\u05E8\u05EA \u05DE\u05E9\u05EA\u05DE\u05E9", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignored", description: "" }, commentToolsCommentingAsDesc: { message: "Shows your currently logged in username to avoid posting from the wrong account.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "\u05E2\u05E7\u05D5\u05D1 \u05D0\u05D7\u05E8 \u05E7\u05D9\u05E9\u05D5\u05E8 \u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D9\u05D4 \u05D7\u05D3\u05E9\u05D4", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "You can change this later from the $1 settings", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "\u05D0\u05E4\u05E9\u05E8/\u05DB\u05D1\u05D4", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "\u05DC\u05D0\u05D7\u05E8 \u05D4\u05D7\u05DC\u05E4\u05EA \u05D7\u05E9\u05D1\u05D5\u05DF, \u05D4\u05E6\u05D2 \u05D0\u05EA\u05E8\u05E2\u05D4 \u05D1\u05E9\u05D0\u05E8 \u05D4\u05DB\u05E8\u05D8\u05D9\u05D5\u05EA.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "\u05D2\u05D1\u05D4 \u05D5\u05E9\u05D7\u05D6\u05E8 \u05D0\u05EA \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA RES", description: "" }, accountSwitcherDropDownStyleTitle: { message: "\u05E1\u05D2\u05E0\u05D5\u05DF \u05D9\u05D5\u05E8\u05D3", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will submit your post.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "option ID", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "\u05D8\u05E2\u05DF \u05DE\u05E1\u05DE\u05DB\u05D9\u05DD \u05E0\u05D5\u05E1\u05E4\u05D9\u05DD \u05D0\u05D5 \u05D7\u05DC\u05E7\u05D9 CSS \u05DE\u05E9\u05DC\u05DA", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "\u05E1\u05D9\u05E1\u05DE\u05D0", description: "" }, userInfoUnignore: { message: "\u05D1\u05D8\u05DC \u05D4\u05EA\u05E2\u05DC\u05DE\u05D5\u05EA", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "\u05DE\u05D0\u05E7\u05E8\u05D5-\u05D9\u05DD", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn automatic mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn user-defined hours mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "\u05E1\u05E0\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05D6\u05D4 \u05DEr/all \u05D5/domain/*", description: "" }, presetsNoPopupsTitle: { message: "No Popups", description: "" }, searchCopyResultForComment: { message: "copy this for a comment", description: "" }, moduleID: { message: "module ID", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Show unread message count in page/tab title?", description: "" }, xPostLinksXpostedFrom: { message: "x-posted from", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Toggle Children", description: "" }, commandLineLaunchDesc: { message: "Open the RES Command Line", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "\u05DE\u05D9\u05D3\u05E2 \u05D0\u05D5\u05D3\u05D5\u05EA \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, betteRedditVideoUploadedTitle: { message: "\u05E1\u05E8\u05D8\u05D5\u05DF \u05D4\u05D5\u05E2\u05DC\u05D4", description: "" }, profileNavigatorFadeSpeedDesc: { message: "\u05DE\u05D4\u05D9\u05E8\u05D5\u05EA \u05D3\u05E2\u05D9\u05DB\u05D4 (\u05D1\u05E9\u05E0\u05D9\u05D5\u05EA).", description: "" }, aboutOptionsDonate: { message: "\u05EA\u05DE\u05D5\u05DA \u05D1\u05E4\u05D9\u05EA\u05D5\u05D7 \u05D4\u05E2\u05EA\u05D9\u05D3\u05D9 \u05E9\u05DC RES", description: "" }, aboutOptionsBugsTitle: { message: "\u05D1\u05D0\u05D2\u05D9\u05DD", description: "" }, nerShowPauseButtonTitle: { message: "Show Pause Button", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "\u05E4\u05EA\u05D9\u05D7\u05D4 \u05D1\u05DC\u05D7\u05D9\u05E6\u05D4 \u05D0\u05D7\u05EA", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Number of days before RES stops keeping track of a viewed thread.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "\u05DE\u05E0\u05D4\u05DC \u05D2\u05E8\u05E1\u05D4", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching.", description: "" }, commentDepthName: { message: "\u05E2\u05D5\u05DE\u05E7 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05DE\u05D5\u05EA\u05D0\u05DD \u05D0\u05D9\u05E9\u05D9\u05EA", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Show Unread Count In Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Show Subscribe Button", description: "" }, commentToolsKey: { message: "\u05DE\u05E4\u05EA\u05D7", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Color Usernames", description: "" }, commentStyleName: { message: "\u05E1\u05D2\u05E0\u05D5\u05DF \u05EA\u05D2\u05D5\u05D1\u05D4", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Show All Options", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "\u05E9\u05D9\u05D8\u05EA \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05DC\u05E2\u05D3\u05DB\u05D5\u05E0\u05D9 \u05D1\u05D8\u05D0", description: "" }, keyboardNavFrontPageTitle: { message: "\u05E2\u05DE\u05D5\u05D3 \u05E8\u05D0\u05E9\u05D9", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatically scroll to the post/comment that is selected when the page loads", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "\u05D8\u05E7\u05E1\u05D8", description: "" }, notificationStickyTitle: { message: "Sticky", description: "" }, aboutOptionsAnnouncements: { message: "\u05E7\u05E8\u05D0 \u05D0\u05EA \u05D4\u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD \u05D4\u05D0\u05D7\u05E8\u05D5\u05E0\u05D9\u05DD \u05D1- /r/Announcements", description: "" }, hideChildCommentsAutomaticDesc: { message: "\u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9\u05EA \u05D4\u05D7\u05D1\u05D0 \u05D0\u05EA \u05D4\u05DB\u05DC \u05D7\u05D5\u05E5 \u05DE\u05D4\u05D5\u05E8\u05D9 \u05D4\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA , \u05D0\u05D5 \u05E1\u05E4\u05E7 \u05E7\u05D9\u05E9\u05D5\u05E8 \u05E2\u05DC \u05DE\u05E0\u05EA \u05DC\u05D4\u05D7\u05D1\u05D9\u05D0 \u05D0\u05EA \u05DB\u05D5\u05DC\u05DD?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "\u05D4\u05E1\u05E8 \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05D6\u05D4 \u05DE\u05E8\u05E9\u05D9\u05DE\u05EA \u05D4\u05E7\u05D9\u05E6\u05D5\u05E8\u05D9\u05DD", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "\u05E2\u05DE\u05D5\u05D3 \u05D4\u05E7\u05D5\u05D3\u05DD", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Highlights comment boxes for easier reading / placefinding in large threads.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "\u05E8\u05D3 \u05DC\u05DE\u05D8\u05D4 \u05DC\u05D0\u05D7\u05E8 \u05D4\u05E6\u05D1\u05E2\u05D4", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Hide Dupes", description: "" }, keyboardNavFrontPageDesc: { message: "\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC\u05E2\u05DE\u05D5\u05D3 \u05E8\u05D0\u05E9\u05D9", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Follow Link And Comments New Tab BG", description: "" }, singleClickDesc: { message: "\u05DE\u05D5\u05E1\u05D9\u05E3 \u05E7\u05D9\u05E9\u05D5\u05E8 [l+c] \u05D4\u05E4\u05D5\u05EA\u05D7 \u05D0\u05EA \u05D4\u05E7\u05D9\u05E9\u05D5\u05E8 \u05D5\u05D0\u05EA \u05E2\u05DE\u05D5\u05D3 \u05D4\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05D1\u05E9\u05E0\u05D9 \u05D8\u05D0\u05D1\u05D9\u05DD \u05D7\u05D3\u05E9\u05D9\u05DD \u05D1\u05DC\u05D7\u05D9\u05E6\u05D4 \u05D0\u05D7\u05EA.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Browse by Wheel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Show an envelope (inbox) icon in the top right corner.", description: "" }, aboutName: { message: "\u05D0\u05D5\u05D3\u05D5\u05EA RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "\u05D2\u05D9\u05D1\u05D5\u05D9", description: "" }, productivityCategory: { message: "\u05E4\u05E8\u05D5\u05D3\u05D5\u05E7\u05D8\u05D9\u05D1\u05D9\u05D5\u05EA", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "\u05DC\u05D0 \u05E1\u05D5\u05E4\u05E7 \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8.", description: "" }, hoverCloseOnMouseOutTitle: { message: "\u05E1\u05D2\u05D5\u05E8 \u05D1\u05D9\u05E6\u05D9\u05D0\u05EA \u05D4\u05E2\u05DB\u05D1\u05E8", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "\u05E2\u05D1\u05D5\u05E8 \u05DC\u05EA\u05D2\u05D5\u05D1\u05D4 \u05D4\u05E2\u05DC\u05D9\u05D5\u05E0\u05D4 \u05D1\u05EA\u05E8\u05D3 \u05D4\u05E0\u05D5\u05DB\u05D7\u05D9 (\u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA)", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: 'Changes "hide" links to read as "hide" or "unhide" depending on the hide state.', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 \u05E2\u05E8\u05DB\u05D9\u05DD \u05D4\u05D5\u05E1\u05E8\u05D5", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Add tabs to the search page.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter \u05E9\u05D5\u05DE\u05E8 \u05EA\u05E8\u05D3\u05D9\u05DD \u05D7\u05D9\u05D9\u05DD", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "\u05E2\u05D5\u05DE\u05E7 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05D1\u05E1\u05D0\u05D1\u05E8\u05D3\u05D9\u05D8", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Enable the 2 column editor.", description: "" }, floaterName: { message: "\u05D0\u05DC\u05DE\u05E0\u05D8\u05D9\u05DD \u05E6\u05E4\u05D9\u05DD", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "\u05D4\u05D7\u05D1\u05D0 \u05D3\u05E2\u05D9\u05DB\u05EA \u05E7\u05D9\u05E9\u05D5\u05E8", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "\u05DE\u05D2\u05E9 \u05D4\u05E4\u05E2\u05DC\u05D4 \u05DE\u05D4\u05D9\u05E8 \u05DC\u05EA\u05D5\u05DB\u05DF \u05DE\u05D9\u05E0\u05D9/\u05E4\u05D5\u05D2\u05E2\u05E0\u05D9", description: "" }, filteRedditAllowNSFWDesc: { message: "Don't hide NSFW posts from certain subreddits when the NSFW filter is turned on.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "\u05D4\u05D5\u05E1\u05E3 \u05DB\u05E4\u05EA\u05D5\u05E8 \u05D4\u05E6\u05D2\u05D4\\\u05D4\u05E1\u05EA\u05E8\u05D4 \u05DC\u05E9\u05D5\u05E8\u05EA \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9.", description: "" }, showImagesDesc: { message: "\u05E4\u05D5\u05EA\u05D7 \u05EA\u05DE\u05D5\u05E0\u05D5\u05EA \u05D1\u05D0\u05D5\u05EA\u05D4 \u05E9\u05D5\u05E8\u05D4 \u05D1\u05D3\u05E4\u05D3\u05E4\u05E3 \u05D1\u05DC\u05D7\u05D9\u05E6\u05EA \u05DB\u05E4\u05EA\u05D5\u05E8. \u05D2\u05DD \u05E4\u05D4 \u05D9\u05E9 \u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA \u05DC\u05D4\u05D2\u05D3\u05D9\u05E8, \u05DC\u05DA \u05EA\u05E8\u05D0\u05D4!", description: "" }, commentToolsMacroButtonsTitle: { message: "\u05DC\u05D7\u05E6\u05E0\u05D9 \u05DE\u05D0\u05E7\u05E8\u05D5", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "Don't filter your own posts.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "\u05DE\u05E1\u05EA\u05D9\u05E8 \u05E9\u05DD \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05DE\u05E1\u05EA\u05D9\u05E8 \u05D0\u05EA \u05E9\u05DD \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05E9\u05DC\u05DA \u05DE\u05DC\u05D4\u05D5\u05E4\u05D9\u05E2 \u05E2\u05DC \u05D4\u05DE\u05E1\u05DA \u05E9\u05DC\u05DA \u05D1\u05D6\u05DE\u05DF \u05E9\u05D0\u05EA\u05D4 \u05DE\u05E8\u05D5\u05D1\u05E8 \u05DC\u05E8\u05D3\u05D9\u05D8. \u05DB\u05DA, \u05D0\u05DD \u05DE\u05D9\u05E9\u05D4\u05D5 \u05DE\u05E1\u05EA\u05DB\u05DC \u05DE\u05E2\u05D1\u05E8 \u05DC\u05DB\u05EA\u05E3 \u05E9\u05DC\u05DA \u05D1\u05E2\u05D1\u05D5\u05D3\u05D4, \u05D0\u05D5 \u05E9\u05D0\u05EA\u05D4 \u05DE\u05E6\u05DC\u05DD \u05D0\u05EA \u05D4\u05DE\u05E1\u05DA, \u05E9\u05DD \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05E9\u05DC\u05DA \u05D1\u05E8\u05D3\u05D9\u05D8 \u05DC\u05D0 \u05D9\u05D5\u05E6\u05D2. \u05D6\u05D4 \u05DE\u05E9\u05E4\u05D9\u05E2 \u05D0\u05DA \u05D5\u05E8\u05E7 \u05E2\u05DC \u05D4\u05DE\u05E1\u05DA \u05E9\u05DC\u05DA. \u05D0\u05D9\u05DF \u05E9\u05D5\u05DD \u05D3\u05E8\u05DA \u05DC\u05E4\u05E8\u05E1\u05DD \u05D0\u05D5 \u05DC\u05D4\u05D2\u05D9\u05D1 \u05D1\u05E8\u05D3\u05D9\u05D8 \u05D1\u05DC\u05D9 \u05DC\u05E7\u05E9\u05E8 \u05D0\u05EA \u05D6\u05D4 \u05DC\u05D7\u05E9\u05D1\u05D5\u05DF \u05E9\u05DE\u05DE\u05E0\u05D5 \u05DB\u05EA\u05D1\u05EA \u05D0\u05EA \u05D6\u05D4.", description: "" }, betteRedditName: { message: "\u05E9\u05E4\u05E6\u05D5\u05E8\u05D3\u05D9\u05D8", description: "" }, voteEnhancementsName: { message: "\u05D4\u05E6\u05D1\u05E2 \u05E2\u05D1\u05D5\u05E8 \u05E9\u05D9\u05E4\u05D5\u05E8\u05D9\u05DD", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05D0\u05E4\u05E9\u05E8\u05D5\u05D9\u05D5\u05EA \u05E1\u05D9\u05E0\u05D5\u05DF \u05D7\u05D1\u05D5\u05D9\u05D5\u05EA", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Truncates long post titles (greater than 1 line) with an ellipsis.", description: "" }, subredditInfoAddRemoveDashboard: { message: "\u05DC\u05D5\u05D7 \u05DE\u05D7\u05D5\u05D5\u05E0\u05D9\u05DD", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "\u05D4\u05E9\u05DC\u05DE\u05D4 \u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9\u05EA \u05E9\u05DC \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed", description: "" }, aboutOptionsCodeTitle: { message: "\u05E7\u05D5\u05D3", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Username", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "\u05EA\u05E7\u05DF \u05D4\u05D5\u05D3\u05E2\u05EA \u05E2\u05D3\u05DB\u05D5\u05DF", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Move the image(s) in the highlighted post area up.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "\u05EA\u05E8\u05D5\u05DD", description: "" }, keyboardNavGoModeTitle: { message: "\u05DE\u05E6\u05D1 \u05E4\u05E2\u05D9\u05DC", description: "" }, keyboardNavName: { message: "\u05E0\u05D9\u05D5\u05D5\u05D8 \u05DE\u05E7\u05DC\u05D3\u05EA", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "\u05E1\u05DE\u05DF \u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "\u05EA\u05EA\u05E8\u05D3\u05D9\u05D8/\u05DE\u05D5\u05DC\u05D8\u05D9\u05E8\u05D3\u05D9\u05D8 \u05E0\u05D5\u05DB\u05D7\u05D9", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Follow Permalink", description: "" }, hoverDesc: { message: "\u05D4\u05EA\u05D0\u05DD \u05D0\u05EA \u05D4\u05D4\u05EA\u05E0\u05D4\u05D2\u05D5\u05EA \u05E9\u05DC \u05E4\u05D5\u05E4-\u05D0\u05E4\u05D9\u05DD \u05D0\u05D9\u05E0\u05E4\u05D5\u05E8\u05DE\u05D8\u05D9\u05D1\u05D9\u05D9\u05DD \u05D2\u05D3\u05D5\u05DC\u05D9\u05DD \u05D4\u05DE\u05D5\u05E4\u05D9\u05E2\u05D9\u05DD \u05DB\u05D0\u05E9\u05E8 \u05D4\u05E2\u05DB\u05D1\u05E8 \u05DE\u05E8\u05D7\u05E3 \u05DE\u05E2\u05DC \u05D0\u05DC\u05DE\u05E0\u05D8\u05D9\u05DD \u05DE\u05E1\u05D5\u05D9\u05DE\u05D9\u05DD.", description: "" }, modhelperName: { message: "\u05DE\u05E1\u05D9\u05D9\u05E2 \u05DE\u05E0\u05D4\u05DC", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "\u05D4\u05E1\u05EA\u05E8 \u05D0\u05EA \u05DB\u05DC \u05EA\u05EA-\u05D4\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: '\u05E2\u05DC\u05D9\u05D9\u05DA \u05DC\u05E1\u05E4\u05E7 "$1" \u05D0\u05D5 "$2"', description: "" }, keyboardNavMoveUpTitle: { message: "\u05E2\u05DC\u05D4 \u05DC\u05DE\u05E2\u05DC\u05D4", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Open Quick Message", description: "" }, pageNavToTopTitle: { message: "To Top", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Scroll On Expando", description: "" }, userTaggerTag: { message: "Tag", description: "" }, userbarHiderToggleUserbar: { message: "\u05D0\u05E4\u05E9\u05E8/\u05D1\u05D8\u05DC \u05E9\u05D5\u05E8\u05EA \u05DE\u05E9\u05EA\u05DE\u05E9", description: "" }, nerReversePauseIconTitle: { message: "Reverse Pause Icon", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "\u05D4\u05E1\u05E8 \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05D6\u05D4 \u05DE\u05DC\u05D5\u05D7 \u05D4\u05DE\u05D7\u05D5\u05D5\u05E0\u05D9\u05DD \u05E9\u05DC\u05DA", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "\u05E2\u05E6\u05D1 \u05D4\u05D5\u05D0 \u05D4\u05E6\u05D2 \u05DE\u05D9\u05D3\u05E2 \u05E0\u05D5\u05E1\u05E3 \u05DC\u05D2\u05D1\u05D9 \u05D4\u05E6\u05D1\u05E2\u05D5\u05EA \u05D1\u05E4\u05E8\u05E1\u05D5\u05DE\u05D9\u05DD \u05D5\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "\u05DE\u05E0\u05D4\u05DC \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "\u05D4\u05E6\u05E2\u05D5\u05EA", description: "" }, keyboardNavSaveCommentTitle: { message: "Save Comment", description: "" }, nerPauseAfterEveryTitle: { message: "Pause After Every", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "\u05E9\u05D5\u05E8\u05EA \u05E4\u05E7\u05D5\u05D3\u05D5\u05EA \u05DC\u05E9\u05D9\u05D8\u05D5\u05D8 \u05D1\u05E8\u05D3\u05D9\u05D8, \u05D4\u05E4\u05E2\u05DC\u05EA/\u05DB\u05D9\u05D1\u05D5\u05D9 \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA RES, \u05D5\u05D3\u05D9\u05D1\u05D0\u05D2 \u05DC-RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "View the previous image of an inline gallery.", description: "" }, userInfoInvalidUsernameLink: { message: "\u05E7\u05D9\u05E9\u05D5\u05E8 \u05E9\u05DD \u05DE\u05E9\u05EA\u05DE\u05E9 \u05DC\u05D0 \u05EA\u05E7\u05D9\u05DF.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "\u05E8\u05D3 \u05DC\u05DE\u05D8\u05D4 \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA \u05E0\u05D5\u05D5\u05D8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Night Mode End", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "\u05D4\u05E8\u05D0\u05D4 \u05D0\u05EA \u05D4\u05EA\u05D0\u05E8\u05D9\u05DA \u05D1\u05D0\u05D9\u05D6\u05D5\u05E8 \u05D4\u05D6\u05DE\u05DF \u05D4\u05DE\u05E7\u05D5\u05DE\u05D9 \u05E9\u05DC\u05DA \u05DB\u05D0\u05E9\u05E8 \u05D4\u05E2\u05DB\u05D1\u05E8 \u05DE\u05E8\u05D7\u05E3 \u05DE\u05E2\u05DC \u05EA\u05D0\u05E8\u05D9\u05DA \u05D9\u05D7\u05E1\u05D9 \u05DB\u05DC\u05E9\u05D4\u05D5.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "\u05DC\u05D9\u05D1\u05D4", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "minimum comments", description: "" }, aboutOptionsCode: { message: "\u05EA\u05D5\u05DB\u05DC \u05DC\u05E9\u05E4\u05E8 \u05D0\u05EA RES \u05E2\u05DD \u05D4\u05E7\u05D5\u05D3, \u05E2\u05D9\u05E6\u05D5\u05D1 \u05D5\u05D4\u05E8\u05E2\u05D9\u05D5\u05E0\u05D5\u05EA \u05E9\u05DC\u05DA! RES \u05D4\u05D5\u05D0 \u05E4\u05E8\u05D5\u05D9\u05E7\u05D8 \u05E7\u05D5\u05D3 \u05E4\u05EA\u05D5\u05D7 \u05D1-GitHub.", description: "" }, commentNavDesc: { message: "\u05DE\u05E1\u05E4\u05E7 \u05DB\u05DC\u05D9 \u05DC\u05E0\u05D9\u05D5\u05D5\u05D8 \u05D1\u05D9\u05DF \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05E2\u05DC \u05DE\u05E0\u05EA \u05DC\u05DE\u05E6\u05D5\u05D0 \u05D1\u05E7\u05DC\u05D5\u05EA \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05E9\u05DC \u05DE\u05E4\u05E8\u05E1\u05DD \u05D4\u05E4\u05D5\u05E1\u05D8 (OP), \u05DE\u05E0\u05D4\u05DC \u05E7\u05D4\u05D9\u05DC\u05D4 (mod), \u05D5\u05DB\u05D5'.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Pressing Ctrl+Enter or Cmd+Enter will save updates to your live thread.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "\u05E1\u05D5\u05D5\u05D9\u05D8\u05EA \u05D4\u05E9\u05D3\u05E8\u05D5\u05D2\u05D9\u05DD \u05DC\u05E8\u05D3\u05D9\u05D8 \u05DE\u05D5\u05E4\u05E6\u05EA \u05EA\u05D7\u05EA \u05E8\u05D9\u05E9\u05D9\u05D5\u05DF GPL v3.0", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "\u05D0\u05E4\u05E9\u05E8 \u05D1\u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05D0\u05D9\u05E1\u05D5\u05E8", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Number of days before thread subscriptions expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?", description: "" }, styleTweaksToggleSubredditStyle: { message: "\u05D0\u05E4\u05E9\u05E8/\u05DB\u05D1\u05D4 \u05E1\u05D2\u05E0\u05D5\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, RESTipsDailyTipTitle: { message: "Daily Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "\u05DE\u05D5\u05E0\u05D4 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05D7\u05D3\u05E9\u05D5\u05EA", description: "" }, keyboardNavSlashAllDesc: { message: "Go to /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05D4\u05D5\u05E8\u05D9\u05DD", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "\u05E2\u05DE\u05D5\u05D3 \u05E8\u05D0\u05E9\u05D9", description: "" }, commentToolsCategory: { message: "\u05E7\u05D8\u05D2\u05D5\u05E8\u05D9\u05D4", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "\u05DB\u05D0\u05E9\u05E8 \u05D4\u05D9\u05E0\u05DA \u05DE\u05E8\u05D7\u05E3 \u05DE\u05E2\u05DC \u05DC\u05E0\u05D9\u05E7\u05D5\u05D3 \u05D7\u05D1\u05D5\u05D9\u05D4\u05E8\u05D0\u05D4 \u05DB\u05DE\u05D4 \u05D6\u05DE\u05DF \u05E0\u05E9\u05D0\u05E8 \u05D1\u05DE\u05E7\u05D5\u05DD \u05DC\u05D4\u05D7\u05D1\u05D9\u05D0 \u05DE\u05E9\u05DA.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Show the time that a text post/comment was edited, without having to hover over the timestamp.", description: "" }, aboutOptionsSearchSettings: { message: "\u05DE\u05E6\u05D0 \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA \u05D1-RES", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Next Gallery Image", description: "" }, styleTweaksSubredditStyleEnabled: { message: "\u05E1\u05D2\u05E0\u05D5\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05D0\u05D5\u05E4\u05E9\u05E8 \u05E2\u05D1\u05D5\u05E8: $1.", description: "" }, notificationsNeverSticky: { message: "never sticky", description: "" }, keyboardNavMoveDownDesc: { message: "\u05E8\u05D3 \u05DC\u05E7\u05D9\u05E9\u05D5\u05E8 \u05D4\u05D1\u05D0 \u05D0\u05D5 \u05D4\u05EA\u05D2\u05D5\u05D1\u05D4 \u05D4\u05D1\u05D0\u05D4 \u05D1\u05E8\u05E9\u05D9\u05DE\u05D5\u05EA \u05E9\u05D8\u05D5\u05D7\u05D5\u05EA", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Show the [-] collapse button in the inbox.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "\u05D4\u05D5\u05E1\u05E3 \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05D6\u05D4 \u05DC\u05E8\u05E9\u05D9\u05DE\u05EA \u05D4\u05E7\u05D9\u05E6\u05D5\u05E8\u05D9\u05DD", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "\u05D8\u05E2\u05DF \u05E1\u05D9\u05DE\u05E0\u05D9\u05D5\u05EA \u05D0\u05D7\u05E8\u05D5\u05EA", description: "" }, betteRedditVideoTimesTitle: { message: "\u05D6\u05DE\u05E0\u05D9 \u05E1\u05E8\u05D8\u05D5\u05DF", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "\u05DE\u05E8\u05D0\u05D4", description: "" }, userTaggerShowIgnoredDesc: { message: "Provide a link to reveal an ignored link or comment.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "\u05DE\u05E7\u05E9 \u05E0\u05D8\u05D5\u05D9", description: "" }, filteRedditUseRedditFiltersTitle: { message: "\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05DE\u05E1\u05E0\u05E0\u05D9 \u05E8\u05D3\u05D9\u05D8", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatically select the last thing you had selected", description: "" }, aboutOptionsPresetsTitle: { message: "\u05EA\u05D1\u05E0\u05D9\u05D5\u05EA", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Default depth to use for all subreddits not listed below.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Hide", description: "" }, aboutOptionsContributorsTitle: { message: "\u05EA\u05D5\u05E8\u05DE\u05D9\u05DD", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "\u05D0\u05E4\u05E9\u05E8/\u05D1\u05D8\u05DC \u05E2\u05D6\u05E8\u05D4", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "When following a link in new tab - focus the tab?", description: "" }, aboutOptionsFAQ: { message: "\u05DC\u05DE\u05D3 \u05E2\u05D5\u05D3 \u05E2\u05DC RES \u05D1\u05D5\u05D5\u05D9\u05E7\u05D9 \u05E9\u05DC /r/Enhancement", description: "" }, betteRedditPinHeaderDesc: { message: "Pin the subreddit bar, user menu, or header to top, floating down as you scroll.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "\u05E8\u05D0\u05D4 \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05D2\u05E8\u05E1\u05D0 \u05D7\u05D3\u05E9\u05D4 \u05D1\u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D9\u05EA \u05E8\u05E7\u05E2", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Show the precise date in the sidebar.", description: "" }, keyboardNavUpVoteDesc: { message: "Upvote selected link or comment (or remove the upvote).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Go to subreddit of selected link (link pages only).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "\u05D4\u05D9\u05E9\u05D0\u05E8 \u05DE\u05D7\u05D5\u05D1\u05E8 \u05DB\u05E9\u05D0\u05E0\u05D9 \u05DE\u05D0\u05EA\u05D7\u05DC \u05D0\u05EA \u05D4\u05D3\u05E4\u05D3\u05E4\u05DF \u05E9\u05DC\u05D9.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "\u05D0\u05E4\u05E9\u05E8/\u05DB\u05D1\u05D4 \u05D0\u05E7\u05E1\u05E4\u05E0\u05D3\u05D5 (\u05EA\u05DE\u05D5\u05E0\u05D4/\u05D8\u05E7\u05E1\u05D8/\u05D5\u05D9\u05D3\u05D0\u05D5)", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "View comments for link in a new tab.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "\u05D2\u05D9\u05D1\u05D5\u05D9", description: "" }, profileNavigatorHoverDelayDesc: { message: "\u05D0\u05D9\u05D7\u05D5\u05E8, \u05D1\u05DE\u05D9\u05DC\u05D9 \u05E9\u05E0\u05D9\u05D5\u05EA, \u05DC\u05E4\u05E0\u05D9 \u05E9\u05EA\u05E4\u05E8\u05D9\u05D8 \u05D4\u05E2\u05D6\u05E8 \u05D1\u05E8\u05D9\u05D7\u05D5\u05E3 \u05E0\u05D8\u05E2\u05DF.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES \u05DE\u05D0\u05E4\u05E9\u05E8 \u05DC\u05DA \u05DC\u05DB\u05D1\u05D5\u05EA \u05E1\u05D2\u05E0\u05D5\u05E0\u05D5\u05EA \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05DE\u05E1\u05D5\u05D9\u05DE\u05D9\u05DD", description: "" }, customTogglesDesc: { message: "\u05D4\u05D2\u05D3\u05E8 \u05DE\u05EA\u05D2\u05D9 \u05DB\u05D9\u05D1\u05D5\u05D9/\u05D4\u05E4\u05E2\u05DC\u05D4 \u05DC\u05D7\u05DC\u05E7\u05D9\u05DD \u05E9\u05D5\u05E0\u05D9\u05DD \u05D1-RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "\u05DE\u05E4\u05E8\u05DE\u05D8 \u05DC\u05D7\u05E6\u05E0\u05D9 \u05DB\u05DC\u05D9\u05DD", description: "" }, commentPreviewEnableForWikiDesc: { message: "Show preview for wiki pages.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Image Move Up", description: "" }, settingsNavDesc: { message: "\u05DE\u05E1\u05D9\u05D9\u05E2 \u05DC\u05E9\u05D5\u05D8\u05D8 \u05D1\u05E7\u05D5\u05E0\u05E1\u05D5\u05DC\u05EA \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA RES \u05D1\u05E7\u05DC\u05D9\u05DC\u05D5\u05EA", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "\u05DE\u05D5\u05D8\u05D8 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05D1\u05EA\u05D9\u05D1\u05EA \u05D3\u05D5\u05D0\u05E8", description: "" }, usernameHiderName: { message: "\u05DE\u05E1\u05EA\u05D9\u05E8 \u05E9\u05DD \u05DE\u05E9\u05EA\u05DE\u05E9", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "enabled", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "\u05DB\u05DC\u05D9 \u05D8\u05D1\u05DC\u05D4", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "\u05DE\u05E9\u05EA\u05DE\u05E9 \u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "\u05E7\u05E6\u05E8 \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD \u05D0\u05E8\u05D5\u05DB\u05D9\u05DD", description: "" }, keyboardNavToggleCmdLineDesc: { message: "\u05D4\u05E4\u05E2\u05DC \u05E9\u05D5\u05E8\u05D5\u05EA \u05E4\u05E7\u05D5\u05D3\u05D5\u05EA \u05E2\u05D1\u05D5\u05E8 RES", description: "" }, nerHideDupesDontHide: { message: "Do not hide", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "your votes for $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Add macro buttons to the edit form for posts, comments, and other snudown/markdown text areas.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Move the image(s) in the highlighted post area right.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "\u05E1\u05E0\u05D5 (\u05D7\u05D9\u05D9\u05D6\u05E8)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "\u05E4\u05EA\u05D7 \u05E2\u05D5\u05E8\u05DA \u05D2\u05D3\u05D5\u05DC", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height", description: "" }, pageNavShowLinkNewTabTitle: { message: "Show Link New Tab", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Non-linear Scroll Style", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Open the current markdown field in the big editor. (Only when a markdown form is focused).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Set depth on links to particular comments with context.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC\u05E2\u05DE\u05D5\u05D3 \u05D4\u05E8\u05D0\u05E9\u05D9 \u05E9\u05DC \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8", description: "" }, menuName: { message: "\u05EA\u05E4\u05E8\u05D9\u05D8 RES", description: "" }, messageMenuDesc: { message: "\u05E8\u05D7\u05E3 \u05DE\u05E2\u05DC \u05E1\u05DE\u05DC \u05D4\u05D3\u05D5\u05D0\u05E8 \u05E2\u05DC \u05DE\u05E0\u05EA \u05DC\u05D2\u05E9\u05EA \u05DC\u05E1\u05D5\u05D2\u05D9 \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05E9\u05D5\u05E0\u05D9\u05DD \u05D0\u05D5 \u05E2\u05DC \u05DE\u05E0\u05EA \u05DC\u05DB\u05EA\u05D5\u05D1 \u05D4\u05D5\u05D3\u05E2\u05D4 \u05D7\u05D3\u05E9\u05D4.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Play a transition when you open and close tabs.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "After hiding a link, automatically select the next link.", description: "" }, commentStyleDesc: { message: "\u05DE\u05D5\u05E1\u05D9\u05E3 \u05E9\u05D9\u05E4\u05D5\u05E8\u05D9 \u05E7\u05E8\u05D9\u05D0\u05D5\u05EA \u05DC\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, keyboardNavRandomDesc: { message: "\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC\u05E1\u05D0\u05D1\u05E8\u05D3\u05D9\u05D8 \u05D0\u05E7\u05E8\u05D0\u05D9", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "\u05DE\u05D2\u05D9\u05D1 \u05EA\u05D7\u05EA", description: "" }, keyboardNavImageSizeUpDesc: { message: "Increase the size of image(s) in the highlighted post area.", description: "" }, floaterDesc: { message: "\u05E0\u05D4\u05DC \u05D0\u05DC\u05DE\u05E0\u05D8\u05D9\u05DD \u05DC\u05D0 \u05DE\u05E2\u05D5\u05D2\u05E0\u05D9\u05DD \u05E9\u05DC RES.", description: "" }, subredditManDesc: { message: "\u05DE\u05D0\u05E4\u05E9\u05E8 \u05DC\u05DA \u05DC\u05D4\u05EA\u05D0\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05EA \u05D0\u05EA \u05D4\u05E9\u05D5\u05E8\u05D4 \u05D4\u05E2\u05DC\u05D9\u05D5\u05E0\u05D4 \u05E2\u05DD \u05E7\u05D9\u05E6\u05D5\u05E8\u05D9 \u05EA\u05EA \u05E8\u05D3\u05D9\u05D8 \u05DE\u05E9\u05DC\u05DA \u05D4\u05DB\u05D5\u05DC\u05DC\u05D9\u05DD \u05EA\u05E4\u05E8\u05D9\u05D8\u05D9\u05DD \u05D9\u05D5\u05E7\u05D3\u05D9\u05DD \u05E9\u05DC \u05DE\u05D5\u05DC\u05D8\u05D9\u05E8\u05D3\u05D9\u05D8\u05D9\u05DD \u05D5\u05E2\u05D5\u05D3.", description: "" }, keyboardNavSavePostDesc: { message: "Save the current post to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "\u05D0\u05E4\u05E9\u05E8 \u05E2\u05D5\u05E8\u05DA \u05D2\u05D3\u05D5\u05DC", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "\u05D4\u05D5\u05D3\u05E2\u05EA \u05E2\u05D3\u05DB\u05D5\u05DF \u05D1\u05D8\u05D0", description: "" }, announcementsDesc: { message: "\u05D4\u05D9\u05E9\u05D0\u05E8 \u05DE\u05E2\u05D5\u05D3\u05DB\u05DF \u05D1\u05D7\u05D3\u05E9\u05D5\u05EA \u05D7\u05E9\u05D5\u05D1\u05D5\u05EA", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "\u05D4\u05D5\u05E1\u05E3 \u05E9\u05D5\u05E8\u05D4", description: "" }, keyboardNavReplyDesc: { message: "Reply to current comment (comment pages only).", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "\u05D4\u05D5\u05D3\u05E2\u05D5\u05EA RES", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "View comments for link (shift opens them in a new tab).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Show the markdown live preview directly in the sidebar when editing.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "\u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D9\u05EA \u05E4\u05E8\u05D5\u05E4\u05D9\u05DC \u05D7\u05D3\u05E9\u05D4", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Follow Link And Comments New Tab", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "\u05E0\u05D9\u05D5\u05D5\u05D8 \u05DE\u05D5\u05DC\u05D8\u05D9\u05E8\u05D3\u05D9\u05D8", description: "" }, keyboardNavToggleExpandoTitle: { message: "\u05D0\u05E4\u05E9\u05E8/\u05DB\u05D1\u05D4 \u05D0\u05E7\u05E1\u05E4\u05E0\u05D3\u05D5", description: "" }, showKarmaName: { message: "\u05D4\u05E6\u05D2 \u05E7\u05D0\u05E8\u05DE\u05D4", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "\u05D4\u05E9\u05DC\u05DE\u05D4 \u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9\u05EA \u05E9\u05DC \u05D4\u05E1\u05D0\u05D1\u05E8\u05D3\u05D9\u05D8", description: "" }, settingsNavName: { message: "\u05E0\u05D5\u05D5\u05D8 \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA RES", description: "" }, contributeName: { message: "\u05EA\u05E8\u05D5\u05DD \u05D5\u05E2\u05D6\u05D5\u05E8", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Disable Comment Textarea", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Set depth on links to particular comments.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "\u05D4\u05E6\u05D2 \u05EA\u05E4\u05E8\u05D9\u05D8 \u05E9\u05DE\u05E7\u05E9\u05E8 \u05DC\u05D7\u05DC\u05E7\u05D9\u05DD \u05E9\u05D5\u05E0\u05D9\u05DD \u05E9\u05DC \u05D4\u05E4\u05E8\u05D5\u05E4\u05D9\u05DC \u05E9\u05DC \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05D4\u05E0\u05D5\u05DB\u05D7\u05D9 \u05DB\u05D0\u05E9\u05E8 \u05D0\u05EA\u05D4 \u05E9\u05DD \u05D0\u05EA \u05D4\u05E2\u05DB\u05D1\u05E8 \u05DE\u05E2\u05DC \u05D4\u05E7\u05D9\u05E9\u05D5\u05E8 \u05E9\u05DC \u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05D1\u05E4\u05D9\u05E0\u05D4 \u05D4\u05D9\u05DE\u05E0\u05D9\u05EA \u05D4\u05E2\u05DC\u05D9\u05D5\u05E0\u05D4.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "\u05DB\u05DC\u05D9 \u05E2\u05E8\u05D9\u05DB\u05D4", description: "" }, accountSwitcherAccountsDesc: { message: "\u05D9\u05E9 \u05DC\u05D4\u05D6\u05D9\u05DF \u05D0\u05EA \u05E1\u05E1\u05D9\u05DE\u05D0\u05D5\u05EA\u05D9\u05DA \u05D5\u05E9\u05DE\u05D5\u05EA\u05BE\u05D4\u05DE\u05E9\u05EA\u05DE\u05E9 \u05E9\u05DC\u05DA \u05DC\u05D4\u05DC\u05DF. \u05D4\u05DD \u05D9\u05D0\u05D5\u05D7\u05E1\u05E0\u05D5 \u05E8\u05E7 \u05D1\u05D4\u05D2\u05D3\u05E8\u05D5\u05EA RES.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "When filtering subreddits with the above option, where should they be filtered?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "\u05EA\u05E6\u05D5\u05D2\u05D4 \u05DE\u05E7\u05D3\u05D9\u05DE\u05D4 \u05D7\u05D9\u05D4", description: "" }, hoverOpenDelayDesc: { message: "\u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC \u05E9\u05DC \u05D4\u05D6\u05DE\u05DF \u05D1\u05D9\u05DF \u05E8\u05D9\u05D7\u05D5\u05E3 \u05D4\u05E2\u05DB\u05D1\u05E8 \u05DC\u05D4\u05E6\u05D2\u05EA \u05D4\u05D4\u05D5\u05D3\u05E2\u05D4", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color of the bar when collapsed.", description: "" }, announcementsName: { message: "\u05D4\u05D5\u05D3\u05E2\u05D5\u05EA RES", description: "" }, betteRedditVideoViewedDesc: { message: "Show number of views for a video when possible.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "\u05E2\u05DC\u05D4 \u05DC\u05EA\u05D2\u05D5\u05D1\u05D4 \u05D4\u05E2\u05DC\u05D9\u05D5\u05E0\u05D4", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "reload", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, notificationsNotificationID: { message: "notification ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "\u05D4\u05E8\u05D0\u05D4 \u05DE\u05E7\u05D5\u05E8 \u05DE\u05D4\u05D3\u05E8", description: "" }, keyboardNavInboxDesc: { message: "\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC\u05EA\u05D9\u05D1\u05EA \u05D4\u05D3\u05D5\u05D0\u05E8", description: "" }, gfycatUseMobileGfycatDesc: { message: "Use mobile (lower resolution) gifs from gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Toggle View Images", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "\u05D2\u05D1\u05D4 \u05D5\u05E9\u05D7\u05D6\u05E8 \u05D0\u05EA \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA RES \u05E9\u05DC\u05DA", description: "" }, showParentDesc: { message: "\u05DE\u05E6\u05D9\u05D2 \u05D0\u05EA \u05EA\u05D2\u05D5\u05D1\u05EA \u05D4\u05D0\u05DD \u05DB\u05D0\u05E9\u05E8 \u05DE\u05E8\u05D7\u05E4\u05D9\u05DD \u05E2\u05DD \u05D4\u05E2\u05DB\u05D1\u05E8 \u05DE\u05E2\u05DC \u05E7\u05D9\u05E9\u05D5\u05E8 'parent' \u05E9\u05DC \u05EA\u05D2\u05D5\u05D1\u05D4.", description: "" }, keyboardNavImageSizeDownDesc: { message: "Decrease the size of image(s) in the highlighted post area.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05D0\u05D5\u05E8\u05DA \u05E7\u05DC\u05D8", description: "" }, keyboardNavSaveRESDesc: { message: "Save the current comment with RES. This does preserve the original text of the comment, but is only saved locally.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "\u05D1\u05D4\u05E9\u05E8\u05D0\u05EA \u05DE\u05D5\u05D3\u05D5\u05DC\u05D9\u05DD \u05DB\u05DE\u05D5 \u05E0\u05D4\u05E8\u05D3\u05D9\u05D8 (River of Reddit) \u05D5\u05D3\u05E3-\u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9 (Auto Pager) - \u05DE\u05D0\u05E4\u05E9\u05E8 \u05DC\u05DA \u05D6\u05E8\u05DD \u05D1\u05DC\u05EA\u05D9 \u05E4\u05D5\u05E1\u05E7 \u05E9\u05DC \u05DB\u05DC \u05D4\u05D8\u05D5\u05D1 \u05D4\u05D0\u05E4\u05E9\u05E8\u05D9 \u05E9\u05DC \u05E8\u05D3\u05D9\u05D8.", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "Don't filter anything on users' profile pages.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES \u05E9\u05DD \u05DC\u05D1 \u05E9\u05DB\u05DC \u05D4\u05E4\u05D5\u05E1\u05D8\u05D9\u05DD \u05D7\u05D1\u05D5\u05D9\u05D9\u05DD. \u05DC\u05D7\u05E5 \u05E2\u05DC \u05D4\u05DC\u05D7\u05E6\u05DF \u05DE\u05EA\u05D7\u05EA \u05D1\u05DB\u05D3\u05D9 \u05DC\u05E8\u05D0\u05D5\u05EA \u05D0\u05D9\u05DC\u05D5 \u05E4\u05D5\u05E1\u05D8\u05D9\u05DD \u05E1\u05D5\u05E0\u05E0\u05D5.", description: "" }, backupAndRestoreRestoreTitle: { message: "\u05E9\u05D7\u05D6\u05D5\u05E8", description: "" }, logoLinkCustom: { message: "\u05DE\u05D5\u05EA\u05D0\u05DD \u05D0\u05D9\u05E9\u05D9\u05EA", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Enable or disable everything connected to this toggle; and optionally add a toggle to the RES gear dropdown menu.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Show comment continuity lines.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "\u05D4\u05E4\u05E1\u05E7 \u05E1\u05D9\u05E0\u05D5\u05DF \u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05D6\u05D4 \u05DEr/all \u05D5/domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "\u05E4\u05E8\u05E1\u05D5\u05DE\u05D9 \u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC", description: "" }, contextViewFullContextTitle: { message: "\u05E8\u05D0\u05D4 \u05D4\u05E7\u05E9\u05E8 \u05DE\u05DC\u05D0", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "\u05E4\u05E8\u05D8\u05D9\u05D5\u05EA", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "\u05DE\u05D5\u05E1\u05D9\u05E3 \u05DB\u05DC\u05D9 \u05DC\u05D4\u05E6\u05D2\u05EA \u05D4\u05D8\u05E7\u05E1\u05D8 \u05D4\u05DE\u05E7\u05D5\u05E8\u05D9 \u05E9\u05DC \u05E4\u05D5\u05E1\u05D8\u05D9\u05DD \u05D5\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA, \u05DC\u05E4\u05E0\u05D9 \u05E9\u05E8\u05D3\u05D9\u05D8 \u05E2\u05D5\u05E8\u05DA \u05D0\u05EA \u05D4\u05E4\u05D5\u05E8\u05DE\u05D8 \u05E9\u05DC \u05D4\u05D8\u05E7\u05E1\u05D8.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "\u05E8\u05D3 \u05DC\u05EA\u05D2\u05D5\u05D1\u05D4 \u05D4\u05D1\u05D0\u05D4 \u05D1\u05E2\u05DE\u05D5\u05D3\u05D9 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA \u05DE\u05D5\u05E9\u05D7\u05DC\u05D9\u05DD", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "\u05DE\u05E1\u05E4\u05E7 \u05DB\u05DC\u05D9\u05DD \u05D0\u05E9\u05E8 \u05E2\u05D5\u05D6\u05E8\u05D9\u05DD \u05D1\u05D4\u05D2\u05E9\u05EA \u05E4\u05D5\u05E1\u05D8", description: "" }, hideChildCommentsAutomaticTitle: { message: "\u05D0\u05D5\u05D8\u05D5\u05DE\u05D8\u05D9", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separator", description: "" }, onboardingUpdateNotificationDescription: { message: "\u05E9\u05D9\u05D8\u05EA \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA \u05DC\u05E2\u05D3\u05DB\u05D5\u05E0\u05D9\u05DD \u05D2\u05D3\u05D5\u05DC\u05D9\u05DD/\u05E7\u05D8\u05E0\u05D9\u05DD", description: "" }, hoverFadeDelayDesc: { message: "\u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC \u05E9\u05DC \u05D3\u05E2\u05D9\u05DB\u05EA \u05D4\u05D4\u05D5\u05D3\u05E2\u05D4 \u05DC\u05D0\u05D7\u05E8 \u05D4\u05D6\u05D6\u05EA \u05D4\u05E2\u05DB\u05D1\u05E8", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "\u05DE\u05D9\u05E7\u05D5\u05DD \u05DE\u05E2\u05D1\u05E8 \u05D1\u05DC\u05D7\u05D9\u05E6\u05D4 \u05E2\u05DC \u05E1\u05DE\u05DC \u05E8\u05D3\u05D9\u05D8", description: "" }, settingsConsoleName: { message: "\u05E7\u05D5\u05E0\u05E1\u05D5\u05DC\u05EA \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Subreddit-specific comment depths.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC\u05D3\u05D5\u05D0\u05E8 \u05DE\u05D5\u05D3\u05D9\u05DD", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "Default sort method for new widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "\u05DC\u05D0\u05D7\u05E8 \u05D4\u05D7\u05DC\u05E4\u05EA \u05D7\u05E9\u05D1\u05D5\u05DF, \u05D8\u05E2\u05DF \u05DE\u05D7\u05D3\u05E9 \u05D0\u05EA \u05E9\u05D0\u05E8 \u05D4\u05DB\u05E8\u05D8\u05D9\u05D5\u05EA.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "\u05E9\u05D9\u05D8\u05EA \u05D4\u05D5\u05D3\u05E2\u05D4 \u05DC\u05E2\u05D3\u05DB\u05D5\u05E0\u05D9 \u05EA\u05D9\u05E7\u05D5\u05DF", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "\u05DE\u05D5\u05E4\u05E2\u05DC", description: "" }, nightModeColoredLinksTitle: { message: "Colored Links", description: "" }, modhelperDesc: { message: "\u05DE\u05E1\u05D9\u05D9\u05E2 \u05DC\u05DE\u05E0\u05D4\u05DC\u05D9 \u05E7\u05D4\u05D9\u05DC\u05D5\u05EA \u05D1\u05D0\u05DE\u05E6\u05E2\u05D5\u05EA \u05D8\u05D9\u05E4\u05D9\u05DD \u05D5\u05D8\u05E8\u05D9\u05E7\u05D9\u05DD \u05DB\u05D3\u05D9 \u05DC\u05D4\u05E1\u05EA\u05D3\u05E8 \u05E2\u05DD RES.", description: "" }, quickMessageName: { message: "\u05D4\u05D5\u05D3\u05E2\u05D4 \u05DE\u05D4\u05D9\u05E8\u05D4", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Enable this feature again", description: "" }, userHighlightDesc: { message: '\u05DE\u05D3\u05D2\u05D9\u05E9 \u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD \u05DE\u05E1\u05D5\u05D9\u05DE\u05D9\u05DD \u05D1\u05EA\u05D2\u05D5\u05D1\u05D5\u05EA: \u05D9\u05D5\u05E6\u05E8 \u05D4\u05E4\u05D5\u05E1\u05D8, \u05D0\u05D3\u05DE\u05D9\u05DF, \u05D7\u05D1\u05E8\u05D9\u05DD, \u05DE\u05E0\u05D4\u05DC \u05E7\u05D4\u05D9\u05DC\u05D4 - \u05E0\u05D5\u05E6\u05E8 \u05E2"\u05D9 MrDerk', description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Scroll window to top of link when expando key is used (to keep pics etc in view).", description: "" }, profileNavigatorFadeDelayDesc: { message: "\u05D0\u05D9\u05D7\u05D5\u05E8, \u05D1\u05DE\u05D9\u05DC\u05D9 \u05E9\u05E0\u05D9\u05D5\u05EA, \u05DC\u05E4\u05E0\u05D9 \u05E9\u05EA\u05E4\u05E8\u05D9\u05D8 \u05D4\u05E2\u05D6\u05E8 \u05D1\u05E8\u05D9\u05D7\u05D5\u05E3 \u05DE\u05EA\u05E2\u05DE\u05E2\u05DD \u05D5\u05E0\u05E2\u05DC\u05DD.", description: "" }, userInfoAddRemoveFriends: { message: "$1 \u05D7\u05D1\u05E8\u05D9\u05DD", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups", description: "" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "\u05EA\u05E4\u05E8\u05D9\u05D8 \u05D4\u05D5\u05D3\u05E2\u05D5\u05EA", description: "" }, aboutOptionsSuggestions: { message: "\u05D0\u05DD \u05D9\u05E9 \u05DC\u05DA \u05E8\u05E2\u05D9\u05D5\u05DF \u05E2\u05D1\u05D5\u05E8 RES, \u05D0\u05D5 \u05E9\u05EA\u05E8\u05E6\u05D4 \u05DC\u05E9\u05D5\u05D7\u05D7 \u05E2\u05DD \u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD \u05D0\u05D7\u05E8\u05D9\u05DD, \u05D1\u05E7\u05E8 \u05D1- /r/Enhancement.", description: "" }, userbarHiderName: { message: "\u05DE\u05D7\u05D1\u05D9\u05D0 \u05E9\u05D5\u05E8\u05EA \u05DE\u05E9\u05EA\u05DE\u05E9", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "When jumping to a entry (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), when and how should RES scroll the window?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "\u05DB\u05DC \u05D4\u05DE\u05D8\u05DE\u05D5\u05E0\u05D9\u05DD \u05E8\u05D5\u05E7\u05E0\u05D5", description: "" }, localDateName: { message: "\u05EA\u05D0\u05E8\u05D9\u05DA \u05DE\u05E7\u05D5\u05DE\u05D9", description: "" }, commentStyleCommentRoundedDesc: { message: "Round corners of comment boxes.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "\u05D4\u05E9\u05EA\u05DE\u05E9 \u05D1\u05DE\u05E6\u05D1 \u05E4\u05E2\u05D9\u05DC", description: "" }, messageMenuLabel: { message: "\u05EA\u05D5\u05D5\u05D9", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05E9\u05DD \u05DE\u05E9\u05EA\u05DE\u05E9 \u05E0\u05D5\u05DB\u05D7\u05D9", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "\u05E1\u05E0\u05DF", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Show Unread Count In Title", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "\u05EA\u05E7\u05D3\u05D9\u05DD \u05E9\u05D5\u05E8\u05EA \u05E6\u05D3", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Follow Subreddit New Tab", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Show user autocomplete tool when typing in posts, comments, and replies.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Add a quick NSFW on/off toggle to the gear menu.", description: "" }, subredditInfoSubscribe: { message: "\u05D4\u05D9\u05E8\u05E9\u05DD", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Downvote selected link or comment (or remove the downvote).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter \u05E9\u05D5\u05DC\u05D7 \u05EA\u05D2\u05D5\u05D1\u05D5\u05EA", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter \u05E9\u05D5\u05DC\u05D7 \u05E4\u05D5\u05E1\u05D8\u05D9\u05DD", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "\u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05E0\u05D5\u05E6\u05E8:", description: "" }, multiredditNavbarLabel: { message: "label", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "\u05E2\u05D9\u05DB\u05D5\u05D1 \u05E8\u05D9\u05D7\u05D5\u05E3", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Show preview for ban notes.", description: "" }, usersCategory: { message: "\u05DE\u05E9\u05EA\u05DE\u05E9\u05D9\u05DD", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Color links blue and purple.", description: "" }, subredditInfoSubredditNotFound: { message: "\u05EA\u05EA\u05E8\u05D3\u05D9\u05D8 \u05DC\u05D0 \u05E0\u05DE\u05E6\u05D0", description: "" }, logoLinkCustomDestinationDesc: { message: "\u05D0\u05DD \u05D9\u05E2\u05D3 \u05E1\u05DE\u05DC \u05E8\u05D3\u05D9\u05D8 \u05DE\u05D5\u05EA\u05D0\u05DD \u05D0\u05D9\u05E9\u05D9\u05EA, \u05E7\u05D9\u05E9\u05D5\u05E8 \u05DB\u05D0\u05DF", description: "" }, resTipsName: { message: "\u05D8\u05D9\u05E4\u05D9\u05DD \u05D5\u05D8\u05E8\u05D9\u05E7\u05D9\u05DD \u05D1-RES", description: "" }, keyboardNavToggleCmdLineTitle: { message: "\u05D0\u05E4\u05E9\u05E8/\u05D1\u05D8\u05DC \u05E9\u05D5\u05E8\u05EA \u05E4\u05E7\u05D5\u05D3\u05D5\u05EA", description: "" }, contextName: { message: "\u05D4\u05E7\u05E9\u05E8", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: "\u05E4\u05E2\u05D5\u05DC\u05D4 \u05D6\u05D0\u05EA \u05EA\u05DE\u05D7\u05E7 \u05D0\u05EA \u05DB\u05DC \u05D4\u05D2\u05D3\u05E8\u05D5\u05EA\u05D9\u05DA \u05D5\u05D4\u05DE\u05D9\u05D3\u05E2 \u05E9\u05DC\u05DA. \u05D0\u05DD \u05D4\u05D9\u05E0\u05DA \u05D1\u05D8\u05D5\u05D7, \u05DB\u05EA\u05D5\u05D1 $1", description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "\u05DE\u05E9\u05EA\u05DE\u05E9 \u05DE\u05D5\u05E9\u05D4\u05D4", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "\u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "\u05E2\u05DC\u05D4 \u05DC\u05E8\u05D0\u05E9 \u05D4\u05E8\u05E9\u05D9\u05DE\u05D4 (\u05D1\u05D3\u05E4\u05D9 \u05E7\u05D9\u05E9\u05D5\u05E8\u05D9\u05DD)", description: "" }, contextDefaultContextTitle: { message: "\u05D4\u05E7\u05E9\u05E8 \u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC", description: "" }, userTaggerTagUserAs: { message: "tag user $1 as: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "\u05E2\u05D1\u05D5\u05E8 \u05D0\u05D7 \u05D0\u05D7\u05D3 \u05DC\u05DE\u05D8\u05D4", description: "" }, customTogglesName: { message: "\u05DE\u05EA\u05D2\u05D9\u05DD \u05DE\u05D5\u05EA\u05D0\u05D9\u05DD \u05D0\u05D9\u05E9\u05D9\u05EA", description: "" }, pageNavShowLinkTitle: { message: "Show Link", description: "" }, keyboardNavProfileNewTabDesc: { message: "\u05D4\u05D9\u05DB\u05E0\u05E1 \u05DC\u05E4\u05E8\u05D5\u05E4\u05D9\u05DC \u05D1\u05DB\u05E8\u05D8\u05D9\u05E1\u05D9\u05D9\u05D4 \u05D7\u05D3\u05E9\u05D4", description: "" }, aboutCategory: { message: "\u05D0\u05D5\u05D3\u05D5\u05EA RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "\u05EA\u05DF \u05D6\u05D4\u05D1 \u05E8\u05D3\u05D9\u05D8 \u05DB\u05DE\u05EA\u05E0\u05D4", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restore a backup of your RES settings.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Show preview for comments.", description: "" }, spamButtonName: { message: "\u05DB\u05E4\u05EA\u05D5\u05E8 \u05E1\u05E4\u05D0\u05DD", description: "" }, hoverInstancesTitle: { message: "\u05DE\u05E7\u05E8\u05D9\u05DD", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colors couldn't be generated. This is probably due to the use of colors in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Use keyboard shortcuts to apply styles to selected text.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Automatically hide search options and suggestions on the search page.", description: "" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions.", description: "" }, logoLinkDashboard: { message: "\u05DC\u05D5\u05D7 \u05DE\u05DB\u05D5\u05D5\u05E0\u05D9\u05DD", description: "" }, dashboardDashboardShortcutDesc: { message: "\u05D4\u05E8\u05D0\u05D4 \u05E7\u05D9\u05E6\u05D5\u05E8\u05D9\u05DD \u05DC\u05DC\u05D5\u05D7 \u05DE\u05D7\u05D5\u05D5\u05E0\u05D9\u05DD \u05D1\u05E1\u05D9\u05D9\u05D3\u05D1\u05E8 \u05E2\u05D1\u05D5\u05E8\u05E2\u05D1\u05D5\u05E8 \u05EA\u05D5\u05E1\u05E4\u05EA \u05E4\u05E9\u05D5\u05D8\u05D4 \u05E9\u05DC \u05D5\u05D5\u05D9\u05D3\u05D2'\u05D8\u05D9\u05DD.", description: "" }, userInfoName: { message: "\u05DE\u05D9\u05D3\u05E2 \u05D0\u05D5\u05D3\u05D5\u05EA \u05DE\u05E9\u05EA\u05DE\u05E9", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Width of the bar.", description: "" }, filteRedditDomainsTitle: { message: "\u05EA\u05D7\u05D5\u05DE\u05D9\u05DD", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Hide Mod Mail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "\u05E4\u05EA\u05D7 \u05E2\u05DC \u05DE\u05E9\u05EA\u05DE\u05E9 \u05DE\u05D5\u05D3\u05D2\u05E9", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "\u05E7\u05E8\u05D0 \u05D0\u05D5\u05D3\u05D5\u05EA \u05DE\u05D3\u05D9\u05E0\u05D9\u05D5\u05EA \u05D4\u05E4\u05E8\u05D8\u05D9\u05D5\u05EA \u05E9\u05DC RES.", description: "" }, commentStyleContinuityTitle: { message: "\u05D4\u05DE\u05E9\u05DB\u05D9\u05D5\u05EA", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Show details of each account in the Account Switcher, such as karma or gold status.", description: "" }, browsingCategory: { message: "\u05D2\u05DC\u05D9\u05E9\u05D4", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Are you sure you want to delete the tag for user: $1?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "\u05E8\u05D3 \u05EA\u05E8\u05D3 \u05D0\u05D7\u05D3 \u05DC\u05DE\u05D8\u05D4", description: "" }, keyboardNavInboxTitle: { message: "\u05EA\u05D9\u05D1\u05EA \u05D3\u05D5\u05D0\u05E8", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "\u05D1\u05D8\u05DC \u05D4\u05D3\u05D2\u05E9\u05D4", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "\u05D4\u05E8\u05D0\u05D4 \u05DB\u05D1\u05E8\u05D9\u05E8\u05EA \u05DE\u05D7\u05D3\u05DC", description: "" } }; // locales/locales/it.json var it_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Display Comment Navigator when a user is highlighted.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Mostra una data precisa per i commenti e per i messaggi.", description: "" }, commentPrevDesc: { message: "Fornisce un'anteprima in tempo reale per la modifica dei commenti, invio di testo, pagine wiki, e altre aree di testo markdown; oltre ad un editor su due colonne per scrivere testi molto lunghi.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Scambia l'anteprima e l'editor (l'anteprima va a sinistra e l'editor a destra)", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Move Down Comment", description: "" }, troubleshooterBreakpointDesc: { message: "Metti in pausa l'esecuzione di JavaScript per permettere il debugging", description: "" }, dashboardMenuItemDesc: { message: "Mostra i link alla mia Dashboard nel men\xF9 di RES.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "L'utente ha il Reddit Gold", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Move Up Sibling", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Indenta Commento", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Turn off all the RES modules", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Mostra una data precisa nei log di moderazione (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Casuale", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Follow Comments New Tab", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "disiscriviti", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "Messaggi non letti", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Mostra in grassetto post e punteggi dei commenti, rendendoli pi\xF9 facili da trovare.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Show a random tip once every 24 hours.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Parole chiave", description: "" }, filteRedditAllowNSFWTitle: { message: "Consenti NSFW", description: "" }, hoverOpenDelayTitle: { message: "Ritardo di Apertura", description: "" }, keyboardNavNextPageTitle: { message: "Pagina Successiva", description: "" }, commentToolsSuperKeyTitle: { message: "Super Key", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Destinazione Personalizzata", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Comment Permalinks Context", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Ripristina Scheda Salvata", description: "" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Fade or completely hide duplicate posts already showing on the page.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "User Tagger", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Comment Navigator Move Down", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Aggiunge un pulsante per nascondere le opzioni di ricerca mentre si cerca qualcosa.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Move up using Comment Navigator.", description: "" }, accountSwitcherDropDownStyleDesc: { message: `Usare l'icona "snoo", o stili dropdown pi\xF9 vecchi?`, description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Keep Macro List Open", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Toggle Comment Navigator", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Scorciatoie da Tastiera.", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Follow link in new tab (link pages only).", description: "" }, onboardingDesc: { message: "Trova informazioni su RES a /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "Filtri NSFW", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Ritardo della Dissolvenza", description: "" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsLinkKeyTitle: { message: "Link Key", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+aggiungi collegamento", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "Subreddit Front Page", description: "" }, keyboardNavFollowSubredditTitle: { message: "Segui Subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Mostra Gold", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolazione del colore del punteggio", description: "" }, stylesheetName: { message: "Stylesheet Loader", description: "" }, subredditInfoOver18: { message: "Per maggiorenni 18+:", description: "" }, userInfoIgnore: { message: "Ignora", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "Oggetti del Menu", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "Are you positive?", description: "" }, messageMenuAddShortcut: { message: "+aggiungi collegamento", description: "" }, troubleshooterName: { message: "Risoluzione problemi", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Inbox New Tab", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "Dopo aver votato un link, seleziona automaticamente il prossimo link.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "RES Welcome Wagon", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Stop filtering from /r/all and /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Move to the topmost comment of the next thread (in comments).", description: "" }, hoverName: { message: "Pop-up a scomparsa RES ", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Enable For Comments", description: "" }, spamButtonDesc: { message: "Aggiunge un pulsante spam per facile segnalazione.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Ultimo aggiornamento", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "etichetta", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Helping you get your daily dose of orangereds.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Night Mode On", description: "" }, myAccountCategory: { message: "Il Mio Account", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments", description: "" }, yes: { message: "S\xEC", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Oggetti del Menu", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Color", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Dice quanti commenti sono stati postati dalla tua ultima visita al thread.", description: "" }, userTaggerPageXOfY: { message: "$1 di $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "Le mie Tag", description: "" }, pageNavShowLinkNewTabDesc: { message: "Open link in new tab.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Cerca Impostazioni", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "Non permettere Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "Video Visto", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: `Segna in grassetto il "Commenta come" se stai usando un alt account. Il primo account nel modulo dell'Account Switcher \xE8 considerato come account principale.`, description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "All'invio, mostra il numero di caratteri inseriti nel titolo e nel campo di testo, e indica quando si supera il limite di 300 caratteri per i titoli.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Increase the size of image(s) in the highlighted post area (finer control).", description: "" }, nerName: { message: "Never Ending Reddit", description: "" }, subredditInfoTitle: { message: "Titolo:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatic (requires geolocation)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "View link and comments in new background tabs.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Bordo del Commento al passaggio del mouse", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Fade", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Decrease the size of image(s) in the highlighted post area (finer control).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Go to next page (link list pages only).", description: "" }, notificationsPerNotificationType: { message: "per notification type", description: "" }, subredditTaggerDesc: { message: "Add custom text to the beginning of submission titles on your front page, multireddits, and /r/all. Useful for adding context to submissions.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Migliora la navigazione nella tua user page.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Include funzionalit\xE0 supplementari alle tabelle in Reddit Markdown (ad ora solo ordinamento).", description: "" }, notificationsAlwaysSticky: { message: "always sticky", description: "" }, searchName: { message: "Cerca impostazioni RES", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Invia come", description: "" }, pageNavName: { message: "Page Navigator", description: "" }, keyboardNavFollowLinkDesc: { message: "Follow link (link pages only).", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Aggiunge un colore al punteggio di un commento in base al suo valore", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "Salva lo stato di commenti nascosti all'abbandono della pagina.", description: "" }, quickMessageDesc: { message: "Un pop-up che consente di inviare messaggi da ogni parte di reddit. I messaggi possono essere inviato dalla finestra di Messaggio Veloce premendo control-invio o command-invio.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "nome utente", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Night Mode Start", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "User Bar Hidden", description: "" }, accountSwitcherUnknownError: { message: "Non sei potuto accedere come $1 a causa di un errore sconosciuto: $2\n\nControllare le tue impostazioni?", description: "" }, commentDepthAddSubreddit: { message: "+aggiungi subreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Swap Big Editor Layout", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Auto Load", description: "" }, nerReturnToPrevPageDesc: { message: 'Return to the page you were last on when hitting "back" button?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Section Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Move to parent's next sibling (in comments).", description: "" }, accountSwitcherRateLimitError: { message: "Non sei potuto accedere come $1 perch\xE9 reddit sta riscontrando troppe richieste provenienti da te in breve tempo.\n\nForse hai provato ad accedere usando username o password errati?\n\nControllare le tue impostazioni?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Score Hidden Time Left", description: "" }, hoverWidthDesc: { message: "Larghezza di Default del popup.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Abilita/disabilita modalit\xE0 notturna.", description: "" }, userTaggerShowIgnoredTitle: { message: "Mostra ignorati", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Commenti Senza Fine", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Escludi i Miei Post", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "Apre Modmail in una Nuova Scheda.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "Apri Modmail Nuova Scheda", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Show the Subscribe button?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Enter Filter Command Line", description: "" }, betteRedditDoNoCtrlFDesc: { message: 'Quando si usa il Ctrl+F/Cmd+F "trova testo" del browser, cerca soltanto commenti/testo dei post e non link di navigazione ("permalink, fonte, salva..."). Disabilitato di default a causa di un leggero impatto sulle prestazioni. ', description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Richiedi link diretto", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Imposta automaticamente un colore speciale per ogni nome utente", description: "" }, backupName: { message: "Backup & Ripristino.", description: "" }, profileNavigatorSectionLinksDesc: { message: "Collegamenti da mostrare nel men\xF9 a comparsa del profilo.", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "Usa lo stile del subreddit", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Aggiungi questo subreddit alla mia Dashboard.", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Aggiorna le Altre Schede", description: "" }, nightModeUseSubredditStylesTitle: { message: "Use Subreddit Styles", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "Dopo aver votato un commento, seleziona automaticamente il prossimo commento.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Usa la modalit\xE0 per telefoni di Gfycat.", description: "" }, commentToolsItalicKeyDesc: { message: "Scelta rapida per rendere il testo in italic. ", description: "" }, messageMenuLinksDesc: { message: "Links to show in the mail icon drop down menu.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit nasconde alcune opzioni di smistamento commenti (random, ecc.) nella maggior parte delle pagine. Questa opzione le rivela.", description: "" }, commandLineLaunchTitle: { message: "Avvia", description: "" }, betteRedditDesc: { message: `Miglioramenti all'interfaccia di Reddit, come link a "commenti completi", la possibilit\xE0 di ripristinare post nascosti per sbaglio e altro ancora.`, description: "" }, resTipsDesc: { message: "Aggiunge tips/tricks alla console RES.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Move to previous sibling (in comments) - skips to previous sibling at the same depth.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Sottolinea la gerarchia dei box di commento al passaggio del mouse (disabilita per una performance pi\xF9 veloce).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Scelta rapida per rendere il testo in grassetto.", description: "" }, hoverWidthTitle: { message: "Larghezza", description: "" }, dashboardName: { message: "RES Dashboard", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Show Last Edited Timestamp", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Rimani loggato", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Crea link a subreddit crosspostati nei titoli post.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Clicca qui per scoprire di pi\xF9", description: "" }, keyboardNavInboxNewTabDesc: { message: "Go to inbox in a new tab.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Mostra l'anteprima di modifica delle impostazioni subreddit.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "tutti gli utenti", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Evidenzia controversi", description: "" }, pageNavToTopDesc: { message: "Add an icon to every page that takes you to the top when clicked.", description: "" }, subredditsCategory: { message: "Subreddit", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expand/collapse comments (comments pages only).", description: "" }, commentPreviewDraftStyleTitle: { message: "Draft Style", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Mostra una data precisa nella wiki.", description: "" }, logoLinkInbox: { message: "Posta in arrivo", description: "" }, searchHelperDesc: { message: "Fornisce aiuto nella ricerca.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Follow Link New Tab Focus", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Show Timestamp Posts", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "Preset", description: "" }, styleTweaksName: { message: "Style Tweaks.", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Annunci ufficiali", description: "" }, hoverInstancesDesc: { message: "Gestisci pop-up particolari", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Move up to the previous comment on threaded comment pages.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Show Timestamp Sidebar", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Fade Speed", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Ritardo, in millisecondi, prima che un link nascosto sparisca.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Mostra Karma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatic Night Mode", description: "" }, noPartDisableCommentTextareaDesc: { message: "Disable commenting.", description: "" }, nerReturnToPrevPageTitle: { message: "Return To Previous Page", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'Add a "View the Full Context" link when on a comment link.', description: "" }, messageMenuFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsDesc: { message: "Fornisce strumenti e collegamenti per comporre commenti, post di testo, pagine wiki ed altre aree di testo markdown.", description: "" }, noPartName: { message: "No Partecipazione", description: "" }, presetsDesc: { message: "Scegli tra vari preset RES gi\xE0 pronti. Ogni preset attiva o disattiva vari moduli/opzioni, ma non reimposta da zero tutta la tua configurazione.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Show the comment tools on the ban note textbox.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Go to subreddit of selected link in a new tab (link pages only).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Stile del subreddit", description: "" }, keyboardNavDownVoteTitle: { message: "Down Vote", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Sposta Gi\xF9", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Notification Types", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "On Vote Comment Move Down", description: "" }, hoverCloseOnMouseOutDesc: { message: "Whether to close the popup on mouseout in addition to the close button.", description: "" }, subredditTaggerName: { message: "Subreddit Tagger", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Evidenzia se Account Alternativo", description: "" }, userInfoDesc: { message: "Aggiunge un tooltip a scomparsa agli utenti.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Close Delay", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "Consente di cambiare il link del logo di reddit.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "Number of posts to show by default in each widget.", description: "" }, pageNavDesc: { message: "Fornisce strumenti per la navigazione della pagina.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Mostra il mio nome utente corrente nell'Accont Switcher.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 \xE8 nel multireddit $2", description: "" }, commentToolsStrikeKeyTitle: { message: "Strike Key", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Utilizza stili per daltonici quando possibile", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Display Comment Navigator by default.", description: "" }, keyboardNavSaveRESTitle: { message: "Save RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "On Hide Move Down", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Casella di testo del commento", description: "" }, profileNavigatorName: { message: "Profile Navigator", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "No", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Linear Scroll Style", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "Mostra i commenti genitore.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Personalizza rapidamente RES con vari preset.", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "Salva Commenti Nascosti", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Voce Selezionata", description: "" }, betteRedditPinHeaderTitle: { message: "Fissa l'Header", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Macro Placeholders", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Enable For Ban Messages", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Open Mail In New Tab", description: "" }, versionDesc: { message: "Gestisce controllo versione corrente/precedente.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Your username, karma, preferences, RES gear, and so on are hidden. You can show them again by clicking the $1 button in the top right corner.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling", description: "" }, keyboardNavFollowLinkTitle: { message: "Follow Link", description: "" }, keyboardNavMoveBottomDesc: { message: "Move to bottom of list (on link pages).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "Filtra utenti per subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Upvote selected link or comment (but don't remove the upvote).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Fade Delay", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Comment Permalinks", description: "" }, aboutOptionsLicenseTitle: { message: "Licenza", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Mostra l'anteprima dei post.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Image Move Right", description: "" }, keyboardNavPrevPageDesc: { message: "Go to previous page (link list pages only).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Apri i link presenti nei commenti in una nuova scheda.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoCommentKarma: { message: "Karma dei Commenti:", description: "" }, settingsConsoleDesc: { message: "Gestisci impostazioni e preferenze di RES.", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Mod Color", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "Link", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Comments Links New Tabs", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Errore nel caricamento delle informazioni del subreddit.", description: "" }, accountSwitcherName: { message: "Gestione Account", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Move to next sibling (in comments) - skips to next sibling at the same depth.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Night Switch", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Enable For Posts", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Mostra Karma del commento", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Mostra aiuto per le scorciatoie da tastiera.", description: "" }, presetsLiteTitle: { message: "Alleggerito", description: "" }, dashboardDashboardShortcutTitle: { message: "Collegamento alla Dashboard", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Nascondi", description: "" }, userInfoLink: { message: "Link:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "$1 fa", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Mostra la lunghezza del video quando disponibile.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignorato.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Reply", description: "" }, accountSwitcherSimpleArrow: { message: "freccia semplice", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Nascondi link instataneamente.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "Tutte le opzioni sono visibili di default. Deseleziona questa casella se si vogliono nascondere le opzioni avanzate.", description: "" }, betteRedditFixHideLinksTitle: { message: "Fix Hide Links", description: "" }, commentNavName: { message: "Esplora commenti.", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Open Comment Navigator.", description: "" }, presetsLiteDesc: { message: "RES Lite: just the popular stuff", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Premendo Ctrl+Enter o Cmd+Enter viene inviata la tua modifica al commento/wiki.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Niente", description: "" }, filteRedditShowFilterlineTitle: { message: "Mostra la barra dei Filtri", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Section Links", description: "" }, hideChildCommentsDesc: { message: "Ti permette di nascondere i commenti imparentati.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover", description: "" }, submitHelperName: { message: "Submission Helper", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Ordinamento di Default", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "Commento Arrotondato", description: "" }, keyboardNavImageSizeUpTitle: { message: "Image Size Up", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "toggle subreddit style $1 for: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Commenti", description: "" }, commentToolsStrikeKeyDesc: { message: "Scelta rapida per aggiungere caratteri barrati.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Nascondi opzioni di ricerca", description: "" }, logoLinkMyUserPage: { message: "La mia Pagina", description: "" }, keyboardNavUseGoModeDesc: { message: 'Require initiating goMode before using "go to" shortcuts.', description: "" }, easterEggName: { message: "Easter Egg", description: "" }, commentToolsSuperKeyDesc: { message: "Scelta rapida per rendere il testo stampato in apice.", description: "" }, keyboardNavUpVoteTitle: { message: "Up Vote", description: "" }, notificationNotificationTypesDesc: { message: "Manage different types of notifications.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Karma dei Post:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "toggle subreddit style $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Leggi di pi\xF9", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Destinazione Logo di Reddit", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite \xE8 un insieme di moduli che rende il navigare reddit molto pi\xF9 semplice.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Enable For Subreddit Config", description: "" }, accountSwitcherShowKarmaDesc: { message: "Mostra i post e il karma dei commenti di ogni account nell'Account Switcher.", description: "" }, keyboardNavDesc: { message: "Navigazione da Tastiera per reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Move to parent (in comments).", description: "" }, keyboardNavGoModeDesc: { message: 'Enter "goMode" (necessary before using any of the below "go to" shortcuts).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "Interfaccia a riga di comando RES.", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Image Move Left", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "La RES Dashboard contiene molte funzionalit\xE0 inclusi widget ed altri utili strumenti.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "After selecting a macro from the dropdown list, do not hide the list.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddit", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Move the image(s) in the highlighted post area down.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Follow Permalink New Tab", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Removes the height restriction of image(s) in the highlighted post area.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "tagga l'utente $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Segnala un Problema", description: "" }, aboutOptionsFAQTitle: { message: "FAQ", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Mostra dettagli dell'Utente", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Subreddit style disabled for subreddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Color for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Update Current Tab", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Comment Navigator Move Up", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Vai al Profilo.", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "View link and comments in new tabs.", description: "" }, onboardingUpdateNotificationName: { message: "Update Notification", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, nightModeNightModeStartDesc: { message: "Time that automatic night mode starts.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Automatically load new page on scroll (if off, you click to load).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "sticky", description: "" }, userHighlightAdminColorTitle: { message: "Admin Color", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Apri la frontpage del subreddit quando si clicka [l=c] nei self post.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Image Size Down", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: `La tab salvata si trova ora nella sidebar multireddit. Ci\xF2 permette il ripristino di un link "salvato" nell'intestazione (vicino alle tab "hot", "new" ecc.)`, description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Default color of the bar.", description: "" }, toggleOff: { message: "off", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Mostra al subreddit uno strumento di completamento automatico nello scrivere post, commenti, e risposte.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Image Size Down Fine", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Show Timestamp Wiki", description: "" }, commentToolsMacrosDesc: { message: "Add buttons to insert frequently used snippets of text.", description: "" }, keyboardNavProfileTitle: { message: "Profilo", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Filtra i Subreddit da", description: "" }, userTaggerShowAnyway: { message: "mostra comunque?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Elimina la cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+aggiungi account", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Evidenzia", description: "" }, filteRedditExcludeModqueueDesc: { message: "Don't filter anything on modqueue pages (modqueue, reports, spam, etc.).", description: "" }, filteRedditEmptyNotificationHeader: { message: "Tutti i posti sono filtrati", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifiche.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Iscrizioni:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Move to the topmost comment of the previous thread (in comments).", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Mostra strumenti di formattazione (bold, italic, tables, ecc.) come opzione di modifica per post, commenti e altre aree snudown/markdown.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Sposta in Fondo", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Color Hover", description: "" }, spoilerTagsName: { message: "Spoiler Tag globali", description: "" }, betteRedditVideoUploadedDesc: { message: "Mostra la data di caricamento dei video quando disponibile.", description: "" }, accountSwitcherLoginError: { message: "Non sei potuto accedere come $1 perch\xE9 username o password sono errati.\n\nControllare le tue impostazioni?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Salva Commenti", description: "" }, hoverFadeSpeedDesc: { message: "Velocit\xE0 di dissolvenza (in secondi).", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Mostra la data precisa (Dom Nov 16 20:14:56 2014 UTC) invece di una data approssimata (7 giorni fa) nei post.", description: "" }, submissionsCategory: { message: "Submissions", description: "" }, keyboardNavSaveCommentDesc: { message: "Save the current comment to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, keyboardNavSavePostTitle: { message: "Save Post", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Font Color", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Aggiungi opzioni di ricerca", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "Aggiunge un tooltip a scomparsa ai subreddit.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu.", description: "" }, commentDepthDesc: { message: "Allows you to set the preferred depth of comments you wish to see when clicking on comments links.\n\n0 = Everything, 1 = Root level, 2 = Responses to root level, 3 = Responses to responses to root level, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Scelta rapida per aggiungere una citazione.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Time that automatic night mode ends.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Ordina", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filtra tutti i link etichettati come NSFW.", description: "" }, logoLinkName: { message: "Link Logo", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "Se qualcosa non funziona, visita /r/RESissues per trovare aiuto.", description: "" }, nightModeAutomaticNightModeNone: { message: "Disabilitato", description: "" }, keyboardNavMoveUpDesc: { message: "Move up to the previous link or comment in flat lists.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "Nessun azione \xE8 stata compiuta.", description: "" }, commentPreviewEnableForWikiTitle: { message: "Enable For Wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Escludi Pagine di Utenti", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "nome", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserva memoria", description: "" }, showImagesName: { message: "Visualizzatore Immagini Inline", description: "" }, commentStyleCommentIndentDesc: { message: "Indenta commenti da [x] pixel (inserire solo il numero, non 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Disabilita RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling", description: "" }, userInfoRedditorSince: { message: "Redditor da:", description: "" }, userTaggerShow: { message: "Mostra", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Mostra Karma del commento in aggiunta al karma del post", description: "" }, hoverFadeSpeedTitle: { message: "Velocit\xE0 Dissolvenza", description: "" }, necLoadChildCommentsTitle: { message: "Carica commenti figli", description: "" }, showParentName: { message: "Mostra padre a passaggio cursore", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Mostra lo stato del gold di ogni account nell'Account Switcher.", description: "" }, keyboardNavMoveToParentTitle: { message: "Move To Parent", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Show Timestamps Comments", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserva memoria nascondendo temporaneamente le immagini quando sono fuori dall'area dello schermo", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Account", description: "" }, spoilerTagsDesc: { message: "Nasconde spoiler nelle pagine utente.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Mostra notifiche pop-up", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Mostra Oro", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "profondit\xE0 commento", description: "" }, keyboardNavImageMoveDownTitle: { message: "Image Move Down", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Previous Gallery Image", description: "" }, userTaggerTaggedUsers: { message: "utenti taggati", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Move Up Thread", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "Aggiunge informazioni e miglioramenti al karma vicino al tuo username nella barra del menu.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Default Comment Depth", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Features", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Move Down Parent Sibling", description: "" }, dashboardTagsPerPageTitle: { message: "Tagga per Pagina", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log", description: "" }, userTaggerStoreSourceLinkDesc: { message: "By default, store a link to the link/comment you tagged a user on", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Migliora la barra di navigazione sulla sinistra della frontpage.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Quote Key", description: "" }, keyboardNavHideDesc: { message: "Nascondi Link", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Bold Key", description: "" }, xPostLinksName: { message: "Link Crosspost", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Always show a tag tool icon after every username.", description: "" }, commentPreviewDraftStyleDesc: { message: "Applica uno sfondo in stile 'bozza' all'anteprima per differenziarla dall'area dei commenti.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Follow Comments", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Modmail", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Colore", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Clean Comments", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "Commenti", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Forza la sincronizzazione dei Filtri", description: "" }, nerShowServerInfoTitle: { message: "Show Server Info", description: "" }, troubleshooterSettingsReset: { message: "All settings reset. Reload to see the result.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Move the image(s) in the highlighted post area left.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Open the current comment's permalink (comment pages only).", description: "" }, subredditInfoAddRemoveShortcut: { message: "collegamento", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Modalit\xE0 per daltonici", description: "" }, userInfoSendMessage: { message: "invia messaggio", description: "" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Disable Vote Buttons", description: "" }, commentToolsLinkKeyDesc: { message: "Scelta rapida per aggiungere un link.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Sposta Su il Commento", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "Quando si \xE8 su un profilo utente, offre l'opzione di cercare i post dell'utente nel subreddit o dai multireddit di provenienza.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "Pagina", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Change the default context value on context link.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Image Size Up Fine", description: "" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Show unread message count in favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Search Helper", description: "" }, keyboardNavNextGalleryImageDesc: { message: "View the next image of an inline gallery.", description: "" }, nightModeName: { message: "Modalit\xE0 notturna", description: "" }, filteRedditExcludeModqueueTitle: { message: "Escludi la coda dei Moderatori", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Launch filter command line.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "can't set tag - no post/comment selected.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "on", description: "" }, contextDesc: { message: "Aggiunge un link alla barra gialla per vedere il contesto completo di un commento.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Up Vote Without Toggling", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Sposta in Cima", description: "" }, nightModeAutomaticNightModeUser: { message: "User-defined hours", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignorato", description: "" }, commentToolsCommentingAsDesc: { message: "Mostra il tuo username di accesso corrente per evitare di postare da un account sbagliato.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Follow Link New Tab", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "Puoi modificare questo pi\xF9 tardi dalle opzioni $1", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Interruttore", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "Dopo aver cambiato account, mostra un avviso nelle altre schede.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Mostra un cestino mentre trascini una scorciatoia ad un subreddit", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Backup e ripristino delle tua impostazioni di RES.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Drop Down Style", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Premendo Ctrl+Enter o Cmd+Enter viene sottomesso il tuo post.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "option ID", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Carica stylesheet extra o i tuoi snippet CSS personalizzati.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "password", description: "" }, userInfoUnignore: { message: 'Rimuovi "Ignora"', description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "Macro", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn automatic mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn user-defined hours mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, presetsNoPopupsTitle: { message: "No Popups", description: "" }, searchCopyResultForComment: { message: "copy this for a comment", description: "" }, moduleID: { message: "module ID", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Show unread message count in page/tab title?", description: "" }, xPostLinksXpostedFrom: { message: "cross postato da", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Toggle Children", description: "" }, commandLineLaunchDesc: { message: "Avvia riga di comando RES.", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Informazioni Subreddit", description: "" }, betteRedditVideoUploadedTitle: { message: "Video Caricato", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Velocit\xE0 dell'animazione di dissolvenza (in secondi).", description: "" }, aboutOptionsDonate: { message: "Supporta lo sviluppo di RES.", description: "" }, aboutOptionsBugsTitle: { message: "Bug", description: "" }, nerShowPauseButtonTitle: { message: "Mostra pulsante Pausa", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Single Click Opener", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Number of days before RES stops keeping track of a viewed thread.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Gestore Versione", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching.", description: "" }, commentDepthName: { message: "Profondit\xE0 Commenti Personalizzata", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Show Unread Count In Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay", description: "" }, troubleshooterClearTagsTitle: { message: "Elimina le tag", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Show Subscribe Button", description: "" }, commentToolsKey: { message: "chiave", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Color Usernames", description: "" }, commentStyleName: { message: "Stile commenti", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Mostra tutte le opzioni", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "Front Page", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Scorre automaticamente al post/commento selezionato quando si carica la pagina", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "testo", description: "" }, notificationStickyTitle: { message: "Sticky", description: "" }, aboutOptionsAnnouncements: { message: "Leggi le ultime novit\xE0 su /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Automatically hide all but parent comments, or provide a link to hide them all?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Rimuovi questo subreddit dalla mia barra dei collegamenti.", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "Pagina Precedente", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Sottolinea i box di commento per facilitarne la lettura e la localizzazione nei thread estesi.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Aggiungi un tasto per lo stile del subreddit nella toolbar", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "On Vote Move Down", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Hide Dupes", description: "" }, keyboardNavFrontPageDesc: { message: "Go to front page.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Follow Link And Comments New Tab BG", description: "" }, singleClickDesc: { message: "Aggiunge link [l+c] che apre un link e la pagina dei commenti in una nuova tab in un solo click.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Browse by Wheel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Show an envelope (inbox) icon in the top right corner.", description: "" }, aboutName: { message: "Informazioni su RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "Backup", description: "" }, productivityCategory: { message: "Produttivit\xE0", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "Nessun subreddit specificato.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Chiudi quando il mouse si allontana dal pop-up", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Move to the topmost comment of the current thread (in comments).", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: 'Changes "hide" links to read as "hide" or "unhide" depending on the hide state.', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 entries removed.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Add tabs to the search page.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter Saves Live Threads", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Subreddit Comment Depths", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Abilita l'editor a 2 colonne.", description: "" }, floaterName: { message: "Floating Islands", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Colora punteggio commento", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "Interruttore NSFW", description: "" }, filteRedditAllowNSFWDesc: { message: "Non nascondere i post NSFW provenienti da certi subreddit quando il filtro NSFW e' acceso.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Aggiunge un pulsante interruttore per mostrare o nascondere l'user bar.", description: "" }, showImagesDesc: { message: "Apre le immagini inline nel tuo browser al click di un pulsante. \xC8 anche personalizzabile, provalo!", description: "" }, commentToolsMacroButtonsTitle: { message: "Pulsanti Macro", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "Non filtrare i miei post.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "L'occultatore username nasconde il tuo username dall'essere visibile sul tuo schermo quando sei loggato su reddit. Cos\xEC, se qualcuno ti guarda da dietro le spalla a lavoro, o se fai una schermata, il tuo username reddit \xE8 nascosto. Questo funziona solo sul tuo schermo. Non c'\xE8 modo di commentare su reddit senza collegare il commento all'account che lo ha inviato.", description: "" }, betteRedditName: { message: "betteReddit", description: "" }, voteEnhancementsName: { message: "Vote Enhancements", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Show Hidden Sort Options", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Divide i titoli di post lunghi (maggiori di 1 riga) con un'ellisse.", description: "" }, subredditInfoAddRemoveDashboard: { message: "dashboard", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "Autocompleta Utente", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed", description: "" }, aboutOptionsCodeTitle: { message: "Codice", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Nome utente", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Move the image(s) in the highlighted post area up.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Dona", description: "" }, keyboardNavGoModeTitle: { message: "Go Mode", description: "" }, keyboardNavName: { message: "Navigazione da Tastiera", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "Evidenziatore Utenti", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notifica post modificati", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Subreddit/Multireddit Corrente", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifiche", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Follow Permalink", description: "" }, hoverDesc: { message: "Personalizza comportamento dei pop-up che appaiono quando passi con il cursore sopra certi elementi.", description: "" }, modhelperName: { message: "Mod Helper", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Nascondi commenti in risposta", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'Devi specificare "$1" o "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "Sposta Su", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Apri messaggio rapido", description: "" }, pageNavToTopTitle: { message: "To Top", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Scroll On Expando", description: "" }, userTaggerTag: { message: "Tag", description: "" }, userbarHiderToggleUserbar: { message: "Toggle Userbar", description: "" }, nerReversePauseIconTitle: { message: "Reverse Pause Icon", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Rimuovi questo subreddit dalla mia Dashboard.", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Formatta o mostra informazioni aggiuntive sui voti nei post e commenti.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Subreddit Manager", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Suggerimenti", description: "" }, keyboardNavSaveCommentTitle: { message: "Save Comment", description: "" }, nerPauseAfterEveryTitle: { message: "Pause After Every", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Riga di comando per esplorare reddit, modificare impostazioni e debuggare RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "View the previous image of an inline gallery.", description: "" }, userInfoInvalidUsernameLink: { message: "Link dell'utente non valido.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Move down using Comment Navigator.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Night Mode End", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "Mostra la data nel tuo orario locale quando passi con il cursore sopra a una data relativa.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Base", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "minimum comments", description: "" }, aboutOptionsCode: { message: "Puoi contribuire allo sviluppo di RES con codice, design e idee! RES \xE8 un progetto open-source su GitHub.", description: "" }, commentNavDesc: { message: "Fornisce uno strumento per la facile navigazione commenti per OP, mod, ecc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Premendo Ctrl+Enter o Cmd+Enter viene salvato l'aggiornamento al tuo live thread.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite \xE8 rilasciato sotto licenza GPL v3.0.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Abilita messaggi al Ban.", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Number of days before thread subscriptions expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 non \xE8 sicuro cosa fare quando premi la scorciatoia da tastiera $2. $3 Cosa dovrebbe fare premere $4?", description: "" }, styleTweaksToggleSubredditStyle: { message: "toggle subreddit style", description: "" }, RESTipsDailyTipTitle: { message: "Daily Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "Nuova Conta Commenti", description: "" }, keyboardNavSlashAllDesc: { message: "Vai a /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "Mostra Padre", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "Frontpage", description: "" }, commentToolsCategory: { message: "categoria", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "Quando il cursore passa sopra [punteggio nascosto], mostra il tempo rimanente invece di nasconderne la durata.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Mostra la data di modifica di un post o commento, senza dover passar sopra la timestamp con il cursore.", description: "" }, aboutOptionsSearchSettings: { message: "Trova impostazioni di RES.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Next Gallery Image", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Subreddit style enabled for subreddit: $1.", description: "" }, notificationsNeverSticky: { message: "never sticky", description: "" }, keyboardNavMoveDownDesc: { message: "Move down to the next link or comment in flat lists.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Attiva pulsante "mostra immagini"', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Mostra il [-] pulsante di compressione nell'inbox.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Aggiungi questo subreddit alla mia barra dei collegamenti.", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Ricarica le Altre Schede", description: "" }, betteRedditVideoTimesTitle: { message: "Tempo del Video", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Aspetto", description: "" }, userTaggerShowIgnoredDesc: { message: "Provide a link to reveal an ignored link or comment.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "Italic Key", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Usa i Filtri di Reddit", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Seleziona automaticamente l'ultima cosa selezionata", description: "" }, aboutOptionsPresetsTitle: { message: "Preset", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Profondit\xE0 predefinita accessibile per tutti i subreddits non elencati sotto.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Hide", description: "" }, aboutOptionsContributorsTitle: { message: "Contributori", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Attiva Aiuto", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "When following a link in new tab - focus the tab?", description: "" }, aboutOptionsFAQ: { message: "Trova informazioni su RES sulla wiki di /r/Enhancement.", description: "" }, betteRedditPinHeaderDesc: { message: "Fissa la barra dei subreddit, l'user menu, o l'header, in alto. Cos\xEC che fluttui quando scorri.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Mostra una data precisa nella sidebar.", description: "" }, keyboardNavUpVoteDesc: { message: "Upvote selected link or comment (or remove the upvote).", description: "" }, singleClickOpenFrontpageTitle: { message: "Apri Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Go to subreddit of selected link (link pages only).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Resta loggato quando riavvio il mio browser.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Toggle expando (image/text/video).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "View comments for link in a new tab.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "Esegui Backup", description: "" }, profileNavigatorHoverDelayDesc: { message: "Ritardo, in millisecondi, prima che il tooltip a comparsa appaia.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES ti d\xE0 la possibilit\xE0 di disabilitare gli stili di subreddit specifici!", description: "" }, customTogglesDesc: { message: "Crea interruttori on/off personalizzati per varie parti di RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "Nessun username specificato.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Pulsanti di Formattazione", description: "" }, commentPreviewEnableForWikiDesc: { message: "Mostra l'anteprima delle pagine wiki.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Image Move Up", description: "" }, settingsNavDesc: { message: "Aiuta ad orientarti facilmente nella Console Impostazioni di RES.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox", description: "" }, usernameHiderName: { message: "Occultatore Username", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "enabled", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Strumenti Tabella", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "Utente non trovato.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Truncate Long Links", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Avvia Linea di Comando RES.", description: "" }, nerHideDupesDontHide: { message: "Do not hide", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notifica se un post seguito \xE8 modificato", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "i tuoi voti per $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Add macro buttons to the edit form for posts, comments, and other snudown/markdown text areas.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Move the image(s) in the highlighted post area right.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alieno)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Apri l'Editor Grande", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height", description: "" }, pageNavShowLinkNewTabTitle: { message: "Show Link New Tab", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Non-linear Scroll Style", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Open the current markdown field in the big editor. (Only when a markdown form is focused).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Imposta la profondit\xE0 nei link a particolari commenti con contesto.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Vai alla front page del subreddit.", description: "" }, menuName: { message: "Menu RES", description: "" }, messageMenuDesc: { message: "Passa con il cursore sull'icona della posta per accedere a diversi tipi di messaggi o per comporre un nuovo messaggio.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link.", description: "" }, accountSwitcherDraft: { message: "Tuttavia, non hai finito di scrivere in questa pagina come /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Play a transition when you open and close tabs.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "Dopo aver nascosto un link, seleziona automaticamente il prossimo link.", description: "" }, commentStyleDesc: { message: "Miglioramento leggibilit\xE0 commenti.", description: "" }, keyboardNavRandomDesc: { message: "Vai su un subreddit casuale.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "Commenta come", description: "" }, keyboardNavImageSizeUpDesc: { message: "Increase the size of image(s) in the highlighted post area.", description: "" }, floaterDesc: { message: "Controlla elementi free-floating", description: "" }, subredditManDesc: { message: "Consente di personalizzare la barra superiore con i tuoi collegamenti a subreddit, inclusi menu a tendina per multireddit e altro.", description: "" }, keyboardNavSavePostDesc: { message: "Save the current post to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Abilita Editor Grande", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification", description: "" }, announcementsDesc: { message: "Stai al passo con le novit\xE0.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Aggiungi Riga", description: "" }, keyboardNavReplyDesc: { message: "Reply to current comment (comment pages only).", description: "" }, accountSwitcherGoldUntil: { message: "Fino a $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "Notifiche RES", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "View comments for link (shift opens them in a new tab).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Mostra l'anteprima live dei markdown nella sidebar durante la modifica.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Apri Profilo Nuova Scheda", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Follow Link And Comments New Tab", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Navigazione Multireddit", description: "" }, keyboardNavToggleExpandoTitle: { message: "Toggle Expando", description: "" }, showKarmaName: { message: "Mostra Karma", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Autocompleta Subreddit", description: "" }, settingsNavName: { message: "Navigatore Impostazioni RES", description: "" }, contributeName: { message: "Dona e Contribuisci", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Disable Comment Textarea", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Imposta la profondit\xE0 nei link a particolari commenti.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Mostra un menu che porta a varie sezioni del profilo utente corrente quando si passa il mouse sopra il link dell'username nell'angolo in alto a destra.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "Strumenti di modifica", description: "" }, accountSwitcherAccountsDesc: { message: "Imposta il tuo nome utente e la tua password qui sotto. Verranno memorizzate nelle preferenze di RES.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "When filtering subreddits with the above option, where should they be filtered?", description: "" }, commandLineMenuItemDesc: { message: `Aggiungi l'opzione "Avvia riga di comando" al men\xF9 a tendina di RES `, description: "" }, commentPrevName: { message: "Anteprima Live", description: "" }, hoverOpenDelayDesc: { message: "Default delay between mouseover and the popup opening.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color of the bar when collapsed.", description: "" }, announcementsName: { message: "Annunci RES", description: "" }, betteRedditVideoViewedDesc: { message: "Mostra il numero di visualizzazioni di un video quando disponibile.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Move To Top Comment", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "ricarica", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Nascondi tutti i nomi utente", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, notificationsNotificationID: { message: "notification ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Mostra Sorgente Snudown.", description: "" }, keyboardNavInboxDesc: { message: "Go to inbox.", description: "" }, gfycatUseMobileGfycatDesc: { message: "Usa la modalit\xE0 per telefoni (con risoluzione ridotta) di Gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Toggle View Images", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Esegui un backup e ripristina le tue impostazioni di RES.", description: "" }, showParentDesc: { message: 'Mostra i commenti padre al passaggio sul link "padre" di un commento.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Decrease the size of image(s) in the highlighted post area.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Show Input Length", description: "" }, keyboardNavSaveRESDesc: { message: "Save the current comment with RES. This does preserve the original text of the comment, but is only saved locally.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Ispirato da moduli come River of Reddit e Auto Pager - fornisce un flusso infinito di redditanza.", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "Non filtrare nulla sui profili degli utenti.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Ripristina", description: "" }, logoLinkCustom: { message: "Custom", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Enable or disable everything connected to this toggle; and optionally add a toggle to the RES gear dropdown menu.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Mostra linee di continuit\xE0 del commento.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Stop filtering this subreddit from /r/all and /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Post di Default", description: "" }, contextViewFullContextTitle: { message: "Mostra tutto il Contesto", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacy", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Aggiunge strumento per mostrare il testo sorgente di post e commenti, prima della formattazione del testo.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Move down to the next comment on threaded comment pages.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Fornisce strumenti per l'aiuto nell'invio di un post.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Automatico", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separatore", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Default delay before the popup fades after mouseout.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Dove vieni riportato/a quando fai click sul Logo di Reddit.", description: "" }, settingsConsoleName: { message: "Console Impostazioni.", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Mostra opzioni di ricerca", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Specifica profondit\xE0 subreddit di commento.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Vai a Modmail.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "Ordinamento di default per i widget nuovi.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "Dopo aver cambiato account, ricarica automaticamente le altre schede.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "abilitato", description: "" }, nightModeColoredLinksTitle: { message: "Colored Links", description: "" }, modhelperDesc: { message: "Aiuta i moderatori attraverso consigli per avere fatto i bravi con RES.", description: "" }, quickMessageName: { message: "Messaggio Veloce", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Abilit\xE0 nuovamente questa funzione", description: "" }, userHighlightDesc: { message: "Evidenzia certi utenti nei thread commenti: OP, Admin, Amici, Mod - contributed by MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Scroll window to top of link when expando key is used (to keep pics etc in view).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Ritardo, in millisecondi, prima che il tooltip a comparsa svanisca.", description: "" }, userInfoAddRemoveFriends: { message: "$1 amici", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups", description: "" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Menu messaggi", description: "" }, aboutOptionsSuggestions: { message: "Se hai un'idea per RES o vuoi parlare con altri utenti, visita /r/Enhancement.", description: "" }, userbarHiderName: { message: "Occultatore User Bar", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "When jumping to a entry (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), when and how should RES scroll the window?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "Tutta la cache \xE8 stata pulita.", description: "" }, localDateName: { message: "Data Locale", description: "" }, commentStyleCommentRoundedDesc: { message: "Arrotonda gli angoli dei box di commento.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Use Go Mode", description: "" }, messageMenuLabel: { message: "etichetta", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Mostra Nome Utente Corrente", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filtra", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Show Unread Count In Title", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Anteprima della Sidebar", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Follow Subreddit New Tab", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Mostra all'utente uno strumento di completamento automatico nello scrivere post, commenti, e risposte.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Add a quick NSFW on/off toggle to the gear menu.", description: "" }, subredditInfoSubscribe: { message: "iscriviti", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Downvote selected link or comment (or remove the downvote).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Invio invia Commenti", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Invio invia il Post", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit creato:", description: "" }, multiredditNavbarLabel: { message: "label", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Hover Delay", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Mostra l'anteprima delle note ban.", description: "" }, usersCategory: { message: "Utenti", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Color links blue and purple.", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit non trovato.", description: "" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here.", description: "" }, resTipsName: { message: "Trucchi e Consigli di RES", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Toggle Cmd Line", description: "" }, contextName: { message: "Contesto", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: `This will kill all your settings and saved data. If you're certain, type in "$1".`, description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "User suspended.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "Link", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Move to top of list (on link pages).", description: "" }, contextDefaultContextTitle: { message: "Contesto di Default", description: "" }, userTaggerTagUserAs: { message: "tagga l'utente $1 come: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Move Down Sibling", description: "" }, customTogglesName: { message: "Interruttori personalizzati", description: "" }, pageNavShowLinkTitle: { message: "Show Link", description: "" }, keyboardNavProfileNewTabDesc: { message: "Apre il Profilo in una Nuova Scheda.", description: "" }, aboutCategory: { message: "Informazioni su RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "Dona Reddit Gold", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restore a backup of your RES settings.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Mostra l'anteprima dei commenti.", description: "" }, spamButtonName: { message: "Pulsante Spam", description: "" }, hoverInstancesTitle: { message: "Istanze", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colors couldn't be generated. This is probably due to the use of colors in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Usa le scelte rapide da tastiera per applicare gli stili al testo selezionato.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Nasconde automaticamente opzioni di ricerca e suggerimenti nella pagina di ricerca.", description: "" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions.", description: "" }, logoLinkDashboard: { message: "Dashboard", description: "" }, dashboardDashboardShortcutDesc: { message: "Mostra il pulsante +dashboard nella sidebar per aggiungerlo facilmente ai widget della Dashboard.", description: "" }, userInfoName: { message: "Informazioni Utente", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Larghezza della barra.", description: "" }, filteRedditDomainsTitle: { message: "Dominio", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Evidenzia punteggi", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Hide Mod Mail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Open On Highlight User", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "Leggi la politica sulla privacy di RES.", description: "" }, commentStyleContinuityTitle: { message: "Continuit\xE0", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Mostra dettagli di ogni account nell'Account Switcher, come karma o stato del gold.", description: "" }, browsingCategory: { message: "Navigazione", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Sei sicuro/a di voler eliminare il tag per l'utente: $1 ?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Move Down Thread", description: "" }, keyboardNavInboxTitle: { message: "Inbox", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: 'Rimuovi "Evidenzia"', description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "Sei stato disconnesso.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Mostra Sempre (default)", description: "" } }; // locales/locales/nl_NL.json var nl_NL_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Toon de Reactie Navigator wanneer een gebruiker gehighlight is.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Toon de precieze tijd bij reacties/berichten.", description: "" }, commentPrevDesc: { message: "Laat een live preview zien tijdens het bewerken van reacties, tekst posts, berichten, wiki pagina's en andere tekstbewerkingsvelden. Functioneert als een tekstbewerker met twee kolommen, voor het schrijven van grote lappen tekst.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Hoogte", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Verwissel de voorvertoning met de editor (zodat de preview links en de editor rechts staat).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "\xC9\xE9n Reactie Omlaag", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Link naar mijn dashboard tonen in het RES-menu.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "Gebruiker heeft reddit gold", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Move Up Sibling", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Weergegeven Tekst Per Account", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Comment Indent", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Alle RES modules uitschakelen", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Toon de precieze datum in de moderatielog (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Willekeurig", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focust de cursor in het zoekvak.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Volg Reacites Nieuw Tabblad", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "uitschrijven", description: "" }, showImagesAutoplayVideoTitle: { message: "Video Automatisch Spelen", description: "" }, orangeredName: { message: "Ongelezen Berichten", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Lege Modmail Verbergen", description: "" }, RESTipsDailyTipDesc: { message: "Laat elke 24 uur een willekeurige tip zien ", description: "" }, userHighlightHighlightModDesc: { message: "Reacties van mods highlighten", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Trefwoorden", description: "" }, filteRedditAllowNSFWTitle: { message: "NSFW Toestaan", description: "" }, hoverOpenDelayTitle: { message: "Vertraging Voor Openen", description: "" }, keyboardNavNextPageTitle: { message: "Volgende Pagina", description: "" }, commentToolsSuperKeyTitle: { message: "Super Key", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Welke kant link nummers worden weergegeven.", description: "" }, logoLinkCustomDestinationTitle: { message: "Aangepaste bestemming", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Reacite Permalinks Context", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Herstel opgeslagen tabblad", description: "" }, orangeredHideModMailDesc: { message: "Modmail knop in de gebruikersbalk verbergen.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "NSFW verbergen", description: "" }, nerHideDupesDesc: { message: "Vervaag of verberg posts die dubbel op de pagina zijn weergegeven.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "Gebruiker Tagger", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Comment Navigator Move Down", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Voeg een knop toe om de zoekopties te verbergen tijdens het zoeken.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Move up using Comment Navigator.", description: "" }, accountSwitcherDropDownStyleDesc: { message: "Het 'snoo'-logo gebruiken, of het oude keuzemenu?", description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Macro Lijst Blijft Open", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Toggle Comment Navigator", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Sneltoetsen", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Volg link in new tabblad (alleen link pagina's)", description: "" }, onboardingDesc: { message: "Kom meer te weten over RES op /r/Enhancement", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Hoofdniveau Highlight Kleur", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "NSFW Filter", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Vertraging Voor Vervagen", description: "" }, profileNavigatorFadeDelayTitle: { message: "Vervaag Vertraging", description: "" }, commentToolsLinkKeyTitle: { message: "Link Knop", description: "" }, userHighlightHighlightFriendTitle: { message: "Vriend Highlighten", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+snelkoppeling toevoegen", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "Subreddit voorpagina", description: "" }, keyboardNavFollowSubredditTitle: { message: "Volg Subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Toon goud", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "Stylesheet Lader", description: "" }, subredditInfoOver18: { message: "18+", description: "" }, userInfoIgnore: { message: "Negeren", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Gepersonaliseerde snelkoppelingen tonen voor ieder account", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "Menu Item", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "Weet je het zeker?", description: "" }, messageMenuAddShortcut: { message: "+snelkoppeling toevoegen", description: "" }, troubleshooterName: { message: "Probleemoplosser", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Gebruik Quick Message pop-up bij het opstellen van een nieuw bericht.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Inbox Nieuw Tabblad", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Permalink van huidige reactie in een nieuw tabblad openen (alleen reactiepagina's).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "Na het stemmen op een link, selecteer automatisch de volgende link.", description: "" }, userInfoHighlightColorDesc: { message: 'Kleur om een geselecteerde gebruiker te highlighten, als "highlight" in de muis-informatie is gebruikt.', description: "" }, onboardingName: { message: "RES Welkom Wagon", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Stop filtering from /r/all and /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Ga naar de bovenste reacite in de vorige thread (in reacties).", description: "" }, hoverName: { message: "RES Pop-up Hover", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Inschakelen Voor Reacties", description: "" }, spamButtonDesc: { message: "Voegt een Spam knop toe aan posts, om deze gemakkelijk te rapporteren.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Links een reacties van negeerde gebruikers helemaal verwijderen. Als een genegeerde reactie antwoorden heeft, de reacite samenvouwen een zijn inhoud verbergen in plaat van hem te verwijderen.", description: "" }, commentToolsLabel: { message: "label", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Tekst die automatisch in het onderwerpvak wordt ingevuld, tenzij het vak door de context automatisch wordt gevultd.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Controleer aantal reacties en bewerkingsdata van posts die je hebt bezocht.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Helpt je jouw dagelijkse dosis oranjerood te krijgen.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Nachtmodus aan", description: "" }, myAccountCategory: { message: "Mijn Account", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Standaard Minimum Reacties", description: "" }, yes: { message: "Ja", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Kleur om een geselecteerde gebruiker te highlighten bij muizen.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Menuitem", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus Op Zoekvak", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Kleur van vriend", description: "" }, searchHelperSearchByFlairTitle: { message: "Zoek Op Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "Gebruikerstag:", description: "" }, menuGearIconClickActionDesc: { message: "Wat gebeurt als je het tandenwielicoon klikt? Als niets is ingevult, opent bij muizen het menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Laat je zien hoe veel reacties er zijn achter gelaten sinds de laatste keer dat je een post bezocht hebt.", description: "" }, userTaggerPageXOfY: { message: "$1 van $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "Mijn gebruikertags", description: "" }, pageNavShowLinkNewTabDesc: { message: "Open de link in een nieuw tabblad", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Zoek Instellingen", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "Doe Geen Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "Video bekeken", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Maak het "Aan Het Reageren Als"-gedeelte vetgedrukt als je een alt account gebruikt. Het eerste account in de Account Wisselen-module wordt beschouwd als je hoofdaccount.', description: "" }, usernameHiderDisplayTextTitle: { message: "Weergegeven Tekst", description: "" }, commentToolsShowInputLengthDesc: { message: "Toon bij het indienen van een post het aantal ingevoerde tekens in de titel en tekstvelden, en geef aan wanneer je de limiet van 300 tekens voor de titel overschrijdt.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Beelden in het gehighlighte post gebied vergroten (fijnere beheersing).", description: "" }, nerName: { message: "Eindeloos Reddit", description: "" }, subredditInfoTitle: { message: "Title:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatic (requires geolocation)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "Volg nieuwe links en reacties in nieuwe tabbladen in de achtergrond.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Comment Hover Border", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "Waarme je gebruikersnaam te vervangen.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Vervagen", description: "" }, submitIssueDesc: { message: "Als je problems met RES hebt, bezoek dan /r/RESissues. Als je verzoeken of vragen hebts, bezoek dan /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Beelden in het gehighlighte post gebied verkleinen (fijnere beheersing).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Ga naar de volgende pagina (alleen link lijst pagina's).", description: "" }, notificationsPerNotificationType: { message: "per notification type", description: "" }, subredditTaggerDesc: { message: "Voeg je eigen tekst toe vooraan titels van posts op je voorpagina, op multireddits en op /r/all. Nuttig om posts in context te plaatsen.", description: "" }, spoilerTagsTransitionTitle: { message: "Transitie", description: "" }, backupAndRestoreReloadWarningNone: { message: "Niets doen.", description: "" }, profileNavigatorDesc: { message: "Verbeter het gaan naar verschillende delen van je gebruikerspagina.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Bevat aanvullende functies voor Reddit Markdown tabellen (momenteel alleen sorteren).", description: "" }, notificationsAlwaysSticky: { message: "always sticky", description: "" }, searchName: { message: "Doorzoek RES Instellingen", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Verzenden Als", description: "" }, pageNavName: { message: "Pagina Navigator", description: "" }, keyboardNavFollowLinkDesc: { message: "Follow link (link pages only).", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Hulpmiddelen Vertragen", description: "" }, subredditInfoFadeDelayDesc: { message: "Vertraging, in milliseconden, voordat hover tooltip vervaagt.", description: "" }, commentHidePerDesc: { message: "Slaat de status van verborgen reacties op over verschillende pagina's.", description: "" }, quickMessageDesc: { message: "Een pop-up dialoogvenster waarmee je gemakkelijk berichten kan sturen, waar dan ook op reddit. Berichten kunnen via het snel-bericht venster worden verstuurd door op control-enter of command-enter te drukken.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "gebruikersnaam", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links te tonen in het keuzemenu.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Bewerkt Tijd Highlighten", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Nachtmodus Begin", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "Gebruikersbalk verborgen", description: "" }, accountSwitcherUnknownError: { message: "Kon niet als $1 inloggen wegens een onbekende error: $2\n\nControleer je instellingen?", description: "" }, commentDepthAddSubreddit: { message: "+voeg subreddit toe", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Wissel Grote Editor Layout", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Automatisch laden", description: "" }, nerReturnToPrevPageDesc: { message: 'Teruggaan naar de pagina waar je voor het laatst was wanneer je de "terug" knop aanklikt?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Gedeeltemenu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Move to parent's next sibling (in comments).", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Score Hidden Time Left", description: "" }, hoverWidthDesc: { message: "Standaard pop-upbreedte.", description: "" }, iredditPreferRedditMediaDesc: { message: "Probeer beelden en video's van reddits mediaservers te laden.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Nachtmodus in/uitschakelen", description: "" }, userTaggerShowIgnoredTitle: { message: "Toon Genegeerd", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Eindelose reacties", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Toon een "MODWACHTRIJ" link in de subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Eigen Posts Uitzonden", description: "" }, userInfoHighlightColorTitle: { message: "Highlightkleur", description: "" }, keyboardNavModmailNewTabDesc: { message: "Ga naar modmail in een nieuw tabblad.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Vervaag vertraging", description: "" }, keyboardNavModmailNewTabTitle: { message: "Modmail Nieuw Tabblad", description: "" }, showImagesMaxHeightDesc: { message: 'Maximale hoogte van media (in pixels; vul nul in voor onbeperkt). Percentage van vensterbreedte kan ook worden gebruikt (b.v. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Toon de Abboneer knop?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Kleur van de balk bij muizen.", description: "" }, backupAndRestoreBackupDesc: { message: 'Maak een backup van jouw huidige RES instellingen. Download het met "bestand", of upload het naar een backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Hoogte", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Enter Filter Command Line", description: "" }, betteRedditDoNoCtrlFDesc: { message: 'Zoek bij gebruik van de zoekfunctie van de browser (Ctrl+F/Cmd+F) alleen reacties/posttekst doorzoeken, en niet de navigatielinks ("perma-link bron opslaan\u2026"). Staat standaard uit vanwege een kleine invloed op prestatie.', description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Direkte Link Vereisen", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatisch een aparte kleur voor iedere gebruikersnaam kiezen", description: "" }, backupName: { message: "Back-up & Herstellen", description: "" }, profileNavigatorSectionLinksDesc: { message: "Links om weer te geven in het contextmenu van een profiel.", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "Gebruik subreddit style", description: "" }, userHighlightModColorDesc: { message: "Kleur voor het highlighten van mods", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Begin automatisch met een link naar de huidige pagina in het bericht. (Als Quick Message vanaf de gerbuikersinfo popup werd geopend, wordt een link naar de huidige post of reactie gebruikt.)", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Deze subreddit aan je dashboard toevoegen", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Update andere tabbladen", description: "" }, nightModeUseSubredditStylesTitle: { message: "Subredditstijlen gebruiken", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "Selecteer automatische na het stemmen op een reactie de volgende reactie.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Mobiel Gfycat Gebruiken", description: "" }, commentToolsItalicKeyDesc: { message: "Sneltoets om tekst schuingedrukt te maken.", description: "" }, messageMenuLinksDesc: { message: "Links om weer te geven in het dropdownmenu van het mail icoon.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "Reddit verbergt enkele opties voor het sorteren van reacties (willekeurig, etc.) op de meeste pagina's. Deze optie onthult ze.", description: "" }, commandLineLaunchTitle: { message: "Launch", description: "" }, betteRedditDesc: { message: 'Voegt enkele interface-verbeteringen toe aan Reddit, zoals "alle reacties" links, de mogelijkheid om per ongeluk verborgen posts te herstellen, en meer.', description: "" }, resTipsDesc: { message: "Voeg tips/trucs toe met behulp van de RES console.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Move to previous sibling (in comments) - skips to previous sibling at the same depth.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Accentueer het kader van de reactie waar je overheen muist (schakel uit voor snellere prestatie).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Sneltoets om tekst vetgedrukt te maken.", description: "" }, hoverWidthTitle: { message: "Breedte", description: "" }, dashboardName: { message: "RES Dashboard", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Toon Laatst Bewerkte Tijdstempel", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Ingelogd blijven", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Cre\xEBer links naar X-gepostte subreddits in de tag van een post.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Vertraging, in milliseconden, voordat de hover tooltip vervaagt.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scrollen Naar Geselecteerde Item Bij Laden", description: "" }, styleTweaksClickToLearnMore: { message: "Klik hier om meer te leren", description: "" }, keyboardNavInboxNewTabDesc: { message: "Ga naar inbox in een nieuw tabblad.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Toon voorvertoning voor het aanpassen van subreddit instellingen.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "Alle gebruikers", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Controversieel Highlighten", description: "" }, pageNavToTopDesc: { message: "Toon een icoon op iedere pagina dat je bij het klikken naar het hoofd van de pagina neemt.", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expand/collapse comments (comments pages only).", description: "" }, commentPreviewDraftStyleTitle: { message: "Draft Style", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Toon de precieze datum in de wiki.", description: "" }, logoLinkInbox: { message: "Inbox", description: "" }, searchHelperDesc: { message: "Biedt hulp aan bij het gebruik van de zoekfunctie.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Follow Link New Tab Focus", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Muizen Vertraging", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Toon Tijstempel Posts", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Ongelezen Links Naar Inbox", description: "" }, presetsName: { message: "Presets", description: "" }, styleTweaksName: { message: "Stijl Tweaks", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Aankondigingen", description: "" }, hoverInstancesDesc: { message: "Specifieke pop-ups beheren", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Ga omhoog naar de vorige reactie in een reactiethread.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Toon Tijdstempel Zijbalk", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Vervaag Snelheid", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Muizen Vertraging", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Vertraging, in milliseconden, voordat een verborgen link vervaagt.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Toon Karma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Laat op de abboneerknop zien hoeveel multireddits deze subreddit bevatten.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatische nachtmodus", description: "" }, noPartDisableCommentTextareaDesc: { message: "Reageren Uitschakelen", description: "" }, nerReturnToPrevPageTitle: { message: "Terug naar vorige pagina", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Snelheid van de vervaaganimatie (in seconden).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'Voeg een "Bekijk de Volledige Context"-link toe bij het bekijken van de context van een enkele reactie.', description: "" }, messageMenuFadeDelayTitle: { message: "Vervaag Vertraging", description: "" }, commentToolsDesc: { message: "Voegt gereedschappen en sneltoetsen toe voor het schrijven van reacties, tekst posts, wiki pagina's en andere tekstbewerkingsvelden.", description: "" }, noPartName: { message: "Geen Deelname", description: "" }, presetsDesc: { message: "Kies uit verschillende samengestelde RES instellingen. Elke preset zet bepaalde elementen aan of uit, en reset niet je gehele configuratie.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Toon de knoppen voor tekstbewerking bij het invoerveld van ban notities.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Naar subreddit van geselecteerde link in een nieuw tabblad gaan (alleen linkpagina's)", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Toegang tot je huidige locatie werdt geweigerd. Het is nodig om de zonsopkomst en -ondergang uit te rekenen voor de automatische nachtmodus. Klik "$1" om dit uit te schakelen.', description: "" }, styleTweaksSubredditStyle: { message: "Subreddit Style", description: "" }, keyboardNavDownVoteTitle: { message: "Downvote", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Subreddit Bezoek Bewaren", description: "" }, keyboardNavMoveDownTitle: { message: "Omlaag", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Onstembaar Verbergen", description: "" }, notificationNotificationTypesTitle: { message: "Notification Types", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "Bij Reactie Stemmen Omlaag Gaan", description: "" }, hoverCloseOnMouseOutDesc: { message: "De pop-up ook sluiten als de muis weggehaald wordt, naast de sluitknop.", description: "" }, subredditTaggerName: { message: "Subreddit Tagger", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Alt Accounts Highlighten", description: "" }, userInfoDesc: { message: "Voegt een hover tooltip toe aan gebruikers.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "Bewaar standaard een link naar de reacties als je een gebruiker in een linkpost tagt. Anders wordt de link waar de post naar wijst gebruikt.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Sluiten Vertragin", description: "" }, profileNavigatorSectionMenuTitle: { message: "Gedeeltemenu", description: "" }, logoLinkDesc: { message: "Hiermee verander je de link op het reddit logo.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Sneltoets om het snelbericht-dialoog te openen.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Richting", description: "" }, dashboardDefaultPostsDesc: { message: "Aantal posts dat standaard wordt getoond in elke widget.", description: "" }, pageNavDesc: { message: "Zorgt dat je gemakkelijker over de pagina verplaatst.", description: "" }, menuGearIconClickActionTitle: { message: "Tandenwiel Icoon Klik Actie", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Laat mijn huidige gebruikersnaam zien onder Account Wisselen.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 is in $2 multireddits.", description: "" }, commentToolsStrikeKeyTitle: { message: "Strike Key", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Vertraging in milliseconden voordat de hover tooltip laadt.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Waar mogelijk, kleurblindenvriendelijke stijls gebruiken.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Standaard de Reactie Navigator tonen.", description: "" }, keyboardNavSaveRESTitle: { message: "Sla RES op", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "Bij Verbergen Omlaag Gaan", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Reactievakken", description: "" }, profileNavigatorName: { message: "Profiel Navigator", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "Nee", description: "" }, notificationFadeOutLengthTitle: { message: "Vervaag Looptijd", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Lineaire scroll stijl", description: "" }, userbarHiderUserbarStateDesc: { message: "Gebruikersbalk", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite is naar v$1 geupgrade.", description: "" }, keyboardNavShowParentsDesc: { message: "Hogere reacties tonen", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Pas RES gemakkelijk aan met verscheidene presets.", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "Toon een waarschuwing als een gebruiker op een link naar een geadvanceere instelling klikt terwijl geadvanceerde opties zijn verborgen.", description: "" }, commentHidePerName: { message: "Onthoud Verborgen Reacties", description: "" }, userInfoHoverInfoDesc: { message: "Toon informatie over gebruiker (karma, hoe lang ze reddit gebruiken) bij muizen.", description: "" }, selectedEntryName: { message: "Geselecteerd Item", description: "" }, betteRedditPinHeaderTitle: { message: "Header Vastpinnen", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Macro Placeholders", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Enable For Ban Messages", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Mail in Nieuw Tabblad Openen", description: "" }, versionDesc: { message: "Beheer huidige/vorige versie checks.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Your username, karma, preferences, RES gear, and so on are hidden. You can show them again by clicking the $1 button in the top right corner.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Selecteer automatisch het bovenste item als je scrollt.", description: "" }, keyboardNavFollowLinkTitle: { message: "Volg Link", description: "" }, keyboardNavMoveBottomDesc: { message: "Ga naar de bodem van lijst (op linkpagina's).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "Gebruiker Filteren Op Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatische Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Geselecteerde link of reactie upvoten (maar upvote niet verwijderen).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Vervaag Vertraging", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Reactie Permalinks", description: "" }, aboutOptionsLicenseTitle: { message: "Licensie", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Toon voorvertoning voor posts.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Beeld Naar Rechts", description: "" }, keyboardNavPrevPageDesc: { message: "Ga naar de vorige pagina (alleen link lijst pagina's).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Bezochte Posts Controleren", description: "" }, accountSwitcherUserSwitched: { message: "Je bent tot /u/$1 gewisseld.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Open links uit reacties in een nieuwe tab.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Kies hoe de kleuren voor gebruikersnamen worden bepaald", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Vervaag Snelheid", description: "" }, userInfoCommentKarma: { message: "Reactiekarma:", description: "" }, settingsConsoleDesc: { message: "Beheer je RES instellingen en voorkeuren.", description: "" }, userInfoFadeSpeedDesc: { message: "Snelheid van vervaaganimatie (in seconden).", description: "" }, userHighlightModColorTitle: { message: "Mod kleur", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Muizen Vertraging", description: "" }, messageMenuLinksTitle: { message: "Links", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Hoofdniveau Highlighten", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Reacites Links Nieuwe Tabbladen", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Error bij het laden van subreddit info.", description: "" }, accountSwitcherName: { message: "Account Wisselen", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Move to next sibling (in comments) - skips to next sibling at the same depth.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Vervaag Snelheid", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Nachtschakelaar", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Vertraging, in milliseconden, voordat hover tooltip vervaagt.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Inschakelen Voor Posts", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Reactiekarma Tonen", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Toon keyboard shortcut hulp", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "Dashboard Sneltoets.", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Verberg", description: "" }, userInfoLink: { message: "Link:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "$1 geleden", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Reacties van Vriend Highlighten", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Toon lengte van video's indien mogelijk.", description: "" }, userTaggerIgnoredPlaceholder: { message: "genegeerd", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Antwoorden", description: "" }, accountSwitcherSimpleArrow: { message: "gewone pijl", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Gebruik Quick Message", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Selecteer Laatste Item Bij Laden", description: "" }, userTaggerCommandLineDescription: { message: "Tagt auteur van huidig geselecteerde link/reactie", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "Alle opties zijn standaard weergegeven. Schakel dit uit om geadvanceerde opties te verbergen.", description: "" }, betteRedditFixHideLinksTitle: { message: "Fix Hide Links", description: "" }, commentNavName: { message: "Reactie Navigator", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Eerste Reactie Niet Highlighten", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Open Reactie Navigator.", description: "" }, presetsLiteDesc: { message: "RES Lite: alleen wat populair is", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Op Ctrl+Enter of Cmd+Enter drukken verstuurt je reactie/wiki-bewerking.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Niets", description: "" }, filteRedditShowFilterlineTitle: { message: "Show Filterline", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Gedeeltelinks", description: "" }, hideChildCommentsDesc: { message: "Staat je toe om onderliggende reacties te verbergen.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Kleur Muizen", description: "" }, submitHelperName: { message: "Post Helper", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: 'KIik de **opslaan-RES** knop onder een reactie om de reactie met RES op te slaan. Je kunt opgeslagen reacties op je gebruikerspagina bekijken onder het tabblad [opgeslagen](/user/me/saved/#comments).\n\nAls je een reactie met RES opslaat, wordt hij lokaal in je browser opgeslagen. Dit betekent dat je de reactie kunt bekijken *zoals hij er uit zag toen je hem opsloeg*, zelfs as hij later bewerkt of verwijderd wordt. Je kunt reacties met RES opslaan als je niet ingelogd bent, of als je in welke account ook ingelogd bent\u2014alle reacties zijn zichtbaar in \xE9\xE9n locatie. Je kunt alleen reacties met RES opgeslagen bekijken in de browser waar je RES ge\xEFnstalleerd hebt.\n\nOm reacties met reddit op te slaan, moet je in een account ingelogd zijn; de reactie is voor dat account opgeslagen; hij wordt niet getoond als je naar een ander account wisselt of uitlogt. Je kunt deze reacties altijd bekijken als je ingelogd bent in het account van waar je ze opsloeg, zelfs in andere browsers of apparaten.\n\nVisueel ziet het opslaan van reacties met reddit het gelijk uit als met RES\u2014maar de tekst wordt niet lokaal opgeslagen, dus wordt de *huidige* staat van de reactie getoond. Als de reactie bewerkt of verwijderd is sinds je hem opsloeg, dan ziet de tekst in jouw "opgeslagen" pagina ook anders uit.\n\nAls je [reddit gold](/gold/about) op een account heb, kun je een categorie/tag aan met reddit opgeslagen reacties aanvoegen. Je kunt dan opgeslagen reacties/posts op categorie filteren. (Dit kan niet met reacties die met RES opgeslagen zijn.)', description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Standaard Sorteren", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "Reactie Afgerond", description: "" }, keyboardNavImageSizeUpTitle: { message: "Beeld Vergroten", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "subredditstijl in/uitschakelen $1 voor: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Reacties", description: "" }, commentToolsStrikeKeyDesc: { message: "Sneltoets om tekst te doorstrepen.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Zoekopties Verbergen", description: "" }, logoLinkMyUserPage: { message: "Mijn gebruikerspagina", description: "" }, keyboardNavUseGoModeDesc: { message: 'Require initiating goMode before using "go to" shortcuts.', description: "" }, easterEggName: { message: "Easter Egg", description: "" }, commentToolsSuperKeyDesc: { message: "Sneltoets om van tekst superscript te maken.", description: "" }, keyboardNavUpVoteTitle: { message: "Upvote", description: "" }, notificationNotificationTypesDesc: { message: "Verschillende typen notificaties beheren.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "gecontroleerd", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Post Karma:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "subredditstijl in/uitschakelen $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Meer lezen", description: "" }, troubleshooterClearTagsDesc: { message: "Alle items voor gebruikers met stemtellen tussen +1 en -1 verwijderen (alleen niet-getagte gebruikers).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Reddit logobestemming.", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is een verzameling modules die het browsen van reddit veel makkelijker maakt.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Enable For Subreddit Config", description: "" }, accountSwitcherShowKarmaDesc: { message: "Laat de post- en reactiekarma van elke gebruiker zien onder Account Wisselen.", description: "" }, keyboardNavDesc: { message: "Toetsenbord navigatie voor reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Toon het getal (b.v. [+6]) in plaats van [vw]", description: "" }, pageNavToCommentTitle: { message: "Naar Nieuw Reactievak.", description: "" }, showImagesMediaControlsDesc: { message: "Overige beeldcontroles tonen bij muizen.", description: "" }, keyboardNavMoveToParentDesc: { message: "Move to parent (in comments).", description: "" }, keyboardNavGoModeDesc: { message: 'Enter "goMode" (necessary before using any of the below "go to" shortcuts).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Zoek Pagina Tabbladen", description: "" }, multiredditNavbarAddShortcut: { message: "+voeg multireddit gedeelte-snelkoppeling toe", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "RES Opdrachtregel", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Beeld Naar Links", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Bewerkingstijdstempels dikgedrukt weergeven (b.v. "laatst 50 minuten geleden bewerkt").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Vervaag Vertraging", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Toon Taggen Icoon", description: "" }, dashboardDesc: { message: "Het RES Dashboard bevat een aantal toepassingen zoals widgets en andere handige hulpmiddelen.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "Sluit de lijst met macro's niet na het selecteren van een macro.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddits", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Beelden in het gehighlighte post gebied verlagen.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Volg Permalink Nieuw Tabblad", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Beeldhoogte wordt onbeperkt in gehighlightte post vak.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "Tag gebruiker $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Probleem Indienen", description: "" }, aboutOptionsFAQTitle: { message: "FAQ", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Toon gebruikerdetails", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "Een donkere, oogvriendelijkere versie van reddit geschikt voor 's nachts.\n\nLet op: Deze schakelaar schakelt alle toepassingen van de nachtmodusmodule uit. Gebruik de nightModeOn schakel hieronder om alleen maar de nachtmodus uit te schakelen.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Subreddit style uitgeschakeld voor subreddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Kleur van gehighlighte tekst.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Update Current Tab", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Comment Navigator Move Up", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Ga naar profiel.", description: "" }, dashboardTagsPerPageDesc: { message: "Hoeveel gebruikerstags per pagina te tonen op het [mijn gebruikerstags](/r/Dashboard/#userTaggerContents) tabblad. (Vul nul in om alle op \xE9\xE9n pagina te tonen)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "Links en reacties in nieuwe tabbladen bekijken.", description: "" }, onboardingUpdateNotificationName: { message: "Update Notification", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Vertraging, in millisecondes, voordat de hover tooltip vervaagt.", description: "" }, nightModeNightModeStartDesc: { message: "Hoe laat automatische nachtmodus begint.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Expandos Tonen", description: "" }, nerAutoLoadDesc: { message: "Nieuwe pagina automatisch laden bij scrollen (wanneer dit uitstaat, laden wanneer je klikt)", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "sticky", description: "" }, userHighlightAdminColorTitle: { message: "Admin kleur", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Toon wiki autoaanvul-hulpmiddel bij het typen van posts, reacties en antwoorden.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Beeld Verkleinen", description: "" }, orangeredHideEmptyModMailDesc: { message: "Verberg de modmail knop als de inbox leeg is.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: `De 'opgeslagen' tab bevindt zich nu in de multireddit-zijbalk. Dit zorgt ervoor dat er een 'opgeslagen' link in de header komt te staan (naast de "populair", "nieuw", etc. tabs).`, description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Standaardkleur van de balk.", description: "" }, toggleOff: { message: "uit", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Toon menu voor automatisch aanvullen van subreddits bij het typen in posts en reacties.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Beeld Fijn Verkleinen", description: "" }, userInfoHighlightButtonDesc: { message: 'Toont "highlight" knop als je over een gebruikersnaam muist, om posts/reacties van die gebruiker te onderscheiden.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Toon Tijdstempel Wiki", description: "" }, commentToolsMacrosDesc: { message: "Voeg knoppen toe om veelgebruikte tekstfragmenten in te voegen.", description: "" }, keyboardNavProfileTitle: { message: "Profiel", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Modwachtrij Linken", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Subreddits Filteren Van", description: "" }, userTaggerShowAnyway: { message: "Alsnog tonen?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Clear Cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+voeg account toe", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Markeren", description: "" }, filteRedditExcludeModqueueDesc: { message: "Niets filteren op modwachtrijen (modwachtrij, meldingen, spam, etc.). ", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifications.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Abbonees:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Ga naar de bovenste reactie in de vorgie thread (in reacties).", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Voeg knoppen voor opmaak (vetgedrukt, schuingedrukt, tabellen, etc.) toe aan het tekstveld voor posts, reacties en andere snudown/markdown-velden.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Naar Bodem", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Kleur Muizen", description: "" }, spoilerTagsName: { message: "Globale Spoiler Tags", description: "" }, betteRedditVideoUploadedDesc: { message: "Toon uploaddatum van video's indien mogelijk.", description: "" }, accountSwitcherLoginError: { message: "Kon niet als $1inloggen omdat of de gebruikersnaam of het wachtwoord fout is.\n\nControleer je instellingen?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Reacties Opslaan", description: "" }, hoverFadeSpeedDesc: { message: "Snelheid van vervagen (in seconden).", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Toon de precieze datum (Zon 16 Nov 20:14:56 2014 UTC) in plaats van een relatieve datum (7 dagen geleden) voor posts.", description: "" }, submissionsCategory: { message: "Posts", description: "" }, keyboardNavSaveCommentDesc: { message: "Huidige reactie tot je redditaccount opslaan. Dit is berijkbaar van overal waar je ingelogd bent, maar bewaart de originele tekst niet als die bewerkt of verwijderd is.", description: "" }, keyboardNavSavePostTitle: { message: "Post opslaan", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Tekstkleur", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Zoekopties Toevoegen", description: "" }, penaltyBoxDesc: { message: "Automatisch ongebruikte hulpmiddelen vertragen of uitschakelen.", description: "" }, searchHelperSearchByFlairDesc: { message: "Zoek de flair in de subreddit door op de flair van een post de klikken.\nWerkt mogelijk niet in enkele subreddits waar de echte flair wordt verborgen en een valse flair wordt gebruikt met CSS. Je kunt did probleem vermeiden door de subredditstijl uit te schakelen.", description: "" }, subredditInfoDesc: { message: "Voegt een hover tooltip aan subreddits toe.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup in $1 opgeslagen.", description: "" }, nightModeNightSwitchDesc: { message: "Nachtschakelaar gebruiken: een schakelaar tussen dag- en nachtreddit geplaatst in het instellingen-keuzemenu.", description: "" }, commentDepthDesc: { message: "Laat je toe om de diepte van reacties te zien als je op links naar reacties klikt\n\n0 = Alles, 1 = hoofd niveau, 2 = Reacties tot hoofd niveau, 3 = Reacties tot reacties tot hoofd niveau, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Schakel NP-modus in subreddits waar je bent geabboneerd.", description: "" }, commentToolsQuoteKeyDesc: { message: "Sneltoets om tekst te citeren.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Hoe laat automatische nachtmodus eindigt.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "RES Albums Voorkeur Geven", description: "" }, userInfoUseQuickMessageTitle: { message: "Snel Bericht Gebruiken", description: "" }, tableToolsSortTitle: { message: "Sorteren", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filtert alle links met NSFW-label.", description: "" }, logoLinkName: { message: "Logo Link", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "Als er iets niet goed werkt, bezoek dan /r/RESissues voor hulp.", description: "" }, nightModeAutomaticNightModeNone: { message: "Uitgeschakeld", description: "" }, keyboardNavMoveUpDesc: { message: "Move up to the previous link or comment in flat lists.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Beelden in een nieuw tabblad/venster openen as je ze klikt?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "Geen actie is genomen", description: "" }, commentPreviewEnableForWikiTitle: { message: "Inschakelen Voor Wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Gebruikerspagina's Uitzonden", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "naam", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Autoselecteren Bij Scrollen", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "Inline afbeelding weergave", description: "" }, commentStyleCommentIndentDesc: { message: "Reacties [x] pixels inspringen (alleen het getal opgeven, geen 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "RES Uitschakelen", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Downvote Zonder Schakelaar", description: "" }, userInfoRedditorSince: { message: "Redditor sinds:", description: "" }, userTaggerShow: { message: "Laat zien", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Reactiekarma evenals post karma tonen.", description: "" }, hoverFadeSpeedTitle: { message: "Vervaagsnelheid", description: "" }, necLoadChildCommentsTitle: { message: "Laad lagere reacties", description: "" }, showParentName: { message: "Laat Hoger Reactie zien bij Hoveren", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Nummers", description: "" }, showImagesShowViewImagesTabDesc: { message: 'Toont een tabblad "Beelden tonen" boven iedere subreddit, voor het gemakkelijke tonen/verbergen van alle beelden tegelijkertijd.', description: "" }, accountSwitcherShowGoldDesc: { message: "Laat de Reddit Goud status van elke gebruiker zien onder Account Wisselen", description: "" }, keyboardNavMoveToParentTitle: { message: "Move To Parent", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Toon Tijdstempel Reacties", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Accounts", description: "" }, spoilerTagsDesc: { message: "Verbergt spoilers op profielpagina's van gebruikers.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Geselecteerde link of reactie downvoten (maar downvote niet verwijderen).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Gold tonen", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Expando In/Uitschakelen", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "reactie diepte", description: "" }, keyboardNavImageMoveDownTitle: { message: "Beeld Omlaag", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Vorig Beeld in Gallerij", description: "" }, userTaggerTaggedUsers: { message: "Getagde gebruikers", description: "" }, subredditInfoHoverDelayDesc: { message: "Vertraging, in milliseconden, voordat hover tooltip laadt.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "\xC9\xE9n Thread Omhoog", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Posttitel Hoofdletters", description: "" }, showKarmaDesc: { message: "Voeg meer informatie en tweaks toe aan het karma naast je gebruikersnaam in de gebruikersmenubalk.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Snelkoppelingen per account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Kleur Controversieel Highlight", description: "" }, userHighlightAdminColorDesc: { message: "Kleur voor het highlighten van admins", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Standaard Reactiediepte", description: "" }, styleTweaksNavTopDesc: { message: "Verplaatst de gebruikersnaam navigatiebalk bovenaan het venster (mooi op netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Hulpmiddelen", description: "" }, hideChildCommentsNestedDesc: { message: 'Voeg "verberg lagere reacties" knop toe tot alle reacties met reacties erop, in plaats van alleen reacties op het hoofdniveau.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Tel lengte van abbonament.", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Move Down Parent Sibling", description: "" }, dashboardTagsPerPageTitle: { message: "Tags per pagina", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log", description: "" }, userTaggerStoreSourceLinkDesc: { message: "Bewaar standaard een link naar de link/reactie waar je een gebruiker hebt getagd.", description: "" }, singleClickOpenOrderTitle: { message: "Openvolgorde", description: "" }, multiredditNavbarDesc: { message: "Verbeter de navigatiebalk aan de linkerkant van de voorpagina.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Quote Key", description: "" }, keyboardNavHideDesc: { message: "Verberg link.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallerij Als Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Vet Knop", description: "" }, xPostLinksName: { message: "X-post Links", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Snelkoppeling", description: "" }, userTaggerShowTaggingIconDesc: { message: "Toon een taggen hulpmiddle achter iedere gebruikersnaam.", description: "" }, commentPreviewDraftStyleDesc: { message: "Pas een 'concept'-achtergrond toe in het voorbeeld om het te onderscheiden van het reactietekstveld.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Reacties Volgen", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "modmail", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Schakel standaard de optie "reacites verzenden naar mijn inbox" als je een nieuwe tekstpost inzendt.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Reactie Max Hoogte", description: "" }, userTaggerColor: { message: "Kleur", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Reacties opschonen", description: "" }, messageMenuFadeSpeedDesc: { message: "Snelheid van de vergvaaganimatie (in seconden).", description: "" }, userInfoComments: { message: "Reacties", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Sync Filters Forceren", description: "" }, nerShowServerInfoTitle: { message: "Serverinformatie tonen", description: "" }, troubleshooterSettingsReset: { message: "Alle instellingen hersteld. Laad opnieuw op om het resultaat te zien.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Beelden in het gehighlighte post gebied naar links verplaasten.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Permalink van huidige reactie openen (alleen reactiepagina's).", description: "" }, subredditInfoAddRemoveShortcut: { message: "snelkoppeling:", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Kleurblindenvriendelijk", description: "" }, userInfoSendMessage: { message: "bericht sturen", description: "" }, showKarmaUseCommasDesc: { message: "Gebruik een punt voor grote karmagetallen.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Stemknoppen Uitschakelen", description: "" }, commentToolsLinkKeyDesc: { message: "Sneltoets om een hyperlink toe te voegen.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "\xC9\xE9n Reactie Omhoog", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "pagina", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Verander de standaard context waarde op de context link.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Beeld Fijn Vergroten", description: "" }, pageNavToCommentDesc: { message: "Voeg een icoon toe tot iedere pagina die je met een klik naar een nieuw reactievak neemt.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Show unread message count in favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Zoekhulp", description: "" }, keyboardNavNextGalleryImageDesc: { message: "Ga naar het volgende beeld in een inline gallerij.", description: "" }, nightModeName: { message: "Nacht Modus", description: "" }, filteRedditExcludeModqueueTitle: { message: "Modwachtrij Uitsluiten", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Start filter opdrachtregel", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "can't set tag - no post/comment selected.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "aan", description: "" }, contextDesc: { message: "Voegt een link aan de gele informatiebalk toe, om dieper gelinkte reacties in hun volledige context te bekijken.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Upvote Zonder Schakelaar", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Naar Hoofd", description: "" }, nightModeAutomaticNightModeUser: { message: "Door gebruiker voorgedefineerde uren", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Schakel Uit Reacties Verzenden Naar Inbox", description: "" }, userTaggerIgnored: { message: "Genegeerd", description: "" }, commentToolsCommentingAsDesc: { message: "Toont je huidige ingelogde gebruikersnaam om posten vanaf het verkeerde account te voorkomen.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Volg Link Nieuw Tablad", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "Dit kun je later veranderen in de $1instellingen.", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "in/uitschakelen", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "Laat na het wisselen van gebruiker een waarschuwing in andere tabbladen zien.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Reddit Enhancement Suite instellingen backuppen en herstellen.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Dropdownstijl", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Op Ctrl+Enter of Cmd+Enter drukken verstuurt je post.", description: "" }, RESTipsMenuItemTitle: { message: "Menuitem", description: "" }, optionKey: { message: "optie ID", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) en heel veel leden van het gemeenschap hebben medegewerkt op de code, het ontwerpen en/of goeie idee\xEBn voor RES. ", description: "" }, stylesheetDesc: { message: "Laad extra stylesheets of je eigen stukje CSS.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "wachtwoord", description: "" }, userInfoUnignore: { message: "Negeren ongedaan maken", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "Macro's", description: "" }, nightModeAutomaticNightModeDesc: { message: "Automatische nachtmodus inschakelen.\n\nIn de automatische modus word je gevraagt je locatie de delen. Je locatie wordt alleen gebruikt om zonsopkomst en -ondergang te bepalen.\n\nIn de gebruiker-bepaalde tijdmodus begint en eindigt de nachtmodus automatisch om de hieronder ingevulde tijden.\n\nSchakel hadmatig de nachtmodusschakelaar om tijdelijk de automatische nachtmodus te negeren.\nConigureer hieronder hoe lang het negeren duurt.", description: "" }, imgurPreferredImgurLinkTitle: { message: "Imgur Link Voorkeur Geven", description: "" }, singleClickOpenOrderDesc: { message: "In welke volgorde de link/reacties te openen.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, presetsNoPopupsTitle: { message: "Geen Popups", description: "" }, searchCopyResultForComment: { message: "Kopieer dit voor een comment", description: "" }, moduleID: { message: "module ID", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Aantal ongelezen berichten in pagina-/tabbladtitel tonen?", description: "" }, xPostLinksXpostedFrom: { message: "x-posted from", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Toggle Children", description: "" }, commandLineLaunchDesc: { message: "RES Commandoregel Tonen", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Menu openen (geen muizen)", description: "" }, subredditInfoName: { message: "Subreddit Info", description: "" }, betteRedditVideoUploadedTitle: { message: "Video ge\xFCpload", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Vervagingsanimatiesnelheid (in seconden).", description: "" }, aboutOptionsDonate: { message: "Steun de verdere ontwikkeling van RES.", description: "" }, aboutOptionsBugsTitle: { message: "Bugs", description: "" }, nerShowPauseButtonTitle: { message: "Laat de pauzeknop zien", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Bewaar de laatste keer dat je een subreddit hebt bezocht.", description: "" }, singleClickName: { message: "Enkele Klik Opener", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Gebruik Link Van Reactie Als Bron", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Staat je toe de weergegeven tekst voor een bepaald account aan te geven. (Handig samen met de Account Wisselaar.)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Aantal dagen voordat RES op houdt een bekeken thread in de ogen te houden.", description: "" }, orangeredHideEmptyMailTitle: { message: "Lege Mail Verbergen", description: "" }, versionName: { message: "Versie Manager", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset de favicon voor het verlaten van de pagina.\n\nDit voorkomt dat het icoon voor ongelezen berichten in bladwijzers terecht komt, maar kan het functioneren van de browser cache aantasten.", description: "" }, commentDepthName: { message: "Aangepaste Reactie Diepte", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Show Unread Count In Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Snelheid van vervaaganimatie (in seconden).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Muizen Vertraging", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Verberg de nieuwe modmail knop in de gebruikersbalk.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Laat de abonneerknop zien", description: "" }, commentToolsKey: { message: "toets", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Gebruikersnamen autokleuren", description: "" }, commentStyleName: { message: "Reactie Stijl", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Alle Opties Tonen", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "Voorpagina", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatisch scrollen naar de geselecteerde post/reactie als de pagina laadt.", description: "" }, orangeredHideEmptyMailDesc: { message: "Verberg de mail knop als de inbox leeg is.", description: "" }, commentQuickCollapseDesc: { message: "Schakelt het samenvouwen van reacties in en uit bij dubbelklikken op de header.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "Mail in een nieuw tabblad openen als je op de mailenvelop of het modmail icoon klikt.", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "tekst", description: "" }, notificationStickyTitle: { message: "Sticky", description: "" }, aboutOptionsAnnouncements: { message: "Lees het laatste nieuws op /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Automatisch alle antwoorden op reacties verbergen, of een link voorzien om ze handmatig te verbergen?", description: "" }, showImagesHideNSFWDesc: { message: "Aangekruist worden NSFW-gemarkeerde beelden niet getoond.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Deze subreddit van je snelkoppelingbalk verwijderen", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "Vorige Pagina", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Reacties arceren met een kader voor lees- en navigatiegemak bij posts met veel reacties.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "Bij Stemmen Omlaag Gaan", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Overige tabbladen opnieuw laden", description: "" }, nerHideDupesTitle: { message: "Duplicaten verbergen", description: "" }, keyboardNavFrontPageDesc: { message: "Ga naar voorpagina.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Volg Link En Reacties Nieuw Tabblad Achtergrond", description: "" }, singleClickDesc: { message: "Voegt een [l+c] link toe, deze opent zowel de post link en reactiepagina in nieuwe tabbladen met \xE9\xE9n druk op de knop.", description: "" }, showImagesShowViewImagesTabTitle: { message: '"Beelden Tonen" tabblad tonen', description: "" }, wheelBrowseName: { message: "Bladeren met Scrollwiel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Envelop (inbox) icoon in rechter bovenhoek tonen.", description: "" }, aboutName: { message: "Over RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "Backup", description: "" }, productivityCategory: { message: "Productiviteit", description: "" }, showImagesMaxWidthDesc: { message: 'Maximale breedte van media (in pixels; vul nul in voor onbeperkt). Percentage van vensterbreedte kan ook worden gebruikt (b.v. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "Geen subreddit gespecificeerd.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Sluiten Bij Muis Weghalen", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Ga naar de bovenste reactie in de huidige thread (in reacties).", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Standaard Onderwerp", description: "" }, betteRedditFixHideLinksDesc: { message: 'Verandert "verbergen" links in "tonen" als de post verborgen is.', description: "" }, commentQuickCollapseName: { message: "Reactie Snel Samenvouwen", description: "" }, troubleshooterEntriesRemoved: { message: "$1 items verwijderd.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Priv\xE9-Bezochte Posts Controleren", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Overschrijf direct jouw eigen /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Voeg tabbladen aan tot de zoekpagina", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter Saves Live Threads", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Subreddit Reactiedieptes", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Gebruik de editor met 2 kolommen.", description: "" }, floaterName: { message: "Zwevende Eilanden", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Verberg de nieuwe modmail knop als de inbox leeg is.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "NSFW Snel In/Uitschakelen", description: "" }, filteRedditAllowNSFWDesc: { message: "Verberg geen NSFW posts van bepaalde subreddits wanneer het NSFW filter aanstaat.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Voegt een schakelaar toe om gemakkelijk de gebruikersbalk te verbergen of te laten verschijnen.", description: "" }, showImagesDesc: { message: "Opent afbeeldingen direct in de pagina door op een enkele knop te drukken. Heeft ook configuratie-opties, neem een kijkje!", description: "" }, commentToolsMacroButtonsTitle: { message: "Macro Knoppen", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transitie Zoektabbladen", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "Eigen posts niet filteren.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Muizen Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "De gebruikersnaam verberger verbergt jouw gebruikersnaam van je scherm wanneer je bent ingelogd op reddit. Hierdoor kan iemand die over je schouder kijkt op je werk, of wanneer je een screenshot van je scherm maakt, niemand je reddit gebruikersnaam zien. Dit heeft alleen effect op jouw beeldscherm. Er is geen manier om te posten of te reageren op reddit zonder dat deze post naar jouw huidige account gelinkt wordt.", description: "" }, betteRedditName: { message: "beteReddit", description: "" }, voteEnhancementsName: { message: "Stem Verbeteringen", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Toon Verborgen Sorteeropties", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Breekt posttitels van langer dan 1 regel af met een ellips.", description: "" }, subredditInfoAddRemoveDashboard: { message: "dashboard", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autautoaanvullen", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "Gebruiker automatisch aanvullen", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Vervaag Snelheid", description: "" }, aboutOptionsCodeTitle: { message: "Code", description: "" }, scrollOnCollapseTitle: { message: "Scrollen Bij Samenvouwen", description: "" }, nerReversePauseIconDesc: { message: 'Toon "pause" icoon als auto-laden gepauseerd is en "play" icoon als het actief is.', description: "" }, userTaggerUsername: { message: "Gebruikersnaam", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Beelden in het gehighlighte post gebied verhogen.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Doneer", description: "" }, keyboardNavGoModeTitle: { message: "Go Mode", description: "" }, keyboardNavName: { message: "Toetsenbord Navigatie", description: "" }, userHighlightModColorHoverDesc: { message: "Kleur om een mods te highlighten bij muizen.", description: "" }, userHighlightName: { message: "Gebruiker Highlighter", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Huidige subreddit/multireddit", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Volg Permalink", description: "" }, hoverDesc: { message: "Pas het gedrag aan van de grote informatieve pop-ups, die verschijnen als je ergens je muis op houdt.", description: "" }, modhelperName: { message: "Mod Helper", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Verberg Alle Onderliggende Reacties", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'Je moet "$1" of "$2" specificeren.', description: "" }, keyboardNavMoveUpTitle: { message: "Omhoog", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Volledige Link Flair Tonen", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Snel Bericht Openen", description: "" }, pageNavToTopTitle: { message: "Naar boven", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Scroll Met Expando", description: "" }, userTaggerTag: { message: "Tag", description: "" }, userbarHiderToggleUserbar: { message: "Gebruikersbalk In/Uitschakelen", description: "" }, nerReversePauseIconTitle: { message: "Pauzeicoon omkeren", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Kleur Muizen", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Deze subreddit van je dashboard verwijderen", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Wissel tot gebruikersnaam: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Kleur om een vrienden te highlighten bij muizen.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Wijzig indeling of laat extra informatie zien over stemmen op posts en reacties. ", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Subreddit Manager", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Scrollbalk toevogen aan reacties langer dan [x] pixels (vul nul in voor onbeperkt).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Suggesties", description: "" }, keyboardNavSaveCommentTitle: { message: "Commentaar opslaan", description: "" }, nerPauseAfterEveryTitle: { message: "Pauzeren na elke", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Opdrachtregel om Reddit te navigeren, RES instellingen te veranderen en voor het debuggen van RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "Ga naar het vorige beeld in een inline gallerij.", description: "" }, userInfoInvalidUsernameLink: { message: "Ongeldige gebruikersnaamlink", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Let op: Dit verwijdert al je RES instellingen, o.a. tags, opgeslagen reacties, filters etc.!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Move down using Comment Navigator.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Nachtmodus Eind", description: "" }, showKarmaShowGoldDesc: { message: "Geguldicoon tonen als een gebruiker gold heeft.", description: "" }, localDateDesc: { message: "Laat de datum in jouw lokale tijdszone zien wanneer je over een relatieve datum beweegt.", description: "" }, noPartEscapeNPTitle: { message: "NP Verlaten", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "Het tabblad dat wordt opengevouwen wanneer je een zoekt.", description: "" }, userInfoGildCommentsDesc: { message: 'Staat je toe gold te geven door "geef gold" te klikken in de informatie die toont als je over een reactie muist.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Kern", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "minimum reacties", description: "" }, aboutOptionsCode: { message: "Jij kan RES verbeteren met code, ontwerpen en idee\xEBn! RES is een open-source project op GitHub.", description: "" }, commentNavDesc: { message: "Hiermee kan je gemakkelijk bepaalde reacties vinden, zoals die van de OP, mod, etc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Op Ctrl+Enter of Cmd+Enter drukken verstuurt updates aan je live post.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite is uitgegeven onder de GPL v3.0 licentie.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Enable On Ban Messages", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Aantal dagen voordat thread-abonnementen aflopen.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "$1 van RES weet niet zeker wat te doen als je de sneltoest $2drukt. $3 Wat wil je dat $4 doet?", description: "" }, styleTweaksToggleSubredditStyle: { message: "subredditstijl in/uitschakelen", description: "" }, RESTipsDailyTipTitle: { message: "Dagelijkse Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Nummer Positie", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Ga altijd naar de inbox, niet naar ongelezen berichten, als je op oranjerood klikt.", description: "" }, newCommentCountName: { message: "Nieuwe Reactie Teller", description: "" }, keyboardNavSlashAllDesc: { message: "Ga naar /r/all", description: "" }, keyboardNavShowParentsTitle: { message: "Hogere reacties tonen", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "Voorpagina", description: "" }, commentToolsCategory: { message: "categorie", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "Toon bij muizen over [score verborgen] de resterende tijd in plaats van de totale duur.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Toon de tijd dat een tekstpost/reactie aangepast is, zonder over de tijdstempel te hoeven muizen.", description: "" }, aboutOptionsSearchSettings: { message: "RES instellingen zoeken.", description: "" }, stylesheetRedditThemesDesc: { message: "Je kunt het uiterlijk van reddit zelf aanpassen! Een reddit thema wordt overal toegepast waar de standaard reddit stijl aanwezig is en subredditstijl is via reddit uitgeschakeld.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Volgend Beeld in Gallerij", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Subreddit style ingeschakeld voor subreddit: $1.", description: "" }, notificationsNeverSticky: { message: "never sticky", description: "" }, keyboardNavMoveDownDesc: { message: "Move down to the next link or comment in flat lists.", description: "" }, keyboardNavToggleViewImagesDesc: { message: '"Beelden Tonen" knop in/uitschakelen.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Toon de [-] 'samenvouwen' knop in de inbox.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Zelfs als geabboneerd", description: "" }, menuGearIconClickActionToggleMenu: { message: "Menu openen", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Voeg deze subreddit toe naar je sneltoetsen bar.", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Herlaad andere tabbladen", description: "" }, betteRedditVideoTimesTitle: { message: "Video Looptijden", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "SFW Geschiedenis", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Uiterlijk", description: "" }, userTaggerShowIgnoredDesc: { message: "Toon een link om een genegeerde link of reactie te laten zien.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "Italic Key", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Gebruik Reddit Filters", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Stempijlen verbergen op thread waar je niet kunt stemmen (b.v. oude gearchiveerde threads).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Selecteert automatisch het laatste element dat je had geselecteerd. ", description: "" }, aboutOptionsPresetsTitle: { message: "Voorinstellingen", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Standaard diepte, te gebruiken voor alle subreddits die niet hieronder benoemd zijn.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Toon Alle Opties Waarschuwing", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Kies een kleur voor het "controversieel" icoon.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Sta toe deze subreddits hun stijlen te gebruiken tijdens de nachtmodus, als useSubredditStyles uitgeschakeld is.", description: "" }, nerHideDupesHide: { message: "Verberg", description: "" }, aboutOptionsContributorsTitle: { message: "Bijdragers", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Commandoregel openen.", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Hulp In/Uitschakelen", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "Focus tab bij volgen van een link in een nieuwe tab", description: "" }, aboutOptionsFAQ: { message: "Kom meer te weten over RES in de /r/Enhancement wiki.", description: "" }, betteRedditPinHeaderDesc: { message: "Pin de subredditbalk, -gebruikersmenu of -header vast aan de bovenkant, zodat deze meebeweegt bij het scrollen.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Toon de precieze datum in de zijbalk.", description: "" }, keyboardNavUpVoteDesc: { message: "Geselecteerde link of reactie upvoten (of upvote verwijderen).", description: "" }, singleClickOpenFrontpageTitle: { message: "Voorpagina Openen", description: "" }, messageMenuHoverDelayDesc: { message: "Vertraging, in milliseconden, voordat de hover tooltip laadt.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Naar subreddit van geselecteerde link gaan (alleen linkpagina's)", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Houd mij ingelogd tussen sessies.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Toggle expando (image/text/video).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "Bekijk reacties op link in een nieuw tabblad.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "Back-up", description: "" }, profileNavigatorHoverDelayDesc: { message: "Vertraging, in milliseconden, voordat de tooltip laadt.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES slaat je toe bepaalde subredditstijls uit te schakelen!", description: "" }, customTogglesDesc: { message: "Stel aangepaste aan/uit schakelaars in voor verschillende delen van RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Opmaak-gereedschap Knop", description: "" }, commentPreviewEnableForWikiDesc: { message: "Toon voorvertoning voor wiki pagina's.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Kies wanneer volledige link flair wordt getoond.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Beeld Omhoog", description: "" }, settingsNavDesc: { message: "Helpt je gemakkelijker je weg te vinden in de RES Instellingen Console.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Reacties Samenvouwen in Inbox", description: "" }, usernameHiderName: { message: "Gebruikersnaam Verberger", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "ingeschakeld", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Tabel Hulpmiddelen", description: "" }, showParentFadeSpeedTitle: { message: "Vervaag Snelheid\n", description: "" }, userInfoUserNotFound: { message: "Gebruiker niet gevonden", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Kort lange links in", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Start RES Opdrachtregel", description: "" }, nerHideDupesDontHide: { message: "Niet verbergen", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "NSFW Knop Highlighten", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Toon Gebruikersnaam Bij Muizen", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 wordt uitgeschakelt wegens gebrek aan gebruik. Je kunt het weer inschakelen in de RES-instellingenconsole.", description: "" }, accountSwitcherCliHelp: { message: "Wissel gebruiker tot [gebruikersnaam].", description: "" }, userTaggerYourVotesFor: { message: "jouw stemmen voor $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Voeg macroknoppen toe aan het tekstveld van posts, reacties en andere snudown/markdown-velden.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Beelden in het gehighlighte post gebied naar rechts verplaasten.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "Voor multireddit snelkoppelingen zoals a+b+c/x, toon een keuzemenu zoals a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Kleur toevoegen tot het "controversieel" icoon.\n\nDit icoon kan in/uitgeschakeld worden in jouw [reddit voorkeuren](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alien)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Muis-kleuren Ontwikkelen", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Open Grote Editor", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height", description: "" }, pageNavShowLinkNewTabTitle: { message: "Link in nieuw tabblad tonen", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatisch muis-kleur ontwikkelen, gebaseerd op normale kleur.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Niet-lineaire scroll stijl", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Open het huidige markdown-veld in de grote editor. (Alleen wanneer er een markdown-veld gefocust is).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Diepte instellen voor links naar specifieke reacties met context.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Ga naar subreddit voorpagina.", description: "" }, menuName: { message: "RES Menu", description: "" }, messageMenuDesc: { message: "Beweeg over het post-icoontje om toegang tot verschillende berichten te krijgen, of om een nieuw bericht te schrijven.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Toon een menu met links naar gedeelten van de multireddit als je over de link muist.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Toon een transitie-animatie als je tabbladen opent en sluit.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "Selecteer automatisch de volgende link na het verbergen van een link.", description: "" }, commentStyleDesc: { message: "Pas de leesbaarheid van reacties aan.", description: "" }, keyboardNavRandomDesc: { message: "Ga naar willekeurige subreddit.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "Reageren Als", description: "" }, keyboardNavImageSizeUpDesc: { message: "Beelden in het gehighlighte post gebied vergroten.", description: "" }, floaterDesc: { message: "Beheer vrij-zwevende RES elementen.", description: "" }, subredditManDesc: { message: "Hiermee kan je jouw eigen bovenbalk aanpassen met je eigen subreddit shortcuts, inclusief keuzemenu's, multi-reddits en meer.", description: "" }, keyboardNavSavePostDesc: { message: "Huidige post tot je redditaccount opslaan. Dit is berijkbaar van overal waar je ingelogd bent, maar bewaart de originele tekst niet als die bewerkt of verwijderd is.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Schakel Grote Editor In", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification", description: "" }, announcementsDesc: { message: "Blijf op de hoogte van belangrijk nieuws.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Rij Toevoegen", description: "" }, keyboardNavReplyDesc: { message: "Huidige reactie beantwoorden (alleen reactiepagina's).", description: "" }, accountSwitcherGoldUntil: { message: "Tot $1($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "RES Notificaties", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Knop highlighten", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subredditstijl Schakelaar", description: "" }, keyboardNavFollowCommentsDesc: { message: "View comments for link (shift opens them in a new tab).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Toon de live markdown voorvertoning rechtstreeks in de zijbalk tijdens het bewerken.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Profiel Nieuw Tabblad", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Volg Link En Reacties Nieuw Tabblad", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Multireddit Navigatie", description: "" }, keyboardNavToggleExpandoTitle: { message: "Expando In/uitschakelen", description: "" }, showKarmaName: { message: "Geef Karma Weer", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Subreddit automatisch aanvullen", description: "" }, settingsNavName: { message: "RES Instellingen Navigatie", description: "" }, contributeName: { message: "Doneer en Draag Bij", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Toon de \u03C0 server / debugdetails naast de zwevende Eindeloos Reddit hulpmiddelen.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Reactie Tekstvak Uitschakelen", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Vertraging, in milliseconden, voordat hover tooltip laadt.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Diepte instellen voor links naar specifieke reacties.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Toon een menu rechtsboven dat naar verschillende secties van het profiel van de huidige gebruiker linkt wanneer je met je muis over een gebruikersnaam beweegt.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Kies de kleur voor reacties in het hoofdniveau.", description: "" }, commentToolsName: { message: "Bewerkingsgereedschappen", description: "" }, accountSwitcherAccountsDesc: { message: "Kies hieronder je gebruikersnamen en wachtwoorden. Deze worden enkel in de RES voorkeuren opgeslagen.", description: "" }, singleClickOpenBackgroundTitle: { message: "Achtergrond Openen", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "Waar moeten subreddits gefilterd worden met de bovenstaande optie?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Live Preview", description: "" }, hoverOpenDelayDesc: { message: "Standaard vertraging tussen muizen over een element en het openen van de pop-up.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Kleur van de samengevouwen balk.", description: "" }, announcementsName: { message: "RES Aankondigingen", description: "" }, betteRedditVideoViewedDesc: { message: "Toon aantal weergaven voor een video wanneer mogelijk.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Naar Bovenste Reactie", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Alle account in de Account Wisselaar verbergen.\nAls een gebruikersnaam niet al in perAccountDisplayText staat, dan wordt die naam met de standaardtekst verborgen.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "herladen", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Alle Gebruikersnamen Verbergen", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Andere Tabbladen Bijwerken", description: "" }, notificationsNotificationID: { message: "notification ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "'Snudown' Bron Weergave", description: "" }, keyboardNavInboxDesc: { message: "Ga naar de inbox", description: "" }, gfycatUseMobileGfycatDesc: { message: "Gebruik mobiele (lagere resolutie) gifs van gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Toon Beelden In/Uitschakelen", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "RES instellingen opslaan en herstellen.", description: "" }, showParentDesc: { message: "Laat hogere reacties zien als je over een 'parent' link van een reactie hovert.", description: "" }, keyboardNavImageSizeDownDesc: { message: "Beelden in het gehighlighte post gebied verkleinen.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Toon inputlengte", description: "" }, keyboardNavSaveRESDesc: { message: "Huidige reactie met RES opslaan. Dit bewaart wel de originele tekst van de reactie, maar is alleen lokaal opgeslaan.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Ge\xEFnspireerd door modules zoals 'River of Reddit' en 'Auto Pager' - zorgt voor een oneindige stroom van reddit plezier.", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "Niets filteren op profielpagina's van gebruikers.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Controleer aantal reacties en bewerkingsdata van posts die je in de priv\xE9-broswenmodus hebt bezocht.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Herstel", description: "" }, logoLinkCustom: { message: "Aangepast", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Nummer", description: "" }, customTogglesToggleDesc: { message: "Schakel alles in of uit wat samenhangt met deze schakelaar; en voeg eventueel een schakelaar toe aan het RES-menu met het tandwiel.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "Nieuw Hulpmiddel Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Toon continu\xEFteitslijnen vooraan reacties.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Stop filtering this subreddit from /r/all and /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Standaard Posts", description: "" }, contextViewFullContextTitle: { message: "Hele context tonen", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Schakelt het samenvouwen van reacties in en uit bij dubbelklikken op de header.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacy", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Voeg een schakelaar toe tot de zijbalk om de huidige subredditstijl in/uit te schakelen. ", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Voegt een functie toe waarmee je de originele tekst van posts en reacties kan zien, voordat reddit de tekst formatteert.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Ga omlaag naar de volgende reacte in een reactiethread.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Zorgt voor hulpmiddelen voor het maken van een nieuwe post.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Automatisch", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separator", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Standaard vertraging voordat de pop-up vervaagt nadat de muis van het element gehaald wordt.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Locatie als je op het reddit logo klikt.", description: "" }, settingsConsoleName: { message: "Instellingen Console", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Zoekopties In/Uitschakelen", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Subreddit-specifieke reactie diepten.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Vriend Kleur Muizen", description: "" }, showImagesOpenInNewWindowTitle: { message: "In Nieuw Venster Openen", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Ga naar de modmail", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Mod highlighten", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "Standaard sorteermethode voor nieuwe widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "Herlaad andere tabs automatisch na het wisselen van gebruiker.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Animaties uitschakelen", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "ingeschakeld", description: "" }, nightModeColoredLinksTitle: { message: "Gekleurde links", description: "" }, modhelperDesc: { message: "Hulp voor moderatoren, door middel van tips, om goed om te gaan met RES.", description: "" }, quickMessageName: { message: "Snel Bericht", description: "" }, noPartEscapeNPDesc: { message: "NP-modus uitschakelen als je een NP-pagina verlaat.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Dit hulpmiddel weer inschakelen.", description: "" }, userHighlightDesc: { message: "Hiermee kan je bepaalde gebruikers highlighten in de reacties: OP, Admins, Vrienden, Mods - bijgedragen door MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Venster naar bovenkant van link scrollen als expando is gebruikt (om beelden etc. in zicht de houden).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Vertraging, in milliseconden, voordat de tooltip verdwijnt.", description: "" }, userInfoAddRemoveFriends: { message: "$1 vrienden", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups", description: "" }, userHighlightFriendColorDesc: { message: "Kleur voor het highlighten van Vrienden.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Berichten Menu", description: "" }, aboutOptionsSuggestions: { message: "Als jij een idee voor RES hebt, of met andere RES-gebruikers wilt praten, bezoek dan /r/Enhancement.", description: "" }, userbarHiderName: { message: "Gebruikersbalkverberger", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Thema's", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "When jumping to a entry (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), when and how should RES scroll the window?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Sta toe beelden te verplaatsen door shift te drukken en te slepen .", description: "" }, troubleshooterCachesCleared: { message: "All caches cleared.", description: "" }, localDateName: { message: "Locale datum", description: "" }, commentStyleCommentRoundedDesc: { message: "Rond hoeken af van opmerkingsveld.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Gebruik Go Mode", description: "" }, messageMenuLabel: { message: "label", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Toon huidige gebruikesnaam", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filteren", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Toon Aantal Ongelezen In Titel", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Account Wisselaar Gebruikersnamen Verbergen", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Zijbalk Voorvertoning", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Volg Subreddit Nieuw Tabblad", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Toon menu voor automatisch aanvullen van gebruikersnamen bij het typen in posts en reacties.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Toont je echte gebruikersnaam als je over de tekst muist die je naam verbergt. Zo is het makkelijk te controleren dat je van het goede account post/reageert, terwijl je gebruikersnaam toch verborgen blijft.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Voeg een snelle NSFW aan/uit-schakelaar toe aan het menu met het tandwiel.", description: "" }, subredditInfoSubscribe: { message: "abonneren", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Geselecteerde link of reactie downvoten (of downvote verwijderen).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: 'Knop "+snelkoppeling" tot subreddit zijbalk toevoegen voor het gemakkelijke toevoegen van snelkoppelingen', description: "" }, userHighlightHighlightAdminDesc: { message: "Reacties van Admin Highlighten", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter Verzendt Reacties", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Nieuwe Modmail Verbergen", description: "" }, userInfoUseQuickMessageDesc: { message: 'Opent het Quick Message dialoog als je op "bericht zenden" klikt in de hover-info, in plaats van direct naar de reddit berichtpagina te gaan.', description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter Zendt Posts", description: "" }, userInfoGildCommentsTitle: { message: "Reacties gulden", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit gemaakt:", description: "" }, multiredditNavbarLabel: { message: "label", description: "" }, userHighlightAutoColorUsingTitle: { message: "Autokleuren Met", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Toon een waarschuwing als de huidige URL alvast ingezonden is in de geselecteerde subreddit.\n\n*Niet 100% nauwkeurig wegens beperkingen op het zoeken en omdat dezelfde URl in verschillende manieren kan worden opgemaakt.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Muisen Vertraging", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Toon voorvertoning van ban notitie.", description: "" }, usersCategory: { message: "Gebruikers", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Links blauw en paars kleuren", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit niet gevonden.", description: "" }, logoLinkCustomDestinationDesc: { message: "Als redditLogoDestination is ingesteld op aangepast, link hier.", description: "" }, resTipsName: { message: "RES Tips en Trucs", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Opdrachtprompt In/uitschakelen", description: "" }, contextName: { message: "Context", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: `This will kill all your settings and saved data. If you're certain, type in "$1".`, description: "" }, searchHelperDefaultSearchTabTitle: { message: "Standaard Zoektabblad", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "User suspended.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Decimaal Scheidingsteken Gebruiken", description: "" }, userInfoLinks: { message: "Links", description: "" }, userHighlightHighlightAdminTitle: { message: "Admin Highlighten", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Verbergt de standaardknop ([-]) om reactie samen te vouwen.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Ga naar het hoofd van lijst (op linkpagina's).", description: "" }, contextDefaultContextTitle: { message: "Default Context", description: "" }, userTaggerTagUserAs: { message: "Tag gebruiker $1 als: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Voorkeur geven aan RES imgur album v\xF3\xF3r reddits eigen ingebouwde album.", description: "" }, showImagesMaxWidthTitle: { message: "Max Breedte", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Subreddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Lege Nieuwe Modmail Verbergen", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Move Down Sibling", description: "" }, customTogglesName: { message: "Aangepaste Schakelaars", description: "" }, pageNavShowLinkTitle: { message: "Link tonen", description: "" }, keyboardNavProfileNewTabDesc: { message: "Ga naar pofiel in een nieuw tabblad.", description: "" }, aboutCategory: { message: "Over RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "Reddit gold geven", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Herstel een backup van jouw RES instellingen.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Toon voorvertoning voor reacties.", description: "" }, spamButtonName: { message: "Spam Knop", description: "" }, hoverInstancesTitle: { message: "Intstanties", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Enkele kleur voor het muizen konden niet worden ontwikkeld. Dit is waarschijnlijk wegens het gebruik van kleuren in een bijzondere opmaak", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Gebruik sneltoetsen om stijlen toe te voegen aan geselecteerde tekst.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Ververg automatisch de zoekopties en -voorstellen op de zoekpagina.", description: "" }, notificationsDesc: { message: "Pop-upnotificaties voor RES-functies beheren.", description: "" }, logoLinkDashboard: { message: "Dashboard", description: "" }, dashboardDashboardShortcutDesc: { message: "Toon +dashboard snepkoppeling in zijbalk om gemakkelijk dashboard widgets toe te voegen.", description: "" }, userInfoName: { message: "Gebruikersinfo", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Breedte van de balk.", description: "" }, filteRedditDomainsTitle: { message: "Domeinen", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Modmail Verbergen", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Open Bij Highlighten Gebruiker", description: "" }, troubleshooterDisableRESDesc: { message: "Laadt opnieuw de pagina en schakelt RES uit voor alleen dit tabblad. RES blijft ingeschakeld in andere reddit tabbladen en vensters die nu open staan of hierna worden geopend. Dit kan handig zijn voor het probleemoplossen, en ook om snel gebruikersnotities, stemtellen, subreddit snelkoppelingen en andere RES data te verbergen voor een schone screenshot.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Alvast Ingezonden Waarschuwing", description: "" }, aboutOptionsPrivacy: { message: "Lees over het privacybeleid van RES", description: "" }, commentStyleContinuityTitle: { message: "Continu\xEFteit", description: "" }, iredditPreferRedditMediaTitle: { message: "Reddit Media Voorkeur Geven", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Laat details van elke gebruiker zien onder Account Wisselen, zoals karma of Reddit Goud status.", description: "" }, browsingCategory: { message: "Browsen", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Wil je zeker de tag voor gebruiker: $1 verwijderen?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "\xC9\xE9n Thread Omlaag", description: "" }, keyboardNavInboxTitle: { message: "Inbox", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link Naar Huidige Pagina", description: "" }, userInfoUnhighlight: { message: "Markering ongedaan maken", description: "" }, showImagesMarkVisitedTitle: { message: "Bezocht Markeren", description: "" }, profileNavigatorSectionLinksTitle: { message: "Gedeeltelinks", description: "" }, accountSwitcherLoggedOut: { message: "Je bent uitgelogd.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Standaard Tonen", description: "" } }; // locales/locales/pl.json var pl_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Pokazuj Nawigator komentarzy kiedy u\u017Cytkownik jest wyr\xF3\u017Cniony.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Poka\u017C dok\u0142adn\u0105 dat\u0119 dla komentarzy / wiadomo\u015Bci.", description: "" }, commentPrevDesc: { message: "Udost\u0119pnia podgl\u0105d na \u017Cywo podczas pisania i edycji komentarzy, post\xF3w tekstowych, wiadomo\u015Bci, stron wiki i innych p\xF3l tekstowych Markdown; jak r\xF3wnie\u017C dwukolumnowy edytor tekstu do pisania d\u0142ugich tekst\xF3w.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Automatycznie pokazuj posty tekstowe oznaczone jako +18.", description: "" }, troubleshooterClearCacheDesc: { message: 'Czy\u015Bci pami\u0119\u0107 podr\u0119czn\u0105 i sesj\u0119 RES. Ta funkcja wyczy\u015Bci r\xF3wnie\u017C list\u0119 rozwijan\u0105 "Moje subreddity", informacje o u\u017Cytkownikach/subredditach, s\u0142ownik i18n, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Maksymalna wysoko\u015B\u0107", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Zamie\u0144 miejscami podgl\u0105d z edytorem (tak, by podgl\u0105d by\u0142 po lewej stronie, a edytor po prawej).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Id\u017A w d\xF3\u0142 komentarzy", description: "" }, troubleshooterBreakpointDesc: { message: "Zatrzymaj wykonywanie JavaScript by u\u0142atwi\u0107 debugowanie.", description: "" }, dashboardMenuItemDesc: { message: "Poka\u017C link do mojego panelu w menu RES.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "U\u017Cytkownik ma Reddit Gold", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Id\u017A w g\xF3r\u0119 r\xF3wnorz\u0119dnie", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Tekst wy\u015Bwietlany dla ka\u017Cdego konta", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Poka\u017C podpowiedzi o nowych funkcjach, kiedy pojawiaj\u0105 si\u0119 po raz pierwszy.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Wczytaj style", description: "" }, commentStyleCommentIndentTitle: { message: "Wci\u0119cia komentarzy", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Wy\u0142\u0105cz wszystkie modu\u0142y RES.", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Poka\u017C dok\u0142adn\u0105 dat\u0119 w logach moderacji (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Losowy", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Odfiltruj ten subreddit z /r/all i /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Otw\xF3rz komentarze w nowej karcie", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "usu\u0144 subskrybcj\u0119", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoodtwarzanie film\xF3w", description: "" }, orangeredName: { message: "Nieprzeczytane wiadomo\u015Bci", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Schowaj wiadomo\u015Bci moderacyjne gdy puste", description: "" }, RESTipsDailyTipDesc: { message: "Poka\u017C losow\u0105 porad\u0119 co 24 godziny.", description: "" }, userHighlightHighlightModDesc: { message: "Wyr\xF3\u017Cnij komentarze moderator\xF3w.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "S\u0142owa kluczowe", description: "" }, filteRedditAllowNSFWTitle: { message: "Pozw\xF3l na NSFW (18+)", description: "" }, hoverOpenDelayTitle: { message: "Op\xF3\u017Anienie otwierania", description: "" }, keyboardNavNextPageTitle: { message: "Nast\u0119pna strona", description: "" }, commentToolsSuperKeyTitle: { message: "Klawisz superpozycji", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Po kt\xF3rej stronie wy\u015Bwietlane s\u0105 linki.", description: "" }, logoLinkCustomDestinationTitle: { message: "W\u0142asny link", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Linki bezpo\u015Brednie do kontekstu komentarzy", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Przywr\xF3\u0107 zapisan\u0105 kart\u0119", description: "" }, orangeredHideModMailDesc: { message: "Schowaj przycisk wiadomo\u015Bci moderacyjnych z paska u\u017Cytkownika.", description: "" }, orangeredRetroUnreadCountDesc: { message: "Je\u015Bli nie podoba ci si\u0119 licznik nieprzeczytanych wiadomo\u015Bci dostarczany\xA0natywnie przez reddit, mo\u017Cesz zast\u0105pi\u0107 go licznikiem w stylu RES, w kwadratowych nawiasach.", description: "" }, showImagesHideNSFWTitle: { message: "Ukryj NSFW", description: "" }, nerHideDupesDesc: { message: "Zmniejsz widoczno\u015B\u0107 lub zupe\u0142nie ukryj\xA0zduplikowane posty, kt\xF3re ju\u017C pojawi\u0142y si\u0119 na stronie.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Tylko na:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "Kolor pierwszego komentuj\u0105cego po najechaniu", description: "" }, necLoadChildCommentsDesc: { message: "Czy opr\xF3cz komentarzy pierwszego poziomu, r\xF3wnie\u017C komentarze potomne powinny by\u0107 rozwini\u0119te podczas pauzy?", description: "" }, keyboardNavEditTitle: { message: "Edytuj", description: "" }, userTaggerName: { message: "Oznaczanie u\u017Cytkownik\xF3w", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Prze\u0142\u0105cznik", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Id\u017A w d\xF3\u0142 Nawigatorem komentarzy", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Dodaj przycisk s\u0142u\u017C\u0105cy do ukrywania opcji wyszukiwania podczas szukania.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Id\u017A w g\xF3r\u0119 u\u017Cywaj\u0105c Nawigatora komentarzy.", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Czy u\u017Cy\u0107 ikony "snoo", czy\xA0menu rozwijanego w starym stylu?', description: "" }, userHighlightOPColorTitle: { message: "Kolor autor\xF3w", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Nie chowaj listy makr", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Prze\u0142\u0105czanie\xA0Nawigatora komentarzy", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Skr\xF3ty klawiaturowe", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Wyr\xF3\u017Cnij osob\u0119, kt\xF3ra napisa\u0142a jako pierwsza komentarz w danym drzewie komentarzy.", description: "" }, nightModeToggleText: { message: "tryb nocny", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Otw\xF3rz link w nowej karcie (tylko strony z list\u0105 link\xF3w)", description: "" }, onboardingDesc: { message: "Dowiedz si\u0119 wi\u0119cej o RES na /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Zmie\u0144 kolor odwiedzonych link\xF3w na fioletowy. (Domy\u015Blnie Reddit robi to tylko dla tytu\u0142\xF3w post\xF3w.)", description: "" }, filteRedditNSFWfilterTitle: { message: "Filtr NSFW (18+)", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Op\xF3\u017Anienie zanikania", description: "" }, profileNavigatorFadeDelayTitle: { message: "Op\xF3\u017Anienie zanikania", description: "" }, commentToolsLinkKeyTitle: { message: "Klawisz linka", description: "" }, userHighlightHighlightFriendTitle: { message: "Wyr\xF3\u017Cnij przyjaciela", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+dodaj skr\xF3t", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "Strona g\u0142\xF3wna subreddita", description: "" }, keyboardNavFollowSubredditTitle: { message: "Otw\xF3rz subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Poka\u017C status gold", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "Wczytywanie styl\xF3w", description: "" }, subredditInfoOver18: { message: "18+:", description: "" }, userInfoIgnore: { message: "Ignoruj", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "Element menu", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Bia\u0142a lista styl\xF3w\xA0subreddit\xF3w", description: "" }, troubleshooterAreYouPositive: { message: "Czy na pewno?", description: "" }, messageMenuAddShortcut: { message: "+dodaj skr\xF3t", description: "" }, troubleshooterName: { message: "Rozwi\u0105zywanie problem\xF3w", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Zawsze zmieniaj linki na tymczasowe.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro licznik nieprzeczytanych", description: "" }, messageMenuUseQuickMessageDesc: { message: "U\u017Cywaj pop-upa Szybkich wiadomo\u015Bci podczas pisania nowych wiadomo\u015Bci.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Skrzynka odbiorcza w nowej karcie", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Otw\xF3rz link bezpo\u015Bredni do aktualnego komentarza w nowej karcie (tylko strony z komentarzami).", description: "" }, selectedEntrySetColorsDesc: { message: "Ustaw kolory", description: "" }, stylesheetLoggedInUserClassDesc: { message: 'Po zalogowaniu, dodaj nazw\u0119 u\u017Cytkownika jako klas\u0119 CSS do elementu body.\nNa przyk\u0142ad, /u/ExampleUser b\u0119dzie mia\u0142 klas\u0119 "body.res-user-exampleuser".', description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "Po zag\u0142osowaniu na link, automatycznie zaznacz kolejny link.", description: "" }, userInfoHighlightColorDesc: { message: 'Kolor u\u017Cywany do wyr\xF3\u017Cnienia wybranych u\u017Cytkownik\xF3w po "wyr\xF3\u017Cnieniu" z poziomu ramki z informacjami o u\u017Cytkownikach.', description: "" }, onboardingName: { message: "RES - Witamy", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Kolor t\u0142a (tryb nocny)", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Przesta\u0144 odfiltrowywa\u0107 z /r/all i /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Id\u017A do najwy\u017Cszego komentarza w nast\u0119pnym w\u0105tku komentarzy.", description: "" }, hoverName: { message: "Pop-upy RES", description: "" }, commentPreviewEnableForCommentsTitle: { message: "W\u0142\u0105cz dla komentarzy", description: "" }, spamButtonDesc: { message: "Dodaje przycisk Spam do post\xF3w w celu u\u0142atwienia raportowania.", description: "" }, betteRedditUnhideLinkLabel: { message: "poka\u017C ponownie", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "P\u0142ywaj\u0105cy pasek boczny", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Losowe 18+", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Ca\u0142kowicie usu\u0144 linki i komentarze dodane przez ignorowanych u\u017Cytkownik\xF3w. Je\u015Bli ignorowany komentarz ma odpowiedzi, zwi\u0144 go i schowaj jego zawarto\u015B\u0107 zamiast usuwania go.", description: "" }, commentToolsLabel: { message: "etykieta", description: "" }, donateToRES: { message: "wspom\xF3\u017C RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Tekst, kt\xF3ry zostanie automatycznie umieszczony w polu Tytu\u0142, je\u015Bli nie zostanie ono automatycznie uzupe\u0142nione przez kontekst.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitoruj liczb\u0119 komentarzy i daty edycji odwiedzonych post\xF3w.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Pomaga w utrzymaniu stosownej dawki przychodz\u0105cych wiadomo\u015Bci.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "W\u0142\u0105cz tryb nocny", description: "" }, myAccountCategory: { message: "Moje konto", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Domy\u015Blne minimum komentarzy", description: "" }, yes: { message: "Tak", description: "" }, filteRedditName: { message: "filtReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Kolor u\u017Cywany do wyr\xF3\u017Cnienia wybranych u\u017Cytkownik\xF3w po najechaniu.", description: "" }, notificationFadeOutLengthDesc: { message: "Czas, w milisekundach (1s = 1000ms), podczas kt\xF3rego mo\u017Cna\xA0zapobiec schowaniu si\u0119 powiadomienia.", description: "" }, commandLineMenuItemTitle: { message: "Element menu", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Pokazuje link "LOSOWE" w mened\u017Cerze subreddita.', description: "" }, userHighlightFriendColorTitle: { message: "Kolor przyjaciela", description: "" }, searchHelperSearchByFlairTitle: { message: "Szukaj po znaczku", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "/u/$2 doda\u0142 nowy post do /r/$1", description: "" }, userInfoUserTag: { message: "Znacznik u\u017Cytkownika:", description: "" }, menuGearIconClickActionDesc: { message: "Co powinno si\u0119 sta\u0107 po klikni\u0119ciu ikony z\u0119batki? Je\u015Bli nic nie zostanie wybrane, najechanie mysz\u0105 otworzy menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Informuje ci\u0119, ile komentarzy przyby\u0142o w w\u0105tku od twojej ostatniej wizyty w nim.", description: "" }, userTaggerPageXOfY: { message: "$1 z\xA0$2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "Moje\xA0znaczniki u\u017Cytkownik\xF3w", description: "" }, pageNavShowLinkNewTabDesc: { message: "Otw\xF3rz link z ramki z informacjami o po\u015Bcie w nowej karcie.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Ustawienia wyszukiwania", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "Nie r\xF3b Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "Liczba wy\u015Bwietle\u0144 wideo", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Poka\u017C wyra\u017Any napis "Komentujesz jako" je\u015Bli u\u017Cywasz alternatywnego konta. Pierwsze konto w\xA0module Prze\u0142\u0105cznik kont jest traktowane jako twoje g\u0142\xF3wne konto.', description: "" }, usernameHiderDisplayTextTitle: { message: "Tekst wy\u015Bwietlany", description: "" }, commentToolsShowInputLengthDesc: { message: "Podczas\xA0publikowania, poka\u017C ilo\u015B\u0107 znak\xF3w wpisanych w pole tytu\u0142u i tre\u015Bci i ostrze\u017C mnie, kiedy przekrocz\u0119 limit 300 znak\xF3w dla tytu\u0142u.", description: "" }, redditUserInfoName: { message: "Informacje o u\u017Cytkownikach Reddit", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Powi\u0119ksz obraz(y) w zaznaczonym po\u015Bcie (dok\u0142adniejsza kontrola).", description: "" }, nerName: { message: "Nieko\u0144cz\u0105cy si\u0119 Reddit", description: "" }, subredditInfoTitle: { message: "Tytu\u0142:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatyczne (wymaga geolokacji)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "Zobacz link i komentarze w nowych kartach w tle.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Ramka\xA0komentarza po najechaniu", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "Czym zast\u0105pi\u0107 twoj\u0105 nazw\u0119 u\u017Cytkownika.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "W\u0142asna strona g\u0142\xF3wna", description: "" }, nerHideDupesFade: { message: "Zmniejsz widoczno\u015B\u0107", description: "" }, submitIssueDesc: { message: "Je\u015Bli masz jakie\u015B problemy z RES, odwied\u017A /r/RESissues. Je\u017Celi masz jakie\u015B pro\u015Bby lub pytania, odwied\u017A /r/Enchancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Pomniejsz obraz(y) w zaznaczonym po\u015Bcie (dok\u0142adniejsza kontrola).", description: "" }, selectedEntryBackgroundColorDesc: { message: "Kolor t\u0142a", description: "" }, searchRESSettings: { message: "szukaj w ustawieniach RES", description: "" }, keyboardNavNextPageDesc: { message: "Przejd\u017A do nast\u0119pnej strony (tylko strony z list\u0105\xA0link\xF3w).", description: "" }, notificationsPerNotificationType: { message: "zale\u017Cnie od typu powiadomienia", description: "" }, subredditTaggerDesc: { message: "Dodaje w\u0142asny tekst do pocz\u0105tk\xF3w tytu\u0142\xF3w post\xF3w na stronie g\u0142\xF3wnej, w multiredditach i w /r/all. Po\u017Cyteczne by nada\u0107 kontekst postom.", description: "" }, spoilerTagsTransitionTitle: { message: "Przej\u015Bcie", description: "" }, backupAndRestoreReloadWarningNone: { message: "Nic nie r\xF3b.", description: "" }, profileNavigatorDesc: { message: "Usprawnij mo\u017Cliwo\u015B\u0107 dostania si\u0119 do r\xF3\u017Cnych miejsc na twojej stronie u\u017Cytkownika.", description: "" }, wheelBrowseDesc: { message: "Przegl\u0105daj wpisy i galerie przewijaj\u0105c wewn\u0105trz szarego floatera.", description: "" }, tableToolsDesc: { message: "Dodaje nowe funkcje do tabel Reddit Markdown (w tym momencie tylko sortowanie).", description: "" }, notificationsAlwaysSticky: { message: "zawsze przyklejone", description: "" }, searchName: { message: "Szukaj ustawie\u0144 RES", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Resetuj ikon\u0119 przy wyj\u015Bciu", description: "" }, quickMessageSendAsTitle: { message: "Wy\u015Blij jako", description: "" }, pageNavName: { message: "Nawigator stron", description: "" }, keyboardNavFollowLinkDesc: { message: "Otw\xF3rz link (tylko strony z list\u0105 link\xF3w)", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Op\xF3\u017Anij funkcje", description: "" }, subredditInfoFadeDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim schowa si\u0119 ramka informacyjna.", description: "" }, commentHidePerDesc: { message: "Zachowuje stan schowanych komentarzy pomi\u0119dzy ods\u0142onami stron.", description: "" }, quickMessageDesc: { message: "Okno dialogowe umo\u017Cliwiaj\u0105ce wysy\u0142anie wiadomo\u015Bci z ka\u017Cdego miejsca na reddicie. Wiadomo\u015Bci mog\u0105 by\u0107 wys\u0142ane z okna dialogowego za pomoc\u0105 skr\xF3tu Ctrl+Enter lub Cmd+Enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Otw\xF3rz linki oznaczone cyframi w nowej karcie.", description: "" }, styleTweaksCommandLineDescription: { message: "w\u0142\u0105cz/wy\u0142\u0105cz\xA0styl subreddita (je\u015Bli \u017Caden subreddit nie jest wybrany, u\u017Cywa aktualnego subreddita).", description: "" }, accountSwitcherUsername: { message: "nazwa u\u017Cytkownika", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Linki do wy\u015Bwietlenia w\xA0rozwijalnym menu.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(tymczasowo?)", description: "" }, nightModeNightModeStartTitle: { message: "Pocz\u0105tek trybu nocnego", description: "" }, subredditManagerFilterListTitle: { message: "Szybki filtr subreddit\xF3w", description: "" }, userbarHiderUserBarHidden: { message: "Pasek u\u017Cytkownika schowany", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+dodaj subreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Zamie\u0144 interfejs\xA0Wielkiego edytora", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Poka\u017C/schowaj drzewo podrz\u0119dnych komentarzy (tylko strony z komentarzami).", description: "" }, nerAutoLoadTitle: { message: "Automatyczne wczytywanie", description: "" }, nerReturnToPrevPageDesc: { message: 'Czy wraca\u0107 do poprzedniej strony\xA0po klikni\u0119ciu przycisku "wstecz"?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Menu sekcji", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Id\u017A do\xA0nast\u0119pnego komentarza na pierwszym poziomie.", description: "" }, accountSwitcherRateLimitError: { message: "Logowanie jako $1 nie powiod\u0142o si\u0119, poniewa\u017C reddit wykrywa zbyt wiele zapyta\u0144 wys\u0142anych od Ciebie w zbyt kr\xF3tkim czasie.\n\nBy\u0107 mo\u017Ce pr\xF3bujesz zalogowa\u0107 si\u0119 u\u017Cywaj\u0105c z\u0142ego loginu lub has\u0142a?\n\nSprawd\u017A swoje ustawienia.", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Aktualizuj wszystkie karty kiedy RES szuka nowych wiadomo\u015Bci.", description: "" }, showImagesMediaBrowseTitle: { message: "Przegl\u0105darka tre\u015Bci", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Pozosta\u0142y czas ukrycia punktacji", description: "" }, hoverWidthDesc: { message: "Domy\u015Blna szeroko\u015B\u0107 pop-upa.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "do", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: 'Na stronach subreddita, dodaj nazw\u0119 subreddita jako klas\u0119 CSS do elementu body.\nNa przyk\u0142ad, /r/ExampleSubreddit b\u0119dzie mia\u0142 klas\u0119 "body.res-r-examplesubreddit".', description: "" }, nightModeNightModeOnDesc: { message: "W\u0142\u0105cz/wy\u0142\u0105cz tryb nocny.", description: "" }, userTaggerShowIgnoredTitle: { message: "Poka\u017C ignorowanych", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Nieko\u0144cz\u0105ce si\u0119 komentarze", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Pokazuje link "KOLEJKA MODERACJI" w mened\u017Cerze subreddita.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Wyklucz w\u0142asne posty", description: "" }, userInfoHighlightColorTitle: { message: "Kolor wyr\xF3\u017Cnienia", description: "" }, keyboardNavModmailNewTabDesc: { message: "Przejd\u017A do wiadomo\u015Bci moderacyjnych w nowej karcie.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Pr\u0119dko\u015B\u0107 przej\u015Bcia", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Op\xF3\u017Anienie zanikania", description: "" }, keyboardNavModmailNewTabTitle: { message: "Wiadomo\u015Bci moderacyjne w nowej karcie", description: "" }, showImagesMaxHeightDesc: { message: 'Maksymalna wysoko\u015B\u0107 tre\u015Bci (w pikselach; wpisz zero by usun\u0105\u0107 limit). Warto\u015Bci procentowe r\xF3wnie\u017C s\u0105 wspierane (np. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Czy pokazywa\u0107 przycisk subskrypcji?", description: "" }, filteRedditKeyword: { message: "s\u0142owo kluczowe", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Kolor paska po najechaniu mysz\u0105.", description: "" }, backupAndRestoreBackupDesc: { message: 'Utw\xF3rz kopi\u0119 zapasow\u0105\xA0obecnych ustawie\u0144 RES. Pobierz za pomoc\u0105 przycisku "Plik", albo zapisz plik w chmurze.', description: "" }, selectedEntrySetColorsTitle: { message: "Ustaw kolory", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Wejd\u017A do Linii komend filtr\xF3w", description: "" }, betteRedditDoNoCtrlFDesc: { message: "U\u017Cywaj\u0105c przegl\u0105darkowej funkcji szukania tekstu (Ctrl+F/Cmd+F), szukaj tylko w tre\u015Bci post\xF3w/komentarzy (a nie np. w linkach nawigacyjnych). Domy\u015Blnie wy\u0142\u0105czone z powodu niewielkiego negatywnego wp\u0142ywu na wydajno\u015B\u0107.", description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Wymagaj bezpo\u015Bredniego linku", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Schowaj komentarz na podw\xF3jne klikni\u0119cie nag\u0142\xF3wka", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatycznie dobieraj specjalne kolory dla ka\u017Cdej nazwy u\u017Cytkownika.", description: "" }, backupName: { message: "Kopia zapasowa i odzyskiwanie", description: "" }, profileNavigatorSectionLinksDesc: { message: "Linki do wy\u015Bwietlenia w menu.", description: "" }, notificationCloseDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim powiadomienie zacznie si\u0119 chowa\u0107.", description: "" }, styleTweaksUseSubredditStyle: { message: "U\u017Cyj stylu subreddita", description: "" }, userHighlightModColorDesc: { message: "Kolor, kt\xF3ry b\u0119dzie u\u017Cywany do wyr\xF3\u017Cniania moderator\xF3w.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatycznie zaczynaj tre\u015B\u0107 wiadomo\u015B\u0107 od linku do aktualnej strony (lub, je\u015Bli otwarto z pop-upa z informacjami o u\u017Cytkowniku, link do aktualnego postu lub komentarza).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Dodaj\xA0ten subreddit do swojego panelu", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Prze\u0142\u0105cz szeroko\u015B\u0107 lewej kraw\u0119dzi komentarzy", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Zaktualizuj inne karty", description: "" }, nightModeUseSubredditStylesTitle: { message: "U\u017Cywaj styl\xF3w subreddit\xF3w", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "Po zag\u0142osowaniu na komentarz, automatycznie zaznacz kolejny komentarz.", description: "" }, styleTweaksNavTopTitle: { message: "Nawigacja na g\xF3rze", description: "" }, gfycatUseMobileGfycatTitle: { message: "U\u017Cywaj mobilnej wersji Gfycat", description: "" }, commentToolsItalicKeyDesc: { message: "Skr\xF3t klawiaturowy pochylaj\u0105cy tekst.", description: "" }, messageMenuLinksDesc: { message: "Linki,\xA0kt\xF3re maj\u0105 by\u0107 pokazywane w rozwijalnym menu oznaczonym ikon\u0105 koperty.", description: "" }, keyboardNavUndoMoveTitle: { message: "Cofnij", description: "" }, selectedEntryTextColorNightDesc: { message: "Kolor tekstu do u\u017Cycia w Trybie nocnym.", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: 'Reddit czasami ukrywa niekt\xF3re opcje sortowania komentarzy (np. "losowe") na wi\u0119kszo\u015Bci stron. Ta opcja przywraca je.', description: "" }, commandLineLaunchTitle: { message: "Uruchom", description: "" }, betteRedditDesc: { message: 'Dodaje wiele ulepsze\u0144 interfejsu Reddita, jak na przyk\u0142ad link "pe\u0142ne komentarze", mo\u017Cliwo\u015B\u0107 ponownego pokazania niechc\u0105co ukrytego posta i wiele wi\u0119cej.', description: "" }, resTipsDesc: { message: "Dodaje podpowiedzi/pomoc do konsoli RES.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Id\u017A do poprzedniego komentarza na tym samym poziomie.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Wyr\xF3\u017Cnij hierarchi\u0119 komentarzy po najechaniu mysz\u0105 (wy\u0142\u0105cz w celu poprawy wydajno\u015Bci).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Skr\xF3t klawiaturowy pogrubiaj\u0105cy tekst.", description: "" }, hoverWidthTitle: { message: "Szeroko\u015B\u0107", description: "" }, dashboardName: { message: "Panel RES", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Poka\u017C\xA0znacznik czasowy ostatniej edycji", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Nie wylogowuj mnie", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Otw\xF3rz konsol\u0119 ustawie\u0144", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Utw\xF3rz linki do subreddit\xF3w, z kt\xF3rych oryginalnie pochodzi\u0142y posty.", description: "" }, userbarHiderUserbarStateTitle: { message: "Stan paska u\u017Cytkownika", description: "" }, messageMenuFadeDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim schowa si\u0119 ramka informacyjna.", description: "" }, saveOptions: { message: "zapisz ustawienia", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Przewi\u0144 do wybranej rzeczy po za\u0142adowaniu", description: "" }, styleTweaksClickToLearnMore: { message: "Kliknij tutaj aby dowiedzie\u0107 si\u0119 wiecej", description: "" }, keyboardNavInboxNewTabDesc: { message: "Przejd\u017A do skrzynki odbiorczej w nowej karcie.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Poka\u017C podgl\u0105d dla edycji ustawie\u0144 subreddita.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Obs\u0142uguj linki w pasku bocznym", description: "" }, userTaggerAllUsers: { message: "wszyscy u\u017Cytkownicy", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Wyr\xF3\u017Cnij kontrowersyjne", description: "" }, pageNavToTopDesc: { message: "Dodaj na ka\u017Cdej stronie ikon\u0119 kt\xF3ra przenosi do g\xF3ry\xA0strony\xA0po klikni\u0119ciu.", description: "" }, subredditsCategory: { message: "Subreddity", description: "" }, keyboardNavToggleChildrenDesc: { message: "Poka\u017C/schowaj komentarze (tylko strony z komentarzami).", description: "" }, commentPreviewDraftStyleTitle: { message: 'Styl\xA0"kopii roboczej"', description: "" }, RESSettingsConsole: { message: "Konsola ustawie\u0144 RES", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Poka\u017C dok\u0142adn\u0105 dat\u0119\xA0na stronach wiki.", description: "" }, logoLinkInbox: { message: "Skrzynka odbiorcza", description: "" }, searchHelperDesc: { message: "Udost\u0119pnia pomoc podczas wyszukiwania.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Aktywacja nowej karty po klikni\u0119ciu w linka", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Op\xF3\u017Anienie otwierania", description: "" }, subredditManagerLinkAllTitle: { message: "Link Wszystko", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Poka\u017C znacznik czasowy post\xF3w", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Nieprzeczytane prowadzi do skrzynki odbiorczej", description: "" }, presetsName: { message: "Zestawy ustawie\u0144", description: "" }, styleTweaksName: { message: "Usprawnienia styl\xF3w", description: "" }, selectedEntryOutlineStyleTitle: { message: "Styl obramowania", description: "" }, showImagesSfwHistoryDesc: { message: "Nie dodaje link\xF3w 18+ do historii przegl\u0105darki *za pomoc\u0105 opcji markVisited*.\n\nJe\u015Bli wybierzesz drug\u0105 opcj\u0119, linki b\u0119d\u0105 z powrotem niebieskie po od\u015Bwie\u017Ceniu strony.\n\n***To nie zmienia zachowania przegl\u0105darki. Je\u015Bli klikniesz na link, zostanie on dodany do historii normalnie. To nie jest substytut u\u017Cycia trybu prywatnego w przegl\u0105darce.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Og\u0142oszenia", description: "" }, hoverInstancesDesc: { message: "Zarz\u0105dzaj poszczeg\xF3lnymi pop-upami", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Prze\u0142\u0105cz kolor lewej kraw\u0119dzi komentarzy, kiedy s\u0105 najechane mysz\u0105.", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Id\u017A w g\xF3r\u0119 do poprzedniego komentarza na li\u015Bcie.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Poka\u017C znacznik czasowy\xA0na pasku bocznym", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Przekieruj na w\u0142asny widok na stronie profilu podczas \u0142adowania strony g\u0142\xF3wnej profilu, np. reddit.com/user/{toCoWpiszesz}/", description: "" }, messageMenuFadeSpeedTitle: { message: "Szybko\u015B\u0107 zanikania", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Oznacz posty tekstowe jako odwiedzone", description: "" }, userInfoHoverDelayTitle: { message: "Op\xF3\u017Anienie otwierania", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim zniknie schowany link.\xA0", description: "" }, accountSwitcherShowKarmaTitle: { message: "Poka\u017C karm\u0119", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatyczny tryb nocny", description: "" }, noPartDisableCommentTextareaDesc: { message: "Wy\u0142\u0105cz mo\u017Cliwo\u015B\u0107 komentowania.", description: "" }, nerReturnToPrevPageTitle: { message: "Wr\xF3\u0107 do poprzedniej strony", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Czy przed automatycznym odzyskaniem kopii zapasowej powinna zosta\u0107 wy\u015Bwietlona pro\u015Bba o potwierdzenie?\n\nUwaga: je\u015Bli ta opcja jest wy\u0142\u0105czona i co\u015B p\xF3jdzie nie tak, twoje ustawienia mog\u0105 zosta\u0107 utracone bez ostrze\u017Cenia. U\u017Cywaj na w\u0142asne ryzyko.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Szybko\u015B\u0107 animacji zanikania (w sekundach).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Prze\u0142\u0105cz pokazywanie powod\xF3w filtrowania", description: "" }, contextViewFullContextDesc: { message: 'Dodaj\xA0link "Zobacz pe\u0142ny kontekst" na stronie z komentarzem.', description: "" }, messageMenuFadeDelayTitle: { message: "Op\xF3\u017Anienie zanikania", description: "" }, commentToolsDesc: { message: "Udost\u0119pnia narz\u0119dzia i skr\xF3ty s\u0142u\u017C\u0105ce do pisania i edycji komentarzy, post\xF3w tekstowych, stron wiki i innych p\xF3l tekstowych Markdown.", description: "" }, noPartName: { message: "Bez partycypacji", description: "" }, presetsDesc: { message: "Wybierz spo\u015Br\xF3d r\xF3\u017Cnych predefiniowanych konfiguracji RES. Ka\u017Cdy z zestaw\xF3w w\u0142\u0105cza i wy\u0142\u0105cza r\xF3\u017Cne modu\u0142y/opcje, ale nie resetuje wszystkich twoich ustawie\u0144.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Domy\u015Blne minimum komentarzy wymaganych, aby zaaplikowa\u0107 ustawienia w\u0142asnej g\u0142\u0119boko\u015Bci komentarzy.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Poka\u017C\xA0narz\u0119dzia komentarzy w polu na informacj\u0119 o\xA0banowaniu.", description: "" }, temporaryDropdownLinksDesc: { message: "Tworzy linki tymczasowe w rozwijanym menu na stronach /top i /controversial.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Przejd\u017A do subreddita na kt\xF3rym zosta\u0142 opublikowany\xA0zaznaczony link w nowej karcie (tylko strony z list\u0105 link\xF3w).", description: "" }, showImagesCrosspostsDescription: { message: "Obs\u0142uguj crossposty z innych subreddit\xF3w", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Nie udzielono dost\u0119pu do lokalizacji. Lokalizacja jest niezb\u0119dna do wyliczenia godzin wschodu i zachodu s\u0142o\u0144ca dla automatycznego trybu nocnego. Aby wy\u0142\u0105czy\u0107 t\u0119 funkcj\u0119, kliknij "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Styl subreddita", description: "" }, keyboardNavDownVoteTitle: { message: "G\u0142osuj w d\xF3\u0142", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Id\u017A w d\xF3\u0142", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Zawie\u015B funkcje", description: "" }, styleTweaksHideUnvotableTitle: { message: 'Schowaj "nieg\u0142osowalne"', description: "" }, notificationNotificationTypesTitle: { message: "Typy\xA0powiadomie\u0144", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "Id\u017A w d\xF3\u0142\xA0po zag\u0142osowaniu na komentarz", description: "" }, hoverCloseOnMouseOutDesc: { message: "Czy\xA0chowa\u0107 pop-up po opuszczeniu\xA0go mysz\u0105?", description: "" }, subredditTaggerName: { message: "Oznaczanie subreddit\xF3w", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Wyr\xF3\u017Cnij je\u015Bli alternatywne konto", description: "" }, userInfoDesc: { message: "Dodaje ramk\u0119 z informacjami o u\u017Cytkownikach widoczn\u0105 po najechaniu na ich nazw\u0119 u\u017Cytkownika.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "Zapisuj link do komentarzy do postu, w kt\xF3rym dodano znacznik u\u017Cytkownika. Je\u015Bli ta opcja b\u0119dzie wy\u0142\u0105czona, zostanie u\u017Cyty link, do kt\xF3rego prowadzi post.", description: "" }, tipsAndTricks: { message: "porady", description: "" }, notificationCloseDelayTitle: { message: "Op\xF3\u017Anienie zamykania", description: "" }, profileNavigatorSectionMenuTitle: { message: "Menu sekcji", description: "" }, logoLinkDesc: { message: "Umo\u017Cliwia podmian\u0119 linka na logo reddita.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Skr\xF3t klawiaturowy s\u0142u\u017C\u0105cy do otwierania okna dialogowego umo\u017Cliwiaj\u0105cego wysy\u0142anie szybkich wiadomo\u015Bci.", description: "" }, nsfwSwitchToggleText: { message: "filtr +18", description: "" }, showParentDirectionTitle: { message: "Kierunek", description: "" }, dashboardDefaultPostsDesc: { message: "Liczba post\xF3w domy\u015Blnie pokazywana przez ka\u017Cdy z wid\u017Cet\xF3w.", description: "" }, pageNavDesc: { message: "Udost\u0119pnia zestaw narz\u0119dzi usprawniaj\u0105cych nawigacj\u0119 po stronie.", description: "" }, menuGearIconClickActionTitle: { message: "Akcja po klikni\u0119ciu ikony z\u0119batki", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Poka\u017C m\xF3j bie\u017C\u0105cy login w menu Prze\u0142\u0105cznika kont.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1\xA0jest w $2\xA0multiredditach", description: "" }, commentToolsStrikeKeyTitle: { message: "Klawisz przekre\u015Blania", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link Moje Losowe", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim pojawi si\u0119 ramka informacyjna.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Kiedy to mo\u017Cliwe, u\u017Cywaj styl\xF3w dla daltonist\xF3w", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Pokazuj Nawigator komentarzy domy\u015Blnie.", description: "" }, keyboardNavSaveRESTitle: { message: "Zapisz RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "Id\u017A w d\xF3\u0142 po schowaniu", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Automatycznie pokazuj posty tekstowe", description: "" }, userHighlightAdminColorHoverDesc: { message: "Kolor u\u017Cywany do wyr\xF3\u017Cnienia administrator\xF3w po najechaniu.", description: "" }, commentStyleCommentBoxesTitle: { message: "Boksy komentarzy", description: "" }, profileNavigatorName: { message: "Nawigator profili", description: "" }, profileRedirectName: { message: "Przekierowanie profilu", description: "" }, stylesheetBodyClassesDesc: { message: "Klasy CSS, kt\xF3re maj\u0105 zosta\u0107 dodane do <body>.", description: "" }, no: { message: "Nie", description: "" }, notificationFadeOutLengthTitle: { message: "Czas\xA0chowania", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Styl przewijania linearnego", description: "" }, userbarHiderUserbarStateDesc: { message: "Pasek u\u017Cytkownika", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite zosta\u0142 zaktualizowany do wersji $1.", description: "" }, keyboardNavShowParentsDesc: { message: "Poka\u017C rodzic\xF3w komentarzy.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Przekieruj na konkretny widok na stronie profilu podczas \u0142adowania strony g\u0142\xF3wnej profilu, np. reddit.com/user/u_example/", description: "" }, aboutOptionsPresets: { message: "Szybko skonfiguruj RES za pomoc\u0105 utworzonych wcze\u015Bniej zestaw\xF3w opcji.", description: "" }, userHighlightOPColorDesc: { message: "Kolor, kt\xF3ry b\u0119dzie u\u017Cywany do wyr\xF3\u017Cniania autora.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "Je\u015Bli u\u017Cytkownika klika na link do zaawansowanej opcji podczas, gdy zaawansowane opcje s\u0105 schowane, czy powiadomienie powinno zosta\u0107 wy\u015Bwietlone?", description: "" }, commentHidePerName: { message: "Utrzymywanie schowanych komentarzy", description: "" }, userInfoHoverInfoDesc: { message: "Poka\u017C informacje o u\u017Cytkowniku (karma, jak d\u0142ugo jest redditorem) po najechaniu myszk\u0105.", description: "" }, selectedEntryName: { message: "Zaznaczony wpis", description: "" }, betteRedditPinHeaderTitle: { message: "Przypnij nag\u0142\xF3wek", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Symbole zast\u0119pcze makr", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "W\u0142\u0105cz dla informacji o banowaniu", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Otw\xF3rz poczt\u0119 w nowej karcie", description: "" }, versionDesc: { message: "Sprawdza obecn\u0105/poprzedni\u0105 wersj\u0119.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Kolor t\u0142a", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Twoja nazwa u\u017Cytkownika, karma, opcje, menu RES\xA0oznaczone z\u0119batk\u0105 itd.\xA0s\u0105 ukryte. Mo\u017Cesz\xA0pokaza\u0107 je ponownie klikaj\u0105c przycisk $1 w\xA0prawym g\xF3rnym rogu.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatycznie zaznaczaj najwy\u017Cszy widoczny wpis podczas przewijania.", description: "" }, keyboardNavFollowLinkTitle: { message: "Otw\xF3rz link", description: "" }, keyboardNavMoveBottomDesc: { message: "Id\u017A na sam d\xF3\u0142 listy (na stronach z list\u0105 link\xF3w).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "Filtruj wg subreddita na stronie u\u017Cytkownika", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatyczna kopia zapasowa", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Zag\u0142osuj w g\xF3r\u0119 na zaznaczony link lub komentarz (ale nie usuwaj swojego g\u0142osu).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Op\xF3\u017Anienie zanikania", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Linki bezpo\u015Brednie do komentarzy", description: "" }, aboutOptionsLicenseTitle: { message: "Licencja", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Poka\u017C podgl\u0105d dla post\xF3w.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Przesu\u0144 obraz w prawo", description: "" }, keyboardNavPrevPageDesc: { message: "Przejd\u017A do poprzedniej strony (tylko strony z list\u0105\xA0link\xF3w).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitoruj odwiedzone posty", description: "" }, accountSwitcherUserSwitched: { message: "Prze\u0142\u0105czono na /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Otw\xF3rz linki znalezione w komentarzach w nowej karcie.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Wybierz metod\u0119 doboru kolor\xF3w dla nazw u\u017Cytkownik\xF3w.", description: "" }, stylesheetSubredditClassTitle: { message: "Klasa subreddita", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Szybko\u015B\u0107 zanikania", description: "" }, userInfoCommentKarma: { message: "Karma z komentarzy:", description: "" }, settingsConsoleDesc: { message: "Zarz\u0105dzaj swoimi ustawieniami i preferencjami RES.", description: "" }, userInfoFadeSpeedDesc: { message: "Szybko\u015B\u0107 animacji zanikania (w sekundach).", description: "" }, userHighlightModColorTitle: { message: "Kolor moderator\xF3w", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Op\xF3\u017Anienie otwierania", description: "" }, messageMenuLinksTitle: { message: "Linki", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Linki\xA0z komentarzy w nowej karcie", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Bl\u0105d podczas wczytywania informacji o subreddicie.", description: "" }, accountSwitcherName: { message: "Prze\u0142\u0105cznik kont", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Id\u017A do nast\u0119pnego komentarza na tym samym poziomie.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Szybko\u015B\u0107 zanikania", description: "" }, searchHelperLegacySearchTitle: { message: "Stara wyszukiwarka", description: "" }, nightModeNightSwitchTitle: { message: "Prze\u0142\u0105czanie trybu\xA0nocnego", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Zapisz link do \u017Ar\xF3d\u0142a", description: "" }, userInfoFadeDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim schowa si\u0119 ramka informacyjna.", description: "" }, commentPreviewEnableForPostsTitle: { message: "W\u0142\u0105cz dla post\xF3w", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Poka\u017C karm\u0119 z komentarzy", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Poka\u017C pomoc dla skr\xF3t\xF3w klawiaturowych.", description: "" }, presetsLiteTitle: { message: "Lekki", description: "" }, dashboardDashboardShortcutTitle: { message: "Skr\xF3t\xA0do\xA0Panelu RES", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Wygl\u0105d ramki do u\u017Cycia w Trybie nocnym (jak powy\u017Cej).", description: "" }, keyboardNavHideTitle: { message: "Ukryj", description: "" }, userInfoLink: { message: "Link:", description: "" }, filteRedditAddCustomFilter: { message: "+dodaj w\u0142asny filtr", description: "" }, submitHelperTimeAgo: { message: "$1 temu", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "Kolor t\u0142a do u\u017Cycia w Trybie nocnym.", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Zapisuj balans g\u0142os\xF3w", description: "" }, userHighlightHighlightFriendDesc: { message: "Wyr\xF3\u017Cnij komentarze przyjaci\xF3\u0142.", description: "" }, presetsCleanSlateTitle: { message: "Czysta tablica", description: "" }, betteRedditVideoTimesDesc: { message: "Poka\u017C czasy trwania\xA0klip\xF3w wideo, je\u015Bli to mo\u017Cliwe.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignorowany.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Odpowiedz", description: "" }, accountSwitcherSimpleArrow: { message: "prosta strza\u0142ka", description: "" }, showImagesAutoExpandTypesTitle: { message: "Automatycznie pokazuj typy", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Znaczek", description: "" }, messageMenuUseQuickMessageTitle: { message: "U\u017Cywaj Szybkich wiadomo\u015Bci", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Wybierz ostatni\u0105 rzecz po za\u0142adowaniu", description: "" }, userTaggerCommandLineDescription: { message: "oznacza autora obecnie zaznaczonego linka/komentarza", description: "" }, betteRedditHideLinkInstantDesc: { message: "Ukrywaj linki natychmiast.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "Wszystkie opcje s\u0105 domy\u015Blnie wy\u0142\u0105czone. Odznacz to pole, je\u015Bli chcesz ukry\u0107 zaawansowane opcje.", description: "" }, betteRedditFixHideLinksTitle: { message: 'Popraw linki "Ukryj"', description: "" }, commentNavName: { message: "Nawigator komentarzy", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Nie wyr\xF3\u017Cniaj pierwszego komentarza", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Otw\xF3rz Nawigator komentarzy.", description: "" }, presetsLiteDesc: { message: "RES Lite: tylko popularne opcje", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Naci\u015Bni\u0119cie\xA0Ctrl+Enter/Cmd+Enter wy\u015Ble tw\xF3j komentarz/edycj\u0119 wiki.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nic", description: "" }, filteRedditShowFilterlineTitle: { message: "Poka\u017C pasek z\xA0filtrami", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Linki sekcji", description: "" }, hideChildCommentsDesc: { message: "Pozwala na ukrywanie podrz\u0119dnych komentarzy.", description: "" }, accountSwitcherOptPrompt: { message: "Wprowad\u017A 6-cyfrowy kod weryfikacyjny z aplikacji dla $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Kolor administratora po najechaniu", description: "" }, submitHelperName: { message: "Pomocnik post\xF3w", description: "" }, myDashboard: { message: "m\xF3j panel", description: "" }, searchHelperSearchBySubredditDesc: { message: "Domy\u015Blnie szukaj w aktualnym subreddicie u\u017Cywaj\u0105c pola wyszukiwania, zamiast w ca\u0142ym reddicie.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "\u015Arodowisko testowe", description: "" }, showImagesBufferScreensTitle: { message: "Buforuj ekrany", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Synchronizuj swoje kopie zapasowe do wybranego dostawcy.\n\nSynchronizacja wyst\u0105pi co jaki\u015B czas podczas \u0142adowania strony. Je\u015Bli u\u017Cywasz dw\xF3ch komputer\xF3w jednocze\u015Bnie, niekt\xF3re ustawienia mog\u0105 zosta\u0107 utracone.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Domy\u015Blne sortowanie", description: "" }, troubleshooterResetToFactoryTitle: { message: "Przywr\xF3\u0107 ustawienia fabryczne", description: "" }, commentStyleCommentRoundedTitle: { message: "Zaokr\u0105glone kraw\u0119dzie", description: "" }, keyboardNavImageSizeUpTitle: { message: "Powi\u0119ksz obraz", description: "" }, betteRedditUnhideSubmissionError: { message: "Wyst\u0105pi\u0142 b\u0142\u0105d podczas ponownego pokazywania posta. Spr\xF3buj klikn\u0105\u0107 ponownie.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "prze\u0142\u0105cz styl subreddita $1 dla: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Klasa zalogowanego", description: "" }, commentsCategory: { message: "Komentarze", description: "" }, commentToolsStrikeKeyDesc: { message: "Skr\xF3t klawiaturowy przekre\u015Blaj\u0105cy tekst.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Poka\u017C informacje o po\u015Bcie podczas przewijania do g\xF3ry na stronach z komentarzami.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Schowaj opcje wyszukiwania", description: "" }, logoLinkMyUserPage: { message: "Moja strona u\u017Cytkownika", description: "" }, keyboardNavUseGoModeDesc: { message: 'Wymagaj aktywacji opcji goMode przed u\u017Cyciem\xA0skr\xF3t\xF3w "Przejd\u017A do..."', description: "" }, easterEggName: { message: "Easter Egg", description: "" }, commentToolsSuperKeyDesc: { message: "Skr\xF3t klawiaturowy zmieniaj\u0105cy tekst w indeks g\xF3rny.", description: "" }, keyboardNavUpVoteTitle: { message: "G\u0142osuj w g\xF3r\u0119", description: "" }, notificationNotificationTypesDesc: { message: "Zarz\u0105dzaj r\xF3\u017Cnymi typami powiadomie\u0144.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Otw\xF3rz okno dialogowe umo\u017Cliwiaj\u0105ce wys\u0142anie szybkiej wiadomo\u015Bci po klikni\u0119ciu na linki reddit.com/message/compose w komentarzach, tek\u015Bcie w\u0142asnym lub na stronach wiki.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Aktualizuj\xA0ikony wiadomo\u015Bci\xA0w aktywnej karcie kiedy RES szuka nowych wiadomo\u015Bci.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Op\xF3\u017Anij pokazywanie opcji kt\xF3re maj\u0105 wysok\u0105 warto\u015B\u0107 kart.", description: "" }, userInfoPostKarma: { message: "Karma z post\xF3w:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "prze\u0142\u0105cz styl subreddita $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Czytaj wi\u0119cej", description: "" }, troubleshooterClearTagsDesc: { message: "Usuwa wszystkie wpisy dotycz\u0105ce u\u017Cytkownik\xF3w maj\u0105cych balans g\u0142os\xF3w pomi\u0119dzy +1 i -1 (tylko u\u017Cytkownik\xF3w bez znacznika).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Link w logo Reddita", description: "" }, filteRedditForceSyncFiltersLabel: { message: "synchronizuj", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite to zestaw modu\u0142\xF3w czyni\u0105cych korzystanie z Reddita o wiele prostszym.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "W\u0142\u0105cz dla konfiguracji subreddita", description: "" }, accountSwitcherShowKarmaDesc: { message: "Poka\u017C karm\u0119 post\xF3w i karm\u0119 komentarzy ka\u017Cdego z kont w menu Prze\u0142\u0105cznika kont.", description: "" }, keyboardNavDesc: { message: "Nawiguj po reddicie za pomoc\u0105 klawiatury!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Kolor u\u017Cywany do wyr\xF3\u017Cnienia autor\xF3w po najechaniu.", description: "" }, userTaggerVWNumberDesc: { message: "Poka\u017C numer (np. [+6]) zamiast [vw].", description: "" }, pageNavToCommentTitle: { message: "Do sekcji nowego komentarza", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Id\u017A\xA0do rodzica komentarza.", description: "" }, keyboardNavGoModeDesc: { message: 'Wejd\u017A do trybu "Przejd\u017A do" (konieczny przed u\u017Cyciem kt\xF3regokolwiek z poni\u017Cszych skr\xF3t\xF3w "Przejd\u017A do...").', description: "" }, hideChildCommentsHideNestedDesc: { message: "Ukryj podrz\u0119dne komentarze zagnie\u017Cd\u017Conych komentarzy podczas chowania wszystkich podrz\u0119dnych komentarzy.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Karty na stronie wyszukiwania", description: "" }, multiredditNavbarAddShortcut: { message: "+dodaj\xA0skr\xF3t sekcji multireddit", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Prze\u0142\u0105cz kolor lewej kraw\u0119dzi komentarzy, kiedy s\u0105 schowane.", description: "" }, scrollOnCollapseDesc: { message: "Przewi\u0144 do nast\u0119pnego komentarza, kiedy poprzedni jest zwini\u0119ty.", description: "" }, commandLineName: { message: "Linia Komend RES", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Przesu\u0144 obraz w lewo", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Pogrub daty edycji (np. "ostatnio edytowano 50 minut temu").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Op\xF3\u017Anienie zanikania", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manualnie dodaj funkcj\u0119", description: "" }, userTaggerShowTaggingIconTitle: { message: "Poka\u017C ikon\u0119 dodawania znacznika", description: "" }, dashboardDesc: { message: "Panel RES to miejsce, w kt\xF3rym znajdziesz wiele funkcji, w tym wid\u017Cet\xF3w i innych u\u017Cytecznych narz\u0119dzi.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "Po wybraniu makra z listy rozwijanej, nie chowaj listy.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddity", description: "" }, filteRedditAllowNSFWWhere: { message: "gdzie", description: "" }, keyboardNavImageMoveDownDesc: { message: "Przesuwa obraz(y) w zaznaczonym po\u015Bcie w d\xF3\u0142.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Ostrzegaj przed automatycznym odzyskiwaniem", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Otw\xF3rz link bezpo\u015Bredni w nowej karcie", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Usuwa restrykcj\u0119 wysoko\u015Bci obrazu w zaznaczonym po\u015Bcie.", description: "" }, stylesheetMultiredditClassDesc: { message: 'Na stronach multireddita, dodaj nazw\u0119 multireddita jako klas\u0119 CSS do elementu body.\nNa przyk\u0142ad, /u/ExampleUser/m/ExampleMulti b\u0119dzie mia\u0142 klas\u0119 "body.res-user-exampleuser-m-examplemulti".', description: "" }, userTaggerTagUser: { message: "oznacz u\u017Cytkownika\xA0$1", description: "" }, searchHelperLegacySearchDesc: { message: "\u017B\u0105daj starego wygl\u0105du dla wyszukiwarki reddita.\n\nTa opcja b\u0119dzie dost\u0119pna tylko przez pewien czas.", description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Obserwuj profil w nowej karcie", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Konwertuj GIF-y na Gfycat", description: "" }, submitIssueName: { message: "Zg\u0142o\u015B problem", description: "" }, aboutOptionsFAQTitle: { message: "FAQ", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Poka\u017C informacje o u\u017Cytkowniku", description: "" }, selectedEntryAddLineDesc: { message: "Poka\u017C lini\u0119 po prawej stronie.", description: "" }, redditUserInfoHideDesc: { message: "Ukrywa nowe ramki z informacjami o u\u017Cytkownikach.", description: "" }, nightModeDesc: { message: "Ciemniejszy, bardziej przyjazny dla wzroku styl\xA0Reddita zaprojektowany dla nocnego surfowania.\n\nUwaga: U\u017Cycie tego prze\u0142\u0105cznika wy\u0142\u0105czy wszystkie funkcje modu\u0142u Tryb nocny.\nBy\xA0po prostu wy\u0142\u0105czy\u0107 tryb nocny, u\u017Cyj prze\u0142\u0105cznika nightModeOn poni\u017Cej.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Styl subreddita wy\u0142\u0105czony dla subreddita: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Kolor dla wyr\xF3\u017Cnionego tekstu.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Zaktualizuj\xA0aktywn\u0105 kart\u0119", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Id\u017A w g\xF3r\u0119 Nawigatorem komentarzy", description: "" }, betteRedditHideLinkInstantTitle: { message: "Ukrywaj linki natychmiast", description: "" }, keyboardNavProfileDesc: { message: "Przejd\u017A do profilu.", description: "" }, dashboardTagsPerPageDesc: { message: "Jak wiele znacznik\xF3w u\u017Cytkownika powinno by\u0107 pokazywane na jednej stronie na karcie [moje tagi u\u017Cytkownika](/r/Dashboard/#userTaggerContents). (wpisz zero by pokaza\u0107 wszystkie na jednej stronie)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "Zobacz link i komentarze w nowych kartach.", description: "" }, onboardingUpdateNotificationName: { message: "Powiadomienie o aktualizacji", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim schowa si\u0119 ramka informacyjna.", description: "" }, nightModeNightModeStartDesc: { message: "Godzina o kt\xF3rej tryb nocny w\u0142\u0105czy si\u0119 automatycznie.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Sprecyzuj jak gruba (w pikselach) ma by\u0107 linia oddzielaj\u0105ca najlepsze komentarze.", description: "" }, styleTweaksShowExpandosTitle: { message: "Poka\u017C ekspandery", description: "" }, nerAutoLoadDesc: { message: "Automatycznie wczytuj nast\u0119pne strony podczas przewijania (je\u015Bli opcja jest wy\u0142\u0105czona, musisz klikn\u0105\u0107 by za\u0142adowa\u0107 nast\u0119pn\u0105 stron\u0119).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "przyklejone", description: "" }, userHighlightAdminColorTitle: { message: "Kolor administratora", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Poka\u017C narz\u0119dzie autouzupe\u0142niania nazw wiki podczas pisania post\xF3w, komentarzy i odpowiedzi.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "Je\u015Bli, i tylko je\u015Bli, masz wiele kont Google zalogowanych jednocze\u015Bnie, wpisz email konta, kt\xF3re chcesz u\u017Cy\u0107.\n\nZazwyczaj nie musisz u\u017Cywa\u0107 tej opcji.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Szybko\u015B\u0107 animacji zanikania (w sekundach).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Pomniejsz obraz", description: "" }, orangeredHideEmptyModMailDesc: { message: "Ukryj przycisk poczty moderatora, gdy skrzynka jest pusta.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'Karta "zapisane" jest teraz umieszczona\xA0na pasku bocznym\xA0multireddit\xF3w. Ta opcja przywr\xF3ci\xA0link "zapisane" w nag\u0142\xF3wku (obok kart "gor\u0105ce", "nowe" itd.).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Domy\u015Blny kolor belki.", description: "" }, toggleOff: { message: "wy\u0142", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Poka\u017C narz\u0119dzie autouzupe\u0142niania nazw subreddit\xF3w podczas pisania post\xF3w, komentarzy i odpowiedzi.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Lekko pomniejsz obraz", description: "" }, userInfoHighlightButtonDesc: { message: 'Poka\u017C przycisk "wyr\xF3\u017Cnij" w ramce z informacjami o u\u017Cytkownikach, by wyr\xF3\u017Cni\u0107 posty/komentarze wybranych u\u017Cytkownik\xF3w.', description: "" }, betteRedditVideoYouTubeTitle: { message: "Tytu\u0142 na YouTube: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Poka\u017C znacznik czasowy\xA0na stronach wiki", description: "" }, commentToolsMacrosDesc: { message: "Dodaj przyciski do wklejania cz\u0119sto u\u017Cywanych fragment\xF3w tekstu.", description: "" }, keyboardNavProfileTitle: { message: "Profil", description: "" }, subredditManagerLinkAllDesc: { message: 'Pokazuje link "WSZYSTKO" w mened\u017Cerze subreddita.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Kolejka moderacji", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Filtruj subreddity od", description: "" }, userTaggerShowAnyway: { message: "pokaza\u0107 mimo to?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Wyczy\u015B\u0107 pami\u0119\u0107 podr\u0119czn\u0105", description: "" }, filteRedditEverywhere: { message: "Wsz\u0119dzie", description: "" }, redditUserInfoHideTitle: { message: "Ukryj natywne ramki", description: "" }, accountSwitcherAddAccount: { message: "+dodaj konto", description: "" }, showImagesBufferScreensDesc: { message: "Chowaj obrazy kt\xF3re znajduj\u0105 si\u0119 dalej ni\u017C x d\u0142ugo\u015Bci ekran\xF3w od miejsca w kt\xF3rym si\u0119 znajdujesz by oszcz\u0119dza\u0107 pami\u0119\u0107. Wy\u017Csza warto\u015B\u0107 oznacza mniej skacz\u0105cy obraz, ale i mniejsz\u0105 oszcz\u0119dno\u015B\u0107 pami\u0119ci.", description: "" }, userInfoHighlight: { message: "Wyr\xF3\u017Cnij", description: "" }, filteRedditExcludeModqueueDesc: { message: "Nie filtruj niczego na stronie\xA0kolejki moderacji (kolejka moderacji, raporty, spam itd.).", description: "" }, filteRedditEmptyNotificationHeader: { message: "Wszystkie posty s\u0105 odfiltrowane.", description: "" }, troubleshooterTestNotificationsDesc: { message: "Testuj powiadomienia.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Subskrybenci:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Id\u017A do najwy\u017Cszego komentarza w poprzednim w\u0105tku komentarzy.", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Poka\u017C narz\u0119dzia formatowania tekstu (pogrubienie,\xA0kursywa, tabele itd.) w formularzu edycji post\xF3w, komentarzy i innych p\xF3l\xA0Snudown/markdown.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Pokazuje link "MODEROWANE" w mened\u017Cerze subreddita.', description: "" }, troubleshooterBreakpointLabel: { message: "Wstrzymaj JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Pokazuje szybki filtr subreddit\xF3w na g\xF3rze listy subreddit\xF3w.", description: "" }, keyboardNavMoveBottomTitle: { message: "Id\u017A na sam d\xF3\u0142", description: "" }, backupAndRestoreBackupDate: { message: "Data kopii zapasowej: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Kolor moderator\xF3w po najechaniu", description: "" }, spoilerTagsName: { message: "Globalne znaczniki spojler\xF3w", description: "" }, betteRedditVideoUploadedDesc: { message: "Poka\u017C daty za\u0142adowania\xA0klip\xF3w\xA0wideo, je\u015Bli to mo\u017Cliwe.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Zapisz komentarze", description: "" }, hoverFadeSpeedDesc: { message: "Szybko\u015B\u0107 zanikania (w sekundach).", description: "" }, betteRedditShowTimestampPostsDesc: { message: 'Poka\u017C dok\u0142adn\u0105 dat\u0119 (np.\xA0"Sun Nov 16 20:14:56 2014\xA0UTC") zamiast daty relatywnej (np. "7 dni temu"), dla post\xF3w.', description: "" }, submissionsCategory: { message: "Posty", description: "" }, keyboardNavSaveCommentDesc: { message: "Zapisz\xA0aktualny komentarz do swojego konta na reddicie. Ta opcja jest dost\u0119pna z ka\u017Cdego miejsca w kt\xF3rym si\u0119 zalogujesz, ale nie zachowuje oryginalnej tre\u015Bci\xA0je\u015Bli zostanie edytowana lub usuni\u0119ta.", description: "" }, keyboardNavSavePostTitle: { message: "Zapisz post", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Kolor czcionki", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Dodaj opcje wyszukiwania", description: "" }, penaltyBoxDesc: { message: "Automatycznie op\xF3\u017Aniaj wczytywanie lub wy\u0142\u0105czaj funkcje RES, kt\xF3re nie s\u0105 u\u017Cywane.", description: "" }, searchHelperSearchByFlairDesc: { message: "Po klikni\u0119ciu na znaczek postu, przeszukaj jego subreddit pod k\u0105tem tego znaczka.\nMo\u017Ce nie dzia\u0142ac na niekt\xF3rych subredditach kt\xF3re chowaj\u0105 prawdziwy znaczek i dodaj\u0105 pseudo-znaczek za pomoc\u0105 CSS (jedyna mo\u017Cliwo\u015B\u0107 obej\u015Bcia problemu to wy\u0142\u0105czenie stylu subreddita na takim subreddicie).", description: "" }, subredditInfoDesc: { message: "Dodaje ramk\u0119 z informacjami o subredditach widoczn\u0105 po najechaniu na ich nazw\u0119.", description: "" }, backupAndRestoreSavedNotification: { message: "Zapisano kopi\u0119 zapasow\u0105 do $1.", description: "" }, nightModeNightSwitchDesc: { message: "Aktywuj w menu oznaczonym z\u0119batk\u0105 prze\u0142\u0105cznik, kt\xF3ry prze\u0142\u0105cza pomi\u0119dzy dziennym i nocnym stylem reddita.", description: "" }, commentDepthDesc: { message: "Umo\u017Cliwia ustawienie preferowanej g\u0142\u0119boko\u015Bci komentarzy do jakiej chcesz widzie\u0107 w\u0105tki komentarzy po klikni\u0119ciu na link prowadz\u0105cy do komentarzy.\n\n0 = Wszystko, 1 = G\u0142\xF3wne komentarze, 2 = Odpowiedzi na g\u0142\xF3wne komentarze, 3 = Odpowiedzi na odpowiedzi na g\u0142\xF3wne komentarze, itd.", description: "" }, stylesheetMultiredditClassTitle: { message: "Klasa multireddita", description: "" }, subredditManagerLinkSavedDesc: { message: 'Pokazuje link "ZAPISANE" w mened\u017Cerze subreddita.', description: "" }, noPartEvenIfSubscriberDesc: { message: 'W\u0142\u0105cz tryb\xA0"Bez partycypacji" nawet w subredditach w kt\xF3rych jestem subskrybentem.', description: "" }, commentToolsQuoteKeyDesc: { message: "Skr\xF3t klawiaturowy s\u0142u\u017C\u0105cy do cytowania tekstu.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Zaznacz formularz po za\u0142adowaniu strony.", description: "" }, nightModeNightModeEndDesc: { message: "Godzina o kt\xF3rej tryb nocny wy\u0142\u0105czy si\u0119 automatycznie.", description: "" }, nerPauseAfterEveryDesc: { message: "Po automatycznym za\u0142adowaniu danej ilo\u015Bci stron, wstrzymaj automatyczne wczytywanie.\n\n0 oznacza, \u017Ce Nieko\u0144cz\u0105cy si\u0119 Reddit wstrzyma wczytywanie tylko je\u015Bli naci\u015Bniesz przycisk odtw\xF3rz/pauza w prawym g\xF3rnym rogu.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sortuj", description: "" }, RESSettings: { message: "Ustawienia RES", description: "" }, filteRedditNSFWfilterDesc: { message: "Odfiltrowuje linki oznaczone jako NSFW (18+).", description: "" }, logoLinkName: { message: "Link w logo", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "Je\u015Bli co\u015B dzia\u0142a nie tak, odwied\u017A /r/RESissues by uzyska\u0107 pomoc.", description: "" }, nightModeAutomaticNightModeNone: { message: "Wy\u0142\u0105czony", description: "" }, keyboardNavMoveUpDesc: { message: "Id\u017A w g\xF3r\u0119 do poprzedniego linka lub komentarza na jednopoziomowej li\u015Bcie.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Otwiera\u0107 obrazki w nowej karcie/nowym oknie po klikni\u0119ciu?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: 'Nie wyr\xF3\u017Cniaj "pierwszy komentuj\u0105cy" w pierwszym komentarzu w danym drzewie komentarzy.', description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Wy\u015Bwietl oryginaln\u0105 rozdzielczo\u015B\u0107", description: "" }, troubleshooterNoActionTaken: { message: "Nie podj\u0119to \u017Cadnej akcji.", description: "" }, commentPreviewEnableForWikiTitle: { message: "W\u0142\u0105cz dla stron wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Wyklucz strony u\u017Cytkownik\xF3w", description: "" }, troubleshooterResetLabel: { message: "Resetuj", description: "" }, subredditManagerButtonEditTitle: { message: "Przycisk Edytuj", description: "" }, hoverInstancesName: { message: "nazwa", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Automatycznie wybieraj podczas przewijania", description: "" }, showImagesConserveMemoryTitle: { message: "Oszcz\u0119dzaj pami\u0119\u0107", description: "" }, showImagesName: { message: "Podgl\u0105d obraz\xF3w w tre\u015Bci", description: "" }, commentStyleCommentIndentDesc: { message: 'U\u017Cyj wci\u0119\u0107 komentarzy maj\u0105cych [x] pikseli (wpisz tylko numer, bez\xA0"px").', description: "" }, numComments: { message: "$1 komentarzy", description: "" }, troubleshooterDisableRESTitle: { message: "Wy\u0142\u0105cz RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "G\u0142osuj w d\xF3\u0142 bez usuwania", description: "" }, userInfoRedditorSince: { message: "Na Reddicie od:", description: "" }, userTaggerShow: { message: "Poka\u017C", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Poka\u017C karm\u0119 z komentarzy poza karm\u0105 z post\xF3w.", description: "" }, hoverFadeSpeedTitle: { message: "Szybko\u015B\u0107 zanikania", description: "" }, necLoadChildCommentsTitle: { message: "Wczytaj podrz\u0119dne komentarze", description: "" }, showParentName: { message: "Poka\u017C nadrz\u0119dny komentarz po najechaniu", description: "" }, keyboardNavLinkNumbersTitle: { message: "Numerowane linki", description: "" }, showImagesShowViewImagesTabDesc: { message: 'Poka\u017C kart\u0119 "Zobacz obrazy" na g\xF3rze ka\u017Cdego subreddita, by szybko otworzy\u0107 wszystkie obrazy jednocze\u015Bnie.', description: "" }, accountSwitcherShowGoldDesc: { message: "Poka\u017C status gold ka\u017Cdego z kont w menu Prze\u0142\u0105cznika kont.", description: "" }, keyboardNavMoveToParentTitle: { message: "Id\u017A do rodzica", description: "" }, troubleshooterTestEnvironmentLabel: { message: "\u015Arodowisko testowe", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Prze\u0142\u0105cz widoczno\u015B\u0107 komentarzy na klikni\u0119cie lewej kraw\u0119dzi", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Poka\u017C znacznik czasowy komentarzy", description: "" }, backupAndRestoreImported: { message: "Twoje ustawienia RES zosta\u0142y zaimportowane. Prze\u0142adowywanie Reddita.", description: "" }, showImagesConserveMemoryDesc: { message: "Oszcz\u0119dzaj pami\u0119\u0107 chowaj\u0105c obrazy, kt\xF3re nie s\u0105 aktualnie wy\u015Bwietlane na ekranie.", description: "" }, announcementsMarkAsRead: { message: "oznacz jako przeczytane", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Wy\u0142\u0105cz animacje CSS3. (To ustawienie zostanie zastosowane dla ca\u0142ego reddita, wszystkich subreddit\xF3w i funkcji RES. Jednak\u017Ce, subreddity wci\u0105\u017C mog\u0105 zachowa\u0107 niekt\xF3re animacje.)", description: "" }, accountSwitcherAccountsTitle: { message: "Konta", description: "" }, spoilerTagsDesc: { message: "Chowa spojlery na stronach profili u\u017Cytkownik\xF3w.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Poka\u017C powiadomienie pop-up", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Zag\u0142osuj w d\xF3\u0142 na zaznaczony link lub komentarz (ale nie usuwaj swojego g\u0142osu).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Ustawienia zosta\u0142y zaimportowane w innej karcie. Czy prze\u0142adowa\u0107 stron\u0119 by je aplikowa\u0107?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popularne", description: "" }, showKarmaShowGoldTitle: { message: "Poka\u017C status gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Prze\u0142\u0105czanie ekspandera link\xF3w", description: "" }, userTaggerTruncateTagDesc: { message: "Przycinaj d\u0142ugie tagi do 30 znak\xF3w. Najechanie na tag pokazuje jego ca\u0142\u0105 nazw\u0119.", description: "" }, commentDepthCommentDepth: { message: "g\u0142\u0119boko\u015B\u0107 komentarzy", description: "" }, keyboardNavImageMoveDownTitle: { message: "Przesu\u0144 obraz w\xA0d\xF3\u0142", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Poprzedni obraz w galerii", description: "" }, userTaggerTaggedUsers: { message: "oznaczeni u\u017Cytkownicy", description: "" }, subredditInfoHoverDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach, przed wczytaniem etykiety.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Id\u017A w\xA0g\xF3r\u0119 w\u0105tku", description: "" }, quickMessageHandleContentLinksTitle: { message: "Obs\u0142uguj linki w tre\u015Bci", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "Dodaje wi\u0119cej informacji do licznika karmy obok nazwy u\u017Cytkownika na pasku u\u017Cytkownika.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Kolor wyr\xF3\u017Cnienia kontrowersyjnych", description: "" }, userHighlightAdminColorDesc: { message: "Kolor, kt\xF3ry b\u0119dzie u\u017Cywany do wyr\xF3\u017Cniania administrator\xF3w.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Domy\u015Blna g\u0142\u0119boko\u015B\u0107 w\u0105tk\xF3w komentarzy", description: "" }, styleTweaksNavTopDesc: { message: "Przenosi pasek menu u\u017Cytkownika do g\xF3ry (\u015Bwietna opcja dla netbook\xF3w!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Funkcje", description: "" }, hideChildCommentsNestedDesc: { message: 'Dodaje przycisk "Ukryj podrz\u0119dne komentarze" do wszystkich komentarzy z odpowiedziami, a nie tylko do komentarzy pierwszego poziomu.', description: "" }, showKarmaSeparatorDesc: { message: "Separator pomi\u0119dzy karm\u0105 z post\xF3w i karm\u0105 z komentarzy.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "D\u0142ugo\u015B\u0107 subskrypcji", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Id\u017A w d\xF3\u0142\xA0do rodzica", description: "" }, dashboardTagsPerPageTitle: { message: "Tag\xF3w na stron\u0119", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Ogranicz wyszukiwanie do subreddita", description: "" }, filteRedditAddSubreddits: { message: "+dodaj subreddity", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "U\u017Cywaj GIF-\xF3w zamiast GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Poka\u017C znacznik czasowy dla log\xF3w moderacji", description: "" }, userTaggerStoreSourceLinkDesc: { message: "Zapisuj link do postu/komentarza w kt\xF3rym dodano znacznik u\u017Cytkownika.", description: "" }, singleClickOpenOrderTitle: { message: "Kolejno\u015B\u0107 otwierania", description: "" }, multiredditNavbarDesc: { message: "Usprawnij pasek nawigacji znajduj\u0105cy si\u0119 po lewej stronie strony g\u0142\xF3wnej.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Testuj powiadomienia", description: "" }, commentToolsQuoteKeyTitle: { message: "Klawisz cytowania", description: "" }, keyboardNavHideDesc: { message: "Ukryj link.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Klawisz pogrubiania", description: "" }, xPostLinksName: { message: "Linki x-post", description: "" }, backupAndRestoreAfterCancel: { message: "Je\u015Bli klikniesz Anuluj, przeniesiemy Ci\u0119 do strony ustawie\u0144, na kt\xF3rej mo\u017Cesz wy\u0142\u0105czy\u0107 automatyczn\u0105 kopi\u0119 zapasow\u0105 lub stworzy\u0107 now\u0105 kopi\u0119 zapasow\u0105, by nadpisa\u0107 t\u0119.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Skr\xF3t subreddita", description: "" }, userTaggerShowTaggingIconDesc: { message: "Zawsze pokazuj ikon\u0119 narz\u0119dzia znacznika po ka\u017Cdej nazwie u\u017Cytkownika.", description: "" }, commentPreviewDraftStyleDesc: { message: 'U\u017Cyj t\u0142a w stylu "kopia robocza" dla podgl\u0105du, by odr\xF3\u017Cni\u0107 go od pola edycji komentarza.', description: "" }, keyboardNavFollowCommentsTitle: { message: "Otw\xF3rz komentarze", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Wiadomo\u015Bci moderacyjne", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Domy\u015Blnie odznacz "wy\u015Blij odpowiedzi do skrzynki odbiorczej" wysy\u0142aj\u0105c nowy post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Kolor", description: "" }, hideChildCommentsHideNestedTitle: { message: "Ukryj zagnie\u017Cd\u017Cone", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Potwierdzenie prze\u0142adowania", description: "" }, newCommentCountCleanCommentsTitle: { message: "Wyczy\u015B\u0107 komentarze", description: "" }, messageMenuFadeSpeedDesc: { message: "Szybko\u015B\u0107 animacji zanikania (w sekundach).", description: "" }, userInfoComments: { message: "Komentarze", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Wymu\u015B synchronizacj\u0119 filtr\xF3w", description: "" }, nerShowServerInfoTitle: { message: "Poka\u017C informacje o serwerze", description: "" }, troubleshooterSettingsReset: { message: "Wszystkie ustawienia zosta\u0142y zresetowane. Od\u015Bwie\u017C\xA0stron\u0119, by zobaczy\u0107 efekt.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Przesuwa obraz(y) w zaznaczonym po\u015Bcie w lewo.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Otw\xF3rz link bezpo\u015Bredni do aktualnego komentarza (tylko strony z komentarzami).", description: "" }, subredditInfoAddRemoveShortcut: { message: "skr\xF3t", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "Op\xF3\u017Anianie funkcji RES", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Ukrywa linki domeny w linii tytu\u0142owej posta.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Przyjazne dla daltonist\xF3w", description: "" }, userInfoSendMessage: { message: "wy\u015Blij wiadomo\u015B\u0107", description: "" }, showKarmaUseCommasDesc: { message: "U\u017Cyj separator\xF3w w du\u017Cych liczbach oznaczaj\u0105cych karm\u0119.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Wy\u0142\u0105cz przyciski g\u0142osowania", description: "" }, commentToolsLinkKeyDesc: { message: "Skr\xF3t klawiaturowy dodaj\u0105cy link.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Id\u017A w g\xF3r\u0119 komentarzy", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "Na stronie u\u017Cytkownika, oferuj wyszukiwanie post\xF3w u\u017Cytkownika z subreddita, z kt\xF3rego przyszli\u015Bmy.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "Strona", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: 'Zmie\u0144 domy\u015Bln\u0105\xA0g\u0142\u0119boko\u015B\u0107 kontekstu\xA0pod linkiem "kontekst".', description: "" }, styleTweaksHideDomainLink: { message: "Ukryj link domeny", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Lekko powi\u0119ksz obraz", description: "" }, pageNavToCommentDesc: { message: "Dodaje na ka\u017Cdej stronie ikon\u0119 umo\u017Cliwiaj\u0105c\u0105 przej\u015Bcie do sekcji nowego komentarza.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "\u017Baden", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Czy pokazywa\u0107 licznik nieprzeczytanych wiadomo\u015Bci na ikonie strony/karty?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Nadpisz swoje natywne filtry /r/all subredditami filtrowanymi przez ten modu\u0142. Je\u015Bli masz ich wi\u0119cej ni\u017C 100, zostan\u0105 wybrane najpopularniejsze z nich.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Pomocnik wyszukiwania", description: "" }, keyboardNavNextGalleryImageDesc: { message: "Poka\u017C nast\u0119pny obraz z galerii.", description: "" }, nightModeName: { message: "Tryb nocny", description: "" }, filteRedditExcludeModqueueTitle: { message: "Wyklucz kolejk\u0119 moderacji", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "W\u0142\u0105cz Lini\u0119 komend filtr\xF3w.", description: "" }, backupAndRestoreBackupSize: { message: "Rozmiar kopii zapasowej: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "nie mo\u017Cna ustawi\u0107 znacznika - nie wybrano postu/komentarza.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "w\u0142", description: "" }, contextDesc: { message: "Dodaje do \u017C\xF3\u0142tego paska z informacjami link umo\u017Cliwiaj\u0105cy zobaczenie g\u0142\u0119boko zagnie\u017Cd\u017Conych komentarzy w ich pe\u0142nym kontek\u015Bcie.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddity", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "G\u0142osuj w g\xF3r\u0119 bez usuwania", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Id\u017A na sam\u0105 g\xF3r\u0119", description: "" }, nightModeAutomaticNightModeUser: { message: "Godziny zdefiniowane przez u\u017Cytkownika", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Konwertuj linki do GIF-\xF3w na linki do Gfycat.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Odznacz wysy\u0142anie odpowiedzi do skrzynki odbiorczej", description: "" }, userTaggerIgnored: { message: "Ignotowani", description: "" }, commentToolsCommentingAsDesc: { message: "Pokazuje\xA0nazw\u0119 aktualnie zalogowanego\xA0u\u017Cytkownika by\xA0zapobiec napisaniu komentarza ze z\u0142ego konta.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Otw\xF3rz link w nowej karcie", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "Mo\u017Cesz to zmieni\u0107 p\xF3\u017Aniej w ustawieniach $1.", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Prze\u0142\u0105cznik", description: "" }, temporaryDropdownLinksName: { message: "Tymczasowe linki w rozwijalnym menu", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "Po prze\u0142\u0105czeniu konta, poka\u017C\xA0ostrze\u017Cenie w innych kartach.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Poka\u017C ikonk\u0119 \u015Bmietnika w trakcie przestawiania skr\xF3t\xF3w do subreddit\xF3w.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Kolor, kt\xF3ry b\u0119dzie u\u017Cywany do wyr\xF3\u017Cniania pierwszego komentuj\u0105cego.", description: "" }, troubleshooterClearLabel: { message: "Wyczy\u015B\u0107", description: "" }, backupDesc: { message: "Utw\xF3rz lub odzyskaj kopi\u0119 zapasow\u0105 ustawie\u0144 Reddit Enhancement Suite.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Styl rozwijanego menu", description: "" }, subredditManagerLinkFrontDesc: { message: 'Pokazuje link "STRONA G\u0141\xD3WNA" w mened\u017Cerze subreddita.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Styl odwiedzonych", description: "" }, submittedByAuthor: { message: "przez", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Naci\u015Bni\u0119cie\xA0Ctrl+Enter/Cmd+Enter wy\u015Ble tw\xF3j\xA0post.", description: "" }, RESTipsMenuItemTitle: { message: "Element menu", description: "" }, optionKey: { message: "ID opcji", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) i mn\xF3stwo cz\u0142onk\xF3w spo\u0142eczno\u015Bci przyczynili si\u0119 do rozwoju RES poprzez pisanie kodu, projektowanie i dzielenie si\u0119 pomys\u0142ami.", description: "" }, stylesheetDesc: { message: "Za\u0142aduj dodatkowe style lub w\u0142asne snippety CSS.", description: "" }, showAdvancedOptions: { message: "Poka\u017C zaawansowane opcje", description: "" }, accountSwitcherPassword: { message: "has\u0142o", description: "" }, userInfoUnignore: { message: "Przesta\u0144 ignorowa\u0107 ", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Prze\u0142\u0105cz kolor lewej kraw\u0119dzi komentarzy", description: "" }, commentToolsMacrosTitle: { message: "Makra", description: "" }, nightModeAutomaticNightModeDesc: { message: "W\u0142\u0105cz automatyczny tryb nocny.\n\nW trybie automatycznym wymagane jest udzielenie zgody na korzystanie z lokalizacji. Lokalizacja b\u0119dzie u\u017Cyta wy\u0142\u0105cznie do wyliczenia godziny wschodu i zachodu s\u0142o\u0144ca.\n\nW trybie godzin zdefiniowanych r\u0119cznie tryb nocny\xA0w\u0142\u0105czy si\u0119 i wy\u0142\u0105czy o godzinach skonfigurowanych poni\u017Cej.\n\nDla godzin poni\u017Cej u\u017Cywany jest czas 24-godzinny.\n\nBy tymczasowo nadpisa\u0107\xA0ustawienie automatycznego trybu nocnego, kliknij prze\u0142\u0105cznik w menu oznaczonym z\u0119batk\u0105.\nSkonfiguruj jak d\u0142ugo ma trwa\u0107 nadpisanie w opcji poni\u017Cej.", description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "W jakiej kolejno\u015Bci maj\u0105 by\u0107 otwierane linki/komentarze.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Odfiltruj ten subreddit z /r/all i /domain/*", description: "" }, presetsNoPopupsTitle: { message: "\u017Badnych pop-up\xF3w", description: "" }, searchCopyResultForComment: { message: "skopiuj do komentarza", description: "" }, moduleID: { message: "ID modu\u0142u", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Czy pokazywa\u0107 licznik nieprzeczytanych wiadomo\u015Bci w\xA0tytule strony/karty?", description: "" }, xPostLinksXpostedFrom: { message: "x-postowane z", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Prze\u0142\u0105czanie dzieci", description: "" }, commandLineLaunchDesc: { message: "Otw\xF3rz Lini\u0119 komend RES", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Otw\xF3rz menu (bez najechania)", description: "" }, subredditInfoName: { message: "Informacje o subredditach", description: "" }, betteRedditVideoUploadedTitle: { message: "Daty za\u0142adowania wideo", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Szybko\u015B\u0107 animacji zanikania (w sekundach).", description: "" }, aboutOptionsDonate: { message: "Wesprzyj dalszy rozw\xF3j RES.", description: "" }, aboutOptionsBugsTitle: { message: "B\u0142\u0119dy", description: "" }, nerShowPauseButtonTitle: { message: "Poka\u017C przycisk pauzy", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Otwieranie jednym klikni\u0119ciem", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposty", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "U\u017Cyj linka do komentarza jako \u017Ar\xF3d\u0142o", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Pozwala na podanie tekstu wy\u015Bwietlanego dla konkretnych kont. (przydatne je\u015Bli u\u017Cywasz Prze\u0142\u0105cznika kont!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Liczba dni, po kt\xF3rych RES przestanie \u015Bledzi\u0107 odwiedzony w\u0105tek komentarzy.", description: "" }, orangeredHideEmptyMailTitle: { message: "Schowaj wiadomo\u015Bci gdy puste", description: "" }, versionName: { message: "Mened\u017Cer wersji", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Resetuj ikon\u0119 przed wyj\u015Bciem ze strony.\n\nTa opcja zapobiega sytuacji w kt\xF3rej ikona nieprzeczytanych\xA0wiadomo\u015Bci pojawia si\u0119 w zak\u0142adkach, ale mo\u017Ce wp\u0142yn\u0105\u0107 negatywnie wp\u0142yn\u0105\u0107 na pami\u0119\u0107 cache przegl\u0105darki.", description: "" }, commentDepthName: { message: "W\u0142asna g\u0142\u0119boko\u015B\u0107 w\u0105tk\xF3w komentarzy", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Poka\u017C licznik nieprzeczytanych na ikonie", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Wy\u0142\u0105cz opcje kt\xF3re przekroczy\u0142y maksymaln\u0105 warto\u015B\u0107 kary.", description: "" }, showParentFadeSpeedDesc: { message: "Szybko\u015B\u0107 animacji zanikania (w sekundach).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Op\xF3\u017Anienie otwierania", description: "" }, troubleshooterClearTagsTitle: { message: "Wyczy\u015B\u0107 znaczniki", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Poka\u017C przycisk subskrypcji", description: "" }, commentToolsKey: { message: "klawisz", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Poka\u017C podrz\u0119dne komentarze", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Automatyczne kolorowanie nazw u\u017Cytkownik\xF3w", description: "" }, commentStyleName: { message: "Style komentarzy", description: "" }, selectedEntryTextColorNightTitle: { message: "Kolor tekstu (tryb nocny)", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Poka\u017C wszystkie opcje", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Metoda powiadomienia o aktualizacji do wersji beta.", description: "" }, keyboardNavFrontPageTitle: { message: "Strona g\u0142\xF3wna", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatycznie przewi\u0144 do posta/komentarza, kt\xF3ry jest zaznaczony, kiedy strona si\u0119 za\u0142aduje.", description: "" }, orangeredHideEmptyMailDesc: { message: "Ukryj przycisk poczty, gdy skrzynka jest pusta.", description: "" }, commentQuickCollapseDesc: { message: "Prze\u0142\u0105cza widoczno\u015B\u0107 komentarza kiedy jego nag\u0142\xF3wek zostaje klikni\u0119ty dwukrotnie.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "Czy klikni\u0119cie w ikon\u0119 wiadomo\u015Bci lub wiadomo\u015Bci moderacyjnych ma otwiera\u0107 skrzynk\u0119 w nowej karcie?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "tekst", description: "" }, notificationStickyTitle: { message: "Przyklejone", description: "" }, aboutOptionsAnnouncements: { message: "Przeczytaj najnowsze informacje na /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Czy chowa\u0107 automatycznie wszystkie komentarze ni\u017Cszych poziom\xF3w, czy tylko wy\u015Bwietla\u0107 link do ich chowania?", description: "" }, showImagesHideNSFWDesc: { message: "Je\u015Bli zaznaczone, nie pokazuj obrazk\xF3w zaznaczonych jako NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Fragmenty kodu", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Usu\u0144 tego subreddita ze swojego paska skr\xF3t\xF3w", description: "" }, betteRedditVideoViewed: { message: "[Wy\u015Bwietle\u0144: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "Poprzednia strona", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Prze\u0142\u0105cz stan przycisku", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Wyr\xF3\u017Cnia boksy komentarzy w celu poprawy czytelno\u015Bci i u\u0142atwienia nawigacji w du\u017Cych w\u0105tkach.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Wsz\u0119dzie opr\xF3cz subreddit\xF3w", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "Id\u017A w d\xF3\u0142 po\xA0zag\u0142osowaniu.", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatycznie prze\u0142aduj inne karty.", description: "" }, nerHideDupesTitle: { message: "Ukryj duplikaty", description: "" }, keyboardNavFrontPageDesc: { message: "Przejd\u017A do strony g\u0142\xF3wnej.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Otw\xF3rz link i komentarze w nowej karcie w tle", description: "" }, singleClickDesc: { message: "Dodaje link [l+c], kt\xF3ry otwiera stron\u0119 z linkami i stron\u0119 z komentarzami w nowych kartach za pomoc\u0105 jednego klikni\u0119cia.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Przegl\u0105daj rolk\u0105", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Poka\u017C p\u0142ywaj\u0105c\u0105 ikon\u0119 koperty (skrzynka odbiorcza) w g\xF3rnym prawym rogu.", description: "" }, aboutName: { message: "O RES", description: "" }, numPoints: { message: "$1 punkt\xF3w", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "Kopia zapasowa", description: "" }, productivityCategory: { message: "Produktywno\u015B\u0107", description: "" }, showImagesMaxWidthDesc: { message: 'Maksymalna szeroko\u015B\u0107 tre\u015Bci (w pikselach; wpisz zero by usun\u0105\u0107 limit). Warto\u015Bci procentowe r\xF3wnie\u017C s\u0105 wspierane (np. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "Nie wybrano subreddita.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Zamykaj podczas opuszczenia mysz\u0105", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Id\u017A do najwy\u017Cszego komentarza w aktualnym w\u0105tku komentarzy.", description: "" }, userHighlightFirstCommentColorTitle: { message: "Kolor pierwszego komentuj\u0105cego", description: "" }, quickMessageDefaultSubjectTitle: { message: "Domy\u015Blny tytu\u0142", description: "" }, betteRedditFixHideLinksDesc: { message: 'Zmienia\xA0linki "ukryj" na "ukryj" lub "poka\u017C", w zale\u017Cno\u015Bci od ich aktualnego stanu.', description: "" }, commentQuickCollapseName: { message: "Szybkie schowanie komentarza", description: "" }, troubleshooterEntriesRemoved: { message: "Usuni\u0119to wpis\xF3w:\xA0$1.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitoruj posty odwiedzone w trybie incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Natychmiast nadpisz swoje natywne filtry /r/all.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Dodaje karty do strony wyszukiwania.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter zapisuje w\u0105tki na \u017Cywo", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "G\u0142\u0119boko\u015B\u0107 w\u0105tk\xF3w komentarzy w subredditach", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "W\u0142\u0105cz edytor 2-kolumnowy.", description: "" }, floaterName: { message: "P\u0142ywaj\u0105ce wyspy", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Op\xF3\u017Anienie zanikania linka", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Ukryj przycisk nowej wiadomo\u015Bci moderacyjnej, gdy skrzynka jest pusta.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "Szybki prze\u0142\u0105cznik NSFW (+18)", description: "" }, filteRedditAllowNSFWDesc: { message: "Nie chowaj post\xF3w\xA0NSFW (18+) z danych subreddit\xF3w, kiedy filtr NSFW jest w\u0142\u0105czony.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Dodaje przycisk chowaj\u0105cy/pokazuj\u0105cy pasek u\u017Cytkownika.", description: "" }, showImagesDesc: { message: "Wy\u015Bwietla podgl\u0105d obraz\xF3w w tre\u015Bci strony po klikni\u0119ciu w przycisk. Ma opcje konfiguracji, zobacz koniecznie!", description: "" }, commentToolsMacroButtonsTitle: { message: "Przyciski makr", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Przej\u015Bcie mi\u0119dzy kartami wyszukiwania", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "Nie filtruj\xA0moich post\xF3w.", description: "" }, notificationStickyDesc: { message: 'Przyklejone powiadomienia pozostaj\u0105 widoczne, dop\xF3ki nie klikniesz na przycisk "zamknij".', description: "" }, userInfoHoverInfoTitle: { message: "Informacja po najechaniu", description: "" }, submittedAtTime: { message: "dodany", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "Chowanie nazwy u\u017Cytkownika chowa tw\xF3j login z ekranu po zalogowaniu si\u0119 do reddita. Dzi\u0119ki temu, kiedy kto\u015B zerknie na tw\xF3j ekran w pracy, albo gdy zrobisz zrzut ekranu, tw\xF3j login nie b\u0119dzie widoczny. Ta opcja chowa login jedynie z twojego ekranu. Ta opcja nie spowoduje, \u017Ce pisane przez ciebie komentarze i posty b\u0119d\u0105 anonimowe.", description: "" }, betteRedditName: { message: "lepszyReddit", description: "" }, voteEnhancementsName: { message: "Usprawnienia g\u0142osowania", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Poka\u017C schowane opcje sortowania", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Ucina d\u0142ugie tytu\u0142y (d\u0142u\u017Csze ni\u017C\xA01 linia) zaka\u0144czaj\u0105c je wielokropkiem.", description: "" }, subredditInfoAddRemoveDashboard: { message: "panel", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Autouzupe\u0142nianie nazw wiki", description: "" }, filteRedditEverywhereBut: { message: "Wsz\u0119dzie opr\xF3cz:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "Autouzupe\u0142nianie nazw u\u017Cytkownik\xF3w", description: "" }, keyboardNavFollowProfileTitle: { message: "Obserwuj profil", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Szybko\u015B\u0107 zanikania", description: "" }, aboutOptionsCodeTitle: { message: "Kod", description: "" }, scrollOnCollapseTitle: { message: "Przewi\u0144 przy zwini\u0119ciu.", description: "" }, nerReversePauseIconDesc: { message: "Pokazuje ikon\u0119 pauzy kiedy automatyczne wczytywanie jest wy\u0142\u0105czone i ikon\u0119 odtwarzania gdy jest w\u0142\u0105czone.", description: "" }, userTaggerUsername: { message: "Nazwa u\u017Cytkownika", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Pokazuje link "PANEL" w mened\u017Cerze subreddita.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Powiadomienie o aktualizacji poprawiaj\u0105cej b\u0142\u0119dy", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Przesuwa obraz(y) w zaznaczonym po\u015Bcie w g\xF3r\u0119.", description: "" }, keyboardNavEditDesc: { message: "Edytuj aktualnie zaznaczony komentarz lub post.", description: "" }, aboutOptionsDonateTitle: { message: "Wspieraj", description: "" }, keyboardNavGoModeTitle: { message: 'Tryb "Id\u017A do"', description: "" }, keyboardNavName: { message: "Nawigacja z u\u017Cyciem klawiatury", description: "" }, userHighlightModColorHoverDesc: { message: "Kolor u\u017Cywany do wyr\xF3\u017Cnienia moderator\xF3w po najechaniu.", description: "" }, userHighlightName: { message: "Wyr\xF3\u017Cnianie u\u017Cytkownik\xF3w", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Powiadamiaj o edytowanych postach", description: "" }, stylesheetLoadStylesheetsDesc: { message: "CSS zewn\u0119trzny lub pochodz\u0105cy z subreddita, kt\xF3ry ma zosta\u0107 wczytany.", description: "" }, logoLinkCurrent: { message: "Aktualny subreddit/multireddit", description: "" }, troubleshooterTestNotificationsTitle: { message: "Testuj powiadomienia", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Otw\xF3rz link bezpo\u015Bredni", description: "" }, hoverDesc: { message: "Dostosuj spos\xF3b w jaki podpowiedzi pojawiaj\u0105 si\u0119, kiedy nakierujesz kursor na dany element.", description: "" }, modhelperName: { message: "Pomocnik moderacji", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Schowaj wszystkie podrz\u0119dne komentarze", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'Musisz poda\u0107 "$1" lub "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "Id\u017A w g\xF3r\u0119", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Poka\u017C pe\u0142ny znaczek linku", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Otw\xF3rz Szybk\u0105 wiadomo\u015B\u0107", description: "" }, pageNavToTopTitle: { message: "Do g\xF3ry", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Przewi\u0144\xA0podczas ekspandera", description: "" }, userTaggerTag: { message: "Znacznik", description: "" }, userbarHiderToggleUserbar: { message: "Prze\u0142\u0105czanie Paska u\u017Cytkownika", description: "" }, nerReversePauseIconTitle: { message: "Odwr\xF3\u0107 ikon\u0119 pauzy", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Zapisuj liczniki g\u0142os\xF3w w d\xF3\u0142/g\u0142os\xF3w w g\xF3r\u0119 oddanych na posty i komentarze ka\u017Cdego z u\u017Cytkownik\xF3w i zamie\u0144 ikon\u0119 znacznika na licznik wy\u015Bwietlaj\u0105cy ten numer.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Kolor wyr\xF3\u017Cnienia po najechaniu", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Usu\u0144 ten subreddit ze swojego panelu", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Prze\u0142\u0105cz na u\u017Cytkownika: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Kolor u\u017Cywany do wyr\xF3\u017Cnienia przyjaciela po najechaniu.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Poka\u017C dodatkowe informacje o g\u0142osach na posty i komentarze.", description: "" }, nightModeToggleTitle: { message: "Prze\u0142\u0105cz mi\u0119dzy trybem nocnym a dziennym", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Mened\u017Cer subreddit\xF3w", description: "" }, filteRedditCustomFiltersDesc: { message: "Ukryj posty na podstawie w\u0142asnych, skomplikowanych kryteri\xF3w.\n\nJest to bardzo zaawansowana funkcja. [Przeczytaj poradnik](/r/Enhancement/wiki/customfilters) przed zadaniem pyta\u0144.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Sugestie", description: "" }, keyboardNavSaveCommentTitle: { message: "Zapisz komentarz", description: "" }, nerPauseAfterEveryTitle: { message: "Pauzuj co...", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Linia komend umo\u017Cliwiaj\u0105ca nawigacj\u0119 po Reddicie, zmian\u0119 ustawie\u0144 RES i debugowanie RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Otw\xF3rz okno dialogowe umo\u017Cliwiaj\u0105ce wys\u0142anie szybkiej wiadomo\u015Bci po klikni\u0119ciu na linki reddit.com/message/compose na pasku bocznym (np. "napisz do moderator\xF3w").', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "Poka\u017C poprzedni obraz z galerii.", description: "" }, userInfoInvalidUsernameLink: { message: "Nieprawid\u0142owy link nazwy u\u017Cytkownika.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Umo\u017Cliwia wybranie sortowania i zakresu czasowego w formularzu wyszukiwania na panelu bocznym.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Panel", description: "" }, troubleshooterResetToFactoryDesc: { message: "Uwaga! Ta funkcja usunie wszystkie Twoje ustawienia RES, w tym znaczniki, zapisane komentarze, filtry, etc.!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Id\u017A w d\xF3\u0142 u\u017Cywaj\u0105c Nawigatora komentarzy.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Zako\u0144czenie trybu nocnego", description: "" }, showKarmaShowGoldDesc: { message: "Poka\u017C ikon\u0119 statusu gold, je\u017Celi u\u017Cytkownik ma status gold.", description: "" }, localDateDesc: { message: "Pokazuje dat\u0119 w twojej lokalnej strefie czasowej, kiedy najedziesz na oryginaln\u0105 dat\u0119.", description: "" }, noPartEscapeNPTitle: { message: 'Wyjd\u017A\xA0z trybu "Bez partycypacji"', description: "" }, redditUserInfoDesc: { message: "Nowe ramki z informacjami o u\u017Cytkownikach Reddit.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "Karta, kt\xF3ra zostanie rozszerzona za ka\u017Cdym razem gdy rozpoczniesz wyszukiwanie.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "Plik", description: "" }, coreCategory: { message: "Podstawowe", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddity", description: "" }, penaltyBoxFeaturesPenalty: { message: "kara", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "\u015Aled\u017A u\u017Cytkowanie r\xF3\u017Cnych funkcji.", description: "" }, commentDepthMinimumComments: { message: "minimum komentarzy", description: "" }, aboutOptionsCode: { message: "Mo\u017Cesz ulepszy\u0107 RES pisz\u0105c kod, projektuj\u0105c lub daj\u0105c pomys\u0142y! RES jest projektem open-source na GitHub.", description: "" }, commentNavDesc: { message: "Udost\u0119pnia narz\u0119dzie do nawigacji po komentarzach, by szybko odnale\u017A\u0107 posty napisane przez OP, moderator\xF3w itd.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Naci\u015Bni\u0119cie Ctrl+Enter/Cmd+Enter zapisze twoje zmiany do w\u0105tku na \u017Cywo.", description: "" }, betteRedditHideLinkLabel: { message: "schowaj", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite wydawany jest na licencji GPL v3.0.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Pozw\xF3l na ma\u0142e litery", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "W\u0142\u0105cz\xA0na informacjach o banowaniu", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Liczba dni, po kt\xF3rych wygasa subskrypcja w\u0105tk\xF3w komentarzy.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "Funkcja $1 RES nie jest pewna co zrobi\u0107 kiedy naciskasz skr\xF3t klawiaturowy $2. $3 Co naci\u015Bni\u0119cie $4 powinno robi\u0107?", description: "" }, styleTweaksToggleSubredditStyle: { message: "prze\u0142\u0105cz styl subreddita", description: "" }, RESTipsDailyTipTitle: { message: "Codzienna porada", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Pozycja numer\xF3w link\xF3w", description: "" }, userHighlightOPColorHoverTitle: { message: "Kolor autor\xF3w po najechaniu", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Zawsze id\u017A\xA0do skrzynki\xA0odbiorczej, a nie do nieprzeczytanych wiadomo\u015Bci, kiedy klikasz na ikon\u0119 wiadomo\u015Bci.", description: "" }, newCommentCountName: { message: "Licznik nowych komentarzy", description: "" }, keyboardNavSlashAllDesc: { message: "Id\u017A do /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "Poka\u017C rodzic\xF3w", description: "" }, userTaggerHardIgnoreTitle: { message: "Mocne ignorowanie", description: "" }, logoLinkFrontpage: { message: "Strona g\u0142\xF3wna", description: "" }, commentToolsCategory: { message: "kategoria", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "Po najechaniu na [punktacja ukryta] poka\u017C pozosta\u0142y czas zamiast czasu ukrycia.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Poka\u017C czas edycji postu/komentarza bez konieczno\u015Bci naje\u017Cd\u017Cania mysz\u0105 na znacznik czasowy.", description: "" }, aboutOptionsSearchSettings: { message: "Znajd\u017A ustawienia RES.", description: "" }, stylesheetRedditThemesDesc: { message: "Reddit pozwala na modyfikacj\u0119 swojego wygl\u0105du! Motyw Reddit zostanie u\u017Cyty wsz\u0119dzie, gdzie domy\u015Blny motyw Reddita jest u\u017Cyty a motyw subreddita jest wy\u0142\u0105czony przez Reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Wyr\xF3\u017Cnij komentarze autor\xF3w.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Nast\u0119pny obraz w galerii", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Styl subreddita w\u0142\u0105czony dla subreddita: $1.", description: "" }, notificationsNeverSticky: { message: "nigdy przyklejone", description: "" }, keyboardNavMoveDownDesc: { message: "Id\u017A w d\xF3\u0142 do nast\u0119pnego linka lub komentarza na jednopoziomowej li\u015Bcie.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Prze\u0142\u0105cz pokazywanie przycisku "Zobacz obrazy".', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Poka\u017C przycisk [-] ukryj w skrzynce odbiorczej.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Nawet je\u015Bli subskrybuj\u0119", description: "" }, menuGearIconClickActionToggleMenu: { message: "Otw\xF3rz menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Dodaj tego subreddita do paska skr\xF3t\xF3w", description: "" }, keyboardNavUndoMoveDesc: { message: "Id\u017A do poprzedniej zaznaczonej rzeczy.", description: "" }, userTaggerVotesUp: { message: "G\u0142osy w g\xF3r\u0119", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Prze\u0142aduj inne karty", description: "" }, betteRedditVideoTimesTitle: { message: "Czasy trwania wideo", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Przyjazna historia", description: "" }, selectedEntryDesc: { message: "Wyr\xF3\u017Cnij graficznie aktualnie zaznaczony post lub komentarz.", description: "" }, appearanceCategory: { message: "Wygl\u0105d", description: "" }, userTaggerShowIgnoredDesc: { message: "Dodaj link s\u0142u\u017C\u0105cy do pokazania ignorowanego linka lub komentarza.", description: "" }, nightModeUseSubredditStylesDesc: { message: 'Zawsze w\u0142\u0105czaj style subreddit\xF3w podczas u\u017Cywania Trybu nocnego, ignoruj\u0105c sprawdzanie kompatybilno\u015Bci.\n\nKiedy u\u017Cywasz Trybu nocnego, style subreddit\xF3w s\u0105 automatycznie wy\u0142\u0105czane, chyba, \u017Ce [subreddit deklaruje przyjazno\u015B\u0107 dla trybu nocnego](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). Musisz zaznaczy\u0107 opcj\u0119 "U\u017Cywaj stylu subreddita" na pasku bocznym subreddita, by w\u0142\u0105czy\u0107 style subreddit\xF3w na tym subreddicie. Jest tak dlatego, i\u017C wi\u0119kszo\u015B\u0107 subreddit\xF3w nie wygl\u0105da dobrze w trybie nocnym.\n\nJe\u015Bli wybierzesz pokazywanie styl\xF3w subreddit\xF3w, zobaczysz obrazy znaczk\xF3w i spojlery pozostan\u0105 zakryte, ale uwa\u017Caj: **mo\u017Cesz zobaczy\u0107 jasne obrazy, t\u0142a, zaznaczanie komentarzy etc.** W gestii moderator\xF3w danego subreddita jest to, by styl subreddita spe\u0142nia\u0142 wymagania Trybu nocnego, i nie jest to ma\u0142o pracy. Zachowaj uprzejmo\u015B\u0107, kontaktuj\u0105c si\u0119 z moderatorami z pro\u015Bb\u0105 o wprowadzenie wsparcia dla Trybu nocnego.', description: "" }, commentToolsItalicKeyTitle: { message: "Klawisz pochylania", description: "" }, filteRedditUseRedditFiltersTitle: { message: "U\u017Cywaj\xA0filtr\xF3w Reddita", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Ukryj strza\u0142ki g\u0142osowania w tematach, w kt\xF3rych nie mo\u017Cesz g\u0142osowa\u0107 (np. po zarchiwizowaniu)", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatycznie zaznaczaj ostatnio zaznaczony wpis.", description: "" }, aboutOptionsPresetsTitle: { message: "Zestawy ustawie\u0144", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Domy\u015Blna g\u0142\u0119boko\u015B\u0107 do u\u017Cycia\xA0na wszystkich subredditach nie wypisanych poni\u017Cej.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Pozw\xF3l subredditom\xA0zdefiniowanym na li\u015Bcie na\xA0wy\u015Bwietlanie w\u0142asnych styl\xF3w podczas\xA0trybu nocnego je\u015Bli opcja useSubredditStyles jest wy\u0142\u0105czona.", description: "" }, nerHideDupesHide: { message: "Ukryj", description: "" }, aboutOptionsContributorsTitle: { message: "Autorzy", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Otw\xF3rz lini\u0119 komend", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Prze\u0142\u0105czanie pomocy", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "Czy aktywowa\u0107\xA0now\u0105 kart\u0119 po otwarciu w niej linka?", description: "" }, aboutOptionsFAQ: { message: "Dowiedz si\u0119 wi\u0119cej o RES na wiki /r/Enhancement.", description: "" }, betteRedditPinHeaderDesc: { message: "Przypnij pasek subreddit\xF3w, menu u\u017Cytkownika lub nag\u0142\xF3wek strony do g\xF3rnej kraw\u0119dzi ekranu, by\xA0pozosta\u0142 w miejscu podczas przewijania strony.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Poka\u017C informacje o wydaniu na nowej karcie w tle", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Poka\u017C dok\u0142adn\u0105 dat\u0119 na pasku bocznym.", description: "" }, keyboardNavUpVoteDesc: { message: "Zag\u0142osuj w g\xF3r\u0119 na zaznaczony link lub komentarz (lub usu\u0144 sw\xF3j g\u0142os).", description: "" }, singleClickOpenFrontpageTitle: { message: "Otw\xF3rz stron\u0119 g\u0142\xF3wn\u0105", description: "" }, messageMenuHoverDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim pojawi si\u0119 ramka informacyjna.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Przejd\u017A do subreddita na kt\xF3rym zosta\u0142 opublikowany\xA0zaznaczony link (tylko strony z list\u0105 link\xF3w).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Nie wylogowuj mnie kiedy\xA0uruchomi\u0119 przegl\u0105dark\u0119 ponownie.", description: "" }, subredditManagerLinkPopularDesc: { message: 'Pokazuje link "POPULARNE" w mened\u017Cerze subreddita.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Prze\u0142\u0105cz ekspander (obraz/tekst/wideo).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "Zobacz komentarze w nowej karcie.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular i strony domeny", description: "" }, backupAndRestoreBackupTitle: { message: "Kopia zapasowa", description: "" }, profileNavigatorHoverDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim pojawi si\u0119 ramka informacyjna.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Wy\u015Bwietlaj wszystkie obrazy w oryginalnej (nieprzeskalowanej) rozdzielczo\u015Bci w ramce.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES pozwala ci na wy\u0142\u0105czenie styl\xF3w\xA0poszczeg\xF3lnych subreddit\xF3w!", description: "" }, customTogglesDesc: { message: "Utw\xF3rz w\u0142asne prze\u0142\u0105czniki do kontrolowania rozmaitych opcji RES.", description: "" }, accountSwitcherRequiresOtp: { message: "wymaga uwierzytelniania dwusk\u0142adnikowego", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "Nie wybrano u\u017Cytkownika.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Dodaj element do menu rozwijanego RES aby wy\u015Bwietla\u0107 wskaz\xF3wki.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Przyciski narz\u0119dzi formatowania", description: "" }, commentPreviewEnableForWikiDesc: { message: "Poka\u017C podgl\u0105d dla stron wiki.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Wybierz, kiedy pe\u0142ny znaczek linku powinien by\u0107 wy\u015Bwietlany.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Przesu\u0144 obraz w g\xF3r\u0119", description: "" }, settingsNavDesc: { message: "Pomaga w \u0142atwiejszym pos\u0142ugiwaniu si\u0119 Konsol\u0105 ustawie\u0144 RES.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Chowanie komentarzy w Skrzynce odbiorczej", description: "" }, usernameHiderName: { message: "Chowanie nazwy u\u017Cytkownika", description: "" }, subredditManagerLinkModTitle: { message: "Link Moderowane", description: "" }, notificationsEnabled: { message: "w\u0142\u0105czony", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Narz\u0119dzia tabel", description: "" }, showParentFadeSpeedTitle: { message: "Szybko\u015B\u0107 zanikania", description: "" }, userInfoUserNotFound: { message: "U\u017Cytkownik nieznaleziony.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Przycinaj\xA0d\u0142ugie linki", description: "" }, keyboardNavToggleCmdLineDesc: { message: "W\u0142\u0105cz\xA0Lini\u0119 komend RES.", description: "" }, nerHideDupesDontHide: { message: "Nie chowaj", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Powiadom mnie, kiedy zasubskrybowany post zostanie edytowany.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Poka\u017C nazw\u0119 u\u017Cytkownika po najechaniu", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Wyr\xF3\u017Cnij pierwszego komentuj\u0105cego", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Strona g\u0142\xF3wna", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "Funkcja $1 zostanie wy\u0142\u0105czona z powodu nie korzystania z niej. Mo\u017Cesz w\u0142\u0105czy\u0107 j\u0105 ponownie p\xF3\u017Aniej w Konsoli ustawie\u0144 RES.", description: "" }, accountSwitcherCliHelp: { message: "prze\u0142\u0105cz u\u017Cytkownika na [username]", description: "" }, userTaggerYourVotesFor: { message: "twoje g\u0142osy dla $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Dodaj przyciski makr w formularzu edycji post\xF3w, komentarzy i innych p\xF3l Snudown/markdown.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Przesuwa obraz(y) w zaznaczonym po\u015Bcie w prawo.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Styl obramowania (tryb nocny)", description: "" }, accountSwitcherSnoo: { message: "snoo (ufoludek)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generuj kolory po najechaniu", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Otw\xF3rz Wielki Edytor", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Dowolna wysoko\u015B\u0107 obrazu", description: "" }, pageNavShowLinkNewTabTitle: { message: "Otw\xF3rz link w nowej karcie", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatycznie generuj kolory po najechaniu bazuj\u0105c na zwyk\u0142ym kolorze.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Styl przewijania nielinearnego", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Otw\xF3rz\xA0aktualne pole markdown w wielkim edytorze (tylko, je\u017Celi formularz\xA0markdown jest zaznaczony).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Ustaw g\u0142\u0119boko\u015B\u0107 na linkach do poszczeg\xF3lnych komentarzy z kontekstem.", description: "" }, userHighlightHighlightOPTitle: { message: "Wyr\xF3\u017Cnij autor\xF3w", description: "" }, notificationsCooldown: { message: "czas wygasania", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Przejd\u017A do strony g\u0142\xF3wnej subreddita.", description: "" }, menuName: { message: "Menu RES", description: "" }, messageMenuDesc: { message: "Najed\u017A na ikon\u0119 poczty by uzyska\u0107 dost\u0119p do r\xF3\u017Cnych typ\xF3w wiadomo\u015Bci lub napisa\u0107 now\u0105 wiadomo\u015B\u0107.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Poka\u017C\xA0menu z linkami prowadz\u0105cymi do r\xF3\u017Cnych\xA0sekcji multireddita po najechaniu mysz\u0105 na\xA0link do niego.", description: "" }, accountSwitcherDraft: { message: "Jednak, nie uko\u0144czono wprowadzania na tej stronie jako /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Wy\u015Bwietl pro\u015Bb\u0119 o potwierdzenie prze\u0142adowania innych kart.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Odtw\xF3rz animacj\u0119 podczas otwierania i zamykania kart.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "Po\xA0schowaniu linka, automatycznie zaznacz kolejny link.", description: "" }, commentStyleDesc: { message: "Dodaje usprawnienia czytelno\u015Bci komentarzy.", description: "" }, keyboardNavRandomDesc: { message: "Przejd\u017A do losowego subreddita.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Zapisane", description: "" }, commentToolsCommentingAsTitle: { message: "Komentujesz jako", description: "" }, keyboardNavImageSizeUpDesc: { message: "Powi\u0119ksz obraz(y) w zaznaczonym po\u015Bcie.", description: "" }, floaterDesc: { message: "Zarz\u0105dzanie p\u0142ywaj\u0105cymi elementami RES.", description: "" }, subredditManDesc: { message: "Umo\u017Cliwia dostosowywanie g\xF3rnego paska poprzez zdefiniowanie w\u0142asnych skr\xF3t\xF3w do subreddit\xF3w, dodanie rozwijanych menu z multi-redditami itd.", description: "" }, keyboardNavSavePostDesc: { message: "Zapisz\xA0aktualny post do swojego konta na reddicie. Ta opcja jest dost\u0119pna z ka\u017Cdego miejsca w kt\xF3rym si\u0119 zalogujesz, ale nie zachowuje oryginalnej tre\u015Bci\xA0je\u015Bli zostanie edytowana lub usuni\u0119ta.", description: "" }, hideChildCommentsNestedTitle: { message: "Zagnie\u017Cd\u017Cone", description: "" }, commentPreviewEnableBigEditorTitle: { message: "W\u0142\u0105cz Wielki edytor", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Zawieszona funkcja", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Konto Google", description: "" }, onboardingBetaUpdateNotificationName: { message: "Powiadomienie o aktualizacji do wersji beta", description: "" }, announcementsDesc: { message: "B\u0105d\u017A na bie\u017C\u0105co z wa\u017Cnymi informacjami.", description: "" }, singleClickOpenBackgroundDesc: { message: "Otw\xF3rz link [l+c] w nowych kartach w tle.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Dodaj wiersz", description: "" }, keyboardNavReplyDesc: { message: "Odpowiedz na aktualny komentarz (tylko strony z komentarzami).", description: "" }, accountSwitcherGoldUntil: { message: "Do $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "Fragmenty kodu CSS, kt\xF3re maj\u0105 zosta\u0107 wczytane.", description: "" }, notificationsAddNotificationType: { message: "r\u0119cznie zarejestruj typ\xA0powiadomienia", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "Powiadomienia RES", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Pokazuje link "MOJE LOSOWE" w mened\u017Cerze subreddita.', description: "" }, userInfoHighlightButtonTitle: { message: 'Przycisk "wyr\xF3\u017Cnij"', description: "" }, stylesheetBodyClassesTitle: { message: "Klasy elementu body", description: "" }, backupAndRestoreFoundBackup: { message: "Znaleziono now\u0105 automatyczn\u0105 kopi\u0119 zapasow\u0105 w $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Pokazuje link "LOSOWE 18+" w mened\u017Cerze subreddita.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "Zobacz komentarze\xA0(shift otworzy je w nowej karcie).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Poka\u017C\xA0podgl\u0105d markdown na \u017Cywo bezpo\u015Brednio\xA0na pasku bocznym podczas edycji.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Pokazuje link "ZNAJOMI" w mened\u017Cerze subreddita.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Profil w nowej\xA0karcie", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Otw\xF3rz link i komentarze w nowej karcie", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Nawigacja po multiredditach", description: "" }, keyboardNavToggleExpandoTitle: { message: "Prze\u0142\u0105czanie ekspandera", description: "" }, showKarmaName: { message: "Poka\u017C karm\u0119", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Autouzupe\u0142nianie nazw subreddit\xF3w", description: "" }, settingsNavName: { message: "Nawigacja Ustawie\u0144 RES", description: "" }, contributeName: { message: "Wspieraj i pomagaj", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Poka\u017C\xA0dodatkowe informacje o\xA0serwerze obok p\u0142ywaj\u0105cego paska narz\u0119dzi Nie ko\u0144cz\u0105cego si\u0119 Reddita.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Wy\u0142\u0105cz pole wpisywania komentarza", description: "" }, tableToolsSortDesc: { message: "W\u0142\u0105cz sortowanie kolumn.", description: "" }, userInfoHoverDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim pojawi si\u0119 ramka informacyjna.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Ustaw g\u0142\u0119boko\u015B\u0107 na linkach do poszczeg\xF3lnych komentarzy.", description: "" }, profileRedirectFromLandingPageTitle: { message: "Strona g\u0142\xF3wna", description: "" }, profileNavigatorSectionMenuDesc: { message: "Poka\u017C menu z linkami prowadz\u0105cymi do r\xF3\u017Cnych miejsc na twojej stronie u\u017Cytkownika po najechaniu mysz\u0105 na nazw\u0119 u\u017Cytkownika w prawym g\xF3rnym rogu.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "Narz\u0119dzia edycyjne", description: "" }, accountSwitcherAccountsDesc: { message: "Wpisz swoje loginy i has\u0142a poni\u017Cej.\xA0B\u0119d\u0105 one przechowywane tylko w ustawieniach RES.", description: "" }, singleClickOpenBackgroundTitle: { message: "Otw\xF3rz w tle", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "Podczas filtrowania subreddit\xF3w za pomoc\u0105 powy\u017Cszej opcji, gdzie powinny by\u0107 one filtrowane?", description: "" }, commandLineMenuItemDesc: { message: 'Dodaj element "otw\xF3rz lini\u0119 komend" do menu rozwijanego RES', description: "" }, commentPrevName: { message: "Podgl\u0105d na \u017Cywo", description: "" }, hoverOpenDelayDesc: { message: "Domy\u015Blne op\xF3\u017Anienie pomi\u0119dzy\xA0najechaniem mysz\u0105 o otwarciem pop-upa.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Kolor paska podczas jego zanikania.", description: "" }, announcementsName: { message: "Og\u0142oszenia RES", description: "" }, betteRedditVideoViewedDesc: { message: "Poka\u017C liczb\u0119 wy\u015Bwietle\u0144 klip\xF3w wideo, je\u015Bli to mo\u017Cliwe.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Id\u017A\xA0do najwy\u017Cszego komentarza", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "Kiedy poruszasz si\u0119 w g\xF3r\u0119/w d\xF3\u0142 za pomoc\u0105 nawigacji klawiaturowej, kiedy i jak RES ma przewija\u0107 stron\u0119?\n\n**Kierunkowo**: Przewi\u0144 tyle, by ca\u0142y zaznaczony element by\u0142 widoczny, je\u015Bli znajduje si\u0119 poza ekranem.\n\n**Page up/down**: Przewi\u0144 w g\xF3r\u0119/w d\xF3\u0142 o ca\u0142\u0105 wysoko\u015B\u0107 ekranu w momencie dotarcia do g\xF3rnej lub dolnej kraw\u0119dzi ekranu.\n\n**Przyklej do g\xF3ry**: Zawsze wyr\xF3wnuj zaznaczony element z g\xF3rn\u0105 kraw\u0119dzi\u0105 ekranu.\n\n**Na \u015Brodku**: Przewi\u0144 tyle, by zaznaczony element by\u0142 widoczny na \u015Brodku ekranu.\n\n**Przejmij od g\xF3rnego**: Wykorzystaj ponownie wyr\xF3wnywanie poprzednio zaznaczonego elementu.\n\n**Stary**: Je\u015Bli zaznaczony element znajdzie si\u0119 poza ekranem, wyr\xF3wnuj go z g\xF3rn\u0105 kraw\u0119dzi\u0105 ekranu.", description: "" }, accountSwitcherReload: { message: "od\u015Bwie\u017C", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Powoduje, \u017Ce lewy pasek boczny (z multiredditami) przewija si\u0119 razem ze stron\u0105, tak, by zawsze by\u0142 widoczny.", description: "" }, troubleshooterBreakpointTitle: { message: "Punkt wstrzymania", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Ukryj wszystkie nazwy u\u017Cytkownik\xF3w", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Zaktualizuj inne karty", description: "" }, notificationsNotificationID: { message: "ID powiadomienia", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "Podczas przegl\u0105dania subreddita/multi-subreddita", description: "" }, sourceSnudownName: { message: "Poka\u017C \u017Ar\xF3d\u0142o Snudown", description: "" }, keyboardNavInboxDesc: { message: "Przejd\u017A do skrzynki odbiorczej.", description: "" }, gfycatUseMobileGfycatDesc: { message: "U\u017Cywaj mobilnej wersji (o ni\u017Cszej rozdzielczo\u015Bci) gif\xF3w z Gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: 'Prze\u0142\u0105czanie "Zobacz obrazy"', description: "" }, contributeDesc: { message: "RES jest ca\u0142kowicie darmowy - Je\u015Bli podoba Ci si\u0119 nasze dzie\u0142o, b\u0119dzie nam mi\u0142o, je\u015Bli je wesprzesz.\n\nJe\u015Bli chcesz wesprze\u0107 RES dotacj\u0105, odwied\u017A nasz\u0105 [stron\u0119 Dotacji](https://redditenhancementsuite.com/contribute/).\n\nNie mo\u017Cesz wesprze\u0107 nas finansowo? To mo\u017Ce wesprzesz nas swoim kodem? Nasz kod \u017Ar\xF3d\u0142owy jest dost\u0119pny na naszej [stronie GitHub](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Utw\xF3rz lub odzyskaj kopi\u0119 zapasow\u0105 ustawie\u0144 RES.", description: "" }, showParentDesc: { message: 'Pokazuje nadrz\u0119dny komentarz po najechaniu na linka "rodzic" pod komentarzem.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Pomniejsz obraz(y) w zaznaczonym po\u015Bcie.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Poka\u017C\xA0d\u0142ugo\u015B\u0107 tekstu", description: "" }, keyboardNavSaveRESDesc: { message: "Zapisz\xA0aktualny post za pomoc\u0105 RES. Ta opcja zachowuje oryginaln\u0105 tre\u015B\u0107 komentarza, ale dost\u0119pna jest tylko lokalnie.", description: "" }, showParentFadeDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim schowa si\u0119 nadrz\u0119dny komentarz.", description: "" }, nerDesc: { message: "Zainspirowany takimi dodatkami jak River of Reddit i Auto Pager - daje ci niesko\u0144czony strumie\u0144 redditowej dobroci.", description: "" }, userTaggerTruncateTagTitle: { message: "Przycinaj tagi", description: "" }, filteRedditExcludeUserPagesDesc: { message: "Nie filtruj niczego na stronach profil\xF3w u\u017Cytkownik\xF3w.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitoruj liczb\u0119 komentarzy i daty edycji odwiedzonych post\xF3w w czasie korzystania z trybu incognito (trybu prywatnego).", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Losowe", description: "" }, accountSwitcherAccountSwitchError: { message: "Nie uda\u0142o si\u0119 prze\u0142\u0105czy\u0107 u\u017Cytkownik\xF3w. Reddit mo\u017Ce by\u0107 pod du\u017Cym obci\u0105\u017Ceniem. Spr\xF3buj ponownie za kilka chwil.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES zauwa\u017Cy\u0142, \u017Ce wszystkie posty s\u0105 ukryte. Kliknij przycisk poni\u017Cej by zobaczy\u0107 powody, dla kt\xF3rych posty s\u0105 odfiltrowane.", description: "" }, backupAndRestoreRestoreTitle: { message: "Odzyskiwanie", description: "" }, logoLinkCustom: { message: "W\u0142asne", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Poka\u017C p\u0142ywaj\u0105c\u0105 ikon\u0119\xA0koperty", description: "" }, userTaggerVwNumberTitle: { message: "Liczba balansu g\u0142os\xF3w", description: "" }, customTogglesToggleDesc: { message: "W\u0142\u0105cz lub wy\u0142\u0105cz wszystkie opcje po\u0142\u0105czone z tym prze\u0142\u0105cznikiem i opcjonalnie dodaj prze\u0142\u0105cznik do menu z ikon\u0105 z\u0119batki.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "Porada o nowej funkcji", description: "" }, noPartDisableVoteButtonsDesc: { message: "Schowaj przyciski g\u0142osowania. Je\u015Bli\xA0strona zosta\u0142a wcze\u015Bniej przez ciebie odwiedzona, uprzednio oddany g\u0142os b\u0119dzie widoczny.", description: "" }, commentStyleContinuityDesc: { message: "Poka\u017C linie pomagaj\u0105ce \u015Bledzi\u0107 poziomy komentarzy.", description: "" }, filteRedditApplyTo: { message: "aplikuj do", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Przesta\u0144 odfiltrowywa\u0107 ten subreddit z /r/all i /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Domy\u015Blne posty", description: "" }, contextViewFullContextTitle: { message: "Zobacz pe\u0142ny kontekst", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Prze\u0142\u0105cza schowanie komentarza, kiedy jego nag\u0142\xF3wek zostanie podw\xF3jnie klikni\u0119ty.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Prywatno\u015B\u0107", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Zaznacz formularz po za\u0142adowaniu", description: "" }, sourceSnudownDesc: { message: "Dodaje narz\u0119dzie do pokazania tekstu \u017Ar\xF3d\u0142owego post\xF3w i komentarzy, zanim reddit sformatuje w nich tekst.", description: "" }, selectedEntryOutlineStyleDesc: { message: 'Wygl\u0105d ramki, np. "1px dashed gray" (zgodnie ze sk\u0142adni\u0105 CSS)', description: "" }, keyboardNavMoveDownCommentDesc: { message: "Id\u017A w d\xF3\u0142 do nast\u0119pnego komentarza na li\u015Bcie.", description: "" }, showParentHoverDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim pojawi si\u0119 nadrz\u0119dny komentarz.", description: "" }, userTaggerVotesDown: { message: "G\u0142osy w d\xF3\u0142", description: "" }, submitHelperDesc: { message: "Udost\u0119pnia zestaw narz\u0119dzi pomagaj\u0105cych w dodawaniu posta.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Automatycznie", description: "" }, troubleshooterDisableLabel: { message: "Wy\u0142\u0105cz", description: "" }, showKarmaSeparatorTitle: { message: "Separator", description: "" }, onboardingUpdateNotificationDescription: { message: "Metoda powiadomienia o du\u017Cych/ma\u0142ych aktualizacjach.", description: "" }, hoverFadeDelayDesc: { message: "Domy\u015Blne op\xF3\u017Anienie pomi\u0119dzy opuszczeniem mysz\u0105 obiektu a znikni\u0119ciem pop-upa.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Link\xA0pod jaki przejdziesz klikaj\u0105c na logo reddita.", description: "" }, settingsConsoleName: { message: "Konsola ustawie\u0144", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Prze\u0142\u0105cz opcje wyszukiwania", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "G\u0142\u0119boko\u015B\u0107 komentarzy dla poszczeg\xF3lnych subreddit\xF3w.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Kolor przyjaciela po najechaniu", description: "" }, showImagesOpenInNewWindowTitle: { message: "Otw\xF3rz w nowym oknie", description: "" }, stylesheetUsernameClassDesc: { message: 'Na stronach u\u017Cytkownika, dodaj nazw\u0119 u\u017Cytkownika jako klas\u0119 CSS do elementu body.\nNa przyk\u0142ad, /u/ExampleUser b\u0119dzie mia\u0142 klas\u0119 "body.res-user-exampleuser".', description: "" }, keyboardNavModmailDesc: { message: "Id\u017A do wiadomo\u015Bci moderacyjnych.", description: "" }, nsfwSwitchToggleTitle: { message: "Prze\u0142\u0105cz filtr +18", description: "" }, userHighlightHighlightModTitle: { message: "Wyr\xF3\u017Cnij moderator\xF3w", description: "" }, imgurUseGifOverGifVDesc: { message: "U\u017Cywaj GIF-\xF3w zamiast GIFV dla link\xF3w imgur", description: "" }, dashboardDefaultSortDesc: { message: "Domy\u015Blna metoda sortowania dla nowych wid\u017Cet\xF3w.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "Po prze\u0142\u0105czeniu konta, automatycznie\xA0prze\u0142aduj inne karty.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filtruj subreddity...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Wy\u0142\u0105cz animacje", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Metoda powiadomienia o aktualizacjach poprawiaj\u0105cych b\u0142\u0119dy.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Automatycznie pokazuj posty tekstowe +18", description: "" }, hoverInstancesEnabled: { message: "w\u0142\u0105czony", description: "" }, nightModeColoredLinksTitle: { message: "Koloruj linki", description: "" }, modhelperDesc: { message: "Pomaga moderatorom dodaj\u0105c rozmaite podpowiedzi, jak najlepiej pracowa\u0107 z RES.", description: "" }, quickMessageName: { message: "Szybka wiadomo\u015B\u0107", description: "" }, noPartEscapeNPDesc: { message: 'Wyjd\u017A\xA0z trybu "Bez partycypacji"\xA0wychodz\u0105c ze strony z w\u0142\u0105czonym tym trybem.', description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "W\u0142\u0105cz t\u0119 funkcj\u0119 ponownie", description: "" }, userHighlightDesc: { message: "Wyr\xF3\u017Cnia w w\u0105tkach komentarze pewnych u\u017Cytkownik\xF3w: OP, administrator\xF3w, znajomych, moderator\xF3w. Stworzone przez MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Przewi\u0144 stron\u0119 do g\xF3rnej kraw\u0119dzi linka kiedy u\u017Cyty zostanie\xA0klawisz ekspandera (tak, by\xA0jego zawarto\u015B\u0107 by\u0142a lepiej widoczna).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Op\xF3\u017Anienie, w milisekundach (1s = 1000ms), po jakim schowa si\u0119 ramka informacyjna.", description: "" }, userInfoAddRemoveFriends: { message: "$1 znajomych", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Czas trwania (w godzinach) nadpisania ustawienia automatycznego trybu nocnego.\nMo\u017Cesz u\u017Cywa\u0107 warto\u015Bci dziesi\u0119tnych, np. 0.1 godzin (czyli 6 minut).", description: "" }, presetsNoPopupsDesc: { message: "Wy\u0142\u0105cz powiadomienia i wyskakuj\u0105ce pop-upy.", description: "" }, userHighlightFriendColorDesc: { message: "Kolor, kt\xF3ry b\u0119dzie u\u017Cywany do wyr\xF3\u017Cniania przyjaci\xF3\u0142.", description: "" }, spoilerTagsTransitionDesc: { message: "Minimalnie op\xF3\u017Anij pokazywanie tekstu w spojlerze po ich najechaniu.", description: "" }, nerShowPauseButtonDesc: { message: "Poka\u017C przycisk odtw\xF3rz/pauza dla automatycznego wczytywania w g\xF3rnym prawym rogu.", description: "" }, messageMenuName: { message: "Menu wiadomo\u015Bci", description: "" }, aboutOptionsSuggestions: { message: "Je\u015Bli masz pomys\u0142 na dalszy rozw\xF3j RES lub chcesz porozmawia\u0107 z innymi u\u017Cytkownikami, odwied\u017A r/Enhancement.", description: "" }, userbarHiderName: { message: "Chowanie paska u\u017Cytkownika", description: "" }, stylesheetRedditThemesTitle: { message: "Motywy Reddita", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "Podczas skakania pomi\u0119dzy wpisami (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent i moveDownParentSibling), kiedy i jak RES\xA0powinien przewin\u0105\u0107 stron\u0119?", description: "" }, subredditInfoFadeDelayTitle: { message: "Op\xF3\u017Anienie zanikania", description: "" }, necDescription: { message: "P\u0142ynnie przegl\u0105daj ultra-d\u0142ugie strony z komentarzami.", description: "" }, keyboardNavFollowProfileDesc: { message: "Przejd\u017A do\xA0profilu autora zaznaczonej rzeczy.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "Pami\u0119\u0107 podr\u0119czna zosta\u0142a wyczyszczona.", description: "" }, localDateName: { message: "Lokalna data", description: "" }, commentStyleCommentRoundedDesc: { message: "Zaokr\u0105glone kraw\u0119dzie boks\xF3w komentarzy.", description: "" }, subredditManagerButtonEditDesc: { message: 'Pokazuje przycisk "EDYTUJ" w mened\u017Cerze subreddita.', description: "" }, keyboardNavUseGoModeTitle: { message: 'U\u017Cywaj trybu "Id\u017A do"', description: "" }, messageMenuLabel: { message: "etykieta", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Kolor u\u017Cywany do wyr\xF3\u017Cnienia pierwszego komentuj\u0105cego po najechaniu.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Poka\u017C aktualn\u0105 nazw\u0119 u\u017Cytkownika", description: "" }, troubleshooterTestEnvironmentDesc: { message: "Kilka test\xF3w specyficznych dla \u015Brodowisk/przegl\u0105darek.", description: "" }, subredditInfoAddRemoveFilter: { message: "filtr", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Poka\u017C licznik nieprzeczytanych w tytule", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Podgl\u0105d w\xA0pasku bocznym", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Tworzy pasek po lewej stronie ka\u017Cdego komentarza. Pasek mo\u017Ce zosta\u0107 klikni\u0119ty, by schowa\u0107 komentarz.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Otw\xF3rz subreddit w nowej karcie", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Poka\u017C narz\u0119dzie autouzupe\u0142niania nazw u\u017Cytkownik\xF3w podczas pisania post\xF3w, komentarzy i odpowiedzi.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Najechanie mysz\u0105 na tekst ukrywaj\u0105cy twoj\u0105 prawdziw\u0105 nazw\u0119 u\u017Cytkownika poka\u017Ce j\u0105.\nTo u\u0142atwia upewnienie si\u0119, czy komentujesz/dodajesz posta z prawid\u0142owego konta, ale wci\u0105\u017C ukrywa nazw\u0119 u\u017Cytkownika przed wzrokiem ciekawskich.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Dodaje szybki prze\u0142\u0105cznik NSFW (18+) do menu z\xA0ikon\u0105 z\u0119batki.", description: "" }, subredditInfoSubscribe: { message: "subskrybuj", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Przejd\u017A do\xA0profilu autora zaznaczonej rzeczy w nowej karcie.", description: "" }, keyboardNavDownVoteDesc: { message: "Zag\u0142osuj w d\xF3\u0142 na zaznaczony link lub komentarz (lub usu\u0144 sw\xF3j g\u0142os).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Odzyskanie kopii zapasowej permanentnie nadpisze twoje aktualne ustawienia. Czy na pewno chcesz kontynuowa\u0107?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Wyr\xF3\u017Cnij komentarze administratora.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter wysy\u0142a komentarze", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Prze\u0142\u0105cz przycisk chowania na lewej kraw\u0119dzi komentarzy", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter\xA0wysy\u0142a\xA0posty", description: "" }, userInfoGildCommentsTitle: { message: "Poz\u0142o\u0107 komentarze", description: "" }, subredditInfoHoverDelayTitle: { message: "Op\xF3\u017Anienie otwierania", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit utworzony:", description: "" }, multiredditNavbarLabel: { message: "etykieta", description: "" }, userHighlightAutoColorUsingTitle: { message: "Metoda automatycznego kolorowania", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Poka\u017C ostrze\u017Cenie je\u015Bli aktualny URL zosta\u0142 ju\u017C wcze\u015Bniej wys\u0142any do wybranego subreddita.\n\n*Nie w 100% dok\u0142adne z powodu ogranicze\u0144 wyszukiwarki i r\xF3\u017Cnych metod formatowania tego samego URL.*", description: "" }, singleClickHideLECDesc: { message: "Ukryj [l=c] je\u015Bli link prowadzi do tej samej strony co link do strony z komentarzami.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "Funkcja $1 zosta\u0142a w\u0142\u0105czona ponownie. Ta funkcja nie zostanie ponownie wy\u0142\u0105czona automatycznie.", description: "" }, messageMenuHoverDelayTitle: { message: "Op\xF3\u017Anienie otwierania", description: "" }, stylesheetUsernameClassTitle: { message: "Klasa u\u017Cytkownika", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Poka\u017C podgl\u0105d dla\xA0informacji o banowaniu.", description: "" }, usersCategory: { message: "U\u017Cytkownicy", description: "" }, showImagesMediaBrowseDesc: { message: "Je\u015Bli tre\u015Bci s\u0105 otwarte w aktualnie\xA0zaznaczonym po\u015Bcie podczas przechodzenia\xA0do\xA0poprzedniego/nast\u0119pnego posta, otw\xF3rz multimedia w zaznaczanym po\u015Bcie.", description: "" }, nightModeColoredLinksDesc: { message: "Pokoloruj linki na niebiesko i fioletowo.", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit nieznaleziony", description: "" }, logoLinkCustomDestinationDesc: { message: 'Je\u015Bli\xA0opcja redditLogoDestination jest ustawiona na "W\u0142asne",\xA0wprowad\u017A link tutaj.', description: "" }, resTipsName: { message: "Podpowiedzi RES", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Prze\u0142\u0105czanie Linii komend", description: "" }, contextName: { message: "Kontekst", description: "" }, backupAndRestoreReloadWarningDesc: { message: "Po odzyskaniu kopii zapasowej, manualnie lub automatycznie, jak maj\u0105 prze\u0142adowa\u0107 si\u0119 inne karty? Karty musz\u0105 zosta\u0107 prze\u0142adowane, by ustawienia zosta\u0142y na nich zaaplikowane.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Zawsze", description: "" }, troubleshooterThisWillKillYourSettings: { message: 'Ta opcja usunie wszystkie twoje\xA0ustawienia i zapisane dane. Je\u015Bli na pewno chcesz kontynuowa\u0107, wpisz "$1".', description: "" }, searchHelperDefaultSearchTabTitle: { message: "Domy\u015Blna karta na stronie wyszukiwania", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Czas trwania nadpisania trybu nocnego", description: "" }, userInfoUserSuspended: { message: "U\u017Cytkownik zawieszony.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "U\u017Cywaj przecink\xF3w", description: "" }, userInfoLinks: { message: "Linki", description: "" }, userHighlightHighlightAdminTitle: { message: "Wyr\xF3\u017Cnij administratora", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Poka\u017C przyciski takie jak pauza/play, kroki i pr\u0119dko\u015B\u0107 odtwarzania.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Chowa domy\u015Blny przycisk ([-]) s\u0142u\u017C\u0105cy do chowania komentarzy.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Id\u017A na sam\u0105 g\xF3r\u0119 listy (na stronach z list\u0105 link\xF3w).", description: "" }, contextDefaultContextTitle: { message: "Domy\u015Blny kontekst", description: "" }, userTaggerTagUserAs: { message: "oznacz u\u017Cytkownika $1 jako: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Maksymalna szeroko\u015B\u0107", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub reddity", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Schowaj przycisk nowej wiadomo\u015Bci moderacyjnej gdy puste", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Id\u017A w d\xF3\u0142 r\xF3wnorz\u0119dnie", description: "" }, customTogglesName: { message: "W\u0142asne prze\u0142\u0105czniki", description: "" }, pageNavShowLinkTitle: { message: "Poka\u017C link", description: "" }, keyboardNavProfileNewTabDesc: { message: "Przejd\u017A do\xA0profilu w nowej karcie.", description: "" }, aboutCategory: { message: "O RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Znajomi", description: "" }, quickMessageSendAsDesc: { message: 'Domy\u015Blny u\u017Cytkownik lub subreddit do wybrania je\u015Bli pole "Od" nie jest okre\u015Blone.\nPrzywraca warto\u015B\u0107 do aktualnie wybranego u\u017Cytkownika je\u015Bli wybrana opcja nie mo\u017Ce zosta\u0107 u\u017Cyta (np. nie jeste\u015B moderatorem aktualnie wybranego subreddita).', description: "" }, userInfoGiftRedditGold: { message: "Podaruj Reddit Gold", description: "" }, troubleshooterDesc: { message: "Rozwi\u0105\u017C cz\u0119ste problemy i wyczy\u015B\u0107/usu\u0144 niechciane dane ustawie\u0144.\n\nTwoj\u0105 pierwsz\u0105 lini\u0105 obrony przed b\u0142\u0119dami wynikaj\u0105cymi z awarii lub aktualizacji przegl\u0105darki, lub awarii samego RES, s\u0105 cz\u0119ste kopie zapasowe.\n\n[Przeczytaj wi\u0119cej o kopii zapasowej ustawie\u0144 RES](/r/Enhancement/wiki/backing_up_res_settings)", description: "" }, backupAndRestoreRestoreDesc: { message: "Pobierz kopi\u0119 zapasow\u0105\xA0obecnych ustawie\u0144 RES.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Poka\u017C podgl\u0105d dla komentarzy.", description: "" }, spamButtonName: { message: "Przycisk Spam", description: "" }, hoverInstancesTitle: { message: "Instancje", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Niekt\xF3re kolory\xA0wyr\xF3\u017Cnienia nie mog\u0142y\xA0zosta\u0107 wygenerowane. Prawdopodobnym powodem jest u\u017Cycie kolor\xF3w w specjalnym formacie.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "U\u017Cyj skr\xF3t\xF3w klawiaturowych, by nadawa\u0107 styl zaznaczonemu tekstowi.", description: "" }, profileRedirectDesc: { message: "Preferuj \u0142adowanie konkretnej karty na stronie profilu", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Automatycznie ukrywaj opcje wyszukiwania i sugestie na stronie wyszukiwania.", description: "" }, notificationsDesc: { message: "Zarz\u0105dzaj powiadomieniami funkcji RES.", description: "" }, logoLinkDashboard: { message: "Panel RES", description: "" }, dashboardDashboardShortcutDesc: { message: 'Poka\u017C link "+panel" na pasku bocznym\xA0by \u0142atwo dodawa\u0107 wid\u017Cety do swojego panelu.', description: "" }, userInfoName: { message: "Informacje o u\u017Cytkownikach", description: "" }, keyboardNavLinkNumbersDesc: { message: "Przypisz klawisze numeryczne (np. [1]) do link\xF3w w aktualnie zaznaczonym wpisie.", description: "" }, singleClickHideLECTitle: { message: "Ukryj LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Szeroko\u015B\u0107 belki.", description: "" }, filteRedditDomainsTitle: { message: "Domeny", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Wyr\xF3\u017Cnij ilo\u015B\u0107 punkt\xF3w", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Dozwolona funkcja", description: "" }, orangeredHideModMailTitle: { message: "Schowaj wiadomo\u015Bci moderacyjne", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Otwieraj\xA0gdy\xA0wyr\xF3\u017Cniono u\u017Cytkownika", description: "" }, troubleshooterDisableRESDesc: { message: "Od\u015Bwie\u017Ca stron\u0119 i wy\u0142\u0105cza RES tylko dla tej karty. RES b\u0119dzie nadal aktywny we wszystkich innych kartach i obecnie (lub w przysz\u0142o\u015Bci) w\u0142\u0105czonych oknach. Ta funkcja mo\u017Ce by\u0107 u\u017Cywana do diagnozowania problem\xF3w, zar\xF3wno jak i do szybkiego ukrywania notatek, liczby g\u0142os\xF3w, skr\xF3t\xF3w i innych danych u\u017Cywanych przez RES dla przejrzysto\u015Bci.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Ostrze\u017Cenie zosta\u0142o ju\u017C wys\u0142ane.", description: "" }, aboutOptionsPrivacy: { message: "Przeczytaj o polityce prywatno\u015Bci RES.", description: "" }, commentStyleContinuityTitle: { message: "Wspomaganie \u015Bledzenia poziomu", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+dodaj filtr", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Poka\u017C szczeg\xF3\u0142y ka\u017Cdego konta, takie jak karma lub status gold,\xA0w\xA0menu Prze\u0142\u0105cznika kont.", description: "" }, browsingCategory: { message: "Przegl\u0105danie", description: "" }, announcementsNewPost: { message: "Dodano nowy post do /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Tworzy lini\u0119 oddzielaj\u0105c\u0105 najlepsze komentarze dla \u0142atwiejszego rozr\xF3\u017Cnienia.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Czy na pewno chcesz usun\u0105\u0107 znacznik dla u\u017Cytkownika: $1?", description: "" }, selectedEntryAddLineTitle: { message: "Dodaj lini\u0119", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Id\u017A w\xA0d\xF3\u0142 w\u0105tku", description: "" }, keyboardNavInboxTitle: { message: "Skrzynka odbiorcza", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link do aktualnej strony", description: "" }, userInfoUnhighlight: { message: "Usu\u0144 wyr\xF3\u017Cnienie", description: "" }, showImagesMarkVisitedTitle: { message: "Oznacz odwiedzone", description: "" }, profileNavigatorSectionLinksTitle: { message: "Linki sekcji", description: "" }, accountSwitcherLoggedOut: { message: "Wylogowano Ci\u0119.", description: "" }, betteRedditHideSubmissionError: { message: "Wyst\u0105pi\u0142 b\u0142\u0105d podczas chowania posta. Spr\xF3buj klikn\u0105\u0107 ponownie.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Pokazuj domy\u015Blnie", description: "" } }; // locales/locales/pt.json var pt_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Mostrar o Navegador de Coment\xE1rios quando um utilizador \xE9 destacado.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Mostrar datas absolutas nos coment\xE1rios / mensagens.", description: "" }, commentPrevDesc: { message: "Fornece uma pr\xE9-visualiza\xE7\xE3o instant\xE2nea do que est\xE1 a ser editado, como coment\xE1rios, publica\xE7\xF5es de texto, mensagens, p\xE1ginas da wiki, e outras edi\xE7\xF5es de texto; assim como um editor de duas colunas para escrever paredes de texto.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Trocar pr\xE9-visualiza\xE7\xE3o e edi\xE7\xE3o (pr\xE9-visualiza\xE7\xE3o fica na esquerda e edi\xE7\xE3o na direita).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Descer nos Coment\xE1rios", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Mostrar a liga\xE7\xE3o para o meu painel de controlo no menu do RES.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "O utilizador tem Ouro do Reddit", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Subir Para o Irm\xE3o", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Indenta\xE7\xE3o dos coment\xE1rios", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Desligar todos os m\xF3dulos do RES", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Mostrar datas absolutas no registo da modera\xE7\xE3o (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Aleat\xF3rio", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filtrar este sub-reddit do /r/all e do /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Seguir coment\xE1rios num novo separador", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "cancelar subscri\xE7\xE3o", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "Mensagens N\xE3o Lidas", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Show a random tip once every 24 hours.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Palavras Chave", description: "" }, filteRedditAllowNSFWTitle: { message: "Permitir NSFW", description: "" }, hoverOpenDelayTitle: { message: "Intervalo de Abertura", description: "" }, keyboardNavNextPageTitle: { message: "P\xE1gina Seguinte", description: "" }, commentToolsSuperKeyTitle: { message: "\xCDndice", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Destino Personalizado", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Contexto das liga\xE7\xF5es permanentes de coment\xE1rios", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Restaurar Separador Guardado", description: "" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Fade or completely hide duplicate posts already showing on the page.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "Etiquetas de Utilizador", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Navegador de Coment\xE1rios - Descer", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Add a button to hide search options while searching.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Subir usando o Navegador de Coment\xE1rios.", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Usar o \xEDcone "snoo" ou o estilo de menu antigo?', description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Manter a lista de macros aberta", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Activar/Desactivar Navegador de Coment\xE1rios", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Teclas de atalho", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Seguir a liga\xE7\xE3o num novo separador (apenas na p\xE1gina de liga\xE7\xF5es).", description: "" }, onboardingDesc: { message: "Sabe mais acerca do RES em /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "Filtro NSFW", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Intervalo de Desvanecimento", description: "" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsLinkKeyTitle: { message: "Liga\xE7\xE3o", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+adicionar atalho", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "P\xE1gina Principal do Sub-reddit", description: "" }, keyboardNavFollowSubredditTitle: { message: "Seguir Sub-reddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Mostrar Ouro", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "Carregador de Folhas de Estilo", description: "" }, subredditInfoOver18: { message: "Mais de 18:", description: "" }, userInfoIgnore: { message: "Ignorar", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "\xCDtem do menu", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "Tens a certeza?", description: "" }, messageMenuAddShortcut: { message: "+adicionar atalho", description: "" }, troubleshooterName: { message: "Resolu\xE7\xE3o de Problemas", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Usar a caixa de Mensagem R\xE1pida ao compor uma nova mensagem.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Caixa de Entrada num novo separador", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Abrir a liga\xE7\xE3o permanente do coment\xE1rio actual num novo separador (apenas na p\xE1gina de coment\xE1rios).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "Ao votar numa liga\xE7\xE3o seleccionar automaticamente a pr\xF3xima liga\xE7\xE3o.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "Ba\xFA de Boas Vindas do RES", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Parar de filtrar do /r/all e do /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Mover para o coment\xE1rio no topo do pr\xF3ximo t\xF3pico (nos coment\xE1rios).", description: "" }, hoverName: { message: "Caixa Pop-up RES", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Activar para os coment\xE1rios", description: "" }, spamButtonDesc: { message: "Adiciona um Bot\xE3o de Lixo \xE0s publica\xE7\xF5es para denunciar mais facilmente.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "etiqueta", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Ajuda-te a ter a tua dose di\xE1ria de orangereds.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Modo noturno ligado", description: "" }, myAccountCategory: { message: "A Minha Conta", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments", description: "" }, yes: { message: "Sim", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Menu Item", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Color", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Diz-te quantos coment\xE1rios foram feitos desde a \xFAltima vez que visitaste o t\xF3pico.", description: "" }, userTaggerPageXOfY: { message: "$1 de $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "As Minhas Etiquetas de Utilizador", description: "" }, pageNavShowLinkNewTabDesc: { message: "Abrir link em uma nova aba.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Pesquisar nas Defini\xE7\xF5es do RES", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "N\xE3o fazer ctrl+f", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "sub-reddit", description: "" }, betteRedditVideoViewedTitle: { message: "V\xEDdeo Visto", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Meter a negrito o "A comentar como" se estiveres a usar uma conta alternativa. A primeira conta no m\xF3dulo Mudar de Conta \xE9 considerada como a conta principal.', description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "Ao enviar, mostrar o n\xFAmero de caracteres inseridos nos campos de t\xEDtulo e de texto e indicar quando superares o limite de 300 caracteres no t\xEDtulo.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Aumentar o tamanho das imagens na \xE1rea destacada da publica\xE7\xE3o (controlo refinado).", description: "" }, nerName: { message: "Never Ending Reddit", description: "" }, subredditInfoTitle: { message: "T\xEDtulo:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Autom\xE1tico (necessita de geolocaliza\xE7\xE3o)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "Ver a liga\xE7\xE3o e coment\xE1rios em novos separadores em segundo plano.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Margem dos coment\xE1rios flutuantes", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Fade", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Diminuir o tamanho das imagens na \xE1rea destacada da publica\xE7\xE3o (controlo refinado).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Ir para a p\xE1gina seguinte (apenas nas p\xE1ginas de listagem de liga\xE7\xF5es).", description: "" }, notificationsPerNotificationType: { message: "tipo por notifica\xE7\xE3o", description: "" }, subredditTaggerDesc: { message: "Add custom text to the beginning of submission titles on your front page, multireddits, and /r/all. Useful for adding context to submissions.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Facilita a navega\xE7\xE3o para v\xE1rias partes da tua p\xE1gina de utilizador.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Inclui funcionalidade adicional \xE0s tabelas de Markdown do Reddit (de momento apenas ordena)", description: "" }, notificationsAlwaysSticky: { message: "always sticky", description: "" }, searchName: { message: "Pesquisar nas Defini\xE7\xF5es do RES", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Enviar como", description: "" }, pageNavName: { message: "Navegador de P\xE1ginas", description: "" }, keyboardNavFollowLinkDesc: { message: "Seguir liga\xE7\xE3o (apenas p\xE1ginas de liga\xE7\xE3o)", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "Guarda o estado dos coment\xE1rios escondidos atrav\xE9s das p\xE1ginas vistas.", description: "" }, quickMessageDesc: { message: "Uma caixa de di\xE1logo que te permite enviar mensagens a partir de qualquer lado no Reddit. As mensagens podem ser enviadas a partir da caixa de di\xE1logo atrav\xE9s da combina\xE7\xE3o de teclas control+enter ou comando+enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "nome de utilizador", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Night Mode Start", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "Barra de utilizador escondida", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+adicionar sub-reddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Trocar a disposi\xE7\xE3o do editor grande", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Carregar automaticamente", description: "" }, nerReturnToPrevPageDesc: { message: 'Return to the page you were last on when hitting "back" button?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Section Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Mover para o pr\xF3ximo irm\xE3o do pai (nos coment\xE1rios).", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Mostrar tempo restante da pontua\xE7\xE3o oculta", description: "" }, hoverWidthDesc: { message: "Largura do popup predefinida.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Ativar/Desativar o modo noturno", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Never Ending Comments", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Excluir publica\xE7\xF5es pr\xF3prias", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "Ir para o correio de moderador num novo separador.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "Correio de Moderador num novo separador", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Mostrar bot\xE3o de subscri\xE7\xE3o?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Introduzir filtro da linha de comandos", description: "" }, betteRedditDoNoCtrlFDesc: { message: 'Ao usar ctrl+f/cmd+f (procurar texto), apenas procurar nos coment\xE1rios/texto da publica\xE7\xE3o e n\xE3o nas liga\xE7\xF5es de navega\xE7\xE3o ("liga\xE7\xE3o permanente fonte guardar\u2026"). Desactivado por defeito por causar um ligeiro impacto no desempenho.', description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special color for each username.", description: "" }, backupName: { message: "C\xF3pia e Restauro", description: "" }, profileNavigatorSectionLinksDesc: { message: "Liga\xE7\xF5es a mostrar no menu flutuante do perfil.", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "Usar estilo do sub-reddit", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Adicionar este sub-reddit ao teu painel de controlo", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Actualizar outros separadores", description: "" }, nightModeUseSubredditStylesTitle: { message: "Usar Estilos do Subreddit", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "Ao votar num coment\xE1rio seleccionar automaticamente o pr\xF3ximo coment\xE1rio.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Use Mobile Gfycat", description: "" }, commentToolsItalicKeyDesc: { message: "Tecla de atalho para colocar texto a it\xE1lico.", description: "" }, messageMenuLinksDesc: { message: "Liga\xE7\xF5es para mostrar no menu da caixa de correio.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "O Reddit esconde algumas op\xE7\xF5es de ordena\xE7\xE3o de coment\xE1rios (aleat\xF3rio, etc) na maioria das p\xE1ginas. Esta op\xE7\xE3o f\xE1-las aparecerem.", description: "" }, commandLineLaunchTitle: { message: "Launch", description: "" }, betteRedditDesc: { message: 'Adiciona v\xE1rias melhorias \xE0 interface do Reddit, como os links "coment\xE1rios completos", a possibilidade de mostrar novamente posts escondidos acidentalmente, e mais.', description: "" }, resTipsDesc: { message: "Adiciona ajudas com dicas/truques \xE0 consola do RES.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Subir para o irm\xE3o anterior (nos coment\xE1rios) - salta para o irm\xE3o anterior \xE0 mesma profundidade.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Destacar a hierarquia da caixa de coment\xE1rios ao passar o cursor por cima (desactivar para maior desempenho).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Tecla de atalho para colocar texto a negrito.", description: "" }, hoverWidthTitle: { message: "Largura", description: "" }, dashboardName: { message: "Painel de Controlo do RES", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Mostrar hora da \xFAltima edi\xE7\xE3o", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Manter a sess\xE3o iniciada", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Cria liga\xE7\xF5es para os subreddits cruzados na linha principal da publica\xE7\xE3o.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Clica aqui para saber mais", description: "" }, keyboardNavInboxNewTabDesc: { message: "Ir para a caixa de entrada num novo separador.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Mostrar pr\xE9-visualiza\xE7\xE3o na edi\xE7\xE3o das defini\xE7\xF5es do sub-reddit.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "todos os utilizadores", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "Add an icon to every page that takes you to the top when clicked.", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expandir/colapsar coment\xE1rios (apenas nas p\xE1ginas de coment\xE1rios).", description: "" }, commentPreviewDraftStyleTitle: { message: "Estilo de rascunho", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Mostrar datas absolutas na wiki.", description: "" }, logoLinkInbox: { message: "Caixa de Entrada", description: "" }, searchHelperDesc: { message: "Disponibiliza ajuda acerca do uso da pesquisa.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Activar novo separador ao seguir liga\xE7\xE3o", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Mostrar hora - publica\xE7\xF5es", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "Predefini\xE7\xF5es", description: "" }, styleTweaksName: { message: "Ajustes de Estilo", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Comunicados do RES", description: "" }, hoverInstancesDesc: { message: "Gerir pop-ups particulares", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Subir para o coment\xE1rio anterior em p\xE1ginas de coment\xE1rio em \xE1rvore.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Mostrar hora - barra lateral", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Velocidade de Desvanecimento", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes de uma liga\xE7\xE3o escondida desvanescer.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Mostrar Carma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatic Night Mode", description: "" }, noPartDisableCommentTextareaDesc: { message: "Disable commenting.", description: "" }, nerReturnToPrevPageTitle: { message: "Voltar para a p\xE1gina anterior", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'Adicionar uma liga\xE7\xE3o "Ver todo o contexto" quando estiver numa liga\xE7\xE3o de coment\xE1rio.', description: "" }, messageMenuFadeDelayTitle: { message: "Intervalo de Desvanecimento", description: "" }, commentToolsDesc: { message: "Fornece ferramentas e atalhos para compor coment\xE1rios, publica\xE7\xF5es de texto, p\xE1ginas da wiki, e outras edi\xE7\xF5es de texto.", description: "" }, noPartName: { message: "Modo N\xE3o Participativo", description: "" }, presetsDesc: { message: "Selecciona a partir de v\xE1rias configura\xE7\xF5es predefinidas do RES. Cada predefini\xE7\xE3o activa ou desactiva v\xE1rios m\xF3dulos/op\xE7\xF5es, mas n\xE3o apaga completamente todas as tuas configura\xE7\xF5es.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Mostrar as ferramentas de coment\xE1rio na caixa de texto das notas do ban.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Ir para o sub-reddit da liga\xE7\xE3o seleccionada num novo separador (apenas nas p\xE1ginas de liga\xE7\xE3o).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Estilo do sub-reddit", description: "" }, keyboardNavDownVoteTitle: { message: "Voto Negativo", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Descer", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Notification Types", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "Mover para baixo ao votar em coment\xE1rios", description: "" }, hoverCloseOnMouseOutDesc: { message: "Fechar o popup ao tirar o cursor alternativamente ao bot\xE3o de fechar.", description: "" }, subredditTaggerName: { message: "Etiquetas de Subreddits", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Destacar se for uma conta alternativa", description: "" }, userInfoDesc: { message: "Adiciona uma tooltip aos utilizadores.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Close Delay", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "Permite-te alterar a liga\xE7\xE3o no log\xF3tipo do Reddit.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "N\xFAmero de publica\xE7\xF5es a mostrar por defeito em cada widget.", description: "" }, pageNavDesc: { message: "Disponibiliza ferramentas para navegar na p\xE1gina.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Mostrar o meu utilizador actual em Mudar de Conta.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 est\xE1 em $2 multi-reddits", description: "" }, commentToolsStrikeKeyTitle: { message: "Rasurado", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colorblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Mostrar o navegador de coment\xE1rios por defeito.", description: "" }, keyboardNavSaveRESTitle: { message: "Guardar no RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "Mover para baixo ao esconder", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Caixa de coment\xE1rios", description: "" }, profileNavigatorName: { message: "Navegador de Perfil", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "N\xE3o", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Estilo de Deslocamento Linear", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "Mostrar os coment\xE1rios-pai.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Personaliza rapidamente o RES com v\xE1rias configura\xE7\xF5es predefinidas.", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "Persist\xEAncia do Esconder Coment\xE1rios", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Item Seleccionado", description: "" }, betteRedditPinHeaderTitle: { message: "Fixar Cabe\xE7alho", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Espa\xE7o reservado para as macros", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Activar para as mensagens dos bans", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Abrir a caixa de correio numa nova aba", description: "" }, versionDesc: { message: "Lida com as verifica\xE7\xF5es de vers\xE3o actual/anterior.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "O teu nome de utilizador, carma, defini\xE7\xF5es, roda do RES e afins est\xE3o escondidas. Poder\xE1s mostr\xE1-las novamente ao clicar no bot\xE3o $1 no topo superior direito.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling", description: "" }, keyboardNavFollowLinkTitle: { message: "Seguir Liga\xE7\xE3o", description: "" }, keyboardNavMoveBottomDesc: { message: "Mover para o fundo da lista (em p\xE1ginas de liga\xE7\xE3o).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Dar voto positivo \xE0 liga\xE7\xE3o ou coment\xE1rio seleccionados (mas n\xE3o remover o voto positivo).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Fade Delay", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Liga\xE7\xF5es permanentes de coment\xE1rios", description: "" }, aboutOptionsLicenseTitle: { message: "Licen\xE7a", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Mostrar pr\xE9-visualiza\xE7\xE3o para as publica\xE7\xF5es.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Mover imagem para a direita", description: "" }, keyboardNavPrevPageDesc: { message: "Ir para a p\xE1gina anterior (apenas nas p\xE1ginas de ligastem de liga\xE7\xF5es).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Abrir liga\xE7\xF5es em coment\xE1rios num novo separador.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoCommentKarma: { message: "Carma de Coment\xE1rios:", description: "" }, settingsConsoleDesc: { message: "Gere as tuas defini\xE7\xF5es do RES.", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Mod Color", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "Liga\xE7\xF5es", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Liga\xE7\xF5es dos coment\xE1rios em novos separadores", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Erro ao carregar a informa\xE7\xE3o do sub-reddit.", description: "" }, accountSwitcherName: { message: "Mudar de Conta", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Descer para o irm\xE3o seguinte (nos coment\xE1rios) - salta para o pr\xF3ximo irm\xE3o \xE0 mesma profundidade.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Night Switch", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Activar para as publica\xE7\xF5es", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Mostrar ajuda para as teclas de atalho.", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "Atalho do painel de controlo", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Esconder", description: "" }, userInfoLink: { message: "Liga\xE7\xE3o:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "h\xE1 $1", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Mostrar a dura\xE7\xE3o dos v\xEDdeos quando poss\xEDvel.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignorado.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Responder", description: "" }, accountSwitcherSimpleArrow: { message: "seta simples", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Usar a Mensagem R\xE1pida", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "All options are displayed by default. Uncheck this box if you would like to hide advanced options.", description: "" }, betteRedditFixHideLinksTitle: { message: "Corrigir Liga\xE7\xF5es 'Ocultar'", description: "" }, commentNavName: { message: "Navegador de Coment\xE1rios", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Abrir o Navegador de Coment\xE1rios.", description: "" }, presetsLiteDesc: { message: "RES Lite: just the popular stuff", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Ao fazeres ctrl+enter ou cmd+enter o teu coment\xE1rio/edi\xE7\xE3o da wiki ser\xE1 enviado.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nothing", description: "" }, filteRedditShowFilterlineTitle: { message: "Mostrar linha de filtros", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Section Links", description: "" }, hideChildCommentsDesc: { message: "Allows you to hide child comments.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover", description: "" }, submitHelperName: { message: "Assistente de Publica\xE7\xE3o", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Ordena\xE7\xE3o predefinida", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "Coment\xE1rios arredondados", description: "" }, keyboardNavImageSizeUpTitle: { message: "Aumentar Imagem", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "ligar/desligar estilo do sub-reddit $1 para: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Coment\xE1rios", description: "" }, commentToolsStrikeKeyDesc: { message: "Tecla de atalho para rasurar o texto.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Esconder op\xE7\xF5es de procura", description: "" }, logoLinkMyUserPage: { message: "A minha p\xE1gina de utilizador", description: "" }, keyboardNavUseGoModeDesc: { message: 'Requer iniciar o Modo Ir antes de usar atalhos "ir para".', description: "" }, easterEggName: { message: "Easter Egg", description: "" }, commentToolsSuperKeyDesc: { message: "Tecla de atalho para colocar o texto em \xEDndice.", description: "" }, keyboardNavUpVoteTitle: { message: "Voto Positivo", description: "" }, notificationNotificationTypesDesc: { message: "Manage different types of notifications.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Carma de Publica\xE7\xF5es:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "ligar/desligar estilo do sub-reddit $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Read more", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Destino do Log\xF3tipo do Reddit", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Activar para as configura\xE7\xF5es do sub-reddit", description: "" }, accountSwitcherShowKarmaDesc: { message: "Mostrar o carma de publica\xE7\xF5es e coment\xE1rio de cada conta em Mudar de Conta.", description: "" }, keyboardNavDesc: { message: "Navega\xE7\xE3o com o teclado para o Reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Mover para o pai (nos coment\xE1rios).", description: "" }, keyboardNavGoModeDesc: { message: 'Entrar no "Modo de Ir" (requerido para usar os atalhos "ir para" abaixo).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "Linha de Comandos do RES", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Mover imagem para a esquerda", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "O Painel de Controlo do RES abriga uma s\xE9rie de funcionalidades como widgets e outras ferramentas \xFAteis.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "N\xE3o esconder a lista ap\xF3s seleccionar uma macro da lista.", description: "" }, filteRedditSubredditsTitle: { message: "Sub-reddits", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Descer as imagens na \xE1rea destacada da publica\xE7\xE3o.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Seguir liga\xE7\xE3o permanente num novo separador", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Remove as restri\xE7\xF5es de altura das imagens na \xE1rea destacada das publica\xE7\xF5es.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "marcar utilizador $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Comunicar um Problema", description: "" }, aboutOptionsFAQTitle: { message: "Perguntas Frequentes", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Mostrar os detalhes do utilizador", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Estilo do sub-reddit desactivado para o sub-reddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Color for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Update Current Tab", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Navegador de Coment\xE1rios - Subir", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Ir para o perfil.", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "Ver liga\xE7\xE3o e coment\xE1rios em novos separadores.", description: "" }, onboardingUpdateNotificationName: { message: "Update Notification", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, nightModeNightModeStartDesc: { message: "Hora para mudar automaticamente para modo nocturno.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Automatically load new page on scroll (if off, you click to load).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "sticky", description: "" }, userHighlightAdminColorTitle: { message: "Admin Color", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Diminuir Imagem", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'O separador guardado est\xE1 agora localizado a barra de multi-reddit. Isto ir\xE1 devolver uma liga\xE7\xE3o "guardado" ao cabe\xE7alho (ao lado dos separadores "populares", "novos", etc).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Default color of the bar.", description: "" }, toggleOff: { message: "desligado", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Mostrar a ferramenta para auto-completar ao escrever em publica\xE7\xF5es, coment\xE1rios e respostas.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Diminuir Imagem (refinado)", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Mostrar hora - Wiki", description: "" }, commentToolsMacrosDesc: { message: "Adicionar bot\xF5es para inserir fragmentos de texto usados frequentemente.", description: "" }, keyboardNavProfileTitle: { message: "Perfil", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Filtrar sub-reddits de", description: "" }, userTaggerShowAnyway: { message: "mostrar \xE0 mesma?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Clear Cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+adicionar conta", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Destacar", description: "" }, filteRedditExcludeModqueueDesc: { message: "N\xE3o filtrar nada em p\xE1ginas da fila de moderador (fila de moderador, den\xFAncias, lixo, etc).", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifications.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Subscritores:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Sobe para o coment\xE1rio no topo do t\xF3pico anterior (nos coment\xE1rios).", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Mostrar as ferramentas de formata\xE7\xE3o (negrito, it\xE1lico, tabelas, etc) ao formul\xE1rio de edi\xE7\xE3o para publica\xE7\xF5es, coment\xE1rios e outras \xE1reas de snudown/markdown.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Mover Para o Fundo", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Color Hover", description: "" }, spoilerTagsName: { message: "Etiquetas Spoiler Globais", description: "" }, betteRedditVideoUploadedDesc: { message: "Mostrar a data de envio dos v\xEDdeos quando poss\xEDvel.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Guardar Coment\xE1rios", description: "" }, hoverFadeSpeedDesc: { message: "Intervalo de desvanecimento (em segundos)", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Mostrar datas absolutas (Sun Nov 16 20:14:56 2014 UTC) em vez de datas relativas (H\xE1 7 dias) nas publica\xE7\xF5es.", description: "" }, submissionsCategory: { message: "Publica\xE7\xF5es", description: "" }, keyboardNavSaveCommentDesc: { message: "Guarda o coment\xE1rio actual na tua conta do Reddit. Isto fica acess\xEDvel a partir de qualquer s\xEDtio em que tenhas sess\xE3o iniciada, mas n\xE3o preserva o texto original caso este seja editado ou apagado.", description: "" }, keyboardNavSavePostTitle: { message: "Guardar Publica\xE7\xE3o", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Font Color", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Adicionar op\xE7\xF5es de procura", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "Adiciona uma tooltip aos subreddits.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu.", description: "" }, commentDepthDesc: { message: "Allows you to set the preferred depth of comments you wish to see when clicking on comments links.\n\n0 = Everything, 1 = Root level, 2 = Responses to root level, 3 = Responses to responses to root level, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Tecla de atalho para citar texto.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Hora para o modo nocturno terminar automaticamente.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sort", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filtrar todas as liga\xE7\xF5es marcadas como NSFW.", description: "" }, logoLinkName: { message: "Liga\xE7\xE3o do Log\xF3tipo", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "Caso alguma coisa n\xE3o esteja a funcionar correctamente visita /r/RESissues para obteres ajuda.", description: "" }, nightModeAutomaticNightModeNone: { message: "Desactivado", description: "" }, keyboardNavMoveUpDesc: { message: "Subir para a liga\xE7\xE3o ou coment\xE1rio anteriores em listas planas.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "N\xE3o foi efectuada nenhuma ac\xE7\xE3o.", description: "" }, commentPreviewEnableForWikiTitle: { message: "Activar para a wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Excluir p\xE1ginas de utilizadores", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "nome", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "Visualizador de Imagens Incorporado", description: "" }, commentStyleCommentIndentDesc: { message: "Indentar coment\xE1rios por [x] p\xEDxeis (meter apenas o n\xFAmero, sem o 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Disable RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Dar voto negativo sem alternar", description: "" }, userInfoRedditorSince: { message: "Redditor desde:", description: "" }, userTaggerShow: { message: "Mostrar", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "Velocidade de Desvanecimento", description: "" }, necLoadChildCommentsTitle: { message: "Load Child Comments", description: "" }, showParentName: { message: "Mostrar Pai ao passar com o cursor.", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Mostrar o estatuto de utilizador de ouro em Mudar de Conta.", description: "" }, keyboardNavMoveToParentTitle: { message: "Mover para o pai", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Mostrar hora - coment\xE1rios", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Contas", description: "" }, spoilerTagsDesc: { message: "Esconder spoilers nas p\xE1ginas de perfil de utilizador.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Dar voto negativo \xE0 liga\xE7\xE3o ou coment\xE1rio seleccionados (mas n\xE3o remover o voto negativo).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Show Gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "profundidade de coment\xE1rios", description: "" }, keyboardNavImageMoveDownTitle: { message: "Descer Imagem", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Imagem anterior da galeria", description: "" }, userTaggerTaggedUsers: { message: "utilizadores com etiquetas", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Subir T\xF3pico", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "Adiciona mais informa\xE7\xF5es e refina\xE7\xF5es ao carma junto ao teu nome de utilizador na barra do menu de utilizador.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Profundidade de coment\xE1rios predefinida", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Funcionalidades", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Descer Para o Pai do Irm\xE3o", description: "" }, dashboardTagsPerPageTitle: { message: "Etiquetas por p\xE1gina", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Mostrar hora - Registo da Modera\xE7\xE3o", description: "" }, userTaggerStoreSourceLinkDesc: { message: "By default, store a link to the link/comment you tagged a user on", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Melhora a barra de navega\xE7\xE3o mostrada no lado esquerdo da p\xE1gina principal.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Cita\xE7\xE3o", description: "" }, keyboardNavHideDesc: { message: "Liga\xE7\xE3o de esconder.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Negrito", description: "" }, xPostLinksName: { message: "Liga\xE7\xF5es Cruzadas (X-post)", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Always show a tag tool icon after every username.", description: "" }, commentPreviewDraftStyleDesc: { message: "Aplicar um fundo tipo 'rascunho' \xE0 pr\xE9-visualiza\xE7\xE3o de forma a diferenciar do campo de texto do coment\xE1rio.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Seguir Coment\xE1rios", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Correio de Moderador", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Cor", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Limpar Coment\xE1rios", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "Coment\xE1rios", description: "" }, filteRedditForceSyncFiltersTitle: { message: "For\xE7ar sincroniza\xE7\xE3o de filtros", description: "" }, nerShowServerInfoTitle: { message: "Mostrar informa\xE7\xF5es do servidor", description: "" }, troubleshooterSettingsReset: { message: "Todas as defini\xE7\xF5es foram reiniciadas. Recarrega para veres o resultado.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Mover para a esquerda as imagens na \xE1rea destacada a publica\xE7\xE3o.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Abrir a liga\xE7\xE3o permanente do coment\xE1rio actual (apenas nas p\xE1ginas de coment\xE1rios).", description: "" }, subredditInfoAddRemoveShortcut: { message: "atalho", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Color Blind Friendly", description: "" }, userInfoSendMessage: { message: "enviar mensagem", description: "" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Desactivar bot\xF5es de voto", description: "" }, commentToolsLinkKeyDesc: { message: "Tecla de atalho para adicionar liga\xE7\xE3o.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Subir nos Coment\xE1rios", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "P\xE1gina", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Alterar o valor de contexto predefinido das liga\xE7\xF5es de contexto.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Aumentar Imagem (refinado)", description: "" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Show unread message count in favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Assistente de Pesquisa", description: "" }, keyboardNavNextGalleryImageDesc: { message: "Ver a imagem seguinte de uma galeria embutida.", description: "" }, nightModeName: { message: "Modo Nocturno", description: "" }, filteRedditExcludeModqueueTitle: { message: "Excluir fila de modera\xE7\xE3o", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Abrir filtro da linha de comandos.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "can't set tag - no post/comment selected.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "ligado", description: "" }, contextDesc: { message: "Adiciona uma liga\xE7\xE3o \xE0 barra de informa\xE7\xF5es amarela para ver os coment\xE1rios anexados no contexto global.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Dar voto positivo sem alternar", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Mover Para o Topo", description: "" }, nightModeAutomaticNightModeUser: { message: "Horas definidas pelo utilizador", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignorado", description: "" }, commentToolsCommentingAsDesc: { message: "Mostra o teu nome de utilizador actual para evitar fazeres envios a partir da conta errada.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Seguir liga\xE7\xE3o num novo separador", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "You can change this later from the $1 settings", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Interruptor", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "Ao trocar de conta mostrar aviso nos outros separadores.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Copia e restaura as tuas defini\xE7\xF5es do Reddit Enhancement Suite.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Estilo do Menu Descendente", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Ao fazeres ctrl+enter ou cmd+enter a tua publica\xE7\xE3o ser\xE1 enviada.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "Id da op\xE7\xE3o", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Carrega folhas de estilo adicionais ou os teus pr\xF3prios fragmentos de CSS.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "palavra-passe", description: "" }, userInfoUnignore: { message: "N\xE3o ignorar", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "Macros", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Ligar o modo nocturno automaticamente.\n\nNo modo autom\xE1tico, \xE9 pedido para partilhar a sua localiza\xE7\xE3o. A sua localiza\xE7\xE3o apenas \xE9 utilizada para calcular as horas do nascer e p\xF4r do sol.\n\nNo modo das horas definidas pelo utilizador, o modo nocturno inicia e termina automaticamente \xE0s horas configuradas abaixo.\n\nPara as horas abaixo \xE9 usado um sistema de 24 horas ("tempo militar") das 0:00 \xE0s 23:59. Por exemplo, as 8:20 da noite seria escrito 20:20, enquanto a 12:30 da madrugada seria escrito 0:30.\n\nPara desligar temporariamente o modo nocturno, carregar no bot\xE3o do modo nocturno. Configure a dura\xE7\xE3o que o modo nocturno fica desactivado abaixo.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filtrar este sub-reddit do /r/all e /domain/*", description: "" }, presetsNoPopupsTitle: { message: "No Popups", description: "" }, searchCopyResultForComment: { message: "copy this for a comment", description: "" }, moduleID: { message: "Id do m\xF3dulo", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Show unread message count in page/tab title?", description: "" }, xPostLinksXpostedFrom: { message: "publica\xE7\xE3o cruzada de", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Activar/Desactivar Filhos", description: "" }, commandLineLaunchDesc: { message: "Open the RES Command Line", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Informa\xE7\xE3o do Subreddit", description: "" }, betteRedditVideoUploadedTitle: { message: "V\xEDdeo Enviado", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Dura\xE7\xE3o da anima\xE7\xE3o de desvanecimento (em segundos).", description: "" }, aboutOptionsDonate: { message: "Apoiar o desenvolvimento do RES.", description: "" }, aboutOptionsBugsTitle: { message: "Erros", description: "" }, nerShowPauseButtonTitle: { message: "Mostrar Bot\xE3o de Pausa", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Abrir com 1 Clique", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Number of days before RES stops keeping track of a viewed thread.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Gestor de Vers\xF5es", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching.", description: "" }, commentDepthName: { message: "Profundidade de Coment\xE1rios Personalizada", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Show Unread Count In Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Mostrar bot\xE3o de subscri\xE7\xE3o", description: "" }, commentToolsKey: { message: "tecla", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Color Usernames", description: "" }, commentStyleName: { message: "Estilo dos Coment\xE1rios", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Show All Options", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "P\xE1gina Principal", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatically scroll to the post/comment that is selected when the page loads", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "texto", description: "" }, notificationStickyTitle: { message: "Sticky", description: "" }, aboutOptionsAnnouncements: { message: "Ler as \xFAltimas not\xEDcias em /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Esconder automaticamente todos os coment\xE1rios n\xE3o pai, ou disponibilizar uma liga\xE7\xE3o para escond\xEA-los todos?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Remover este sub-reddit da tua barra de atalhos", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "P\xE1gina Anterior", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Destaca caixas de coment\xE1rios para uma leitura mais f\xE1cil em t\xF3picos grandes.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "Mover para baixo ao votar", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Esconder duplicados", description: "" }, keyboardNavFrontPageDesc: { message: "Ir para a p\xE1gina principal.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Seguir liga\xE7\xE3o e coment\xE1rios em novo separador em segundo plano", description: "" }, singleClickDesc: { message: "Adiciona uma liga\xE7\xE3o [l+c] que abre a liga\xE7\xE3o e a p\xE1gina de coment\xE1rios em dois novos separadores a partir de um \xFAnico clique.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Browse by Wheel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Mostrar o \xEDcone de um envelope (caixa de correio) no canto superior direito.", description: "" }, aboutName: { message: "Acerca do RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "C\xF3pia de seguran\xE7a", description: "" }, productivityCategory: { message: "Produtividade", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "Nenhum sub-reddit especificado.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Fechar ao tirar o cursor", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Mover para o coment\xE1rio no topo do t\xF3pico actual (nos coment\xE1rios).", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: 'Fazer as liga\xE7\xF5es "esconder" dizerem "esconder" ou "mostrar" consoante o estado de oculta\xE7\xE3o.', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 entradas removidas.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Add tabs to the search page.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+enter para guardar t\xF3pico ao vivo", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Profundidades de coment\xE1rios de sub-reddit", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Activar o editor de duas colunas.", description: "" }, floaterName: { message: "Elementos Flutuantes", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Intervalo de desvanecimento da liga\xE7\xE3o de ocultar", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "Interruptor r\xE1pido de NSFW", description: "" }, filteRedditAllowNSFWDesc: { message: "N\xE3o esconder publica\xE7\xF5es NSFW de certos sub-reddits quando o filtro NSFW est\xE1 activado.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Adiciona um bot\xE3o para mostrar ou esconder a barra de utilizador.", description: "" }, showImagesDesc: { message: "Abre as imagens directamente no teu navegador com o clicar de um bot\xE3o. Tamb\xE9m tem op\xE7\xF5es de configura\xE7\xE3o, vai ver!", description: "" }, commentToolsMacroButtonsTitle: { message: "Bot\xF5es Macro", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "N\xE3o filtrar as minhas pr\xF3prias publica\xE7\xF5es.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "Previne que o teu nome de utilizador seja mostrado no ecr\xE3 enquanto est\xE1s com sess\xE3o iniciada no Reddit. Desta forma se algu\xE9m olhar por cima do teu ombro no trabalho, ou se tirares uma captura de ecr\xE3, o teu nome de utilizador n\xE3o \xE9 mostrado. Isto apenas afecta o teu ecr\xE3. N\xE3o h\xE1 forma de publicar ou comentar no Reddit sem que o teu envio esteja ligado \xE0 conta a partir do qual o fizeste.", description: "" }, betteRedditName: { message: "betteReddit", description: "" }, voteEnhancementsName: { message: "Melhorias de Voto", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Mostrar op\xE7\xF5es ocultas de ordena\xE7\xE3o", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Encurta os t\xEDtulos de publica\xE7\xF5es que sejam muito compridos (com mais de uma linha) adicionando retic\xEAncias.", description: "" }, subredditInfoAddRemoveDashboard: { message: "painel de controlo", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "Auto-completar utilizadores", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed", description: "" }, aboutOptionsCodeTitle: { message: "C\xF3digo", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Nome de Utilizador", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Subir as imagens na \xE1rea destacada da publica\xE7\xE3o.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Doar", description: "" }, keyboardNavGoModeTitle: { message: "Modo de Ir", description: "" }, keyboardNavName: { message: "Navega\xE7\xE3o com o Teclado", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "Marcar Utilizadores", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Sub/Multi-Reddit Actual", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Seguir liga\xE7\xE3o permanente", description: "" }, hoverDesc: { message: "Personaliza o comportamento dos pop-ups informativos grandes que aparecem quando se coloca o cursor sobre certos elementos.", description: "" }, modhelperName: { message: "Assistente de Moderador", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Esconder Todos os Coment\xE1rios-Filho", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'Deves especificar "$1" ou "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "Subir", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Abrir mensagem r\xE1pida", description: "" }, pageNavToTopTitle: { message: "To Top", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Navegar no Expando", description: "" }, userTaggerTag: { message: "Etiqueta", description: "" }, userbarHiderToggleUserbar: { message: "Activar/desactivar barra de utilizador", description: "" }, nerReversePauseIconTitle: { message: "Reverter o \xEDcone de pausa", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Remover este sub-reddit do teu painel de controlo", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Formata ou mostra informa\xE7\xF5es adicionais acerca dos votos nas publica\xE7\xF5es e coment\xE1rios.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Gestor de Subreddits", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Sugest\xF5es", description: "" }, keyboardNavSaveCommentTitle: { message: "Guardar Coment\xE1rio", description: "" }, nerPauseAfterEveryTitle: { message: "Pause After Every", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Linha de comandos para navegar no reddit, alternar as defini\xE7\xF5es do RES e depurar o RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "Ver a imagem anterior de uma galeria embutida.", description: "" }, userInfoInvalidUsernameLink: { message: "Liga\xE7\xE3o de nome de utilizador inv\xE1lida.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Descer usando o Navegador de Coment\xE1rios.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Night Mode End", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "Mostra a data no teu fuso hor\xE1rio quando passas o cursor por cima de uma data relativa.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Base", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "minimum comments", description: "" }, aboutOptionsCode: { message: "Podes melhorar o RES com o teu pr\xF3prio c\xF3digo, designs e ideias! O RES \xE9 uma projecto de open-source no GitHub.", description: "" }, commentNavDesc: { message: "Fornece uma ferramenta de navega\xE7\xE3o de coment\xE1rios para encontrar facilmente coment\xE1rios por OP, mod, etc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Ao fazeres ctrl+enter ou cmd+enter as tuas actualiza\xE7\xF5es ao t\xF3pico ao vivo ser\xE3o guardadas.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite \xE9 lan\xE7ado sob a licen\xE7a GPL v3.0.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Activar nas mensagens de ban", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "N\xFAmero de dias antes das subscri\xE7\xF5es do t\xF3pico expirarem.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?", description: "" }, styleTweaksToggleSubredditStyle: { message: "ligar/desligar estilo do sub-reddit", description: "" }, RESTipsDailyTipTitle: { message: "Daily Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "N\xFAmero de Coment\xE1rios Novos", description: "" }, keyboardNavSlashAllDesc: { message: "Ir para /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "Mostrar pais", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "P\xE1gina Principal", description: "" }, commentToolsCategory: { message: "categoria", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "Ao passar o cursor por cima de [pontua\xE7\xE3o oculta] mostrar o tempo restante em vez da dura\xE7\xE3o da oculta\xE7\xE3o.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Mostrar a hora em que uma publica\xE7\xE3o ou coment\xE1rio foi editado sem ter de colocar o cursor por cima da hora de envio.", description: "" }, aboutOptionsSearchSettings: { message: "Pesquisar nas defini\xE7\xF5es do RES.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Imagem seguinte da galeria", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Estilo do sub-reddit activado para o sub-reddit: $1.", description: "" }, notificationsNeverSticky: { message: "never sticky", description: "" }, keyboardNavMoveDownDesc: { message: "Descer para a pr\xF3xima liga\xE7\xE3o ou coment\xE1rio em listas planas.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Mostrar o bot\xE3o [-] de colapsar na caixa de entrada.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Adicionar este sub-reddit \xE0 tua barra de atalhos", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Recarregar outros separadores", description: "" }, betteRedditVideoTimesTitle: { message: "Dura\xE7\xE3o dos V\xEDdeos", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Aspecto", description: "" }, userTaggerShowIgnoredDesc: { message: "Provide a link to reveal an ignored link or comment.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "It\xE1lico", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Usar filtros do Reddit", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatically select the last thing you had selected", description: "" }, aboutOptionsPresetsTitle: { message: "Predefini\xE7\xF5es", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Profundidade predefinida para usar em todos os sub-reddits que n\xE3o estejam listados abaixo.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Esconder", description: "" }, aboutOptionsContributorsTitle: { message: "Colaboradores", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Activar/Desactivar Ajuda", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "Ao seguir uma liga\xE7\xE3o num novo separador - activar esse separador?", description: "" }, aboutOptionsFAQ: { message: "Aprende mais sobre o RES na wiki do /r/Enhancement.", description: "" }, betteRedditPinHeaderDesc: { message: "Prender a barra de sub-reddit, menu de utilizador, ou cabe\xE7alho ao topo \xE0 medida que desces na p\xE1gina.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Mostrar datas absolutas na barra lateral.", description: "" }, keyboardNavUpVoteDesc: { message: "Dar voto positivo \xE0 liga\xE7\xE3o ou coment\xE1rios seleccionados (ou remover o voto positivo).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Ir para o sub-reddit da liga\xE7\xE3o seleccionada (apenas nas p\xE1ginas de liga\xE7\xE3o).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Manter-me com sess\xE3o iniciada ap\xF3s reiniciar o navegador.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Alternar expando (imagem/text/v\xEDdeo).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "Ver a p\xE1gina de coment\xE1rios de uma liga\xE7\xE3o num novo separador.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "C\xF3pia de Seguran\xE7a", description: "" }, profileNavigatorHoverDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes de a tooltip ser mostrada.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "O RES permite-te desactivar os estilos de sub-reddits espec\xEDficos!", description: "" }, customTogglesDesc: { message: "Define interruptores personalizados para v\xE1rias funcionalidades do RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Bot\xF5es da ferramenta de formata\xE7\xE3o", description: "" }, commentPreviewEnableForWikiDesc: { message: "Mostrar pr\xE9-visualiza\xE7\xE3o para as p\xE1ginas da wiki.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Subir Imagem", description: "" }, settingsNavDesc: { message: "Ajuda-te a navegar pela Consola de Defini\xE7\xF5es do RES com maior facilidade.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox", description: "" }, usernameHiderName: { message: "Esconder Nome de Utilizador", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "enabled", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Ferramentas de Tabela", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "Utilizador n\xE3o encontrado.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Encurtar liga\xE7\xF5es longas", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Abrir a linha de comandos do RES.", description: "" }, nerHideDupesDontHide: { message: "N\xE3o esconder", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "os teus votos para $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Adicionar bot\xE3o de macro para o formul\xE1rio de edi\xE7\xE3o das publica\xE7\xF5es, coment\xE1rios e outros campos de texto em snudown/markdown.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Mover para a direita as imagens na \xE1rea destacada a publica\xE7\xE3o.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alien)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Abrir o editor grande", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Qualquer tamanho de imagem", description: "" }, pageNavShowLinkNewTabTitle: { message: "Show Link New Tab", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Estilo de Deslocamento N\xE3o-Linear", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Open the current markdown field in the big editor. (Only when a markdown form is focused).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Define a profundidade em liga\xE7\xF5es para coment\xE1rios particulares com contexto.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Ir para a p\xE1gina principal do sub-reddit.", description: "" }, menuName: { message: "Menu do RES", description: "" }, messageMenuDesc: { message: "Passa o cursor por cima do \xEDcone de mensagem para aceder a diferentes g\xE9neros de mensagens ou para compor uma mensagem nova.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Play a transition when you open and close tabs.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "Ap\xF3s esconder uma liga\xE7\xE3o seleccionar automaticamente a pr\xF3xima liga\xE7\xE3o.", description: "" }, commentStyleDesc: { message: "Adiciona melhorias de legibilidade aos coment\xE1rios.", description: "" }, keyboardNavRandomDesc: { message: "Ir para um sub-reddit aleat\xF3rio.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "A comentar como", description: "" }, keyboardNavImageSizeUpDesc: { message: "Aumentar o tamanho das imagens na \xE1rea destacada da publica\xE7\xE3o.", description: "" }, floaterDesc: { message: "Gerir os elementos flutuantes do RES.", description: "" }, subredditManDesc: { message: "Permite-te personalizar a barra superior com os teus pr\xF3prios atalhos para subreddit, incluindo menus de multi-reddits e afins.", description: "" }, keyboardNavSavePostDesc: { message: "Guardar a publica\xE7\xE3o actual na tua conta do Reddit. Isto fica acess\xEDvel a partir de qualquer s\xEDtio em que tenhas sess\xE3o iniciada, mas n\xE3o preserva o texto original caso este seja editado ou apagado.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Activar o editor grande", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification", description: "" }, announcementsDesc: { message: "Mant\xE9m-te a par das novidades importantes.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Adicionar Linha", description: "" }, keyboardNavReplyDesc: { message: "Responder ao coment\xE1rio actual (apenas nas p\xE1ginas de coment\xE1rios).", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "Notifica\xE7\xF5es do RES", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "Ver coment\xE1rios para liga\xE7\xF5es (a tecla shift abre num novo separador).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Mostrar uma pr\xE9-visualiza\xE7\xE3o instant\xE2nea directamente na barra lateral ao edit\xE1-la.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Perfil num novo separador", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Seguir liga\xE7\xE3o e coment\xE1rios num novo separador", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Navega\xE7\xE3o Multi-reddit", description: "" }, keyboardNavToggleExpandoTitle: { message: "Activar/Desactivar Expandos", description: "" }, showKarmaName: { message: "Mostrar Carma", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Auto-completar sub-reddits", description: "" }, settingsNavName: { message: "Navega\xE7\xE3o das Defini\xE7\xF5es do RES", description: "" }, contributeName: { message: "Doar e Contribuir", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Disable Comment Textarea", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Define a profundidade das liga\xE7\xF5es para coment\xE1rios particulares.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Mostrar um menu com atalhos para v\xE1rias sec\xE7\xF5es da p\xE1gina de perfil do utilizador ao passar com o cursor por cima do nome de utilizador no canto superior direito.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "Ferramentas de Edi\xE7\xE3o", description: "" }, accountSwitcherAccountsDesc: { message: "Define os teus nomes de utilizador e palavras-passe abaixo. Estes ficam guardados nas defini\xE7\xF5es do RES.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "Ao filtrar sub-reddits com a op\xE7\xE3o acima, onde dever\xE3o eles ser filtrados?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Pr\xE9-visualiza\xE7\xE3o instant\xE2nea", description: "" }, hoverOpenDelayDesc: { message: "Intervalo predefinido entre o cursor em cima e o aparecimento do popup.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color of the bar when collapsed.", description: "" }, announcementsName: { message: "Comunicados do RES", description: "" }, betteRedditVideoViewedDesc: { message: "Mostrar o n\xFAmero de vistas de um v\xEDdeo quando poss\xEDvel.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Mover para o coment\xE1rio no topo", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "reload", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Actualizar as outras abas", description: "" }, notificationsNotificationID: { message: "notification ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Mostrar o C\xF3digo Fonte", description: "" }, keyboardNavInboxDesc: { message: "Ir para a caixa de entrada.", description: "" }, gfycatUseMobileGfycatDesc: { message: "Usar gifs mobile (menor resolu\xE7\xE3o) do gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Activar/Desactivar Ver Imagens", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Copia e restaura as tuas defini\xE7\xF5es do RES.", description: "" }, showParentDesc: { message: 'Mostra os coment\xE1rios-pai ao passar o cursor por cima da liga\xE7\xE3o "pai" de um coment\xE1rio.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Diminuir o tamanho das imagens na \xE1rea destacada da publica\xE7\xE3o.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Mostrar comprimento da entrada", description: "" }, keyboardNavSaveRESDesc: { message: "Guarda o coment\xE1rio actual no RES. Isto preserva o texto original do coment\xE1rio, mas fica apenas guardado localmente.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Inspirado por m\xF3dulos como 'River of Reddit' e 'Auto Pager' - d\xE1-te uma torrente de coisas boas que nunca mais acaba .", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "N\xE3o filtrar nada nas p\xE1ginas de utilizador.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Restaurar", description: "" }, logoLinkCustom: { message: "Personalizado", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Activar ou desactivar tudo o que esteja ligado a este interruptor e opcionalmente adicionar um interruptor ao menu da roda do RES.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Mostrar linha de continuidade dos coment\xE1rios.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Parar de filtrar este sub-reddit do /r/all e do /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Publica\xE7\xF5es predefinidas", description: "" }, contextViewFullContextTitle: { message: "Ver o contexto completo", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacidade", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Adiciona uma ferramenta para mostrar o texto original das publica\xE7\xF5es de texto e coment\xE1rios sem a formata\xE7\xE3o do Reddit.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Descer para o coment\xE1rio seguinte em p\xE1ginas de coment\xE1rio em \xE1rvore.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Disponibiliza ferramentas para ajudar-te no envio de uma publica\xE7\xE3o.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Autom\xE1tico", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separator", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Intervalo predefinido antes de o popup desaparecer ap\xF3s tirar o cursor.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Local quando clicas no log\xF3tipo do Reddit.", description: "" }, settingsConsoleName: { message: "Consola de Defini\xE7\xF5es", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Mostrar op\xE7\xF5es de procura", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Profundidades espec\xEDficas de sub-reddit.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Ir para o correio de moderador.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "M\xE9todo de ordena\xE7\xE3o predefinido nos novos widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "Ao trocar de conta actualizar automaticamente os outros separadores.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "activado", description: "" }, nightModeColoredLinksTitle: { message: "Colored Links", description: "" }, modhelperDesc: { message: "Ajuda moderadores atrav\xE9s de dicas e truques para interagir amigavelmente com o RES.", description: "" }, quickMessageName: { message: "Mensagem R\xE1pida", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Enable this feature again", description: "" }, userHighlightDesc: { message: "Destaca determinados utilizadores nas p\xE1ginas de coment\xE1rios: OP, Admin, Amigos, Mod - contribui\xE7\xE3o de MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Deslocar a janela para o topo da liga\xE7\xE3o quando a tecla de expando \xE9 usada (para manter as imagens, etc, em vista).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes de a tooltip desaparecer.", description: "" }, userInfoAddRemoveFriends: { message: "$1 amigos", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "N\xFAmero de horas em que o modo nocturno autom\xE1tico fica desactivado.\nPode ser utilizado um n\xFAmero decimal; por exemplo, 0.1 horas (equivale a 6 minutos).", description: "" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups", description: "" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Menu de Mensagens", description: "" }, aboutOptionsSuggestions: { message: "Se tiveres uma ideia para o RES ou quiseres conversar com outros utilizadores, visita /r/Enhancement.", description: "" }, userbarHiderName: { message: "Esconder a Barra de Utilizador", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "Ao saltar para uma entrada (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), quando e como dever\xE1 o RES deslocar a janela?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "Todas as caches foram limpas.", description: "" }, localDateName: { message: "Data Local", description: "" }, commentStyleCommentRoundedDesc: { message: "Arredondar os cantos das caixas de coment\xE1rios.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Usar o Modo Ir", description: "" }, messageMenuLabel: { message: "etiqueta", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Mostrar o nome de utilizador actual", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filtro", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Show Unread Count In Title", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Pr\xE9-visualiza\xE7\xE3o da barra lateral", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Seguir Sub-reddit num novo separador", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Mostrar a ferramenta para auto-completar nomes de utilizador ao escrever em publica\xE7\xF5es, coment\xE1rios e respostas.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Adicionar um interruptor r\xE1pido de NSFW no menu da roda.", description: "" }, subredditInfoSubscribe: { message: "subscrever", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Dar voto negativo \xE0 liga\xE7\xE3o ou coment\xE1rios seleccionados (ou remover o voto negativo).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+enter para enviar coment\xE1rio", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+enter para enviar publica\xE7\xE3o", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Sub-reddit criado:", description: "" }, multiredditNavbarLabel: { message: "label", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Atraso de Flutuantes", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Mostrar pr\xE9-visualiza\xE7\xE3o nas notas dos bans.", description: "" }, usersCategory: { message: "Utilizadores", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Color links blue and purple.", description: "" }, subredditInfoSubredditNotFound: { message: "Sub-reddit n\xE3o encontrado.", description: "" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here.", description: "" }, resTipsName: { message: "Truques e Dicas do RES", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Activar/Desactivar Linha de Comandos", description: "" }, contextName: { message: "Contexto", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: 'Isto ir\xE1 eliminar todas as tuas defini\xE7\xF5es e dados guardados. Se tiveres a certeza introduz "$1".', description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "Utilizador suspenso.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "Liga\xE7\xF5es", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Mover para o topo da lista (em p\xE1ginas de liga\xE7\xE3o).", description: "" }, contextDefaultContextTitle: { message: "Contexto predefinido", description: "" }, userTaggerTagUserAs: { message: "marcar utilizador $1 como: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Descer Para o Irm\xE3o", description: "" }, customTogglesName: { message: "Interruptores Personalizados", description: "" }, pageNavShowLinkTitle: { message: "Mostrar Link", description: "" }, keyboardNavProfileNewTabDesc: { message: "Ir para o perfil num novo separador.", description: "" }, aboutCategory: { message: "Sobre o RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "Dar Ouro do Reddit", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restore a backup of your RES settings.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Mostrar pr\xE9-visualiza\xE7\xE3o para os coment\xE1rios.", description: "" }, spamButtonName: { message: "Bot\xE3o de Lixo", description: "" }, hoverInstancesTitle: { message: "Inst\xE2ncias", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colors couldn't be generated. This is probably due to the use of colors in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Usar teclas de atalho para aplicar estilos ao texto seleccionado.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Automatically hide search options and suggestions on the search page.", description: "" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions.", description: "" }, logoLinkDashboard: { message: "Painel de Controlo", description: "" }, dashboardDashboardShortcutDesc: { message: "Mostrar um atalho +painel de controlo na barra lateral para ser mais f\xE1cil adicionar widgets do painel de controlo.", description: "" }, userInfoName: { message: "Informa\xE7\xF5es do Utilizador", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Width of the bar.", description: "" }, filteRedditDomainsTitle: { message: "Dom\xEDnios", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Hide Mod Mail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Abrir em destacar utilizador", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "L\xEA a pol\xEDtica de privacidade do RES.", description: "" }, commentStyleContinuityTitle: { message: "Continuidade", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Mostrar detalhes de cada conta em Mudar de Conta, tal como carma e estatuto de utilizador de ouro.", description: "" }, browsingCategory: { message: "Navega\xE7\xE3o", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Tens a certeza que queres remover a etiqueta do utilizador: $1?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Desce T\xF3pico", description: "" }, keyboardNavInboxTitle: { message: "Caixa de Entrada", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "Tirar destaque", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Mostrar por defeito", description: "" } }; // locales/locales/pt_BR.json var pt_BR_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Mostrar o Navegador de Coment\xE1rios quando um utilizador \xE9 destacado.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Mostra a data precisa para coment\xE1rios / mensagens.", description: "" }, commentPrevDesc: { message: "Fornece a visualiza\xE7\xE3o ao vivo do que est\xE1 sendo editado, como coment\xE1rios, postagens de texto, mensagens, p\xE1ginas wiki, e outras edi\xE7\xF5es de texto; assim como um editor de duas colunas para a digita\xE7\xE3o de textos extensos", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Swap the preview and editor (so preview is on left and editor is on right).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Mover Coment\xE1rio para Baixo.", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Mostrar a liga\xE7\xE3o para o meu painel de controlo no menu do RES.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "Usu\xE1rio possui Reddit Gold", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Move Up Sibling", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Comment Indent", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Turn off all the RES modules", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Mostrar datas absolutas no registo da modera\xE7\xE3o (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Aleat\xF3rio", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Follow Comments New Tab", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "Desinscrever", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "Mensagens N\xE3o Lidas", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Show a random tip once every 24 hours.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Palavras Chave", description: "" }, filteRedditAllowNSFWTitle: { message: "Permitir NSFW", description: "" }, hoverOpenDelayTitle: { message: "Intervalo de Abertura", description: "" }, keyboardNavNextPageTitle: { message: "Pr\xF3xima P\xE1gina", description: "" }, commentToolsSuperKeyTitle: { message: "Super", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Custom Destination", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Comment Permalinks Context", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Restaurar aba salva", description: "" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Fade or completely hide duplicate posts already showing on the page.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "Marcador de Utilizador", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Comment Navigator Move Down", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Add a button to hide search options while searching.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Move up using Comment Navigator.", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Usar o \xEDcone "snoo" ou o estilo de menu antigo?', description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Keep Macro List Open", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Toggle Comment Navigator", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Atalhos do Teclado", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Follow link in new tab (link pages only).", description: "" }, onboardingDesc: { message: "Aprende mais sobre o RES em /r/Enhancement .", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "Filtro NSFW", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Intervalo de Desvanecimento", description: "" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsLinkKeyTitle: { message: "Link", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+adicionar atalho", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "Subreddit Front Page", description: "" }, keyboardNavFollowSubredditTitle: { message: "Seguir Subreddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Mostrar Gold", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "Carregador da p\xE1gina de estilos.", description: "" }, subredditInfoOver18: { message: "Maior de 18:", description: "" }, userInfoIgnore: { message: "Ignorar", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "Menu Item", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "Voc\xEA tem certeza ?", description: "" }, messageMenuAddShortcut: { message: "+adicionar atalho", description: "" }, troubleshooterName: { message: "Assist\xEAncia de Problemas", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Use Quick Message pop-up when composing a new message.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Nova aba da caixa de entrada", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Open the current comment's permalink in a new tab (comment pages only).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "Ap\xF3s votar em um link, automaticamente selecionar o pr\xF3ximo link.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "Ba\xFA de Boas Vindas RES", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Stop filtering from /r/all and /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Move to the topmost comment of the next thread (in comments).", description: "" }, hoverName: { message: "Caixa pop-up RES", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Habilitar para coment\xE1rios", description: "" }, spamButtonDesc: { message: "Adiciona um bot\xE3o Spam para reportar postagens facilmente", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "r\xF3tulo", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Te ajudando a conseguir sua dose di\xE1ria de respostas no seu inbox.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Night Mode On", description: "" }, myAccountCategory: { message: "Conta", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Default Minimum Comments", description: "" }, yes: { message: "Sim", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "In milliseconds, length of time available to stop a notification from disappearing.", description: "" }, commandLineMenuItemTitle: { message: "Menu Item", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Color", description: "" }, searchHelperSearchByFlairTitle: { message: "Search By Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Indica quantos coment\xE1rios foram escritos desde a \xFAltima vez que o t\xF3pico foi visualizado.", description: "" }, userTaggerPageXOfY: { message: "$1 de $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "Minhas Tags de Usu\xE1rio", description: "" }, pageNavShowLinkNewTabDesc: { message: "Open link in new tab.", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Pesquisar nas Defini\xE7\xF5es do RES", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "Do No Ctrl+F", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "subreddit", description: "" }, betteRedditVideoViewedTitle: { message: "Visualiza\xE7\xF5es do V\xEDdeo", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Deixar a \xE1rea "Comentando como" em negrito caso esteja usando uma conta alternativa. A primeira conta no m\xF3dulo Alternador de Conta \xE9 considerada como a conta principal.', description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "Ao enviar, mostrar o n\xFAmero de caracteres inseridos nos campos de t\xEDtulo e de texto e indicar quando superar o limite de 300 caracteres no t\xEDtulo.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Aumentar tamanho de imagem(s) na \xE1rea do post destacada(Controle fino)", description: "" }, nerName: { message: "Reddit Sem Fim", description: "" }, subredditInfoTitle: { message: "T\xEDtulo:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatic (requires geolocation)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "View link and comments in new background tabs.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Comment Hover Border", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Fade", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Diminuir tamanho de imagem(s) na \xE1rea do post destacada(Controle fino)", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Go to next page (link list pages only).", description: "" }, notificationsPerNotificationType: { message: "per notification type", description: "" }, subredditTaggerDesc: { message: "Add custom text to the beginning of submission titles on your front page, multireddits, and /r/all. Useful for adding context to submissions.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Facilita a navega\xE7\xE3o para v\xE1rias partes da p\xE1gina de utilizador.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Adiciona funcionalidades extra \xE0s tabelas Markdown do Reddit (apenas ordena\xE7\xE3o, de momento)", description: "" }, notificationsAlwaysSticky: { message: "always sticky", description: "" }, searchName: { message: "Procurar configura\xE7\xF5es RES", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Reset Favicon On Leave", description: "" }, quickMessageSendAsTitle: { message: "Send As", description: "" }, pageNavName: { message: "Navegador de P\xE1gina", description: "" }, keyboardNavFollowLinkDesc: { message: "Seguir link(Somente paginas de link)", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Delay Features", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "Salva o estado dos coment\xE1rios ocultos atrav\xE9s das p\xE1ginas visualizadas.", description: "" }, quickMessageDesc: { message: "Uma caixa pop-up que permite enviar mensagens de qualquer s\xEDtio no Reddit. As mensagens podem ser enviadas atrav\xE9s da janela de mensagens r\xE1pidas, premindo Ctrl+Enter ou Cmd+Enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "toggle subreddit style on/off (if no subreddit is specified, uses current subreddit).", description: "" }, accountSwitcherUsername: { message: "nome de utilizador", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Links to display in the dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Night Mode Start", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "Barra de usu\xE1rio escondida", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+add subreddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Swap Big Editor Layout", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Auto Load", description: "" }, nerReturnToPrevPageDesc: { message: 'Return to the page you were last on when hitting "back" button?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Section Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Move to parent's next sibling (in comments).", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Score Hidden Time Left", description: "" }, hoverWidthDesc: { message: "Largura do popup predefinida.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Ativar/desativar modo noturno.", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Never Ending Comments", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Exclude Own Posts", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "Go to modmail in a new tab.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "Modmail New Tab", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Show the Subscribe button?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Entrar com linha de comando de filtros", description: "" }, betteRedditDoNoCtrlFDesc: { message: 'Ao usar ctrl+f/cmd+f (procurar texto), apenas procurar nos coment\xE1rios/texto da publica\xE7\xE3o e n\xE3o nas liga\xE7\xF5es de navega\xE7\xE3o ("liga\xE7\xE3o permanente fonte guardar\u2026"). Desativado por defeito por causar um ligeiro impacto no desempenho.', description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special color for each username.", description: "" }, backupName: { message: "Backup & Restaura\xE7\xE3o", description: "" }, profileNavigatorSectionLinksDesc: { message: "Links a mostrar no menu de perfil flutuante.", description: "" }, notificationCloseDelayDesc: { message: "In milliseconds, length of time until a notification begins to disappear.", description: "" }, styleTweaksUseSubredditStyle: { message: "Usar estilo do subreddit", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Add this subreddit to your dashboard", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Atualizar Outras Abas", description: "" }, nightModeUseSubredditStylesTitle: { message: "Use Subreddit Styles", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "Depois de votar em um coment\xE1rio, automaticamente selecionar o pr\xF3ximo coment\xE1rio.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Usar Gfycat Mobile", description: "" }, commentToolsItalicKeyDesc: { message: "Atalho do teclado para escrever em it\xE1lico.", description: "" }, messageMenuLinksDesc: { message: "Links to show in the mail icon drop down menu.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "O Reddit esconde algumas op\xE7\xF5es de ordena\xE7\xE3o de coment\xE1rios (aleat\xF3rio, etc) na maioria das p\xE1ginas. Esta op\xE7\xE3o f\xE1-las aparecerem.", description: "" }, commandLineLaunchTitle: { message: "Launch", description: "" }, betteRedditDesc: { message: 'Adiciona in\xFAmeras melhorias a interface do Reddit, como os links "coment\xE1rios completos"; a habilidade de mostrar novamente postagens escondidas acidentalmente; e muito mais.', description: "" }, resTipsDesc: { message: "Adicionar truques e dicas ao console RES.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Move to previous sibling (in comments) - skips to previous sibling at the same depth.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Destacar a hierarquia da caixa de coment\xE1rios ao passar o cursor por cima (desativar para maior desempenho).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Atalho do teclado para escrever em negrito.", description: "" }, hoverWidthTitle: { message: "Largura", description: "" }, dashboardName: { message: "Painel de Controle RES", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Show Last Edited Timestamp", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Manter logado", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Cria links para os subreddits do x-post no detalhe do t\xF3pico.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Clique aqui para saber mais", description: "" }, keyboardNavInboxNewTabDesc: { message: "Ir para a caixa de entrada em uma nova aba", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Mostra o preview para edi\xE7\xF5es nas configura\xE7\xF5es do subreddit.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "todos usu\xE1rios", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "Add an icon to every page that takes you to the top when clicked.", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expand/collapse comments (comments pages only).", description: "" }, commentPreviewDraftStyleTitle: { message: "Draft Style", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Mostra a data precisa na wiki.", description: "" }, logoLinkInbox: { message: "Inbox", description: "" }, searchHelperDesc: { message: "Fornece ajuda com o uso da procura.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Follow Link New Tab Focus", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Show Timestamp Posts", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "Predefini\xE7\xF5es", description: "" }, styleTweaksName: { message: "Ajustes de Estilos", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Comunicados do RES", description: "" }, hoverInstancesDesc: { message: "Gerir pop-ups particulares", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Move up to the previous comment on threaded comment pages.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Show Timestamp Sidebar", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Fade Speed", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Atrasa, em mil\xE9simos de segundo, o desaparecimento gradual do link que foi ocultado.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Mostrar Karma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Automatic Night Mode", description: "" }, noPartDisableCommentTextareaDesc: { message: "Disable commenting.", description: "" }, nerReturnToPrevPageTitle: { message: "Return To Previous Page", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'Adicionar uma liga\xE7\xE3o "Ver todo o contexto" quando estiver numa liga\xE7\xE3o de coment\xE1rio.', description: "" }, messageMenuFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsDesc: { message: "Fornece ferramentas e atalhos para escrever coment\xE1rios, t\xF3picos, p\xE1ginas wiki, e outras \xE1reas de texto markdown.", description: "" }, noPartName: { message: "Modo N\xE3o Participativo", description: "" }, presetsDesc: { message: "Selecciona entre v\xE1rias predefini\xE7\xF5es. Cada predefini\xE7\xE3o liga ou desliga v\xE1rios m\xF3dulos/op\xE7\xF5es, mas n\xE3o apaga a tua configura\xE7\xE3o total.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Mostrar as ferramentas de coment\xE1rio na caixa de texto das notas do ban.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Go to subreddit of selected link in a new tab (link pages only).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Estilo do subreddit", description: "" }, keyboardNavDownVoteTitle: { message: "Down Vote", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Mover para Baixo", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspend Features", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Notification Types", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "Ao Votar em Coment\xE1rio Mover para Baixo", description: "" }, hoverCloseOnMouseOutDesc: { message: "Fechar o popup ao tirar o cursor alternativamente ao bot\xE3o de fechar.", description: "" }, subredditTaggerName: { message: "Marcador de Subreddit", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Highlight If Alt Account", description: "" }, userInfoDesc: { message: "Adiciona dicas flutuantes a utilizadores.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Close Delay", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "Permite-te alterar o link no log\xF3tipo do reddit.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "N\xFAmero de publica\xE7\xF5es a mostrar por defeito em cada widget.", description: "" }, pageNavDesc: { message: "Fornece ferramentas para navegares na p\xE1gina.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Mostra o status de ouro para cada conta no Alternador de Conta", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 est\xE1 em $2 multi-reddits", description: "" }, commentToolsStrikeKeyTitle: { message: "Tachado", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colorblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Mostrar o navegador de coment\xE1rios por defeito.", description: "" }, keyboardNavSaveRESTitle: { message: "Salvar RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "Ao Esconder Mover para Baixo", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Comment Boxes", description: "" }, profileNavigatorName: { message: "Navegador de perfil", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "N\xE3o", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Estilo de Deslocamento Linear", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "Mostrar coment\xE1rios pai", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Personalizar o RES rapidamente com diversas configura\xE7\xF5es predefinidas.", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "Persist\xEAncia do Esconder Coment\xE1rios", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Entrada selecionada", description: "" }, betteRedditPinHeaderTitle: { message: "Pin Header", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Macro Placeholders", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Enable For Ban Messages", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Open Mail In New Tab", description: "" }, versionDesc: { message: "Gere o controlo de vers\xF5es atual/anterior.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "Your username, karma, preferences, RES gear, and so on are hidden. You can show them again by clicking the $1 button in the top right corner.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling", description: "" }, keyboardNavFollowLinkTitle: { message: "Seguir link", description: "" }, keyboardNavMoveBottomDesc: { message: "Mover para o fundo da lista (em paginas de link)", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Upvote selected link or comment (but don't remove the upvote).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Fade Delay", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Comment Permalinks", description: "" }, aboutOptionsLicenseTitle: { message: "Licen\xE7a", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Mostra o preview para postagens.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Mover Imagem para a Direita", description: "" }, keyboardNavPrevPageDesc: { message: "Go to previous page (link list pages only).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Abrir liga\xE7\xF5es em coment\xE1rios num novo separador.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoCommentKarma: { message: "Karma de Coment\xE1rio:", description: "" }, settingsConsoleDesc: { message: "Administra suas configura\xE7\xF5es e prefer\xEAncias no RES", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Mod Color", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "Links", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Comments Links New Tabs", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Error loading subreddit info.", description: "" }, accountSwitcherName: { message: "Alternador de Conta", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Move to next sibling (in comments) - skips to next sibling at the same depth.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Legacy Search", description: "" }, nightModeNightSwitchTitle: { message: "Night Switch", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Habilitar para posts", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Mostrar ajuda para atalhos de teclado.", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "Dashboard Shortcut", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Esconder", description: "" }, userInfoLink: { message: "Link:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "$1 atr\xE1s", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Mostra a dura\xE7\xE3o dos videos quando dispon\xEDvel.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignorado.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Responder", description: "" }, accountSwitcherSimpleArrow: { message: "seta simples", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "tags author of currently selected link/comment.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "All options are displayed by default. Uncheck this box if you would like to hide advanced options.", description: "" }, betteRedditFixHideLinksTitle: { message: "Fix Hide Links", description: "" }, commentNavName: { message: "Navegador de Coment\xE1rios", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Open Comment Navigator.", description: "" }, presetsLiteDesc: { message: "RES Lite: just the popular stuff", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Ao pressionar ctrl+enter ou cmd+enter o coment\xE1rio/edi\xE7\xE3o da wiki ser\xE1 enviado.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nothing", description: "" }, filteRedditShowFilterlineTitle: { message: "Show Filterline", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Section Links", description: "" }, hideChildCommentsDesc: { message: "Permite ocultar coment\xE1rios filhos.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover", description: "" }, submitHelperName: { message: "Aux\xEDlio de Envios", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Default Sort", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "Comment Rounded", description: "" }, keyboardNavImageSizeUpTitle: { message: "Aumentar Tamanho da Imagem ", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "definir estilo do subreddit $1 para: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Coment\xE1rios", description: "" }, commentToolsStrikeKeyDesc: { message: "Tecla de atalho para rasurar o texto.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options", description: "" }, logoLinkMyUserPage: { message: "Minha p\xE1gina de usu\xE1rio", description: "" }, keyboardNavUseGoModeDesc: { message: 'Require initiating goMode before using "go to" shortcuts.', description: "" }, easterEggName: { message: "Easter Egg", description: "" }, commentToolsSuperKeyDesc: { message: "Tecla de atalho para colocar o texto em \xEDndice.", description: "" }, keyboardNavUpVoteTitle: { message: "Up Vote", description: "" }, notificationNotificationTypesDesc: { message: "Manage different types of notifications.", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Karma de Post:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "ativar estilo do subreddit $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Read more", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Reddit Logo Destination", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Enable For Subreddit Config", description: "" }, accountSwitcherShowKarmaDesc: { message: "Mostra o status de ouro para cada conta no Alternador de Conta", description: "" }, keyboardNavDesc: { message: "Navega\xE7\xE3o pelo teclado para o reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Move to parent (in comments).", description: "" }, keyboardNavGoModeDesc: { message: 'Enter "goMode" (necessary before using any of the below "go to" shortcuts).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "Linha de Comando RES", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Mover imagem para a Esquerda", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "O Painel de Controlo RES \xE9 o lar de uma s\xE9rie de funcionalidades como widgets e outras ferramentas \xFAteis.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "N\xE3o esconder a lista ap\xF3s selecionar uma macro da lista.", description: "" }, filteRedditSubredditsTitle: { message: "Subreddit", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Mover a imagem(s) para baixo na \xE1rea de post destacada .", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Follow Permalink New Tab", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Remover a restri\xE7\xE3o de altura de imagem(s) em \xE1rea de post destacada", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "tag user $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Reportar um problema", description: "" }, aboutOptionsFAQTitle: { message: "Perguntas Frequentes", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Mostrar Detalhes de Usu\xE1rio", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "A darker, more eye-friendly version of Reddit suited for night browsing.\n\nNote: Using this on/off switch will disable all features of the night mode module completely.\nTo simply turn off night mode, use the nightModeOn switch below.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Estilo do Subreddit desativado para o subreddit :$1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Color for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Update Current Tab", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Comment Navigator Move Up", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Ir para o perfil.", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "View link and comments in new tabs.", description: "" }, onboardingUpdateNotificationName: { message: "Update Notification", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, nightModeNightModeStartDesc: { message: "Time that automatic night mode starts.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Automatically load new page on scroll (if off, you click to load).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "sticky", description: "" }, userHighlightAdminColorTitle: { message: "Admin Color", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Diminuir Tamanho da Imagem", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'O separador guardados est\xE1 agora localizado na barra de multi-reddit. Isto ir\xE1 devolver uma liga\xE7\xE3o "guardado" ao cabe\xE7alho (ao lado dos separadores "populares", "novos", etc).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Cor padr\xE3o da barra.", description: "" }, toggleOff: { message: "desligado", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Mostrar a ferramenta para auto-completar ao escrever em publica\xE7\xF5es, coment\xE1rios e respostas.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Controle fino de diminui\xE7\xE3o de tamanho de imagem", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Show Timestamp Wiki", description: "" }, commentToolsMacrosDesc: { message: "Adicionar bot\xF5es para inserir fragmentos de texto usados frequentemente.", description: "" }, keyboardNavProfileTitle: { message: "Perfil", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Filter Subreddits From", description: "" }, userTaggerShowAnyway: { message: "mostrar mesmo assim?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Clear Cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+adicionar conta", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Destacar", description: "" }, filteRedditExcludeModqueueDesc: { message: "N\xE3o filtrar nada em p\xE1ginas da fila de moderador (fila de moderador, den\xFAncias, lixo, etc).", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifications.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Inscritos:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Move to the topmost comment of the previous thread (in comments).", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Mostrar as ferramentas de formata\xE7\xE3o (negrito, it\xE1lico, tabelas, etc) ao formul\xE1rio de edi\xE7\xE3o para publica\xE7\xF5es, coment\xE1rios e outras \xE1reas de snudown/markdown.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Move Bottom", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Color Hover", description: "" }, spoilerTagsName: { message: "Tags de Spolier Global", description: "" }, betteRedditVideoUploadedDesc: { message: "Mostra a data do upload dos v\xEDdeos quando dispon\xEDvel.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Salvar Coment\xE1rios", description: "" }, hoverFadeSpeedDesc: { message: "Intervalo de desvanecimento (em segundos)", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Mostrar datas absolutas (Sun Nov 16 20:14:56 2014 UTC) em vez de datas relativas (7 dias atr\xE1s) nas publica\xE7\xF5es.", description: "" }, submissionsCategory: { message: "Envios", description: "" }, keyboardNavSaveCommentDesc: { message: "Save the current comment to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, keyboardNavSavePostTitle: { message: "Salvar Post", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Font Color", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "Adiciona uma tooltip aos subreddits.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Enable night switch, a toggle between day and night reddit located in the Settings dropdown menu.", description: "" }, commentDepthDesc: { message: "Define a prefer\xEAncia de n\xEDvel dos coment\xE1rios que se deseja ver quando se clica no link do coment\xE1rio. 0 = Tudo, 1 = Apenas a raiz, 2 = Respostas \xE0 raiz, 3 = Respostas a respostas \xE0 raiz, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Atalho do teclado para escrever cita\xE7\xF5es.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Time that automatic night mode ends.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sort", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filtrar todos os links marcados como NSFW.", description: "" }, logoLinkName: { message: "Link do Logotipo", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "Caso algo n\xE3o funcione corretamente, visite /r/RESIssues para obter ajuda.", description: "" }, nightModeAutomaticNightModeNone: { message: "Disabled", description: "" }, keyboardNavMoveUpDesc: { message: "Mover acima para o link ou coment\xE1rio anterior em listas retas.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "Nenhuma a\xE7\xE3o foi tomada.", description: "" }, commentPreviewEnableForWikiTitle: { message: "Habilitar para a wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Exclude User Pages", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "nome", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "Visualizador de Imagens Embebidas", description: "" }, commentStyleCommentIndentDesc: { message: "Indentar coment\xE1rios por [x] p\xEDxeis (meter apenas o n\xFAmero, sem o 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Disable RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Down Vote Without Toggling", description: "" }, userInfoRedditorSince: { message: "Redditor desde: ", description: "" }, userTaggerShow: { message: "Mostrar", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "Velocidade de Desvanecimento", description: "" }, necLoadChildCommentsTitle: { message: "Load Child Comments", description: "" }, showParentName: { message: "Mostra o coment\xE1rio pai ao passar o mouse em cima.", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Mostra o status de ouro para cada conta no Alternador de Conta", description: "" }, keyboardNavMoveToParentTitle: { message: "Move To Parent", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Show Timestamps Comments", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Contas", description: "" }, spoilerTagsDesc: { message: "Esconde spoilers presentes no perfil de usu\xE1rios", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Downvote selected link or comment (but don't remove the downvote).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Show Gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "comment depth", description: "" }, keyboardNavImageMoveDownTitle: { message: "Mover Imagem para Baixo", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Imagem Anterior da Galeria", description: "" }, userTaggerTaggedUsers: { message: "usu\xE1rios com tag", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Move Up Thread", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "Adiciona mais informa\xE7\xE3o e ajustes ao Karma ao lado do nome de utilizador, na barra de menu de utilizador.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Default Comment Depth", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Features", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Move Down Parent Sibling", description: "" }, dashboardTagsPerPageTitle: { message: "Tags Per Page", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Show Timestamp Moderation Log", description: "" }, userTaggerStoreSourceLinkDesc: { message: "By default, store a link to the link/comment you tagged a user on", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Melhora a barra de navega\xE7\xE3o mostrada \xE0 esquerda da pagina inicial.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Cita\xE7\xE3o", description: "" }, keyboardNavHideDesc: { message: "Esconder link.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Negrito", description: "" }, xPostLinksName: { message: "Links x-post", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Always show a tag tool icon after every username.", description: "" }, commentPreviewDraftStyleDesc: { message: "Aplicar um fundo tipo 'rascunho' \xE0 pr\xE9-visualiza\xE7\xE3o de forma a diferenciar do campo de texto do coment\xE1rio.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Follow Comments", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Email de Moderador", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Cor", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Clean Comments", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "Coment\xE1rios", description: "" }, filteRedditForceSyncFiltersTitle: { message: "Force Sync Filters", description: "" }, nerShowServerInfoTitle: { message: "Show Server Info", description: "" }, troubleshooterSettingsReset: { message: "Todas configura\xE7\xF5es foram resetadas. Recarregue para ver o resultado.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Mover a imagem(s) para a esquerda na \xE1rea de post destacada .", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Open the current comment's permalink (comment pages only).", description: "" }, subredditInfoAddRemoveShortcut: { message: "atalho", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Color Blind Friendly", description: "" }, userInfoSendMessage: { message: "enviar mensagem", description: "" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Disable Vote Buttons", description: "" }, commentToolsLinkKeyDesc: { message: "Atalho do teclado para adicionar o link.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Mover coment\xE1rio acima", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "P\xE1gina", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Altera o valor do contexto padr\xE3o no contexto do link", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Controle fino de aumento de tamanho de imagem", description: "" }, pageNavToCommentDesc: { message: "Add an icon to every page that takes you to the new comment area when clicked.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Show unread message count in favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Assistente de Procura", description: "" }, keyboardNavNextGalleryImageDesc: { message: "Ver a pr\xF3xima imagem de uma galeria Inline", description: "" }, nightModeName: { message: "Modo Noturno", description: "" }, filteRedditExcludeModqueueTitle: { message: "Exclude Modqueue", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Lan\xE7ar linha de comando de filtros.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "n\xE3o foi poss\xEDvel definir a tag - nenhum post/coment\xE1rio selecionado.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "ligado", description: "" }, contextDesc: { message: "Adiciona um link \xE0 barra de informa\xE7\xE3o amarela para ver os coment\xE1rios anexados no contexto global.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Up Vote Without Toggling", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Mover ao topo", description: "" }, nightModeAutomaticNightModeUser: { message: "User-defined hours", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignorado", description: "" }, commentToolsCommentingAsDesc: { message: "Mostra seu nome de utilizador conectado para evitar postagens a partir de uma conta errada.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Follow Link New Tab", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "You can change this later from the $1 settings", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Ativar", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "Ao trocar de conta mostrar aviso nos outros separadores.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Backup e restaura\xE7\xE3o das configura\xE7\xF5es do Reddit Enhancement Suite.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Drop Down Style", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Ao pressionar ctrl+enter ou cmd+enter a publica\xE7\xE3o ser\xE1 enviada.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "option ID", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Carrega folhas de estilo extra ou os teus pr\xF3prios snippets CSS.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "palavra-passe", description: "" }, userInfoUnignore: { message: "N\xE3o ignorar", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "Macros", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn automatic mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn user-defined hours mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filter this subreddit from /r/all and /domain/*", description: "" }, presetsNoPopupsTitle: { message: "No Popups", description: "" }, searchCopyResultForComment: { message: "copy this for a comment", description: "" }, moduleID: { message: "module ID", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Show unread message count in page/tab title?", description: "" }, xPostLinksXpostedFrom: { message: "x-posted from", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Toggle Children", description: "" }, commandLineLaunchDesc: { message: "Open the RES Command Line", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Informa\xE7\xE3o do Subreddit", description: "" }, betteRedditVideoUploadedTitle: { message: "Data de Upload do V\xEDdeo", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Dura\xE7\xE3o da anima\xE7\xE3o de desvanecimento (em segundos).", description: "" }, aboutOptionsDonate: { message: "Apoiar o desenvolvimento do RES.", description: "" }, aboutOptionsBugsTitle: { message: "Erros", description: "" }, nerShowPauseButtonTitle: { message: "Show Pause Button", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Abrir em um Clique", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "Number of days before RES stops keeping track of a viewed thread.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Controlador de vers\xF5es", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Reset the favicon before leaving the page.\n\nThis prevents the unread badge from appearing in bookmarks, but may hurt browser caching.", description: "" }, commentDepthName: { message: "Profundidade de coment\xE1rios personalizada", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Show Unread Count In Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Show Subscribe Button", description: "" }, commentToolsKey: { message: "tecla", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Color Usernames", description: "" }, commentStyleName: { message: "Estilo de Coment\xE1rio", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Show All Options", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "Front Page", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatically scroll to the post/comment that is selected when the page loads", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "texto", description: "" }, notificationStickyTitle: { message: "Sticky", description: "" }, aboutOptionsAnnouncements: { message: "Saber sobre as \xFAltimas not\xEDcias no subreddit /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Esconder automaticamente todos os coment\xE1rios n\xE3o pai, ou disponibilizar uma liga\xE7\xE3o para escond\xEA-los todos?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Remove this subreddit from your shortcut bar", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "P\xE1gina Anterior", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Destaca caixas de coment\xE1rios para uma leitura mais f\xE1cil em t\xF3picos grandes.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "Ao Votar Mover para Baixo", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Hide Dupes", description: "" }, keyboardNavFrontPageDesc: { message: "Ir para a Front Page.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Follow Link And Comments New Tab BG", description: "" }, singleClickDesc: { message: "Adiciona um link [l+c] que abre o link e a p\xE1gina de coment\xE1rios em novos separadores, num s\xF3 clique.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Browse by Wheel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Show an envelope (inbox) icon in the top right corner.", description: "" }, aboutName: { message: "Sobre o RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "C\xF3pia de seguran\xE7a", description: "" }, productivityCategory: { message: "Produtividade", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "Nenhum subreddit especificado.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Fechar ao tirar o cursor", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Move to the topmost comment of the current thread (in comments).", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: 'Fazer as liga\xE7\xF5es "esconder" dizerem "esconder" ou "mostrar" consoante o estado de oculta\xE7\xE3o.', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 entradas removidas.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Add tabs to the search page.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+Enter Salva Threads Ao Vivo", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Subreddit Comment Depths", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Ativar o editor de duas colunas.", description: "" }, floaterName: { message: "Ilhas Flutuantes", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Hide Link Fade Delay", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "NSFW Quick Toggle", description: "" }, filteRedditAllowNSFWDesc: { message: "N\xE3o esconder publica\xE7\xF5es NSFW de certos sub-reddits quando o filtro NSFW est\xE1 ativado.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Adiciona um bot\xE3o para alternar entre mostrar ou esconder a barra de utilizador.", description: "" }, showImagesDesc: { message: "Abre as imagens embebidas no browser com o clique de um bot\xE3o. Tamb\xE9m tem op\xE7\xF5es de configura\xE7\xE3o. Vem ver!", description: "" }, commentToolsMacroButtonsTitle: { message: "Bot\xF5es de Macro", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "N\xE3o filtrar suas pr\xF3prias postagens.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "Esconder Nome de Usu\xE1rio esconde o seu nome de usu\xE1rio na sua tela quando voc\xEA est\xE1 logado no reddit. Desta maneira, se algu\xE9m olhar por cima do seu ombro no trabalho, ou se voc\xEA tirar um print da tela, seu nome de usu\xE1rio n\xE3o \xE9 exibido. Isso afeta apenas a sua tela. N\xE3o existe uma maneira de postar ou comentar no reddit sem que isso seja ligado \xE0 conta que voc\xEA usou para faz\xEA-lo.", description: "" }, betteRedditName: { message: "betteReddit", description: "" }, voteEnhancementsName: { message: "Melhorias de Voto", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Show Hidden Sort Options", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Encurta os t\xEDtulos de publica\xE7\xF5es que sejam muito compridos (com mais de uma linha) adicionando retic\xEAncias.", description: "" }, subredditInfoAddRemoveDashboard: { message: "dashboard", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "Usar autocompletar", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed", description: "" }, aboutOptionsCodeTitle: { message: "C\xF3digo", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Nome de Usu\xE1rio", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Mover a imagem(s) para cima na \xE1rea de post destacada .", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Doar", description: "" }, keyboardNavGoModeTitle: { message: "Go Mode", description: "" }, keyboardNavName: { message: "Navega\xE7\xE3o pelo teclado", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "Real\xE7ador de Utilizador", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Subreddit/multireddit Atual", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Seguir Permalink", description: "" }, hoverDesc: { message: "Personaliza o comportamento dos pop-ups informativos grandes que aparecem quando se coloca o rato sobre certos elementos.", description: "" }, modhelperName: { message: "Assistente de Moderador", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Esconder todos os coment\xE1rios filho", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: '\xC9 necess\xE1rio especificar "$1" or "$2" ', description: "" }, keyboardNavMoveUpTitle: { message: "Mover para Cima", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Open Quick Message", description: "" }, pageNavToTopTitle: { message: "To Top", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Navegar no Expando", description: "" }, userTaggerTag: { message: "Tag", description: "" }, userbarHiderToggleUserbar: { message: "Ativar Barra de Usu\xE1rio", description: "" }, nerReversePauseIconTitle: { message: "Reverse Pause Icon", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Remove this subreddit from your dashboard", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Formata ou mostra informa\xE7\xE3o adicional sobre votos em t\xF3picos e coment\xE1rios.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Gestor de subreddit", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Sugest\xF5es", description: "" }, keyboardNavSaveCommentTitle: { message: "Salvar Coment\xE1rio", description: "" }, nerPauseAfterEveryTitle: { message: "Pause After Every", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Linha de comandos para navegar no reddit, alterar configura\xE7\xF5es do RES, e debugging do RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "Ver a imagem anterior de uma galeria Inline", description: "" }, userInfoInvalidUsernameLink: { message: "Invalid username link.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Move down using Comment Navigator.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Night Mode End", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "Mostra a data no fuso hor\xE1rio local quando se coloca o rato sobre uma data relativa.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Base", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penalty", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "minimum comments", description: "" }, aboutOptionsCode: { message: "Podes melhorar o RES com c\xF3digo, design, e ideias! O RES \xE9 um projeto de c\xF3digo livre no GitHub.", description: "" }, commentNavDesc: { message: "Fornece a ferramenta de navega\xE7\xE3o de coment\xE1rios para encontrar facilmente os coment\xE1rios feitos pelos PO, mod, etc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Ao pressionar ctrl+enter ou cmd+enter as actualiza\xE7\xF5es ao t\xF3pico ao vivo ser\xE3o guardadas.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite \xE9 lan\xE7ado sobre a licen\xE7a GPL v3.0 .", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Enable On Ban Messages", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "Number of days before thread subscriptions expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?", description: "" }, styleTweaksToggleSubredditStyle: { message: "ativar estilo do subreddit", description: "" }, RESTipsDailyTipTitle: { message: "Dica Di\xE1ria", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "Contador de novos coment\xE1rios", description: "" }, keyboardNavSlashAllDesc: { message: "Go to /r/all.", description: "" }, keyboardNavShowParentsTitle: { message: "Mostrar Pais.", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "Frontpage", description: "" }, commentToolsCategory: { message: "categoria", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "Ao passar o cursor por cima de [pontua\xE7\xE3o oculta] mostrar o tempo restante em vez da dura\xE7\xE3o da oculta\xE7\xE3o.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Mostrar a hora em que uma publica\xE7\xE3o ou coment\xE1rio foi editado sem ter de colocar o cursor por cima da hora de envio.", description: "" }, aboutOptionsSearchSettings: { message: "Procurar nas configura\xE7\xF5es do RES.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Pr\xF3xima Imagem da Galeria", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Estilo do Subreddit ativado para o subreddit :$1.", description: "" }, notificationsNeverSticky: { message: "never sticky", description: "" }, keyboardNavMoveDownDesc: { message: "Move down to the next link or comment in flat lists.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Mostrar o bot\xE3o [-] de colapsar na caixa de entrada.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Even If Subscriber", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Add this subreddit to your shortcut bar", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Recarregar Outras Abas", description: "" }, betteRedditVideoTimesTitle: { message: "Tempo de V\xEDdeo ", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Apar\xEAncia", description: "" }, userTaggerShowIgnoredDesc: { message: "Provide a link to reveal an ignored link or comment.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "It\xE1lico", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Use Reddit Filters", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatically select the last thing you had selected", description: "" }, aboutOptionsPresetsTitle: { message: "Predefini\xE7\xF5es", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Profundidade predefinida para usar em todos os sub-reddits que n\xE3o estejam listados abaixo.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Ocultar", description: "" }, aboutOptionsContributorsTitle: { message: "Colaboradores", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Ativar Ajuda", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "When following a link in new tab - focus the tab?", description: "" }, aboutOptionsFAQ: { message: "Aprenda mais sobre o RES visitando a wiki no /r/Enhancement.", description: "" }, betteRedditPinHeaderDesc: { message: "Prender a barra de sub-reddit, menu de utilizador, ou cabe\xE7alho ao topo \xE0 medida que descer na p\xE1gina.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Mostra a data precisa na barra lateral.", description: "" }, keyboardNavUpVoteDesc: { message: "Upvote selected link or comment (or remove the upvote).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Go to subreddit of selected link (link pages only).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Manter-me com sess\xE3o iniciada ap\xF3s reiniciar o navegador.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Toggle expando (image/text/video).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "View comments for link in a new tab.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "Backup", description: "" }, profileNavigatorHoverDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes de as dicas flutuantes aparecerem.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "RES permite que voc\xEA desative estilo de subreddit espec\xEDficos!", description: "" }, customTogglesDesc: { message: "Define op\xE7\xF5es personalizadas para v\xE1rias funcionalidades do RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Bot\xF5es da Ferramenta de Formata\xE7\xE3o", description: "" }, commentPreviewEnableForWikiDesc: { message: "Mostra o preview para p\xE1ginas da wiki.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Mover Imagem para Cima", description: "" }, settingsNavDesc: { message: "Ajudando voc\xEA a se encontrar com maior facilidade no Console de Configura\xE7\xF5es do RES", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Comment Collapse In Inbox", description: "" }, usernameHiderName: { message: "Esconder Utilizador", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "enabled", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Ferramentas de tabela", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "Usu\xE1rio n\xE3o encontrado.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Truncate Long Links", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Abrir Linha de comando do RES", description: "" }, nerHideDupesDontHide: { message: "Do not hide", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "seus votos para $1:$2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Adicionar bot\xE3o de macro para o formul\xE1rio de edi\xE7\xE3o das publica\xE7\xF5es, coment\xE1rios e outros campos de texto em snudown/markdown.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Mover a imagem(s) para a direita na \xE1rea de post destacada .", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alien)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Open Big Editor", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Image Size Any Height", description: "" }, pageNavShowLinkNewTabTitle: { message: "Show Link New Tab", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Estilo de Deslocamento N\xE3o-Linear", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Open the current markdown field in the big editor. (Only when a markdown form is focused).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Define a profundidade em liga\xE7\xF5es para coment\xE1rios particulares com contexto.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Go to subreddit front page.", description: "" }, menuName: { message: "Menu RES", description: "" }, messageMenuDesc: { message: "Coloca o rato sobre o \xEDcone de mensagens para aceder a diferentes tipos de mensagens, ou para criar uma nova.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Show a menu linking to various sections of the multireddit when hovering your mouse over the link.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Play a transition when you open and close tabs.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "Ao esconder um link, automaticamente selecionar o pr\xF3ximo link.", description: "" }, commentStyleDesc: { message: "Adiciona melhoramentos de legibilidade aos coment\xE1rios.", description: "" }, keyboardNavRandomDesc: { message: "Ir para um subreddit aleat\xF3rio.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "Comentando Como", description: "" }, keyboardNavImageSizeUpDesc: { message: "Aumentar tamanho da imagem(s) na \xE1rea de post em destaque.", description: "" }, floaterDesc: { message: "Gere os elementos flutuantes do RES.", description: "" }, subredditManDesc: { message: "Permite personalizar a barra de topo com os teus pr\xF3prios atalhos para subreddits, incluindo menus suspensos de multi-reddits e mais.", description: "" }, keyboardNavSavePostDesc: { message: "Save the current post to your reddit account. This is accessible from anywhere that you're logged in, but does not preserve the original text if it's edited or deleted.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Enable Big Editor", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Suspended Feature", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification", description: "" }, announcementsDesc: { message: "Mantenha-se informado com as \xFAltimas not\xEDcias.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Adicionar Linha", description: "" }, keyboardNavReplyDesc: { message: "Responder ao coment\xE1rio atual (apenas na p\xE1gina de coment\xE1rios)", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "manually register notification type", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "Notifica\xE7\xF5es RES", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "View comments for link (shift opens them in a new tab).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Mostrar uma pr\xE9-visualiza\xE7\xE3o instant\xE2nea diretamente na barra lateral ao edit\xE1-la.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Perfil em uma nova Aba", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Follow Link And Comments New Tab", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Navega\xE7\xE3o multi-reddit", description: "" }, keyboardNavToggleExpandoTitle: { message: "Toggle Expando", description: "" }, showKarmaName: { message: "Mostrar Karma", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Autocompletar Subreddit", description: "" }, settingsNavName: { message: "Configura\xE7\xF5es de Navega\xE7\xE3o do RES", description: "" }, contributeName: { message: "Doar e Contribuir", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Disable Comment Textarea", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Define a profundidade das liga\xE7\xF5es para coment\xE1rios particulares.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Mostra um menu a ligar a v\xE1rias sec\xE7\xF5es do perfil de utilizador atual, quando coloca o rato por cima do link do utilizador no canto superior direito.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "Ferramentas de Edi\xE7\xE3o", description: "" }, accountSwitcherAccountsDesc: { message: "Define os teus nomes de utilizador e palavras-passe abaixo. Estes ficam guardados nas defini\xE7\xF5es do RES.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "Ao filtrar sub-reddits com a op\xE7\xE3o acima, onde dever\xE3o eles ser filtrados?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Visualiza\xE7\xE3o ao vivo", description: "" }, hoverOpenDelayDesc: { message: "Intervalo predefinido entre o cursor em cima e o aparecimento do popup.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color of the bar when collapsed.", description: "" }, announcementsName: { message: "Comunicados do RES", description: "" }, betteRedditVideoViewedDesc: { message: "Mostra o n\xFAmero de visualiza\xE7\xF5es do v\xEDdeo quando dispon\xEDvel.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Move To Top Comment", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "reload", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Update Other Tabs", description: "" }, notificationsNotificationID: { message: "notification ID", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Mostrar o c\xF3digo fonte", description: "" }, keyboardNavInboxDesc: { message: "Ir para a caixa de entrada", description: "" }, gfycatUseMobileGfycatDesc: { message: "Usar gifs mobile (resolu\xE7\xE3o inferior) do gfycat.", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Toggle View Images", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Back-up e recupera\xE7\xE3o das configura\xE7\xF5es RES.", description: "" }, showParentDesc: { message: 'Mostra os coment\xE1rios pai quando se coloca o rato sobre o link "parent" de um coment\xE1rio.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Diminuir tamanha da imagem(s) na \xE1rea de post em destaque.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Show Input Length", description: "" }, keyboardNavSaveRESDesc: { message: "Save the current comment with RES. This does preserve the original text of the comment, but is only saved locally.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Inspirado por m\xF3dulos como 'River of Reddit' e 'Auto Pager' - fornece a possibilidade de uma imensid\xE3o de coisas boas.", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "N\xE3o filtrar nada nos perfis dos usu\xE1rios.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Restaurar", description: "" }, logoLinkCustom: { message: "Custom", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Ativar ou desativar tudo o que esteja ligado a este interruptor e opcionalmente adicionar um interruptor ao menu da roda do RES.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Hide vote buttons. If you have already visited the page and voted, your prior votes will still be visible.", description: "" }, commentStyleContinuityDesc: { message: "Mostrar o coment\xE1rio em linhas cont\xEDnuas.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Stop filtering this subreddit from /r/all and /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Default Posts", description: "" }, contextViewFullContextTitle: { message: "Ver Todo Contexto", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacidade", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Adiciona ferramenta que mostra o texto original nos postagens e coment\xE1rios antes do reddit formatar o texto", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Move down to the next comment on threaded comment pages.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Fornece utilit\xE1rios para ajudar a enviar um t\xF3pico.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Autom\xE1tico", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separator", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Intervalo predefinido antes de o popup desaparecer ap\xF3s tirar o cursor.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Location when you click on the reddit logo.", description: "" }, settingsConsoleName: { message: "Console de configura\xE7\xF5es", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Profundidade de coment\xE1rio espec\xEDfica ao subreddit", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Ir para o email de moderador.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "M\xE9todo de ordena\xE7\xE3o predefinido nos novos widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "Ao trocar de conta atualizar automaticamente os outros separadores.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "ativado", description: "" }, nightModeColoredLinksTitle: { message: "Colored Links", description: "" }, modhelperDesc: { message: "Ajuda moderadores atrav\xE9s de dicas e truques para interagir graciosamente com o RES.", description: "" }, quickMessageName: { message: "Mensagem R\xE1pida", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Ative este recurso novamente", description: "" }, userHighlightDesc: { message: "Real\xE7a determinados utilizadores nos coment\xE1rios: OP, Administrador, Amigos, Moderador - Contribu\xEDdo por MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Deslocar a janela para o topo da liga\xE7\xE3o quando a tecla de expando \xE9 usada (para manter as imagens, etc, em vista).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes de as dicas flutuantes desaparecerem.", description: "" }, userInfoAddRemoveFriends: { message: "$1 amigos", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups", description: "" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Menu de mensagens", description: "" }, aboutOptionsSuggestions: { message: "Caso tenha alguma ideia que queira compartilhar com o RES ou queira conversar com outros usu\xE1rios, visite /r/Enhancement.", description: "" }, userbarHiderName: { message: "Esconde Barra de Utilizador", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "Ao saltar para uma entrada (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), quando e como dever\xE1 o RES deslocar a janela?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "Todos caches foram limpados.", description: "" }, localDateName: { message: "Data local", description: "" }, commentStyleCommentRoundedDesc: { message: "Caixas de coment\xE1rios com cantos arredondados.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Usar Modo Go", description: "" }, messageMenuLabel: { message: "label", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Mostrar Nome de Usu\xE1rio em Uso", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filtro", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Show Unread Count In Title", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Sidebar Preview", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Follow Subreddit New Tab", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Mostrar a ferramenta para auto-completar nomes de utilizador ao escrever em publica\xE7\xF5es, coment\xE1rios e respostas.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Adicionar um interruptor r\xE1pido de NSFW no menu da engrenagem.", description: "" }, subredditInfoSubscribe: { message: "Inscrever", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Downvote selected link or comment (or remove the downvote).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+Enter envia coment\xE1rios", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+Enter Submits Posts", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Subreddit criado: ", description: "" }, multiredditNavbarLabel: { message: "label", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Hover Delay", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Mostra o preview para as notifica\xE7\xF5es de banimento.", description: "" }, usersCategory: { message: "Usu\xE1rios", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Color links blue and purple.", description: "" }, subredditInfoSubredditNotFound: { message: "Subreddit n\xE3o encontrado", description: "" }, logoLinkCustomDestinationDesc: { message: "If redditLogoDestination is set to custom, link here.", description: "" }, resTipsName: { message: "Dicas e Truques RES", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Ativar Linha de Comando", description: "" }, contextName: { message: "Contexto", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: `This will kill all your settings and saved data. If you're certain, type in "$1".`, description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "Usu\xE1rio suspenso.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "Links", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Mover para topo da lista (em paginas de link)", description: "" }, contextDefaultContextTitle: { message: "Contexto Padr\xE3o", description: "" }, userTaggerTagUserAs: { message: "tag user $1 as: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Move Down Sibling", description: "" }, customTogglesName: { message: "Alternadores Personalizados", description: "" }, pageNavShowLinkTitle: { message: "Show Link", description: "" }, keyboardNavProfileNewTabDesc: { message: "Go to profile in a new tab.", description: "" }, aboutCategory: { message: "Sobre o RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "Presentear Reddit Gold", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restaure um backup das suas configura\xE7\xF5es do RES", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Mostra o preview para coment\xE1rios.", description: "" }, spamButtonName: { message: "Bot\xE3o Spam", description: "" }, hoverInstancesTitle: { message: "Inst\xE2ncias", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Some hover colors couldn't be generated. This is probably due to the use of colors in a special format.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Usar teclas de atalho para aplicar estilos ao texto selecionado.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Automatically hide search options and suggestions on the search page.", description: "" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions.", description: "" }, logoLinkDashboard: { message: "Dashboard", description: "" }, dashboardDashboardShortcutDesc: { message: "Show +dashboard shortcut in sidebar for easy addition of dashboard widgets.", description: "" }, userInfoName: { message: "Informa\xE7\xE3o de utilizador", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Width of the bar.", description: "" }, filteRedditDomainsTitle: { message: "Domains", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Hide Mod Mail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Abrir em destacar utilizador", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "Ler sobre a pol\xEDtica de privacidade do RES.", description: "" }, commentStyleContinuityTitle: { message: "Continuidade", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Mostra o status de ouro para cada conta no Alternador de Conta", description: "" }, browsingCategory: { message: "Navega\xE7\xE3o", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Voc\xEA tem certeza de que quer deletar a tag do usu\xE1rio:$1?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Move Down Thread", description: "" }, keyboardNavInboxTitle: { message: "Caixa de entrada", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "N\xE3o Destacar", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Mostrar por defeito", description: "" } }; // locales/locales/pt_PT.json var pt_PT_default = { commentNavigatorOpenOnHighlightUserDesc: { message: "Mostrar o Navegador de Coment\xE1rios quando um utilizador \xE9 destacado.", description: "" }, styleTweaksDesc: { message: "Provides a number of style tweaks to the Reddit interface. Also allow you to disable specific subreddit style (the [global setting](/prefs/#show_stylesheets) must be on).", description: "" }, betteRedditShowTimestampCommentsDesc: { message: "Mostrar datas absolutas nos coment\xE1rios / mensagens.", description: "" }, commentPrevDesc: { message: "Fornece uma pr\xE9-visualiza\xE7\xE3o instant\xE2nea do que est\xE1 a ser editado, como coment\xE1rios, publica\xE7\xF5es de texto, mensagens, p\xE1ginas da wiki, e outras edi\xE7\xF5es de texto; assim como um editor de duas colunas para escrever paredes de texto.", description: "" }, showImagesAutoExpandSelfTextNSFWDesc: { message: "Also expand expandos in selftexts which are marked NSFW.", description: "" }, troubleshooterClearCacheDesc: { message: 'Clear your RES cache and session. This includes the "My Subreddits" dropdown, user/subreddit info, i18n dictionary, etc.', description: "" }, showImagesMaxHeightTitle: { message: "Max Height", description: "" }, commentPreviewSwapBigEditorLayoutDesc: { message: "Troca a pr\xE9-visualiza\xE7\xE3o com o editor (de forma a que a pr\xE9-visualiza\xE7\xE3o fica \xE0 esquerda e o editor \xE0 direita).", description: "" }, keyboardNavMoveDownCommentTitle: { message: "Descer nos Coment\xE1rios", description: "" }, troubleshooterBreakpointDesc: { message: "Pause JavaScript execution to allow debugging.", description: "" }, dashboardMenuItemDesc: { message: "Mostrar a liga\xE7\xE3o para o meu painel de controlo no menu do RES.", description: "" }, faviconUseLegacyDesc: { message: "If you don't like the new orange Reddit tab icon, revert to using the old Reddit icon instead.", description: "" }, readCommentsMonitorWhenIncognitoTitle: { message: "Monitor When Incognito", description: "" }, userInfoUserHasRedditGold: { message: "O utilizador tem Ouro do Reddit", description: "" }, keyboardNavMoveUpSiblingTitle: { message: "Subir Para o Irm\xE3o", description: "" }, usernameHiderPerAccountDisplayTextTitle: { message: "Per Account Display Text", description: "" }, RESTipsNewFeatureTipsDesc: { message: "Show tips about new features when they appear for the first time.", description: "" }, stylesheetLoadStylesheetsTitle: { message: "Load Stylesheets", description: "" }, commentStyleCommentIndentTitle: { message: "Indenta\xE7\xE3o dos coment\xE1rios", description: "" }, easterEggDesc: { message: "\u2191 \u2191 \u2193 \u2193 \u2190 \u2192 \u2190 \u2192 B A.", description: "" }, presetsCleanSlateDesc: { message: "Desligar todos os m\xF3dulos do RES", description: "" }, betteRedditShowTimestampModerationLogDesc: { message: "Mostrar datas absolutas no registo da modera\xE7\xE3o (/r/mod/about/log).", description: "" }, subredditManagerStoreSubredditVisitIncognitoDesc: { message: "Store the last time you visited a subreddit in incognito/private mode.", description: "" }, keyboardNavRandomTitle: { message: "Aleat\xF3rio", description: "" }, messageMenuUrl: { message: "url", description: "" }, keyboardNavFocusOnSearchBoxDesc: { message: "Focuses the cursor in the search box.", description: "" }, subredditInfoFilterThisSubredditFromAllAndDomain: { message: "Filtrar este sub-reddit do /r/all e do /domain/*", description: "" }, keyboardNavFollowCommentsNewTabTitle: { message: "Seguir coment\xE1rios num novo separador", description: "" }, userHighlightHighlightSelfDesc: { message: "Highlight the logged in user's comments.", description: "" }, subredditInfoUnsubscribe: { message: "cancelar subscri\xE7\xE3o", description: "" }, showImagesAutoplayVideoTitle: { message: "Autoplay Video", description: "" }, orangeredName: { message: "Mensagens N\xE3o Lidas", description: "" }, voteEnhancementsHighlightScoresDesc: { message: "Bolden post and comment scores, making them easier to find.", description: "" }, orangeredHideEmptyModMailTitle: { message: "Hide Empty Mod Mail", description: "" }, RESTipsDailyTipDesc: { message: "Mostrar uma dica aleat\xF3rio uma vez a cada 24 horas.", description: "" }, userHighlightHighlightModDesc: { message: "Highlight Mod's comments.", description: "" }, keyboardNavShowAllChildCommentsDesc: { message: "Show/hide all child comments on the page (comment pages only).", description: "" }, filteRedditKeywordsTitle: { message: "Palavras Chave", description: "" }, filteRedditAllowNSFWTitle: { message: "Permitir NSFW", description: "" }, hoverOpenDelayTitle: { message: "Intervalo de Abertura", description: "" }, keyboardNavNextPageTitle: { message: "P\xE1gina Seguinte", description: "" }, commentToolsSuperKeyTitle: { message: "\xCDndice", description: "" }, keyboardNavLinkNumberPositionDesc: { message: "Which side link numbers are displayed.", description: "" }, logoLinkCustomDestinationTitle: { message: "Destino Personalizado", description: "" }, commentDepthCommentPermalinksContextTitle: { message: "Contexto das liga\xE7\xF5es permanentes de coment\xE1rios", description: "" }, betteRedditRestoreSavedTabTitle: { message: "Restaurar Separador Guardado", description: "" }, orangeredHideModMailDesc: { message: "Hide the mod mail button in user bar.", description: "" }, orangeredRetroUnreadCountDesc: { message: "If you dislike the unread count provided by native reddit, you can replace it with the RES-style bracketed unread count.", description: "" }, showImagesHideNSFWTitle: { message: "Hide NSFW", description: "" }, nerHideDupesDesc: { message: "Fade or completely hide duplicate posts already showing on the page.", description: "" }, subredditManagerLinkProfilePostsDesc: { message: 'show "PROFILES" link in subreddit manager.', description: "" }, filteRedditOnlyOn: { message: "Only on:", description: "" }, userHighlightFirstCommentColorHoverTitle: { message: "First Comment Color Hover", description: "" }, necLoadChildCommentsDesc: { message: "Should on-screen child comments be expanded when paused, in addition to top-level comments?", description: "" }, keyboardNavEditTitle: { message: "Edit", description: "" }, userTaggerName: { message: "Etiquetas de Utilizador", description: "" }, userbarHiderToggleButtonStateDesc: { message: "Toggle button", description: "" }, keyboardNavCommentNavigatorMoveDownTitle: { message: "Navegador de Coment\xE1rios - Descer", description: "" }, searchHelperToggleSearchOptionsDesc: { message: "Add a button to hide search options while searching.", description: "" }, keyboardNavCommentNavigatorMoveUpDesc: { message: "Subir usando o Navegador de Coment\xE1rios.", description: "" }, accountSwitcherDropDownStyleDesc: { message: 'Usar o \xEDcone "snoo" ou o estilo de menu antigo?', description: "" }, userHighlightOPColorTitle: { message: "OP Color", description: "" }, commentToolsKeepMacroListOpenTitle: { message: "Manter a lista de macros aberta", description: "" }, keyboardNavToggleCommentNavigatorTitle: { message: "Activar/Desactivar Navegador de Coment\xE1rios", description: "" }, commentToolsKeyboardShortcutsTitle: { message: "Teclas de atalho", description: "" }, voteEnhancementsUserDefinedCommentColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, userHighlightHighlightFirstCommenterDesc: { message: "Highlight the person who has the first comment in a tree, within that tree.", description: "" }, nightModeToggleText: { message: "night mode", description: "" }, keyboardNavFollowLinkNewTabDesc: { message: "Seguir a liga\xE7\xE3o num novo separador (apenas na p\xE1gina de liga\xE7\xF5es).", description: "" }, onboardingDesc: { message: "Sabe mais acerca do RES em /r/Enhancement.", description: "" }, styleTweaksHighlightTopLevelColorTitle: { message: "Highlight Top Level Color", description: "" }, styleTweaksVisitedStyleDesc: { message: "Change the color of links you've visited to purple. (By default Reddit only does this for submission titles.)", description: "" }, filteRedditNSFWfilterTitle: { message: "Filtro NSFW", description: "" }, showImagesOnlyPlayMutedWhenVisibleDesc: { message: "Auto-pause muted videos when they are not visible.", description: "" }, hoverFadeDelayTitle: { message: "Intervalo de Desvanecimento", description: "" }, profileNavigatorFadeDelayTitle: { message: "Fade Delay", description: "" }, commentToolsLinkKeyTitle: { message: "Liga\xE7\xE3o", description: "" }, userHighlightHighlightFriendTitle: { message: "Highlight Friend", description: "" }, subredditManagerDisplayMultiCountsTitle: { message: "Display Multi Counts", description: "" }, commentToolsAddShortcut: { message: "+adicionar atalho", description: "" }, subredditManagerDropdownEditButtonTitle: { message: "Dropdown Edit Button", description: "" }, keyboardNavsSubredditFrontPageTitle: { message: "P\xE1gina Principal do Sub-reddit", description: "" }, keyboardNavFollowSubredditTitle: { message: "Seguir Sub-reddit", description: "" }, accountSwitcherShowGoldTitle: { message: "Mostrar Ouro", description: "" }, voteEnhancementsInterpolateScoreColorTitle: { message: "Interpolate Score Color", description: "" }, stylesheetName: { message: "Carregador de Folhas de Estilo", description: "" }, subredditInfoOver18: { message: "Mais de 18:", description: "" }, userInfoIgnore: { message: "Ignorar", description: "" }, subredditManagerShortcutsPerAccountDesc: { message: "Show personalized shortcuts for each account.", description: "" }, subredditManagerDropdownEditButtonDesc: { message: 'Show "edit" and "delete" buttons in dropdown menu on subreddit shortcut bar.', description: "" }, dashboardMenuItemTitle: { message: "\xCDtem do menu", description: "" }, nightModeSubredditStylesWhitelistTitle: { message: "Subreddit Styles Whitelist", description: "" }, troubleshooterAreYouPositive: { message: "Tens a certeza?", description: "" }, messageMenuAddShortcut: { message: "+adicionar atalho", description: "" }, troubleshooterName: { message: "Resolu\xE7\xE3o de Problemas", description: "" }, temporaryDropdownLinksAlwaysDesc: { message: "Always change change links to temporary ones.", description: "" }, filteRedditSubredditsDesc: { message: "Hide posts submitted to certain subreddits.", description: "" }, orangeredRetroUnreadCountTitle: { message: "Retro Unread Count", description: "" }, messageMenuUseQuickMessageDesc: { message: "Usar a caixa de Mensagem R\xE1pida ao compor uma nova mensagem.", description: "" }, keyboardNavInboxNewTabTitle: { message: "Caixa de Entrada num novo separador", description: "" }, keyboardNavFollowPermalinkNewTabDesc: { message: "Abrir a liga\xE7\xE3o permanente do coment\xE1rio actual num novo separador (apenas na p\xE1gina de coment\xE1rios).", description: "" }, selectedEntrySetColorsDesc: { message: "Set colors", description: "" }, stylesheetLoggedInUserClassDesc: { message: "When logged in, add your username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-me-exampleuser`.", description: "" }, keyboardNavOnVoteMoveDownDesc: { message: "Ao votar numa liga\xE7\xE3o seleccionar automaticamente a pr\xF3xima liga\xE7\xE3o.", description: "" }, userInfoHighlightColorDesc: { message: 'Color used to highlight a selected user, when "highlighted" from hover info.', description: "" }, onboardingName: { message: "Ba\xFA de Boas Vindas do RES", description: "" }, selectedEntryBackgroundColorNightTitle: { message: "Background Color Night", description: "" }, subredditInfoStopFilteringFromAllAndDomain: { message: "Parar de filtrar do /r/all e do /domain/*", description: "" }, keyboardNavMoveDownThreadDesc: { message: "Mover para o coment\xE1rio no topo do pr\xF3ximo t\xF3pico (nos coment\xE1rios).", description: "" }, hoverName: { message: "Caixa Pop-up RES", description: "" }, commentPreviewEnableForCommentsTitle: { message: "Activar para os coment\xE1rios", description: "" }, spamButtonDesc: { message: "Adiciona um Bot\xE3o de Lixo \xE0s publica\xE7\xF5es para denunciar mais facilmente.", description: "" }, betteRedditUnhideLinkLabel: { message: "unhide", description: "" }, showImagesGalleryRememberWidthDesc: { message: "In 'slideshow' layout, use the same width on all pieces after resizing.", description: "" }, styleTweaksFloatingSideBarTitle: { message: "Floating Side Bar", description: "" }, userTaggerPresetTagsDesc: { message: "Preset tags to be shown when tagging a user.", description: "" }, subredditManagerLinkRandNSFWTitle: { message: "Link Rand NSFW", description: "" }, subredditManagerLastUpdateTitle: { message: "Last Update", description: "" }, userTaggerHardIgnoreDesc: { message: "Completely remove links and comments posted by ignored users. If an ignored comment has replies, collapse it and hide its contents instead of removing it.", description: "" }, commentToolsLabel: { message: "etiqueta", description: "" }, donateToRES: { message: "donate to RES", description: "" }, quickMessageDefaultSubjectDesc: { message: "Text that will automatically be inserted into the subject field, unless it is auto-filled by context.", description: "" }, newCommentCountMonitorPostsVisitedDesc: { message: "Monitor the number of comments and edit dates of posts you have visited.", description: "" }, styleTweaksScrollSubredditDropdownDesc: { message: "Scroll the standard subreddit dropdown (useful for pinned header and disabled Subreddit Manager).", description: "" }, userHighlightAlumColorHoverDesc: { message: "Color used to highlight Alums on hover.", description: "" }, orangeredDesc: { message: "Ajuda-te a ter a tua dose di\xE1ria de orangereds.", description: "" }, showImagesDisplayImageCaptionsTitle: { message: "Display Image Captions", description: "" }, nightModeNightModeOnTitle: { message: "Modo noturno ligado", description: "" }, myAccountCategory: { message: "A Minha Conta", description: "" }, commentDepthDefaultMinimumCommentsTitle: { message: "Coment\xE1rios m\xEDnimos predefinidos", description: "" }, yes: { message: "Sim", description: "" }, filteRedditName: { message: "filteReddit", description: "" }, userInfoHighlightColorHoverDesc: { message: "Color used to highlight a selected user on hover.", description: "" }, notificationFadeOutLengthDesc: { message: "Tempo dispon\xEDvel para parar uma notifica\xE7\xE3o de desaparecer, em mil\xE9simos de segundo.", description: "" }, commandLineMenuItemTitle: { message: "Menu Item", description: "" }, filteRedditCustomFiltersCTitle: { message: "Custom Comment Filters", description: "" }, keyboardNavFocusOnSearchBoxTitle: { message: "Focus on Search Box", description: "" }, subredditManagerLinkRandomDesc: { message: 'Show "RANDOM" link in subreddit manager.', description: "" }, userHighlightFriendColorTitle: { message: "Friend Color", description: "" }, searchHelperSearchByFlairTitle: { message: "Pesquisa por Flair", description: "" }, styleTweaksPostTitleCapitalizationDesc: { message: "Force a particular style of capitalization on post titles.", description: "" }, announcementsNewPostByUser: { message: "A new post has been made to /r/$1 by /u/$2", description: "" }, userInfoUserTag: { message: "User Tag:", description: "" }, menuGearIconClickActionDesc: { message: "What should happen when you click on the gear icon? Unless specified, hovering will open the menu.", description: "" }, userTaggerPresetTagsTitle: { message: "Preset Tags", description: "" }, newCommentCountDesc: { message: "Diz-te quantos coment\xE1rios foram feitos desde a \xFAltima vez que visitaste o t\xF3pico.", description: "" }, userTaggerPageXOfY: { message: "$1 de $2", description: "As in 'page 1 of 5'" }, userTaggerMyUserTags: { message: "As Minhas Etiquetas de Utilizador", description: "" }, pageNavShowLinkNewTabDesc: { message: "Abrir liga\xE7\xE3o num novo separador", description: "" }, aboutOptionsSearchSettingsTitle: { message: "Pesquisar nas Defini\xE7\xF5es do RES", description: "" }, subredditManagerAllowLowercaseDesc: { message: "Allow lowercase letters in shortcuts instead of forcing uppercase.", description: "" }, betteRedditDoNoCtrlFTitle: { message: "N\xE3o fazer ctrl+f", description: "" }, faviconNotificationBGColorTitle: { message: "Favicon Notification Background Color", description: "" }, commentDepthSubreddit: { message: "sub-reddit", description: "" }, betteRedditVideoViewedTitle: { message: "V\xEDdeo Visto", description: "" }, commentToolsHighlightIfAltAccountDesc: { message: 'Meter a negrito o "A comentar como" se estiveres a usar uma conta alternativa. A primeira conta no m\xF3dulo Mudar de Conta \xE9 considerada como a conta principal.', description: "" }, usernameHiderDisplayTextTitle: { message: "Display Text", description: "" }, commentToolsShowInputLengthDesc: { message: "Ao enviar, mostrar o n\xFAmero de caracteres inseridos nos campos de t\xEDtulo e de texto e indicar quando superares o limite de 300 caracteres no t\xEDtulo.", description: "" }, redditUserInfoName: { message: "Reddit User Info", description: "" }, keyboardNavImageSizeUpFineDesc: { message: "Aumentar o tamanho das imagens na \xE1rea destacada da publica\xE7\xE3o (controlo refinado).", description: "" }, nerName: { message: "Never Ending Reddit", description: "" }, subredditInfoTitle: { message: "T\xEDtulo:", description: "" }, nightModeAutomaticNightModeAutomatic: { message: "Automatic (requires geolocation)", description: "" }, showImagesClippyTitle: { message: "Clippy", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGDesc: { message: "Ver a liga\xE7\xE3o e coment\xE1rios em novos separadores em segundo plano.", description: "" }, commentStyleCommentHoverBorderTitle: { message: "Margem dos coment\xE1rios flutuantes", description: "" }, showImagesFilmstripLoadIncrementTitle: { message: "Filmstrip Load Increment", description: "" }, usernameHiderDisplayTextDesc: { message: "What to replace your username with.", description: "" }, profileRedirectCustomFromLandingPageTitle: { message: "Custom Target From Landing Page", description: "" }, nerHideDupesFade: { message: "Fade", description: "" }, submitIssueDesc: { message: "If you have any problems with RES, visit /r/RESissues. If you have any requests or questions, visit /r/Enhancement.", description: "" }, keyboardNavImageSizeDownFineDesc: { message: "Diminuir o tamanho das imagens na \xE1rea destacada da publica\xE7\xE3o (controlo refinado).", description: "" }, selectedEntryBackgroundColorDesc: { message: "The background color", description: "" }, searchRESSettings: { message: "search RES settings", description: "" }, keyboardNavNextPageDesc: { message: "Ir para a p\xE1gina seguinte (apenas nas p\xE1ginas de listagem de liga\xE7\xF5es).", description: "" }, notificationsPerNotificationType: { message: "por tipo de notifica\xE7\xE3o", description: "" }, subredditTaggerDesc: { message: "Adicionar texto customizado ao in\xEDcio de t\xEDtulos de publica\xE7\xF5es na sua p\xE1gina frontal, multireddits e /r/all. \xDAtil para acrescentar contexto \xE0s publica\xE7\xF5es.", description: "" }, spoilerTagsTransitionTitle: { message: "Transition", description: "" }, backupAndRestoreReloadWarningNone: { message: "Do nothing.", description: "" }, profileNavigatorDesc: { message: "Facilita a navega\xE7\xE3o para v\xE1rias partes da tua p\xE1gina de utilizador.", description: "" }, wheelBrowseDesc: { message: "Browse entries and galleries by scrolling inside the grey floater.", description: "" }, tableToolsDesc: { message: "Inclui funcionalidade adicional \xE0s tabelas de Markdown do Reddit (de momento apenas ordena)", description: "" }, notificationsAlwaysSticky: { message: "sempre afixado", description: "" }, searchName: { message: "Pesquisar nas Defini\xE7\xF5es do RES", description: "" }, orangeredResetFaviconOnLeaveTitle: { message: "Report favicon quando sair", description: "" }, quickMessageSendAsTitle: { message: "Enviar Como", description: "" }, pageNavName: { message: "Navegador de P\xE1ginas", description: "" }, keyboardNavFollowLinkDesc: { message: "Seguir liga\xE7\xE3o (apenas p\xE1ginas de liga\xE7\xE3o)", description: "" }, voteEnhancementsColorCommentScoreDesc: { message: "Add color to a comment's score depending on its value.", description: "" }, penaltyBoxDelayFeaturesTitle: { message: "Atrasar Funcionalidades", description: "" }, subredditInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentHidePerDesc: { message: "Guarda o estado dos coment\xE1rios escondidos atrav\xE9s das p\xE1ginas vistas.", description: "" }, quickMessageDesc: { message: "Uma caixa de di\xE1logo que te permite enviar mensagens a partir de qualquer lado no Reddit. As mensagens podem ser enviadas a partir da caixa de di\xE1logo atrav\xE9s da combina\xE7\xE3o de teclas control+enter ou comando+enter.", description: "" }, keyboardNavLinkNewTabDesc: { message: "Open number key links in a new tab.", description: "" }, styleTweaksCommandLineDescription: { message: "Ligar ou desligar o estilo do sub-reddit (se nenhum sub-reddit tiver sido especificado, usa o sub-reddit actual).", description: "" }, accountSwitcherUsername: { message: "nome de utilizador", description: "" }, multiredditNavbarSectionLinksDesc: { message: "Liga\xE7\xE3o para mostrar no dropdown.", description: "" }, styleTweaksHighlightEditedTimeTitle: { message: "Highlight Edited Time", description: "" }, showImagesShowVideoControlsTitle: { message: "Show Video Controls", description: "" }, temporaryDropdownLinksTemporarily: { message: "(temporarily?)", description: "" }, nightModeNightModeStartTitle: { message: "Ligar modo noturno", description: "" }, subredditManagerFilterListTitle: { message: "Subreddit Quick Filter", description: "" }, userbarHiderUserBarHidden: { message: "Barra de utilizador escondida", description: "" }, accountSwitcherUnknownError: { message: "Could not log in as $1 due to an unknown error: $2\n\nCheck your settings?", description: "" }, commentDepthAddSubreddit: { message: "+adicionar sub-reddit", description: "" }, commentPreviewSwapBigEditorLayoutTitle: { message: "Trocar a disposi\xE7\xE3o do editor grande", description: "" }, keyboardNavShowChildCommentsDesc: { message: "Show/hide the child comments tree (comment pages only).", description: "" }, nerAutoLoadTitle: { message: "Carregar automaticamente", description: "" }, nerReturnToPrevPageDesc: { message: 'Voltar \xE0 pagina que estavas na \xFAltima vez quando clicas no bot\xE3o "voltar"?', description: "" }, multiredditNavbarSectionMenuTitle: { message: "Section Menu", description: "" }, keyboardNavMoveDownParentSiblingDesc: { message: "Mover para o pr\xF3ximo irm\xE3o do pai (nos coment\xE1rios).", description: "" }, accountSwitcherRateLimitError: { message: "Could not log in as $1 because reddit is seeing too many requests from you too quickly.\n\nPerhaps you've been trying to log in using the wrong username or password?\n\nCheck your settings?", description: "" }, orangeredUpdateOtherTabsDesc: { message: "Update all open tabs when RES checks for orangereds.", description: "" }, showImagesMediaBrowseTitle: { message: "Media Browse", description: "" }, betteRedditScoreHiddenTimeLeftTitle: { message: "Mostrar tempo restante da pontua\xE7\xE3o oculta", description: "" }, hoverWidthDesc: { message: "Largura do popup predefinida.", description: "" }, iredditPreferRedditMediaDesc: { message: "Try to load images and video from Reddit's media servers.", description: "" }, submittedToSubreddit: { message: "to", description: "[post/comment submitted...] to $subreddit" }, showImagesHidePinnedRedditVideosDesc: { message: "Hide pinned Reddit-hosted videos when scrolling on comments page.", description: "" }, stylesheetSubredditClassDesc: { message: "When browsing a subreddit, add the subreddit name as a class to the body.\nFor example, /r/ExampleSubreddit adds `body.res-r-examplesubreddit`.", description: "" }, nightModeNightModeOnDesc: { message: "Ativar/desativar modo noturno.", description: "" }, userTaggerShowIgnoredTitle: { message: "Show Ignored", description: "" }, showImagesMediaControlsTitle: { message: "Media Controls", description: "" }, necName: { message: "Coment\xE1rios Sem Fim", description: "" }, subredditManagerLinkModqueueDesc: { message: 'Show "MODQUEUE" link in subreddit manager.', description: "" }, filteRedditExcludeOwnPostsTitle: { message: "Excluir publica\xE7\xF5es pr\xF3prias", description: "" }, userInfoHighlightColorTitle: { message: "Highlight Color", description: "" }, keyboardNavModmailNewTabDesc: { message: "Ir para o correio de moderador num novo separador.", description: "" }, subredditInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, keyboardNavLinkToggleExpandoDesc: { message: "When a link has an expando, toggle it instead of opening the link. Alt mode inverts this action.", description: "" }, styleTweaksShowExpandosDesc: { message: "Bring back video and text expando buttons for users with compressed link display.", description: "" }, showParentFadeDelayTitle: { message: "Fade Delay", description: "" }, keyboardNavModmailNewTabTitle: { message: "Correio de Moderador num novo separador", description: "" }, showImagesMaxHeightDesc: { message: 'Max height of media (in pixels, enter zero for unlimited). Percentage of window height may also be used (e.g. "100%").', description: "" }, userHighlightAlumColorTitle: { message: "Alum Color", description: "" }, newCommentCountShowSubscribeButtonDesc: { message: "Mostrar o bot\xE3o de subscri\xE7\xE3o?", description: "" }, filteRedditKeyword: { message: "keyword", description: "" }, toggleCommentsLeftEdgeHoverColorDesc: { message: "Color of the bar when hovered.", description: "" }, backupAndRestoreBackupDesc: { message: 'Make a backup of your current RES state. Download it with "File", or upload it to a cloud backup provider.', description: "" }, selectedEntrySetColorsTitle: { message: "Set Colors", description: "" }, showImagesAutoMaxHeightTitle: { message: "Auto Max Height", description: "" }, keyboardNavEnterFilterCommandLineTitle: { message: "Introduzir filtro da linha de comandos", description: "" }, betteRedditDoNoCtrlFDesc: { message: 'Ao usar ctrl+f/cmd+f (procurar texto), apenas procurar nos coment\xE1rios/texto da publica\xE7\xE3o e n\xE3o nas liga\xE7\xF5es de navega\xE7\xE3o ("liga\xE7\xE3o permanente fonte guardar\u2026"). Desactivado por defeito por causar um ligeiro impacto no desempenho.', description: "" }, subredditInfoRequireDirectLinkTitle: { message: "Require Direct Link", description: "" }, hideCommentsOnHeaderDoubleClickTitle: { message: "Hide Comments On Header Double Click", description: "" }, userHighlightAutoColorUsernamesDesc: { message: "Automatically set a special color for each username.", description: "" }, backupName: { message: "C\xF3pia e Restauro", description: "" }, profileNavigatorSectionLinksDesc: { message: "Liga\xE7\xF5es a mostrar no menu flutuante do perfil.", description: "" }, notificationCloseDelayDesc: { message: "Tempo at\xE9 uma notifica\xE7\xE3o come\xE7ar a desaparecer, em mil\xE9simos de segundo.", description: "" }, styleTweaksUseSubredditStyle: { message: "Usar estilo do sub-reddit", description: "" }, userHighlightModColorDesc: { message: "Color to use to highlight Mods.", description: "" }, quickMessageLinkToCurrentPageDesc: { message: "Automatically start with a link to the current page in the message body (or, if opened from the user info popup, a link to the current post or comment).", description: "" }, subredditInfoAddThisSubredditToDashboard: { message: "Adicionar este sub-reddit ao teu painel de controlo", description: "" }, userTaggerDesc: { message: "Adds a great deal of customization around users - tagging them, ignoring them, and more. You can manage tagged users on [Manage User Tags](/r/Dashboard/#userTaggerContents).\n\n**Ignoring users:** users will *not* be ignored in modmail, moderation queue or your inbox.", description: "" }, toggleCommentsLeftEdgeWidthTitle: { message: "Toggle Comments Left Edge Width", description: "" }, accountSwitcherUpdateOtherTabsTitle: { message: "Actualizar outros separadores", description: "" }, nightModeUseSubredditStylesTitle: { message: "Usar estilos de subreddit", description: "" }, keyboardNavOnVoteCommentMoveDownDesc: { message: "Ao votar num coment\xE1rio seleccionar automaticamente o pr\xF3ximo coment\xE1rio.", description: "" }, styleTweaksNavTopTitle: { message: "Nav Top", description: "" }, gfycatUseMobileGfycatTitle: { message: "Usar Gfycat mobile", description: "" }, commentToolsItalicKeyDesc: { message: "Tecla de atalho para colocar texto a it\xE1lico.", description: "" }, messageMenuLinksDesc: { message: "Liga\xE7\xF5es para mostrar no menu da caixa de correio.", description: "" }, keyboardNavUndoMoveTitle: { message: "Undo Move", description: "" }, selectedEntryTextColorNightDesc: { message: "The text color while using Night Mode", description: "" }, subredditManagerLastUpdateDesc: { message: "Show last update information on the front page (works only if you have at least 50/100 subscriptions, [see here](/r/help/wiki/faq#wiki_some_of_my_subreddits_keep_disappearing.__why.3F) for more info).", description: "" }, betteRedditShowHiddenSortOptionsDesc: { message: "O Reddit esconde algumas op\xE7\xF5es de ordena\xE7\xE3o de coment\xE1rios (aleat\xF3rio, etc) na maioria das p\xE1ginas. Esta op\xE7\xE3o f\xE1-las aparecerem.", description: "" }, commandLineLaunchTitle: { message: "Launch", description: "" }, betteRedditDesc: { message: 'Adiciona v\xE1rias melhorias \xE0 interface do Reddit, como os links "coment\xE1rios completos", a possibilidade de mostrar novamente posts escondidos acidentalmente, e mais.', description: "" }, resTipsDesc: { message: "Adiciona ajudas com dicas/truques \xE0 consola do RES.", description: "" }, keyboardNavMoveUpSiblingDesc: { message: "Subir para o irm\xE3o anterior (nos coment\xE1rios) - salta para o irm\xE3o anterior \xE0 mesma profundidade.", description: "" }, commentStyleCommentHoverBorderDesc: { message: "Destacar a hierarquia da caixa de coment\xE1rios ao passar o cursor por cima (desactivar para maior desempenho).", description: "" }, imgurImageResolutionTitle: { message: "Imgur Image Resolution", description: "" }, commentToolsBoldKeyDesc: { message: "Tecla de atalho para colocar texto a negrito.", description: "" }, hoverWidthTitle: { message: "Largura", description: "" }, dashboardName: { message: "Painel de Controlo do RES", description: "" }, betteRedditShowLastEditedTimestampTitle: { message: "Mostrar hora da \xFAltima edi\xE7\xE3o", description: "" }, accountSwitcherKeepLoggedInTitle: { message: "Manter a sess\xE3o iniciada", description: "" }, readCommentsName: { message: "Read Comments", description: "" }, menuGearIconClickActionOpenSettings: { message: "Open settings console", description: "" }, showImagesGalleryPreloadCountDesc: { message: "Number of preloaded gallery pieces for faster browsing.", description: "" }, xPostLinksDesc: { message: "Cria liga\xE7\xF5es para os subreddits cruzados na linha principal da publica\xE7\xE3o.", description: "" }, userbarHiderUserbarStateTitle: { message: "Userbar State", description: "" }, messageMenuFadeDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes da tooltip desaparecer.", description: "" }, saveOptions: { message: "save options", description: "" }, selectedEntryScrollToSelectedThingOnLoadTitle: { message: "Scroll To Selected Thing On Load", description: "" }, styleTweaksClickToLearnMore: { message: "Clica aqui para saber mais", description: "" }, keyboardNavInboxNewTabDesc: { message: "Ir para a caixa de entrada num novo separador.", description: "" }, commentPreviewEnableForSubredditConfigDesc: { message: "Mostrar pr\xE9-visualiza\xE7\xE3o na edi\xE7\xE3o das defini\xE7\xF5es do sub-reddit.", description: "" }, quickMessageHandleSideLinksTitle: { message: "Handle Side Links", description: "" }, userTaggerAllUsers: { message: "todos os utilizadores", description: "" }, voteEnhancementsHighlightControversialTitle: { message: "Highlight Controversial", description: "" }, pageNavToTopDesc: { message: "Adicionar um icon a todas as p\xE1ginas que te leve ao topo quando clicado.", description: "" }, subredditsCategory: { message: "Subreddits", description: "" }, keyboardNavToggleChildrenDesc: { message: "Expandir/colapsar coment\xE1rios (apenas nas p\xE1ginas de coment\xE1rios).", description: "" }, commentPreviewDraftStyleTitle: { message: "Estilo de rascunho", description: "" }, RESSettingsConsole: { message: "RES settings console", description: "" }, betteRedditShowTimestampWikiDesc: { message: "Mostrar datas absolutas na wiki.", description: "" }, logoLinkInbox: { message: "Caixa de Entrada", description: "" }, searchHelperDesc: { message: "Disponibiliza ajuda acerca do uso da pesquisa.", description: "" }, keyboardNavFollowLinkNewTabFocusTitle: { message: "Activar novo separador ao seguir liga\xE7\xE3o", description: "" }, showImagesHidePinnedRedditVideosTitle: { message: "Hide pinned reddit videos", description: "" }, profileNavigatorHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditManagerLinkAllTitle: { message: "Link All", description: "" }, betteRedditShowTimestampPostsTitle: { message: "Mostrar hora - publica\xE7\xF5es", description: "" }, orangeredUnreadLinksToInboxTitle: { message: "Unread Links To Inbox", description: "" }, presetsName: { message: "Predefini\xE7\xF5es", description: "" }, styleTweaksName: { message: "Ajustes de Estilo", description: "" }, selectedEntryOutlineStyleTitle: { message: "Outline Style", description: "" }, showImagesSfwHistoryDesc: { message: "Keeps NSFW links from being added to your browser history *by the markVisited feature*.\n\n*If you chose the second option, then links will be blue again on refresh.*\n\n***This does not change your basic browser behavior. If you click on a link then it will still be added to your history normally. This is not a substitute for using your browser's privacy mode.***", description: "" }, aboutOptionsAnnouncementsTitle: { message: "Comunicados do RES", description: "" }, hoverInstancesDesc: { message: "Gerir pop-ups particulares", description: "" }, toggleCommentsLeftEdgeHoverColorTitle: { message: "Toggle Comments Left Edge Hover Color", description: "" }, keyboardNavMoveUpCommentDesc: { message: "Subir para o coment\xE1rio anterior em p\xE1ginas de coment\xE1rio em \xE1rvore.", description: "" }, betteRedditShowTimestampSidebarTitle: { message: "Mostrar hora - barra lateral", description: "" }, profileRedirectCustomFromLandingPageDesc: { message: "Redirect to a custom view of a profile when loading the landing page, e.g. /user/username/{this}", description: "" }, messageMenuFadeSpeedTitle: { message: "Velocidade de Desvanecimento", description: "" }, showImagesMarkSelftextVisitedTitle: { message: "Mark Selftext Visited", description: "" }, userInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, betteRedditHideLinkFadeDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes de uma liga\xE7\xE3o escondida desvanescer.", description: "" }, accountSwitcherShowKarmaTitle: { message: "Mostrar Carma", description: "" }, subredditManagerDisplayMultiCountsDesc: { message: "Show a badge on the subscribe button counting how many multireddits include this subreddit.", description: "" }, nightModeAutomaticNightModeTitle: { message: "Modo noturno autom\xE1tico", description: "" }, noPartDisableCommentTextareaDesc: { message: "Desativar coment\xE1rios.", description: "" }, nerReturnToPrevPageTitle: { message: "Voltar \xE0 pagina anterior.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreDesc: { message: "Before automatically restoring a backup, should a popup ask for confirmation?\n\nWarning: if this option is disabled and something goes wrong, your settings may be silently deleted. Use at your own risk.", description: "" }, multiredditNavbarFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, filteRedditEmptyNotificationToggleShowReason: { message: "Toggle show filter reasons", description: "" }, contextViewFullContextDesc: { message: 'Adicionar uma liga\xE7\xE3o "Ver todo o contexto" quando estiver numa liga\xE7\xE3o de coment\xE1rio.', description: "" }, messageMenuFadeDelayTitle: { message: "Intervalo de Desvanecimento", description: "" }, commentToolsDesc: { message: "Fornece ferramentas e atalhos para compor coment\xE1rios, publica\xE7\xF5es de texto, p\xE1ginas da wiki, e outras edi\xE7\xF5es de texto.", description: "" }, noPartName: { message: "Modo N\xE3o Participativo", description: "" }, presetsDesc: { message: "Selecciona a partir de v\xE1rias configura\xE7\xF5es predefinidas do RES. Cada predefini\xE7\xE3o activa ou desactiva v\xE1rios m\xF3dulos/op\xE7\xF5es, mas n\xE3o apaga completamente todas as tuas configura\xE7\xF5es.", description: "" }, commentDepthDefaultMinimumCommentsDesc: { message: "Default minimum number of comments required to apply custom depth.", description: "" }, commentToolsEnableOnBanMessagesDesc: { message: "Mostrar as ferramentas de coment\xE1rio na caixa de texto das notas do ban.", description: "" }, temporaryDropdownLinksDesc: { message: "Offers temporary links for dropdowns on /top and /controversial pages.", description: "" }, keyboardNavFollowSubredditNewTabDesc: { message: "Ir para o sub-reddit da liga\xE7\xE3o seleccionada num novo separador (apenas nas p\xE1ginas de liga\xE7\xE3o).", description: "" }, showImagesCrosspostsDescription: { message: "Handle crossposts from other subreddits", description: "" }, nightModeAutomaticNightModeDenied: { message: 'Access to your current location was denied. It is required to calculate sunset and sunrise times for automatic night mode. To disable this functionality, click "$1".', description: "" }, styleTweaksSubredditStyle: { message: "Estilo do sub-reddit", description: "" }, keyboardNavDownVoteTitle: { message: "Voto Negativo", description: "" }, subredditManagerStoreSubredditVisitTitle: { message: "Store Subreddit Visit", description: "" }, keyboardNavMoveDownTitle: { message: "Descer", description: "" }, penaltyBoxSuspendFeaturesTitle: { message: "Suspender Funcionalidades", description: "" }, styleTweaksHideUnvotableTitle: { message: "Hide Unvotable", description: "" }, notificationNotificationTypesTitle: { message: "Tipos de notifica\xE7\xE3o", description: "" }, userHighlightHighlightAlumDesc: { message: "Highlight Alum's comments.", description: "" }, keyboardNavOnVoteCommentMoveDownTitle: { message: "Mover para baixo ao votar em coment\xE1rios", description: "" }, hoverCloseOnMouseOutDesc: { message: "Fechar o popup ao tirar o cursor alternativamente ao bot\xE3o de fechar.", description: "" }, subredditTaggerName: { message: "Etiquetas de Subreddits", description: "" }, commentToolsHighlightIfAltAccountTitle: { message: "Destacar se for uma conta alternativa", description: "" }, userInfoDesc: { message: "Adiciona uma tooltip aos utilizadores.", description: "" }, userTaggerUseCommentsLinkAsSourceDesc: { message: "By default, store a link to the comments when tagging a user in a link post. Otherwise, the link (that the post refers to) will be used.", description: "" }, tipsAndTricks: { message: "tips & tricks", description: "" }, notificationCloseDelayTitle: { message: "Atraso de fecho", description: "" }, profileNavigatorSectionMenuTitle: { message: "Section Menu", description: "" }, logoLinkDesc: { message: "Permite-te alterar a liga\xE7\xE3o no log\xF3tipo do Reddit.", description: "" }, imgurImageResolutionDesc: { message: "Which size of imgur images should be loaded?", description: "" }, quickMessageOpenQuickMessageDesc: { message: "Keyboard shortcut to open the quick message dialog.", description: "" }, nsfwSwitchToggleText: { message: "nsfw filter", description: "" }, showParentDirectionTitle: { message: "Direction", description: "" }, dashboardDefaultPostsDesc: { message: "N\xFAmero de publica\xE7\xF5es a mostrar por defeito em cada widget.", description: "" }, pageNavDesc: { message: "Disponibiliza ferramentas para navegar na p\xE1gina.", description: "" }, menuGearIconClickActionTitle: { message: "Gear Icon Click Action", description: "" }, accountSwitcherShowCurrentUserNameDesc: { message: "Mostrar o meu utilizador actual em Mudar de Conta.", description: "" }, subredditManagerMultiCountTitle: { message: "/r/$1 est\xE1 em $2 multi-reddits", description: "" }, commentToolsStrikeKeyTitle: { message: "Rasurado", description: "" }, subredditManagerLinkMyRandomTitle: { message: "Link My Random", description: "" }, multiredditNavbarHoverDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes que a tooltip seja mostrada.", description: "" }, styleTweaksColorBlindFriendlyDesc: { message: "Use colorblind friendly styles when possible.", description: "" }, commentNavigatorShowByDefaultDesc: { message: "Mostrar o navegador de coment\xE1rios por defeito.", description: "" }, keyboardNavSaveRESTitle: { message: "Guardar no RES", description: "" }, keyboardNavOnHideMoveDownTitle: { message: "Mover para baixo ao esconder", description: "" }, showImagesAutoExpandSelfTextTitle: { message: "Auto Expand Self Text", description: "" }, userHighlightAdminColorHoverDesc: { message: "Color used to highlight Admins on hover.", description: "" }, commentStyleCommentBoxesTitle: { message: "Caixa de coment\xE1rios", description: "" }, profileNavigatorName: { message: "Navegador de Perfil", description: "" }, profileRedirectName: { message: "Profile Redirect", description: "" }, stylesheetBodyClassesDesc: { message: "CSS classes to add to <body>.", description: "" }, no: { message: "N\xE3o", description: "" }, notificationFadeOutLengthTitle: { message: "Fade Out Length", description: "" }, keyboardNavLinearScrollStyleTitle: { message: "Estilo de Deslocamento Linear", description: "" }, userbarHiderUserbarStateDesc: { message: "User bar", description: "" }, onboardingUpgradeMessage: { message: "Reddit Enhancement Suite has been upgraded to v$1.", description: "" }, keyboardNavShowParentsDesc: { message: "Mostrar os coment\xE1rios-pai.", description: "" }, profileRedirectFromLandingPageDesc: { message: "Redirect to a particular view of a profile when loading the default landing page (i.e. reddit.com/user/u_example/).", description: "" }, aboutOptionsPresets: { message: "Personaliza rapidamente o RES com v\xE1rias configura\xE7\xF5es predefinidas.", description: "" }, userHighlightOPColorDesc: { message: "Color to use to highlight OP.", description: "" }, settingsNavigationShowAllOptionsAlertDesc: { message: "If a user clicks on a link to an advanced option while advanced options are hidden, should an alert be shown?", description: "" }, commentHidePerName: { message: "Persist\xEAncia do Esconder Coment\xE1rios", description: "" }, userInfoHoverInfoDesc: { message: "Show information on user (karma, how long they've been a redditor) on hover.", description: "" }, selectedEntryName: { message: "Item Seleccionado", description: "" }, betteRedditPinHeaderTitle: { message: "Fixar Cabe\xE7alho", description: "" }, commentToolsMacroPlaceholdersTitle: { message: "Espa\xE7o reservado para as macros", description: "" }, commentPreviewEnableForBanMessagesTitle: { message: "Activar para as mensagens dos bans", description: "" }, userHighlightSelfColorHoverDesc: { message: "Color used to highlight the logged in user on hover.", description: "" }, orangeredOpenMailInNewTabTitle: { message: "Abrir correio num novo separador", description: "" }, versionDesc: { message: "Lida com as verifica\xE7\xF5es de vers\xE3o actual/anterior.", description: "" }, selectedEntryBackgroundColorTitle: { message: "Background Color", description: "" }, showImagesMediaControlsPositionTitle: { message: "Media Controls Position", description: "" }, userbarHiderContentHiddenNotification: { message: "O teu nome de utilizador, carma, defini\xE7\xF5es, roda do RES e afins est\xE3o escondidas. Poder\xE1s mostr\xE1-las novamente ao clicar no bot\xE3o $1 no topo superior direito.", description: "" }, selectedEntryAutoSelectOnScrollDesc: { message: "Automatically select the topmost item while scrolling", description: "" }, keyboardNavFollowLinkTitle: { message: "Seguir Liga\xE7\xE3o", description: "" }, keyboardNavMoveBottomDesc: { message: "Mover para o fundo da lista (em p\xE1ginas de liga\xE7\xE3o).", description: "" }, searchHelperUserFilterBySubredditTitle: { message: "User Filter By Subreddit", description: "" }, styleTweaksHighlightTopLevelSizeTitle: { message: "Highlight Top Level Size", description: "" }, backupAndRestoreAutomaticBackupsTitle: { message: "Automatic Backups", description: "" }, keyboardNavUpVoteWithoutTogglingDesc: { message: "Dar voto positivo \xE0 liga\xE7\xE3o ou coment\xE1rio seleccionados (mas n\xE3o remover o voto positivo).", description: "" }, multiredditNavbarFadeDelayTitle: { message: "Atraso de desvanecimento.", description: "" }, commentDepthCommentPermaLinksTitle: { message: "Liga\xE7\xF5es permanentes de coment\xE1rios", description: "" }, aboutOptionsLicenseTitle: { message: "Licen\xE7a", description: "" }, showImagesSelfTextMaxHeightTitle: { message: "Self Text Max Height", description: "" }, showImagesCaptionsPositionTitle: { message: "Captions Position", description: "" }, logoLinkAll: { message: "/r/all", description: "" }, commentPreviewEnableForPostsDesc: { message: "Mostrar pr\xE9-visualiza\xE7\xE3o para as publica\xE7\xF5es.", description: "" }, keyboardNavImageMoveRightTitle: { message: "Mover imagem para a direita", description: "" }, keyboardNavPrevPageDesc: { message: "Ir para a p\xE1gina anterior (apenas nas p\xE1ginas de ligastem de liga\xE7\xF5es).", description: "" }, newCommentCountMonitorPostsVisitedTitle: { message: "Monitor Posts Visited", description: "" }, accountSwitcherUserSwitched: { message: "You switched to /u/$1.", description: "" }, betteRedditCommentsLinksNewTabDesc: { message: "Abrir liga\xE7\xF5es em coment\xE1rios num novo separador.", description: "" }, userHighlightAutoColorUsingDesc: { message: "Select a method for setting colors for usernames.", description: "" }, stylesheetSubredditClassTitle: { message: "Subreddit Class", description: "" }, commentToolsMacroPlaceholdersDesc: { message: "When using macros, replace placeholders in text via pop-up prompt.\nExample macro text:\nThe {{adj1}} {{adj2}} {{animal}} jumped over the lazy {{dog_color}} dog. The {{animal}} is so {{adj1}}!\n\nSome placeholders are automatically filled in when you use the macro:\n\n**{{subreddit}}**: The current subreddit, in the form /r/subreddit.\n\n**{{me}}**, **{{my_username}}**: Your username, in the form /u/username.\n\n**{{op}}**, **{{op_username}}**: The username of the original poster, in the form /u/username. On a post's comments page, this is the person who made the post; on a PM / modmail, this is the person who started the conversation.\n\n**{{url}}**: The current page's URL.\n\n**{{reply_to}}**, **{{reply_to_username}}**: The username of person you're replying to, in the form /u/username.\n\n**{{selected}}**, **{{selection}}**: The text which is currently selected (highlighted).\n\n**{{escaped}}**: The selected text, escaped for snudown/markdown.\n\n**{{now}}**: The current date and time in your locale.\n\n**{{today}}**: The current date in your locale.\n\n**{{linkflair}}**: On comments pages, returns the flair text of the original link.", description: "" }, profileNavigatorFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoCommentKarma: { message: "Carma de Coment\xE1rios:", description: "" }, settingsConsoleDesc: { message: "Gere as tuas defini\xE7\xF5es do RES.", description: "" }, userInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userHighlightModColorTitle: { message: "Mod Color", description: "" }, subredditManagerAlwaysApplySuffixToMultiTitle: { message: "Always Apply Suffix To Multi", description: "" }, showParentHoverDelayTitle: { message: "Hover Delay", description: "" }, messageMenuLinksTitle: { message: "Liga\xE7\xF5es", description: "" }, styleTweaksHighlightTopLevelTitle: { message: "Highlight Top Level", description: "" }, betteRedditCommentsLinksNewTabTitle: { message: "Liga\xE7\xF5es dos coment\xE1rios em novos separadores", description: "" }, subredditInfoErrorLoadingSubredditInfo: { message: "Erro ao carregar a informa\xE7\xE3o do sub-reddit.", description: "" }, accountSwitcherName: { message: "Mudar de Conta", description: "" }, keyboardNavMoveDownSiblingDesc: { message: "Descer para o irm\xE3o seguinte (nos coment\xE1rios) - salta para o pr\xF3ximo irm\xE3o \xE0 mesma profundidade.", description: "" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedDesc: { message: "In selftexts, expand the first visible potentially non-muted expando.", description: "" }, profileRedirectFromLandingPageNotificationText: { message: 'RES can redirect to the "overview" legacy user page or other views of the profile. This is especially useful for moderating.', description: "" }, userInfoFadeSpeedTitle: { message: "Fade Speed", description: "" }, searchHelperLegacySearchTitle: { message: "Pesquisa Obsoleta", description: "" }, nightModeNightSwitchTitle: { message: "Interruptor de noite", description: "" }, userTaggerStoreSourceLinkTitle: { message: "Store Source Link", description: "" }, userInfoFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, commentPreviewEnableForPostsTitle: { message: "Activar para as publica\xE7\xF5es", description: "" }, showImagesImageZoomTitle: { message: "Image Zoom", description: "" }, showKarmaShowCommentKarmaTitle: { message: "Show Comment Karma", description: "" }, subredditManagerLinkUsersTitle: { message: "Link Users", description: "" }, keyboardNavToggleHelpDesc: { message: "Mostrar ajuda para as teclas de atalho.", description: "" }, presetsLiteTitle: { message: "Lite", description: "" }, dashboardDashboardShortcutTitle: { message: "Atalho do painel de controlo", description: "" }, showImagesMaxSimultaneousPlayingDesc: { message: "Auto-play at most this many muted videos simultaneously. (0 for no limit)", description: "" }, selectedEntryOutlineStyleNightDesc: { message: "Border appearance using Night Mode (as above)", description: "" }, keyboardNavHideTitle: { message: "Esconder", description: "" }, userInfoLink: { message: "Liga\xE7\xE3o:", description: "" }, filteRedditAddCustomFilter: { message: "+add custom filter", description: "" }, submitHelperTimeAgo: { message: "h\xE1 $1", description: "As in '1 day ago'" }, selectedEntryBackgroundColorNightDesc: { message: "The background color while using Night Mode", description: "" }, userTaggerTrackVoteWeightTitle: { message: "Track Vote Weight", description: "" }, userHighlightHighlightFriendDesc: { message: "Highlight Friends' comments.", description: "" }, presetsCleanSlateTitle: { message: "Clean Slate", description: "" }, betteRedditVideoTimesDesc: { message: "Mostrar a dura\xE7\xE3o dos v\xEDdeos quando poss\xEDvel.", description: "" }, userTaggerIgnoredPlaceholder: { message: "ignorado.", description: "Replaces the content of ignored comments." }, keyboardNavReplyTitle: { message: "Responder", description: "" }, accountSwitcherSimpleArrow: { message: "seta simples", description: "" }, showImagesAutoExpandTypesTitle: { message: "Auto Expand Types", description: "" }, subredditManagerShortcutDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown. (This particularly applies for shortcuts to multi-subreddits like sub1+sub2+sub3.)", description: "" }, filteRedditFlairTitle: { message: "Flair", description: "" }, messageMenuUseQuickMessageTitle: { message: "Usar a Mensagem R\xE1pida", description: "" }, selectedEntrySelectLastThingOnLoadTitle: { message: "Select Last Thing On Load", description: "" }, userTaggerCommandLineDescription: { message: "marca o autor do coment\xE1rio/liga\xE7\xE3o actualmente seleccionado.", description: "" }, betteRedditHideLinkInstantDesc: { message: "Hide links instantaneously.", description: "" }, settingsNavigationShowAllOptionsDesc: { message: "All options are displayed by default. Uncheck this box if you would like to hide advanced options.", description: "" }, betteRedditFixHideLinksTitle: { message: "Corrigir Liga\xE7\xF5es 'Ocultar'", description: "" }, commentNavName: { message: "Navegador de Coment\xE1rios", description: "" }, userHighlightDontHighlightFirstCommentTitle: { message: "Dont Highlight First Comment", description: "" }, keyboardNavToggleCommentNavigatorDesc: { message: "Abrir o Navegador de Coment\xE1rios.", description: "" }, presetsLiteDesc: { message: "RES Lite: s\xF3 as funcionalidades populares", description: "" }, commentToolsCtrlEnterSubmitsCommentsDesc: { message: "Ao fazeres ctrl+enter ou cmd+enter o teu coment\xE1rio/edi\xE7\xE3o da wiki ser\xE1 enviado.", description: "" }, onboardingUpdateNotifictionNothing: { message: "Nada", description: "" }, filteRedditShowFilterlineTitle: { message: "Mostrar linha de filtros", description: "" }, multiredditNavbarSectionLinksTitle: { message: "Section Links", description: "" }, hideChildCommentsDesc: { message: "Permite-lhe esconder coment\xE1rios-filho.", description: "" }, accountSwitcherOptPrompt: { message: "Enter the 6 digit code from your authenticator app for $1", description: "" }, userHighlightAdminColorHoverTitle: { message: "Admin Color Hover", description: "" }, submitHelperName: { message: "Assistente de Publica\xE7\xE3o", description: "" }, myDashboard: { message: "my dashboard", description: "" }, searchHelperSearchBySubredditDesc: { message: "Search the current subreddit by default when using the search box, instead of all of reddit.", description: "" }, troubleshooterTestEnvironmentTitle: { message: "Test Environment", description: "" }, showImagesBufferScreensTitle: { message: "Buffer Screens", description: "" }, faviconNotificationTextColorDesc: { message: "Change the text color of the notification on the favicon.", description: "" }, saveCommentsDesc: { message: `To save comments with RES click the **save-RES** button below a comment. You can view saved comments on your user page under the [saved](/user/me/saved/#comments) tab. Saving with RES saves a comment locally in your browser. This means that you can view the comment you saved *as it looked when you saved it*, even if it is later edited or deleted. You can save comments with RES if you are not logged in, or if you are logged in to any account\u2014all the comments will be visible in one location. You will only be able to view saved RES comments on whichever browser you have RES installed on. When saving comments with reddit, you must be logged into an account; the comment is saved specifically for that account; it won't be shown if you switch to a different account or log out. You can view these comments whenever you are logged into the reddit account you saved them from, including on other browsers or devices. Visually, saving comments with reddit looks the same as saving with RES\u2014but the text is not saved locally, so the saved comment text shows the *current* state of the comment. If the comment has been edited or deleted since you saved it, the text that displays on your account's "saved" page will look different than it looked when you saved it. If you have [reddit gold](/gold/about) on an account, you can add a category/tag to comments you have saved with reddit, then filter saved comments/posts by category. (You cannot sort or filter comments saved with RES.)`, description: "" }, showImagesHighlightSpoilerButtonTitle: { message: "Highlight Spoiler Button", description: "" }, backupAndRestoreAutomaticBackupsDesc: { message: "Sync your backups to the specified provider.\n\nSyncing will occur periodically on pageload. If you use two computers simultaneously, some changes may be lost.", description: "" }, userHighlightSelfColorHoverTitle: { message: "Self Color Hover", description: "" }, dashboardDefaultSortTitle: { message: "Ordena\xE7\xE3o predefinida", description: "" }, troubleshooterResetToFactoryTitle: { message: "Reset To Factory", description: "" }, commentStyleCommentRoundedTitle: { message: "Coment\xE1rios arredondados", description: "" }, keyboardNavImageSizeUpTitle: { message: "Aumentar Imagem", description: "" }, betteRedditUnhideSubmissionError: { message: "Sorry, there was an error trying to unhide your submission. Try clicking again.", description: "" }, styleTweaksToggleSubredditStyleOnOffFor: { message: "ligar/desligar estilo do sub-reddit $1 para: $2", description: "As in 'toggle subreddit style off for: subreddit'" }, stylesheetLoggedInUserClassTitle: { message: "Logged In User Class", description: "" }, commentsCategory: { message: "Coment\xE1rios", description: "" }, commentToolsStrikeKeyDesc: { message: "Tecla de atalho para rasurar o texto.", description: "" }, filteRedditShowFilterlineDesc: { message: "Show Filterline controls by default.", description: "" }, pageNavShowLinkDesc: { message: "Show information about the submission when scrolling up on comments pages.", description: "" }, searchHelperHideSearchOptionsTitle: { message: "Hide Search Options", description: "" }, logoLinkMyUserPage: { message: "A minha p\xE1gina de utilizador", description: "" }, keyboardNavUseGoModeDesc: { message: 'Requer iniciar o Modo Ir antes de usar atalhos "ir para".', description: "" }, easterEggName: { message: "Easter Egg", description: "" }, commentToolsSuperKeyDesc: { message: "Tecla de atalho para colocar o texto em \xEDndice.", description: "" }, keyboardNavUpVoteTitle: { message: "Voto Positivo", description: "" }, notificationNotificationTypesDesc: { message: "Gerir diferentes tipos de notifica\xE7\xE3o", description: "" }, subredditInfoRequireDirectLinkDesc: { message: "Should the popup appear only for direct /r/ links, or for all links to a subreddit?", description: "" }, penaltyBoxFeaturesMonitoring: { message: "monitoring", description: "" }, accountSwitcherDesc: { message: "Store username/password pairs and switch accounts instantly while browsing Reddit!\n\nIf you forget a password which is stored in Account Switcher, [you can recover them from RES settings](/r/Enhancement/wiki/faq/passwords). Be aware that RES offers very little protection for stored passwords, so be careful when sharing your computer or settings!\n\nLeave a password box blank to be prompted for a password every time you switch to that account.", description: "" }, logoLinkHot: { message: "/hot", description: "" }, quickMessageHandleContentLinksDesc: { message: "Open the quick message dialog when clicking on reddit.com/message/compose links in comments, selftext, or wiki pages.", description: "" }, orangeredUpdateCurrentTabDesc: { message: "Update mail buttons on current tab when RES checks for orangereds.", description: "" }, penaltyBoxDelayFeaturesDesc: { message: "Throttle showing features which have a high penalty.", description: "" }, userInfoPostKarma: { message: "Carma de Publica\xE7\xF5es:", description: "" }, styleTweaksToggleSubredditStyleOnOff: { message: "ligar/desligar estilo do sub-reddit $1", description: "As in 'toggle subreddit style off'" }, onboardingUpgradeCta: { message: "Ler mais", description: "" }, troubleshooterClearTagsDesc: { message: "Remove all entries for users with between +1 and -1 vote tallies (only non-tagged users).", description: "" }, logoLinkRedditLogoDestinationTitle: { message: "Destino do Log\xF3tipo do Reddit", description: "" }, filteRedditForceSyncFiltersLabel: { message: "sync", description: "" }, aboutDesc: { message: "Reddit Enhancement Suite is a collection of modules that makes browsing reddit a whole lot easier.", description: "" }, commentPreviewEnableForSubredditConfigTitle: { message: "Activar para as configura\xE7\xF5es do sub-reddit", description: "" }, accountSwitcherShowKarmaDesc: { message: "Mostrar o carma de publica\xE7\xF5es e coment\xE1rio de cada conta em Mudar de Conta.", description: "" }, keyboardNavDesc: { message: "Navega\xE7\xE3o com o teclado para o Reddit!", description: "" }, showImagesClippyDesc: { message: 'Show educational info, such as showing "drag to resize" in the media controls.', description: "" }, userHighlightOPColorHoverDesc: { message: "Color used to highlight OP on hover.", description: "" }, userTaggerVWNumberDesc: { message: "Show the number (i.e. [+6]) rather than [vw]", description: "" }, pageNavToCommentTitle: { message: "To New Comment Area", description: "" }, showImagesMediaControlsDesc: { message: "Show additional image controls on hover.", description: "" }, keyboardNavMoveToParentDesc: { message: "Mover para o pai (nos coment\xE1rios).", description: "" }, keyboardNavGoModeDesc: { message: 'Entrar no "Modo de Ir" (requerido para usar os atalhos "ir para" abaixo).', description: "" }, hideChildCommentsHideNestedDesc: { message: "Hide children for nested comments when hiding all child comments.", description: "" }, searchHelperSearchPageTabsTitle: { message: "Search Page Tabs", description: "" }, multiredditNavbarAddShortcut: { message: "+add multireddit section shortcut", description: "" }, toggleCommentsLeftEdgeCollapsedColorTitle: { message: "Toggle Comments Left Edge Collapsed Color", description: "" }, scrollOnCollapseDesc: { message: "Scrolls to next comment when a comment is collapsed.", description: "" }, commandLineName: { message: "Linha de Comandos do RES", description: "" }, keyboardNavLinkNumberAltModeModifierDesc: { message: "Modifier used to invert toggling expando / opening link action.", description: "" }, keyboardNavImageMoveLeftTitle: { message: "Mover imagem para a esquerda", description: "" }, styleTweaksHighlightEditedTimeDesc: { message: 'Make edited timestamps bold (e.g. "last edited 50 minutes ago").', description: "" }, noPartDesc: { message: 'Helps discourage brigading and helps you avoid getting banned, by warning against voting or commenting when following "No Participation" (np) links, and by providing options to prevent you from accidentally participating.\n\n[Find out more about "No Participation".](/r/NoParticipation/wiki/intro)', description: "" }, keyboardNavProfileViewTitle: { message: "New Profile", description: "" }, userInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, penaltyBoxFeaturesAddRowText: { message: "manually register feature", description: "" }, userTaggerShowTaggingIconTitle: { message: "Show Tagging Icon", description: "" }, dashboardDesc: { message: "O Painel de Controlo do RES abriga uma s\xE9rie de funcionalidades como widgets e outras ferramentas \xFAteis.", description: "" }, commentToolsKeepMacroListOpenDesc: { message: "N\xE3o esconder a lista ap\xF3s seleccionar uma macro da lista.", description: "" }, filteRedditSubredditsTitle: { message: "Sub-reddits", description: "" }, filteRedditAllowNSFWWhere: { message: "where", description: "" }, keyboardNavImageMoveDownDesc: { message: "Descer as imagens na \xE1rea destacada da publica\xE7\xE3o.", description: "" }, backupAndRestoreWarnBeforeAutomaticRestoreTitle: { message: "Warn Before Automatic Restore", description: "" }, keyboardNavFollowPermalinkNewTabTitle: { message: "Seguir liga\xE7\xE3o permanente num novo separador", description: "" }, keyboardNavImageSizeAnyHeightDesc: { message: "Remove as restri\xE7\xF5es de altura das imagens na \xE1rea destacada das publica\xE7\xF5es.", description: "" }, stylesheetMultiredditClassDesc: { message: "When browsing a multireddit, add the multireddit name as a class to the body.\nFor example, /u/ExampleUser/m/ExampleMulti adds `body.res-user-exampleuser-m-examplemulti`.", description: "" }, userTaggerTagUser: { message: "marcar utilizador $1", description: "" }, searchHelperLegacySearchDesc: { message: 'Request the "legacy layout" feature for reddit search.\n\n\nThis will only be available for a limited time.', description: "" }, keyboardNavFollowProfileNewTabTitle: { message: "Follow Profile New Tab", description: "" }, showImagesConvertGifstoGfycatTitle: { message: "Convert Gifs to Gfycat", description: "" }, submitIssueName: { message: "Comunicar um Problema", description: "" }, aboutOptionsFAQTitle: { message: "Perguntas Frequentes", description: "" }, accountSwitcherShowUserDetailsTitle: { message: "Mostrar os detalhes do utilizador", description: "" }, selectedEntryAddLineDesc: { message: "Show a line on right side.", description: "" }, redditUserInfoHideDesc: { message: "Hide the new Reddit tooltip.", description: "" }, nightModeDesc: { message: "Uma vers\xE3o do Reddit mais escura e amiga dos olhos, ideal para navegar \xE1 noite.\n\nNota: Usar este bot\xE3o de on/off vai desactivar totalmente todas as fun\xE7\xF5es do m\xF3dulo do modo nocturno.\n\nPara simplesmente desactivar o modo noite, usa o bot\xE3o nightModeOn abaixo.", description: "" }, styleTweaksSubredditStyleDisabled: { message: "Estilo do sub-reddit desactivado para o sub-reddit: $1.", description: "" }, readCommentsCleanCommentsTitle: { message: "Clean Comments", description: "" }, userHighlightFontColorDesc: { message: "Color for highlighted text.", description: "" }, orangeredUpdateCurrentTabTitle: { message: "Atualizar separador atual", description: "" }, keyboardNavCommentNavigatorMoveUpTitle: { message: "Navegador de Coment\xE1rios - Subir", description: "" }, betteRedditHideLinkInstantTitle: { message: "Hide Link Instant", description: "" }, keyboardNavProfileDesc: { message: "Ir para o perfil.", description: "" }, dashboardTagsPerPageDesc: { message: "How many user tags to show per page on the [my users tags](/r/Dashboard/#userTaggerContents) tab. (enter zero to show all on one page)", description: "" }, keyboardNavFollowLinkAndCommentsNewTabDesc: { message: "Ver liga\xE7\xE3o e coment\xE1rios em novos separadores.", description: "" }, onboardingUpdateNotificationName: { message: "Update Notification", description: "" }, multiredditNavbarFadeDelayDesc: { message: "Delay, in milliseconds, before hover tooltip fades away.", description: "" }, nightModeNightModeStartDesc: { message: "Altura do dia em que o modo noturno come\xE7a automaticamente.", description: "" }, showImagesMediaControlsPositionDesc: { message: "Set position of media controls.", description: "" }, styleTweaksHighlightTopLevelSizeDesc: { message: "Specify how thick (in pixels) of a bar is used to separate top-level comments.", description: "" }, styleTweaksShowExpandosTitle: { message: "Show Expandos", description: "" }, nerAutoLoadDesc: { message: "Carregar automaticamente uma nova p\xE1gina quando fazes scroll (se desligado, clicar para carregar).", description: "" }, showImagesMaxSimultaneousPlayingTitle: { message: "Max Simultaneous Playing", description: "" }, voteEnhancementsUserDefinedLinkColorationDesc: { message: "Choose a color for colorLinkScore with a threshold of your choice.", description: "" }, showImagesOnlyPlayMutedWhenVisibleTitle: { message: "Only Play Muted When Visible", description: "" }, notificationsSticky: { message: "afixado", description: "" }, userHighlightAdminColorTitle: { message: "Admin Color", description: "" }, commentToolsWikiAutocompleteDesc: { message: "Show wiki autocomplete tool when typing in posts, comments, and replies.", description: "" }, singleClickOpenFrontpageDesc: { message: "Open the subreddit front page when clicking [l=c] on self posts.", description: "" }, backupAndRestoreGoogleAccountDesc: { message: "If, and only if, you have multiple Google accounts logged in at once, enter the email of the account you want to use.\n\nIn most cases you will not need to use this option.", description: "" }, subredditInfoFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, keyboardNavImageSizeDownTitle: { message: "Diminuir Imagem", description: "" }, orangeredHideEmptyModMailDesc: { message: "Hide the mod mail button when inbox is empty.", description: "" }, keyboardNavOverviewLegacyTitle: { message: "Legacy Profile", description: "" }, keyboardNavLinkNumberAltModeModifierTitle: { message: "Alt mode modifier", description: "" }, betteRedditRestoreSavedTabDesc: { message: 'O separador guardado est\xE1 agora localizado a barra de multi-reddit. Isto ir\xE1 devolver uma liga\xE7\xE3o "guardado" ao cabe\xE7alho (ao lado dos separadores "populares", "novos", etc).', description: "" }, toggleCommentsLeftEdgeColorDesc: { message: "Cor da barra por defeito", description: "" }, toggleOff: { message: "desligado", description: "" }, commentToolsSubredditAutocompleteDesc: { message: "Mostrar a ferramenta para auto-completar ao escrever em publica\xE7\xF5es, coment\xE1rios e respostas.", description: "" }, keyboardNavImageSizeDownFineTitle: { message: "Diminuir Imagem (refinado)", description: "" }, userInfoHighlightButtonDesc: { message: 'Show "highlight" button in user hover info, for distinguishing posts/comments from particular users.', description: "" }, betteRedditVideoYouTubeTitle: { message: "YouTube title: $1", description: "" }, betteRedditShowTimestampWikiTitle: { message: "Mostrar hora - Wiki", description: "" }, commentToolsMacrosDesc: { message: "Adicionar bot\xF5es para inserir fragmentos de texto usados frequentemente.", description: "" }, keyboardNavProfileTitle: { message: "Perfil", description: "" }, subredditManagerLinkAllDesc: { message: 'Show "ALL" link in subreddit manager.', description: "" }, showImagesShowSiteAttributionTitle: { message: "Show Site Attribution", description: "" }, subredditManagerLinkModqueueTitle: { message: "Link Modqueue", description: "" }, filteRedditFilterSubredditsFromTitle: { message: "Filtrar sub-reddits de", description: "" }, userTaggerShowAnyway: { message: "mostrar \xE0 mesma?", description: "for showing ignored comments" }, troubleshooterClearCacheTitle: { message: "Clear Cache", description: "" }, filteRedditEverywhere: { message: "Everywhere", description: "" }, redditUserInfoHideTitle: { message: "Hide Native Tooltip", description: "" }, accountSwitcherAddAccount: { message: "+adicionar conta", description: "" }, showImagesBufferScreensDesc: { message: "Hide images that are further than x screens away to save memory. A higher value means less flicker, but less memory savings.", description: "" }, userInfoHighlight: { message: "Destacar", description: "" }, filteRedditExcludeModqueueDesc: { message: "N\xE3o filtrar nada em p\xE1ginas da fila de moderador (fila de moderador, den\xFAncias, lixo, etc).", description: "" }, filteRedditEmptyNotificationHeader: { message: "All posts are filtered out", description: "" }, troubleshooterTestNotificationsDesc: { message: "Test notifications.", description: "" }, voteEnhancementsColorLinkScoreTitle: { message: "Color Link Score", description: "" }, subredditInfoSubscribers: { message: "Subscritores:", description: "" }, keyboardNavMoveUpThreadDesc: { message: "Sobe para o coment\xE1rio no topo do t\xF3pico anterior (nos coment\xE1rios).", description: "" }, commentToolsFormattingToolButtonsDesc: { message: "Mostrar as ferramentas de formata\xE7\xE3o (negrito, it\xE1lico, tabelas, etc) ao formul\xE1rio de edi\xE7\xE3o para publica\xE7\xF5es, coment\xE1rios e outras \xE1reas de snudown/markdown.", description: "" }, showImagesGalleryRememberWidthTitle: { message: "Gallery Remember Width", description: "" }, subredditManagerLinkModDesc: { message: 'Show "MOD" link in subreddit manager.', description: "" }, troubleshooterBreakpointLabel: { message: "Pause JavaScript", description: "" }, subredditManagerFilterListDesc: { message: "Show the subreddit list quick-filter box at the top of the your subreddits list.", description: "" }, keyboardNavMoveBottomTitle: { message: "Mover Para o Fundo", description: "" }, backupAndRestoreBackupDate: { message: "Backup date: $1", description: "" }, userHighlightModColorHoverTitle: { message: "Mod Color Hover", description: "" }, spoilerTagsName: { message: "Etiquetas Spoiler Globais", description: "" }, betteRedditVideoUploadedDesc: { message: "Mostrar a data de envio dos v\xEDdeos quando poss\xEDvel.", description: "" }, accountSwitcherLoginError: { message: "Could not log in as $1 because either the username or password is wrong.\n\nCheck your settings?", description: "" }, showImagesAutoExpandTypesDesc: { message: 'Media types to be automatically expanded when using "show images" or autoExpandSelfText.', description: "" }, saveCommentsName: { message: "Guardar Coment\xE1rios", description: "" }, hoverFadeSpeedDesc: { message: "Intervalo de desvanecimento (em segundos)", description: "" }, betteRedditShowTimestampPostsDesc: { message: "Mostrar datas absolutas (Sun Nov 16 20:14:56 2014 UTC) em vez de datas relativas (H\xE1 7 dias) nas publica\xE7\xF5es.", description: "" }, submissionsCategory: { message: "Publica\xE7\xF5es", description: "" }, keyboardNavSaveCommentDesc: { message: "Guarda o coment\xE1rio actual na tua conta do Reddit. Isto fica acess\xEDvel a partir de qualquer s\xEDtio em que tenhas sess\xE3o iniciada, mas n\xE3o preserva o texto original caso este seja editado ou apagado.", description: "" }, keyboardNavSavePostTitle: { message: "Guardar Publica\xE7\xE3o", description: "" }, filteRedditFlairDesc: { message: "Hide posts where certain keywords are in the post's link flair.", description: "" }, userHighlightFontColorTitle: { message: "Font Color", description: "" }, searchHelperAddSearchOptionsTitle: { message: "Add Search Options", description: "" }, penaltyBoxDesc: { message: "Automatically delay or disable RES features which go unused.", description: "" }, searchHelperSearchByFlairDesc: { message: "When clicking on a post's flair, search its subreddit for that flair.\nMay not work in some subreddits that hide the actual flair and add pseudo-flair with CSS (only workaround is to disable subreddit style).", description: "" }, subredditInfoDesc: { message: "Adiciona uma tooltip aos subreddits.", description: "" }, backupAndRestoreSavedNotification: { message: "Backup saved to $1.", description: "" }, nightModeNightSwitchDesc: { message: "Ativa o controlo de modo noturno, para alternar entre modo diurno ou noturno de reddit localizado no menu suspenso de Defini\xE7\xF5es.", description: "" }, commentDepthDesc: { message: "Allows you to set the preferred depth of comments you wish to see when clicking on comments links.\n\n0 = Everything, 1 = Root level, 2 = Responses to root level, 3 = Responses to responses to root level, etc.", description: "" }, stylesheetMultiredditClassTitle: { message: "Multireddit Class", description: "" }, subredditManagerLinkSavedDesc: { message: 'Show "SAVED" link in subreddit manager.', description: "" }, noPartEvenIfSubscriberDesc: { message: "Enable NP mode in subreddits where you're a subscriber.", description: "" }, commentToolsQuoteKeyDesc: { message: "Tecla de atalho para citar texto.", description: "" }, submitHelperFocusFormOnLoadDesc: { message: "Put keyboard focus into the form when the page loads.", description: "" }, nightModeNightModeEndDesc: { message: "Altura do dia em que o modo noturno automaticamente termina.", description: "" }, nerPauseAfterEveryDesc: { message: "After auto-loading a certain number of pages, pause the auto-loader.\n\n0 means Never-Ending Reddit will only pause when you click the play/pause button in the top right corner.", description: "" }, imgurPreferResAlbumsTitle: { message: "Prefer RES Albums", description: "" }, userInfoUseQuickMessageTitle: { message: "Use Quick Message", description: "" }, tableToolsSortTitle: { message: "Sort", description: "" }, RESSettings: { message: "RES settings", description: "" }, filteRedditNSFWfilterDesc: { message: "Filtrar todas as liga\xE7\xF5es marcadas como NSFW.", description: "" }, logoLinkName: { message: "Liga\xE7\xE3o do Log\xF3tipo", description: "" }, profileRedirectFromLandingPageNotificationTitle: { message: "Change Profile Landing Page", description: "" }, aboutOptionsBugs: { message: "Caso alguma coisa n\xE3o esteja a funcionar correctamente visita /r/RESissues para obteres ajuda.", description: "" }, nightModeAutomaticNightModeNone: { message: "Desactivado", description: "" }, keyboardNavMoveUpDesc: { message: "Subir para a liga\xE7\xE3o ou coment\xE1rio anteriores em listas planas.", description: "" }, showImagesOpenInNewWindowDesc: { message: "Open images in a new tab/window when clicked?", description: "" }, userHighlightDontHighlightFirstCommentDesc: { message: `Don't highlight the "first commenter" on the first comment in a tree.`, description: "" }, showImagesDisplayOriginalResolutionTitle: { message: "Display Original Resolution", description: "" }, troubleshooterNoActionTaken: { message: "N\xE3o foi efectuada nenhuma ac\xE7\xE3o.", description: "" }, commentPreviewEnableForWikiTitle: { message: "Activar para a wiki", description: "" }, filteRedditExcludeUserPagesTitle: { message: "Excluir p\xE1ginas de utilizadores", description: "" }, troubleshooterResetLabel: { message: "Reset", description: "" }, subredditManagerButtonEditTitle: { message: "Button Edit", description: "" }, hoverInstancesName: { message: "nome", description: "" }, filteRedditCustomFiltersPTitle: { message: "Custom Post Filters", description: "" }, selectedEntryAutoSelectOnScrollTitle: { message: "Auto Select On Scroll", description: "" }, showImagesConserveMemoryTitle: { message: "Conserve Memory", description: "" }, showImagesName: { message: "Visualizador de Imagens Incorporado", description: "" }, commentStyleCommentIndentDesc: { message: "Indentar coment\xE1rios por [x] p\xEDxeis (meter apenas o n\xFAmero, sem o 'px').", description: "" }, numComments: { message: "$1 comments", description: "" }, troubleshooterDisableRESTitle: { message: "Disable RES", description: "" }, keyboardNavDownVoteWithoutTogglingTitle: { message: "Dar voto negativo sem alternar", description: "" }, userInfoRedditorSince: { message: "Redditor desde:", description: "" }, userTaggerShow: { message: "Mostrar", description: "As in 'Show tagged users' or 'Show all users'" }, showKarmaShowCommentKarmaDesc: { message: "Show comment karma in addition to post karma.", description: "" }, hoverFadeSpeedTitle: { message: "Velocidade de Desvanecimento", description: "" }, necLoadChildCommentsTitle: { message: "Carregar Sub-Coment\xE1rios", description: "" }, showParentName: { message: "Mostrar Pai ao passar com o cursor.", description: "" }, keyboardNavLinkNumbersTitle: { message: "Link Numbers", description: "" }, showImagesShowViewImagesTabDesc: { message: "Show a 'show images' tab at the top of each subreddit, to easily toggle showing all images at once.", description: "" }, accountSwitcherShowGoldDesc: { message: "Mostrar o estatuto de utilizador de ouro em Mudar de Conta.", description: "" }, keyboardNavMoveToParentTitle: { message: "Mover para o pai", description: "" }, troubleshooterTestEnvironmentLabel: { message: "Test environment", description: "" }, toggleCommentsOnClickLeftEdgeTitle: { message: "Toggle Comments On Click Left Edge", description: "" }, betteRedditShowTimestampCommentsTitle: { message: "Mostrar hora - coment\xE1rios", description: "" }, backupAndRestoreImported: { message: "Your RES storage has been imported. Reloading reddit.", description: "" }, showImagesConserveMemoryDesc: { message: "Conserve memory by temporarily hiding images when they are offscreen.", description: "" }, announcementsMarkAsRead: { message: "mark as read", description: "" }, styleTweaksDisableAnimationsDesc: { message: "Discourage CSS3 animations. (This will apply to all of reddit, every subreddit, and RES functionality. However, subreddits might still have some animations.)", description: "" }, accountSwitcherAccountsTitle: { message: "Contas", description: "" }, spoilerTagsDesc: { message: "Esconder spoilers nas p\xE1ginas de perfil de utilizador.", description: "" }, onboardingUpdateNotifictionNotification: { message: "Show pop-up notification", description: "" }, keyboardNavDownVoteWithoutTogglingDesc: { message: "Dar voto negativo \xE0 liga\xE7\xE3o ou coment\xE1rio seleccionados (mas n\xE3o remover o voto negativo).", description: "" }, backupAndRestoreImportedOtherTabs: { message: "Storage has been imported in another tab. Reload for settings to take effect?", description: "" }, subredditManagerLinkPopularTitle: { message: "Link Popular", description: "" }, showKarmaShowGoldTitle: { message: "Show Gold", description: "" }, keyboardNavLinkToggleExpandoTitle: { message: "Link Toggle Expando", description: "" }, userTaggerTruncateTagDesc: { message: "Truncates long tags to 30 characters. Hovering over them reveals the full content.", description: "" }, commentDepthCommentDepth: { message: "profundidade de coment\xE1rios", description: "" }, keyboardNavImageMoveDownTitle: { message: "Descer Imagem", description: "" }, keyboardNavPreviousGalleryImageTitle: { message: "Imagem anterior da galeria", description: "" }, userTaggerTaggedUsers: { message: "utilizadores com etiquetas", description: "" }, subredditInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, keyboardNavMoveUpThreadTitle: { message: "Subir T\xF3pico", description: "" }, quickMessageHandleContentLinksTitle: { message: "Handle Content Links", description: "" }, styleTweaksPostTitleCapitalizationTitle: { message: "Post Title Capitalization", description: "" }, showKarmaDesc: { message: "Adiciona mais informa\xE7\xF5es e refina\xE7\xF5es ao carma junto ao teu nome de utilizador na barra do menu de utilizador.", description: "" }, subredditManagerShortcutsPerAccountTitle: { message: "Shortcuts Per Account", description: "" }, showParentDirectionDesc: { message: "Order the parent comments to place each parent comment above or below its children.", description: "" }, voteEnhancementsHighlightControversialColorTitle: { message: "Highlight Controversial Color", description: "" }, userHighlightAdminColorDesc: { message: "Color to use to highlight Admins.", description: "" }, commentDepthDefaultCommentDepthTitle: { message: "Profundidade de coment\xE1rios predefinida", description: "" }, styleTweaksNavTopDesc: { message: "Moves the username navbar to the top (great on netbooks!)", description: "" }, penaltyBoxFeaturesTitle: { message: "Funcionalidades", description: "" }, hideChildCommentsNestedDesc: { message: 'Add the "hide child comments" button to all comments with children, instead of just top level comments.', description: "" }, showKarmaSeparatorDesc: { message: "Separator character between post/comment karma.", description: "" }, newCommentCountSubscriptionLengthTitle: { message: "Count Subscription Length", description: "" }, keyboardNavMoveDownParentSiblingTitle: { message: "Descer Para o Pai do Irm\xE3o", description: "" }, dashboardTagsPerPageTitle: { message: "Etiquetas por p\xE1gina", description: "" }, voteEnhancementsColorLinkScoreDesc: { message: `Add color to a link's score depending on its value. This does not work with reddit's "compressed link display" preference.`, description: "" }, usernameHiderHideAllUsernamesDesc: { message: "Hide all accounts listed in perAccountDisplayText, not just the logged-in user.", description: "" }, searchHelperSearchBySubredditTitle: { message: "Limit Search To Subreddit", description: "" }, filteRedditAddSubreddits: { message: "+add subreddits", description: "" }, showImagesUseSlideshowWhenLargerThanDesc: { message: "Show gallery as 'slideshow' when the total number of pieces is larger than this number. (0 for no limit)", description: "" }, imgurUseGifOverGifVTitle: { message: "Use GIFs instead of GIFV", description: "" }, betteRedditShowTimestampModerationLogTitle: { message: "Mostrar hora - Registo da Modera\xE7\xE3o", description: "" }, userTaggerStoreSourceLinkDesc: { message: "By default, store a link to the link/comment you tagged a user on", description: "" }, singleClickOpenOrderTitle: { message: "Open Order", description: "" }, multiredditNavbarDesc: { message: "Melhora a barra de navega\xE7\xE3o mostrada no lado esquerdo da p\xE1gina principal.", description: "" }, troubleshooterTestNotificationsLabel: { message: "Test notifications", description: "" }, commentToolsQuoteKeyTitle: { message: "Cita\xE7\xE3o", description: "" }, keyboardNavHideDesc: { message: "Liga\xE7\xE3o de esconder.", description: "" }, showImagesGalleryAsFilmstripTitle: { message: "Gallery As Filmstrip", description: "" }, commentToolsBoldKeyTitle: { message: "Negrito", description: "" }, xPostLinksName: { message: "Liga\xE7\xF5es Cruzadas (X-post)", description: "" }, backupAndRestoreAfterCancel: { message: "If you click cancel, you will be taken to the settings page where you can disable automatic backups or create a new backup to overwrite this one.", description: "" }, subredditManagerSubredditShortcutTitle: { message: "Subreddit Shortcut", description: "" }, userTaggerShowTaggingIconDesc: { message: "Always show a tag tool icon after every username.", description: "" }, commentPreviewDraftStyleDesc: { message: "Aplicar um fundo tipo 'rascunho' \xE0 pr\xE9-visualiza\xE7\xE3o de forma a diferenciar do campo de texto do coment\xE1rio.", description: "" }, keyboardNavFollowCommentsTitle: { message: "Seguir Coment\xE1rios", description: "" }, subredditManagerShortcutEditDropdownDelayDesc: { message: "How long (in milliseconds) to wait after moving your mouse over a shortcut to show its dropdown edit buttons. (This particularly applies to just the edit/delete button dropdown.)", description: "" }, keyboardNavModmailTitle: { message: "Correio de Moderador", description: "" }, submitHelperUncheckSendRepliesToInboxDesc: { message: 'Uncheck "send replies to my inbox" by default, when submitting a new post.', description: "" }, showImagesCommentMaxHeightTitle: { message: "Comment Max Height", description: "" }, userTaggerColor: { message: "Cor", description: "" }, hideChildCommentsHideNestedTitle: { message: "Hide Nested", description: "" }, backupAndRestoreReloadWarningTitle: { message: "Reload Warning", description: "" }, newCommentCountCleanCommentsTitle: { message: "Apagar coment\xE1rios", description: "" }, messageMenuFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, userInfoComments: { message: "Coment\xE1rios", description: "" }, filteRedditForceSyncFiltersTitle: { message: "For\xE7ar sincroniza\xE7\xE3o de filtros", description: "" }, nerShowServerInfoTitle: { message: "Mostrar informa\xE7\xE3o do servidor", description: "" }, troubleshooterSettingsReset: { message: "Todas as defini\xE7\xF5es foram reiniciadas. Recarrega para veres o resultado.", description: "" }, keyboardNavImageMoveLeftDesc: { message: "Mover para a esquerda as imagens na \xE1rea destacada a publica\xE7\xE3o.", description: "" }, keyboardNavFollowPermalinkDesc: { message: "Abrir a liga\xE7\xE3o permanente do coment\xE1rio actual (apenas nas p\xE1ginas de coment\xE1rios).", description: "" }, subredditInfoAddRemoveShortcut: { message: "atalho", description: "as in '+shortcut' or '-shortcut'" }, penaltyBoxName: { message: "RES Feature Throttle", description: "" }, styleTweaksHideDomainLinkDesc: { message: "Hides the domain link in post taglines.", description: "" }, styleTweaksColorBlindFriendlyTitle: { message: "Color Blind Friendly", description: "" }, userInfoSendMessage: { message: "enviar mensagem", description: "" }, showKarmaUseCommasDesc: { message: "Use commas for large karma numbers.", description: "" }, noPartDisableVoteButtonsTitle: { message: "Desativar bot\xF5es de voto", description: "" }, commentToolsLinkKeyDesc: { message: "Tecla de atalho para adicionar liga\xE7\xE3o.", description: "" }, keyboardNavMoveUpCommentTitle: { message: "Subir nos Coment\xE1rios", description: "" }, searchHelperUserFilterBySubredditDesc: { message: "When on a user profile, offer to search user's post from the subreddit or multireddit we come from.", description: "" }, showImagesExpandoCommentRedirectsTitle: { message: "Expando Comment Redirects", description: "" }, userHighlightAlumColorHoverTitle: { message: "Alum Color Hover", description: "" }, userTaggerPage: { message: "P\xE1gina", description: "As in 'page 1', 'page 2'" }, showImagesAutoExpandSelfTextFirstVisibleNonMutedTitle: { message: "Auto Expand Self Text First Visible Non Muted", description: "" }, showImagesBrowsePreloadCountTitle: { message: "Browse Preload Count", description: "" }, contextDefaultContextDesc: { message: "Alterar o valor de contexto predefinido das liga\xE7\xF5es de contexto.", description: "" }, styleTweaksHideDomainLink: { message: "Hide Domain Link", description: "" }, keyboardNavImageSizeUpFineTitle: { message: "Aumentar Imagem (refinado)", description: "" }, pageNavToCommentDesc: { message: "Adicionar um icon a todas as p\xE1ginas que te levam \xE0 nova \xE1rea de coment\xE1rios quando clicado.", description: "" }, profileRedirectFromLandingPageNotificationButton: { message: "Change profile landing page", description: "" }, backupAndRestoreAutomaticBackupsNone: { message: "None", description: "" }, orangeredShowUnreadCountInFaviconDesc: { message: "Mostrar n\xFAmero de mensagens n\xE3o lidas no favicon?", description: "" }, filteRedditUseRedditFiltersDesc: { message: "Automatically populate your native /r/all filters with subreddits filtered by this module. If you have more than 100, then the most popular subreddits are chosen.", description: "" }, userHighlightHighlightAlumTitle: { message: "Highlight Alum", description: "" }, searchHelperName: { message: "Assistente de Pesquisa", description: "" }, keyboardNavNextGalleryImageDesc: { message: "Ver a imagem seguinte de uma galeria embutida.", description: "" }, nightModeName: { message: "Modo Nocturno", description: "" }, filteRedditExcludeModqueueTitle: { message: "Excluir fila de modera\xE7\xE3o", description: "" }, keyboardNavEnterFilterCommandLineDesc: { message: "Abrir filtro da linha de comandos.", description: "" }, backupAndRestoreBackupSize: { message: "Backup size: $1", description: "" }, userTaggerTagCanNotSetTag: { message: "n\xE3o foi poss\xEDvel definir etiqueta - nenhuma publica\xE7\xE3o/coment\xE1rio selecionado.", description: "" }, faviconUseLegacyTitle: { message: "Use Legacy Favicon", description: "" }, toggleOn: { message: "ligado", description: "" }, contextDesc: { message: "Adiciona uma liga\xE7\xE3o \xE0 barra de informa\xE7\xF5es amarela para ver os coment\xE1rios anexados no contexto global.", description: "" }, showImagesMarkVisitedDesc: { message: "Mark non-selftext links visited when opening the expando.", description: "" }, filteRedditSubreddits: { message: "subreddits", description: "" }, keyboardNavUpVoteWithoutTogglingTitle: { message: "Dar voto positivo sem alternar", description: "" }, styleTweaksScrollSubredditDropdownTitle: { message: "Scroll Subreddit Dropdown", description: "" }, keyboardNavMoveTopTitle: { message: "Mover Para o Topo", description: "" }, nightModeAutomaticNightModeUser: { message: "User-defined hours", description: "" }, showImagesConvertGifstoGfycatDesc: { message: "Convert Gif links to Gfycat links.", description: "" }, submitHelperUncheckSendRepliesToInboxTitle: { message: "Uncheck Send Replies To Inbox", description: "" }, userTaggerIgnored: { message: "Ignorado", description: "" }, commentToolsCommentingAsDesc: { message: "Mostra o teu nome de utilizador actual para evitar fazeres envios a partir da conta errada.", description: "" }, keyboardNavFollowLinkNewTabTitle: { message: "Seguir liga\xE7\xE3o num novo separador", description: "" }, keyboardNavAmbiguousShortcutPromptFollowUp: { message: "You can change this later from the $1 settings", description: "" }, subredditManagerLinkUsersDesc: { message: 'Show "USERS" link in subreddit manager.', description: "" }, customTogglesToggleTitle: { message: "Interruptor", description: "" }, temporaryDropdownLinksName: { message: "Temporary Dropdown Links", description: "" }, accountSwitcherUpdateOtherTabsDesc: { message: "Ao trocar de conta mostrar aviso nos outros separadores.", description: "" }, subredditManagerDragDropDeleteDesc: { message: "Show a trash bin while dragging subreddit shortcuts.", description: "" }, userHighlightFirstCommentColorDesc: { message: "Color to use to highlight the first-commenter.", description: "" }, troubleshooterClearLabel: { message: "Clear", description: "" }, backupDesc: { message: "Copia e restaura as tuas defini\xE7\xF5es do Reddit Enhancement Suite.", description: "" }, accountSwitcherDropDownStyleTitle: { message: "Estilo do Menu Descendente", description: "" }, subredditManagerLinkFrontDesc: { message: 'show "HOME" link in subreddit manager.', description: "" }, styleTweaksVisitedStyleTitle: { message: "Visited Style", description: "" }, submittedByAuthor: { message: "by", description: "[post/comment submitted...] by $username" }, commentToolsCtrolEnterSubmitsPostsDesc: { message: "Ao fazeres ctrl+enter ou cmd+enter a tua publica\xE7\xE3o ser\xE1 enviada.", description: "" }, RESTipsMenuItemTitle: { message: "Menu Item", description: "" }, optionKey: { message: "ID da op\xE7\xE3o", description: "" }, aboutOptionsContributors: { message: "[Steve Sobel](http://www.honestbleeps.com/) (/u/honestbleeps) and a slew of community members have contributed code, design and/or great ideas to RES.", description: "" }, stylesheetDesc: { message: "Carrega folhas de estilo adicionais ou os teus pr\xF3prios fragmentos de CSS.", description: "" }, showAdvancedOptions: { message: "Show advanced options", description: "" }, accountSwitcherPassword: { message: "palavra-passe", description: "" }, userInfoUnignore: { message: "N\xE3o ignorar", description: "" }, toggleCommentsLeftEdgeColorTitle: { message: "Toggle Comments Left Edge Color", description: "" }, commentToolsMacrosTitle: { message: "Macros", description: "" }, nightModeAutomaticNightModeDesc: { message: 'Enable automatic night mode.\n\nIn automatic mode, you will be prompted to share your location. Your location will only be used to calculate sunrise & sunset times.\n\nIn user-defined hours mode, night mode automatically starts and stops at the times configured below.\n\nFor the times below, a 24-hour clock ("military time") from 0:00 to 23:59 is used.\ne.g. the time 8:20pm would be written as 20:20, and 12:30am would be written as 00:30 or 0:30.\n\nTo temporarily override automatic night mode, manually flip the night mode switch.\nConfigure how long the override lasts below.', description: "" }, imgurPreferredImgurLinkTitle: { message: "Preferred Imgur Link", description: "" }, singleClickOpenOrderDesc: { message: "What order to open the link/comments in.", description: "" }, subredditInfoFilterFromAllAndDomain: { message: "Filtrar este sub-reddit do /r/all e /domain/*", description: "" }, presetsNoPopupsTitle: { message: "No Popups", description: "" }, searchCopyResultForComment: { message: "copiar isto para um coment\xE1rio", description: "" }, moduleID: { message: "ID do m\xF3dulo", description: "" }, orangeredShowUnreadCountInTitleDesc: { message: "Mostrar n\xFAmero de mensagens n\xE3o lidas no t\xEDtulo da p\xE1gina/separador?", description: "" }, xPostLinksXpostedFrom: { message: "publica\xE7\xE3o cruzada de", description: "As in 'x-posted from /r/subreddit'" }, keyboardNavToggleChildrenTitle: { message: "Activar/Desactivar Filhos", description: "" }, commandLineLaunchDesc: { message: "Open the RES Command Line", description: "" }, menuGearIconClickActionToggleMenuNoHover: { message: "Open menu (no hover)", description: "" }, subredditInfoName: { message: "Informa\xE7\xE3o do Subreddit", description: "" }, betteRedditVideoUploadedTitle: { message: "V\xEDdeo Enviado", description: "" }, profileNavigatorFadeSpeedDesc: { message: "Dura\xE7\xE3o da anima\xE7\xE3o de desvanecimento (em segundos).", description: "" }, aboutOptionsDonate: { message: "Apoiar o desenvolvimento do RES.", description: "" }, aboutOptionsBugsTitle: { message: "Erros", description: "" }, nerShowPauseButtonTitle: { message: "Mostrar bot\xE3o de Pausa", description: "" }, subredditManagerStoreSubredditVisitDesc: { message: "Store the last time you visited a subreddit.", description: "" }, singleClickName: { message: "Abrir com 1 Clique", description: "" }, showImagesAutoplayVideoDesc: { message: "Autoplay inline videos.", description: "" }, showImagesCrosspostsTitle: { message: "Crossposts", description: "" }, userTaggerUseCommentsLinkAsSourceTitle: { message: "Use Comments Link As Source", description: "" }, usernameHiderPerAccountDisplayTextDesc: { message: "Allows you to specify the display text for a specific account. (useful in conjunction with the Account Switcher!)", description: "" }, newCommentCountCleanCommentsDesc: { message: "N\xFAmero de dias antes que o RES pare de manter registos de uma thread vista.", description: "" }, orangeredHideEmptyMailTitle: { message: "Hide Empty Mail", description: "" }, versionName: { message: "Gestor de Vers\xF5es", description: "" }, orangeredResetFaviconOnLeaveDesc: { message: "Repor o favicon antes de sair da p\xE1gina.\n\nIsto previne que o emblema de n\xE3o lidos mostre nos marcadores, que pode prejudicar o caching do browser.", description: "" }, commentDepthName: { message: "Profundidade de Coment\xE1rios Personalizada", description: "" }, filteRedditKeywordsDesc: { message: "Hide posts with certain keywords in the title.", description: "" }, orangeredShowUnreadCountInFaviconTitle: { message: "Mostrar n\xFAmero de n\xE3o lidos no Favicon", description: "" }, penaltyBoxSuspendFeaturesDesc: { message: "Turn off features which exceed the maximum penalty.", description: "" }, showParentFadeSpeedDesc: { message: "Fade animation's speed (in seconds).", description: "" }, multiredditNavbarHoverDelayTitle: { message: "Hover Delay", description: "" }, troubleshooterClearTagsTitle: { message: "Clear Tags", description: "" }, orangeredHideNewModMailDesc: { message: "Hide the new mod mail button in user bar.", description: "" }, subredditManagerLinkProfilePostsTitle: { message: "Link Profile Posts", description: "" }, newCommentCountShowSubscribeButtonTitle: { message: "Mostrar o bot\xE3o de subscri\xE7\xE3o", description: "" }, commentToolsKey: { message: "tecla", description: "" }, keyboardNavShowChildCommentsTitle: { message: "Show child comments", description: "" }, userHighlightAutoColorUsernamesTitle: { message: "Auto Color Usernames", description: "" }, commentStyleName: { message: "Estilo dos Coment\xE1rios", description: "" }, selectedEntryTextColorNightTitle: { message: "Text Color Night", description: "" }, settingsNavigationShowAllOptionsTitle: { message: "Mostrar Todas as Op\xE7\xF5es", description: "" }, onboardingBetaUpdateNotificationDescription: { message: "Notification method for beta updates.", description: "" }, keyboardNavFrontPageTitle: { message: "P\xE1gina Principal", description: "" }, selectedEntryScrollToSelectedThingOnLoadDesc: { message: "Automatically scroll to the post/comment that is selected when the page loads", description: "" }, orangeredHideEmptyMailDesc: { message: "Hide the mail button when inbox is empty.", description: "" }, commentQuickCollapseDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, orangeredOpenMailInNewTabDesc: { message: "When clicking the mail envelope or modmail icon, open mail in a new tab?", description: "" }, showImagesImageMoveTitle: { message: "Image Move", description: "" }, commentToolsText: { message: "texto", description: "" }, notificationStickyTitle: { message: "Afixado", description: "" }, aboutOptionsAnnouncements: { message: "Ler as \xFAltimas not\xEDcias em /r/RESAnnouncements.", description: "" }, hideChildCommentsAutomaticDesc: { message: "Esconder automaticamente todos os coment\xE1rios n\xE3o pai, ou disponibilizar uma liga\xE7\xE3o para escond\xEA-los todos?", description: "" }, showImagesHideNSFWDesc: { message: "If checked, do not show images marked NSFW.", description: "" }, stylesheetSnippetsTitle: { message: "Snippets", description: "" }, subredditInfoRemoveThisSubredditFromShortcuts: { message: "Remover este sub-reddit da tua barra de atalhos", description: "" }, betteRedditVideoViewed: { message: "[Views: $1]", description: "" }, keyboardNavPrevPageTitle: { message: "P\xE1gina Anterior", description: "" }, userbarHiderToggleButtonStateTitle: { message: "Toggle Button State", description: "" }, showImagesAutoExpandSelfTextDesc: { message: "When loading selftext from an Aa+ expando, auto expand enclosed expandos.", description: "" }, commentStyleCommentBoxesDesc: { message: "Destaca caixas de coment\xE1rios para uma leitura mais f\xE1cil em t\xF3picos grandes.", description: "" }, filteRedditFilterSubredditsEverywhereButSubreddit: { message: "Everywhere except inside a subreddit", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonTitle: { message: "Subreddit Style Browser Toolbar Button", description: "" }, keyboardNavOnVoteMoveDownTitle: { message: "Mover para baixo ao votar", description: "" }, backupAndRestoreReloadWarningAuto: { message: "Automatically reload other tabs.", description: "" }, nerHideDupesTitle: { message: "Esconder duplicados", description: "" }, keyboardNavFrontPageDesc: { message: "Ir para a p\xE1gina principal.", description: "" }, keyboardNavFollowLinkAndCommentsNewTabBGTitle: { message: "Seguir liga\xE7\xE3o e coment\xE1rios em novo separador em segundo plano", description: "" }, singleClickDesc: { message: "Adiciona uma liga\xE7\xE3o [l+c] que abre a liga\xE7\xE3o e a p\xE1gina de coment\xE1rios em dois novos separadores a partir de um \xFAnico clique.", description: "" }, showImagesShowViewImagesTabTitle: { message: "Show View Images Tab", description: "" }, wheelBrowseName: { message: "Browse by Wheel", description: "" }, orangeredShowFloatingEnvelopeDesc: { message: "Mostrar um \xEDcone de envelope (caixa de entrada) no canto superior direito", description: "" }, aboutName: { message: "Acerca do RES", description: "" }, numPoints: { message: "$1 points", description: "" }, faviconNotificationBGColorDesc: { message: "Change the background color of the notification on the favicon.", description: "" }, aboutOptionsBackupTitle: { message: "C\xF3pia de seguran\xE7a", description: "" }, productivityCategory: { message: "Produtividade", description: "" }, showImagesMaxWidthDesc: { message: 'Max width of media (in pixels, enter zero for unlimited). Percentage of window width may also be used (e.g. "100%").', description: "" }, styleTweaksNoSubredditSpecified: { message: "Nenhum sub-reddit especificado.", description: "" }, hoverCloseOnMouseOutTitle: { message: "Fechar ao tirar o cursor", description: "" }, keyboardNavMoveToTopCommentDesc: { message: "Mover para o coment\xE1rio no topo do t\xF3pico actual (nos coment\xE1rios).", description: "" }, userHighlightFirstCommentColorTitle: { message: "First Comment Color", description: "" }, quickMessageDefaultSubjectTitle: { message: "Default Subject", description: "" }, betteRedditFixHideLinksDesc: { message: 'Fazer as liga\xE7\xF5es "esconder" dizerem "esconder" ou "mostrar" consoante o estado de oculta\xE7\xE3o.', description: "" }, commentQuickCollapseName: { message: "Comment Quick Collapse", description: "" }, troubleshooterEntriesRemoved: { message: "$1 entradas removidas.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoTitle: { message: "Monitor Posts Visited Incognito", description: "" }, filteRedditForceSyncFiltersDesc: { message: "Immediately overwrite your native /r/all filters.", description: "" }, searchHelperSearchPageTabsDesc: { message: "Add tabs to the search page.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsTitle: { message: "Ctrl+enter para guardar t\xF3pico ao vivo", description: "" }, commentDepthSubredditCommentDepthsTitle: { message: "Profundidades de coment\xE1rios de sub-reddit", description: "" }, showImagesHighlightNSFWButtonDesc: { message: "Add special styling to expando buttons for images marked NSFW.", description: "" }, commentPreviewEnableBigEditorDesc: { message: "Activar o editor de duas colunas.", description: "" }, floaterName: { message: "Elementos Flutuantes", description: "" }, betteRedditHideLinkFadeDelayTitle: { message: "Intervalo de desvanecimento da liga\xE7\xE3o de ocultar", description: "" }, orangeredHideEmptyNewModMailDesc: { message: "Hide the new mod mail button when inbox is empty.", description: "" }, voteEnhancementsColorCommentScoreTitle: { message: "Color Comment Score", description: "" }, filteRedditNSFWQuickToggleTitle: { message: "Interruptor r\xE1pido de NSFW", description: "" }, filteRedditAllowNSFWDesc: { message: "N\xE3o esconder publica\xE7\xF5es NSFW de certos sub-reddits quando o filtro NSFW est\xE1 activado.", description: "" }, keyboardNavShowAllChildCommentsTitle: { message: "Show all child comments", description: "" }, userbarHiderDesc: { message: "Adiciona um bot\xE3o para mostrar ou esconder a barra de utilizador.", description: "" }, showImagesDesc: { message: "Abre as imagens directamente no teu navegador com o clicar de um bot\xE3o. Tamb\xE9m tem op\xE7\xF5es de configura\xE7\xE3o, vai ver!", description: "" }, commentToolsMacroButtonsTitle: { message: "Bot\xF5es Macro", description: "" }, searchHelperTransitionSearchTabsTitle: { message: "Transition Search Tabs", description: "" }, filteRedditExcludeOwnPostsDesc: { message: "N\xE3o filtrar as minhas pr\xF3prias publica\xE7\xF5es.", description: "" }, notificationStickyDesc: { message: "Sticky notifications remain visible until you click the close button.", description: "" }, userInfoHoverInfoTitle: { message: "Hover Info", description: "" }, submittedAtTime: { message: "submitted", description: "[post/comment] submitted [at $time]" }, usernameHiderDesc: { message: "Previne que o teu nome de utilizador seja mostrado no ecr\xE3 enquanto est\xE1s com sess\xE3o iniciada no Reddit. Desta forma se algu\xE9m olhar por cima do teu ombro no trabalho, ou se tirares uma captura de ecr\xE3, o teu nome de utilizador n\xE3o \xE9 mostrado. Isto apenas afecta o teu ecr\xE3. N\xE3o h\xE1 forma de publicar ou comentar no Reddit sem que o teu envio esteja ligado \xE0 conta a partir do qual o fizeste.", description: "" }, betteRedditName: { message: "betteReddit", description: "" }, voteEnhancementsName: { message: "Melhorias de Voto", description: "" }, betteRedditShowHiddenSortOptionsTitle: { message: "Mostrar op\xE7\xF5es ocultas de ordena\xE7\xE3o", description: "" }, betteRedditTruncateLongLinksDesc: { message: "Encurta os t\xEDtulos de publica\xE7\xF5es que sejam muito compridos (com mais de uma linha) adicionando retic\xEAncias.", description: "" }, subredditInfoAddRemoveDashboard: { message: "painel de controlo", description: "as in '+dashboard' or '-dashboard'" }, commentToolsWikiAutocompleteTitle: { message: "Wiki Autocomplete", description: "" }, filteRedditEverywhereBut: { message: "Everywhere but:", description: "" }, commentToolsUserAutoCompleteTitle: { message: "Auto-completar utilizadores", description: "" }, keyboardNavFollowProfileTitle: { message: "Follow Profile", description: "" }, multiredditNavbarFadeSpeedTitle: { message: "Fade Speed", description: "" }, aboutOptionsCodeTitle: { message: "C\xF3digo", description: "" }, scrollOnCollapseTitle: { message: "Scroll On Collapse", description: "" }, nerReversePauseIconDesc: { message: 'Show "paused" bars icon when auto-load is paused and "play" wedge icon when active.', description: "" }, userTaggerUsername: { message: "Nome de Utilizador", description: "" }, subredditManagerLinkDashboardDesc: { message: 'Show "DASHBOARD" link in subreddit manager.', description: "" }, onboardingPatchUpdateNotificationName: { message: "Patch Update Notification", description: "" }, keyboardNavSlashAllTitle: { message: "/r/all", description: "" }, keyboardNavImageMoveUpDesc: { message: "Subir as imagens na \xE1rea destacada da publica\xE7\xE3o.", description: "" }, keyboardNavEditDesc: { message: "Edit current comment or self-post.", description: "" }, aboutOptionsDonateTitle: { message: "Doar", description: "" }, keyboardNavGoModeTitle: { message: "Modo de Ir", description: "" }, keyboardNavName: { message: "Navega\xE7\xE3o com o Teclado", description: "" }, userHighlightModColorHoverDesc: { message: "Color used to highlight Mods on hover.", description: "" }, userHighlightName: { message: "Marcar Utilizadores", description: "" }, newCommentCountNotifyEditedPostsTitle: { message: "Notify Edited Posts", description: "" }, stylesheetLoadStylesheetsDesc: { message: "External or subreddit CSS to load.", description: "" }, logoLinkCurrent: { message: "Sub/Multi-Reddit Actual", description: "" }, troubleshooterTestNotificationsTitle: { message: "Test Notifications", description: "" }, keyboardNavFollowPermalinkTitle: { message: "Seguir liga\xE7\xE3o permanente", description: "" }, hoverDesc: { message: "Personaliza o comportamento dos pop-ups informativos grandes que aparecem quando se coloca o cursor sobre certos elementos.", description: "" }, modhelperName: { message: "Assistente de Moderador", description: "" }, multiredditNavbarUrl: { message: "url", description: "" }, hideChildCommentsName: { message: "Esconder Todos os Coment\xE1rios-Filho", description: "" }, styleTweaksYouMustSpecifyXOrY: { message: 'Deves especificar "$1" ou "$2".', description: "" }, keyboardNavMoveUpTitle: { message: "Subir", description: "" }, styleTweaksShowFullLinkFlairTitle: { message: "Show Full Link Flair", description: "" }, quickMessageOpenQuickMessageTitle: { message: "Open Quick Message", description: "" }, pageNavToTopTitle: { message: "Para o topo", description: "" }, keyboardNavScrollOnExpandoTitle: { message: "Navegar no Expando", description: "" }, userTaggerTag: { message: "Etiqueta", description: "" }, userbarHiderToggleUserbar: { message: "Activar/desactivar barra de utilizador", description: "" }, nerReversePauseIconTitle: { message: "Reverter icon pausa", description: "" }, userTaggerTrackVoteWeightDesc: { message: "Store counts of cumulative upvotes / downvotes given to each user and replace the tag icon with a vote weight count displaying this number.", description: "" }, userInfoHighlightColorHoverTitle: { message: "Highlight Color Hover", description: "" }, subredditInfoRemoveThisSubredditFromDashboard: { message: "Remover este sub-reddit do teu painel de controlo", description: "" }, accountSwitcherCliSwitchToUsernamePrompt: { message: "Switch to username: $1", description: "" }, userHighlightFriendColorHoverDesc: { message: "Color used to highlight Friends on hover.", description: "" }, showImagesDisplayImageCaptionsDesc: { message: "Retrieve image captions/attribution information.", description: "" }, voteEnhancementsDesc: { message: "Formata ou mostra informa\xE7\xF5es adicionais acerca dos votos nas publica\xE7\xF5es e coment\xE1rios.", description: "" }, nightModeToggleTitle: { message: "Toggle night and day", description: "" }, readCommentsCleanCommentsDesc: { message: "Number of days to keep track of a comment page.", description: "" }, subredditManName: { message: "Gestor de Subreddits", description: "" }, filteRedditCustomFiltersDesc: { message: "Hide posts based on complex custom criteria.\n\nThis is a very advanced feature, please [read the guide](/r/Enhancement/wiki/customfilters) before asking questions.", description: "" }, showImagesBrowsePreloadCountDesc: { message: "Number of preloaded expandos for faster browsing. Currently only active when using keyboard navigation.", description: "" }, showImagesCommentMaxHeightDesc: { message: "Add a scroll bar to comments taller than [x] pixels (enter zero for unlimited).", description: "" }, aboutOptionsSuggestionsTitle: { message: "Sugest\xF5es", description: "" }, keyboardNavSaveCommentTitle: { message: "Guardar Coment\xE1rio", description: "" }, nerPauseAfterEveryTitle: { message: "Pausar ap\xF3s cada", description: "" }, userHighlightAlumColorDesc: { message: "Color to use to highlight Alums.", description: "" }, commandLineDesc: { message: "Linha de comandos para navegar no reddit, alternar as defini\xE7\xF5es do RES e depurar o RES.", description: "" }, quickMessageHandleSideLinksDesc: { message: 'Open the quick message dialog when clicking on reddit.com/message/compose links in the sidebar. (e.g. "message the moderators")', description: "" }, keyboardNavPreviousGalleryImageDesc: { message: "Ver a imagem anterior de uma galeria embutida.", description: "" }, userInfoInvalidUsernameLink: { message: "Liga\xE7\xE3o de nome de utilizador inv\xE1lida.", description: "" }, searchHelperAddSearchOptionsDesc: { message: "Allow you to choose sorting and time range on the search form of the side panel.", description: "" }, subredditManagerLinkDashboardTitle: { message: "Link Dashboard", description: "" }, troubleshooterResetToFactoryDesc: { message: "Warning: This will remove all your RES settings, including tags, saved comments, filters etc!", description: "" }, keyboardNavCommentNavigatorMoveDownDesc: { message: "Descer usando o Navegador de Coment\xE1rios.", description: "" }, subredditManagerDragDropDeleteTitle: { message: "Drag Drop Delete", description: "" }, nightModeNightModeEndTitle: { message: "Desligar modo noturno", description: "" }, showKarmaShowGoldDesc: { message: "Display gilded icon if current user has gold status.", description: "" }, localDateDesc: { message: "Mostra a data no teu fuso hor\xE1rio quando passas o cursor por cima de uma data relativa.", description: "" }, noPartEscapeNPTitle: { message: "Escape NP", description: "" }, redditUserInfoDesc: { message: "Reddits new native hover tooltip for users.", description: "" }, showImagesShowSiteAttributionDesc: { message: "Show the site logo and name after embedded content.", description: "" }, searchHelperDefaultSearchTabDesc: { message: "The tab that will be expanded each time you search.", description: "" }, userInfoGildCommentsDesc: { message: 'When clicking the "give gold" button on the user hover info on a comment, give gold to the comment.', description: "" }, backupAndRestoreProvidersFile: { message: "File", description: "" }, coreCategory: { message: "Base", description: "" }, styleTweaksSubredditStyleBrowserToolbarButtonDesc: { message: "Add a toolbar/omnibar icon to disable/enable current subreddit style - note this may be behind a hamburger menu in some browsers.", description: "" }, filteRedditSubredditsSubreddits: { message: "subreddits", description: "" }, penaltyBoxFeaturesPenalty: { message: "penaliza\xE7\xE3o", description: "How heavily the feature is penalized (0-100)" }, penaltyBoxFeaturesDesc: { message: "Track usage of different features.", description: "" }, commentDepthMinimumComments: { message: "coment\xE1rios m\xEDnimos", description: "" }, aboutOptionsCode: { message: "Podes melhorar o RES com o teu pr\xF3prio c\xF3digo, designs e ideias! O RES \xE9 uma projecto de open-source no GitHub.", description: "" }, commentNavDesc: { message: "Fornece uma ferramenta de navega\xE7\xE3o de coment\xE1rios para encontrar facilmente coment\xE1rios por OP, mod, etc.", description: "" }, commentToolsCtrlEnterSavesLiveThreadsDesc: { message: "Ao fazeres ctrl+enter ou cmd+enter as tuas actualiza\xE7\xF5es ao t\xF3pico ao vivo ser\xE3o guardadas.", description: "" }, betteRedditHideLinkLabel: { message: "hide", description: "" }, aboutOptionsLicense: { message: "Reddit Enhancement Suite \xE9 lan\xE7ado sob a licen\xE7a GPL v3.0.", description: "" }, subredditManagerAllowLowercaseTitle: { message: "Allow Lowercase", description: "" }, commentToolsEnableOnBanMessagesTitle: { message: "Activar nas mensagens de ban", description: "" }, newCommentCountSubscriptionLengthDesc: { message: "N\xFAmero de dias antes que a subscri\xE7\xE3o da thread expire.", description: "" }, keyboardNavAmbiguousShortcutPrompt: { message: "RES' $1 isn't sure what to do when you press the keyboard shortcut $2. $3 What should pressing $4 do?", description: "" }, styleTweaksToggleSubredditStyle: { message: "ligar/desligar estilo do sub-reddit", description: "" }, RESTipsDailyTipTitle: { message: "Daily Tip", description: "" }, keyboardNavLinkNumberPositionTitle: { message: "Link Number Position", description: "" }, userHighlightOPColorHoverTitle: { message: "OP Color Hover", description: "" }, orangeredUnreadLinksToInboxDesc: { message: "Always go to the inbox, not unread messages, when clicking on orangered.", description: "" }, newCommentCountName: { message: "N\xFAmero de Coment\xE1rios Novos", description: "" }, keyboardNavSlashAllDesc: { message: "Ir para /r/all", description: "" }, keyboardNavShowParentsTitle: { message: "Mostrar pais", description: "" }, userTaggerHardIgnoreTitle: { message: "Hard Ignore", description: "" }, logoLinkFrontpage: { message: "P\xE1gina Principal", description: "" }, commentToolsCategory: { message: "categoria", description: "" }, betteRedditScoreHiddenTimeLeftDesc: { message: "Ao passar o cursor por cima de [pontua\xE7\xE3o oculta] mostrar o tempo restante em vez da dura\xE7\xE3o da oculta\xE7\xE3o.", description: "" }, betteRedditShowLastEditedTimestampDesc: { message: "Mostrar a hora em que uma publica\xE7\xE3o ou coment\xE1rio foi editado sem ter de colocar o cursor por cima da hora de envio.", description: "" }, aboutOptionsSearchSettings: { message: "Pesquisar nas defini\xE7\xF5es do RES.", description: "" }, stylesheetRedditThemesDesc: { message: "reddit allows you to customize the appearance of reddit! A reddit theme will be applied anywhere the default reddit style is present and subreddit style is disabled via reddit.", description: "" }, userHighlightHighlightOPDesc: { message: "Highlight OP's comments.", description: "" }, keyboardNavNextGalleryImageTitle: { message: "Imagem seguinte da galeria", description: "" }, styleTweaksSubredditStyleEnabled: { message: "Estilo do sub-reddit activado para o sub-reddit: $1.", description: "" }, notificationsNeverSticky: { message: "nunca afixado", description: "" }, keyboardNavMoveDownDesc: { message: "Descer para a pr\xF3xima liga\xE7\xE3o ou coment\xE1rio em listas planas.", description: "" }, keyboardNavToggleViewImagesDesc: { message: 'Toggle "show images" button.', description: "" }, betteRedditCommentCollapseInInboxDesc: { message: "Mostrar o bot\xE3o [-] de colapsar na caixa de entrada.", description: "" }, noPartEvenIfSubscriberTitle: { message: "Mesmo se subscritor", description: "" }, menuGearIconClickActionToggleMenu: { message: "Open menu", description: "" }, subredditInfoAddThisSubredditToShortcuts: { message: "Adicionar este sub-reddit \xE0 tua barra de atalhos", description: "" }, keyboardNavUndoMoveDesc: { message: "Move to the previously selected thing.", description: "" }, userTaggerVotesUp: { message: "Upvotes", description: "" }, accountSwitcherReloadOtherTabsTitle: { message: "Recarregar outros separadores", description: "" }, betteRedditVideoTimesTitle: { message: "Dura\xE7\xE3o dos V\xEDdeos", description: "" }, subredditManagerShortcutDropdownDelayTitle: { message: "Shortcut Dropdown Delay", description: "" }, showImagesSfwHistoryTitle: { message: "Sfw History", description: "" }, selectedEntryDesc: { message: "Style the currently selected submission or comment.", description: "" }, appearanceCategory: { message: "Aspecto", description: "" }, userTaggerShowIgnoredDesc: { message: "Provide a link to reveal an ignored link or comment.", description: "" }, nightModeUseSubredditStylesDesc: { message: `Always keep subreddit styles enabled when using night mode, ignoring the compatibility check. When using night mode, subreddit styles are automatically disabled unless [the subreddit indicates it is night mode-friendly](/r/Enhancement/wiki/subredditstyling#wiki_res_night_mode_and_your_subreddit). You must tick the "Use subreddit stylesheet" in a subreddit's sidebar to enable subreddit styles in that subreddit. This is because most subreddits are not night mode-friendly. If you choose to show subreddit styles, you will see flair images and spoiler tags, but be warned: **you may see bright images, comment highlighting, etc.** It is up to the mods of each subreddit to make their sub night mode friendly, which is not a tiny amount of work. Please be polite when requesting moderators make a sub night mode friendly.`, description: "" }, commentToolsItalicKeyTitle: { message: "It\xE1lico", description: "" }, filteRedditUseRedditFiltersTitle: { message: "Usar filtros do Reddit", description: "" }, voteEnhancementsUserDefinedLinkColorationTitle: { message: "User Defined Link Coloration", description: "" }, styleTweaksHideUnvotableDesc: { message: "Hide vote arrows on threads where you cannot vote (e.g. archived due to age).", description: "" }, selectedEntrySelectLastThingOnLoadDesc: { message: "Automatically select the last thing you had selected", description: "" }, aboutOptionsPresetsTitle: { message: "Predefini\xE7\xF5es", description: "" }, commentDepthDefaultCommentDepthDesc: { message: "Profundidade predefinida para usar em todos os sub-reddits que n\xE3o estejam listados abaixo.", description: "" }, settingsNavigationShowAllOptionsAlertTitle: { message: "Show All Options Alert", description: "" }, voteEnhancementsHighlightControversialColorDesc: { message: 'Select a color for the "controversial" comment indicator.', description: "" }, nightModeSubredditStylesWhitelistDesc: { message: "Allow the subreddits listed to display subreddit styles during night mode if useSubredditStyles is disabled.", description: "" }, nerHideDupesHide: { message: "Esconder", description: "" }, aboutOptionsContributorsTitle: { message: "Colaboradores", description: "" }, menuGearIconClickActionOpenCommandLine: { message: "Open command line", description: "" }, showImagesHighlightSpoilerButtonDesc: { message: "Add special styling to expando buttons for images marked as spoilers.", description: "" }, showImagesGalleryPreloadCountTitle: { message: "Gallery Preload Count", description: "" }, keyboardNavToggleHelpTitle: { message: "Activar/Desactivar Ajuda", description: "" }, keyboardNavFollowLinkNewTabFocusDesc: { message: "Ao seguir uma liga\xE7\xE3o num novo separador - activar esse separador?", description: "" }, aboutOptionsFAQ: { message: "Aprende mais sobre o RES na wiki do /r/Enhancement.", description: "" }, betteRedditPinHeaderDesc: { message: "Prender a barra de sub-reddit, menu de utilizador, ou cabe\xE7alho ao topo \xE0 medida que desces na p\xE1gina.", description: "" }, onboardingUpdateNotifictionReleaseNotes: { message: "Show release notes in background tab", description: "" }, betteRedditShowTimestampSidebarDesc: { message: "Mostrar datas absolutas na barra lateral.", description: "" }, keyboardNavUpVoteDesc: { message: "Dar voto positivo \xE0 liga\xE7\xE3o ou coment\xE1rios seleccionados (ou remover o voto positivo).", description: "" }, singleClickOpenFrontpageTitle: { message: "Open Frontpage", description: "" }, messageMenuHoverDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes da tooltip ser mostrada.", description: "" }, keyboardNavFollowSubredditDesc: { message: "Ir para o sub-reddit da liga\xE7\xE3o seleccionada (apenas nas p\xE1ginas de liga\xE7\xE3o).", description: "" }, accountSwitcherKeepLoggedInDesc: { message: "Manter-me com sess\xE3o iniciada ap\xF3s reiniciar o navegador.", description: "" }, subredditManagerLinkPopularDesc: { message: 'show "POPULAR" link in subreddit manager.', description: "" }, keyboardNavToggleExpandoDesc: { message: "Alternar expando (imagem/text/v\xEDdeo).", description: "" }, keyboardNavFollowCommentsNewTabDesc: { message: "Ver a p\xE1gina de coment\xE1rios de uma liga\xE7\xE3o num novo separador.", description: "" }, showImagesMarkSelftextVisitedDesc: { message: "Mark selftext links visited when opening the expando.", description: "" }, filteRedditFilterSubredditsAllPopularAndDomain: { message: "/r/all, /r/popular and domain pages", description: "" }, backupAndRestoreBackupTitle: { message: "C\xF3pia de Seguran\xE7a", description: "" }, profileNavigatorHoverDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes de a tooltip ser mostrada.", description: "" }, showImagesDisplayOriginalResolutionDesc: { message: "Display each image's original (unresized) resolution in a tooltip.", description: "" }, styleTweaksRedditPrefsMessage: { message: "O RES permite-te desactivar os estilos de sub-reddits espec\xEDficos!", description: "" }, customTogglesDesc: { message: "Define interruptores personalizados para v\xE1rias funcionalidades do RES.", description: "" }, accountSwitcherRequiresOtp: { message: "requires OTP (2FA is enabled)", description: "" }, showImagesHostToggleDesc: { message: "Display expandos for this host.", description: "" }, accountSwitcherCliNoUsername: { message: "No username specified.", description: "" }, filteRedditDesc: { message: "Filter out NSFW content, or links by keyword, domain (use User Tagger to ignore by user) or subreddit (for /r/all or /domain/*).\n\nRegExp like `/(this|that|theother)/i` is allowed in text boxes. Find out more on the [/r/Enhancement wiki](/r/Enhancement/wiki/index/filters/filtereddit/regexp).", description: "" }, RESTipsMenuItemDesc: { message: "Add an item to the RES dropdown menu to show tips.", description: "" }, commentToolsFormattingToolButtonsTitle: { message: "Bot\xF5es da ferramenta de formata\xE7\xE3o", description: "" }, commentPreviewEnableForWikiDesc: { message: "Mostrar pr\xE9-visualiza\xE7\xE3o para as p\xE1ginas da wiki.", description: "" }, styleTweaksShowFullLinkFlairDesc: { message: "Choose when full link flair should be shown.", description: "" }, keyboardNavImageMoveUpTitle: { message: "Subir Imagem", description: "" }, settingsNavDesc: { message: "Ajuda-te a navegar pela Consola de Defini\xE7\xF5es do RES com maior facilidade.", description: "" }, betteRedditCommentCollapseInInboxTitle: { message: "Colapsar coment\xE1rios na caixa de entrada", description: "" }, usernameHiderName: { message: "Esconder Nome de Utilizador", description: "" }, subredditManagerLinkModTitle: { message: "Link Mod", description: "" }, notificationsEnabled: { message: "ativado", description: "" }, subredditManagerShortcutEditDropdownDelayTitle: { message: "Shortcut Edit Dropdown Delay", description: "" }, tableToolsName: { message: "Ferramentas de Tabela", description: "" }, showParentFadeSpeedTitle: { message: "Fade Speed", description: "" }, userInfoUserNotFound: { message: "Utilizador n\xE3o encontrado.", description: "" }, betteRedditTruncateLongLinksTitle: { message: "Encurtar liga\xE7\xF5es longas", description: "" }, keyboardNavToggleCmdLineDesc: { message: "Abrir a linha de comandos do RES.", description: "" }, nerHideDupesDontHide: { message: "N\xE3o esconder", description: "" }, showImagesHighlightNSFWButtonTitle: { message: "Highlight NSFW Button", description: "" }, newCommentCountNotifyEditedPostsDesc: { message: "Notify if a subscribed post is edited.", description: "" }, showImagesImageZoomDesc: { message: "Allow dragging to resize/zoom images.", description: "" }, showImagesSelfTextMaxHeightDesc: { message: "Add a scroll bar to text expandos taller than [x] pixels (enter zero for unlimited).", description: "" }, usernameHiderShowUsernameOnHoverTitle: { message: "Show Username On Hover", description: "" }, userHighlightHighlightFirstCommenterTitle: { message: "Highlight First Commenter", description: "" }, subredditManagerLinkFrontTitle: { message: "Link Home", description: "" }, penaltyBoxSuspendFeaturesNotificationMessage: { message: "$1 will be turned off due to lack of use. You can enable it again later in the RES settings console.", description: "" }, accountSwitcherCliHelp: { message: "switch users to [username]", description: "" }, userTaggerYourVotesFor: { message: "os teus votos para $1: $2", description: "As in `your votes for username: 42`" }, commentToolsMacroButtonsDesc: { message: "Adicionar bot\xE3o de macro para o formul\xE1rio de edi\xE7\xE3o das publica\xE7\xF5es, coment\xE1rios e outros campos de texto em snudown/markdown.", description: "" }, keyboardNavImageMoveRightDesc: { message: "Mover para a direita as imagens na \xE1rea destacada a publica\xE7\xE3o.", description: "" }, subredditManagerAlwaysApplySuffixToMultiDesc: { message: "For multi-subreddit shortcuts like a+b+c/x, show a dropdown like a/x, b/x, c/x.", description: "" }, voteEnhancementsHighlightControversialDesc: { message: 'Add color to the "controversial" comment indicator.\n\nThis indicator can be enabled/disabled in your [reddit preferences](/prefs/#highlight_controversial).', description: "" }, faviconNotificationTextColorTitle: { message: "Favicon Notification Text Color", description: "" }, selectedEntryOutlineStyleNightTitle: { message: "Outline Style Night", description: "" }, accountSwitcherSnoo: { message: "snoo (alien)", description: "" }, userHighlightGenerateHoverColorsTitle: { message: "Generate Hover Colors", description: "" }, showImagesAutoMaxHeightDesc: { message: "Increase the max height of a self-text expando or comment if an expando is taller than the current max height.", description: "" }, commentPreviewOpenBigEditorTitle: { message: "Abrir o editor grande", description: "" }, keyboardNavImageSizeAnyHeightTitle: { message: "Qualquer tamanho de imagem", description: "" }, pageNavShowLinkNewTabTitle: { message: "Mostrar liga\xE7\xE3o novo separador", description: "" }, userHighlightGenerateHoverColorsDesc: { message: "Automatically generate hover color based on normal color.", description: "" }, keyboardNavNonLinearScrollStyleTitle: { message: "Estilo de Deslocamento N\xE3o-Linear", description: "" }, commentPreviewOpenBigEditorDesc: { message: "Abrir o campo de markdown actual no editor grande. (Apenas quando um formul\xE1rio de markdown est\xE1 seleccionado).", description: "" }, readCommentsMonitorWhenIncognitoDesc: { message: "Keep track while browsing in incognito/private mode.", description: "" }, commentDepthCommentPermalinksContextDesc: { message: "Define a profundidade em liga\xE7\xF5es para coment\xE1rios particulares com contexto.", description: "" }, userHighlightHighlightOPTitle: { message: "Highlight OP", description: "" }, notificationsCooldown: { message: "cooldown", description: "" }, keyboardNavsSubredditFrontPageDesc: { message: "Ir para a p\xE1gina principal do sub-reddit.", description: "" }, menuName: { message: "Menu do RES", description: "" }, messageMenuDesc: { message: "Passa o cursor por cima do \xEDcone de mensagem para aceder a diferentes g\xE9neros de mensagens ou para compor uma mensagem nova.", description: "" }, multiredditNavbarSectionMenuDesc: { message: "Mostrar um menu com liga\xE7\xF5es para as varias sec\xE7\xF5es do multireddit quando passas o cursor por cima do link.", description: "" }, accountSwitcherDraft: { message: "However, you haven't finished posting on this page as /u/$1.", description: "" }, keyboardNavLinkNewTabTitle: { message: "Comments Link New Tab", description: "" }, backupAndRestoreReloadWarningWarn: { message: "Open a prompt to reload other tabs.", description: "" }, searchHelperTransitionSearchTabsDesc: { message: "Play a transition when you open and close tabs.", description: "" }, keyboardNavOnHideMoveDownDesc: { message: "Ap\xF3s esconder uma liga\xE7\xE3o seleccionar automaticamente a pr\xF3xima liga\xE7\xE3o.", description: "" }, commentStyleDesc: { message: "Adiciona melhorias de legibilidade aos coment\xE1rios.", description: "" }, keyboardNavRandomDesc: { message: "Ir para um sub-reddit aleat\xF3rio.", description: "" }, voteEnhancementsInterpolateScoreColorDesc: { message: "Smoothly blend link and comment score colors when the score is between two thresholds.", description: "" }, subredditManagerLinkSavedTitle: { message: "Link Saved", description: "" }, commentToolsCommentingAsTitle: { message: "A comentar como", description: "" }, keyboardNavImageSizeUpDesc: { message: "Aumentar o tamanho das imagens na \xE1rea destacada da publica\xE7\xE3o.", description: "" }, floaterDesc: { message: "Gerir os elementos flutuantes do RES.", description: "" }, subredditManDesc: { message: "Permite-te personalizar a barra superior com os teus pr\xF3prios atalhos para subreddit, incluindo menus de multi-reddits e afins.", description: "" }, keyboardNavSavePostDesc: { message: "Guardar a publica\xE7\xE3o actual na tua conta do Reddit. Isto fica acess\xEDvel a partir de qualquer s\xEDtio em que tenhas sess\xE3o iniciada, mas n\xE3o preserva o texto original caso este seja editado ou apagado.", description: "" }, hideChildCommentsNestedTitle: { message: "Nested", description: "" }, commentPreviewEnableBigEditorTitle: { message: "Activar o editor grande", description: "" }, userHighlightHighlightSelfTitle: { message: "Highlight Self", description: "" }, penaltyBoxSuspendFeaturesNotificationHeader: { message: "Funcionalidade Suspensa", description: "" }, backupAndRestoreGoogleAccountTitle: { message: "Google Account", description: "" }, onboardingBetaUpdateNotificationName: { message: "Beta Update Notification", description: "" }, announcementsDesc: { message: "Mant\xE9m-te a par das novidades importantes.", description: "" }, singleClickOpenBackgroundDesc: { message: "Open the [l+c] link in background tabs.", description: "" }, settingsConsoleDefaultAddRowText: { message: "Adicionar Linha", description: "" }, keyboardNavReplyDesc: { message: "Responder ao coment\xE1rio actual (apenas nas p\xE1ginas de coment\xE1rios).", description: "" }, accountSwitcherGoldUntil: { message: "Until $1 ($2)", description: "As in 'Until 2016-01-01 (1 month)'" }, stylesheetSnippetsDesc: { message: "CSS snippets to load.", description: "" }, notificationsAddNotificationType: { message: "registar manualmente tipos de notifica\xE7\xE3o", description: "" }, subRedditTaggerSubRedditsDesc: { message: "subreddit: Name of the subreddit, without slashes.\n\ndoesntContain: Any string of text that could be present in a submission title. If a title contains this string, the tag will not be applied.\n\ntag:The text that will appear at the beginning of submission titles. e.g. use [tag], (tag), TAG | , etc...", description: "" }, notificationsName: { message: "Notifica\xE7\xF5es do RES", description: "" }, subredditManagerLinkMyRandomDesc: { message: 'Show "MYRANDOM" link in subreddit manager (reddit gold only).', description: "" }, userInfoHighlightButtonTitle: { message: "Highlight Button", description: "" }, stylesheetBodyClassesTitle: { message: "Body Classes", description: "" }, backupAndRestoreFoundBackup: { message: "Found new automatic backup from $1.", description: "" }, subredditManagerLinkRandNSFWDesc: { message: 'Show "RANDNSFW" link in subreddit manager.', description: "" }, styleTweaksSubredditStyleCheckboxTitle: { message: "Subreddit Style Checkbox", description: "" }, keyboardNavFollowCommentsDesc: { message: "Ver coment\xE1rios para liga\xE7\xF5es (a tecla shift abre num novo separador).", description: "" }, commentPreviewSidebarPreviewDesc: { message: "Mostrar uma pr\xE9-visualiza\xE7\xE3o instant\xE2nea directamente na barra lateral ao edit\xE1-la.", description: "" }, subredditManagerLinkFriendsDesc: { message: 'Show "FRIENDS" link in subreddit manager.', description: "" }, keyboardNavProfileNewTabTitle: { message: "Perfil num novo separador", description: "" }, keyboardNavFollowLinkAndCommentsNewTabTitle: { message: "Seguir liga\xE7\xE3o e coment\xE1rios num novo separador", description: "" }, keyboardNavProfileViewDesc: { message: "Go to new profile (profile pages only).", description: "" }, multiredditNavbarName: { message: "Navega\xE7\xE3o Multi-reddit", description: "" }, keyboardNavToggleExpandoTitle: { message: "Activar/Desactivar Expandos", description: "" }, showKarmaName: { message: "Mostrar Carma", description: "" }, voteEnhancementsUserDefinedCommentColorationTitle: { message: "User Defined Comment Coloration", description: "" }, commentToolsSubredditAutocompleteTitle: { message: "Auto-completar sub-reddits", description: "" }, settingsNavName: { message: "Navega\xE7\xE3o das Defini\xE7\xF5es do RES", description: "" }, contributeName: { message: "Doar e Contribuir", description: "" }, showImagesFilmstripLoadIncrementDesc: { message: "Limit the number of pieces loaded in a 'filmstrip' by this number. (0 for no limit)", description: "" }, nerShowServerInfoDesc: { message: "Show the \u03C0 server / debug details next to the floating Never-Ending Reddit tools.", description: "" }, noPartDisableCommentTextareaTitle: { message: "Desativar coment\xE1rio da caixa de texto", description: "" }, tableToolsSortDesc: { message: "Enable column sorting.", description: "" }, userInfoHoverDelayDesc: { message: "Delay, in milliseconds, before hover tooltip loads.", description: "" }, commentDepthCommentPermaLinksDesc: { message: "Define a profundidade das liga\xE7\xF5es para coment\xE1rios particulares.", description: "" }, profileRedirectFromLandingPageTitle: { message: "From Landing Page", description: "" }, profileNavigatorSectionMenuDesc: { message: "Mostrar um menu com atalhos para v\xE1rias sec\xE7\xF5es da p\xE1gina de perfil do utilizador ao passar com o cursor por cima do nome de utilizador no canto superior direito.", description: "" }, styleTweaksHighlightTopLevelColorDesc: { message: "Specify the color to separate top-level comments.", description: "" }, commentToolsName: { message: "Ferramentas de Edi\xE7\xE3o", description: "" }, accountSwitcherAccountsDesc: { message: "Define os teus nomes de utilizador e palavras-passe abaixo. Estes ficam guardados nas defini\xE7\xF5es do RES.", description: "" }, singleClickOpenBackgroundTitle: { message: "Open Background", description: "" }, filteRedditFilterSubredditsFromDesc: { message: "Ao filtrar sub-reddits com a op\xE7\xE3o acima, onde dever\xE3o eles ser filtrados?", description: "" }, commandLineMenuItemDesc: { message: 'Add a "launch command line" item to the RES dropdown menu', description: "" }, commentPrevName: { message: "Pr\xE9-visualiza\xE7\xE3o instant\xE2nea", description: "" }, hoverOpenDelayDesc: { message: "Intervalo predefinido entre o cursor em cima e o aparecimento do popup.", description: "" }, toggleCommentsLeftEdgeCollapsedColorDesc: { message: "Color of the bar when collapsed.", description: "" }, announcementsName: { message: "Comunicados do RES", description: "" }, betteRedditVideoViewedDesc: { message: "Mostrar o n\xFAmero de vistas de um v\xEDdeo quando poss\xEDvel.", description: "" }, keyboardNavMoveToTopCommentTitle: { message: "Mover para o coment\xE1rio no topo", description: "" }, usernameHiderHideAccountSwitcherUsernamesDesc: { message: "Hide all accounts listed in Account Switcher.\nIf an username isn't already listed in perAccountDisplayText, then hide that username with the default displayText.", description: "" }, keyboardNavLinearScrollStyleDesc: { message: "When moving up/down with keynav, when and how should RES scroll the window?\n\n**Directional**: Scroll just enough to bring the selected element into view, if it's offscreen.\n\n**Page up/down**: Scroll up/down an entire page after reaching the top or bottom.\n\n**Lock to top**: Always align the selected element to the top of the screen.\n\n**In middle**: Scroll just enough to bring the selected element to the middle of the viewport.\n\n**Adopt top**: Reuse the alignment of the previous selected element.\n\n**Legacy**: If the element is offscreen, lock to top.", description: "" }, accountSwitcherReload: { message: "reload", description: "" }, styleTweaksFloatingSideBarDesc: { message: "Makes the left sidebar (with multireddits) float as you scroll down so you can always see it.", description: "" }, troubleshooterBreakpointTitle: { message: "Breakpoint", description: "" }, usernameHiderHideAllUsernamesTitle: { message: "Hide All Usernames", description: "" }, orangeredUpdateOtherTabsTitle: { message: "Atualizar outros separadores", description: "" }, notificationsNotificationID: { message: "ID de notifica\xE7\xE3o", description: "" }, showImagesCaptionsPositionDesc: { message: "Where to display captions around an image.", description: "" }, filteRedditAllowNSFWWhenBrowsingSubreddit: { message: "When browsing subreddit/multi-subreddit", description: "" }, sourceSnudownName: { message: "Mostrar o C\xF3digo Fonte", description: "" }, keyboardNavInboxDesc: { message: "Ir para a caixa de entrada.", description: "" }, gfycatUseMobileGfycatDesc: { message: "Usar os gifs do gfycat com baixa resolu\xE7\xE3o (mobile).", description: "" }, keyboardNavToggleViewImagesTitle: { message: "Activar/Desactivar Ver Imagens", description: "" }, contributeDesc: { message: "RES is entirely free - If you like our work, a contribution would be greatly appreciated.\n\nIf you would like to donate to RES, visit our [Contribution page](https://redditenhancementsuite.com/contribute/).\n\nCan't contribute a few bucks? How about a few lines of code? Our source code can be viewed on our [Github page](https://github.com/honestbleeps/Reddit-Enhancement-Suite/).", description: "" }, aboutOptionsBackup: { message: "Copia e restaura as tuas defini\xE7\xF5es do RES.", description: "" }, showParentDesc: { message: 'Mostra os coment\xE1rios-pai ao passar o cursor por cima da liga\xE7\xE3o "pai" de um coment\xE1rio.', description: "" }, keyboardNavImageSizeDownDesc: { message: "Diminuir o tamanho das imagens na \xE1rea destacada da publica\xE7\xE3o.", description: "" }, userHighlightSelfColorTitle: { message: "Self Color", description: "" }, commentToolsShowInputLengthTitle: { message: "Mostrar comprimento da entrada", description: "" }, keyboardNavSaveRESDesc: { message: "Guarda o coment\xE1rio actual no RES. Isto preserva o texto original do coment\xE1rio, mas fica apenas guardado localmente.", description: "" }, showParentFadeDelayDesc: { message: "Delay, in milliseconds, before parent hover fades away after the mouse leaves.", description: "" }, nerDesc: { message: "Inspirado por m\xF3dulos como 'River of Reddit' e 'Auto Pager' - d\xE1-te uma torrente de coisas boas que nunca mais acaba .", description: "" }, userTaggerTruncateTagTitle: { message: "Truncate Tags", description: "" }, filteRedditExcludeUserPagesDesc: { message: "N\xE3o filtrar nada nas p\xE1ginas de utilizador.", description: "" }, newCommentCountMonitorPostsVisitedIncognitoDesc: { message: "Monitor the number of comments and edit dates of posts you have visited while browsing in incognito/private mode.", description: "" }, subredditManagerLinkRandomTitle: { message: "Link Random", description: "" }, accountSwitcherAccountSwitchError: { message: "Could not switch accounts. Reddit may be under heavy load. Please try again in a few moments.", description: "" }, filteRedditEmptyNotificationInfo: { message: "RES noticed that every post is hidden. Click on the button below to see why posts are filtered out.", description: "" }, backupAndRestoreRestoreTitle: { message: "Restaurar", description: "" }, logoLinkCustom: { message: "Personalizado", description: "" }, orangeredShowFloatingEnvelopeTitle: { message: "Show Floating Envelope", description: "" }, userTaggerVwNumberTitle: { message: "VW Number", description: "" }, customTogglesToggleDesc: { message: "Activar ou desactivar tudo o que esteja ligado a este interruptor e opcionalmente adicionar um interruptor ao menu da roda do RES.", description: "" }, RESTipsNewFeatureTipsTitle: { message: "New Feature Tips", description: "" }, noPartDisableVoteButtonsDesc: { message: "Esconder os bot\xF5es de voto. Se j\xE1 visitaste esta p\xE1gina e votaste, os teus votos antigos ser\xE3o visiveis.", description: "" }, commentStyleContinuityDesc: { message: "Mostrar linha de continuidade dos coment\xE1rios.", description: "" }, filteRedditApplyTo: { message: "apply to", description: "" }, subredditInfoStopFilteringThisSubredditFromAllAndDomain: { message: "Parar de filtrar este sub-reddit do /r/all e do /domain/*", description: "" }, dashboardDefaultPostsTitle: { message: "Publica\xE7\xF5es predefinidas", description: "" }, contextViewFullContextTitle: { message: "Ver o contexto completo", description: "" }, hideCommentsOnHeaderDoubleClickDesc: { message: "Toggles comment collapse when the header is double clicked.", description: "" }, showImagesUseSlideshowWhenLargerThanTitle: { message: "Use Slideshow When Larger Than", description: "" }, aboutOptionsPrivacyTitle: { message: "Privacidade", description: "" }, styleTweaksSubredditStyleCheckboxDesc: { message: "Add a checkbox in the sidebar to disable/enable current subreddit style.", description: "" }, submitHelperFocusFormOnLoadTitle: { message: "Focus Form On Load", description: "" }, sourceSnudownDesc: { message: "Adiciona uma ferramenta para mostrar o texto original das publica\xE7\xF5es de texto e coment\xE1rios sem a formata\xE7\xE3o do Reddit.", description: "" }, selectedEntryOutlineStyleDesc: { message: "Border appearance. E.g. `1px dashed gray` (CSS)", description: "" }, keyboardNavMoveDownCommentDesc: { message: "Descer para o coment\xE1rio seguinte em p\xE1ginas de coment\xE1rio em \xE1rvore.", description: "" }, showParentHoverDelayDesc: { message: "Delay, in milliseconds, before parent hover loads.", description: "" }, userTaggerVotesDown: { message: "Downvotes", description: "" }, submitHelperDesc: { message: "Disponibiliza ferramentas para ajudar-te no envio de uma publica\xE7\xE3o.", description: "" }, hideChildCommentsAutomaticTitle: { message: "Autom\xE1tico", description: "" }, troubleshooterDisableLabel: { message: "Disable", description: "" }, showKarmaSeparatorTitle: { message: "Separador", description: "" }, onboardingUpdateNotificationDescription: { message: "Notification method for major/minor updates.", description: "" }, hoverFadeDelayDesc: { message: "Intervalo predefinido antes de o popup desaparecer ap\xF3s tirar o cursor.", description: "" }, logoLinkRedditLogoDestinationDesc: { message: "Local quando clicas no log\xF3tipo do Reddit.", description: "" }, settingsConsoleName: { message: "Consola de Defini\xE7\xF5es", description: "" }, searchHelperToggleSearchOptionsTitle: { message: "Toggle Search Options", description: "" }, commentDepthSubredditCommentDepthsDesc: { message: "Profundidades espec\xEDficas de sub-reddit.", description: "" }, userHighlightFriendColorHoverTitle: { message: "Friend Color Hover", description: "" }, showImagesOpenInNewWindowTitle: { message: "Open In New Window", description: "" }, stylesheetUsernameClassDesc: { message: "When browsing a user profile, add the username as a class to the body.\nFor example, /u/ExampleUser adds `body.res-user-exampleuser`.", description: "" }, keyboardNavModmailDesc: { message: "Ir para o correio de moderador.", description: "" }, nsfwSwitchToggleTitle: { message: "Toggle NSFW Filter", description: "" }, userHighlightHighlightModTitle: { message: "Highlight Mod", description: "" }, imgurUseGifOverGifVDesc: { message: "Use GIFs in place of GIFV for imgur links", description: "" }, dashboardDefaultSortDesc: { message: "M\xE9todo de ordena\xE7\xE3o predefinido nos novos widgets.", description: "" }, accountSwitcherReloadOtherTabsDesc: { message: "Ao trocar de conta actualizar automaticamente os outros separadores.", description: "" }, subredditManagerFilterPlaceholder: { message: "Filter subreddits...", description: "" }, styleTweaksDisableAnimationsTitle: { message: "Disable Animations", description: "" }, onboardingPatchUpdateNotificationDescription: { message: "Notification method for patch updates.", description: "" }, showImagesAutoExpandSelfTextNSFWTitle: { message: "Auto Expand Self Text NSFW", description: "" }, hoverInstancesEnabled: { message: "activado", description: "" }, nightModeColoredLinksTitle: { message: "Liga\xE7\xF5es coloridas.", description: "" }, modhelperDesc: { message: "Ajuda moderadores atrav\xE9s de dicas e truques para interagir amigavelmente com o RES.", description: "" }, quickMessageName: { message: "Mensagem R\xE1pida", description: "" }, noPartEscapeNPDesc: { message: "Remove np mode when leaving a No-Participation page.", description: "" }, penaltyBoxSuspendFeaturesUndoButton: { message: "Reactivar esta funcionalidade", description: "" }, userHighlightDesc: { message: "Destaca determinados utilizadores nas p\xE1ginas de coment\xE1rios: OP, Admin, Amigos, Mod - contribui\xE7\xE3o de MrDerk.", description: "" }, keyboardNavScrollOnExpandoDesc: { message: "Deslocar a janela para o topo da liga\xE7\xE3o quando a tecla de expando \xE9 usada (para manter as imagens, etc, em vista).", description: "" }, profileNavigatorFadeDelayDesc: { message: "Atraso, em mil\xE9simos de segundo, antes de a tooltip desaparecer.", description: "" }, userInfoAddRemoveFriends: { message: "$1 amigos", description: "" }, userHighlightSelfColorDesc: { message: "Color to use to highlight the logged in user.", description: "" }, nightModeNightModeOverrideHoursDesc: { message: "Number of hours that the automatic night mode override lasts.\nYou can use a decimal number of hours here as well; e.g. 0.1 hours (which is 6 min).", description: "" }, presetsNoPopupsDesc: { message: "Turn off notifications and hover pop-ups", description: "" }, userHighlightFriendColorDesc: { message: "Color to use to highlight Friends.", description: "" }, spoilerTagsTransitionDesc: { message: "Delay showing spoiler text momentarily.", description: "" }, nerShowPauseButtonDesc: { message: "Show a play/pause button for auto-load in the top right corner.", description: "" }, messageMenuName: { message: "Menu de Mensagens", description: "" }, aboutOptionsSuggestions: { message: "Se tiveres uma ideia para o RES ou quiseres conversar com outros utilizadores, visita /r/Enhancement.", description: "" }, userbarHiderName: { message: "Esconder a Barra de Utilizador", description: "" }, stylesheetRedditThemesTitle: { message: "Reddit Themes", description: "" }, keyboardNavNonLinearScrollStyleDesc: { message: "Ao saltar para uma entrada (moveUpThread/moveDownThread, moveUpSibling/moveDownSibling, moveToParent, and moveDownParentSibling), quando e como dever\xE1 o RES deslocar a janela?", description: "" }, subredditInfoFadeDelayTitle: { message: "Fade Delay", description: "" }, necDescription: { message: "Keep ultra-long comment pages flowing.", description: "" }, keyboardNavFollowProfileDesc: { message: "Go to profile of selected thing's author.", description: "" }, showImagesImageMoveDesc: { message: "Allow dragging while holding shift to move images.", description: "" }, troubleshooterCachesCleared: { message: "Todas as caches foram limpas.", description: "" }, localDateName: { message: "Data Local", description: "" }, commentStyleCommentRoundedDesc: { message: "Arredondar os cantos das caixas de coment\xE1rios.", description: "" }, subredditManagerButtonEditDesc: { message: 'Show "EDIT" button in subreddit manager.', description: "" }, keyboardNavUseGoModeTitle: { message: "Usar o Modo Ir", description: "" }, messageMenuLabel: { message: "etiqueta", description: "" }, keyboardNavOverviewLegacyDesc: { message: "Go to legacy (overview) profile (profile pages only).", description: "" }, userHighlightFirstCommentColorHoverDesc: { message: "Color used to highlight the first-commenter on hover.", description: "" }, accountSwitcherShowCurrentUserNameTitle: { message: "Mostrar o nome de utilizador actual", description: "" }, troubleshooterTestEnvironmentDesc: { message: "A few environment/browser specific tests.", description: "" }, subredditInfoAddRemoveFilter: { message: "filtro", description: "" }, orangeredShowUnreadCountInTitleTitle: { message: "Mostrar n\xFAmero de n\xE3o-lidos no t\xEDtulo ", description: "" }, usernameHiderHideAccountSwitcherUsernamesTitle: { message: "Hide Account Switcher Usernames", description: "" }, commentPreviewSidebarPreviewTitle: { message: "Pr\xE9-visualiza\xE7\xE3o da barra lateral", description: "" }, toggleCommentsOnClickLeftEdgeDesc: { message: "Creates a bar on the left side of each comment. The bar can be clicked to collapse the comment.", description: "" }, keyboardNavFollowSubredditNewTabTitle: { message: "Seguir Sub-reddit num novo separador", description: "" }, commentToolsUserAutoCompleteDesc: { message: "Mostrar a ferramenta para auto-completar nomes de utilizador ao escrever em publica\xE7\xF5es, coment\xE1rios e respostas.", description: "" }, usernameHiderShowUsernameOnHoverDesc: { message: "Mousing over the text hiding your username reveals your real username.\nThis makes it easy to double check that you're commenting/posting from the correct account, while still keeping your username hidden from prying eyes.", description: "" }, filteRedditNSFWQuickToggleDesc: { message: "Adicionar um interruptor r\xE1pido de NSFW no menu da roda.", description: "" }, subredditInfoSubscribe: { message: "subscrever", description: "" }, keyboardNavFollowProfileNewTabDesc: { message: "Go to profile of selected thing's author in a new tab.", description: "" }, keyboardNavDownVoteDesc: { message: "Dar voto negativo \xE0 liga\xE7\xE3o ou coment\xE1rios seleccionados (ou remover o voto negativo).", description: "" }, backupAndRestoreBackupOverwriteWarning: { message: "Restoring a backup will permanently overwrite your current storage. Are you sure you want to do this?", description: "" }, subredditManagerSubredditShortcutDesc: { message: "Add +shortcut button in subreddit sidebar for easy addition of shortcuts.", description: "" }, userHighlightHighlightAdminDesc: { message: "Highlight Admin's comments.", description: "" }, commentToolsCtrlEnterSubmitsCommentsTitle: { message: "Ctrl+enter para enviar coment\xE1rio", description: "" }, toggleCommentsLeftEdgeHideButtonTitle: { message: "Toggle Comments Left Edge Hide Button", description: "" }, orangeredHideNewModMailTitle: { message: "Hide New Mod Mail", description: "" }, userInfoUseQuickMessageDesc: { message: `Open the quick message dialog when clicking on the "send message" button in hover info, instead of going straight to reddit's message page.`, description: "" }, commentToolsCtrolEnterSubmitsPostsTitle: { message: "Ctrl+enter para enviar publica\xE7\xE3o", description: "" }, userInfoGildCommentsTitle: { message: "Gild Comments", description: "" }, subredditInfoHoverDelayTitle: { message: "Hover Delay", description: "" }, subredditInfoSubredditCreated: { message: "Sub-reddit criado:", description: "" }, multiredditNavbarLabel: { message: "etiqueta", description: "" }, userHighlightAutoColorUsingTitle: { message: "Auto Color Using", description: "" }, submitHelperWarnAlreadySubmittedDesc: { message: "Show a warning when the current URL has already been submitted to the selected subreddit.\n\n*Not 100% accurate, due to search limitations and different ways to format the same URL.*", description: "" }, singleClickHideLECDesc: { message: "Hide the [l=c] when the link is the same as the comments page.", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationMessage: { message: "$1 has been turned back on. This feature will not be throttled or automatically disabled again.", description: "" }, messageMenuHoverDelayTitle: { message: "Atraso de Flutuantes", description: "" }, stylesheetUsernameClassTitle: { message: "Username Class", description: "" }, commentPreviewEnableForBanMessagesDesc: { message: "Mostrar pr\xE9-visualiza\xE7\xE3o nas notas dos bans.", description: "" }, usersCategory: { message: "Utilizadores", description: "" }, showImagesMediaBrowseDesc: { message: "If media is open on the currently selected post when moving up/down one post, open media on the next post.", description: "" }, nightModeColoredLinksDesc: { message: "Color links blue and purple.", description: "" }, subredditInfoSubredditNotFound: { message: "Sub-reddit n\xE3o encontrado.", description: "" }, logoLinkCustomDestinationDesc: { message: "Se o Destino do Log\xF3tipo do Reddit est\xE1 definido como personalizado, adiciona a liga\xE7\xE3o aqui.", description: "" }, resTipsName: { message: "Truques e Dicas do RES", description: "" }, keyboardNavToggleCmdLineTitle: { message: "Activar/Desactivar Linha de Comandos", description: "" }, contextName: { message: "Contexto", description: "" }, backupAndRestoreReloadWarningDesc: { message: "After restoring a backup, either manually or automatically, how should other tabs be reloaded? Tabs must be reloaded for restored settings to take effect.", description: "" }, temporaryDropdownLinksAlwaysTitle: { message: "Always", description: "" }, troubleshooterThisWillKillYourSettings: { message: 'Isto ir\xE1 eliminar todas as tuas defini\xE7\xF5es e dados guardados. Se tiveres a certeza introduz "$1".', description: "" }, searchHelperDefaultSearchTabTitle: { message: "Default Search Tab", description: "" }, nightModeNightModeOverrideHoursTitle: { message: "Night Mode Override Hours", description: "" }, userInfoUserSuspended: { message: "Utilizador suspenso.", description: "" }, readCommentsDesc: { message: "Keep track of what comments you have read. Useful for filtering comments.", description: "" }, accountSwitcherPasswordPrompt: { message: "Enter the password for $1", description: "" }, showKarmaUseCommasTitle: { message: "Use Commas", description: "" }, userInfoLinks: { message: "Liga\xE7\xF5es", description: "" }, userHighlightHighlightAdminTitle: { message: "Highlight Admin", description: "" }, filteRedditDomainsDesc: { message: 'Hide posts that link to certain domains.\nCaution: domain keywords like "reddit" would ignore "reddit.com" and "fooredditbar.com".', description: "" }, showImagesShowVideoControlsDesc: { message: "Show controls such as pause/play, step and playback rate.", description: "" }, toggleCommentsLeftEdgeHideButtonDesc: { message: "Hides the default button ([-]) to collapse comments.", description: "" }, subredditManagerStoreSubredditVisitIncognitoTitle: { message: "Store Subreddit Visit Incognito", description: "" }, keyboardNavMoveTopDesc: { message: "Mover para o topo da lista (em p\xE1ginas de liga\xE7\xE3o).", description: "" }, contextDefaultContextTitle: { message: "Contexto predefinido", description: "" }, userTaggerTagUserAs: { message: "marcar utilizador $1 como: $2", description: "" }, imgurPreferResAlbumsDesc: { message: "Prefer RES support for imgur albums rather than reddit's built in support.", description: "" }, showImagesMaxWidthTitle: { message: "Max Width", description: "" }, subRedditTaggerSubRedditsTitle: { message: "Sub Reddits", description: "" }, orangeredHideEmptyNewModMailTitle: { message: "Hide Empty New Mod Mail", description: "" }, keyboardNavMoveDownSiblingTitle: { message: "Descer Para o Irm\xE3o", description: "" }, customTogglesName: { message: "Interruptores Personalizados", description: "" }, pageNavShowLinkTitle: { message: "Mostrar liga\xE7\xE3o", description: "" }, keyboardNavProfileNewTabDesc: { message: "Ir para o perfil num novo separador.", description: "" }, aboutCategory: { message: "Acerca do RES", description: "" }, showImagesGalleryAsFilmstripDesc: { message: "Display all media at once in a 'filmstrip' layout, rather than the default navigable 'slideshow' style.", description: "" }, subredditManagerLinkFriendsTitle: { message: "Link Friends", description: "" }, quickMessageSendAsDesc: { message: `The default user or subreddit to select when the "from" field is unspecified. Reverts to the current user if the selected option can't be used (i.e. you aren't a moderator of the current subreddit).`, description: "" }, userInfoGiftRedditGold: { message: "Dar Ouro do Reddit", description: "" }, troubleshooterDesc: { message: "Resolve common problems and clean/clear unwanted settings data.\n\nYour first line of defence against browser crashes/updates, or potential issues with RES, is a frequent backup.\n\nSee [here](/r/Enhancement/wiki/backing_up_res_settings) for details on backing up your RES settings.", description: "" }, backupAndRestoreRestoreDesc: { message: "Restaurar um backup das defini\xE7\xF5es do RES.", description: "" }, commentPreviewEnableForCommentsDesc: { message: "Mostrar pr\xE9-visualiza\xE7\xE3o para os coment\xE1rios.", description: "" }, spamButtonName: { message: "Bot\xE3o de Lixo", description: "" }, hoverInstancesTitle: { message: "Inst\xE2ncias", description: "" }, userHighlightColorCouldNotBeGenerated: { message: "Algumas cores do flutuante n\xE3o puderam ser geradas. Isto deve-se provavelmente ao uso de cores em formatos especiais.", description: "hover/highlight discrepancy is intended; the module is named 'userHighlight'" }, commentToolsKeyboardShortcutsDesc: { message: "Usar teclas de atalho para aplicar estilos ao texto seleccionado.", description: "" }, profileRedirectDesc: { message: "Prefer loading a particular view of a profile page", description: "" }, searchHelperHideSearchOptionsDesc: { message: "Automatically hide search options and suggestions on the search page.", description: "" }, notificationsDesc: { message: "Manage pop-up notifications for RES functions.", description: "" }, logoLinkDashboard: { message: "Painel de Controlo", description: "" }, dashboardDashboardShortcutDesc: { message: "Mostrar um atalho +painel de controlo na barra lateral para ser mais f\xE1cil adicionar widgets do painel de controlo.", description: "" }, userInfoName: { message: "Informa\xE7\xF5es do Utilizador", description: "" }, keyboardNavLinkNumbersDesc: { message: "Assign number keys (e.g. [1]) to links within selected entry.", description: "" }, singleClickHideLECTitle: { message: "Hide LEC", description: "" }, toggleCommentsLeftEdgeWidthDesc: { message: "Largura da barra", description: "" }, filteRedditDomainsTitle: { message: "Dom\xEDnios", description: "" }, voteEnhancementsHighlightScoresTitle: { message: "Highlight Scores", description: "" }, penaltyBoxSuspendFeaturesRevertNotificationHeader: { message: "Pardoned Feature", description: "" }, orangeredHideModMailTitle: { message: "Esconder mod mail", description: "" }, commentNavigatorOpenOnHighlightUserTitle: { message: "Abrir em destacar utilizador", description: "" }, troubleshooterDisableRESDesc: { message: "Reloads the page and disables RES for this tab only. RES will still be enabled in any other reddit tabs or windows you currently have open or open after this. This feature can be used for troubleshooting, as well as to quickly hide usernotes, vote counts, subreddit shortcuts, and other RES data for clean screenshotting.", description: "" }, submitHelperWarnAlreadySubmittedTitle: { message: "Warn Already Submitted", description: "" }, aboutOptionsPrivacy: { message: "L\xEA a pol\xEDtica de privacidade do RES.", description: "" }, commentStyleContinuityTitle: { message: "Continuidade", description: "" }, iredditPreferRedditMediaTitle: { message: "Prefer Reddit Media", description: "" }, filteRedditAddFilter: { message: "+add filter", description: "" }, accountSwitcherShowUserDetailsDesc: { message: "Mostrar detalhes de cada conta em Mudar de Conta, tal como carma e estatuto de utilizador de ouro.", description: "" }, browsingCategory: { message: "Navega\xE7\xE3o", description: "" }, announcementsNewPost: { message: "A new post has been made to /r/$1", description: "" }, styleTweaksHighlightTopLevelDesc: { message: "Draws a line to separate top-level comments for easier distinction.", description: "" }, userTaggerAreYouSureYouWantToDeleteTag: { message: "Tens a certeza que queres remover a etiqueta do utilizador: $1?", description: "" }, selectedEntryAddLineTitle: { message: "Add Line", description: "" }, imgurPreferredImgurLinkDesc: { message: "Which view to request when following a link to imgur.", description: "" }, showImagesExpandoCommentRedirectsDesc: { message: "How should RES handle posts where the link is redirected to the comments page with preview expanded?", description: "" }, keyboardNavMoveDownThreadTitle: { message: "Desce T\xF3pico", description: "" }, keyboardNavInboxTitle: { message: "Caixa de Entrada", description: "" }, quickMessageLinkToCurrentPageTitle: { message: "Link To Current Page", description: "" }, userInfoUnhighlight: { message: "Tirar destaque", description: "" }, showImagesMarkVisitedTitle: { message: "Mark Visited", description: "" }, profileNavigatorSectionLinksTitle: { message: "Section Links", description: "" }, accountSwitcherLoggedOut: { message: "You have been logged out.", description: "" }, betteRedditHideSubmissionError: { message: "Sorry, there was an error trying to hide your submission. Try clicking again.", description: "" }, commentNavigatorShowByDefaultTitle: { message: "Mostrar por defeito", description: "" } }; // locales/locales/index.js var locales_default = { de: de_default, el: el_default, en: en_default, en_lolcat: en_lolcat_default, en_pirate: en_pirate_default, en_CA: en_CA_default, en_GB: en_GB_default, es: es_default, es_419: es_419_default, he: he_default, it: it_default, nl_NL: nl_NL_default, pl: pl_default, pt: pt_default, pt_BR: pt_BR_default, pt_PT: pt_PT_default }; // locales/index.js function redditLocaleToTransifexLocale(redditLocale) { switch (redditLocale) { case "leet": return "en"; case "lol": return "en_lolcat"; case "pir": return "en_pirate"; case "es-ar": case "es-cl": return "es_419"; default: { const normalized = redditLocale.replace("-", "_"); const inx = normalized.indexOf("_"); if (inx === -1) { return normalized; } else { return `${normalized.slice(0, inx)}_${normalized.slice(inx + 1).toUpperCase()}`; } } } } function getLocaleDictionary(localeName) { const transifexLocale = redditLocaleToTransifexLocale(localeName); const mergedLocales = { // 3. Default (en) ...locales_default.en, // 2. Match without region (en_CA -> en) ...locales_default[transifexLocale.slice(0, transifexLocale.indexOf("_"))], // 1. Exact match (en_CA -> en_CA) ...locales_default[transifexLocale] }; return mapValues_default(mergedLocales, (x) => x.message); } // lib/environment/background/i18n.js addListener("i18n", (locale) => getLocaleDictionary(locale)); // lib/environment/background/loadScript.js addListener("loadScript", async ({ url }, { tab: { id: tabId }, frameId }) => { await apiToPromise(chrome.scripting.executeScript)({ target: { tabId, frameIds: [frameId] }, files: [url] }); }); // lib/environment/background/localePersistor.js var lastRedditLocale = navigator.language || "en"; addListener("getLastRedditLocale", () => lastRedditLocale); addListener("setLastRedditLocale", (v) => { lastRedditLocale = v; }); // lib/environment/background/multicast.js addListener("multicast", async ({ name, args, crossContext }, sender) => { const CONTEXT_KEY = false ? "cookieStoreId" : "incognito"; const redditTabs = await apiToPromise(chrome.tabs.query)({ url: "https://*.reddit.com/*", status: "complete" }); const nonSelfTabsInSameContext = redditTabs.filter((tab) => (sender.frameId || tab.id !== sender.tab.id) && (crossContext || tab[CONTEXT_KEY] === sender.tab[CONTEXT_KEY])); return Promise.all(nonSelfTabsInSameContext.map(({ id: tabId }) => sendMessage("multicast", { name, args }, tabId))); }); // lib/environment/background/pageAction.js (false ? chrome.pageAction : chrome.action).onClicked.addListener((tab) => { sendMessage("pageActionClick", void 0, tab.id); }); addListener("pageAction", ({ operation, state }, { tab }) => { switch (operation) { case "show": (false ? chrome.pageAction.show : chrome.action.enable)(tab.id); (false ? chrome.pageAction : chrome.action).setIcon({ tabId: tab.id, path: { "19": state ? "css-on-small.png" : "css-off-small.png", // eslint-disable-line quote-props "38": state ? "css-on.png" : "css-off.png" // eslint-disable-line quote-props } }); (false ? chrome.pageAction : chrome.action).setTitle({ tabId: tab.id, title: state ? "Subreddit Style On" : "Subreddit Style Off" }); break; case "hide": (false ? chrome.pageAction.hide : chrome.action.disable)(tab.id); break; default: throw new Error(`Invalid action operation: ${operation}`); } }); // lib/environment/background/permissions.js addListener("permissions", handleMessage); function handleMessage({ operation, permissions, origins }) { switch (operation) { case "contains": return apiToPromise(chrome.permissions.contains)({ permissions, origins }); case "request": return apiToPromise(chrome.permissions.request)({ permissions, origins }).catch(() => makePromptWindow({ permissions, origins })); default: throw new Error(`Invalid permissions operation: ${operation}`); } } async function makePromptWindow({ permissions, origins }) { const url = new URL("prompt.html", location.origin); url.searchParams.set("permissions", JSON.stringify(permissions)); url.searchParams.set("origins", JSON.stringify(origins)); const width = 630; const height = 255; const left = Math.floor(screen.width / 2 - width / 2); const top = Math.floor(screen.height / 2 - height / 2); const { tabs: [{ id }] } = await apiToPromise(chrome.windows.create)({ url: url.href, type: "popup", width, height, left, top }); return new Promise((resolve) => { function updateListener(tabId, updates) { if (tabId !== id) return; const url2 = updates.url && new URL(updates.url); if (url2 && url2.searchParams.has("result")) { stopListening(); const result = url2.searchParams.get("result"); if (!result) return; resolve(JSON.parse(result)); apiToPromise(chrome.tabs.remove)(id); } } function removeListener(tabId) { if (tabId !== id) return; stopListening(); resolve(false); } function stopListening() { chrome.tabs.onUpdated.removeListener(updateListener); chrome.tabs.onRemoved.removeListener(removeListener); } chrome.tabs.onUpdated.addListener(updateListener); chrome.tabs.onRemoved.addListener(removeListener); }); } // lib/environment/background/session.js var session = /* @__PURE__ */ new Map(); addListener("session", ([operation, key, value]) => { switch (operation) { case "get": return session.get(key); case "set": session.set(key, value); break; case "delete": return session.delete(key); case "has": return session.has(key); case "clear": return session.clear(); default: throw new Error(`Invalid session operation: ${operation}`); } }); // lib/utils/generator.js function* zip(...iterables) { const generators = iterables.map((it) => it[Symbol.iterator]()); let results; while ((results = generators.map((gen) => gen.next())).some((r) => !r.done)) { yield results.map((r) => r.value); } } // lib/utils/async.js var forEachChunked = (() => { const framerate = 30; const frameTime = 1e3 / framerate; const queues = []; const run = frameThrottle(() => { const start = performance.now(); do { remove_default(queues, ({ generator, callback, resolve, reject }) => { const { value, done } = generator.next(); if (done) { resolve(); return true; } try { callback(value); } catch (e) { if (generator.return) generator.return(); reject(e); return true; } }); if (!queues.length) { return; } } while (performance.now() - start < frameTime); run(); }); return curryRight_default( (collection, callback) => new Promise((resolve, reject) => { const iterable = Symbol.iterator in collection ? collection : Array.from(collection); queues.push({ generator: iterable[Symbol.iterator](), callback, resolve, reject }); run(); }) ); })(); function batch(callback, { size = 100, delay = 50, flushBeforeUnload = false } = {}) { let invoke; function* batchAccumulator() { const entries = []; const promises = []; function addPromise() { if (entries.length) { return new Promise((resolve, reject) => { promises.push({ resolve, reject }); }); } else { return void 0; } } invoke = once_default(async () => { startNewBatch(); if (!entries.length) return; try { const results = await callback(entries) || []; for (const [{ resolve, reject }, result] of zip(promises, results)) { if (result instanceof Error) reject(result); else resolve(result); } } catch (e) { for (const { reject } of promises) { reject(e); } } }); const timeout = delay ? debounce_default(invoke, delay) : throttle(invoke); while (entries.length < size) { const entry = yield addPromise(); if (entry === void 0) throw new Error("undefined passed into batch generator"); entries.push(entry); timeout(); } const lastPromise = addPromise(); invoke(); yield lastPromise; } let currentBatch; function startNewBatch() { currentBatch = batchAccumulator(); currentBatch.next(); } startNewBatch(); if (flushBeforeUnload) window.addEventListener("beforeunload", () => { invoke(); }, true); return (entry) => { const { value } = currentBatch.next(entry); if (value === void 0) throw new Error("Batch generator was not replaced after completion"); return value; }; } function always(promise, callback) { return promise.then(callback, callback); } function fastAsync(callback) { return function(...args) { return function next(generator, arg, throwing) { const { value, done } = !throwing ? generator.next(arg) : generator.throw(arg); if (done) { return value; } else if (!(value instanceof Promise)) { return next(generator, value, false); } else { return value.then( (val) => next(generator, val, false), (err) => next(generator, err, true) ); } }(Reflect.apply(callback, this, args), void 0, false); }; } function keyedMutex(callback, keyResolver = (x) => x) { const queues = /* @__PURE__ */ new Map(); return function(...args) { const key = keyResolver(...args); const tail = queues.has(key) ? always(queues.get(key), () => Reflect.apply(callback, this, args)) : Reflect.apply(callback, this, args); if (tail instanceof Promise) { queues.set(key, tail); always(tail, () => { if (queues.get(key) === tail) queues.delete(key); }); } return tail; }; } function throttle(callback) { let promise; return () => { promise = promise || Promise.resolve().then(() => { promise = null; callback(); }); return promise; }; } function frameThrottle(callback) { let args = []; let promise; return (...a) => { args = a; promise = promise || new Promise((res, rej) => { requestAnimationFrame(() => { promise = null; try { res(callback(...args)); } catch (e) { rej(e); } }); }); return promise; }; } var throttleQueuePositionReset = (() => { let queues = []; const run = throttle(() => { for (const fn of queues) { try { fn(); } catch (e) { } } queues = []; }); return function(callback) { let args = []; let queued = false; function runCallback() { queued = false; callback(); } return (...a) => { args = a; if (queued) { pull_default(queues, callback); } else { queued = true; } queues.push(callback); run(); }; }; })(); // lib/environment/background/storage.js var __set = apiToPromise((items, callback) => chrome.storage.local.set(items, callback)); var _set = (key, value) => __set({ [key]: value }); var __get = apiToPromise((keys3, callback) => chrome.storage.local.get(keys3, callback)); var _get = async (key, defaultValue = null) => (await __get({ [key]: defaultValue }))[key]; addListener("storage-cas", keyedMutex(async ([key, defaultValue, oldValue, newValue]) => { const storedValue = await _get(key, defaultValue); if (storedValue !== oldValue) return false; await _set(key, newValue); return true; }, ([key]) => key)); // lib/environment/background/tabs.js addListener("openNewTabs", ({ urls, focusIndex }, { tab }) => { urls.forEach((url, i) => { chrome.tabs.create({ url, active: i === focusIndex, index: tab.index + 1 + i, openerTabId: tab.id, // Firefox needs cookieStoreId to open in correct container ...false ? { cookieStoreId: tab.cookieStoreId } : {} }); }); }); // lib/utils/Cache.js var LRUCache = class { map; capacity; constructor(capacity) { this.map = /* @__PURE__ */ new Map(); this.capacity = capacity; } get(key, maxAge = Infinity) { const now2 = Date.now(); const entry = this.map.get(key); if (entry && now2 - entry.createTime < maxAge) { entry.hitTime = now2; return entry.value; } } set(key, value) { const now2 = Date.now(); this.map.set(key, { value, createTime: now2, hitTime: now2 }); if (this.map.size > this.capacity) { Array.from(this.map.entries()).sort(([, a], [, b]) => b.hitTime - a.hitTime).slice(this.capacity / 2 | 0).forEach(([key2]) => this.map.delete(key2)); } return this; } delete(key) { return this.map.delete(key); } clear() { this.map.clear(); } }; // lib/environment/background/xhrCache.js var cache = new LRUCache(512); addListener("XHRCache", ([operation, key, value]) => { switch (operation) { case "set": cache.set(key, value); break; case "check": return cache.get(key, value); case "delete": return cache.delete(key); case "clear": return cache.clear(); default: throw new Error(`Invalid XHRCache operation: ${operation}`); } }); // lib/utils/object.js function extendDeep(target, source) { for (const key of Object.keys(source)) { if (target[key] && source[key] && typeof target[key] === "object" && typeof source[key] === "object" && !Array.isArray(source[key]) && !Array.isArray(target[key])) { extendDeep(target[key], source[key]); } else { target[key] = source[key]; } } return target; } // lib/environment/foreground/messaging.js var _sendMessage2 = apiToPromise(chrome.runtime.sendMessage); var { _handleMessage: _handleMessage2, sendMessage: sendMessage2, addListener: addListener2 } = createMessageHandler((obj) => _sendMessage2(obj)); chrome.runtime.onMessage.addListener((obj, sender, sendResponse) => _handleMessage2(obj, sendResponse)); // lib/environment/foreground/storage.js var __set2 = apiToPromise((items, callback) => chrome.storage.local.set(items, callback)); var _set2 = (key, value) => __set2({ [key]: value }); var __get2 = apiToPromise((keys3, callback) => chrome.storage.local.get(keys3, callback)); var _get2 = async (key, defaultValue = null) => (await __get2({ [key]: defaultValue }))[key]; var _delete = apiToPromise((keys3, callback) => chrome.storage.local.remove(keys3, callback)); var _clear = apiToPromise((callback) => chrome.storage.local.clear(callback)); var withLockOn = keyedMutex((key, fn) => fn()); function get2(key) { return withLockOn(key, () => _get2(key, null)); } function getAll() { return __get2(null); } function getMultiple(keys3) { const defaults = {}; for (const k of keys3) { defaults[k] = null; } return __get2(defaults); } function set(key, value) { return withLockOn(key, () => _set2(key, value)); } function setMultiple(valueMap) { return __set2(valueMap); } function patch(key, value) { return withLockOn(key, async () => { const extended = extendDeep(await _get2(key) || {}, value); return _set2(key, extended); }); } function patchShallow(key, value) { return withLockOn(key, async () => { const extended = Object.assign(await _get2(key) || {}, value); return _set2(key, extended); }); } function deletePaths(key, paths) { return withLockOn(key, async () => { const stored = await _get2(key); if (!stored) return; for (const path of paths) { path.reduce((obj, key2, i, { length }) => { if (!obj) return; if (i < length - 1) return obj[key2]; delete obj[key2]; }, stored); } return _set2(key, stored); }); } function delete_(key) { return withLockOn(key, () => _delete(key)); } function deleteMultiple(keys3) { return _delete(keys3); } function has(key) { return withLockOn(key, async () => { const sentinel = Math.random(); return await _get2(key, sentinel) !== sentinel; }); } async function keys2() { return Object.keys(await __get2(null)); } var PrefixWrapper = class { _prefix; _keyMapper; _default; _get; constructor(prefix, def, keyMapper, batching) { this._prefix = prefix; this._default = def; this._keyMapper = keyMapper; if (batching) { this._get = batch(async (keys3) => { const v = await this.getMultipleNullable(keys3); return keys3.map((key) => v[this._keyMapper(key)]); }, { size: Infinity, delay: 0 }); } else { this._get = (key) => get2(this._keyGen(key)); } } _keyGen(key) { return this._prefix + this._keyMapper(key); } get(key) { return this._get(key).then((val) => val === null ? this._default() : val); } getNullable(key) { return this._get(key); } async getAll() { const everything = await getAll(); return transform_default(everything, (acc, v, k) => { if (k.startsWith(this._prefix)) { acc[k.slice(this._prefix.length)] = v; } }, {}); } async getMultiple(keys3) { const rawValues = await getMultiple(keys3.map((k) => this._keyGen(k))); return transform_default(rawValues, (acc, v, k) => { acc[k.slice(this._prefix.length)] = v === null ? this._default() : v; }, {}); } async getMultipleNullable(keys3) { const rawValues = await getMultiple(keys3.map((k) => this._keyGen(k))); return transform_default(rawValues, (acc, v, k) => { acc[k.slice(this._prefix.length)] = v; }, {}); } set(key, value) { return set(this._keyGen(key), value); } patch(key, value) { return patch(this._keyGen(key), value); } deletePath(key, ...path) { return deletePaths(this._keyGen(key), [path]); } delete(key) { return delete_(this._keyGen(key)); } deleteMultiple(keys3) { return deleteMultiple(keys3.map((k) => this._keyGen(k))); } has(key) { return has(this._keyGen(key)); } }; function wrapPrefix(prefix, defaultValue, destructiveKeyMapper = (x) => x, batching = false) { return new PrefixWrapper(prefix, defaultValue, destructiveKeyMapper, batching); } var BlobWrapper = class { _rootKey; _default; constructor(rootKey, def) { this._rootKey = rootKey; this._default = def; } get(key) { return get2(this._rootKey).then((val) => val === null || val[key] === void 0 ? this._default() : val[key]); } getNullable(key) { return get2(this._rootKey).then((val) => val === null || val[key] === void 0 ? null : val[key]); } getAll() { return get2(this._rootKey).then((val) => val === null ? {} : val); } async getMultiple(keys3) { const rawValues = await get2(this._rootKey) || {}; return transform_default(keys3, (acc, key) => { acc[key] = rawValues[key] === void 0 ? this._default() : rawValues[key]; }, {}); } async getMultipleNullable(keys3) { const rawValues = await get2(this._rootKey) || {}; return transform_default(keys3, (acc, key) => { acc[key] = rawValues[key] === void 0 ? null : rawValues[key]; }, {}); } set(key, value) { return patchShallow(this._rootKey, { [key]: value }); } patch(key, value) { return patch(this._rootKey, { [key]: value }); } deletePath(key, ...path) { return deletePaths(this._rootKey, [[key, ...path]]); } delete(key) { return deletePaths(this._rootKey, [[key]]); } deleteMultiple(keys3) { return deletePaths(this._rootKey, keys3.map((k) => [k])); } has(key) { return get2(this._rootKey).then((val) => val !== null && val[key] !== void 0); } clear() { return delete_(this._rootKey); } }; function wrapBlob(rootKey, defaultValue) { return new BlobWrapper(rootKey, defaultValue); } // lib/utils/array.js async function forEachSeq(iterable, callback) { for (const val of iterable) { await callback(val); } } var asyncFind = fastAsync(function* asyncFind2(iterable, predicate) { for (const val of iterable) { if (yield predicate(val)) return val; } }); var filterMap = curryRight_default((iterable, callback) => { const mapped = []; for (const x of iterable) { const result = callback(x); if (result) mapped.push(result[0]); } return mapped; }); // lib/utils/location.js var regexes = { frontpage: /^\/(?:hot|new|rising|controversial|top)?(?:\/|$)/i, comments: /^\/(?:r\/([\w\.]+)\/|(u(?:ser)?\/[\w-]+)\/)?comments\/([a-z0-9]+)(?:\/|$)/i, commentsLinklist: /^\/(r\/[\w\.\+]+\/|u(?:ser)?\/[\w-]+\/)?comments\/?$/i, inbox: /^\/(?:r\/([\w\.]+)\/)?message(?:\/|$)/i, profile: /^\/user\/([\w\-]+)(?:\/(?:(?!m\/)(\w+)))?\/?$/i, profile2x: /^\/user\/([\w\-]+)(?:\/(?:(?!m\/)(\w+)))?\/?$/i, profileCommentsPage: /^\/user\/([\w\-]+)\/comments\/([a-z0-9]+)(?:\/|$)/i, submit: /^\/(?:r\/([\w\.\+]+)\/)?submit(?:\/|$)/i, prefs: /^\/prefs(?:\/|$)/i, account: /^\/account-activity(?:\/|$)/i, wiki: /^\/(?:r\/([\w\.]+)\/)?wiki(?:\/|$)/i, stylesheet: /^\/(?:r\/([\w\.]+)\/)about\/stylesheet(?:\/|$)/i, search: /^\/(?:r\/[\w\.\+]+\/|(?:me|user\/[\w\-]+)\/[mf]\/[\w\.\+]+\/|domain\/[^\/]+\/)?search(?:\/|$)/i, commentPermalink: /^\/(?:r\/([\w\.]+)\/)?comments\/([a-z0-9]+)\/[^\/]*\/([a-z0-9]+)(?:\/|$)/i, duplicates: /^\/r\/[\w\.\+]+\/duplicates\/([a-z0-9]+)/i, subreddit: /^\/r\/([\w\.\+]+)(?:\/|$)/i, subredditAbout: /^\/r\/([\w\.]+)\/about(?:\/(?!modqueue|reports|spam|unmoderated|edited)|$)/i, modqueue: /^\/(?:r|me\/f)\/([\w\.\+]+)\/about\/(?:modqueue|reports|spam|unmoderated|edited)(?:\/|$)/i, multireddit: /^\/((?:me|user\/[\w\-]+)\/[mf]\/[\w\.\+]+)(?:\/|$)/i, domain: /^\/domain\/([\w\.]+)(?:\/|$)/i, composeMessage: /^\/(?:r\/([\w\.\+]+)\/)?message\/compose(?:\/|$)/i, liveThread: /^\/live\/(?!create(?:\/|$))([a-z0-9]+)(?:\/|$)/i }; var execRegexes = { comments: (path) => { const match = regexes.comments.exec(path); if (!match) return match; match.splice(1, 2, match[1] || match[2] && match[2].replace(/^u.*\//, "u_")); return match; } }; // lib/core/modules/storage.js var storage = wrapBlob( "RES.modulePrefs", () => { throw new Error("Default module enabled state should never be accessed"); } ); function setEnabled(moduleId, enable) { return storage.set(moduleId, enable); } // lib/core/module.js function getModuleId(opaqueId) { if (!opaqueId) { throw new TypeError(`Expected module, moduleID, or namespace; found: ${opaqueId}`); } if (typeof opaqueId === "string") { return opaqueId; } else if (opaqueId.module) { return opaqueId.module.moduleID; } else { return opaqueId.moduleID; } } // lib/core/options/storage.js var storage2 = wrapPrefix("RESoptions.", () => ({}), void 0, true); var loadRaw = (moduleId) => storage2.get(moduleId); async function get3(opaqueId, optionKey) { const options = await storage2.get(getModuleId(opaqueId)); return options && options[optionKey]; } async function getValue2(opaqueId, optionKey) { const option = await get3(getModuleId(opaqueId), optionKey); return option && option.value; } function set2(opaqueId, optionKey, value) { if (/_[\d]+$/.test(optionKey)) { optionKey = optionKey.replace(/_[\d]+$/, ""); } return storage2.patch(getModuleId(opaqueId), { [optionKey]: { value } }); } // lib/core/migrate/migrators.js async function updateOption(moduleID, optionName, formerDefaultValue, valueOrFunction) { try { const option = await get3(moduleID, optionName); if (!option) return; if (!optionMatchesFormerDefaultValue(option, formerDefaultValue)) return; const newValue = updateValue(option.value, valueOrFunction); if (typeof newValue !== "undefined") { await set2(moduleID, optionName, newValue); } } catch (e) { console.error(`Couldn't migrate ${moduleID}::${optionName} from`, formerDefaultValue, "to/via", valueOrFunction, e); } } async function forceUpdateOption(moduleID, optionName, valueOrFunction) { try { const option = await get3(moduleID, optionName); if (!option) return; const newValue = updateValue(option.value, valueOrFunction); if (typeof newValue !== "undefined") { await set2(moduleID, optionName, newValue); } } catch (e) { console.error(`Couldn't migrate ${moduleID}::${optionName} to`, valueOrFunction, e); } } async function moveOption(oldModuleID, oldOptionName, newModuleID, newOptionName, valueOrFunction) { try { const option = await get3(oldModuleID, oldOptionName); if (!option) return; const newValue = updateValue(option.value, valueOrFunction); if (typeof newValue !== "undefined") { await set2(newModuleID, newOptionName, newValue); } } catch (e) { console.error(`Couldn't migrate ${oldModuleID}::${oldOptionName} to ${newModuleID}::${newOptionName} via`, valueOrFunction, e); } } async function moveStorageToOption(oldKey, newModuleID, newOptionName, valueOrFunction) { const oldValue = await get2(oldKey); if (oldValue === null) { return; } const newValue = updateValue(oldValue, valueOrFunction); try { if (typeof newValue !== "undefined") { await set2(newModuleID, newOptionName, newValue); } } catch (e) { console.error(`Couldn't migrate storage ${oldKey} to ${newModuleID}::${newOptionName} via`, valueOrFunction, e); } } function optionMatchesFormerDefaultValue(option, formerDefaultValue) { if (!option) { option = { type: "legacy", value: void 0 }; } const oldValue = option.value; if (oldValue && option.type === "keycode" && option.value.length === 4) { oldValue.push(false); } return isEqual_default(formerDefaultValue, oldValue); } function updateValue(oldValue, valueOrFunction) { if (typeof valueOrFunction === "function") { return valueOrFunction(oldValue); } else if (typeof valueOrFunction !== "undefined") { return valueOrFunction; } else { return oldValue; } } // lib/core/migrate/migrate.js var migrations = [ { versionNumber: "legacyMigrators", async go() { await moveStorageToOption("RESmodules.styleTweaks.userbarState", "userbarHider", "userbarState"); const macroVersion = await get2("RESmodules.commentTools.macroDataVersion"); if (macroVersion === null || macroVersion === 0) { const previewOptions = await get2("RESoptions.commentPreview"); if (previewOptions !== null) { if (typeof previewOptions.commentingAs !== "undefined") { await forceUpdateOption("commentTools", "commentingAs", previewOptions.commentingAs.value); } if (typeof previewOptions.keyboardShortcuts !== "undefined") { await forceUpdateOption("commentTools", "keyboardShortcuts", previewOptions.keyboardShortcuts.value); } if (typeof previewOptions.subredditAutocomplete !== "undefined") { await forceUpdateOption("commentTools", "subredditAutocomplete", previewOptions.subredditAutocomplete.value); } if (typeof previewOptions.macros !== "undefined") { previewOptions.macros.value.forEach((macro) => { while (macro.length < 4) { macro.push(""); } }); await forceUpdateOption("commentTools", "macros", previewOptions.macros.value); } } } if (macroVersion === 1) { await forceUpdateOption( "commentTools", "macros", (macros) => (macros || []).map((macro) => { while (macro.length < 4) { macro.push(""); } return macro; }) ); } const storedComments = await get2("RESmodules.saveComments.savedComments"); if (Array.isArray(storedComments)) { const newFormat = {}; for (const storedComment of storedComments) { const urlSplit = storedComment.href.split("/"); const thisID = urlSplit[urlSplit.length - 1]; newFormat[thisID] = storedComment; } set("RESmodules.saveComments.savedComments", newFormat); } } }, { versionNumber: "4.5.0.0", async go() { await moveOption("betteReddit", "searchSubredditByDefault", "searchHelper", "searchSubredditByDefault"); await moveOption("styleTweaks", "lightSwitch", "nightMode", "nightSwitch"); await moveOption("styleTweaks", "lightOrDark", "nightMode", "nightModeOn", (value) => value === "dark"); await moveOption("styleTweaks", "useSubredditStyleInDarkMode", "nightMode", "useSubredditStyles"); await moveStorageToOption("RESmodules.styleTweaks.nightModeWhitelist", "nightMode", "subredditStylesWhitelist", (value) => { try { return JSON.parse(value || "").join(","); } catch (e) { return ""; } }); try { const userTags = await get2("RESmodules.userTagger.tags") || {}; updateTagStorageCaseInsensitive(userTags); } catch (e) { console.error("Could not migrate user tags, please post this error to /r/RESissues", e); } await forceUpdateOption( "filteReddit", "subreddits", (subreddits) => (subreddits || []).map((subreddit) => { const check = subreddit[0]; if (check.startsWith("/r/")) { subreddit[0] = check.substr(3); } return subreddit; }) ); function updateTagStorageCaseInsensitive(tags) { const usernames = Object.keys(tags); for (const username of usernames) { const lower = username.toLowerCase(); if (lower === username) continue; const destination = tags[lower] = tags[lower] || {}; const source = tags[username]; if (source.votes) { destination.votes = (parseInt(destination.votes, 10) || 0) + (parseInt(source.votes, 10) || 0); } if (source.color && (!destination.color || destination.color === "none")) { destination.color = source.color; } if (source.tag) { destination.tag = destination.tag ? `${destination.tag} | ` : ""; destination.tag += source.tag; } if (source.ignore) { destination.ignore = source.ignore; } if (source.link) { if (destination.link) { destination.tag = destination.tag ? `${destination.tag} | ` : ""; destination.tag += source.link; } else { destination.link = source.link; } } delete tags[username]; } set("RESmodules.userTagger.tags", tags); set("RESmodules.userTagger.casefix", true); } } }, { versionNumber: "4.5.0.2", async go() { await updateOption("keyboardNav", "imageMoveUp", [38, false, false, true, false], [38, false, true, false, false]); await updateOption("keyboardNav", "imageMoveDown", [40, false, false, true, false], [40, false, true, false, false]); await updateOption("keyboardNav", "imageMoveLeft", [37, false, false, true, false], [37, false, true, false, false]); await updateOption("keyboardNav", "imageMoveRight", [39, false, false, true, false], [39, false, true, false, false]); } }, { versionNumber: "4.5.0.3", go() { } }, { versionNumber: "4.5.1", async go() { await forceUpdateOption("voteEnhancements", "colorCommentScore", (value) => { if (typeof value === "string") { return value; } return value ? "automatic" : "none"; }); const notificationsOptions = await loadRaw("notifications"); const sticky = notificationsOptions && notificationsOptions.sticky.value; const keyNavOptions = await loadRaw("keyboardNav"); const fg = keyNavOptions && keyNavOptions.focusFGColorNight.value; const bg = keyNavOptions && keyNavOptions.focusBGColorNight.value; const test = document.createElement("div"); if (sticky === "perNotification") { await forceUpdateOption("notifications", "sticky", "notificationType"); } test.style.color = fg || ""; test.style.backgroundColor = bg || ""; const fgCalculated = test.style.color; const bgCalculated = test.style.backgroundColor; if (fg === bg || fgCalculated === bgCalculated) { await forceUpdateOption("keyboardNav", "focusBGColorNight", "#373737"); await forceUpdateOption("keyboardNav", "focusFGColorNight", "#DDDDDD"); } await moveOption("settingsNavigation", "showAdvancedOptions", "settingsNavigation", "showAllOptions", true); await moveOption("settingsNavigation", "showAdvancedOptionsAlert", "settingsNavigation", "showAllOptionsAlert"); } }, { versionNumber: "4.5.3", async go() { await updateOption("searchHelper", "addSubmitButton", true, false); await moveOption("keyboardNav", "save", "keyboardNav", "savePost"); await moveOption("keyboardNav", "save", "keyboardNav", "saveRES"); } }, { versionNumber: "4.5.4", async go() { await forceUpdateOption("filteReddit", "keywords", (values) => { for (const value of values || []) { if (value && value[3] === "undefined") { value[3] = ""; } } return values; }); await updateOption("quickMessage", "quickModeratorMessage", false, true); } }, { versionNumber: "4.5.5", async go() { const keyNavOptions = await loadRaw("keyboardNav"); if (keyNavOptions && keyNavOptions.scrollTop && keyNavOptions.scrollTop.value) { await updateOption("keyboardNav", "scrollStyle", "directional", "top"); } await moveOption("betteReddit", "uncheckSendRepliesToInbox", "submitHelper", "uncheckSendRepliesToInbox"); await moveOption("keyboardNav", "openBigEditor", "commentPreview", "openBigEditor"); await moveOption("keyboardNav", "autoSelectOnScroll", "selectedEntry", "autoSelectOnScroll"); await moveOption("keyboardNav", "clickFocus", "selectedEntry", "selectOnClick"); await moveOption("keyboardNav", "addFocusBGColor", "selectedEntry", "addFocusBGColor"); await moveOption("keyboardNav", "focusBGColor", "selectedEntry", "focusBGColor"); await moveOption("keyboardNav", "focusBGColorNight", "selectedEntry", "focusBGColorNight"); await moveOption("keyboardNav", "focusFGColorNight", "selectedEntry", "focusFGColorNight"); await moveOption("keyboardNav", "addFocusBorder", "selectedEntry", "addFocusBorder"); await moveOption("keyboardNav", "focusBorder", "selectedEntry", "focusBorder"); await moveOption("keyboardNav", "focusBorderNight", "selectedEntry", "focusBorderNight"); function updateFadeSpeed(value) { if (value === void 0 || value === null || isNaN(value) || value < 0 || value > 1) { return "0.7"; } else { return (1 - value).toFixed(2); } } await forceUpdateOption("hover", "fadeSpeed", updateFadeSpeed); await forceUpdateOption("showParent", "fadeSpeed", updateFadeSpeed); await forceUpdateOption("subredditInfo", "fadeSpeed", updateFadeSpeed); await forceUpdateOption("userTagger", "fadeSpeed", updateFadeSpeed); await forceUpdateOption( "commentTools", "macros", (value) => [ ["reddiquette", "[reddiquette](/wiki/reddiquette) "], ["Promote RES", '[Reddit Enhancement Suite](https://redditenhancementsuite.com "also /r/Enhancement") '], ["Current timestamp", "{{now}} "], ...value || [] ] ); await moveOption("betteReddit", "showUnreadCount", "orangered", "showUnreadCount"); await moveOption("betteReddit", "retroUnreadCount", "orangered", "retroUnreadCount"); await moveOption("betteReddit", "showUnreadCountInFavicon", "orangered", "showUnreadCountInFavicon"); await moveOption("betteReddit", "unreadLinksToInbox", "orangered", "unreadLinksToInbox"); await moveOption("betteReddit", "hideModMail", "orangered", "hideModMail"); await moveOption("quickMessage", "quickModeratorMessage", "quickMessage", "handleSideLinks"); await updateOption("showKarma", "useCommas", false, true); await moveOption("keyboardNav", "moveDown", "keyboardNav", "moveDownComment"); await moveOption("keyboardNav", "moveUp", "keyboardNav", "moveUpComment"); await moveOption("userTagger", "hoverInfo", "userInfo", "hoverInfo"); await moveOption("userTagger", "useQuickMessage", "userInfo", "useQuickMessage"); await moveOption("userTagger", "hoverDelay", "userInfo", "hoverDelay"); await moveOption("userTagger", "fadeDelay", "userInfo", "fadeDelay"); await moveOption("userTagger", "fadeSpeed", "userInfo", "fadeSpeed"); await moveOption("userTagger", "gildComments", "userInfo", "gildComments"); await moveOption("userTagger", "highlightButton", "userInfo", "highlightButton"); await moveOption("userTagger", "highlightColor", "userInfo", "highlightColor"); await moveOption("userTagger", "highlightColorHover", "userInfo", "highlightColorHover"); await moveOption("userTagger", "USDateFormat", "userInfo", "USDateFormat"); await forceUpdateOption( "notifications", "notificationTypes", (rows) => uniqBy_default(rows, ([modId, notificationId]) => `${modId}###${notificationId}`) ); } }, { versionNumber: "4.7.0-scrubCaches", async go() { const cacheKeyParts = [ "RESmodules.neverEndingReddit.lastPage", "RESmodules.neverEndingReddit.lastVisibleIndex", "RESUtils.cache", "RESUtils.moderatedSubCache", "RESUtils.sendFromCache", "RESUtils.userInfoCache", "RESmodules.keyboardNavLastIndex", "RESmodules.selectedThing.lastSelectedCache", "TBCache.", // may have been copied from foreground "Toolbox.", "RESmodules.betteReddit.msgCount.lastCheck", "RESmodules.subredditManager.subreddits.", "RESmodules.subredditManager.mySubredditList" ]; await (await keys2()).filter((key) => cacheKeyParts.some((part) => key.includes(part))).map((key) => delete_(key)); } }, { versionNumber: "4.7.0-voteWeight", async go() { await moveOption("userTagger", "colorUser", "userTagger", "trackVoteWeight"); } }, { versionNumber: "4.7.0-commentStyle", async go() { await moveOption("styleTweaks", "commentBoxes", "commentStyle", "commentBoxes"); await moveOption("styleTweaks", "commentRounded", "commentStyle", "commentRounded"); await moveOption("styleTweaks", "commentHoverBorder", "commentStyle", "commentHoverBorder"); await moveOption("styleTweaks", "commentIndent", "commentStyle", "commentIndent"); await moveOption("styleTweaks", "continuity", "commentStyle", "continuity"); } }, { versionNumber: "4.7.0-keyboardNav-scrollStyle-better-name", async go() { await moveOption("keyboardNav", "scrollStyle", "keyboardNav", "linearScrollStyle"); } }, { versionNumber: "4.7.0-hideLEC", async go() { await updateOption("singleClick", "hideLEC", false, true); } }, { versionNumber: "4.7.0-showImages-siteModuleIDs", async go() { await moveOption("showImages", "display uploadly", "showImages", "display_uploadly"); await moveOption("showImages", "display eroshare", "showImages", "display_eroshare"); await moveOption("showImages", "display iLoopit - gif maker", "showImages", "display_iloopit"); await moveOption("showImages", "display Coub", "showImages", "display_coub"); await moveOption("showImages", "display LiveCap", "showImages", "display_livecap"); await moveOption("showImages", "display twitter", "showImages", "display_twitter"); await moveOption("showImages", "display futurism", "showImages", "display_futurism"); await moveOption("showImages", "display gfycat", "showImages", "display_gfycat"); await moveOption("showImages", "display gifyoutube", "showImages", "display_gifs"); await moveOption("showImages", "display vidble", "showImages", "display_vidble"); await moveOption("showImages", "display fitbamob", "showImages", "display_fitbamob"); await moveOption("showImages", "display giflike", "showImages", "display_giflike"); await moveOption("showImages", "display CtrlV.in", "showImages", "display_ctrlv"); await moveOption("showImages", "display snag.gy", "showImages", "display_snag"); await moveOption("showImages", "display picshd", "showImages", "display_picshd"); await moveOption("showImages", "display min.us", "showImages", "display_minus"); await moveOption("showImages", "display fiveHundredPx", "showImages", "display_fiveHundredPx"); await moveOption("showImages", "display flickr", "showImages", "display_flickr"); await moveOption("showImages", "display steam", "showImages", "display_steam"); await moveOption("showImages", "display deviantART", "showImages", "display_deviantart"); await moveOption("showImages", "display tumblr", "showImages", "display_tumblr"); await moveOption("showImages", "display memecrunch", "showImages", "display_memecrunch"); await moveOption("showImages", "display imgflip", "showImages", "display_imgflip"); await moveOption("showImages", "display livememe", "showImages", "display_livememe"); await moveOption("showImages", "display makeameme", "showImages", "display_makeameme"); await moveOption("showImages", "display memegen", "showImages", "display_memegen"); await moveOption("showImages", "display redditbooru", "showImages", "display_redditbooru"); await moveOption("showImages", "display youtube", "showImages", "display_youtube"); await moveOption("showImages", "display vimeo", "showImages", "display_vimeo"); await moveOption("showImages", "display soundcloud", "showImages", "display_soundcloud"); await moveOption("showImages", "display clyp", "showImages", "display_clyp"); await moveOption("showImages", "display memedad", "showImages", "display_memedad"); await moveOption("showImages", "display ridewithgps", "showImages", "display_ridewithgps"); await moveOption("showImages", "display photobucket", "showImages", "display_photobucket"); await moveOption("showImages", "display giphy", "showImages", "display_giphy"); await moveOption("showImages", "display streamable", "showImages", "display_streamable"); await moveOption("showImages", "display qwipit", "showImages", "display_qwipit"); await moveOption("showImages", "display radd.it", "showImages", "display_raddit"); await moveOption("showImages", "display pastebin", "showImages", "display_pastebin"); await moveOption("showImages", "display github gists", "showImages", "display_github"); await moveOption("showImages", "display Microsoft OneDrive", "showImages", "display_onedrive"); await moveOption("showImages", "display Oddshot", "showImages", "display_oddshot"); await moveOption("showImages", "display Miiverse", "showImages", "display_miiverse"); await moveOption("showImages", "display swirl", "showImages", "display_swirl"); } }, { versionNumber: "4.7.1-changeDefaultImageMaxSizeRetry", async go() { await updateOption("showImages", "maxWidth", 640, "100%"); await updateOption("showImages", "maxHeight", 480, "80%"); await updateOption("showImages", "maxWidth", "640", "100%"); await updateOption("showImages", "maxHeight", "480", "80%"); } }, { versionNumber: "4.7.4-galleryFilmstripGranularity", async go() { await moveOption("showImages", "dontLoadAlbumsBiggerThan", "showImages", "filmstripLoadIncrement"); } }, { versionNumber: "4.7.8-ner-hide-dupes", async go() { await updateOption("neverEndingReddit", "hideDupes", "fade", "hide"); } }, { versionNumber: "5.0.1-disable-redditmedia-lookup", async go() { await forceUpdateOption("showImages", "expandoCommentRedirects", "nothing"); } }, { versionNumber: "5.0.2-reenable-redditmedia-expando", async go() { await updateOption("showImages", "expandoCommentRedirects", "nothing", "expando"); } }, { versionNumber: "5.1.1-remove-multiredditnavbar-sectionlinks-workaround", async go() { await forceUpdateOption("multiredditNavbar", "sectionLinks", (sectionLinks) => { if (!sectionLinks) return; for (const row of sectionLinks) { row[1] = row[1].replace(/^\.\.\//, "./"); } }); } }, { versionNumber: "5.3.1-enable-hardIgnore", async go() { await forceUpdateOption("userTagger", "hardIgnore", true); } }, { versionNumber: "5.3.5-remove-updates-css", async go() { await forceUpdateOption( "stylesheet", "loadStylesheets", (rows) => rows && rows.filter((row) => row[0] !== "https://cdn.redditenhancementsuite.com/updates.css") ); const hideFloatingPauseButton = "res-neverEndingReddit-hideFloatingPauseButton"; await moveOption( "stylesheet", "bodyClasses", "neverEndingReddit", "showPauseButton", (rows) => !!rows && rows.every((row) => row[0] !== hideFloatingPauseButton) ); await forceUpdateOption( "stylesheet", "bodyClasses", (rows) => rows && rows.filter((row) => row[0] !== hideFloatingPauseButton) ); let shouldHideTagline = false; await forceUpdateOption("stylesheet", "bodyClasses", (rows) => { if (!rows) return []; const filteredRows = rows.filter((row) => row[0] !== "res-hide-tagline-frontpage"); shouldHideTagline = filteredRows.length < rows.length; return filteredRows; }); if (shouldHideTagline) { forceUpdateOption("stylesheet", "snippets", (rows) => [ ...rows || [], [ "/* migrated from res-hide-tagline-frontpage */ .front-page .tagline { display: none; }", "everywhere" ] ]); } } }, { versionNumber: "5.3.6-enable-hideUnvotable", async go() { await forceUpdateOption("styleTweaks", "hideUnvotable", true); } }, { versionNumber: "5.3.7-automaticNightMode-to-enum", async go() { await forceUpdateOption("nightMode", "automaticNightMode", (value) => value === true ? "user" : "none"); } }, { versionNumber: "5.5.0-commentLinks-rename", async go() { await moveOption("keyboardNav", "commentsLinkNumbers", "keyboardNav", "linkNumbers"); await moveOption("keyboardNav", "commentsLinkNumberPosition", "keyboardNav", "linkNumberPosition"); await moveOption("keyboardNav", "commentsLinkToggleExpando", "keyboardNav", "linkToggleExpando"); await moveOption("keyboardNav", "commentsLinkNewTab", "keyboardNav", "linkNewTab"); } }, { versionNumber: "5.5.1-maxSize-to-string", async go() { const toString2 = (x) => x ? String(x) : ""; await forceUpdateOption("showImages", "maxWidth", toString2); await forceUpdateOption("showImages", "maxHeight", toString2); } }, { versionNumber: "5.5.3-disable-userbarHider", async go() { const notificationsOptions = await loadRaw("notifications"); if (!notificationsOptions || !notificationsOptions.notificationTypes || !notificationsOptions.notificationTypes.value || !notificationsOptions.notificationTypes.value.some(([modId, notificationId]) => modId === "userbarHider" && notificationId === "userbarState")) { setEnabled("userbarHider", false); } } }, { versionNumber: "5.5.11-update-notifications", async go() { await updateOption("onboarding", "updateNotification", "releaseNotes", "notification"); } }, { versionNumber: "5.6.1-shard-tags", async go() { const tags = await get2("RESmodules.userTagger.tags") || {}; const remappedTags = mapKeys_default(tags, (v, k) => `tag.${k.toLowerCase()}`); await setMultiple(remappedTags); } }, { versionNumber: "5.6.2-remove-old-tags", async go() { await delete_("RESmodules.userTagger.tags"); } }, { versionNumber: "5.7.0-keyboardNav-showImages-decoupling", async go() { await moveOption("keyboardNav", "mediaBrowseMode", "showImages", "mediaBrowse"); } }, { versionNumber: "5.7.1-shard-newCommentCount", async go() { const entries = await get2("RESmodules.newCommentCount.counts") || {}; const remappedEntries = mapKeys_default(entries, (v, k) => `newCommentCount.${k}`); await setMultiple(remappedEntries); await delete_("RESmodules.newCommentCount.counts"); } }, { versionNumber: "5.7.3-commandLine-menu-opening", async go() { await moveOption( "commandLine", "launchFromMenuButton", "RESMenu", "gearIconClickAction", (launchFromMenu) => launchFromMenu ? "openCommandLine" : "toggleMenuNoHover" ); } }, { versionNumber: "5.7.4-shard-commentHidePersistor", async go() { const { hiddenThings } = await get2("RESmodules.commentHidePersistor.hidePersistor") || {}; if (!hiddenThings) return; const remappedEntries = Object.entries(hiddenThings).reduce((acc, [k, v]) => { const page = (execRegexes.comments(k) || [])[2]; const collapsedThings = v.reduce((acc2, k2) => { acc2[k2] = true; return acc2; }, {}); if (page && v.length) acc[`commentHidePersistor.${page}`] = { updateTime: Date.now(), collapsedThings }; return acc; }, {}); await setMultiple(remappedEntries); await delete_("RESmodules.commentHidePersistor.hidePersistor"); } }, { versionNumber: "5.8.2-unshard-newCommentCount-subscriptions", async go() { const subscriptions = {}; for (const [key, val] of Object.entries(await getAll())) { if (!key.startsWith("newCommentCount.")) continue; if (val.subscriptionDate) subscriptions[key] = val; } set("RESmodules.newCommentCount.subscriptions", subscriptions); } }, { versionNumber: "5.9.1-userTagger-refresh", async go() { let tags = await wrapPrefix("tag.", () => ({})).getAll(); for (const tag of Object.values(tags)) { if (tag.votes > 0) tag.votesUp = tag.votes; if (tag.votes < 0) tag.votesDown = -tag.votes; Reflect.deleteProperty(tag, "votes"); if (tag.tag) tag.text = tag.tag; Reflect.deleteProperty(tag, "tag"); if (tag.ignore) tag.ignored = tag.ignore; Reflect.deleteProperty(tag, "ignore"); } tags = mapKeys_default(tags, (v, k) => `tag.${k}`); await setMultiple(tags); } }, { versionNumber: "5.9.1-selectedEntry", async go() { await moveOption("selectedEntry", "addFocusBGColor", "selectedEntry", "setColors"); await moveOption("selectedEntry", "focusBGColor", "selectedEntry", "backgroundColor"); await moveOption("selectedEntry", "focusBGColorNight", "selectedEntry", "backgroundColorNight"); await moveOption("selectedEntry", "focusFGColorNight", "selectedEntry", "textColorNight"); await moveOption("selectedEntry", "addFocusBorder", "selectedEntry", "addOutline"); await moveOption("selectedEntry", "focusBorder", "selectedEntry", "outlineStyle"); await moveOption("selectedEntry", "focusBorderNight", "selectedEntry", "outlineStyleNight"); if ((await get2("RES.modulePrefs") || { selectedEntry: true }).selectedEntry === false) { await set2("selectedEntry", "setColors", false); await set2("selectedEntry", "addLine", true); } } }, { versionNumber: "5.9-no-option-spaces", async go() { await moveOption("showImages", "prefer RES albums", "showImages", "preferResAlbums"); } }, { versionNumber: "5.9.2-numbers-to-strings", async go() { function stringify(x) { if (typeof x === "number") return x.toString(); return x; } await forceUpdateOption("betteReddit", "hideLinkFadeDelay", stringify); await forceUpdateOption("commentDepth", "defaultCommentDepth", stringify); await forceUpdateOption("commentDepth", "defaultMinimumComments", stringify); await forceUpdateOption("commentStyle", "commentIndent", stringify); await forceUpdateOption("context", "defaultContext", stringify); await forceUpdateOption("dashboard", "defaultPosts", stringify); await forceUpdateOption("dashboard", "tagsPerPage", stringify); await forceUpdateOption("hover", "openDelay", stringify); await forceUpdateOption("hover", "fadeDelay", stringify); await forceUpdateOption("hover", "fadeSpeed", stringify); await forceUpdateOption("hover", "width", stringify); await forceUpdateOption("messageMenu", "hoverDelay", stringify); await forceUpdateOption("messageMenu", "fadeDelay", stringify); await forceUpdateOption("messageMenu", "fadeSpeed", stringify); await forceUpdateOption("multiredditNavbar", "hoverDelay", stringify); await forceUpdateOption("multiredditNavbar", "fadeDelay", stringify); await forceUpdateOption("multiredditNavbar", "fadeSpeed", stringify); await forceUpdateOption("neverEndingReddit", "pauseAfterEvery", stringify); await forceUpdateOption("newCommentCount", "cleanComments", stringify); await forceUpdateOption("newCommentCount", "subscriptionLength", stringify); await forceUpdateOption("nightMode", "nightModeOverrideHours", stringify); await forceUpdateOption("notifications", "closeDelay", stringify); await forceUpdateOption("notifications", "fadeOutLength", stringify); await forceUpdateOption("profileNavigator", "hoverDelay", stringify); await forceUpdateOption("profileNavigator", "fadeDelay", stringify); await forceUpdateOption("profileNavigator", "fadeSpeed", stringify); await forceUpdateOption("showImages", "browsePreloadCount", stringify); await forceUpdateOption("showImages", "galleryPreloadCount", stringify); await forceUpdateOption("showImages", "bufferScreens", stringify); await forceUpdateOption("showImages", "selfTextMaxHeight", stringify); await forceUpdateOption("showImages", "commentMaxHeight", stringify); await forceUpdateOption("showImages", "filmstripLoadIncrement", stringify); await forceUpdateOption("showImages", "useSlideshowWhenLargerThan", stringify); await forceUpdateOption("showImages", "maxSimultaneousPlaying", stringify); await forceUpdateOption("showParent", "hoverDelay", stringify); await forceUpdateOption("showParent", "fadeDelay", stringify); await forceUpdateOption("showParent", "fadeSpeed", stringify); await forceUpdateOption("styleTweaks", "highlightTopLevelSize", stringify); await forceUpdateOption("subredditInfo", "hoverDelay", stringify); await forceUpdateOption("subredditInfo", "fadeDelay", stringify); await forceUpdateOption("subredditInfo", "fadeSpeed", stringify); await forceUpdateOption("subredditManager", "shortcutDropdownDelay", stringify); await forceUpdateOption("subredditManager", "shortcutEditDropdownDelay", stringify); await forceUpdateOption("userInfo", "hoverDelay", stringify); await forceUpdateOption("userInfo", "fadeDelay", stringify); await forceUpdateOption("userInfo", "fadeSpeed", stringify); } }, { versionNumber: "5.9-filteReddit-customFilter", async go() { function convertPatt(type, patt, key) { if (typeof patt !== "string" || !patt.length || /^\/(.*)\/([gim]+)?$/.test(patt)) return; if (type === "postTitle") { return { [key]: `/${patt}/i` }; } else if (["subreddit", "domain", "userFlair", "linkFlair", "username"].includes(type)) { return { [key]: `/^(${patt})$/i` }; } } const entries = {}; const f = await wrapPrefix("RESmodules.filteReddit.", () => ({})).getAll(); for (const [k, v] of Object.entries(f)) { if (typeof v === "boolean") continue; const visible = f[`filterlineVisibility.${k}`] || false; const entry = entries[`filterline.${k}`] = { filters: {}, visible }; for (const [id, { criterion, state, key }] of Object.entries(v.filters || {})) { const type = key; entry.filters[id] = { type, state, criterion, ...convertPatt(type, criterion, "criterion") }; } } await setMultiple(entries); const { customFilters } = await loadRaw("filteReddit") || {}; if (customFilters) { for (const { body } of customFilters.value || []) { body.of.forEach(function traverseAndUpdate(v) { if (v.type === "group") v.of.forEach(traverseAndUpdate); else Object.assign(v, convertPatt(v.type, v.patt, "patt")); }); } await set2("filteReddit", "customFiltersP", customFilters.value); } } }, { versionNumber: "5.11.1-settingsConsole-builder-tweak", async go() { const { customFiltersP, customFiltersC } = await loadRaw("filteReddit") || {}; let i = Date.now(); for (const v of [...customFiltersP && customFiltersP.value || [], ...customFiltersC && customFiltersC.value || []]) { const { body: { name }, ondemand } = v; v.opts = { ondemand, name }; v.id = `customFilter-${String(i++)}`; } if (customFiltersP) await set2("filteReddit", "customFiltersP", customFiltersP.value); if (customFiltersC) await set2("filteReddit", "customFiltersC", customFiltersC.value); } }, { versionNumber: "5.13.3-userTagger-ignored-to-filteReddit", async go() { const ignoredUsers = Object.entries(await wrapPrefix("tag.", () => ({})).getAll()).filter(([, { ignored }]) => ignored).map(([username]) => [username]); await set2("filteReddit", "users", ignoredUsers); } }, { versionNumber: "5.13.3-filterline-effects-and-clean", async go() { function migrateFilters(filters = {}) { for (const [id, filter] of Object.entries(filters)) { if (!isObject_default(filter)) { delete filters[id]; continue; } filter.effects = { hide: filter.state !== null, ...filter.sideEffects }; if (filter.state === null) filter.state = true; } } let f = wrapPrefix("RESmodules.filteReddit.", () => ({})); for (const [k, v] of Object.entries(await f.getAll())) { if (k.startsWith("commentDefault") || k.startsWith("postDefault")) { migrateFilters(v); await f.set(k, v); } else { await f.delete(k); } } f = wrapPrefix("filterline.", () => ({})); for (const [k, v] of Object.entries(await f.getAll())) { if (v) { if (v.effects) continue; migrateFilters(v.filters); v.lastUsed = Date.now(); await f.set(k, v); } else { await f.delete(k); } } } }, { versionNumber: "5.14.1-filteReddit-user-hardIgnore", async go() { } }, { versionNumber: "5.14.2-filteReddit-user-hide-soft", async go() { } }, { versionNumber: "5.14.2-filteReddit-migration-repair", async go() { function migrateRepair(filters) { const allHidden = filters.every(([, filter]) => filter.effects && Object.keys(filter.effects).length === 1 && filter.effects.hide); if (allHidden) { for (const [id, filter] of filters) { if (["users", "subreddits", "keywords", "domains", "flair"].includes(id)) continue; filter.effects = { hide: false }; } return true; } } let f = wrapPrefix("RESmodules.filteReddit.", () => ({})); for (const [k, v] of Object.entries(await f.getAll())) { if (migrateRepair(Object.entries(v))) await f.set(k, v); } f = wrapPrefix("filterline.", () => ({})); for (const [k, v] of Object.entries(await f.getAll())) { const filters = v && v.filters && Object.entries(v.filters); if (filters && filters.length) { if (migrateRepair(filters)) await f.set(k, v); } else { await f.delete(k); } } } }, { versionNumber: "5.14.3-filteReddit-user-action-collapse", async go() { const hardIgnoreOption = await get3("userTagger", "hardIgnore") || await get3("filteReddit", "hardIgnoreUsers"); let hardIgnore = hardIgnoreOption ? hardIgnoreOption.value : true; const usersMatchAction = await get3("filteReddit", "usersMatchAction"); if (usersMatchAction && usersMatchAction.value === "placeholder") hardIgnore = false; await set2("filteReddit", "usersMatchAction", hardIgnore ? "hide" : "placeholder"); } }, { versionNumber: "5.14.4-new-module-subredditStyleToggle", async go() { await moveOption("styleTweaks", "subredditStyleBrowserToolbarButton", "subredditStyleToggle", "browserToolbarButton"); await moveOption("styleTweaks", "subredditStyleCheckbox", "subredditStyleToggle", "checkbox"); const ignored = await get2("RESmodules.styleTweaks.ignoredSubredditStyles"); if (ignored) { await set("RESmodules.subredditStyleToggle.ignored", ignored); await delete_("RESmodules.styleTweaks.ignoredSubredditStyles"); } } }, { versionNumber: "5.14.4-prune-interface", async go() { await updateOption("newCommentCount", "cleanComments", "7", "30"); await delete_("RESmodules.readComments.lastClean"); await delete_("RESmodules.newCommentCount.lastClean"); await delete_("RESmodules.commentHidePersistor.lastClean"); } }, { versionNumber: "5.17.0-hover-instances-id", async go() { const instances = {}; for (const instance of await getValue2("hover", "instances") || []) { const id = instance[0] = instance[0].replace(/(dropdownList|infocard)\./, ""); if (!id || instances[id]) continue; instances[id] = instance; } await set2("hover", "instances", Object.values(instances)); } }, { versionNumber: "5.17.0-notifications", async go() { delete_("RESmodules.notifications.recent"); const instances = {}; for (const instance of await getValue2("notifications", "notificationTypes") || []) { const id = `${instance[0]}-${instance[1]}`; if (!id || instances[id]) continue; instances[id] = [id, instance[2], instance[3]]; } await set2("notifications", "notificationTypes", Object.values(instances)); } }, { versionNumber: "5.17.0-firstRun-to-last", async go() { const firstRunStorage = wrapPrefix("RES.firstRun.", () => null); const versions = Object.keys(await firstRunStorage.getAll()); versions.sort((a, b) => a.localeCompare(b, void 0, { numerical: true })); await set("highestVersion", versions.slice(-1)[0] || null); await firstRunStorage.deleteMultiple(versions); } } ]; var _migrationsToRun = getMigrationsToRun(); async function migrate() { const migrations2 = await _migrationsToRun; if (!migrations2.length) return; await forEachSeq(migrations2, async (currentMigration) => { console.log("Migratating", currentMigration.versionNumber); await currentMigration.go(); set("RESOptionsVersion", currentMigration.versionNumber); }); console.log("All remaining migrations completed."); } async function getMigrationsToRun() { const lastMigratedVersion = await getLastMigratedVersion(); if (lastMigratedVersion === false) { set("RESOptionsVersion", migrations.slice(-1)[0].versionNumber); return []; } return takeRightWhile_default(migrations, ({ versionNumber }) => versionNumber !== lastMigratedVersion); } async function getLastMigratedVersion() { const RESOptionsVersion = await get2("RESOptionsVersion"); if (typeof RESOptionsVersion === "undefined") { console.warn("RESOptionsVersion was undefined"); return false; } else if (RESOptionsVersion !== null) { if (/^\d$/.test(RESOptionsVersion)) { const legacyOptionVersionMapping = ["4.5.0.0", "4.5.0.1"]; return legacyOptionVersionMapping[RESOptionsVersion - 1]; } else if (!migrations.map((m) => m.versionNumber).includes(RESOptionsVersion)) { console.warn(`Couldn't find a migration matching RESOptionsVersion = ${RESOptionsVersion}`); return false; } else { return RESOptionsVersion; } } else if (await has("RES.firstRun.4.5.0.2")) { return "4.5.0.2"; } else if (await has("RES.firstRun.4.3.2.1") || await has("RES.firstRun.4.3.1.2") || await has("RES.firstRun.4.3.0.3") || await has("RES.firstRun.4.2.0.2") || await has("RES.firstRun.4.1.5")) { return null; } else { return false; } } // lib/background.entry.js migrate(); addListener("runMigrations", migrate); })(); /*! Bundled license information: lodash-es/lodash.js: (** * @license * Lodash (Custom Build)