From 80649d187dfb3de621785c545f55cb58540cfead Mon Sep 17 00:00:00 2001 From: Dan Hess Date: Mon, 12 Apr 2021 14:52:05 -0800 Subject: [PATCH] Add a flash card like quiz for JLPT quizes --- cogs/japanese.py | 45 +- utils/__init__.py | 1 + utils/flash_card.py | 98 ++ utils/japanese_vocabulary_n2.json | 398 +++++ utils/japanese_vocabulary_n3.json | 770 +++++++++ utils/japanese_vocabulary_n4.json | 2286 +++++++++++++++++++++++++ utils/japanese_vocabulary_n5.json | 2574 +++++++++++++++++++++++++++++ utils/utilities.py | 6 + 8 files changed, 6177 insertions(+), 1 deletion(-) create mode 100644 utils/flash_card.py create mode 100644 utils/japanese_vocabulary_n2.json create mode 100644 utils/japanese_vocabulary_n3.json create mode 100644 utils/japanese_vocabulary_n4.json create mode 100644 utils/japanese_vocabulary_n5.json diff --git a/cogs/japanese.py b/cogs/japanese.py index f194391..206d775 100644 --- a/cogs/japanese.py +++ b/cogs/japanese.py @@ -1,6 +1,14 @@ import json from discord.ext import commands -from utils import conjugator, checks, request, Pages, CannotPaginate +from utils import ( + conjugator, + checks, + request, + Pages, + CannotPaginate, + chunks, + FlashCardDisplay, +) class Japanese(commands.Cog): @@ -8,6 +16,7 @@ class Japanese(commands.Cog): def __init__(self): + # Load the verbs with open("utils/japanese_verbs.json") as f: verbs = json.load(f) @@ -21,6 +30,20 @@ class Japanese(commands.Cog): self.verbs = verbs + # Load the JLPT vocab + with open("utils/japanese_vocabulary_n2.json") as f: + n2 = json.load(f) + self.n2_packs = list(chunks(n2, 50)) + with open("utils/japanese_vocabulary_n3.json") as f: + n3 = json.load(f) + self.n3_packs = list(chunks(n3, 50)) + with open("utils/japanese_vocabulary_n4.json") as f: + n4 = json.load(f) + self.n4_packs = list(chunks(n4, 50)) + with open("utils/japanese_vocabulary_n5.json") as f: + n5 = json.load(f) + self.n5_packs = list(chunks(n5, 50)) + @commands.command(aliases=["活用", "かつよう", "katsuyou"]) @checks.can_run(send_messages=True) async def conjugate(self, ctx, verb): @@ -109,6 +132,26 @@ query ($name: String) { except CannotPaginate as e: await ctx.send(str(e)) + @commands.command() + @commands.max_concurrency(1, per=commands.BucketType.channel) + @checks.can_run(send_messages=True) + async def jlpt(self, ctx, level=None, pack: int = None): + """ + Runs a "flash card" pack for the JLPT level specified. This has N2-N5 available + and there are 50 cards per pack, per level. + + EXAMPLE: !jlpt n5 1 + RESULT: Starts a flash card game of 50 cards from the JLPT n5 vocab list + """ + if level not in ("n2", "n3", "n4", "n5"): + return await ctx.send("JLPT level options are n2, n3, n4, or n5") + packs = getattr(self, f"n{level}_packs") + if pack > len(packs) or pack < 1: + return await ctx.send(f"The JLPT n{level} has {len(packs)} available") + + pack = packs[pack - 1] + await FlashCardDisplay(pack).start(ctx, wait=True) + def setup(bot): bot.add_cog(Japanese()) diff --git a/utils/__init__.py b/utils/__init__.py index 3055ffc..62bd991 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -4,3 +4,4 @@ from .config import * from .utilities import * from .paginator import Pages, CannotPaginate, HelpPaginator from .database import DB, Cache +from .flash_card import FlashCardDisplay \ No newline at end of file diff --git a/utils/flash_card.py b/utils/flash_card.py new file mode 100644 index 0000000..d4416cf --- /dev/null +++ b/utils/flash_card.py @@ -0,0 +1,98 @@ +import discord +from discord.ext import menus + + +class FlashCard: + def __init__(self, vocab, sentence, answer): + self.vocab = vocab + self.sentence = sentence + self.answer = answer + + def show_question(self): + return discord.Embed( + description=f""" + **Vocabulary**: {self.vocab} + """ + ) + + def show_hint(self): + return discord.Embed( + description=f""" + **Vocabulary**: {self.vocab} + **Example sentence**: {self.sentence} + """ + ) + + def show_answer(self): + return discord.Embed( + description=f""" + **Vocabulary**: {self.vocab} + """ # **Example sentence**: {self.sentence} + """ + **Answer**: {self.answer} + """ + ) + + +class FlashCardDisplay(menus.Menu): + def __init__(self, pack): + super().__init__(clear_reactions_after=True) + self.pack = pack + self.count = 0 + self.current_card = pack[self.count] + self.amount_of_cards = len(pack) + self.showing_answer = False + + async def send_initial_message(self, ctx, channel): + await ctx.send( + "Instructions: You'll be shown a vocabulary word. " + "If you know/don't know the answer hit ▶️. The answer will then " + "be shown, and you can choose 🔴 if you didn't know the answer or 🟢 if you did." + ) + embed = self.modify_embed(self.current_card.show_question()) + return await self.ctx.send(embed=embed) + + def next_card(self): + try: + self.count += 1 + self.current_card = self.pack[self.count] + return self.modify_embed(self.current_card.show_question()) + except IndexError: + # Probably show results + self.stop() + + def modify_embed(self, embed): + embed = embed.set_footer(text=f"{self.count + 1}/{self.amount_of_cards}") + embed = embed.set_author( + name=self.ctx.author, icon_url=self.ctx.author.avatar_url + ) + return embed + + # @menus.button("❔") + # async def do_hint(self, payload): + # embed = self.modify_embed(self.current_card.show_hint()) + # return await self.message.edit(embed=embed) + + @menus.button("▶️") + async def do_flip(self, payload): + self.showing_answer = True + embed = self.modify_embed(self.current_card.show_answer()) + return await self.message.edit(embed=embed) + + @menus.button("🔴") + async def do_failure(self, payload): + if not self.showing_answer: + return + # Save that they got it wrong + self.showing_answer = False + embed = self.next_card() + return await self.message.edit(embed=embed) + + @menus.button("🟢") + async def do_correct(self, payload): + if not self.showing_answer: + return + # Save that they got it right + self.showing_answer = False + embed = self.next_card() + return await self.message.edit(embed=embed) diff --git a/utils/japanese_vocabulary_n2.json b/utils/japanese_vocabulary_n2.json new file mode 100644 index 0000000..c9e67ae --- /dev/null +++ b/utils/japanese_vocabulary_n2.json @@ -0,0 +1,398 @@ +[ + { + "vocabulary": " 明け方", + "meaning": "dawn" + }, + { + "vocabulary": " 青白い", + "meaning": "pale; bluish-white" + }, + { + "vocabulary": " 足跡", + "meaning": "footprints" + }, + { + "vocabulary": " 売買", + "meaning": "trade; buying and selling" + }, + { + "vocabulary": " 売店", + "meaning": "stand; stall; booth; kiosk; store" + }, + { + "vocabulary": " 募集", + "meaning": "recruitment; invitation; taking applications; solicitation" + }, + { + "vocabulary": " 長男", + "meaning": "eldest son; first-born son" + }, + { + "vocabulary": " 楕円", + "meaning": "ellipse" + }, + { + "vocabulary": " 大学院", + "meaning": "graduate school" + }, + { + "vocabulary": " 出入口", + "meaning": "exit and entrance" + }, + { + "vocabulary": " 宴会", + "meaning": "party; banquet; reception; feast; dinner" + }, + { + "vocabulary": " 円周", + "meaning": "circumference" + }, + { + "vocabulary": " 遠足", + "meaning": "excursion; outing; trip" + }, + { + "vocabulary": " 学科", + "meaning": "study subject; course of study​; department" + }, + { + "vocabulary": " 学会", + "meaning": "scientific society; academic meeting; academic conference" + }, + { + "vocabulary": " 学力", + "meaning": "scholarly ability; scholarship; knowledge; literary ability" + }, + { + "vocabulary": " 外科", + "meaning": "surgery; department of surgery" + }, + { + "vocabulary": " 花火", + "meaning": "fireworks" + }, + { + "vocabulary": " 半径", + "meaning": "radius" + }, + { + "vocabulary": " 半島", + "meaning": "peninsula" + }, + { + "vocabulary": " 発売", + "meaning": "sale; release (for sale); launch (product)" + }, + { + "vocabulary": " 早口", + "meaning": "fast-talking; rapid talking" + }, + { + "vocabulary": " 外れる", + "meaning": "to be disconnected; to be off; to miss the mark" + }, + { + "vocabulary": " 閉会", + "meaning": "closure (of a ceremony, event, meeting, etc.)" + }, + { + "vocabulary": " 昼寝", + "meaning": "nap, siesta" + }, + { + "vocabulary": " 意地悪", + "meaning": "malicious; ill-tempered; unkind" + }, + { + "vocabulary": " 移転", + "meaning": "moving; relocation; change of address" + }, + { + "vocabulary": " 一旦", + "meaning": "once; for a short time; briefly; temporarily" + }, + { + "vocabulary": " 寺院", + "meaning": "Buddhist temple; religious building" + }, + { + "vocabulary": " 人文科学", + "meaning": "humanities; social sciences; liberal arts" + }, + { + "vocabulary": " 自習", + "meaning": "self-study; teaching oneself" + }, + { + "vocabulary": " 時速", + "meaning": "speed (per hour)" + }, + { + "vocabulary": " 実習", + "meaning": "practice; training; practical exercise; drill" + }, + { + "vocabulary": " 過半数", + "meaning": "majority" + }, + { + "vocabulary": " 開会", + "meaning": "opening of a meeting; starting (an event, etc)" + }, + { + "vocabulary": " 会館", + "meaning": "meeting hall; assembly hall" + }, + { + "vocabulary": " 回転", + "meaning": "rotation; revolution; turning" + }, + { + "vocabulary": " 加速", + "meaning": "acceleration; speeding up" + }, + { + "vocabulary": " 加速度", + "meaning": "acceleration" + }, + { + "vocabulary": " 見学", + "meaning": "study by observation; field trip; tour; review; inspection" + }, + { + "vocabulary": " 国王", + "meaning": "king; queen; monarch; sovereign" + }, + { + "vocabulary": " 国立", + "meaning": "national" + }, + { + "vocabulary": " 国籍", + "meaning": "nationality; citizenship" + }, + { + "vocabulary": " 転がる", + "meaning": "to roll; to fall over; to lie down" + }, + { + "vocabulary": " 転がす", + "meaning": "to roll; to turn over" + }, + { + "vocabulary": " 校舎", + "meaning": "school building; schoolhouse" + }, + { + "vocabulary": " 校庭", + "meaning": "schoolyard; playground; school grounds; campus" + }, + { + "vocabulary": " 待合室", + "meaning": "waiting room" + }, + { + "vocabulary": " 待ち合わせる", + "meaning": "to rendezvous; to meet at a prearranged place and time; to arrange to meet" + }, + { + "vocabulary": " 窓口", + "meaning": " ticket window; teller window; counter" + }, + { + "vocabulary": " 毎度", + "meaning": "each time; always; often; thank you for your continued patronage​" + }, + { + "vocabulary": " 真っ青", + "meaning": "deep blue; bright blue​; ghastly pale; white as a sheet" + }, + { + "vocabulary": " 真っ白", + "meaning": "pure white; blank" + }, + { + "vocabulary": " 名刺", + "meaning": "business card" + }, + { + "vocabulary": " 店屋", + "meaning": "store; shop" + }, + { + "vocabulary": " 木材", + "meaning": "lumber; timber; wood" + }, + { + "vocabulary": " 元々", + "meaning": "originally, by nature, from the start" + }, + { + "vocabulary": " 内科", + "meaning": "internal medicine" + }, + { + "vocabulary": " 並木", + "meaning": "roadside tree; row of trees" + }, + { + "vocabulary": " 入社", + "meaning": "joining a company" + }, + { + "vocabulary": " 押さえる", + "meaning": "to pin down; to hold down; to press down" + }, + { + "vocabulary": " 理科", + "meaning": "science (department; course)" + }, + { + "vocabulary": " 領収", + "meaning": "receipt (of money); receiving" + }, + { + "vocabulary": " 再三", + "meaning": "again and again; repeatedly" + }, + { + "vocabulary": " 刺さる", + "meaning": "to stick into (with a sharp point); to prick; to get stuck (in);" + }, + { + "vocabulary": " 刺身", + "meaning": "sashimi (raw sliced fish, shellfish or crustaceans)" + }, + { + "vocabulary": " 早速", + "meaning": "at once; immediately; without delay; promptly" + }, + { + "vocabulary": " 刺す", + "meaning": "to pierce; to stab; to prick; to stick; to thrust; to sting" + }, + { + "vocabulary": " 青少年", + "meaning": "youth; young person" + }, + { + "vocabulary": " 赤道", + "meaning": "equator" + }, + { + "vocabulary": " 社会科学", + "meaning": "social science" + }, + { + "vocabulary": " 社説", + "meaning": "editorial; leading article; leader" + }, + { + "vocabulary": " 司会", + "meaning": "master of ceremonies; leading a meeting; presenter; host" + }, + { + "vocabulary": " 新幹線", + "meaning": "Japanese bullet train" + }, + { + "vocabulary": " 白髪", + "meaning": "white hair; grey hair" + }, + { + "vocabulary": " 自然科学", + "meaning": "natural science" + }, + { + "vocabulary": " 書店", + "meaning": "bookshop; bookstore" + }, + { + "vocabulary": " 商社", + "meaning": "trading company; firm" + }, + { + "vocabulary": " 商店", + "meaning": "shop; small store; business; firm" + }, + { + "vocabulary": " 集合", + "meaning": "gathering; assembly; meeting" + }, + { + "vocabulary": " 習字", + "meaning": "calligraphy; penmanship" + }, + { + "vocabulary": " 集会", + "meaning": "meeting; assembly; gathering; convention; rally" + }, + { + "vocabulary": " 父母", + "meaning": "father and mother; parents" + }, + { + "vocabulary": " 速力", + "meaning": "speed" + }, + { + "vocabulary": " 速達", + "meaning": "express; special delivery" + }, + { + "vocabulary": " 足袋", + "meaning": "Japanese socks (with split toe)" + }, + { + "vocabulary": " 足る", + "meaning": "to be sufficient; to be enough​; to be worth doing; to be worthy of; to deserve​" + }, + { + "vocabulary": " 特売", + "meaning": "special sale" + }, + { + "vocabulary": " 透明", + "meaning": "transparent; clear" + }, + { + "vocabulary": " 東洋", + "meaning": "Orient" + }, + { + "vocabulary": " 売れ行き", + "meaning": "sales; demand" + }, + { + "vocabulary": " 売上", + "meaning": "amount sold; sales; proceeds; turnover" + }, + { + "vocabulary": " 売り切れ", + "meaning": "sold out" + }, + { + "vocabulary": " 売り切れる", + "meaning": "to be sold out" + }, + { + "vocabulary": " 我が", + "meaning": "my; our; one's own" + }, + { + "vocabulary": " 洋品店", + "meaning": "shop that handles Western-style apparel and accessories" + }, + { + "vocabulary": " 輸血", + "meaning": "blood transfusion" + }, + { + "vocabulary": " 輸送", + "meaning": "transport; transportation" + }, + { + "vocabulary": " 材木", + "meaning": "lumber; timber" + } +] \ No newline at end of file diff --git a/utils/japanese_vocabulary_n3.json b/utils/japanese_vocabulary_n3.json new file mode 100644 index 0000000..738d222 --- /dev/null +++ b/utils/japanese_vocabulary_n3.json @@ -0,0 +1,770 @@ +[ + { + "vocabulary": " 明かり", + "meaning": "light; illumination; glow; gleam" + }, + { + "vocabulary": " 明ける", + "meaning": "to dawn,to become daylight" + }, + { + "vocabulary": " 明らか", + "meaning": "clear; obvious" + }, + { + "vocabulary": " 悪魔", + "meaning": "devil; demon; fiend; Satan" + }, + { + "vocabulary": " 暗記", + "meaning": "memorization; learning by heart" + }, + { + "vocabulary": " 新た", + "meaning": "new; fresh; novel" + }, + { + "vocabulary": " 有らゆる", + "meaning": "all; every​" + }, + { + "vocabulary": " 集まり", + "meaning": "gathering; meeting; assembly; collection; attendance" + }, + { + "vocabulary": " 部分", + "meaning": "portion; section; part" + }, + { + "vocabulary": " 分", + "meaning": "part; segment; share; ration" + }, + { + "vocabulary": " 文明", + "meaning": "civilization; culture" + }, + { + "vocabulary": " 分析", + "meaning": "analysis" + }, + { + "vocabulary": " 分野", + "meaning": "field; sphere; realm; division; branch" + }, + { + "vocabulary": " 父親", + "meaning": "father" + }, + { + "vocabulary": " 地平線", + "meaning": "horizon (related to land)​" + }, + { + "vocabulary": " 地位", + "meaning": "(social) position; status" + }, + { + "vocabulary": " 長期", + "meaning": "long-term" + }, + { + "vocabulary": " 中", + "meaning": "during; while; medium; middle" + }, + { + "vocabulary": " 中学", + "meaning": "junior high school; middle school" + }, + { + "vocabulary": " 昼食", + "meaning": "lunch; midday meal" + }, + { + "vocabulary": " 大部分", + "meaning": "most part; greater part; majority" + }, + { + "vocabulary": " 駄目 ", + "meaning": "no good; cannot" + }, + { + "vocabulary": " 男子", + "meaning": "youth; young man" + }, + { + "vocabulary": " 出会い", + "meaning": "meeting; rendezvous; encounter" + }, + { + "vocabulary": " 出会う", + "meaning": "to meet (by chance); to come across; to run across; to encounter" + }, + { + "vocabulary": " 読書", + "meaning": "reading" + }, + { + "vocabulary": " 努力", + "meaning": "effort; exertion; endeavor; hard work; striving" + }, + { + "vocabulary": " 同一", + "meaning": "identical; same; one and the same; equal" + }, + { + "vocabulary": " 円", + "meaning": "yen; Japanese monetary unit; circle" + }, + { + "vocabulary": " 不利", + "meaning": "disadvantage; handicap; unfavorable position" + }, + { + "vocabulary": " 不足", + "meaning": "insufficiency; shortage; deficiency; lack; dearth" + }, + { + "vocabulary": " 再び", + "meaning": "again; once more; a second time" + }, + { + "vocabulary": " 外交", + "meaning": "diplomacy" + }, + { + "vocabulary": " 外出", + "meaning": "going out; outing; leaving (one's home, office, etc.)" + }, + { + "vocabulary": " 学期", + "meaning": "school term; semester" + }, + { + "vocabulary": " 学", + "meaning": "learning; education; study of" + }, + { + "vocabulary": " 学問", + "meaning": "scholarship; study; learning" + }, + { + "vocabulary": " 学者", + "meaning": "scholar" + }, + { + "vocabulary": " 学習", + "meaning": "study; learning; tutorial" + }, + { + "vocabulary": " 議長", + "meaning": "chairman; president; moderator" + }, + { + "vocabulary": " 議会", + "meaning": "congress; parliament; diet; legislative assembly" + }, + { + "vocabulary": " 語学", + "meaning": "study of foreign languages; linguistics" + }, + { + "vocabulary": " 激しい", + "meaning": "violent; extreme; intense" + }, + { + "vocabulary": " 母親", + "meaning": "mother" + }, + { + "vocabulary": " 博物館", + "meaning": "museum" + }, + { + "vocabulary": " 販売", + "meaning": "sales; selling; marketing" + }, + { + "vocabulary": " 発明", + "meaning": "invention" + }, + { + "vocabulary": " 外す", + "meaning": "to remove; to undo; to drop; to miss" + }, + { + "vocabulary": " 品", + "meaning": "elegance, article" + }, + { + "vocabulary": " 一言", + "meaning": "single word; a few words; brief comment" + }, + { + "vocabulary": " 一人一人", + "meaning": "one by one; each; one at a time" + }, + { + "vocabulary": " 本物", + "meaning": "genuine article; real thing; real deal​" + }, + { + "vocabulary": " 本人", + "meaning": "the person in question; the person themselves; said person" + }, + { + "vocabulary": " 一致", + "meaning": "agreement; union; match​; coincidence" + }, + { + "vocabulary": " 一時", + "meaning": "one o'clock" + }, + { + "vocabulary": " 意外", + "meaning": "unexpected; surprising" + }, + { + "vocabulary": " 一家", + "meaning": "a family; a household; a home; one's family; whole family" + }, + { + "vocabulary": " 今に", + "meaning": "before long; even now" + }, + { + "vocabulary": " 今にも", + "meaning": "at any moment; at any minute; on the verge of" + }, + { + "vocabulary": " 一般", + "meaning": "general; universal; ordinary; average; common" + }, + { + "vocabulary": " 一方", + "meaning": "one (esp. of two); one way; the other direction; although" + }, + { + "vocabulary": " 一生", + "meaning": "whole life; a lifetime; a generation" + }, + { + "vocabulary": " 一種", + "meaning": "species; kind; variety" + }, + { + "vocabulary": " 一瞬", + "meaning": "instant; moment; for an instant" + }, + { + "vocabulary": " 一層", + "meaning": "much more; still more; all the more; single layer; sooner; preferably​" + }, + { + "vocabulary": " 一体", + "meaning": "(what) the heck; (why) in the world" + }, + { + "vocabulary": " 所謂", + "meaning": "what is called; as it is called; the so-called; so to speak​" + }, + { + "vocabulary": " 邪魔", + "meaning": "hindrance" + }, + { + "vocabulary": " 化学", + "meaning": "chemistry" + }, + { + "vocabulary": " 会", + "meaning": "meeting; assembly; party; association; club" + }, + { + "vocabulary": " 会員", + "meaning": "member" + }, + { + "vocabulary": " 海外", + "meaning": "foreign; abroad; overseas" + }, + { + "vocabulary": " 会合", + "meaning": "meeting; assembly; gathering; association" + }, + { + "vocabulary": " 会計", + "meaning": "finance; account; treasurer; bill" + }, + { + "vocabulary": " 開始", + "meaning": "start; commencement; beginning; initiation​" + }, + { + "vocabulary": " 科目", + "meaning": "(school) subject; curriculum; course" + }, + { + "vocabulary": " 権利", + "meaning": "right; privilege" + }, + { + "vocabulary": " 基本", + "meaning": "basics; fundamentals; basis; foundation" + }, + { + "vocabulary": " 記事", + "meaning": "article; news story; report; account" + }, + { + "vocabulary": " 気味", + "meaning": "sensation; feeling​; tendency" + }, + { + "vocabulary": " 記念", + "meaning": "commemoration; celebration; honoring the memory of something" + }, + { + "vocabulary": " 気に入る", + "meaning": "to like; to take a liking to" + }, + { + "vocabulary": " 記入", + "meaning": "entry; filling in; filling out" + }, + { + "vocabulary": " 記憶", + "meaning": "memory; recollection; remembrance" + }, + { + "vocabulary": " 記者", + "meaning": "reporter; journalist" + }, + { + "vocabulary": " 期待", + "meaning": "expectation; anticipation; hope" + }, + { + "vocabulary": " 国家", + "meaning": "state; country; nation" + }, + { + "vocabulary": " 国会", + "meaning": "National Diet; legislative assembly of Japan; parliament; congress" + }, + { + "vocabulary": " 国境", + "meaning": "national border" + }, + { + "vocabulary": " 国語", + "meaning": "national language" + }, + { + "vocabulary": " 国民", + "meaning": "people (of a country); nation; citizen; national" + }, + { + "vocabulary": " 今後", + "meaning": "from now on; hereafter" + }, + { + "vocabulary": " 今回", + "meaning": "now; this time; lately" + }, + { + "vocabulary": " 今日", + "meaning": "today; this day" + }, + { + "vocabulary": " 転ぶ", + "meaning": "to fall down; to fall over" + }, + { + "vocabulary": " 高速", + "meaning": "high-speed; rapid; express" + }, + { + "vocabulary": " 訓練", + "meaning": "training; drill; practice; discipline" + }, + { + "vocabulary": " 教科書", + "meaning": "textbook; coursebook; schoolbook" + }, + { + "vocabulary": " 協力", + "meaning": "cooperation; collaboration" + }, + { + "vocabulary": " 強力", + "meaning": "powerful; strong" + }, + { + "vocabulary": " 急激", + "meaning": "sudden; abrupt; rapid; sharp; drastic; radical" + }, + { + "vocabulary": " 急に", + "meaning": "swiftly; rapidly; quickly; immediately; hastily" + }, + { + "vocabulary": " 吸収", + "meaning": "absorption; suction; attraction" + }, + { + "vocabulary": " 急速", + "meaning": "rapid (e.g. progress)" + }, + { + "vocabulary": " 真面目 ", + "meaning": "serious; earnest" + }, + { + "vocabulary": " 真っ赤", + "meaning": "bright red; deep red; flushed (of face)" + }, + { + "vocabulary": " 学ぶ", + "meaning": "to study (in depth); to learn; to take lessons in" + }, + { + "vocabulary": " 万一", + "meaning": "emergency; unlikely event​; by some chance; by some possibility" + }, + { + "vocabulary": " 満足", + "meaning": "satisfaction; contentment;​ sufficient; enough" + }, + { + "vocabulary": " 明確", + "meaning": "clear; precise; definite; distinct" + }, + { + "vocabulary": " 飯", + "meaning": "cooked rice; meal" + }, + { + "vocabulary": " 味方", + "meaning": "friend; ally; supporter; taking sides with; supporting" + }, + { + "vocabulary": " 魅力", + "meaning": "charm; fascination; glamour; attraction; appeal" + }, + { + "vocabulary": " 木曜", + "meaning": "Thursday" + }, + { + "vocabulary": " 半ば", + "meaning": "middle; half; semi; halfway; partly" + }, + { + "vocabulary": " 熱心", + "meaning": "enthusiastic; eager" + }, + { + "vocabulary": " 日本", + "meaning": "Japan" + }, + { + "vocabulary": " 能力", + "meaning": "ability; faculty" + }, + { + "vocabulary": " 入場", + "meaning": "entrance; admission; entering" + }, + { + "vocabulary": " お昼", + "meaning": "lunch; midday; daytime" + }, + { + "vocabulary": " 収める", + "meaning": "to supply; to dedicate; to make an offering; to pay" + }, + { + "vocabulary": " 連続", + "meaning": "continuation; succession; series" + }, + { + "vocabulary": " 利益", + "meaning": "profit; gains; benefit" + }, + { + "vocabulary": " 利口", + "meaning": "clever; intelligent; wise; bright; sharp" + }, + { + "vocabulary": " 留学", + "meaning": "studying abroad" + }, + { + "vocabulary": " 作品", + "meaning": "work of art; performance" + }, + { + "vocabulary": " 左右", + "meaning": "left and right" + }, + { + "vocabulary": " 成長", + "meaning": "growth; development; growing up; becoming an adult" + }, + { + "vocabulary": " 製品", + "meaning": "manufactured goods; finished goods; product" + }, + { + "vocabulary": " 青年", + "meaning": "youth; young man" + }, + { + "vocabulary": " 刺激", + "meaning": "stimulus; impetus; incentive; encouragement; motivation; provocation; excitement; thrill" + }, + { + "vocabulary": " 資本", + "meaning": "funds; capital" + }, + { + "vocabulary": " 品", + "meaning": "article; item; thing; goods; stock; quality" + }, + { + "vocabulary": " 身長", + "meaning": "body height; stature" + }, + { + "vocabulary": " 進学", + "meaning": "entering a higher-level school (often university)" + }, + { + "vocabulary": " 新鮮", + "meaning": "fresh" + }, + { + "vocabulary": " 支店", + "meaning": "branch office; branch store​" + }, + { + "vocabulary": " 使用", + "meaning": "use; application; employment; utilization." + }, + { + "vocabulary": " 食品", + "meaning": "food; food products" + }, + { + "vocabulary": " 書物", + "meaning": "book; volume" + }, + { + "vocabulary": " 書類", + "meaning": "document; official papers" + }, + { + "vocabulary": " 書斎", + "meaning": "study; library; den; home office; reading room" + }, + { + "vocabulary": " 商売", + "meaning": "trade; business; commerce; transaction; occupation" + }, + { + "vocabulary": " 奨学金", + "meaning": "scholarship; stipend; student loan" + }, + { + "vocabulary": " 正午", + "meaning": "midday" + }, + { + "vocabulary": " 商品", + "meaning": "commodity; article of commerce; goods; stock; merchandise" + }, + { + "vocabulary": " 少女", + "meaning": "little girl; maiden; young lady" + }, + { + "vocabulary": " 証明", + "meaning": "proof; verification; certification" + }, + { + "vocabulary": " 少年", + "meaning": "boy; juvenile; young boy; youth; lad" + }, + { + "vocabulary": " 少々", + "meaning": "just a minute; small quantity" + }, + { + "vocabulary": " 招待", + "meaning": "invitation" + }, + { + "vocabulary": " 週", + "meaning": "week" + }, + { + "vocabulary": " 集中", + "meaning": "concentration; focusing; centralization; integration" + }, + { + "vocabulary": " 集団", + "meaning": "group; mass" + }, + { + "vocabulary": " 収穫", + "meaning": "harvest; crop; fruits (of one's labors)" + }, + { + "vocabulary": " 週間", + "meaning": "week" + }, + { + "vocabulary": " 週刊", + "meaning": "weekly publication" + }, + { + "vocabulary": " 収入", + "meaning": "income; receipts; revenue; salary" + }, + { + "vocabulary": " 速度", + "meaning": "speed; velocity; pace; rate" + }, + { + "vocabulary": " 少しも", + "meaning": "anything of; not one bit (with negative sentence)" + }, + { + "vocabulary": " 大半", + "meaning": "majority; more than half; most; largely; mainly" + }, + { + "vocabulary": " 大会", + "meaning": "convention; rally; conference; tournament;" + }, + { + "vocabulary": " 大した", + "meaning": "considerable; great; important; significant; a big deal" + }, + { + "vocabulary": " 単なる", + "meaning": "mere; simple; sheer" + }, + { + "vocabulary": " 多少", + "meaning": "more or less; somewhat; a little; a few; some" + }, + { + "vocabulary": " 手品", + "meaning": "magic trick; illusion" + }, + { + "vocabulary": " 哲学", + "meaning": "philosophy" + }, + { + "vocabulary": " 徹夜", + "meaning": "staying up all night" + }, + { + "vocabulary": " 土地", + "meaning": "plot of land; lot; soil" + }, + { + "vocabulary": " 都会", + "meaning": "(big) city" + }, + { + "vocabulary": " 取れる", + "meaning": "to come off; to be removed; to be obtainable" + }, + { + "vocabulary": " 取り上げる", + "meaning": "to pick up" + }, + { + "vocabulary": " 図書", + "meaning": "books" + }, + { + "vocabulary": " 通学", + "meaning": "commuting to school; school commute" + }, + { + "vocabulary": " 受け取る", + "meaning": "to receive; to understand" + }, + { + "vocabulary": " 上手い", + "meaning": "skillful; delicious" + }, + { + "vocabulary": " 運転", + "meaning": "operation; driving" + }, + { + "vocabulary": " 売れる", + "meaning": "to sell (well)" + }, + { + "vocabulary": " 分ける", + "meaning": "to divide; to split; to part; to separate" + }, + { + "vocabulary": " 悪口", + "meaning": "slander; bad-mouthing; abuse; insult; speaking ill (of)" + }, + { + "vocabulary": " 夜明け", + "meaning": "dawn; daybreak" + }, + { + "vocabulary": " 余分", + "meaning": "extra; excess; surplus" + }, + { + "vocabulary": " 読み", + "meaning": "reading (of a kanji, situation, etc)" + }, + { + "vocabulary": " 夜中", + "meaning": "middle of the night; dead of night" + }, + { + "vocabulary": " 宜しい", + "meaning": "(respectful) OK; all right" + }, + { + "vocabulary": " 唯一", + "meaning": "only; sole; unique" + }, + { + "vocabulary": " 輸入", + "meaning": "import; importation; introduction" + }, + { + "vocabulary": " 輸出", + "meaning": "export; exportation​" + }, + { + "vocabulary": " 夕べ", + "meaning": "evening / last night; yesterday evening" + }, + { + "vocabulary": " 有利", + "meaning": "advantageous; favorable; profitable" + }, + { + "vocabulary": " 全国", + "meaning": "the whole country" + }, + { + "vocabulary": " 随分", + "meaning": "very; extremely; surprisingly; considerably; awfully" + } +] \ No newline at end of file diff --git a/utils/japanese_vocabulary_n4.json b/utils/japanese_vocabulary_n4.json new file mode 100644 index 0000000..b53809d --- /dev/null +++ b/utils/japanese_vocabulary_n4.json @@ -0,0 +1,2286 @@ +[ + { + "vocabulary": " あ", + "meaning": "Ah; oh" + }, + { + "vocabulary": " ああ", + "meaning": "ah; yes" + }, + { + "vocabulary": " アフリカ", + "meaning": "Africa" + }, + { + "vocabulary": " 上がる ", + "meaning": "to rise" + }, + { + "vocabulary": " 挨拶", + "meaning": "to greet" + }, + { + "vocabulary": " 味", + "meaning": "flavor; taste​; uniqueness; attractiveness; experience" + }, + { + "vocabulary": " アジア", + "meaning": "Asia" + }, + { + "vocabulary": " 赤ちゃん", + "meaning": "baby; infant" + }, + { + "vocabulary": " 赤ん坊", + "meaning": "baby; infant" + }, + { + "vocabulary": " アクセサリー ", + "meaning": "accessory" + }, + { + "vocabulary": " アメリカ ", + "meaning": "America" + }, + { + "vocabulary": " アナウンサー", + "meaning": "announcer" + }, + { + "vocabulary": " あんな ", + "meaning": "such" + }, + { + "vocabulary": " 案内 ", + "meaning": "to guide" + }, + { + "vocabulary": " 安心", + "meaning": "peace of mind" + }, + { + "vocabulary": " 安全 ", + "meaning": "safety; security​" + }, + { + "vocabulary": " アルバイト", + "meaning": "part-time job" + }, + { + "vocabulary": " アルコール", + "meaning": "alcohol" + }, + { + "vocabulary": " 浅い ", + "meaning": "shallow" + }, + { + "vocabulary": " 遊び", + "meaning": "playing" + }, + { + "vocabulary": " 集まる", + "meaning": "to gather; to collect; to assemble" + }, + { + "vocabulary": " 集める", + "meaning": "to collect; to assemble; to gather" + }, + { + "vocabulary": " 謝る", + "meaning": "to apologize" + }, + { + "vocabulary": " 倍", + "meaning": "double" + }, + { + "vocabulary": " 番組 ", + "meaning": "program (e.g. TV)" + }, + { + "vocabulary": " 場所 ", + "meaning": "place" + }, + { + "vocabulary": " ベル", + "meaning": "bell" + }, + { + "vocabulary": " 美術館", + "meaning": "art gallery; art museum" + }, + { + "vocabulary": " びっくり", + "meaning": "to be surprised" + }, + { + "vocabulary": " ビル", + "meaning": "building" + }, + { + "vocabulary": " 僕 ", + "meaning": "I (used by males)" + }, + { + "vocabulary": " 貿易", + "meaning": "trade" + }, + { + "vocabulary": " 部長", + "meaning": "manager; head (chief, director) of a section or department" + }, + { + "vocabulary": " ぶどう", + "meaning": "grapes" + }, + { + "vocabulary": " 文学", + "meaning": "literature" + }, + { + "vocabulary": " 文化", + "meaning": "culture" + }, + { + "vocabulary": " 文法", + "meaning": "grammar" + }, + { + "vocabulary": " ちゃん ", + "meaning": "suffix for familiar female person" + }, + { + "vocabulary": " チェック", + "meaning": "to check" + }, + { + "vocabulary": " 血", + "meaning": "blood" + }, + { + "vocabulary": " 力", + "meaning": "energy; force; strength; might; power" + }, + { + "vocabulary": " 地理", + "meaning": "geography" + }, + { + "vocabulary": " 中学校", + "meaning": "junior high school; middle school" + }, + { + "vocabulary": " 注意 ", + "meaning": "caution" + }, + { + "vocabulary": " 注射 ", + "meaning": "injection" + }, + { + "vocabulary": " 駐車場 ", + "meaning": "parking lot" + }, + { + "vocabulary": " 大分", + "meaning": "considerably; greatly; a lot​" + }, + { + "vocabulary": " 大学生", + "meaning": "university student; college student" + }, + { + "vocabulary": " 大事 ", + "meaning": "important; serious; crucial" + }, + { + "vocabulary": " 大体", + "meaning": "roughly" + }, + { + "vocabulary": " 暖房 ", + "meaning": "heating" + }, + { + "vocabulary": " 男性", + "meaning": "man; male" + }, + { + "vocabulary": " できるだけ ", + "meaning": "as much as possible" + }, + { + "vocabulary": " 電報 ", + "meaning": "telegram" + }, + { + "vocabulary": " 電灯", + "meaning": "electric light" + }, + { + "vocabulary": " どんどん ", + "meaning": "rapidly; more and more" + }, + { + "vocabulary": " 泥棒", + "meaning": "thief" + }, + { + "vocabulary": " 動物園", + "meaning": "zoo; zoological gardens" + }, + { + "vocabulary": " 道具 ", + "meaning": "tool" + }, + { + "vocabulary": " 枝", + "meaning": "branch" + }, + { + "vocabulary": " 遠慮", + "meaning": "reserve; refraining" + }, + { + "vocabulary": " 選ぶ", + "meaning": "to choose" + }, + { + "vocabulary": " エスカレーター", + "meaning": "escalator" + }, + { + "vocabulary": " ファックス", + "meaning": "fax" + }, + { + "vocabulary": " 不便", + "meaning": "inconvenience" + }, + { + "vocabulary": " 増える ", + "meaning": "to increase" + }, + { + "vocabulary": " 深い", + "meaning": "deep" + }, + { + "vocabulary": " 復習", + "meaning": "review (of learned material); revision" + }, + { + "vocabulary": " 複雑", + "meaning": "complexity; complication" + }, + { + "vocabulary": " 踏む", + "meaning": "to step on" + }, + { + "vocabulary": " 舟", + "meaning": "ship" + }, + { + "vocabulary": " 降り出す ", + "meaning": "to start to rain" + }, + { + "vocabulary": " 布団 ", + "meaning": "Japanese bedding, futon" + }, + { + "vocabulary": " 太る", + "meaning": "to become fat" + }, + { + "vocabulary": " 普通 ", + "meaning": "usually" + }, + { + "vocabulary": " ガラス ", + "meaning": "a glass" + }, + { + "vocabulary": " ガソリン", + "meaning": "gasoline; petrol" + }, + { + "vocabulary": " ガソリンスタンド", + "meaning": "petrol station" + }, + { + "vocabulary": " ガス", + "meaning": "petrol" + }, + { + "vocabulary": " 原因", + "meaning": "cause" + }, + { + "vocabulary": " 下宿 ", + "meaning": "lodging" + }, + { + "vocabulary": " 技術", + "meaning": "art,technology,skill" + }, + { + "vocabulary": " ごちそう", + "meaning": "a feast" + }, + { + "vocabulary": " ごみ ", + "meaning": "rubbish" + }, + { + "vocabulary": " ご覧になる", + "meaning": "(respectful) to see" + }, + { + "vocabulary": " ご主人", + "meaning": "your husband; her husband" + }, + { + "vocabulary": " ご存じ", + "meaning": "knowing" + }, + { + "vocabulary": " 具合", + "meaning": "condition; health" + }, + { + "vocabulary": " 葉", + "meaning": "leaves; leaf" + }, + { + "vocabulary": " 拝見 ", + "meaning": "seeing; looking at​" + }, + { + "vocabulary": " 歯医者 ", + "meaning": "dentist" + }, + { + "vocabulary": " はっきり", + "meaning": "clearly" + }, + { + "vocabulary": " 運ぶ ", + "meaning": "to carry" + }, + { + "vocabulary": " 花見", + "meaning": "cherry blossom viewing; flower viewing" + }, + { + "vocabulary": " ハンドバッグ", + "meaning": "handbag" + }, + { + "vocabulary": " 反対", + "meaning": "opposition" + }, + { + "vocabulary": " 払う", + "meaning": "to pay" + }, + { + "vocabulary": " 発音 ", + "meaning": "pronunciation" + }, + { + "vocabulary": " 林 ", + "meaning": "woods; forest" + }, + { + "vocabulary": " 恥ずかしい", + "meaning": "embarrassed" + }, + { + "vocabulary": " 変", + "meaning": "strange; peculiar; weird" + }, + { + "vocabulary": " 返事 ", + "meaning": "reply; answer; response" + }, + { + "vocabulary": " 火", + "meaning": "fire" + }, + { + "vocabulary": " 酷い ", + "meaning": "terrible; awful​" + }, + { + "vocabulary": " 冷える ", + "meaning": "to grow cold" + }, + { + "vocabulary": " 髭", + "meaning": "beard" + }, + { + "vocabulary": " 非常に", + "meaning": "extremely" + }, + { + "vocabulary": " 光", + "meaning": "light" + }, + { + "vocabulary": " 光る", + "meaning": "to shine" + }, + { + "vocabulary": " 引き出し", + "meaning": "drawer" + }, + { + "vocabulary": " 引き出す", + "meaning": "to withdraw" + }, + { + "vocabulary": " 引っ越す", + "meaning": "to move house" + }, + { + "vocabulary": " 飛行場", + "meaning": "airfield; airport" + }, + { + "vocabulary": " 開く", + "meaning": "to open; to undo; to unseal; to unpack" + }, + { + "vocabulary": " 拾う", + "meaning": "to pick up" + }, + { + "vocabulary": " 昼間", + "meaning": "daytime; during the day" + }, + { + "vocabulary": " 昼休み", + "meaning": "lunch break; noon recess; noon rest period" + }, + { + "vocabulary": " 久しぶり ", + "meaning": "after a long time" + }, + { + "vocabulary": " 褒める", + "meaning": "to praise" + }, + { + "vocabulary": " 翻訳", + "meaning": "translation" + }, + { + "vocabulary": " 星 ", + "meaning": "star" + }, + { + "vocabulary": " ほとんど", + "meaning": "mostly" + }, + { + "vocabulary": " 法律", + "meaning": "law" + }, + { + "vocabulary": " 放送", + "meaning": "to broadcast" + }, + { + "vocabulary": " 一度", + "meaning": "once; one time; on one occasion" + }, + { + "vocabulary": " 以外", + "meaning": "with the exception of; excepting" + }, + { + "vocabulary": " 医学", + "meaning": "medical science; medicine" + }, + { + "vocabulary": " いじめる ", + "meaning": "to tease" + }, + { + "vocabulary": " 以上", + "meaning": "... and more; ... and upwards​" + }, + { + "vocabulary": " 以下", + "meaning": "not exceeding" + }, + { + "vocabulary": " 意見", + "meaning": "opinion; view; comment" + }, + { + "vocabulary": " 生き物", + "meaning": "living thing" + }, + { + "vocabulary": " 生きる", + "meaning": "to live" + }, + { + "vocabulary": " 以内 ", + "meaning": "within" + }, + { + "vocabulary": " 田舎", + "meaning": "countryside" + }, + { + "vocabulary": " 祈る", + "meaning": "to pray" + }, + { + "vocabulary": " いっぱい", + "meaning": "full" + }, + { + "vocabulary": " 色んな", + "meaning": "various" + }, + { + "vocabulary": " 石", + "meaning": "stone" + }, + { + "vocabulary": " 急ぐ", + "meaning": "to hurry; to rush; to hasten; to make something happen sooner" + }, + { + "vocabulary": " 一生懸命", + "meaning": "very hard; with utmost effort" + }, + { + "vocabulary": " 頂く ", + "meaning": "(humble) to receive" + }, + { + "vocabulary": " 致す", + "meaning": "(humble) to do" + }, + { + "vocabulary": " 糸", + "meaning": "thread" + }, + { + "vocabulary": " ジャム ", + "meaning": "jam" + }, + { + "vocabulary": " 字", + "meaning": "character" + }, + { + "vocabulary": " 時代 ", + "meaning": "period" + }, + { + "vocabulary": " 事故 ", + "meaning": "accident" + }, + { + "vocabulary": " 事務所 ", + "meaning": "office" + }, + { + "vocabulary": " 神社", + "meaning": "Shinto shrine" + }, + { + "vocabulary": " 人口", + "meaning": "population" + }, + { + "vocabulary": " 人生", + "meaning": "human life" + }, + { + "vocabulary": " 地震", + "meaning": "earthquake" + }, + { + "vocabulary": " 辞典", + "meaning": "dictionary" + }, + { + "vocabulary": " 自由", + "meaning": "freedom" + }, + { + "vocabulary": " 女性 ", + "meaning": "woman; female" + }, + { + "vocabulary": " 準備 ", + "meaning": "to prepare" + }, + { + "vocabulary": " 十分", + "meaning": "enough; sufficient; plenty; adequate; satisfactory" + }, + { + "vocabulary": " 柔道 ", + "meaning": "judo" + }, + { + "vocabulary": " 住所 ", + "meaning": "address" + }, + { + "vocabulary": " カーテン", + "meaning": "curtain" + }, + { + "vocabulary": " 壁", + "meaning": "wall" + }, + { + "vocabulary": " 課長", + "meaning": "section manager; section chief" + }, + { + "vocabulary": " 帰り", + "meaning": "return; coming back" + }, + { + "vocabulary": " 変える", + "meaning": "to change; to transform" + }, + { + "vocabulary": " 科学", + "meaning": "science" + }, + { + "vocabulary": " 鏡", + "meaning": "mirror" + }, + { + "vocabulary": " 海岸", + "meaning": "coast" + }, + { + "vocabulary": " 会議", + "meaning": "meeting; conference; session; assembly" + }, + { + "vocabulary": " 会議室", + "meaning": "conference room; conference hall; council room" + }, + { + "vocabulary": " 会場", + "meaning": "assembly hall; meeting place; venue; grounds" + }, + { + "vocabulary": " 会話", + "meaning": "conversation" + }, + { + "vocabulary": " 火事 ", + "meaning": "fire" + }, + { + "vocabulary": " 格好 ", + "meaning": "appearance" + }, + { + "vocabulary": " 構う", + "meaning": "to mind" + }, + { + "vocabulary": " 髪", + "meaning": "hair" + }, + { + "vocabulary": " 噛む", + "meaning": "to bite,to chew" + }, + { + "vocabulary": " 家内", + "meaning": "(my) wife; inside the home; one's family" + }, + { + "vocabulary": " 必ず", + "meaning": "always; certainly" + }, + { + "vocabulary": " 悲しい", + "meaning": "sad" + }, + { + "vocabulary": " 考える ", + "meaning": "to think" + }, + { + "vocabulary": " 看護婦 ", + "meaning": "female nurse" + }, + { + "vocabulary": " 関係 ", + "meaning": "relationship" + }, + { + "vocabulary": " 彼女 ", + "meaning": "she; her​" + }, + { + "vocabulary": " 簡単", + "meaning": "simple; easy" + }, + { + "vocabulary": " 彼 ", + "meaning": "he; him​; his" + }, + { + "vocabulary": " 彼ら ", + "meaning": "they; them" + }, + { + "vocabulary": " 形 ", + "meaning": "shape" + }, + { + "vocabulary": " 片付ける", + "meaning": "to tidy up" + }, + { + "vocabulary": " 硬い", + "meaning": "hard" + }, + { + "vocabulary": " 勝つ ", + "meaning": "to win" + }, + { + "vocabulary": " 乾く", + "meaning": "to get dry" + }, + { + "vocabulary": " 代わり ", + "meaning": "instead; in place" + }, + { + "vocabulary": " 変わる ", + "meaning": "to change" + }, + { + "vocabulary": " 通う", + "meaning": "to commute" + }, + { + "vocabulary": " 飾る ", + "meaning": "to decorate" + }, + { + "vocabulary": " 毛", + "meaning": "hair or fur" + }, + { + "vocabulary": " ケーキ ", + "meaning": "cake" + }, + { + "vocabulary": " 怪我", + "meaning": "to injure" + }, + { + "vocabulary": " 計画", + "meaning": "to plan" + }, + { + "vocabulary": " 経験", + "meaning": "to experience" + }, + { + "vocabulary": " 警察", + "meaning": "police" + }, + { + "vocabulary": " 経済 ", + "meaning": "finance, economy" + }, + { + "vocabulary": " 見物", + "meaning": "sightseeing; visit" + }, + { + "vocabulary": " 喧嘩", + "meaning": "to quarrel" + }, + { + "vocabulary": " 研究 ", + "meaning": "research" + }, + { + "vocabulary": " 研究室 ", + "meaning": "laboratory" + }, + { + "vocabulary": " 消しゴム ", + "meaning": "eraser" + }, + { + "vocabulary": " 景色 ", + "meaning": "scenery" + }, + { + "vocabulary": " 気", + "meaning": "spirit" + }, + { + "vocabulary": " 厳しい", + "meaning": "strict" + }, + { + "vocabulary": " 気分", + "meaning": "feeling; mood" + }, + { + "vocabulary": " 機会", + "meaning": "chance; opportunity" + }, + { + "vocabulary": " 危険", + "meaning": "danger" + }, + { + "vocabulary": " 聞こえる", + "meaning": "to be heard; to be audible; to be said" + }, + { + "vocabulary": " 決まる", + "meaning": "to be decided" + }, + { + "vocabulary": " 決める ", + "meaning": "to decide" + }, + { + "vocabulary": " 君", + "meaning": "You" + }, + { + "vocabulary": " 気持ち", + "meaning": "feeling" + }, + { + "vocabulary": " 着物", + "meaning": "kimono; Japanese traditional clothing" + }, + { + "vocabulary": " 近所", + "meaning": "neighbourhood" + }, + { + "vocabulary": " 絹", + "meaning": "silk" + }, + { + "vocabulary": " 季節 ", + "meaning": "season" + }, + { + "vocabulary": " 汽車", + "meaning": "train" + }, + { + "vocabulary": " 規則", + "meaning": "rule" + }, + { + "vocabulary": " 子", + "meaning": "child" + }, + { + "vocabulary": " 心", + "meaning": "heart" + }, + { + "vocabulary": " 国際", + "meaning": "international" + }, + { + "vocabulary": " 細かい", + "meaning": "small, fine" + }, + { + "vocabulary": " 米 ", + "meaning": "(husked grains of) rice" + }, + { + "vocabulary": " 込む ", + "meaning": "to be crowded" + }, + { + "vocabulary": " 今度", + "meaning": "this time; next time" + }, + { + "vocabulary": " この間 ", + "meaning": "the other day; recently" + }, + { + "vocabulary": " このごろ ", + "meaning": "these days; nowadays" + }, + { + "vocabulary": " コンピュータ", + "meaning": "computer" + }, + { + "vocabulary": " コンサート", + "meaning": "concert" + }, + { + "vocabulary": " 今夜", + "meaning": " this evening; tonigh" + }, + { + "vocabulary": " これから ", + "meaning": "after this" + }, + { + "vocabulary": " 故障", + "meaning": "to break-down" + }, + { + "vocabulary": " 答え ", + "meaning": "response" + }, + { + "vocabulary": " 小鳥", + "meaning": "small bird" + }, + { + "vocabulary": " こう ", + "meaning": "this way" + }, + { + "vocabulary": " 校長", + "meaning": "principal; headmaster" + }, + { + "vocabulary": " 講堂 ", + "meaning": "auditorium" + }, + { + "vocabulary": " 郊外", + "meaning": "suburb; residential area on the outskirt of a city" + }, + { + "vocabulary": " 講義", + "meaning": "lecture" + }, + { + "vocabulary": " 工業", + "meaning": "industry" + }, + { + "vocabulary": " 工場 ", + "meaning": "factory" + }, + { + "vocabulary": " 高校", + "meaning": "senior high school; high school​" + }, + { + "vocabulary": " 高校生", + "meaning": "high school student" + }, + { + "vocabulary": " 公務員", + "meaning": "government worker" + }, + { + "vocabulary": " 高等学校", + "meaning": "high school" + }, + { + "vocabulary": " 交通 ", + "meaning": "traffic" + }, + { + "vocabulary": " 怖い", + "meaning": "frightening" + }, + { + "vocabulary": " 壊れる", + "meaning": "to be broken" + }, + { + "vocabulary": " 壊す", + "meaning": "to break" + }, + { + "vocabulary": " 首", + "meaning": "neck" + }, + { + "vocabulary": " 下さる", + "meaning": "(respectful) to give" + }, + { + "vocabulary": " 雲 ", + "meaning": "cloud" + }, + { + "vocabulary": " 君", + "meaning": "suffix for familiar young male" + }, + { + "vocabulary": " 比べる", + "meaning": "to compare" + }, + { + "vocabulary": " 暮れる ", + "meaning": "to get dark" + }, + { + "vocabulary": " 草", + "meaning": "grass" + }, + { + "vocabulary": " 空気 ", + "meaning": "air" + }, + { + "vocabulary": " 空港 ", + "meaning": "airport" + }, + { + "vocabulary": " 客", + "meaning": "guest; customer" + }, + { + "vocabulary": " 教育", + "meaning": "education" + }, + { + "vocabulary": " 教会", + "meaning": "church; congregation; Christian church" + }, + { + "vocabulary": " 興味", + "meaning": "interest (in something); curiosity (about something); zest (for)" + }, + { + "vocabulary": " 競争", + "meaning": "competition" + }, + { + "vocabulary": " 急", + "meaning": "sudden; abrupt; unexpected" + }, + { + "vocabulary": " 急行", + "meaning": "hurrying (to somewhere); rushing; hastening" + }, + { + "vocabulary": " 間違える", + "meaning": "to make a mistake (in)" + }, + { + "vocabulary": " 参る ", + "meaning": "(humble) to go; to come" + }, + { + "vocabulary": " 負ける", + "meaning": "to lose" + }, + { + "vocabulary": " 漫画", + "meaning": "comic" + }, + { + "vocabulary": " 間に合う", + "meaning": "to be in time (for)" + }, + { + "vocabulary": " 真ん中", + "meaning": "middle; centre; center" + }, + { + "vocabulary": " 周り", + "meaning": "around" + }, + { + "vocabulary": " 回る", + "meaning": "to go around" + }, + { + "vocabulary": " まず", + "meaning": "first of all" + }, + { + "vocabulary": " 召し上がる", + "meaning": "to eat; to drink​" + }, + { + "vocabulary": " 珍しい", + "meaning": "unusual; rare" + }, + { + "vocabulary": " 見える", + "meaning": "to be seen; to be in sight; to look; to seem" + }, + { + "vocabulary": " 港 ", + "meaning": "harbour" + }, + { + "vocabulary": " 味噌", + "meaning": "fermented condiment made from soybeans" + }, + { + "vocabulary": " 見つかる", + "meaning": "to be found; to be discovered" + }, + { + "vocabulary": " 見つける", + "meaning": "to discover; to find; to come across; to detect; to spot" + }, + { + "vocabulary": " 都 ", + "meaning": "capital" + }, + { + "vocabulary": " 湖 ", + "meaning": "lake" + }, + { + "vocabulary": " 戻る", + "meaning": "to turn back" + }, + { + "vocabulary": " 木綿", + "meaning": "cotton (material)" + }, + { + "vocabulary": " 森", + "meaning": "forest" + }, + { + "vocabulary": " もし", + "meaning": "if; in case; supposing" + }, + { + "vocabulary": " 申し上げる", + "meaning": "to say; to offer" + }, + { + "vocabulary": " 申す ", + "meaning": "to be called; to say" + }, + { + "vocabulary": " もうすぐ ", + "meaning": "soon" + }, + { + "vocabulary": " 迎える", + "meaning": "to go out to meet" + }, + { + "vocabulary": " 昔", + "meaning": "olden days, former" + }, + { + "vocabulary": " 向かう ", + "meaning": "to head towards" + }, + { + "vocabulary": " 無理 ", + "meaning": "impossible" + }, + { + "vocabulary": " 虫", + "meaning": "insect" + }, + { + "vocabulary": " 息子", + "meaning": "son" + }, + { + "vocabulary": " 娘", + "meaning": "daughter" + }, + { + "vocabulary": " 投げる", + "meaning": "to throw or cast away" + }, + { + "vocabulary": " 泣く", + "meaning": "to weep" + }, + { + "vocabulary": " 無くなる ", + "meaning": "to disappear; to get lost" + }, + { + "vocabulary": " 亡くなる", + "meaning": "to die" + }, + { + "vocabulary": " 生 ", + "meaning": "raw" + }, + { + "vocabulary": " 直る ", + "meaning": "to be fixed,to be repaired" + }, + { + "vocabulary": " 治る ", + "meaning": "to be cured; to heal" + }, + { + "vocabulary": " 慣れる", + "meaning": "to get used to" + }, + { + "vocabulary": " 鳴る", + "meaning": "to sound" + }, + { + "vocabulary": " なるほど", + "meaning": "now I understand" + }, + { + "vocabulary": " 寝坊", + "meaning": "sleeping in late; oversleeping" + }, + { + "vocabulary": " 値段", + "meaning": "price; cost" + }, + { + "vocabulary": " 眠い", + "meaning": "sleepy" + }, + { + "vocabulary": " 眠る", + "meaning": "to sleep" + }, + { + "vocabulary": " 熱", + "meaning": "fever" + }, + { + "vocabulary": " 苦い", + "meaning": "bitter" + }, + { + "vocabulary": " 逃げる", + "meaning": "to escape" + }, + { + "vocabulary": " 二階建て ", + "meaning": "two-storied building" + }, + { + "vocabulary": " 人形", + "meaning": "doll" + }, + { + "vocabulary": " 匂い ", + "meaning": "a smell" + }, + { + "vocabulary": " 似る ", + "meaning": "to be similar" + }, + { + "vocabulary": " 喉", + "meaning": "throat" + }, + { + "vocabulary": " 残る ", + "meaning": "to remain" + }, + { + "vocabulary": " 乗り換える", + "meaning": "to change between buses or trains" + }, + { + "vocabulary": " 乗り物 ", + "meaning": "vehicle" + }, + { + "vocabulary": " 濡れる ", + "meaning": "to get wet" + }, + { + "vocabulary": " 塗る", + "meaning": "to paint; to plaster" + }, + { + "vocabulary": " 盗む", + "meaning": "to steal" + }, + { + "vocabulary": " 入学", + "meaning": "entry to school or university; enrollment" + }, + { + "vocabulary": " 入院", + "meaning": "hospitalization" + }, + { + "vocabulary": " 落ちる", + "meaning": "to fall or drop" + }, + { + "vocabulary": " 踊り ", + "meaning": "a dance" + }, + { + "vocabulary": " 驚く", + "meaning": "to be surprised" + }, + { + "vocabulary": " 踊る", + "meaning": "to dance" + }, + { + "vocabulary": " お出でになる", + "meaning": "(respectful) to be" + }, + { + "vocabulary": " お祝い ", + "meaning": "congratulation" + }, + { + "vocabulary": " お嬢さん", + "meaning": "(another's) daughter" + }, + { + "vocabulary": " 可笑しい ", + "meaning": "strange or funny" + }, + { + "vocabulary": " 行う", + "meaning": "to do" + }, + { + "vocabulary": " 怒る", + "meaning": "to be angry" + }, + { + "vocabulary": " 起こす", + "meaning": "to wake" + }, + { + "vocabulary": " 億", + "meaning": "one hundred million" + }, + { + "vocabulary": " 屋上", + "meaning": "rooftop​" + }, + { + "vocabulary": " 遅れる", + "meaning": "to be late" + }, + { + "vocabulary": " 贈り物 ", + "meaning": "present; gift" + }, + { + "vocabulary": " 送る", + "meaning": "to send" + }, + { + "vocabulary": " お祭り", + "meaning": "festival" + }, + { + "vocabulary": " お見舞い", + "meaning": "visiting ill or distressed people" + }, + { + "vocabulary": " お土産", + "meaning": "souvenir" + }, + { + "vocabulary": " おもちゃ", + "meaning": "toy" + }, + { + "vocabulary": " 思い出す", + "meaning": "to remember" + }, + { + "vocabulary": " 表", + "meaning": "the front" + }, + { + "vocabulary": " オートバイ", + "meaning": "motorcycle" + }, + { + "vocabulary": " お礼 ", + "meaning": "thanks" + }, + { + "vocabulary": " 折れる", + "meaning": "to break or be folded" + }, + { + "vocabulary": " 下りる", + "meaning": "to get off" + }, + { + "vocabulary": " 折る", + "meaning": "to break or to fold" + }, + { + "vocabulary": " 押し入れ", + "meaning": "closet" + }, + { + "vocabulary": " 仰る", + "meaning": "(respectful) to say" + }, + { + "vocabulary": " お宅 ", + "meaning": "your home" + }, + { + "vocabulary": " 音", + "meaning": "sound; note" + }, + { + "vocabulary": " 落とす ", + "meaning": "to drop" + }, + { + "vocabulary": " お釣り", + "meaning": "change (for a purchase)​" + }, + { + "vocabulary": " 夫", + "meaning": "husband" + }, + { + "vocabulary": " 終わり", + "meaning": "the end" + }, + { + "vocabulary": " 親", + "meaning": "parents" + }, + { + "vocabulary": " 泳ぎ方", + "meaning": "way of swimming" + }, + { + "vocabulary": " パート ", + "meaning": "part; part time" + }, + { + "vocabulary": " パソコン", + "meaning": "personal computer" + }, + { + "vocabulary": " ピアノ", + "meaning": "piano" + }, + { + "vocabulary": " プレゼント", + "meaning": "present; gift" + }, + { + "vocabulary": " 冷房 ", + "meaning": "air conditioning" + }, + { + "vocabulary": " レジ", + "meaning": "cashier​" + }, + { + "vocabulary": " 歴史 ", + "meaning": "history" + }, + { + "vocabulary": " 連絡", + "meaning": "to contact; to get in touch​" + }, + { + "vocabulary": " レポート ", + "meaning": "report" + }, + { + "vocabulary": " 利用", + "meaning": "use; utilization; application" + }, + { + "vocabulary": " 理由", + "meaning": "reason" + }, + { + "vocabulary": " 留守 ", + "meaning": "absence" + }, + { + "vocabulary": " 旅館", + "meaning": "traditional inn; Japanese-style lodging" + }, + { + "vocabulary": " 両方", + "meaning": "both sides" + }, + { + "vocabulary": " 寂しい", + "meaning": "lonely" + }, + { + "vocabulary": " 下がる", + "meaning": "to get down" + }, + { + "vocabulary": " 探す", + "meaning": "to look for" + }, + { + "vocabulary": " 下げる", + "meaning": "to lower" + }, + { + "vocabulary": " 最後 ", + "meaning": "end; last" + }, + { + "vocabulary": " 最近 ", + "meaning": "recently" + }, + { + "vocabulary": " 最初 ", + "meaning": "beginning; first" + }, + { + "vocabulary": " 坂 ", + "meaning": "slope; hill" + }, + { + "vocabulary": " 盛ん", + "meaning": "popularity; prosperous" + }, + { + "vocabulary": " 昨夜", + "meaning": "last night" + }, + { + "vocabulary": " サンダル", + "meaning": "sandal" + }, + { + "vocabulary": " サンドイッチ", + "meaning": "sandwich" + }, + { + "vocabulary": " 産業", + "meaning": "industry" + }, + { + "vocabulary": " サラダ ", + "meaning": "salad" + }, + { + "vocabulary": " 再来月", + "meaning": "month after next" + }, + { + "vocabulary": " 再来週", + "meaning": "week after next" + }, + { + "vocabulary": " 差し上げる", + "meaning": "to give" + }, + { + "vocabulary": " 騒ぐ", + "meaning": "to make noise,to be excited" + }, + { + "vocabulary": " 触る", + "meaning": "to touch" + }, + { + "vocabulary": " 生物", + "meaning": "living thing" + }, + { + "vocabulary": " 政治", + "meaning": "politics" + }, + { + "vocabulary": " 生活 ", + "meaning": "to live" + }, + { + "vocabulary": " 生命", + "meaning": "life" + }, + { + "vocabulary": " 生産", + "meaning": "production" + }, + { + "vocabulary": " 西洋", + "meaning": "the west; Western countries" + }, + { + "vocabulary": " 世界 ", + "meaning": "the world" + }, + { + "vocabulary": " 席", + "meaning": "seat" + }, + { + "vocabulary": " 線", + "meaning": "line" + }, + { + "vocabulary": " 背中", + "meaning": "back (of body)" + }, + { + "vocabulary": " 先輩 ", + "meaning": "senior" + }, + { + "vocabulary": " 戦争", + "meaning": "war" + }, + { + "vocabulary": " 説明", + "meaning": "explanation" + }, + { + "vocabulary": " 社長", + "meaning": "company president; manager; director" + }, + { + "vocabulary": " 社会", + "meaning": "society; public; community; the world" + }, + { + "vocabulary": " 市", + "meaning": "city" + }, + { + "vocabulary": " 試合", + "meaning": "match,game" + }, + { + "vocabulary": " 叱る", + "meaning": "to scold" + }, + { + "vocabulary": " 仕方", + "meaning": "way; method" + }, + { + "vocabulary": " 試験 ", + "meaning": "examination" + }, + { + "vocabulary": " しっかり ", + "meaning": "firmly; steadily" + }, + { + "vocabulary": " 島", + "meaning": "island" + }, + { + "vocabulary": " 市民 ", + "meaning": "citizen" + }, + { + "vocabulary": " 品物", + "meaning": "goods; article; thing" + }, + { + "vocabulary": " 新聞社", + "meaning": "newspaper company" + }, + { + "vocabulary": " 親切 ", + "meaning": "kindness" + }, + { + "vocabulary": " 失敗 ", + "meaning": "failure" + }, + { + "vocabulary": " 調べる", + "meaning": "to investigate" + }, + { + "vocabulary": " 知らせる ", + "meaning": "to notify" + }, + { + "vocabulary": " 下着 ", + "meaning": "underwear" + }, + { + "vocabulary": " 食料品", + "meaning": "food; groceries" + }, + { + "vocabulary": " 小学校", + "meaning": "elementary school" + }, + { + "vocabulary": " 生じる", + "meaning": "to produce" + }, + { + "vocabulary": " 紹介 ", + "meaning": "introduction" + }, + { + "vocabulary": " 将来", + "meaning": "future" + }, + { + "vocabulary": " 小説", + "meaning": "novel" + }, + { + "vocabulary": " 趣味", + "meaning": "hobby; pastime; preference" + }, + { + "vocabulary": " 習慣", + "meaning": "habit; custom; cultural practice." + }, + { + "vocabulary": " 祖母", + "meaning": "grandmother" + }, + { + "vocabulary": " 育てる", + "meaning": "to rear,to bring up" + }, + { + "vocabulary": " 祖父", + "meaning": "grandfather" + }, + { + "vocabulary": " ソフト", + "meaning": "soft" + }, + { + "vocabulary": " そんな ", + "meaning": "that sort of" + }, + { + "vocabulary": " それで", + "meaning": "because of that" + }, + { + "vocabulary": " それほど", + "meaning": "to that extent" + }, + { + "vocabulary": " そろそろ", + "meaning": "gradually; soon" + }, + { + "vocabulary": " 卒業", + "meaning": "graduation" + }, + { + "vocabulary": " 相談 ", + "meaning": "to discuss" + }, + { + "vocabulary": " 素晴らしい", + "meaning": "wonderful" + }, + { + "vocabulary": " 滑る ", + "meaning": "to slide; to slip" + }, + { + "vocabulary": " 凄い", + "meaning": "terrific" + }, + { + "vocabulary": " 水道", + "meaning": "water supply" + }, + { + "vocabulary": " 水泳", + "meaning": "swimming" + }, + { + "vocabulary": " すっかり", + "meaning": "completely" + }, + { + "vocabulary": " 空く", + "meaning": "to be hungry" + }, + { + "vocabulary": " スクリーン ", + "meaning": "screen" + }, + { + "vocabulary": " 隅 ", + "meaning": "corner; nook" + }, + { + "vocabulary": " 済む", + "meaning": "to finish" + }, + { + "vocabulary": " 砂 ", + "meaning": "sand" + }, + { + "vocabulary": " すり ", + "meaning": "pickpocket" + }, + { + "vocabulary": " スーツケース", + "meaning": "suitcase" + }, + { + "vocabulary": " 進む", + "meaning": "to make progress" + }, + { + "vocabulary": " ステーキ ", + "meaning": "steak" + }, + { + "vocabulary": " ステレオ", + "meaning": "stereo" + }, + { + "vocabulary": " 捨てる", + "meaning": "to throw away" + }, + { + "vocabulary": " 数学", + "meaning": "mathematics; arithmetic" + }, + { + "vocabulary": " スーツ", + "meaning": "suit" + }, + { + "vocabulary": " 正しい ", + "meaning": "right; correct" + }, + { + "vocabulary": " 退院", + "meaning": "leaving hospital; discharge from hospital" + }, + { + "vocabulary": " 台風 ", + "meaning": "typhoon" + }, + { + "vocabulary": " タイプ ", + "meaning": "type,style" + }, + { + "vocabulary": " たいてい ", + "meaning": "usually" + }, + { + "vocabulary": " たまに ", + "meaning": "occasionally" + }, + { + "vocabulary": " 棚", + "meaning": "shelves" + }, + { + "vocabulary": " 誕生 ", + "meaning": "birth" + }, + { + "vocabulary": " 楽しみ", + "meaning": "looking forward to​" + }, + { + "vocabulary": " 倒れる ", + "meaning": " to fall (over, down)" + }, + { + "vocabulary": " 足りる", + "meaning": "to be sufficient; to be enough" + }, + { + "vocabulary": " 足す", + "meaning": "to add (numbers / something)" + }, + { + "vocabulary": " 畳", + "meaning": "Japanese straw mat" + }, + { + "vocabulary": " 建てる ", + "meaning": "to build" + }, + { + "vocabulary": " 訪ねる", + "meaning": "to visit" + }, + { + "vocabulary": " 尋ねる", + "meaning": "to ask" + }, + { + "vocabulary": " 手袋", + "meaning": "glove" + }, + { + "vocabulary": " 丁寧", + "meaning": "polite" + }, + { + "vocabulary": " テキスト ", + "meaning": "text; textbook" + }, + { + "vocabulary": " 適当", + "meaning": "suitable" + }, + { + "vocabulary": " 点", + "meaning": "point; dot" + }, + { + "vocabulary": " 店員", + "meaning": "employee (of a store); shop assistant; clerk" + }, + { + "vocabulary": " テニス", + "meaning": "tennis" + }, + { + "vocabulary": " 天気予報", + "meaning": "weather forecast" + }, + { + "vocabulary": " 展覧会", + "meaning": "exhibition" + }, + { + "vocabulary": " 寺", + "meaning": "temple" + }, + { + "vocabulary": " 手伝う ", + "meaning": "to help; to assist; to aid​" + }, + { + "vocabulary": " 途中", + "meaning": "on the way" + }, + { + "vocabulary": " 届ける", + "meaning": "to send​" + }, + { + "vocabulary": " 特急", + "meaning": "limited express (train, faster than an express)" + }, + { + "vocabulary": " 床屋", + "meaning": "barber" + }, + { + "vocabulary": " 特別", + "meaning": "special; particular; extraordinary; exceptional" + }, + { + "vocabulary": " 特に", + "meaning": "particularly; especially; in particular; expressly" + }, + { + "vocabulary": " 泊まる", + "meaning": "to stay at" + }, + { + "vocabulary": " 止める ", + "meaning": "to stop something" + }, + { + "vocabulary": " 遠く", + "meaning": "distant" + }, + { + "vocabulary": " 通る ", + "meaning": "to go through" + }, + { + "vocabulary": " 取り替える", + "meaning": "to exchange; to swap; to replace" + }, + { + "vocabulary": " 到頭", + "meaning": "finally, after all" + }, + { + "vocabulary": " 続ける ", + "meaning": "to continue; to keep up; to keep on" + }, + { + "vocabulary": " 続く", + "meaning": "to continue" + }, + { + "vocabulary": " 都合", + "meaning": "convenience" + }, + { + "vocabulary": " 捕まえる", + "meaning": "to catch" + }, + { + "vocabulary": " 漬ける", + "meaning": "to soak; to pickle" + }, + { + "vocabulary": " 月", + "meaning": "moon" + }, + { + "vocabulary": " 付く ", + "meaning": "to be attached" + }, + { + "vocabulary": " 妻", + "meaning": "(humble) wife" + }, + { + "vocabulary": " 連れる ", + "meaning": "to take (someone) with one" + }, + { + "vocabulary": " 釣る ", + "meaning": "to fish" + }, + { + "vocabulary": " 伝える", + "meaning": "to report; to tell" + }, + { + "vocabulary": " 包む", + "meaning": "to wrap" + }, + { + "vocabulary": " 腕", + "meaning": "arm" + }, + { + "vocabulary": " 植える", + "meaning": "to plant; to grow" + }, + { + "vocabulary": " 動く", + "meaning": "to move" + }, + { + "vocabulary": " 伺う ", + "meaning": "to visit" + }, + { + "vocabulary": " 受ける", + "meaning": "to take a lesson or test" + }, + { + "vocabulary": " 受付", + "meaning": "reception (desk); information desk​" + }, + { + "vocabulary": " 生まれ", + "meaning": "birth" + }, + { + "vocabulary": " 運転手", + "meaning": "driver; chauffeur" + }, + { + "vocabulary": " 裏", + "meaning": "reverse side" + }, + { + "vocabulary": " 嬉しい ", + "meaning": "happy" + }, + { + "vocabulary": " 売り場", + "meaning": "selling area" + }, + { + "vocabulary": " 嘘", + "meaning": "a lie" + }, + { + "vocabulary": " 打つ ", + "meaning": "to hit" + }, + { + "vocabulary": " 美しい", + "meaning": "beautiful" + }, + { + "vocabulary": " 移る ", + "meaning": "to move house or transfer" + }, + { + "vocabulary": " 写す", + "meaning": "to copy or photograph" + }, + { + "vocabulary": " ワープロ", + "meaning": "word processor" + }, + { + "vocabulary": " 別れる", + "meaning": "to separate" + }, + { + "vocabulary": " 沸かす", + "meaning": "to boil; to heat" + }, + { + "vocabulary": " 沸く", + "meaning": "to boil" + }, + { + "vocabulary": " 笑う", + "meaning": "to laugh; to smile" + }, + { + "vocabulary": " 割れる ", + "meaning": "to break" + }, + { + "vocabulary": " 割合", + "meaning": "rate; ratio" + }, + { + "vocabulary": " 忘れ物", + "meaning": "lost article" + }, + { + "vocabulary": " 焼ける", + "meaning": "to burn; to be roasted" + }, + { + "vocabulary": " 焼く ", + "meaning": "to bake; to grill" + }, + { + "vocabulary": " 役に立つ ", + "meaning": "to be helpful" + }, + { + "vocabulary": " 約束 ", + "meaning": "promise" + }, + { + "vocabulary": " 止む", + "meaning": "to stop" + }, + { + "vocabulary": " やっぱり ", + "meaning": "as I thought" + }, + { + "vocabulary": " 優しい ", + "meaning": "kind" + }, + { + "vocabulary": " 痩せる", + "meaning": "to become thin" + }, + { + "vocabulary": " 柔らかい ", + "meaning": "soft" + }, + { + "vocabulary": " 汚れる ", + "meaning": "to get dirty" + }, + { + "vocabulary": " 喜ぶ ", + "meaning": "to be delighted" + }, + { + "vocabulary": " 寄る ", + "meaning": "to visit; to drop by" + }, + { + "vocabulary": " 予習", + "meaning": "preparation for a lesson" + }, + { + "vocabulary": " 予定 ", + "meaning": "plan" + }, + { + "vocabulary": " 用", + "meaning": "business; task; errand; use; purpose" + }, + { + "vocabulary": " 用意", + "meaning": "preparation; arrangements; provision; getting ready" + }, + { + "vocabulary": " 用事", + "meaning": "tasks; things to do; errand; business (to take care of)" + }, + { + "vocabulary": " 予約", + "meaning": "reservation" + }, + { + "vocabulary": " 湯", + "meaning": "hot water" + }, + { + "vocabulary": " 指 ", + "meaning": "finger" + }, + { + "vocabulary": " 指輪 ", + "meaning": "finger ring" + }, + { + "vocabulary": " 夢", + "meaning": "dream" + }, + { + "vocabulary": " 揺れる", + "meaning": "to shake" + }, + { + "vocabulary": " 残念", + "meaning": "regrettable; unfortunate" + }, + { + "vocabulary": " 全然", + "meaning": "not entirely (used in a negative sentence)" + } +] \ No newline at end of file diff --git a/utils/japanese_vocabulary_n5.json b/utils/japanese_vocabulary_n5.json new file mode 100644 index 0000000..c971326 --- /dev/null +++ b/utils/japanese_vocabulary_n5.json @@ -0,0 +1,2574 @@ +[ + { + "vocabulary": " 浴びる", + "meaning": "to bathe, to shower" + }, + { + "vocabulary": " 危ない", + "meaning": "dangerous" + }, + { + "vocabulary": " あっち ", + "meaning": "over there" + }, + { + "vocabulary": " あちら", + "meaning": "there" + }, + { + "vocabulary": " 上げる", + "meaning": "to raise; to elevate" + }, + { + "vocabulary": " 赤", + "meaning": "red; crimson; scarlet​" + }, + { + "vocabulary": " 赤い", + "meaning": "red; crimson; scarlet​" + }, + { + "vocabulary": " 明るい", + "meaning": "bright; light" + }, + { + "vocabulary": " 開ける", + "meaning": "to open (a door, etc.); to unwrap (e.g. parcel, package); to unlock" + }, + { + "vocabulary": " 秋", + "meaning": "autumn; fall" + }, + { + "vocabulary": " 開く", + "meaning": "to open (e.g. doors, business, etc)" + }, + { + "vocabulary": " 甘い", + "meaning": "sweet; sweet-tasting; sugary; naive; indulgent" + }, + { + "vocabulary": " 飴", + "meaning": "candy" + }, + { + "vocabulary": " 雨", + "meaning": "rain" + }, + { + "vocabulary": " あなた", + "meaning": "you" + }, + { + "vocabulary": " 姉", + "meaning": "older sister; elder sister​" + }, + { + "vocabulary": " 兄", + "meaning": "elder brother; older brother​" + }, + { + "vocabulary": " あの", + "meaning": "that" + }, + { + "vocabulary": " 青", + "meaning": "blue; azure" + }, + { + "vocabulary": " 青い", + "meaning": "blue; azure" + }, + { + "vocabulary": " アパート", + "meaning": "apartment" + }, + { + "vocabulary": " 洗う", + "meaning": "to wash" + }, + { + "vocabulary": " あれ", + "meaning": "that" + }, + { + "vocabulary": " ある", + "meaning": "to be, to have" + }, + { + "vocabulary": " 歩く", + "meaning": "to walk" + }, + { + "vocabulary": " 朝", + "meaning": "morning" + }, + { + "vocabulary": " 朝ご飯", + "meaning": "breakfast" + }, + { + "vocabulary": " 明後日", + "meaning": "day after tomorrow" + }, + { + "vocabulary": " 足", + "meaning": "foot; leg; paw; arm" + }, + { + "vocabulary": " 明日", + "meaning": "tomorrow" + }, + { + "vocabulary": " 遊ぶ", + "meaning": "to play; to enjoy oneself" + }, + { + "vocabulary": " あそこ", + "meaning": "over there" + }, + { + "vocabulary": " 頭", + "meaning": "head" + }, + { + "vocabulary": " 新しい", + "meaning": "new; novel; fresh; recent; latest" + }, + { + "vocabulary": " 暖かい", + "meaning": "warm" + }, + { + "vocabulary": " 後", + "meaning": "behind; after; remainder; left; also" + }, + { + "vocabulary": " 厚い", + "meaning": "thick" + }, + { + "vocabulary": " 暑い", + "meaning": "hot; sultry" + }, + { + "vocabulary": " 熱い", + "meaning": "hot" + }, + { + "vocabulary": " 会う", + "meaning": "to meet; to encounter; to see" + }, + { + "vocabulary": " 晩ご飯", + "meaning": "dinner; evening meal" + }, + { + "vocabulary": " 番号", + "meaning": "number" + }, + { + "vocabulary": " バス", + "meaning": "bus" + }, + { + "vocabulary": " バター ", + "meaning": "butter​" + }, + { + "vocabulary": " ベッド", + "meaning": "bed" + }, + { + "vocabulary": " 勉強", + "meaning": "to study" + }, + { + "vocabulary": " 便利", + "meaning": "convenient; handy; useful" + }, + { + "vocabulary": " ボールペン", + "meaning": "ball-point pen" + }, + { + "vocabulary": " ボタン", + "meaning": "button" + }, + { + "vocabulary": " 帽子", + "meaning": "hat; cap" + }, + { + "vocabulary": " 文章", + "meaning": "sentence" + }, + { + "vocabulary": " 豚肉 ", + "meaning": "pork" + }, + { + "vocabulary": " 病院", + "meaning": "hospital" + }, + { + "vocabulary": " 病気", + "meaning": "illness; disease; sickness" + }, + { + "vocabulary": " 茶色", + "meaning": "brown" + }, + { + "vocabulary": " 茶碗", + "meaning": "rice bowl; tea cup; teacup" + }, + { + "vocabulary": " 父", + "meaning": "father" + }, + { + "vocabulary": " 違う", + "meaning": "to differ" + }, + { + "vocabulary": " 小さい", + "meaning": "small; little; tiny" + }, + { + "vocabulary": " 小さな", + "meaning": "small; little; tiny​" + }, + { + "vocabulary": " 近い", + "meaning": "near; close" + }, + { + "vocabulary": " 地下鉄", + "meaning": "subway; underground train" + }, + { + "vocabulary": " 地図", + "meaning": "map" + }, + { + "vocabulary": " ちょっと", + "meaning": "a little" + }, + { + "vocabulary": " 丁度", + "meaning": "exactly" + }, + { + "vocabulary": " 台所", + "meaning": "kitchen" + }, + { + "vocabulary": " 大学", + "meaning": "university; college" + }, + { + "vocabulary": " 大丈夫", + "meaning": "OK; okay; alright; problem free" + }, + { + "vocabulary": " 大好き", + "meaning": "love; like; like very much" + }, + { + "vocabulary": " だんだん", + "meaning": "gradually" + }, + { + "vocabulary": " 誰", + "meaning": "who" + }, + { + "vocabulary": " 誰か ", + "meaning": "someone; somebody" + }, + { + "vocabulary": " 出す", + "meaning": "to take out; to get out; to put out; to reveal" + }, + { + "vocabulary": " 出口", + "meaning": "exit; gateway; way out" + }, + { + "vocabulary": " 出かける", + "meaning": "to go out; to leave; to depart" + }, + { + "vocabulary": " 電気", + "meaning": "electricity" + }, + { + "vocabulary": " 電車", + "meaning": "train; electric train" + }, + { + "vocabulary": " 電話", + "meaning": "telephone (call / device)l; phone call" + }, + { + "vocabulary": " デパート", + "meaning": "department store" + }, + { + "vocabulary": " 出る", + "meaning": "to leave; to exit; to appear; to go out" + }, + { + "vocabulary": " ドア", + "meaning": "door" + }, + { + "vocabulary": " どっち", + "meaning": "which; which one" + }, + { + "vocabulary": " どちら", + "meaning": "which of two" + }, + { + "vocabulary": " どこ", + "meaning": "where; what place​" + }, + { + "vocabulary": " どなた", + "meaning": "who" + }, + { + "vocabulary": " どの", + "meaning": "which" + }, + { + "vocabulary": " どれ", + "meaning": "which (of three or more)​" + }, + { + "vocabulary": " どう", + "meaning": "how; in what way; how about​" + }, + { + "vocabulary": " 動物", + "meaning": "animal" + }, + { + "vocabulary": " どうも", + "meaning": "thank you; thanks" + }, + { + "vocabulary": " どうぞ", + "meaning": "please" + }, + { + "vocabulary": " 土曜日", + "meaning": "Saturday" + }, + { + "vocabulary": " 絵", + "meaning": "picture" + }, + { + "vocabulary": " ええ ", + "meaning": "yes; that is correct; right" + }, + { + "vocabulary": " 映画", + "meaning": "movie; film" + }, + { + "vocabulary": " 映画館", + "meaning": "movie theater; cinema" + }, + { + "vocabulary": " 英語", + "meaning": "English language" + }, + { + "vocabulary": " 駅", + "meaning": "station" + }, + { + "vocabulary": " 鉛筆", + "meaning": "pencil" + }, + { + "vocabulary": " エレベーター", + "meaning": "elevator" + }, + { + "vocabulary": " フィルム", + "meaning": "film" + }, + { + "vocabulary": " フォーク ", + "meaning": "fork" + }, + { + "vocabulary": " 吹く", + "meaning": "to blow (of the wind)" + }, + { + "vocabulary": " 服", + "meaning": "clothes" + }, + { + "vocabulary": " 降る", + "meaning": "to fall" + }, + { + "vocabulary": " 古い", + "meaning": "old (not used for people)" + }, + { + "vocabulary": " 二人", + "meaning": "two people; pair; couple" + }, + { + "vocabulary": " 二つ", + "meaning": "two; 2" + }, + { + "vocabulary": " 太い", + "meaning": "fat; thick" + }, + { + "vocabulary": " 二日", + "meaning": "the second day of the month / 2 days" + }, + { + "vocabulary": " 封筒", + "meaning": "envelope" + }, + { + "vocabulary": " 冬", + "meaning": "winter" + }, + { + "vocabulary": " 外国", + "meaning": "foreign country" + }, + { + "vocabulary": " 外国人", + "meaning": "foreigner; foreign citizen; foreign national; alien; non-Japanese" + }, + { + "vocabulary": " 学校", + "meaning": "school" + }, + { + "vocabulary": " 学生", + "meaning": "student" + }, + { + "vocabulary": " 玄関", + "meaning": "entrance" + }, + { + "vocabulary": " 元気", + "meaning": "lively; full of spirit; energetic; healthy" + }, + { + "vocabulary": " 月曜日", + "meaning": "Monday" + }, + { + "vocabulary": " 銀行", + "meaning": "bank" + }, + { + "vocabulary": " ギター", + "meaning": "guitar" + }, + { + "vocabulary": " 五", + "meaning": "five; 5" + }, + { + "vocabulary": " 午後", + "meaning": "afternoon; p.m." + }, + { + "vocabulary": " ご飯", + "meaning": "cooked rice, meal" + }, + { + "vocabulary": " 午前", + "meaning": "morning; a.m." + }, + { + "vocabulary": " グラム ", + "meaning": "gram" + }, + { + "vocabulary": " 牛肉", + "meaning": "beef" + }, + { + "vocabulary": " 牛乳", + "meaning": "(cow's) milk" + }, + { + "vocabulary": " 歯", + "meaning": "tooth" + }, + { + "vocabulary": " 八", + "meaning": "eight: 8" + }, + { + "vocabulary": " 葉書", + "meaning": "postcard" + }, + { + "vocabulary": " 母", + "meaning": "mother" + }, + { + "vocabulary": " はい", + "meaning": "yes; that is correct​" + }, + { + "vocabulary": " 入る", + "meaning": "to enter; to go into" + }, + { + "vocabulary": " 灰皿", + "meaning": "ashtray" + }, + { + "vocabulary": " 始まる", + "meaning": "to begin" + }, + { + "vocabulary": " 初めて", + "meaning": "for the first time" + }, + { + "vocabulary": " 箱", + "meaning": "box; crate" + }, + { + "vocabulary": " 履く", + "meaning": "to wear, to put on trousers" + }, + { + "vocabulary": " 半", + "meaning": "half; semi-; half-past" + }, + { + "vocabulary": " 花", + "meaning": "flower" + }, + { + "vocabulary": " 鼻", + "meaning": "nose" + }, + { + "vocabulary": " 話", + "meaning": " talk; speech; chat; conversation​" + }, + { + "vocabulary": " 話す", + "meaning": "to speak; to talk; to converse" + }, + { + "vocabulary": " 半分", + "meaning": "half" + }, + { + "vocabulary": " ハンカチ", + "meaning": "handkerchief​" + }, + { + "vocabulary": " 晴れ", + "meaning": "clear weather" + }, + { + "vocabulary": " 晴れる", + "meaning": "to be sunny" + }, + { + "vocabulary": " 貼る ", + "meaning": "to stick; to paste" + }, + { + "vocabulary": " 春", + "meaning": "spring; springtime" + }, + { + "vocabulary": " 箸", + "meaning": "chopsticks" + }, + { + "vocabulary": " 橋", + "meaning": "bridge" + }, + { + "vocabulary": " 走る", + "meaning": "to run" + }, + { + "vocabulary": " 二十歳", + "meaning": "20 years old; twenty years old" + }, + { + "vocabulary": " 働く", + "meaning": "to work" + }, + { + "vocabulary": " 二十日", + "meaning": "twentieth day of the month / 20 days" + }, + { + "vocabulary": " 早い", + "meaning": "fast; early" + }, + { + "vocabulary": " 速い", + "meaning": "fast; quick; hasty; brisk" + }, + { + "vocabulary": " 辺", + "meaning": "area" + }, + { + "vocabulary": " 下手", + "meaning": "unskillful; poor; awkward​" + }, + { + "vocabulary": " 部屋", + "meaning": "room" + }, + { + "vocabulary": " 左", + "meaning": "left; left hand side" + }, + { + "vocabulary": " 東", + "meaning": "east" + }, + { + "vocabulary": " 飛行機", + "meaning": "airplane; aircraft" + }, + { + "vocabulary": " 引く", + "meaning": "to pull" + }, + { + "vocabulary": " 弾く", + "meaning": "to play" + }, + { + "vocabulary": " 低い", + "meaning": "short,low" + }, + { + "vocabulary": " 暇", + "meaning": "free time" + }, + { + "vocabulary": " 広い", + "meaning": "spacious; vast; wide" + }, + { + "vocabulary": " 昼", + "meaning": "noon; midday; daytime; lunch" + }, + { + "vocabulary": " 昼ご飯", + "meaning": "lunch" + }, + { + "vocabulary": " 人", + "meaning": "person; human" + }, + { + "vocabulary": " 一人", + "meaning": "one person​; alone; single" + }, + { + "vocabulary": " 一つ", + "meaning": "one thing; only" + }, + { + "vocabulary": " ほか", + "meaning": "other (place, thing, person); the rest" + }, + { + "vocabulary": " 本", + "meaning": "book; volume; script" + }, + { + "vocabulary": " 本棚", + "meaning": "bookshelf; bookcase" + }, + { + "vocabulary": " 本当", + "meaning": "truth; reality; actuality; fact" + }, + { + "vocabulary": " 欲しい", + "meaning": "want" + }, + { + "vocabulary": " 細い", + "meaning": "thin; slender" + }, + { + "vocabulary": " ホテル", + "meaning": "hotel" + }, + { + "vocabulary": " 百", + "meaning": "100; hundred" + }, + { + "vocabulary": " 一", + "meaning": "one; best; first; foremost; start" + }, + { + "vocabulary": " 一番", + "meaning": "number one; first; 1st, first place​; best; most​" + }, + { + "vocabulary": " 一日", + "meaning": "one day, all day" + }, + { + "vocabulary": " 家", + "meaning": "house, residence, family" + }, + { + "vocabulary": " いかが", + "meaning": "how; in what way; how about​" + }, + { + "vocabulary": " 池", + "meaning": "pond" + }, + { + "vocabulary": " 行く", + "meaning": "to go; to move" + }, + { + "vocabulary": " いくら", + "meaning": "how much?; how many?​" + }, + { + "vocabulary": " いくつ ", + "meaning": "how many?,how old?" + }, + { + "vocabulary": " 今", + "meaning": "now; the present time; soon" + }, + { + "vocabulary": " 意味", + "meaning": "meaning; significance; sense" + }, + { + "vocabulary": " 妹", + "meaning": "younger sister" + }, + { + "vocabulary": " 犬", + "meaning": "dog" + }, + { + "vocabulary": " 入れる", + "meaning": "to put in; to let in; to take in; to bring in; to insert; to install" + }, + { + "vocabulary": " 入口", + "meaning": "entrance; entry; gate" + }, + { + "vocabulary": " 色", + "meaning": "colour; color" + }, + { + "vocabulary": " 色々 ", + "meaning": "various" + }, + { + "vocabulary": " 居る ", + "meaning": "to be, to have" + }, + { + "vocabulary": " 要る", + "meaning": "to be needed" + }, + { + "vocabulary": " 医者", + "meaning": "(medical) doctor; physician" + }, + { + "vocabulary": " 忙しい", + "meaning": "busy" + }, + { + "vocabulary": " 一緒", + "meaning": "together; at the same time; same; identical" + }, + { + "vocabulary": " 椅子", + "meaning": "chair" + }, + { + "vocabulary": " 痛い", + "meaning": "painful; sore​" + }, + { + "vocabulary": " いつ ", + "meaning": "when" + }, + { + "vocabulary": " 五日", + "meaning": "the fifth day of the month / 5 days" + }, + { + "vocabulary": " 五つ", + "meaning": "five; 5" + }, + { + "vocabulary": " 言う", + "meaning": "to say; to call" + }, + { + "vocabulary": " 嫌", + "meaning": "unpleasant" + }, + { + "vocabulary": " じゃあ", + "meaning": "then; well; so; well then" + }, + { + "vocabulary": " 字引", + "meaning": "dictionary" + }, + { + "vocabulary": " 自分", + "meaning": "myself; yourself; oneself; himself; herself; i; me" + }, + { + "vocabulary": " 自動車", + "meaning": "automobile; motorcar; motor vehicle; car" + }, + { + "vocabulary": " 時間", + "meaning": "time; hour(s)" + }, + { + "vocabulary": " 辞書", + "meaning": "dictionary" + }, + { + "vocabulary": " 自転車", + "meaning": "bicycle" + }, + { + "vocabulary": " 丈夫", + "meaning": "strong, durable" + }, + { + "vocabulary": " 上手", + "meaning": "skillful; skilled; proficient; good (at)" + }, + { + "vocabulary": " 授業", + "meaning": "lesson; class work" + }, + { + "vocabulary": " 十", + "meaning": "ten; 10" + }, + { + "vocabulary": " かばん", + "meaning": "bag; basket​" + }, + { + "vocabulary": " 花瓶", + "meaning": "a vase" + }, + { + "vocabulary": " 角", + "meaning": "a corner; angle​" + }, + { + "vocabulary": " 帰る", + "meaning": "to go back​" + }, + { + "vocabulary": " 返す", + "meaning": "to return something" + }, + { + "vocabulary": " 鍵", + "meaning": "key" + }, + { + "vocabulary": " 階段", + "meaning": "stairs; stairway; staircase" + }, + { + "vocabulary": " 買い物", + "meaning": "shopping; purchased goods" + }, + { + "vocabulary": " 会社", + "meaning": "company; corporation" + }, + { + "vocabulary": " 掛かる", + "meaning": "to take (a resource, e.g. time or money)" + }, + { + "vocabulary": " 掛ける", + "meaning": "to hang up; to make (a call)​;" + }, + { + "vocabulary": " 書く", + "meaning": "to write; to compose; to pen; to draw" + }, + { + "vocabulary": " カメラ", + "meaning": "camera" + }, + { + "vocabulary": " 紙", + "meaning": "paper" + }, + { + "vocabulary": " 漢字", + "meaning": "kanji" + }, + { + "vocabulary": " カップ", + "meaning": "cup" + }, + { + "vocabulary": " 体", + "meaning": "body" + }, + { + "vocabulary": " 辛い", + "meaning": "spicy" + }, + { + "vocabulary": " カレー ", + "meaning": "curry" + }, + { + "vocabulary": " カレンダー", + "meaning": "calendar" + }, + { + "vocabulary": " 借りる", + "meaning": "to borrow" + }, + { + "vocabulary": " 軽い", + "meaning": "light" + }, + { + "vocabulary": " 傘", + "meaning": "umbrella" + }, + { + "vocabulary": " 貸す", + "meaning": "to lend; to loan" + }, + { + "vocabulary": " 方", + "meaning": "way of doing something" + }, + { + "vocabulary": " 家庭", + "meaning": "household" + }, + { + "vocabulary": " 買う", + "meaning": "to buy; to purchase" + }, + { + "vocabulary": " 川", + "meaning": "river; stream​" + }, + { + "vocabulary": " 可愛い", + "meaning": "cute" + }, + { + "vocabulary": " 火曜日", + "meaning": "Tuesday" + }, + { + "vocabulary": " 風邪 ", + "meaning": "a cold" + }, + { + "vocabulary": " 風", + "meaning": "wind" + }, + { + "vocabulary": " 家族", + "meaning": "family; members of a family" + }, + { + "vocabulary": " 警官", + "meaning": "policeman; police officer" + }, + { + "vocabulary": " 結婚", + "meaning": "marriage" + }, + { + "vocabulary": " 結構", + "meaning": "splendid, enough" + }, + { + "vocabulary": " 今朝", + "meaning": "this morning" + }, + { + "vocabulary": " 消す", + "meaning": "to erase, to turn off power" + }, + { + "vocabulary": " 木", + "meaning": "tree; shrub; bush; wood; timber" + }, + { + "vocabulary": " 消える ", + "meaning": "to disappear" + }, + { + "vocabulary": " 黄色い", + "meaning": "yellow" + }, + { + "vocabulary": " 聞く", + "meaning": "to hear; to listen (to music); to ask; to learn of" + }, + { + "vocabulary": " 昨日", + "meaning": "yesterday" + }, + { + "vocabulary": " 金曜日", + "meaning": "Friday" + }, + { + "vocabulary": " 切符", + "meaning": "ticket" + }, + { + "vocabulary": " 嫌い", + "meaning": "hate" + }, + { + "vocabulary": " 綺麗", + "meaning": "pretty; lovely; beautiful" + }, + { + "vocabulary": " キログラム", + "meaning": "kilogram" + }, + { + "vocabulary": " キロメートル", + "meaning": "kilometer" + }, + { + "vocabulary": " 切る", + "meaning": "to cut" + }, + { + "vocabulary": " 着る", + "meaning": "to wear" + }, + { + "vocabulary": " 喫茶店", + "meaning": "coffee shop; tearoom; cafe" + }, + { + "vocabulary": " 北", + "meaning": "north" + }, + { + "vocabulary": " 汚い", + "meaning": "dirty" + }, + { + "vocabulary": " 切手", + "meaning": "stamp (postage)" + }, + { + "vocabulary": " こっち", + "meaning": "this person or way" + }, + { + "vocabulary": " こちら ", + "meaning": "this way; this direction​" + }, + { + "vocabulary": " 子供", + "meaning": "child" + }, + { + "vocabulary": " 声", + "meaning": "voice" + }, + { + "vocabulary": " ここ", + "meaning": "here; this place" + }, + { + "vocabulary": " 九日", + "meaning": "ninth day of the month / 9 days" + }, + { + "vocabulary": " 九つ", + "meaning": "nine; 9" + }, + { + "vocabulary": " 困る", + "meaning": "to be troubled" + }, + { + "vocabulary": " 今晩", + "meaning": "tonight; this evening" + }, + { + "vocabulary": " 今月", + "meaning": "this month" + }, + { + "vocabulary": " こんな ", + "meaning": "such; like this​" + }, + { + "vocabulary": " この ", + "meaning": "this​" + }, + { + "vocabulary": " 今週", + "meaning": "this week" + }, + { + "vocabulary": " コーヒー ", + "meaning": "Coffee" + }, + { + "vocabulary": " コート", + "meaning": "coat" + }, + { + "vocabulary": " コピー", + "meaning": "copy; photocopy" + }, + { + "vocabulary": " コップ", + "meaning": "glass (drinking vessel); tumbler​" + }, + { + "vocabulary": " これ ", + "meaning": "this" + }, + { + "vocabulary": " 答える", + "meaning": "to answer" + }, + { + "vocabulary": " 言葉", + "meaning": "word; words" + }, + { + "vocabulary": " 今年", + "meaning": "this year" + }, + { + "vocabulary": " 交番", + "meaning": "police box" + }, + { + "vocabulary": " 紅茶", + "meaning": "black tea" + }, + { + "vocabulary": " 公園", + "meaning": "park" + }, + { + "vocabulary": " 交差点", + "meaning": "intersection" + }, + { + "vocabulary": " 口", + "meaning": "mouth, opening" + }, + { + "vocabulary": " 果物", + "meaning": "fruit" + }, + { + "vocabulary": " 下さい", + "meaning": "please" + }, + { + "vocabulary": " 曇り", + "meaning": "cloudiness; cloudy weather" + }, + { + "vocabulary": " 曇る", + "meaning": "to become cloudy, to become dim" + }, + { + "vocabulary": " 国", + "meaning": "country; state; region" + }, + { + "vocabulary": " 暗い", + "meaning": "dark; gloomy; murky" + }, + { + "vocabulary": " クラス ", + "meaning": "class" + }, + { + "vocabulary": " 黒", + "meaning": "black" + }, + { + "vocabulary": " 黒い", + "meaning": "black" + }, + { + "vocabulary": " 来る", + "meaning": "to come" + }, + { + "vocabulary": " 車", + "meaning": "car; automobile; vehicle" + }, + { + "vocabulary": " 薬", + "meaning": "medicine" + }, + { + "vocabulary": " 靴", + "meaning": "shoes" + }, + { + "vocabulary": " 靴下", + "meaning": "socks" + }, + { + "vocabulary": " 去年", + "meaning": "last year" + }, + { + "vocabulary": " 今日", + "meaning": "today; this day" + }, + { + "vocabulary": " 兄弟", + "meaning": "siblings; brothers and sisters​; mate" + }, + { + "vocabulary": " 教室", + "meaning": "classroom" + }, + { + "vocabulary": " 九", + "meaning": "nine; 9" + }, + { + "vocabulary": " マッチ", + "meaning": "match" + }, + { + "vocabulary": " 町", + "meaning": "town; block; neighborhood" + }, + { + "vocabulary": " 窓", + "meaning": "window" + }, + { + "vocabulary": " 前", + "meaning": "previous; before; in front; ago" + }, + { + "vocabulary": " 曲がる", + "meaning": "to turn, to bend" + }, + { + "vocabulary": " 毎朝", + "meaning": "every morning" + }, + { + "vocabulary": " 毎晩", + "meaning": "every night" + }, + { + "vocabulary": " 毎日", + "meaning": "every day" + }, + { + "vocabulary": " 毎週", + "meaning": "every week" + }, + { + "vocabulary": " 毎年", + "meaning": "every year; yearly; annually" + }, + { + "vocabulary": " 毎月", + "meaning": "every month; monthly" + }, + { + "vocabulary": " 万", + "meaning": "10,000; ten thousand" + }, + { + "vocabulary": " 万年筆", + "meaning": "fountain pen" + }, + { + "vocabulary": " 丸い", + "meaning": "round,circular" + }, + { + "vocabulary": " 真っ直ぐ", + "meaning": "straight ahead,direct" + }, + { + "vocabulary": " 待つ", + "meaning": "to wait​" + }, + { + "vocabulary": " 不味い", + "meaning": "unpleasant" + }, + { + "vocabulary": " 目", + "meaning": "eye" + }, + { + "vocabulary": " メートル", + "meaning": "metre; meter" + }, + { + "vocabulary": " 眼鏡", + "meaning": "glasses" + }, + { + "vocabulary": " 道", + "meaning": "road; street" + }, + { + "vocabulary": " 緑", + "meaning": "green" + }, + { + "vocabulary": " 磨く", + "meaning": "to polish; to shine; to brush (e.g. teeth)" + }, + { + "vocabulary": " 右", + "meaning": " right; right hand side" + }, + { + "vocabulary": " 短い", + "meaning": "short" + }, + { + "vocabulary": " 三日", + "meaning": "the third day of the month / 3 days" + }, + { + "vocabulary": " 耳", + "meaning": "ear; hearing" + }, + { + "vocabulary": " 南", + "meaning": "south" + }, + { + "vocabulary": " 皆さん", + "meaning": "everyone" + }, + { + "vocabulary": " みんな", + "meaning": "all; everyone; everybody" + }, + { + "vocabulary": " 見る", + "meaning": "to see; to look; to watch; to view; to observe" + }, + { + "vocabulary": " 店", + "meaning": "store; shop; establishment; restaurant" + }, + { + "vocabulary": " 見せる", + "meaning": "to show; to display" + }, + { + "vocabulary": " 三つ", + "meaning": "three; 3" + }, + { + "vocabulary": " 水", + "meaning": "water; fluid; liquid​" + }, + { + "vocabulary": " 木曜日", + "meaning": "Thursday" + }, + { + "vocabulary": " 門", + "meaning": "gate" + }, + { + "vocabulary": " 問題", + "meaning": "problem; question (e.g. on a test)" + }, + { + "vocabulary": " 物", + "meaning": "thing" + }, + { + "vocabulary": " 持つ", + "meaning": "to hold" + }, + { + "vocabulary": " もっと ", + "meaning": "more; longer; further" + }, + { + "vocabulary": " もう一度", + "meaning": "once more; again" + }, + { + "vocabulary": " 六日", + "meaning": "sixth day of the month / 6 days" + }, + { + "vocabulary": " 向こう ", + "meaning": "over there" + }, + { + "vocabulary": " 村", + "meaning": "village" + }, + { + "vocabulary": " 六つ", + "meaning": "six; 6" + }, + { + "vocabulary": " 難しい", + "meaning": "difficult" + }, + { + "vocabulary": " 長い", + "meaning": "long (distance)​; long (time); lengthy." + }, + { + "vocabulary": " ナイフ", + "meaning": "knife" + }, + { + "vocabulary": " 中", + "meaning": "inside; in; within; center" + }, + { + "vocabulary": " 鳴く", + "meaning": "animal noise. to chirp" + }, + { + "vocabulary": " 無くす", + "meaning": "to lose (something)" + }, + { + "vocabulary": " 名前", + "meaning": "name; full name; given name" + }, + { + "vocabulary": " 七つ", + "meaning": "seven; 7" + }, + { + "vocabulary": " 何", + "meaning": "what" + }, + { + "vocabulary": " 七日", + "meaning": "seventh day of the month / 7 days" + }, + { + "vocabulary": " 並べる", + "meaning": "to line up,to set up" + }, + { + "vocabulary": " 並ぶ", + "meaning": "to line up,to stand in a line" + }, + { + "vocabulary": " 習う", + "meaning": "to be taught; to learn (from a teacher)" + }, + { + "vocabulary": " 夏", + "meaning": "summer" + }, + { + "vocabulary": " 夏休み", + "meaning": "summer vacation; summer holiday" + }, + { + "vocabulary": " 何故", + "meaning": "why; how" + }, + { + "vocabulary": " 猫", + "meaning": "cat" + }, + { + "vocabulary": " ネクタイ", + "meaning": "tie; necktie" + }, + { + "vocabulary": " 寝る", + "meaning": "to sleep; to go to bed; to lie down" + }, + { + "vocabulary": " 二", + "meaning": "two; 2" + }, + { + "vocabulary": " 日曜日", + "meaning": "Sunday" + }, + { + "vocabulary": " 賑やか", + "meaning": "bustling,busy" + }, + { + "vocabulary": " 日記", + "meaning": "diary; journal" + }, + { + "vocabulary": " 肉", + "meaning": "meat" + }, + { + "vocabulary": " 荷物", + "meaning": "luggage; baggage" + }, + { + "vocabulary": " 西", + "meaning": "west" + }, + { + "vocabulary": " 庭", + "meaning": "garden" + }, + { + "vocabulary": " 登る", + "meaning": "to climb" + }, + { + "vocabulary": " 飲み物", + "meaning": "drink; beverage" + }, + { + "vocabulary": " 飲む", + "meaning": "to drink" + }, + { + "vocabulary": " ノート", + "meaning": "notebook" + }, + { + "vocabulary": " 乗る", + "meaning": "to get on (train, plane, bus, ship, etc.)" + }, + { + "vocabulary": " 脱ぐ", + "meaning": "to take off clothes" + }, + { + "vocabulary": " 温い", + "meaning": "luke warm" + }, + { + "vocabulary": " ニュース", + "meaning": "news" + }, + { + "vocabulary": " おばあさん", + "meaning": "grandmother" + }, + { + "vocabulary": " 伯母さん", + "meaning": "aunt; old lady" + }, + { + "vocabulary": " お弁当", + "meaning": "lunch box; Japanese box lunch" + }, + { + "vocabulary": " 覚える", + "meaning": "to remember" + }, + { + "vocabulary": " お茶", + "meaning": "tea" + }, + { + "vocabulary": " お風呂", + "meaning": "bath" + }, + { + "vocabulary": " 美味しい", + "meaning": "delicious" + }, + { + "vocabulary": " 伯父さん", + "meaning": "uncle; old man; mister" + }, + { + "vocabulary": " お母さん", + "meaning": "mother; mom; mum; ma" + }, + { + "vocabulary": " お金", + "meaning": "money" + }, + { + "vocabulary": " お菓子", + "meaning": "confections; sweets; candy" + }, + { + "vocabulary": " 起きる", + "meaning": "to get up; to wake up" + }, + { + "vocabulary": " 置く", + "meaning": "to put; to place​" + }, + { + "vocabulary": " 奥さん", + "meaning": "wife; your wife; his wife" + }, + { + "vocabulary": " お巡りさん", + "meaning": "police officer (friendly term for policeman)" + }, + { + "vocabulary": " 重い", + "meaning": "heavy" + }, + { + "vocabulary": " 面白い", + "meaning": "interesting" + }, + { + "vocabulary": " 同じ", + "meaning": "same" + }, + { + "vocabulary": " お腹", + "meaning": "stomach" + }, + { + "vocabulary": " お姉さん", + "meaning": "elder sister; young lady; miss; ma'am" + }, + { + "vocabulary": " 音楽", + "meaning": "music" + }, + { + "vocabulary": " お兄さん", + "meaning": "older brother; elder brother; young man; buddy" + }, + { + "vocabulary": " 女", + "meaning": "woman; female sex" + }, + { + "vocabulary": " 女の子", + "meaning": "girl; daughter; young women" + }, + { + "vocabulary": " 多い", + "meaning": "many; numerous; a lot; large quantity; frequent" + }, + { + "vocabulary": " 大きい", + "meaning": "big; large; great; important" + }, + { + "vocabulary": " 大きな", + "meaning": "big; large; great​" + }, + { + "vocabulary": " 大勢", + "meaning": "crowd of people; great number of people" + }, + { + "vocabulary": " 降りる", + "meaning": "to get off" + }, + { + "vocabulary": " お酒", + "meaning": "alcohol" + }, + { + "vocabulary": " お皿", + "meaning": "plate, dish" + }, + { + "vocabulary": " 教える", + "meaning": " to teach" + }, + { + "vocabulary": " 遅い", + "meaning": "slow; time-consuming; late" + }, + { + "vocabulary": " 押す", + "meaning": "to push; to press​" + }, + { + "vocabulary": " お手洗い", + "meaning": "toilet; restroom; lavatory; bathroom" + }, + { + "vocabulary": " 男", + "meaning": "man; male" + }, + { + "vocabulary": " 男の子", + "meaning": "boy; male child; baby boy" + }, + { + "vocabulary": " 大人", + "meaning": "adult" + }, + { + "vocabulary": " 一昨日", + "meaning": "day before yesterday" + }, + { + "vocabulary": " 一昨年", + "meaning": "year before last" + }, + { + "vocabulary": " お父さん", + "meaning": "father; dad; papa; pa; pop; daddy" + }, + { + "vocabulary": " 弟", + "meaning": "younger brother" + }, + { + "vocabulary": " 終る", + "meaning": "to finish; to end" + }, + { + "vocabulary": " 泳ぐ", + "meaning": "to swim" + }, + { + "vocabulary": " パーティー", + "meaning": "party" + }, + { + "vocabulary": " パン ", + "meaning": "bread" + }, + { + "vocabulary": " ページ", + "meaning": "page" + }, + { + "vocabulary": " ペン", + "meaning": "pen" + }, + { + "vocabulary": " ペット", + "meaning": "pet" + }, + { + "vocabulary": " ポケット", + "meaning": "pocket" + }, + { + "vocabulary": " ポスト", + "meaning": "post" + }, + { + "vocabulary": " プール", + "meaning": "swimming pool" + }, + { + "vocabulary": " 来月", + "meaning": "next month" + }, + { + "vocabulary": " 来年", + "meaning": "next year" + }, + { + "vocabulary": " 来週", + "meaning": "next week" + }, + { + "vocabulary": " ラジオ", + "meaning": "radio" + }, + { + "vocabulary": " 零", + "meaning": "zero" + }, + { + "vocabulary": " 冷蔵庫", + "meaning": "refrigerator" + }, + { + "vocabulary": " レコード", + "meaning": "record" + }, + { + "vocabulary": " 練習", + "meaning": "practice; practicing" + }, + { + "vocabulary": " レストラン", + "meaning": "restaurant" + }, + { + "vocabulary": " 立派", + "meaning": "splendid" + }, + { + "vocabulary": " 六", + "meaning": "six; 6" + }, + { + "vocabulary": " 廊下", + "meaning": "corridor; hallway; passageway" + }, + { + "vocabulary": " 旅行", + "meaning": "travel; trip; journey; excursion; tour" + }, + { + "vocabulary": " 料理", + "meaning": "cuisine" + }, + { + "vocabulary": " 両親", + "meaning": "parents; both parents" + }, + { + "vocabulary": " 留学生", + "meaning": "overseas student; exchange student" + }, + { + "vocabulary": " さあ ", + "meaning": "well…" + }, + { + "vocabulary": " 財布", + "meaning": "purse; wallet" + }, + { + "vocabulary": " 魚", + "meaning": "fish" + }, + { + "vocabulary": " 先", + "meaning": "previous; prior; first; earlier" + }, + { + "vocabulary": " 咲く", + "meaning": "to bloom" + }, + { + "vocabulary": " 作文", + "meaning": "writing; composition" + }, + { + "vocabulary": " 寒い", + "meaning": "cold" + }, + { + "vocabulary": " 三", + "meaning": "three; 3" + }, + { + "vocabulary": " 散歩", + "meaning": "walk; stroll" + }, + { + "vocabulary": " 再来年", + "meaning": "year after next" + }, + { + "vocabulary": " 差す", + "meaning": "to stretch out hands, to raise an umbrella" + }, + { + "vocabulary": " 砂糖", + "meaning": "sugar" + }, + { + "vocabulary": " 背", + "meaning": "height; stature; back; spine" + }, + { + "vocabulary": " 背広", + "meaning": "business suit" + }, + { + "vocabulary": " セーター", + "meaning": "sweater; jumper" + }, + { + "vocabulary": " 生徒", + "meaning": "pupil; student" + }, + { + "vocabulary": " 石鹼", + "meaning": "soap" + }, + { + "vocabulary": " 狭い", + "meaning": "narrow" + }, + { + "vocabulary": " 千", + "meaning": "1,000; thousand" + }, + { + "vocabulary": " 先月", + "meaning": "last month" + }, + { + "vocabulary": " 先生", + "meaning": "teacher; instructor; master" + }, + { + "vocabulary": " 先週", + "meaning": "last week" + }, + { + "vocabulary": " 洗濯", + "meaning": "washing; laundry" + }, + { + "vocabulary": " 写真", + "meaning": "photograph; photo" + }, + { + "vocabulary": " シャツ", + "meaning": "shirt" + }, + { + "vocabulary": " シャワー ", + "meaning": "shower" + }, + { + "vocabulary": " 四", + "meaning": "four; 4" + }, + { + "vocabulary": " 七", + "meaning": "seven; 7" + }, + { + "vocabulary": " 仕事", + "meaning": "work; job; business" + }, + { + "vocabulary": " 閉まる", + "meaning": "to close, to be closed" + }, + { + "vocabulary": " 締める", + "meaning": "to tie; to fasten; to tighten​" + }, + { + "vocabulary": " 閉める", + "meaning": "to close; to shut" + }, + { + "vocabulary": " 新聞", + "meaning": "newspaper" + }, + { + "vocabulary": " 死ぬ", + "meaning": "to die" + }, + { + "vocabulary": " 塩", + "meaning": "salt" + }, + { + "vocabulary": " 白", + "meaning": "white; innocence; innocent person" + }, + { + "vocabulary": " 白い", + "meaning": "white" + }, + { + "vocabulary": " 知る", + "meaning": "to know" + }, + { + "vocabulary": " 下", + "meaning": "below; down; under; bottom" + }, + { + "vocabulary": " 質問", + "meaning": "question; inquiry" + }, + { + "vocabulary": " 静か ", + "meaning": "quiet" + }, + { + "vocabulary": " 食堂", + "meaning": "cafeteria; dining room" + }, + { + "vocabulary": " 醬油", + "meaning": "soy sauce" + }, + { + "vocabulary": " 宿題", + "meaning": "homework; assignment; pending issue" + }, + { + "vocabulary": " そば", + "meaning": "near; beside" + }, + { + "vocabulary": " そっち ", + "meaning": "that way; ​over there" + }, + { + "vocabulary": " そちら ", + "meaning": "that way (distant from speaker, close to listener); you; your family" + }, + { + "vocabulary": " そこ", + "meaning": "that place​; there" + }, + { + "vocabulary": " その", + "meaning": "that" + }, + { + "vocabulary": " 空", + "meaning": "sky; the air" + }, + { + "vocabulary": " それ", + "meaning": "that" + }, + { + "vocabulary": " それでは", + "meaning": "in that situation" + }, + { + "vocabulary": " 外", + "meaning": "outside; exterior;" + }, + { + "vocabulary": " 掃除", + "meaning": "to clean, to sweep" + }, + { + "vocabulary": " 直ぐに", + "meaning": "immediately; right away; instantly​" + }, + { + "vocabulary": " 水曜日", + "meaning": "Wednesday" + }, + { + "vocabulary": " スカート", + "meaning": "skirt" + }, + { + "vocabulary": " 好き", + "meaning": "like" + }, + { + "vocabulary": " 少し", + "meaning": "a little (bit); small quantity; few; short distance" + }, + { + "vocabulary": " 少ない", + "meaning": "few; a little; scarce; insufficient; seldom" + }, + { + "vocabulary": " 住む", + "meaning": "to live in; to reside; to inhabit; to dwell; to abide" + }, + { + "vocabulary": " スポーツ ", + "meaning": "sport; sports" + }, + { + "vocabulary": " スプーン", + "meaning": "spoon" + }, + { + "vocabulary": " スリッパ", + "meaning": "slipper; slippers" + }, + { + "vocabulary": " ストーブ ", + "meaning": "heater; stove" + }, + { + "vocabulary": " 吸う", + "meaning": "to smoke, to suck" + }, + { + "vocabulary": " 座る", + "meaning": "to sit" + }, + { + "vocabulary": " 涼しい", + "meaning": "refreshing, cool" + }, + { + "vocabulary": " たばこ", + "meaning": "tobacco; cigarette" + }, + { + "vocabulary": " 食べ物", + "meaning": "food" + }, + { + "vocabulary": " 食べる", + "meaning": "to eat" + }, + { + "vocabulary": " 多分", + "meaning": "perhaps; probably" + }, + { + "vocabulary": " 大変 ", + "meaning": "very; greatly; terribly; serious; difficult" + }, + { + "vocabulary": " 大切", + "meaning": "important; necessary; indispensable; beloved" + }, + { + "vocabulary": " 大使館", + "meaning": "embassy" + }, + { + "vocabulary": " 高い", + "meaning": "high; tall; expensive; above average" + }, + { + "vocabulary": " 沢山", + "meaning": "many" + }, + { + "vocabulary": " タクシー", + "meaning": "taxi" + }, + { + "vocabulary": " 卵", + "meaning": "eggs; egg" + }, + { + "vocabulary": " 誕生日", + "meaning": "birthday" + }, + { + "vocabulary": " 頼む", + "meaning": "to ask" + }, + { + "vocabulary": " 楽しい", + "meaning": "enjoyable; fun" + }, + { + "vocabulary": " 縦", + "meaning": "length,height" + }, + { + "vocabulary": " 建物 ", + "meaning": "building" + }, + { + "vocabulary": " 立つ", + "meaning": "to stand; to stand up​" + }, + { + "vocabulary": " 手", + "meaning": "hand; arm" + }, + { + "vocabulary": " テーブル", + "meaning": "table" + }, + { + "vocabulary": " テープ ", + "meaning": "tape" + }, + { + "vocabulary": " テープレコーダー", + "meaning": "tape recorder" + }, + { + "vocabulary": " 手紙", + "meaning": "Letter (message)​" + }, + { + "vocabulary": " 天気", + "meaning": "weather; the elements" + }, + { + "vocabulary": " テレビ", + "meaning": "television; TV​" + }, + { + "vocabulary": " テスト", + "meaning": "examination; quiz; test" + }, + { + "vocabulary": " 戸", + "meaning": "Japanese style door" + }, + { + "vocabulary": " 飛ぶ", + "meaning": "to fly; to hop" + }, + { + "vocabulary": " トイレ", + "meaning": "toilet" + }, + { + "vocabulary": " 時計", + "meaning": "watch; clock; timepiece" + }, + { + "vocabulary": " 時", + "meaning": "time; moment; occasion; chance" + }, + { + "vocabulary": " 時々", + "meaning": "sometimes; at times" + }, + { + "vocabulary": " 所", + "meaning": "place" + }, + { + "vocabulary": " 止まる", + "meaning": "to stop; to come to a halt" + }, + { + "vocabulary": " 友達", + "meaning": " friend; companion" + }, + { + "vocabulary": " 隣", + "meaning": "next door to" + }, + { + "vocabulary": " 遠い", + "meaning": "far" + }, + { + "vocabulary": " 十日", + "meaning": "tenth day of the month / 10 days" + }, + { + "vocabulary": " 鳥", + "meaning": "bird" + }, + { + "vocabulary": " 鶏肉", + "meaning": "chicken meat" + }, + { + "vocabulary": " 撮る", + "meaning": "to take a photo or record a film" + }, + { + "vocabulary": " 取る", + "meaning": "to take; to pick up; to harvest; to earn; to win; to choose" + }, + { + "vocabulary": " 年", + "meaning": "year; age" + }, + { + "vocabulary": " 図書館", + "meaning": "library" + }, + { + "vocabulary": " 次", + "meaning": "next" + }, + { + "vocabulary": " 一日", + "meaning": "first day of the month" + }, + { + "vocabulary": " 疲れる", + "meaning": "to get tired" + }, + { + "vocabulary": " 使う", + "meaning": "to use" + }, + { + "vocabulary": " つける", + "meaning": "to turn on" + }, + { + "vocabulary": " 着く", + "meaning": "to arrive at" + }, + { + "vocabulary": " 机", + "meaning": "desk" + }, + { + "vocabulary": " 作る", + "meaning": "to make" + }, + { + "vocabulary": " 詰まらない", + "meaning": "boring" + }, + { + "vocabulary": " 冷たい", + "meaning": "cold to the touch" + }, + { + "vocabulary": " 勤める", + "meaning": "to work for someone" + }, + { + "vocabulary": " 強い", + "meaning": "powerful" + }, + { + "vocabulary": " 上", + "meaning": "above; up; over; top; surface" + }, + { + "vocabulary": " 生まれる", + "meaning": "to be born" + }, + { + "vocabulary": " 海", + "meaning": "sea" + }, + { + "vocabulary": " 売る", + "meaning": "to sell" + }, + { + "vocabulary": " 煩い", + "meaning": "noisy, annoying" + }, + { + "vocabulary": " 後ろ", + "meaning": "back; behind; rear" + }, + { + "vocabulary": " 薄い", + "meaning": "thin; weak" + }, + { + "vocabulary": " 歌", + "meaning": "song" + }, + { + "vocabulary": " 歌う", + "meaning": "to sing" + }, + { + "vocabulary": " 上着", + "meaning": "coat; tunic; jacket; outer garment" + }, + { + "vocabulary": " ワイシャツ", + "meaning": "shirt" + }, + { + "vocabulary": " 若い", + "meaning": "young" + }, + { + "vocabulary": " 分かる", + "meaning": "to understand; to comprehend; to grasp; to see; to get; to follow" + }, + { + "vocabulary": " 悪い", + "meaning": "bad; poor; undesirable" + }, + { + "vocabulary": " 忘れる", + "meaning": "to forget" + }, + { + "vocabulary": " 渡る", + "meaning": "to go across" + }, + { + "vocabulary": " 私", + "meaning": "I; myself" + }, + { + "vocabulary": " 渡す ", + "meaning": "to hand over" + }, + { + "vocabulary": " 山", + "meaning": "mountain; hill" + }, + { + "vocabulary": " 八百屋", + "meaning": "greengrocer; fruit and vegetable shop; versatile" + }, + { + "vocabulary": " やる", + "meaning": "to do" + }, + { + "vocabulary": " 野菜", + "meaning": "vegetable" + }, + { + "vocabulary": " 易しい", + "meaning": "easy, simple" + }, + { + "vocabulary": " 安い", + "meaning": "cheap; inexpensive" + }, + { + "vocabulary": " 休み", + "meaning": "rest; vacation; holiday" + }, + { + "vocabulary": " 休む", + "meaning": "to be absent; to take a day off; to rest" + }, + { + "vocabulary": " 八つ", + "meaning": "eight: 8" + }, + { + "vocabulary": " 呼ぶ", + "meaning": "to call out, to invite" + }, + { + "vocabulary": " 良い", + "meaning": "good" + }, + { + "vocabulary": " 四日", + "meaning": "fourth day of the month / 4 days" + }, + { + "vocabulary": " 横", + "meaning": "beside,side,width" + }, + { + "vocabulary": " よく", + "meaning": "often, well" + }, + { + "vocabulary": " 読む", + "meaning": "to read; to guess; to predict; to read (someone's thoughts)" + }, + { + "vocabulary": " 夜", + "meaning": "evening; night" + }, + { + "vocabulary": " 四つ", + "meaning": "four; 4" + }, + { + "vocabulary": " 洋服", + "meaning": "western clothes" + }, + { + "vocabulary": " 八日", + "meaning": "eighth day of the month / 8 days" + }, + { + "vocabulary": " 弱い", + "meaning": "weak" + }, + { + "vocabulary": " 雪", + "meaning": "snow" + }, + { + "vocabulary": " ゆっくり", + "meaning": "slowly" + }, + { + "vocabulary": " 昨夜", + "meaning": "last night" + }, + { + "vocabulary": " 郵便局 ", + "meaning": "post office" + }, + { + "vocabulary": " 夕方", + "meaning": "evening; dusk" + }, + { + "vocabulary": " 夕飯", + "meaning": "evening meal" + }, + { + "vocabulary": " 有名", + "meaning": "famous" + }, + { + "vocabulary": " 雑誌", + "meaning": "magazine" + }, + { + "vocabulary": " 全部", + "meaning": "all" + }, + { + "vocabulary": " ゼロ", + "meaning": "zero" + }, + { + "vocabulary": " ズボン", + "meaning": "trousers; pants" + } +] \ No newline at end of file diff --git a/utils/utilities.py b/utils/utilities.py index c478b3b..588e59d 100644 --- a/utils/utilities.py +++ b/utils/utilities.py @@ -216,3 +216,9 @@ async def update_records(key, db, winner, loser): await db.execute(update_query, loser_rating, loser_wins, loser_losses, loser.id) else: await db.execute(create_query, loser_rating, loser_wins, loser_losses, loser.id) + + +def chunks(list, n): + """Yield successive n-sized chunks from lst.""" + for i in range(0, len(list), n): + yield list[i : i + n]