/*! * This file is part of Share₂Fedi * https://github.com/kytta/share2fedi * * SPDX-FileCopyrightText: © 2023 Nikita Karamov * SPDX-License-Identifier: AGPL-3.0-only */ import de from "./translations/de.json"; import en from "./translations/en.json"; import es from "./translations/es.json"; import fr from "./translations/fr.json"; import ru from "./translations/ru.json"; export const languages = { en: "English", de: "Deutsch", es: "Español", fr: "Français", ru: "Русский", }; export const strings: Record> = { en, de, es, fr, ru, } as const; export const defaultLanguage: keyof typeof strings = "en";