cdnhost 2.5.2 → 2.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/ws_cdn.js +52 -15
- package/ws_cdnhtml.js +12 -8
- package/ws_lg.js +17 -17
package/package.json
CHANGED
package/ws_cdn.js
CHANGED
|
@@ -48,6 +48,10 @@
|
|
|
48
48
|
};
|
|
49
49
|
|
|
50
50
|
const applyLanguage = (langCode) => {
|
|
51
|
+
if (typeof translations === 'undefined') {
|
|
52
|
+
console.error("Translations not loaded! Make sure lang.js is included correctly.");
|
|
53
|
+
return;
|
|
54
|
+
}
|
|
51
55
|
const t = translations[langCode] || translations['en'];
|
|
52
56
|
|
|
53
57
|
document.documentElement.lang = langCode;
|
|
@@ -56,7 +60,7 @@
|
|
|
56
60
|
addToHomeBtn.setAttribute('aria-label', t.addToWidget);
|
|
57
61
|
searchClose.setAttribute('aria-label', t.closeSearch);
|
|
58
62
|
languageBtn.setAttribute('aria-label', t.changeLanguage);
|
|
59
|
-
searchAddBtn.setAttribute('aria-label',
|
|
63
|
+
searchAddBtn.setAttribute('aria-label', 'Copy Widget Code');
|
|
60
64
|
fixedQuestionBtn.setAttribute('aria-label', t.question);
|
|
61
65
|
fixedChatBtn.setAttribute('aria-label', t.characterChat);
|
|
62
66
|
fixedAdBtn.setAttribute('aria-label', t.ads);
|
|
@@ -98,7 +102,7 @@
|
|
|
98
102
|
}
|
|
99
103
|
};
|
|
100
104
|
|
|
101
|
-
|
|
105
|
+
const createIconItem = (item, type = 'default') => {
|
|
102
106
|
const link = document.createElement('a');
|
|
103
107
|
link.href = item.url;
|
|
104
108
|
link.className = 'fhl-icon-display';
|
|
@@ -106,7 +110,7 @@
|
|
|
106
110
|
|
|
107
111
|
if (type === 'search') {
|
|
108
112
|
link.addEventListener('mousedown', () => {
|
|
109
|
-
fetch('
|
|
113
|
+
fetch('update_view_count.php', {
|
|
110
114
|
method: 'POST',
|
|
111
115
|
headers: { 'Content-Type': 'application/json' },
|
|
112
116
|
body: JSON.stringify({ url: item.url })
|
|
@@ -124,17 +128,18 @@
|
|
|
124
128
|
customImage.alt = item.name;
|
|
125
129
|
customImage.onerror = () => { customImage.style.display = 'none'; };
|
|
126
130
|
iconCircle.appendChild(customImage);
|
|
127
|
-
} else if (
|
|
131
|
+
} else if (item.icon) {
|
|
132
|
+
const icon = document.createElement('i');
|
|
133
|
+
icon.className = `ph-bold ${item.icon}`;
|
|
134
|
+
iconCircle.appendChild(icon);
|
|
135
|
+
} else {
|
|
128
136
|
const favicon = document.createElement('img');
|
|
129
137
|
favicon.src = `https://www.google.com/s2/favicons?sz=64&domain_url=${item.url}`;
|
|
130
138
|
favicon.alt = item.name;
|
|
131
139
|
favicon.onerror = () => { favicon.style.display = 'none'; };
|
|
132
140
|
iconCircle.appendChild(favicon);
|
|
133
|
-
} else {
|
|
134
|
-
const icon = document.createElement('i');
|
|
135
|
-
icon.className = `ph-bold ${item.icon}`;
|
|
136
|
-
iconCircle.appendChild(icon);
|
|
137
141
|
}
|
|
142
|
+
|
|
138
143
|
link.appendChild(iconCircle);
|
|
139
144
|
|
|
140
145
|
if (type === 'search') {
|
|
@@ -241,7 +246,7 @@
|
|
|
241
246
|
searchInput.focus();
|
|
242
247
|
if (fullApiItemsData === null) {
|
|
243
248
|
try {
|
|
244
|
-
const response = await fetch('
|
|
249
|
+
const response = await fetch('appapi2.php');
|
|
245
250
|
if (!response.ok) throw new Error('API 응답 오류');
|
|
246
251
|
fullApiItemsData = await response.json();
|
|
247
252
|
} catch (error) {
|
|
@@ -259,13 +264,12 @@
|
|
|
259
264
|
const initialItemsData = [
|
|
260
265
|
{ name: t.search, url: 'https://isai.kr', icon: 'ph-sparkle' },
|
|
261
266
|
{ name: t.question, url: 'https://isai.kr/#chat', icon: 'ph-question-mark' },
|
|
262
|
-
|
|
267
|
+
{ name: t.forum, url: 'https://logig.im', icon: 'ph-chats-circle' },
|
|
263
268
|
{ name: t.blog, url: 'https://blog.099.kr', icon: 'ph-article-medium' },
|
|
264
269
|
{ name: t.characterChat, url: 'https://zoai.oduc.kr/ko/character/select', icon: 'ph-chats-circle' },
|
|
265
270
|
{ name: t.translate, url: 'https://translato.isai.kr/', icon: 'ph-translate' },
|
|
266
271
|
{ name: t.tarot, url: 'https://tarot.isai.kr/', icon: 'ph-cards' },
|
|
267
272
|
{ name: t.psychology, url: 'https://simpong.oduc.kr/', img: 'http://cdn.jsdelivr.net/npm/cdnhost@2.2.0/_simpong.png' },
|
|
268
|
-
{ name: t.forum, url: 'https://logig.im', icon: 'ph-chats-circle' },
|
|
269
273
|
{ name: t.ads, url: 'https://gig.snapp.im/', icon: 'ph-currency-circle-dollar' },
|
|
270
274
|
];
|
|
271
275
|
|
|
@@ -378,15 +382,48 @@
|
|
|
378
382
|
closeSearch();
|
|
379
383
|
}
|
|
380
384
|
});
|
|
381
|
-
|
|
382
|
-
|
|
385
|
+
|
|
383
386
|
|
|
384
387
|
|
|
385
|
-
(
|
|
388
|
+
(() => { const _0x1a2b = async _0x3c4d => { _0x3c4d.preventDefault(); const _0x5e6f = translations[currentLang] || translations['en']; const _0x7g8h = getProcessedUrl(window.location.href); let _0x9i0j = document.title || _0x5e6f.currentPage; try { const _0xklmn = await fetch('get_title.php?url=' + encodeURIComponent(_0x7g8h)); if (_0xklmn.ok) { const _0xopqr = await _0xklmn.json(); _0xopqr.title && (_0x9i0j = _0xopqr.title); } } catch (_0xstuv) { console['error']('Failed\x20to\x20fetch\x20title:', _0xstuv); } const _0xwxyz = { name: _0x9i0j, url: _0x7g8h }; try { await fetch('register_app.php', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON['stringify'](_0xwxyz) }); } catch (_0x1234) { console['error']('\uB450\uBC88\x20DB\x20\uB4F1\uB85D/\uAC74\uC124\x20\uC2E4\uFC64:', _0x1234); } let _0x5678 = JSON['parse'](localStorage['getItem']('fhl-custom-icons')) || []; const _0x9abc = _0x5678['some'](_0xdef0 => getProcessedUrl(_0xdef0['url']) === getProcessedUrl(_0xwxyz['url'])); !_0x9abc ? ( _0x5678['push'](_0xwxyz), localStorage['setItem']('fhl-custom-icons', JSON['stringify'](_0x5678)), initialRender(), widgetWrapper['classList']['contains']('search-mode') && closeSearch() ) : showToast(_0x5e6f['alreadyAdded']); }; window['addCurrentPageToWidget'] = _0x1a2b; })();
|
|
386
389
|
|
|
387
390
|
|
|
391
|
+
const copyWidgetScript = (e) => {
|
|
392
|
+
e.preventDefault();
|
|
393
|
+
const textToCopy = "<script src='https://cdn.jsdelivr.net/npm/cdnhost@latest/ws_cdn.js'><\/script>";
|
|
394
|
+
const t = translations[currentLang] || translations['en'];
|
|
395
|
+
|
|
396
|
+
const fallbackCopy = () => {
|
|
397
|
+
const textArea = document.createElement("textarea");
|
|
398
|
+
textArea.value = textToCopy;
|
|
399
|
+
textArea.style.position = "fixed";
|
|
400
|
+
textArea.style.top = 0;
|
|
401
|
+
textArea.style.left = "-9999px";
|
|
402
|
+
document.body.appendChild(textArea);
|
|
403
|
+
textArea.focus();
|
|
404
|
+
textArea.select();
|
|
405
|
+
try {
|
|
406
|
+
document.execCommand('copy');
|
|
407
|
+
showToast(t.codeCopied);
|
|
408
|
+
} catch (err) {
|
|
409
|
+
console.error('Fallback: Oops, unable to copy', err);
|
|
410
|
+
}
|
|
411
|
+
document.body.removeChild(textArea);
|
|
412
|
+
};
|
|
413
|
+
|
|
414
|
+
if (navigator.clipboard && window.isSecureContext) {
|
|
415
|
+
navigator.clipboard.writeText(textToCopy).then(() => {
|
|
416
|
+
showToast(t.codeCopied);
|
|
417
|
+
}).catch(() => {
|
|
418
|
+
fallbackCopy();
|
|
419
|
+
});
|
|
420
|
+
} else {
|
|
421
|
+
fallbackCopy();
|
|
422
|
+
}
|
|
423
|
+
};
|
|
424
|
+
|
|
388
425
|
addToHomeBtn.addEventListener('click', addCurrentPageToWidget);
|
|
389
|
-
searchAddBtn.addEventListener('click',
|
|
426
|
+
searchAddBtn.addEventListener('click', copyWidgetScript);
|
|
390
427
|
|
|
391
428
|
populateLanguagePanel();
|
|
392
429
|
applyLanguage(currentLang);
|
package/ws_cdnhtml.js
CHANGED
|
@@ -4,6 +4,7 @@ const appContainer = document.getElementById('app');
|
|
|
4
4
|
// 2. 원본 HTML 코드를 백틱(`)을 사용해 그대로 복사하여 문자열로 만듭니다.
|
|
5
5
|
// 이렇게 하면 모든 id, class, 속성들이 완벽하게 보존됩니다.
|
|
6
6
|
const widgetHTML = `
|
|
7
|
+
|
|
7
8
|
<div id="fhl-toast-notification" class="fhl-toast"></div>
|
|
8
9
|
<div class="fhl-widget-container" id="fhl-widget-container">
|
|
9
10
|
<div class="fhl-indicator-track" id="fhl-indicator-track">
|
|
@@ -11,27 +12,30 @@ const widgetHTML = `
|
|
|
11
12
|
</div>
|
|
12
13
|
<div class="fhl-widget-wrapper" id="fhl-widget-wrapper">
|
|
13
14
|
<div class="fhl-icon-bar" id="fhl-icon-bar">
|
|
14
|
-
<button class="fhl-icon-display" id="fhl-search-trigger"
|
|
15
|
+
<button class="fhl-icon-display" id="fhl-search-trigger"><i class="ph-bold ph-magnifying-glass"></i></button>
|
|
15
16
|
<div class="fhl-list-container" id="fhl-list-container"></div>
|
|
16
|
-
<
|
|
17
|
+
<button class="fhl-icon-display" id="fhl-language-btn"><i class="ph-bold ph-globe"></i></button>
|
|
18
|
+
<a href="#" id="fhl-add-to-home-btn" class="fhl-icon-display"><i class="ph-bold ph-download-simple"></i></a>
|
|
17
19
|
</div>
|
|
18
20
|
<div class="fhl-search-view" id="fhl-search-view">
|
|
19
21
|
<div class="fhl-search-input-wrapper">
|
|
20
|
-
<input type="text" class="fhl-search-input" id="fhl-search-input"
|
|
21
|
-
<button class="fhl-icon-display" id="fhl-search-close"
|
|
22
|
+
<input type="text" class="fhl-search-input" id="fhl-search-input" autocomplete="off">
|
|
23
|
+
<button class="fhl-icon-display" id="fhl-search-close"><i class="ph-bold ph-x"></i></button>
|
|
22
24
|
</div>
|
|
23
25
|
<div class="fhl-search-content">
|
|
24
26
|
<div class="fhl-search-results" id="fhl-search-results"></div>
|
|
25
27
|
<div class="fhl-fixed-panel">
|
|
26
|
-
<a href="#" id="fhl-search-add-btn" class="fhl-fixed-item"
|
|
27
|
-
<a href="https://isai.kr/#chat"
|
|
28
|
-
<a href="https://zoai.oduc.kr/ko/character/select"
|
|
29
|
-
<a href="https://gig.snapp.im/"
|
|
28
|
+
<a href="#" id="fhl-search-add-btn" class="fhl-fixed-item"><i class="ph-bold ph-code"></i></a>
|
|
29
|
+
<a href="https://isai.kr/#chat" id="fhl-fixed-question" class="fhl-fixed-item"><i class="ph-bold ph-question"></i></a>
|
|
30
|
+
<a href="https://zoai.oduc.kr/ko/character/select" id="fhl-fixed-chat" class="fhl-fixed-item"><i class="ph-bold ph-smiley"></i></a>
|
|
31
|
+
<a href="https://gig.snapp.im/" id="fhl-fixed-ad" class="fhl-fixed-item"><i class="ph-bold ph-megaphone"></i></a>
|
|
30
32
|
</div>
|
|
31
33
|
</div>
|
|
32
34
|
</div>
|
|
33
35
|
</div>
|
|
36
|
+
<div id="fhl-language-panel" class="fhl-language-panel"></div>
|
|
34
37
|
</div>
|
|
38
|
+
|
|
35
39
|
`;
|
|
36
40
|
|
|
37
41
|
// 3. appContainer가 실제로 존재하는지 확인한 후,
|
package/ws_lg.js
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
// lang.js
|
|
2
2
|
const translations = {
|
|
3
|
-
ko: { search: '검색', question: '질문', forum: '포럼', blog: '블로그', characterChat: '캐릭터챗', translate: '번역', tarot: '타로', psychology: '심리', ads: '광고', openSearch: '검색 열기', addToWidget: '위젯에 추가', closeSearch: '검색 닫기', changeLanguage: '언어 변경', images: '이미지', searchPlaceholder: '검색...', alreadyAdded: '이미 위젯에 추가된 페이지입니다.', currentPage: '현재 페이지' },
|
|
4
|
-
en: { search: 'Search', question: 'Question', forum: 'Forum', blog: 'Blog', characterChat: 'CharacterChat', translate: 'Translate', tarot: 'Tarot', psychology: 'Psychology', ads: 'Ads', openSearch: 'Open Search', addToWidget: 'Add to Widget', closeSearch: 'Close Search', changeLanguage: 'Change Language', images: 'Images', searchPlaceholder: 'Search...', alreadyAdded: 'This page has already been added to the widget.', currentPage: 'Current Page' },
|
|
5
|
-
es: { search: 'Buscar', question: 'Pregunta', forum: 'Foro', blog: 'Blog', characterChat: 'Chat de Personajes', translate: 'Traducir', tarot: 'Tarot', psychology: 'Psicología', ads: 'Anuncios', openSearch: 'Abrir Búsqueda', addToWidget: 'Añadir al Widget', closeSearch: 'Cerrar Búsqueda', changeLanguage: 'Cambiar Idioma', images: 'Imágenes', searchPlaceholder: 'Buscar...', alreadyAdded: 'Esta página ya ha sido añadida al widget.', currentPage: 'Página Actual' },
|
|
6
|
-
hi: { search: 'खोज', question: 'प्रश्न', forum: 'मंच', blog: 'ब्लॉग', characterChat: 'कैरेक्टरचैट', translate: 'अनुवाद', tarot: 'टैरो', psychology: 'मनोविज्ञान', ads: 'विज्ञापन', openSearch: 'खोज खोलें', addToWidget: 'विजेट में जोड़ें', closeSearch: 'खोज बंद करें', changeLanguage: 'भाषा बदलें', images: 'छवियाँ', searchPlaceholder: 'खोजें...', alreadyAdded: 'यह पृष्ठ पहले से ही विजेट में जोड़ा जा चुका है।', currentPage: 'वर्तमान पृष्ठ' },
|
|
7
|
-
ar: { search: 'بحث', question: 'سؤال', forum: 'منتدى', blog: 'مدونة', characterChat: 'دردشة شخصية', translate: 'ترجمة', tarot: 'تاروت', psychology: 'علم النفس', ads: 'إعلانات', openSearch: 'فتح البحث', addToWidget: 'أضف إلى الويدجت', closeSearch: 'إغلاق البحث', changeLanguage: 'تغيير اللغة', images: 'صور', searchPlaceholder: 'بحث...', alreadyAdded: 'تمت إضافة هذه الصفحة بالفعل إلى الويدجت.', currentPage: 'الصفحة الحالية' },
|
|
8
|
-
de: { search: 'Suche', question: 'Frage', forum: 'Forum', blog: 'Blog', characterChat: 'Charakter-Chat', translate: 'Übersetzen', tarot: 'Tarot', psychology: 'Psychologie', ads: 'Anzeigen', openSearch: 'Suche öffnen', addToWidget: 'Zum Widget hinzufügen', closeSearch: 'Suche schließen', changeLanguage: 'Sprache ändern', images: 'Bilder', searchPlaceholder: 'Suchen...', alreadyAdded: 'Diese Seite wurde bereits zum Widget hinzugefügt.', currentPage: 'Aktuelle Seite' },
|
|
9
|
-
fr: { search: 'Recherche', question: 'Question', forum: 'Forum', blog: 'Blog', characterChat: 'Chat de Personnage', translate: 'Traduire', tarot: 'Tarot', psychology: 'Psychologie', ads: 'Publicités', openSearch: 'Ouvrir la Recherche', addToWidget: 'Ajouter au Widget', closeSearch: 'Fermer la Recherche', changeLanguage: 'Changer de Langue', images: 'Images', searchPlaceholder: 'Rechercher...', alreadyAdded: 'Cette page a déjà été ajoutée au widget.', currentPage: 'Page Actuelle' },
|
|
10
|
-
pt: { search: 'Pesquisa', question: 'Pergunta', forum: 'Fórum', blog: 'Blog', characterChat: 'Chat de Personagem', translate: 'Traduzir', tarot: 'Tarô', psychology: 'Psicologia', ads: 'Anúncios', openSearch: 'Abrir Pesquisa', addToWidget: 'Adicionar ao Widget', closeSearch: 'Fechar Pesquisa', changeLanguage: 'Mudar Idioma', images: 'Imagens', searchPlaceholder: 'Pesquisar...', alreadyAdded: 'Esta página já foi adicionada ao widget.', currentPage: 'Página Atual' },
|
|
11
|
-
bn: { search: 'অনুসন্ধান', question: 'প্রশ্ন', forum: 'ফোরাম', blog: 'ব্লগ', characterChat: 'ক্যারেক্টারচ্যাট', translate: 'অনুবাদ', tarot: 'ট্যারোট', psychology: 'মনোবিজ্ঞান', ads: 'বিজ্ঞাপন', openSearch: 'অনুসন্ধান খুলুন', addToWidget: 'উইজেটে যোগ করুন', closeSearch: 'অনুসন্ধান বন্ধ করুন', changeLanguage: 'ভাষা পরিবর্তন করুন', images: 'ছবি', searchPlaceholder: 'অনুসন্ধান...', alreadyAdded: 'এই পৃষ্ঠাটি ইতিমধ্যে উইজেটে যোগ করা হয়েছে।', currentPage: 'বর্তমান পৃষ্ঠা' },
|
|
12
|
-
ja: { search: '検索', question: '質問', forum: 'フォーラム', blog: 'ブログ', characterChat: 'キャラクターチャット', translate: '翻訳', tarot: 'タロット', psychology: '心理学', ads: '広告', openSearch: '検索を開く', addToWidget: 'ウィジェットに追加', closeSearch: '検索を閉じる', changeLanguage: '言語を変更', images: '画像', searchPlaceholder: '検索...', alreadyAdded: 'このページは既に追加されています。', currentPage: '現在のページ' },
|
|
13
|
-
ru: { search: 'Поиск', question: 'Вопрос', forum: 'Форум', blog: 'Блог', characterChat: 'Чат с персонажем', translate: 'Перевод', tarot: 'Таро', psychology: 'Психология', ads: 'Реклама', openSearch: 'Открыть поиск', addToWidget: 'Добавить в виджет', closeSearch: 'Закрыть поиск', changeLanguage: 'Сменить язык', images: 'Изображения', searchPlaceholder: 'Поиск...', alreadyAdded: 'Эта страница уже добавлена в виджет.', currentPage: 'Текущая страница' },
|
|
14
|
-
zh: { search: '搜索', question: '问题', forum: '论坛', blog: '博客', characterChat: '角色聊天', translate: '翻译', tarot: '塔罗牌', psychology: '心理学', ads: '广告', openSearch: '打开搜索', addToWidget: '添加到小组件', closeSearch: '关闭搜索', changeLanguage: '更改语言', images: '图片', searchPlaceholder: '搜索...', alreadyAdded: '此页面已添加到小组件。', currentPage: '当前页面' },
|
|
15
|
-
th: { search: 'ค้นหา', question: 'คำถาม', forum: 'ฟอรัม', blog: 'บล็อก', characterChat: 'แชทตัวละคร', translate: 'แปล', tarot: 'ไพ่ทาโรต์', psychology: 'จิตวิทยา', ads: 'โฆษณา', openSearch: 'เปิดการค้นหา', addToWidget: 'เพิ่มในวิดเจ็ต', closeSearch: 'ปิดการค้นหา', changeLanguage: 'เปลี่ยนภาษา', images: 'รูปภาพ', searchPlaceholder: 'ค้นหา...', alreadyAdded: 'หน้านี้ถูกเพิ่มในวิดเจ็ตแล้ว', currentPage: 'หน้าปัจจุบัน' },
|
|
16
|
-
vi: { search: 'Tìm kiếm', question: 'Câu hỏi', forum: 'Diễn đàn', blog: 'Blog', characterChat: 'Trò chuyện nhân vật', translate: 'Dịch', tarot: 'Tarot', psychology: 'Tâm lý học', ads: 'Quảng cáo', openSearch: 'Mở tìm kiếm', addToWidget: 'Thêm vào tiện ích', closeSearch: 'Đóng tìm kiếm', changeLanguage: 'Đổi ngôn ngữ', images: 'Hình ảnh', searchPlaceholder: 'Tìm kiếm...', alreadyAdded: 'Trang này đã được thêm vào tiện ích.', currentPage: 'Trang hiện tại' },
|
|
17
|
-
id: { search: 'Cari', question: 'Pertanyaan', forum: 'Forum', blog: 'Blog', characterChat: 'Obrolan Karakter', translate: 'Terjemahkan', tarot: 'Tarot', psychology: 'Psikologi', ads: 'Iklan', openSearch: 'Buka Pencarian', addToWidget: 'Tambah ke Widget', closeSearch: 'Tutup Pencarian', changeLanguage: 'Ubah Bahasa', images: 'Gambar', searchPlaceholder: 'Cari...', alreadyAdded: 'Halaman ini sudah ditambahkan ke widget.', currentPage: 'Halaman Saat Ini' },
|
|
18
|
-
tr: { search: 'Ara', question: 'Soru', forum: 'Forum', blog: 'Blog', characterChat: 'Karakter Sohbeti', translate: 'Çevir', tarot: 'Tarot', psychology: 'Psikoloji', ads: 'Reklamlar', openSearch: 'Aramayı Aç', addToWidget: 'Widget\'a Ekle', closeSearch: 'Aramayı Kapat', changeLanguage: 'Dili Değiştir', images: 'Görseller', searchPlaceholder: 'Ara...', alreadyAdded: 'Bu sayfa zaten widget\'a eklenmiş.', currentPage: 'Mevcut Sayfa' },
|
|
19
|
-
ur: { search: 'تلاش', question: 'سوال', forum: 'فورم', blog: 'بلاگ', characterChat: 'کردار چیٹ', translate: 'ترجمہ', tarot: 'ٹیرو', psychology: 'نفسیات', ads: 'اشتہارات', openSearch: 'تلاش کھولیں', addToWidget: 'ویجیٹ میں شامل کریں', closeSearch: 'تلاش بند کریں', changeLanguage: 'زبان تبدیل کریں', images: 'تصاویر', searchPlaceholder: 'تلاش کریں...', alreadyAdded: 'یہ صفحہ پہلے ہی ویجیٹ میں شامل ہے۔', currentPage: 'موجودہ صفحہ' }
|
|
3
|
+
ko: { search: '검색', question: '질문', forum: '포럼', blog: '블로그', characterChat: '캐릭터챗', translate: '번역', tarot: '타로', psychology: '심리', ads: '광고', openSearch: '검색 열기', addToWidget: '위젯에 추가', closeSearch: '검색 닫기', changeLanguage: '언어 변경', images: '이미지', searchPlaceholder: '검색...', alreadyAdded: '이미 위젯에 추가된 페이지입니다.', currentPage: '현재 페이지', codeCopied: '코드가 복사되었습니다. 사이트에 붙여 넣어 주세요.' },
|
|
4
|
+
en: { search: 'Search', question: 'Question', forum: 'Forum', blog: 'Blog', characterChat: 'CharacterChat', translate: 'Translate', tarot: 'Tarot', psychology: 'Psychology', ads: 'Ads', openSearch: 'Open Search', addToWidget: 'Add to Widget', closeSearch: 'Close Search', changeLanguage: 'Change Language', images: 'Images', searchPlaceholder: 'Search...', alreadyAdded: 'This page has already been added to the widget.', currentPage: 'Current Page', codeCopied: 'Code copied. Please paste it into your site.' },
|
|
5
|
+
es: { search: 'Buscar', question: 'Pregunta', forum: 'Foro', blog: 'Blog', characterChat: 'Chat de Personajes', translate: 'Traducir', tarot: 'Tarot', psychology: 'Psicología', ads: 'Anuncios', openSearch: 'Abrir Búsqueda', addToWidget: 'Añadir al Widget', closeSearch: 'Cerrar Búsqueda', changeLanguage: 'Cambiar Idioma', images: 'Imágenes', searchPlaceholder: 'Buscar...', alreadyAdded: 'Esta página ya ha sido añadida al widget.', currentPage: 'Página Actual', codeCopied: 'Código copiado. Péguelo en su sitio.' },
|
|
6
|
+
hi: { search: 'खोज', question: 'प्रश्न', forum: 'मंच', blog: 'ब्लॉग', characterChat: 'कैरेक्टरचैट', translate: 'अनुवाद', tarot: 'टैरो', psychology: 'मनोविज्ञान', ads: 'विज्ञापन', openSearch: 'खोज खोलें', addToWidget: 'विजेट में जोड़ें', closeSearch: 'खोज बंद करें', changeLanguage: 'भाषा बदलें', images: 'छवियाँ', searchPlaceholder: 'खोजें...', alreadyAdded: 'यह पृष्ठ पहले से ही विजेट में जोड़ा जा चुका है।', currentPage: 'वर्तमान पृष्ठ', codeCopied: 'कोड कॉपी हो गया। कृपया इसे अपनी साइट पर पेस्ट करें।' },
|
|
7
|
+
ar: { search: 'بحث', question: 'سؤال', forum: 'منتدى', blog: 'مدونة', characterChat: 'دردشة شخصية', translate: 'ترجمة', tarot: 'تاروت', psychology: 'علم النفس', ads: 'إعلانات', openSearch: 'فتح البحث', addToWidget: 'أضف إلى الويدجت', closeSearch: 'إغلاق البحث', changeLanguage: 'تغيير اللغة', images: 'صور', searchPlaceholder: 'بحث...', alreadyAdded: 'تمت إضافة هذه الصفحة بالفعل إلى الويدجت.', currentPage: 'الصفحة الحالية', codeCopied: 'تم نسخ الرمز. يرجى لصقه في موقعك.' },
|
|
8
|
+
de: { search: 'Suche', question: 'Frage', forum: 'Forum', blog: 'Blog', characterChat: 'Charakter-Chat', translate: 'Übersetzen', tarot: 'Tarot', psychology: 'Psychologie', ads: 'Anzeigen', openSearch: 'Suche öffnen', addToWidget: 'Zum Widget hinzufügen', closeSearch: 'Suche schließen', changeLanguage: 'Sprache ändern', images: 'Bilder', searchPlaceholder: 'Suchen...', alreadyAdded: 'Diese Seite wurde bereits zum Widget hinzugefügt.', currentPage: 'Aktuelle Seite', codeCopied: 'Code kopiert. Bitte fügen Sie ihn auf Ihrer Seite ein.' },
|
|
9
|
+
fr: { search: 'Recherche', question: 'Question', forum: 'Forum', blog: 'Blog', characterChat: 'Chat de Personnage', translate: 'Traduire', tarot: 'Tarot', psychology: 'Psychologie', ads: 'Publicités', openSearch: 'Ouvrir la Recherche', addToWidget: 'Ajouter au Widget', closeSearch: 'Fermer la Recherche', changeLanguage: 'Changer de Langue', images: 'Images', searchPlaceholder: 'Rechercher...', alreadyAdded: 'Cette page a déjà été ajoutée au widget.', currentPage: 'Page Actuelle', codeCopied: 'Code copié. Veuillez le coller sur votre site.' },
|
|
10
|
+
pt: { search: 'Pesquisa', question: 'Pergunta', forum: 'Fórum', blog: 'Blog', characterChat: 'Chat de Personagem', translate: 'Traduzir', tarot: 'Tarô', psychology: 'Psicologia', ads: 'Anúncios', openSearch: 'Abrir Pesquisa', addToWidget: 'Adicionar ao Widget', closeSearch: 'Fechar Pesquisa', changeLanguage: 'Mudar Idioma', images: 'Imagens', searchPlaceholder: 'Pesquisar...', alreadyAdded: 'Esta página já foi adicionada ao widget.', currentPage: 'Página Atual', codeCopied: 'Código copiado. Por favor, cole no seu site.' },
|
|
11
|
+
bn: { search: 'অনুসন্ধান', question: 'প্রশ্ন', forum: 'ফোরাম', blog: 'ব্লগ', characterChat: 'ক্যারেক্টারচ্যাট', translate: 'অনুবাদ', tarot: 'ট্যারোট', psychology: 'মনোবিজ্ঞান', ads: 'বিজ্ঞাপন', openSearch: 'অনুসন্ধান খুলুন', addToWidget: 'উইজেটে যোগ করুন', closeSearch: 'অনুসন্ধান বন্ধ করুন', changeLanguage: 'ভাষা পরিবর্তন করুন', images: 'ছবি', searchPlaceholder: 'অনুসন্ধান...', alreadyAdded: 'এই পৃষ্ঠাটি ইতিমধ্যে উইজেটে যোগ করা হয়েছে।', currentPage: 'বর্তমান পৃষ্ঠা', codeCopied: 'কোড কপি করা হয়েছে। আপনার সাইটে পেস্ট করুন।' },
|
|
12
|
+
ja: { search: '検索', question: '質問', forum: 'フォーラム', blog: 'ブログ', characterChat: 'キャラクターチャット', translate: '翻訳', tarot: 'タロット', psychology: '心理学', ads: '広告', openSearch: '検索を開く', addToWidget: 'ウィジェットに追加', closeSearch: '検索を閉じる', changeLanguage: '言語を変更', images: '画像', searchPlaceholder: '検索...', alreadyAdded: 'このページは既に追加されています。', currentPage: '現在のページ', codeCopied: 'コードがコピーされました。サイトに貼り付けてください。' },
|
|
13
|
+
ru: { search: 'Поиск', question: 'Вопрос', forum: 'Форум', blog: 'Блог', characterChat: 'Чат с персонажем', translate: 'Перевод', tarot: 'Таро', psychology: 'Психология', ads: 'Реклама', openSearch: 'Открыть поиск', addToWidget: 'Добавить в виджет', closeSearch: 'Закрыть поиск', changeLanguage: 'Сменить язык', images: 'Изображения', searchPlaceholder: 'Поиск...', alreadyAdded: 'Эта страница уже добавлена в виджет.', currentPage: 'Текущая страница', codeCopied: 'Код скопирован. Пожалуйста, вставьте его на свой сайт.' },
|
|
14
|
+
zh: { search: '搜索', question: '问题', forum: '论坛', blog: '博客', characterChat: '角色聊天', translate: '翻译', tarot: '塔罗牌', psychology: '心理学', ads: '广告', openSearch: '打开搜索', addToWidget: '添加到小组件', closeSearch: '关闭搜索', changeLanguage: '更改语言', images: '图片', searchPlaceholder: '搜索...', alreadyAdded: '此页面已添加到小组件。', currentPage: '当前页面', codeCopied: '代码已复制。请将其粘贴到您的网站中。' },
|
|
15
|
+
th: { search: 'ค้นหา', question: 'คำถาม', forum: 'ฟอรัม', blog: 'บล็อก', characterChat: 'แชทตัวละคร', translate: 'แปล', tarot: 'ไพ่ทาโรต์', psychology: 'จิตวิทยา', ads: 'โฆษณา', openSearch: 'เปิดการค้นหา', addToWidget: 'เพิ่มในวิดเจ็ต', closeSearch: 'ปิดการค้นหา', changeLanguage: 'เปลี่ยนภาษา', images: 'รูปภาพ', searchPlaceholder: 'ค้นหา...', alreadyAdded: 'หน้านี้ถูกเพิ่มในวิดเจ็ตแล้ว', currentPage: 'หน้าปัจจุบัน', codeCopied: 'คัดลอกโค้ดแล้ว โปรดวางลงในไซต์ของคุณ' },
|
|
16
|
+
vi: { search: 'Tìm kiếm', question: 'Câu hỏi', forum: 'Diễn đàn', blog: 'Blog', characterChat: 'Trò chuyện nhân vật', translate: 'Dịch', tarot: 'Tarot', psychology: 'Tâm lý học', ads: 'Quảng cáo', openSearch: 'Mở tìm kiếm', addToWidget: 'Thêm vào tiện ích', closeSearch: 'Đóng tìm kiếm', changeLanguage: 'Đổi ngôn ngữ', images: 'Hình ảnh', searchPlaceholder: 'Tìm kiếm...', alreadyAdded: 'Trang này đã được thêm vào tiện ích.', currentPage: 'Trang hiện tại', codeCopied: 'Đã sao chép mã. Vui lòng dán vào trang web của bạn.' },
|
|
17
|
+
id: { search: 'Cari', question: 'Pertanyaan', forum: 'Forum', blog: 'Blog', characterChat: 'Obrolan Karakter', translate: 'Terjemahkan', tarot: 'Tarot', psychology: 'Psikologi', ads: 'Iklan', openSearch: 'Buka Pencarian', addToWidget: 'Tambah ke Widget', closeSearch: 'Tutup Pencarian', changeLanguage: 'Ubah Bahasa', images: 'Gambar', searchPlaceholder: 'Cari...', alreadyAdded: 'Halaman ini sudah ditambahkan ke widget.', currentPage: 'Halaman Saat Ini', codeCopied: 'Kode disalin. Silakan tempel di situs Anda.' },
|
|
18
|
+
tr: { search: 'Ara', question: 'Soru', forum: 'Forum', blog: 'Blog', characterChat: 'Karakter Sohbeti', translate: 'Çevir', tarot: 'Tarot', psychology: 'Psikoloji', ads: 'Reklamlar', openSearch: 'Aramayı Aç', addToWidget: 'Widget\'a Ekle', closeSearch: 'Aramayı Kapat', changeLanguage: 'Dili Değiştir', images: 'Görseller', searchPlaceholder: 'Ara...', alreadyAdded: 'Bu sayfa zaten widget\'a eklenmiş.', currentPage: 'Mevcut Sayfa', codeCopied: 'Kod kopyalandı. Lütfen sitenize yapıştırın.' },
|
|
19
|
+
ur: { search: 'تلاش', question: 'سوال', forum: 'فورم', blog: 'بلاگ', characterChat: 'کردار چیٹ', translate: 'ترجمہ', tarot: 'ٹیرو', psychology: 'نفسیات', ads: 'اشتہارات', openSearch: 'تلاش کھولیں', addToWidget: 'ویجیٹ میں شامل کریں', closeSearch: 'تلاش بند کریں', changeLanguage: 'زبان تبدیل کریں', images: 'تصاویر', searchPlaceholder: 'تلاش کریں...', alreadyAdded: 'یہ صفحہ پہلے ہی ویجیٹ میں شامل ہے۔', currentPage: 'موجودہ صفحہ', codeCopied: 'کوڈ کاپی ہوگیا ہے۔ براہ کرم اسے اپنی سائٹ پر چسپاں کریں۔' }
|
|
20
20
|
};
|