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.
44 lines
3.5 KiB
44 lines
3.5 KiB
import { addBanner, addArticle, addTitle, addHeader, addParagraph, addSubHeader } from '/scripts/article.js'; |
|
import { addInset, addInsetList, addInsetCodeListing, addInsetBulletList } from '/scripts/inset.js'; |
|
import { addImageWithCaption, addButtonGroup } from '/scripts/visuals.js'; |
|
import { addSidebar} from '/scripts/sidebar.js' |
|
import { addSyntax } from '/scripts/code.js'; |
|
import { addVocab } from '/scripts/japanese.js'; |
|
import { menu } from '/scripts/web_dev_buttons.js'; |
|
import { global_menu, local_menu } from '/scripts/grid_layout1.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("Japanese Language")); |
|
heading.append(addParagraph("Philip Osztromok")); |
|
|
|
main.append(addHeader("WEEK 3 - 27th March 2024")) |
|
main.append(addImageWithCaption("./images/Lesson3_A.png", "Phrases - do you speak ...?")) |
|
main.append(addVocab("Anoo, nihongo, dekimasu ka?", "Hi there, do you speak Japanese?")) |
|
main.append(addSubHeader("Some notes on this.")) |
|
main.append(addParagraph("1. Anoo - this is a word used to indicate that you want to speak to someone so it is similar to saying hi there or excuse me in English.")) |
|
main.append(addParagraph("2. go - go means language so you have nihon which means Japan and so nihongo means Japan language or Japanese.")) |
|
main.append(addParagraph("3. Nihongogo dekimasu ka - literally means do you do so do you do Japanese. In Japanese, there is no equivalent to speak as used in this context.")) |
|
main.append(addVocab("Anoo, nihongo wakarimasu ka?", "Excuse me, do you understand Japanese?")) |
|
main.append(addVocab("Hai, dekimasu.", "Yes I do.")) |
|
main.append(addVocab("Hai, sukoshi dekimasu.", "Yes I speak a little Japanese.")) |
|
main.append(addVocab("Hai, wakarimasu.", "Yes I do.")) |
|
main.append(addVocab("Hai, sukoshi wakarimasu.", "Yes I understand a little.")) |
|
main.append(addVocab("Hai, sukoshi.", "Yes, a little.")) |
|
main.append(addVocab("Sumimasen. Dekimasen.", "I'm sorry, I don't.")) |
|
main.append(addVocab("Sumimasen. Wakarimasen.", "I'm sorry, I don't understand [Japanese].")) |
|
main.append(addSubHeader("Some other languages.")) |
|
main.append(addInsetBulletList(["英語 - Eigo - English.", "ハンガリー語 - Hangari-go - Hungarian.", "中国語 - Chugoku-go - Chinese.", "韓国語 - Kankoku-go - Korean.", "インドネシア語 - Indoneshia-go - Indonesian.", "タイ語 - Tai-go - Thai.", "フランス語 - Furansu-go - French.", "猫語 - Neko-go - Cat language."])) |
|
main.append(addParagraph("Remember that go is the Japanese word for language so if you add go to the name of the country, you get the language and you can also remove go from the name of the language in order to get the name of the country in most cases. However, the Japanese word for England is")) |
|
main.append(addInset("イングランド - Ingurando")) |
|
main.append(addParagraph("I assume that if you put go at the end of Ingurando, a Japanese person would understand that you mean the language of England. However, note:")) |
|
main.append(addInset("イギリス英語 - Igirisu eigo - British English.")) |
|
main.append(addParagraph("Possibly a similar thing would apply for Scottish, but technically this is not a language. For info:")) |
|
main.append(addInset("スコットランド - Sukottorando - Scotland.")) |
|
|
|
addSidebar("japanese"); |
|
|
|
|