updated docs

This commit is contained in:
2025-05-13 18:45:23 +03:00
parent 6dfa17c5e6
commit 3627412fe9
247 changed files with 30258 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
const contentDefaultEn = {
title: "Content Default",
content: "Content Default",
button: "Content Default",
rows: "Rows",
};
export { contentDefaultEn };

View File

@@ -0,0 +1,9 @@
import { contentDefaultTr } from "./turkish";
import { contentDefaultEn } from "./english";
const contentDefault = {
tr: contentDefaultTr,
en: contentDefaultEn,
};
export { contentDefault };

View File

@@ -0,0 +1,8 @@
const contentDefaultTr = {
title: "İçerik Varsayılan",
content: "İçerik Varsayılan",
button: "İçerik Varsayılan",
rows: "Satır",
};
export { contentDefaultTr };