-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
56 lines (56 loc) · 2.71 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<!-- emulate js config object -->
<script>
window.KZChatbotConfig = {
uuid: "66d9681b4103e",
chatbotIsShown: true,
chatbotProminence: "low",
cookieExpiry: "2024-08-22T10:05:57+00:00",
feedbackCharacterLimit: 100,
questionCharacterLimit: 100,
questionsPermitted: 2,
termsofServiceUrl:
"/terms-of-use",
usageHelpUrl: "/faq",
slugs: {
question_character_limit: "max",
chat_icon: "כל שאלה",
chat_tip_link: "טיפים לניסוח שאלה טובה",
close_chat_icon: "סגירה",
dislike_free_text: "רוצה לפרט? זה יעזור לנו להשתפר",
like_free_text: "רוצה לפרט?",
dislike_follow_up_question: "תודה על המשוב. נשמח לדעת למה.",
like_follow_up_question: "תודה!",
feedback_free_text_disclaimer:
"אין לשתף פרטים מזהים או מידע רגיש",
feedback_character_limit: "מקסימום",
new_question_button: "שאלה חדשה",
new_question_filed: "שאלה חדשה",
question_disclaimer: "אין לשתף פרטים מזהים או מידע רגיש",
question_field: "מה רצית לדעת",
ranking_request: "האם התשובה עזרה לך?",
returning_links_title: "כדאי לבדוק את התשובה גם כאן:",
tc_link: "תנאי שימוש",
welcome_message_first: "aa",
welcome_message_second: "bb",
welcome_message_third: "cc",
questions_daily_limit: "הגעת למספר השאלות המותרות ליום",
general_error: "שגיאה כללית",
new_question_hint:
"הצ׳אט לא זוכר את השאלה שלך. תוכל לשאול שוב?",
},
restPath: "/rest.php",
};
</script>
</head>
<body>
<div id="kzchatbot" class="kzchatbot"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>