1
0

Add Japanese て-form page.

This commit is contained in:
Kevin Matsubara 2024-11-26 16:38:56 +01:00
parent 5e6ba4be91
commit 3418c9b544
3 changed files with 35 additions and 1 deletions

View File

@ -0,0 +1,33 @@
## て-form
The て-form also acts as a connector form.
* 母の新しいカメラは小さく<Jps colour="c1" text="て"/>軽い。
* My mothers new camera is small <Jps colour="c1" text="and"/> light.
* 小さい > 小さくて
* 弟は16歳<Jps colour="c1" text="で"/>、学生です。
* My younger brother is 16-years-old <Jps colour="c1" text="and"/> is a student.
* 山田さんは元気<Jps colour="c1" text="で"/>面白い人です。
* Yamada-san is a lively <Jps colour="c1" text="and"/> interesting person.
* <Furigana kanji="一昨日" kana="おととい"/>は雪<Jps colour="c1" text="で"/>、昨日は雨でした。
* The day before yesterday in snowed <Jps colour="c1" text="and"/> yesterday it rained.
* Note: do not use <Jps colour="c3" text="だ"/><Jps colour="c3" text="だった"/> or even <Jps colour="c3" text="だったで"/>
---
Express cause:
* <Furigana kanji="辞書" kana="じしょ"/>を見<Jps colour="c1" text="て"/>漢字を<Furigana kanji="覚" kana="おぼ"/>えます。
* I remember kanji <Jps colour="c1" text="by"/> looking at the dictionary.
* Note: do not use <Jps colour="c3" text="見た"/>
* 最近は忙しく<Jps colour="c1" text="て"/>あまり運動をしていない。
* Lately, I've been busy <Jps colour="c1" text="therefor"/> I have not been exercising.
* 自転車のカギをなくし<Jps colour="c1" text="て"/>、家まで歩い<Jps colour="c1" text="て"/>帰った。
* I lost the key to my bicycle, <Jps colour="c1" text="therefor"/> I walked home.

View File

@ -18,6 +18,7 @@ These pages contain my notes on learning the language.
### て-forms
* [て-form](./japanese/te-form)
* [ておく](./japanese/te-oku)
### Particles (助詞、じょし)

View File

@ -9,7 +9,7 @@ import ElmPage from './Pages/Software/elm/ElmPage';
// Japan
export const japaneseRoutes = languages.map(lang => {
const pages = ['but', 'cheat-sheet', 'contrast-particle', 'dake-vs-shika', 'expressions', 'if-when', 'particles', 'tameni-youni-noni', 'te-oku', 'toka-tari-shi', 'verbs'];
const pages = ['but', 'cheat-sheet', 'contrast-particle', 'dake-vs-shika', 'expressions', 'if-when', 'particles', 'tameni-youni-noni', 'te-form', 'te-oku', 'toka-tari-shi', 'verbs'];
return pages.map(page => {
const path = `/${lang}/japan/japanese/${page}`;
const mdPath = `Japan/Japanese/${lang}/${page}.md`;