var dictionary = { "first" : ["one", 1, "один"], "bear": ["медведь"] };
localStorage.setItem('dictionary', JSON.stringify(dictionary)); //сохраняем
localStorage.getItem('dictionary'); //забираем строку (в локал-сторейдже строки хранятся)
JSON.parse(localStorage.getItem('dictionary')); //а тут уже приводим к объекту)