You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

72 lines
3.9 KiB

import { addBanner, addArticle, addHeader, addParagraph, addClassParagraph, addSubHeader, addSmallHeader, addOrderedList, addUnorderedList, addBlockquote, addInset, addInsetList, addInsetCodeListing, addInsetBulletList, addImageWithCaption, addButtonGroup, addSidebar, addSyntax, menu, global_menu } from '/scripts/import.js';
import { addTitle, addLessonHeader, addLessonLink, homework_menu, udemy_menu } from '/scripts/hungarian.js';
const heading = document.querySelector(".heading");
const global = document.querySelector(".global_menu");
const local = document.querySelector(".local_menu");
const sidebar = document.querySelector(".sidebar");
const main = document.querySelector(".main_content");
heading.append(addTitle("Complete Hungarian Course"));
heading.append(addParagraph("Philip Osztromok"));
global.append(global_menu());
local.append(udemy_menu());
main.append(addHeader("Section 1"));
main.append(addSubHeader("Greetings - köszöések"));
main.append(addParagraph("Good morning"));
main.append(addInset("Jó reggelt"));
main.append(addParagraph("Good afternoon"));
main.append(addInset("Jó napot"));
main.append(addParagraph("Good evening"));
main.append(addInset("Jó estét"));
main.append(addParagraph("Good night"));
main.append(addInset("Jó éjszakát"));
main.append(addParagraph("We can make all of these more formal by adding kívánok."));
main.append(addParagraph("Good morning"));
main.append(addInset("Jó reggelt kívánok"));
main.append(addParagraph("Good afternoon"));
main.append(addInset("Jó napot kívánok"));
main.append(addParagraph("Good evening"));
main.append(addInset("Jó estét kívánok"));
main.append(addParagraph("Good night"));
main.append(addInset("Jó éjszakát kívánok"));
main.append(addParagraph("Notice that these greetings are all dependent on the time of day. A more generic greeting that doesn't depend on the time of day is"));
main.append(addParagraph("Hello (one person)"));
main.append(addInset("Szervusz"));
main.append(addParagraph("Hello (more than one person)"));
main.append(addInset("Szervusztok"));
main.append(addParagraph("These are aslo quite formal and the less formal versions are"));
main.append(addInset("Szia"));
main.append(addParagraph("Hello (more than one person)"));
main.append(addInset("Sziasztok"));
main.append(addParagraph("A formal greeting that you might use with an elderly person is"));
main.append(addInset("Csókolom"));
main.append(addParagraph("This literally means I kniss you and is a quite formal greeting. A slightly archaic version of this, but one that is considered quite endearing is"));
main.append(addInset("Kezét csókolom"));
main.append(addParagraph("which literally translates to I kiss your hand."));
main.append(addParagraph("If you want to say goodbye, the formal way to say that is"));
main.append(addInset("Viszlát"));
main.append(addParagraph("This is the shortened version of "));
main.append(addInset("Viszontlátásra"));
main.append(addSubHeader("Manners - Udvariasság"));
main.append(addParagraph("How to ask for things politely."))
main.append(addClassParagraph("I would like a beer"));
main.append(addInset("Szeretnék egy sört"));
main.append(addParagraph("or"));
main.append(addInset("Kérek egy sört"));
main.append(addParagraph("Szeretnék or kérek means I would like. The second word, egy, is one and sört is the accusative form of sör which is the word for beer. That is, it is the direct object of the verb or in other words, it is the thing that you would like!"));
main.append(addInset("Elnézést"));
main.append(addParagraph("Excuse me"));
main.append(addParagraph("In Hungarian, this is kind of like a shortcut to making a sentence sound polite, it usually goes at the start of a sentence as it does in English so we could have, for example, added it to the start of our request for a beer."));
addSidebar("hungarian");