mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-12-06 00:16:49 +00:00
34 lines
922 B
TypeScript
34 lines
922 B
TypeScript
import * as de from "./de/index";
|
|
import * as en from "./en/index";
|
|
import * as it from "./it/index";
|
|
import * as ja from "./ja/index";
|
|
import * as nl from "./nl/index";
|
|
import * as pl from "./pl/index";
|
|
import * as ru from "./ru/index";
|
|
import * as sk from "./sk/index";
|
|
import * as vi from "./vi/index";
|
|
import * as zh from "./zh/index";
|
|
|
|
const items: any = { en, de, ja, sk, zh, pl, ru, it, vi, nl };
|
|
|
|
const fallbackLang = "en";
|
|
|
|
export const getHelpFile = (lang: string, section: string): string => {
|
|
if (
|
|
typeof items[lang] !== "undefined" &&
|
|
typeof items[lang][section] !== "undefined"
|
|
) {
|
|
return items[lang][section].default;
|
|
}
|
|
// Fallback to English
|
|
if (
|
|
typeof items[fallbackLang] !== "undefined" &&
|
|
typeof items[fallbackLang][section] !== "undefined"
|
|
) {
|
|
return items[fallbackLang][section].default;
|
|
}
|
|
throw new Error(`Cannot load help doc for ${lang}-${section}`);
|
|
};
|
|
|
|
export default items;
|