Skip to content

Instantly share code, notes, and snippets.

@JohnRSim
Created July 11, 2024 09:37
Show Gist options
  • Save JohnRSim/f9fa5dff543494cd350be41d250d29a7 to your computer and use it in GitHub Desktop.
Save JohnRSim/f9fa5dff543494cd350be41d250d29a7 to your computer and use it in GitHub Desktop.
// Retrieve translations from local storage or use default
const storedTranslations = localStorage.getItem('translations');
const translations = storedTranslations ? JSON.parse(storedTranslations) : {
"Hello, world!": "Hola, mundo!",
"This is a test.": "Esto es una prueba.",
// Add more default translations as needed
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment