var LocalizedStrings = { "Remaining character count:": 'Remaining character count:', "Number of characters over the limit:": "Number of characters over the limit:", "確定刪除":"Delete this?", "確定忽略": "Ignore this?", "確定加為好友":"Are you certain you want to add this friend?", "我不知道位置,跳過此步驟": "I do not know the location, skip this step", "無": "None", "None": "None", "":"The message has been sent" }; String.prototype.localize = function() { var s; if (LocalizedStrings && (s = LocalizedStrings[this])) return s; return this; };