73 lines
1.9 KiB
JavaScript
73 lines
1.9 KiB
JavaScript
// This is free software for the public good of a permacomputer hosted at
|
|
// permacomputer.com, an always-on computer by the people, for the people.
|
|
// One which is durable, easy to repair, & distributed like tap water
|
|
// for machine learning intelligence.
|
|
//
|
|
// The permacomputer is community-owned infrastructure optimized around
|
|
// four values:
|
|
//
|
|
// TRUTH First principles, math & science, open source code freely distributed
|
|
// FREEDOM Voluntary partnerships, freedom from tyranny & corporate control
|
|
// HARMONY Minimal waste, self-renewing systems with diverse thriving connections
|
|
// LOVE Be yourself without hurting others, cooperation through natural law
|
|
//
|
|
// This software contributes to that vision by making machine learning
|
|
// accessible to everyone through a free, open, embeddable chat interface.
|
|
// Code is seeds to sprout on any abandoned technology.
|
|
|
|
import { en } from "./en.js";
|
|
import { zh } from "./zh.js";
|
|
import { hi } from "./hi.js";
|
|
import { es } from "./es.js";
|
|
import { fr } from "./fr.js";
|
|
import { ar } from "./ar.js";
|
|
import { bn } from "./bn.js";
|
|
import { ru } from "./ru.js";
|
|
import { pt } from "./pt.js";
|
|
import { ur } from "./ur.js";
|
|
import { id } from "./id.js";
|
|
import { de } from "./de.js";
|
|
import { ja } from "./ja.js";
|
|
import { sw } from "./sw.js";
|
|
import { mr } from "./mr.js";
|
|
import { te } from "./te.js";
|
|
import { tr } from "./tr.js";
|
|
import { zhTw } from "./zh-tw.js";
|
|
import { ko } from "./ko.js";
|
|
import { it } from "./it.js";
|
|
import { nl } from "./nl.js";
|
|
import { pl } from "./pl.js";
|
|
import { vi } from "./vi.js";
|
|
import { th } from "./th.js";
|
|
import { uk } from "./uk.js";
|
|
import { sv } from "./sv.js";
|
|
|
|
// Complete UI Translations for all supported languages
|
|
export const UI_TRANSLATIONS = {
|
|
en,
|
|
zh,
|
|
hi,
|
|
es,
|
|
fr,
|
|
ar,
|
|
bn,
|
|
ru,
|
|
pt,
|
|
ur,
|
|
id,
|
|
de,
|
|
ja,
|
|
sw,
|
|
mr,
|
|
te,
|
|
tr,
|
|
"zh-tw": zhTw,
|
|
ko,
|
|
it,
|
|
nl,
|
|
pl,
|
|
vi,
|
|
th,
|
|
uk,
|
|
sv,
|
|
};
|