Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.12 KB | None | 0 0
  1. # This file should contain all the record creation needed to seed the database with its default values.
  2. # The data can then be loaded with the rails db:seed command (or created alongside the database with db:setup).
  3. #
  4. # Examples:
  5. #
  6. # movies = Movie.create([{ name: 'Star Wars' }, { name: 'Lord of the Rings' }])
  7. # Character.create(name: 'Luke', movie: movies.first)
  8.  
  9. # FIXME: only a few flash cards have forms or parts of speech, enough to get the idea going.
  10.  
  11. FlashCard.create(
  12. kana: "たべ",
  13. romaji: "tabe",
  14. eigo: "eat",
  15. form: "masu",
  16. part_of_speech: "verb"
  17. )
  18.  
  19. FlashCard.create(
  20. kana: "たべる",
  21. romaji: "taberu",
  22. eigo: "eat"
  23. )
  24.  
  25. FlashCard.create(
  26. kana: "うん",
  27. romaji: "un",
  28. eigo: "(informal yes)"
  29. )
  30.  
  31. FlashCard.create(
  32. kana: "うううん",
  33. romaji: "uuun",
  34. eigo: "(informal no)"
  35. )
  36.  
  37. FlashCard.create(
  38. kana: "こころ",
  39. romaji: "kokoro",
  40. eigo: "heart"
  41. )
  42.  
  43. FlashCard.create(
  44. kana: "どき どき",
  45. romaji: "doki doki",
  46. eigo: "(sound of nervous excitement)"
  47. )
  48.  
  49. FlashCard.create(
  50. kana: "わく わく",
  51. romaji: "waku waku",
  52. eigo: "(sound of happy excitement)"
  53. )
  54.  
  55. FlashCard.create(
  56. kana: "こころ どき どき",
  57. romaji: "kokoro doki doki",
  58. eigo: "I am nervous (heart makes sound of nervous excitement)"
  59. )
  60.  
  61. FlashCard.create(
  62. kana: "こころ わく わく",
  63. romaji: "kokoro waku waku",
  64. eigo: "I am excited (heart makes sound of happy excitement)"
  65. )
  66.  
  67. FlashCard.create(
  68. kana: "おなか",
  69. romaji: "onaka",
  70. eigo: "stomach"
  71. )
  72.  
  73. FlashCard.create(
  74. kana: "ぺこ ぺこ",
  75. romaji: "peko peko",
  76. eigo: "(sound of emptiness)"
  77. )
  78.  
  79. FlashCard.create(
  80. kana: "おなか ぺこ ぺこ",
  81. romaji: "onaka peko peko",
  82. eigo: "I am hungry (stomach makes sound of emptiness)"
  83. )
  84.  
  85. FlashCard.create(
  86. kana: "のど",
  87. romaji: "nodo",
  88. eigo: "throat"
  89. )
  90.  
  91. FlashCard.create(
  92. kana: "から から",
  93. romaji: "kara kara",
  94. eigo: "(sound of dryness)"
  95. )
  96.  
  97. FlashCard.create(
  98. kana: "のど から から",
  99. romaji: "nodo kara kara",
  100. eigo: "I am thirsty (throat makes sound of dryness)"
  101. )
  102.  
  103. FlashCard.create(
  104. kana: "いち ばん",
  105. romaji: "ichi-ban",
  106. eigo: "number one (literal); most, best (an idiomatic superlative)"
  107. )
  108.  
  109. FlashCard.create(
  110. kana: "ねむい",
  111. romaji: "nemui",
  112. eigo: "tired"
  113. )
  114.  
  115. FlashCard.create(
  116. kana: "ぐうぜん",
  117. romaji: "guuzen",
  118. eigo: "coincidence"
  119. )
  120.  
  121. FlashCard.create(
  122. kana: "じゃん けん ぽん",
  123. romaji: "jan ken pon",
  124. eigo: "(rock paper scissors)"
  125. )
  126.  
  127. FlashCard.create(
  128. kana: "あい こ でしょ",
  129. romaji: "ai ko desho",
  130. eigo: "(we are tied)"
  131. )
  132.  
  133. FlashCard.create(
  134. kana: "ほん や く",
  135. romaji: "hon' ya ku",
  136. eigo: "translation"
  137. )
  138.  
  139. FlashCard.create(
  140. kana: "ぷろ",
  141. romaji: "puro",
  142. eigo: "pro (professional)"
  143. )
  144.  
  145. FlashCard.create(
  146. kana: "し ほん や く ました",
  147. romaji: "shi hon' ya ku mashita",
  148. eigo: "translated"
  149. )
  150.  
  151. FlashCard.create(
  152. kana: "する",
  153. romaji: "suru",
  154. eigo: "do (jisho form)"
  155. )
  156.  
  157. FlashCard.create(
  158. kana: "し",
  159. romaji: "shi",
  160. eigo: "do (masu form)"
  161. )
  162.  
  163. FlashCard.create(
  164. kana: "およぐ",
  165. romaji: "oyogu",
  166. eigo: "swim (jisho form)"
  167. )
  168.  
  169. FlashCard.create(
  170. kana: "およぎ",
  171. romaji: "oyogi",
  172. eigo: "swim (masu form)"
  173. )
  174.  
  175. FlashCard.create(
  176. kana: "いただきます",
  177. romaji: "itadakimasu",
  178. eigo: "(said before eating)"
  179. )
  180.  
  181. FlashCard.create(
  182. kana: "どこ です か?",
  183. romaji: "doko desu ka?",
  184. eigo: "where is it?"
  185. )
  186.  
  187. FlashCard.create(
  188. kana: "だれ",
  189. romaji: "dare",
  190. eigo: "who"
  191. )
  192.  
  193. FlashCard.create(
  194. kana: "おいしい です",
  195. romaji: "oishii desu",
  196. eigo: "is delicious"
  197. )
  198.  
  199. FlashCard.create(
  200. kana: "おいしい かた です",
  201. romaji: "oishii kata desu",
  202. eigo: "was delicious"
  203. )
  204.  
  205. FlashCard.create(
  206. kana: "ども ありがとう ございます",
  207. romaji: "domo arigatou gozaimasu",
  208. eigo: "thank you very much"
  209. )
  210.  
  211. FlashCard.create(
  212. kana: "しゅん",
  213. romaji: "shun",
  214. eigo: "freshest / most seasonal"
  215. )
  216.  
  217. FlashCard.create(
  218. kana: "いぬ",
  219. romaji: "inu",
  220. eigo: "dog",
  221. part_of_speech: "noun",
  222. form: "has agency"
  223. )
  224.  
  225. FlashCard.create(
  226. kana: "ねこ",
  227. romaji: "neko",
  228. eigo: "cat",
  229. part_of_speech: "noun",
  230. form: "has agency"
  231. )
  232.  
  233. FlashCard.create(
  234. kana: "これ",
  235. romaji: "kore",
  236. eigo: "this"
  237. )
  238.  
  239. FlashCard.create(
  240. kana: "それ",
  241. romaji: "sore",
  242. eigo: "that"
  243. )
  244.  
  245. FlashCard.create(
  246. kana: "りょこう",
  247. romaji: "ryokou",
  248. eigo: "trip"
  249. )
  250.  
  251. FlashCard.create(
  252. kana: "しんかんせん",
  253. romaji: "shinkansen",
  254. eigo: "bullet train",
  255. part_of_speech: "noun",
  256. form: "inanimate object"
  257. )
  258.  
  259. FlashCard.create(
  260. kana: "わん わん",
  261. romaji: "wan wan",
  262. eigo: "dog barking (onomatopeia)"
  263. )
  264.  
  265. FlashCard.create(
  266. kana: "にゃあ にゃあ",
  267. romaji: "nyaa nyaa",
  268. eigo: "cat meowing (onomatopeia)"
  269. )
  270.  
  271. FlashCard.create(
  272. kana: "じしょ",
  273. romaji: "jisho",
  274. eigo: "dictionary; also the casual infinitive"
  275. )
  276.  
  277. FlashCard.create(
  278. kana: "うち",
  279. romaji: "uchi",
  280. eigo: "home (as opposed to house)",
  281. part_of_speech: "location"
  282. )
  283.  
  284. FlashCard.create(
  285. kana: "いえ",
  286. romaji: "ie",
  287. eigo: "house (as opposed to home)",
  288. part_of_speech: "location"
  289. )
  290.  
  291. FlashCard.create(
  292. kana: "うそ",
  293. romaji: "uso",
  294. eigo: "lie (noun)"
  295. )
  296.  
  297. FlashCard.create(
  298. kana: "あたらしい",
  299. romaji: "atarashii",
  300. eigo: "new"
  301. )
  302.  
  303. FlashCard.create(
  304. kana: "ほん",
  305. romaji: "hon",
  306. eigo: "book (noun)",
  307. part_of_speech: "noun",
  308. form: "inanimate object"
  309. )
  310.  
  311. FlashCard.create(
  312. kana: "くつ",
  313. romaji: "kutsu",
  314. eigo: "shoe",
  315. part_of_speech: "noun",
  316. form: "inanimate object"
  317. )
  318.  
  319. FlashCard.create(
  320. kana: "こい",
  321. romaji: "koi",
  322. eigo: "koi (fish)"
  323. )
  324.  
  325. FlashCard.create(
  326. kana: "そり",
  327. romaji: "sori",
  328. eigo: "sled",
  329. part_of_speech: "noun",
  330. form: "inanimate object"
  331. )
  332.  
  333. FlashCard.create(
  334. kana: "て",
  335. romaji: "te",
  336. eigo: "hand"
  337. )
  338.  
  339. FlashCard.create(
  340. kana: "め",
  341. romaji: "me",
  342. eigo: "eye"
  343. )
  344.  
  345. FlashCard.create(
  346. kana: "でも",
  347. romaji: "demo",
  348. eigo: "but / however"
  349. )
  350.  
  351. FlashCard.create(
  352. kana: "まちゃ",
  353. romaji: "macha",
  354. eigo: "ceremonial tea"
  355. )
  356.  
  357. FlashCard.create(
  358. kana: "れんしゅう",
  359. romaji: "renshuu",
  360. eigo: "practice (noun)"
  361. )
  362.  
  363. FlashCard.create(
  364. kana: "れんしゅう し ましょう",
  365. romaji: "renshuu shi mashou",
  366. eigo: "let's practice"
  367. )
  368.  
  369. FlashCard.create(
  370. kana: 'しつもん',
  371. romaji: "shitsumon",
  372. eigo: "question"
  373. )
  374.  
  375. FlashCard.create(
  376. kana: "えもじ",
  377. romaji: "emoji",
  378. eigo: "emoji"
  379. )
  380.  
  381. FlashCard.create(
  382. kana: "しごと",
  383. romaji: "shigoto",
  384. eigo: "job / work"
  385. )
  386.  
  387. FlashCard.create(
  388. kana: "かいしゃ",
  389. romaji: "kaisha",
  390. eigo: "office / company"
  391. )
  392.  
  393. FlashCard.create(
  394. kana: "だから",
  395. romaji: "dakara",
  396. eigo: "so / therefore"
  397. )
  398.  
  399. FlashCard.create(
  400. kana: "はんたい",
  401. romaji: "hantai",
  402. eigo: "opposite"
  403. )
  404.  
  405. FlashCard.create(
  406. kana: "にち ようび",
  407. romaji: "nichi youbi",
  408. eigo: "sunday",
  409. part_of_speech: "time"
  410. )
  411.  
  412. FlashCard.create(
  413. kana: "げつ ようび",
  414. romaji: "getsu youbi",
  415. eigo: "monday",
  416. part_of_speech: "time" # FIXME: this uses STLOVE, not real parts of speech
  417. )
  418.  
  419. FlashCard.create(
  420. kana: "か ようび",
  421. romaji: "ka youbi",
  422. eigo: "tuesday",
  423. part_of_speech: "time"
  424. )
  425.  
  426. FlashCard.create(
  427. kana: "すい ようび",
  428. romaji: "sui youbi",
  429. eigo: "wednesday",
  430. part_of_speech: "time"
  431. )
  432.  
  433. FlashCard.create(
  434. kana: "もく ようび",
  435. romaji: "moku youbi",
  436. eigo: "thursday",
  437. part_of_speech: "time"
  438. )
  439.  
  440. FlashCard.create(
  441. kana: "きん ようび",
  442. romaji: "kin youbi",
  443. eigo: "friday",
  444. part_of_speech: "time"
  445. )
  446.  
  447. FlashCard.create(
  448. kana: "ど ようび",
  449. romaji: "do youbi",
  450. eigo: "saturday",
  451. part_of_speech: "time"
  452. )
  453.  
  454. FlashCard.create(
  455. kana: "のむ",
  456. romaji: "nomu",
  457. eigo: "drink (jisho form)"
  458. )
  459.  
  460. FlashCard.create(
  461. kana: "のみ",
  462. romaji: "nomi",
  463. eigo: "drink (masu form)",
  464. part_of_speech: "verb",
  465. form: "masu"
  466. )
  467.  
  468. FlashCard.create(
  469. kana: "みる",
  470. romaji: "miru",
  471. eigo: "watch / look / see (jisho form)"
  472. )
  473.  
  474. FlashCard.create(
  475. kana: "み",
  476. romaji: "mi",
  477. eigo: "watch / look / see (masu form)",
  478. part_of_speech: "verb",
  479. form: "masu"
  480. )
  481.  
  482. FlashCard.create(
  483. kana: "はなす",
  484. romaji: "hanasu",
  485. eigo: "speak (jisho form)"
  486. )
  487.  
  488. FlashCard.create(
  489. kana: "はなし",
  490. romaji: "hanashi",
  491. eigo: "speak (masu form)",
  492. part_of_speech: "verb",
  493. form: "masu"
  494. )
  495.  
  496. FlashCard.create(
  497. kana: "きく",
  498. romaji: "kiku",
  499. eigo: "listen / ask (jisho form)"
  500. )
  501.  
  502. FlashCard.create(
  503. kana: "きき",
  504. romaji: "kiki",
  505. eigo: "listen / ask (masu form)",
  506. part_of_speech: "verb",
  507. form: "masu"
  508. )
  509.  
  510. FlashCard.create(
  511. kana: "よむ",
  512. romaji: "yomu",
  513. eigo: "read (jisho form)"
  514. )
  515.  
  516. FlashCard.create(
  517. kana: "よみ",
  518. romaji: "yomi",
  519. eigo: "read (masu form)",
  520. part_of_speech: "verb",
  521. form: "masu"
  522. )
  523.  
  524. FlashCard.create(
  525. kana: "かく",
  526. romaji: "kaku",
  527. eigo: "write / draw (jisho form)"
  528. )
  529.  
  530. FlashCard.create(
  531. kana: "かき",
  532. romaji: "kaki",
  533. eigo: "write / draw (masu form)",
  534. part_of_speech: "verb",
  535. form: "masu"
  536. )
  537.  
  538. FlashCard.create(
  539. kana: "かう",
  540. romaji: "kau",
  541. eigo: "buy (jisho form)"
  542. )
  543.  
  544. FlashCard.create(
  545. kana: "かい",
  546. romaji: "kai",
  547. eigo: "buy (masu form)",
  548. part_of_speech: "verb",
  549. form: "masu"
  550. )
  551.  
  552. FlashCard.create(
  553. kana: "いく",
  554. romaji: "iku",
  555. eigo: "go (jisho form)"
  556. )
  557.  
  558. FlashCard.create(
  559. kana: "いき",
  560. romaji: "iki",
  561. eigo: "go (masu form)"
  562. )
  563.  
  564. FlashCard.create(
  565. kana: "くる",
  566. romaji: "kuru",
  567. eigo: "come (jisho form)"
  568. )
  569.  
  570. FlashCard.create(
  571. kana: "き",
  572. romaji: "ki",
  573. eigo: "come (masu form)"
  574. )
  575.  
  576. FlashCard.create(
  577. kana: "やっと",
  578. romaji: "yatto",
  579. eigo: "finally"
  580. )
  581.  
  582. FlashCard.create(
  583. kana: "とても",
  584. romaji: "totemo",
  585. eigo: "very / totally"
  586. )
  587.  
  588. FlashCard.create(
  589. kana: "きん",
  590. romaji: "kin",
  591. eigo: "gold"
  592. )
  593.  
  594. FlashCard.create(
  595. kana: "きたない",
  596. romaji: "kitanai",
  597. eigo: "dirty"
  598. )
  599.  
  600. FlashCard.create(
  601. kana: "いたい",
  602. romaji: "itai",
  603. eigo: "ouch"
  604. )
  605.  
  606. FlashCard.create(
  607. kana: "ひこき",
  608. romaji: "hikoki",
  609. eigo: "airplane",
  610. part_of_speech: "noun",
  611. form: "inanimate object"
  612. )
  613.  
  614. FlashCard.create(
  615. kana: "はさみ",
  616. romaji: "hasami",
  617. eigo: "scissors",
  618. part_of_speech: "noun",
  619. form: "inanimate object"
  620. )
  621.  
  622. FlashCard.create(
  623. kana: "へび",
  624. romaji: "hebi",
  625. eigo: "snake",
  626. part_of_speech: "noun",
  627. form: "has agency"
  628. )
  629.  
  630. FlashCard.create(
  631. kana: "ごちそうさま",
  632. romaji: "gochisousama",
  633. eigo: "(when done eating) I'm full"
  634. )
  635.  
  636. FlashCard.create(
  637. kana: "さめ",
  638. romaji: "same",
  639. eigo: "shark",
  640. part_of_speech: "noun",
  641. form: "has agency"
  642. )
  643.  
  644. FlashCard.create(
  645. kana: "りょかん",
  646. romaji: "ryokan",
  647. eigo: "Japanese inn",
  648. part_of_speech: "location" # FIXME: this could also be a noun
  649. )
  650.  
  651. FlashCard.create(
  652. kana: "たたみ",
  653. romaji: "tatami",
  654. eigo: "bamboo mat",
  655. part_of_speech: "noun",
  656. form: "inanimate object"
  657. )
  658.  
  659. FlashCard.create(
  660. kana: "うし",
  661. romaji: "ushi",
  662. eigo: "cow",
  663. part_of_speech: "noun",
  664. form: "has agency"
  665. )
  666.  
  667. FlashCard.create(
  668. kana: "わぎゅ",
  669. romaji: "wagyu",
  670. eigo: "Japanese beef",
  671. part_of_speech: "noun",
  672. form: "inanimate object"
  673. )
  674.  
  675. FlashCard.create(
  676. kana: "き",
  677. romaji: "ki (not masu form of kuru)",
  678. eigo: "wear"
  679. )
  680.  
  681. FlashCard.create(
  682. kana: "きもの",
  683. romaji: "kimono",
  684. eigo: "robe ('wearing thing')",
  685. part_of_speech: "noun",
  686. form: "inanimate object"
  687. )
  688.  
  689. FlashCard.create(
  690. kana: "たべもの",
  691. romaji: "tabemono",
  692. eigo: "food ('eating thing')",
  693. part_of_speech: "noun",
  694. form: "inanimate object"
  695. )
  696.  
  697. FlashCard.create(
  698. kana: "のみもの",
  699. romaji: "nomimono",
  700. eigo: "drink ('drinking thing')",
  701. part_of_speech: "noun",
  702. form: "inanimate object"
  703. )
  704.  
  705. FlashCard.create(
  706. kana: "ます",
  707. romaji: "masu",
  708. eigo: "does or will",
  709. part_of_speech: "ending"
  710. )
  711.  
  712. FlashCard.create(
  713. kana: "ません",
  714. romaji: "masen",
  715. eigo: "does not or will not",
  716. part_of_speech: "ending"
  717. )
  718.  
  719. FlashCard.create(
  720. kana: "ました",
  721. romaji: "mashita",
  722. eigo: "did",
  723. part_of_speech: "ending"
  724. )
  725.  
  726. FlashCard.create(
  727. kana: "ませんでした",
  728. romaji: "masen deshita",
  729. eigo: "did not",
  730. part_of_speech: "ending"
  731. )
  732.  
  733. FlashCard.create(
  734. kana: "こんげつ",
  735. romaji: "kongetsu",
  736. eigo: "this month"
  737. )
  738.  
  739. FlashCard.create(
  740. kana: "らいしゅう",
  741. romaji: "raishuu",
  742. eigo: "next week"
  743. )
  744.  
  745. FlashCard.create(
  746. kana: "せんしゅう",
  747. romaji: "senshuu",
  748. eigo: "last week"
  749. )
  750.  
  751. FlashCard.create(
  752. kana: "こんしゅう",
  753. romaji: "konshuu",
  754. eigo: "this week"
  755. )
  756.  
  757. FlashCard.create(
  758. kana: "たいです",
  759. romaji: "taidesu",
  760. eigo: "I/we want (verb ending for wanting)"
  761. )
  762.  
  763. FlashCard.create(
  764. kana: "ましょう",
  765. romaji: "mashou",
  766. eigo: "let's (imperative-ish / subjunctive-ish?)",
  767. part_of_speech: "ending"
  768. )
  769.  
  770. FlashCard.create(
  771. kana: "がつ",
  772. romaji: "gatsu",
  773. eigo: "(month counter)"
  774. )
  775.  
  776. FlashCard.create(
  777. kana: "ホテル",
  778. romaji: "hoteru",
  779. eigo: "hotel",
  780. part_of_speech: "location"
  781. ) # FIXME: maybe rename "part_of_speech" "stlove" to be more real
  782.  
  783. FlashCard.create(
  784. kana: "クラス",
  785. romaji: "kurasu",
  786. eigo: "class",
  787. part_of_speech: "location"
  788. )
  789.  
  790. FlashCard.create(
  791. kana: "テレビ",
  792. romaji: "terebi",
  793. eigo: "television",
  794. part_of_speech: "noun",
  795. form: "inanimate object"
  796. )
  797.  
  798. FlashCard.create(
  799. kana: "なん",
  800. romaji: "nan",
  801. eigo: "what"
  802. )
  803.  
  804. FlashCard.create(
  805. kana: "なに",
  806. romaji: "nani",
  807. eigo: "what"
  808. )
  809.  
  810. FlashCard.create(
  811. kana: "いろ",
  812. romaji: "iro",
  813. eigo: "color",
  814. part_of_speech: "noun",
  815. form: "inanimate object"
  816. )
  817.  
  818. FlashCard.create(
  819. kana: "ふね",
  820. romaji: "fune",
  821. eigo: "ship",
  822. part_of_speech: "noun",
  823. form: "inanimate object"
  824. )
  825.  
  826. FlashCard.create(
  827. kana: "どく",
  828. romaji: "doku",
  829. eigo: "poison",
  830. part_of_speech: "noun",
  831. form: "inanimate object"
  832. )
  833.  
  834. FlashCard.create(
  835. kana: "と",
  836. romaji: "to",
  837. eigo: "and (for combining nouns)"
  838. )
  839.  
  840. FlashCard.create(
  841. kana: "そして",
  842. romaji: "soshite",
  843. eigo: "and (as conjunction)"
  844. )
  845.  
  846. FlashCard.create(
  847. kana: "ちゃ",
  848. romaji: "cha",
  849. eigo: "tea",
  850. part_of_speech: "noun",
  851. form: "inanimate object"
  852. )
  853.  
  854. FlashCard.create(
  855. kana: "おっと",
  856. romaji: "otto",
  857. eigo: "oops"
  858. )
  859.  
  860. FlashCard.create(
  861. kana: "がくせい",
  862. romaji: "gakusei",
  863. eigo: "student",
  864. part_of_speech: "noun"
  865. )
  866.  
  867. FlashCard.create(
  868. kana: "とげいか",
  869. romaji: "togeika",
  870. eigo: "potter",
  871. part_of_speech: "noun"
  872. )
  873.  
  874. FlashCard.create(
  875. kana: "やきもの",
  876. romaji: "yakimono",
  877. eigo: "pottery",
  878. part_of_speech: "noun",
  879. form: "inanimate object"
  880. )
  881.  
  882. FlashCard.create(
  883. kana: "とげい",
  884. romaji: "togei",
  885. eigo: "(fine art) pottery",
  886. part_of_speech: "noun",
  887. form: "inanimate object"
  888. )
  889.  
  890. FlashCard.create(
  891. kana: "じき",
  892. romaji: "jiki",
  893. eigo: "(porcelain) pottery",
  894. part_of_speech: "noun",
  895. form: "inanimate object"
  896. )
  897.  
  898. FlashCard.create(
  899. kana: "アドバイス",
  900. romaji: "adobaisu",
  901. eigo: "advice",
  902. part_of_speech: "noun",
  903. form: "inanimate object"
  904. )
  905.  
  906. FlashCard.create(
  907. kana: "なまえ",
  908. romaji: "namae",
  909. eigo: "name",
  910. part_of_speech: "noun",
  911. form: "inanimate object"
  912. )
  913.  
  914. FlashCard.create(
  915. kana: "ごかい",
  916. romaji: "gokai",
  917. eigo: "misunderstanding",
  918. part_of_speech: "noun",
  919. form: "inanimate object"
  920. )
  921.  
  922. FlashCard.create(
  923. kana: "ご かい",
  924. romaji: "go kai",
  925. eigo: "fifth floor",
  926. part_of_speech: "location"
  927. )
  928.  
  929. FlashCard.create(
  930. kana: "おかえりなさい",
  931. romaji: "okaerinasai",
  932. eigo: "welcome back"
  933. )
  934.  
  935. FlashCard.create(
  936. kana: "おかあさん",
  937. romaji: "okaasan",
  938. eigo: "mother",
  939. part_of_speech: "noun"
  940. )
  941.  
  942. FlashCard.create(
  943. kana: "まあ まあ",
  944. romaji: "maa maa",
  945. eigo: "so-so, ok, 'mas o menos' (Spanish)"
  946. )
  947.  
  948. FlashCard.create(
  949. kana: "ついたち",
  950. romaji: "tsuitachi",
  951. eigo: "1st day of month",
  952. part_of_speech: "time"
  953. )
  954.  
  955. FlashCard.create(
  956. kana: "ふつか",
  957. romaji: "futsuka",
  958. eigo: "2nd day of month",
  959. part_of_speech: "time"
  960. )
  961.  
  962. FlashCard.create(
  963. kana: "みっか",
  964. romaji: "mikka",
  965. eigo: "3rd day of month",
  966. part_of_speech: "time"
  967. )
  968.  
  969. FlashCard.create(
  970. kana: "よっか",
  971. romaji: "yokka",
  972. eigo: "4th day of month",
  973. part_of_speech: "time"
  974. )
  975.  
  976. FlashCard.create(
  977. kana: "いつか",
  978. romaji: "itsuka",
  979. eigo: "5th day of month (or 'someday')",
  980. part_of_speech: "time"
  981. )
  982.  
  983. FlashCard.create(
  984. kana: "むいか",
  985. romaji: "muika",
  986. eigo: "6th day of month",
  987. part_of_speech: "time"
  988. )
  989.  
  990. FlashCard.create(
  991. kana: "なのか",
  992. romaji: "nanoka",
  993. eigo: "7th day of month",
  994. part_of_speech: "time"
  995. )
  996.  
  997. FlashCard.create(
  998. kana: "ようか",
  999. romaji: "youka",
  1000. eigo: "8th day of month",
  1001. part_of_speech: "time"
  1002. )
  1003.  
  1004. FlashCard.create(
  1005. kana: "ここのか",
  1006. romaji: "kokonoka",
  1007. eigo: "9th day of month",
  1008. part_of_speech: "time"
  1009. )
  1010.  
  1011. FlashCard.create(
  1012. kana: "とうか",
  1013. romaji: "touka",
  1014. eigo: "10th day of month",
  1015. part_of_speech: "time"
  1016. )
  1017.  
  1018. FlashCard.create(
  1019. kana: "あつい",
  1020. romaji: "atsui",
  1021. eigo: "hot"
  1022. )
  1023.  
  1024. FlashCard.create(
  1025. kana: "さむい",
  1026. romaji: "samui",
  1027. eigo: "cold (weather)"
  1028. )
  1029.  
  1030. FlashCard.create(
  1031. kana: "つめたい",
  1032. romaji: "tsumetai",
  1033. eigo: "cold (things)"
  1034. )
  1035.  
  1036. FlashCard.create(
  1037. kana: "まずい",
  1038. romaji: "mazui",
  1039. eigo: "bad-tasting"
  1040. )
  1041.  
  1042. FlashCard.create(
  1043. kana: "かわいい",
  1044. romaji: "kawaii",
  1045. eigo: "cute"
  1046. )
  1047.  
  1048. FlashCard.create(
  1049. kana: "こわい",
  1050. romaji: "kowai",
  1051. eigo: "scary"
  1052. )
  1053.  
  1054. FlashCard.create(
  1055. kana: "おきい",
  1056. romaji: "okii",
  1057. eigo: "big"
  1058. )
  1059.  
  1060. FlashCard.create(
  1061. kana: "ちいさい",
  1062. romaji: "chiisai",
  1063. eigo: "small"
  1064. )
  1065.  
  1066. FlashCard.create(
  1067. kana: "きれい",
  1068. romaji: "kirei",
  1069. eigo: "pretty / clean"
  1070. )
  1071.  
  1072. FlashCard.create(
  1073. kana: "きたない",
  1074. romaji: "kitanai",
  1075. eigo: "dirty"
  1076. )
  1077.  
  1078. FlashCard.create(
  1079. kana: "やすい",
  1080. romaji: "yasui",
  1081. eigo: "cheap"
  1082. )
  1083.  
  1084. FlashCard.create(
  1085. kana: "たかい",
  1086. romaji: "takai",
  1087. eigo: "expensive"
  1088. )
  1089.  
  1090. FlashCard.create(
  1091. kana: "ふるい",
  1092. romaji: "furui",
  1093. eigo: "old"
  1094. )
  1095.  
  1096. FlashCard.create(
  1097. kana: "やさしい",
  1098. romaji: "yasashii",
  1099. eigo: "easy"
  1100. )
  1101.  
  1102. FlashCard.create(
  1103. kana: "むずかしい",
  1104. romaji: "muzukashii",
  1105. eigo: "difficult"
  1106. )
  1107.  
  1108. FlashCard.create(
  1109. kana: "ちかい",
  1110. romaji: "chikai",
  1111. eigo: "close / near"
  1112. )
  1113.  
  1114. FlashCard.create(
  1115. kana: "とおい",
  1116. romaji: "toi",
  1117. eigo: "far"
  1118. ) # FIXME: check spelling of all adjectives against pink page
  1119.  
  1120. FlashCard.create(
  1121. kana: "はやい",
  1122. romaji: "hayai",
  1123. eigo: "early / fast"
  1124. )
  1125.  
  1126. FlashCard.create(
  1127. kana: "おそい",
  1128. romaji: "osoi",
  1129. eigo: "late / slow"
  1130. )
  1131.  
  1132. FlashCard.create(
  1133. kana: "おもしろい",
  1134. romaji: "omoshiroi",
  1135. eigo: "interesting"
  1136. )
  1137.  
  1138. FlashCard.create(
  1139. kana: "つまらない",
  1140. romaji: "tsumaranai",
  1141. eigo: "boring"
  1142. )
  1143.  
  1144. FlashCard.create(
  1145. kana: "たのしい",
  1146. romaji: "tanoshii",
  1147. eigo: "fun"
  1148. )
  1149.  
  1150. FlashCard.create(
  1151. kana: "いそがしい",
  1152. romaji: "isogashii",
  1153. eigo: "busy"
  1154. )
  1155.  
  1156. FlashCard.create(
  1157. kana: "ひま",
  1158. romaji: "hima",
  1159. eigo: "free / not busy"
  1160. )
  1161.  
  1162. FlashCard.create(
  1163. kana: "しずこ",
  1164. romaji: "shizuko",
  1165. eigo: "quiet"
  1166. )
  1167.  
  1168. FlashCard.create(
  1169. kana: "にぎやか",
  1170. romaji: "nigiyaka",
  1171. eigo: "noisy (positive)"
  1172. )
  1173.  
  1174. FlashCard.create(
  1175. kana: "ううるさい",
  1176. romaji: "uurusai",
  1177. eigo: "noisy (negative, U sound)"
  1178. )
  1179.  
  1180. FlashCard.create(
  1181. kana: "やかましい",
  1182. romaji: "yakamashii",
  1183. eigo: "noisy (negative, Y sound)"
  1184. )
  1185.  
  1186. FlashCard.create(
  1187. kana: "ながい",
  1188. romaji: "nagai",
  1189. eigo: "long"
  1190. )
  1191.  
  1192. FlashCard.create(
  1193. kana: "みじかい",
  1194. romaji: "mijikai",
  1195. eigo: "short"
  1196. )
  1197.  
  1198. FlashCard.create(
  1199. kana: "おもい",
  1200. romaji: "omoi",
  1201. eigo: "heavy"
  1202. )
  1203.  
  1204. FlashCard.create(
  1205. kana: "かるい",
  1206. romaji: "karui",
  1207. eigo: "light"
  1208. )
  1209.  
  1210. FlashCard.create(
  1211. kana: "ただいま",
  1212. romaji: "tadaima",
  1213. eigo: "I'm back"
  1214. )
  1215.  
  1216. FlashCard.create(
  1217. kana: "マアカ",
  1218. romaji: "maakaa",
  1219. eigo: "marker (e.g. felt-tip pen)"
  1220. )
  1221.  
  1222. FlashCard.create(
  1223. kana: "ロジャア",
  1224. romaji: "Rojaa",
  1225. eigo: "Roger"
  1226. )
  1227.  
  1228. FlashCard.create(
  1229. kana: "カアク",
  1230. romaji: "Kaaku",
  1231. eigo: "Kirk"
  1232. )
  1233.  
  1234. FlashCard.create(
  1235. kana: "マット",
  1236. romaji: "Matto",
  1237. eigo: "Matt"
  1238. )
  1239.  
  1240. FlashCard.create(
  1241. kana: "トッド",
  1242. romaji: "Toddo",
  1243. eigo: "Todd"
  1244. )
  1245.  
  1246. FlashCard.create(
  1247. kana: "インタアネット",
  1248. romaji: "intaanetto",
  1249. eigo: "Internet"
  1250. )
  1251.  
  1252. FlashCard.create(
  1253. kana: "きょう は なん にち ですか?",
  1254. romaji: "Kyou wa nan nichi desuka?",
  1255. eigo: "What day (of the month) is it today?"
  1256. )
  1257.  
  1258. FlashCard.create(
  1259. kana: "きょうは なん ようび ですか?",
  1260. romaji: "Kyou wa nan youbi desuka?",
  1261. eigo: "What day (of the week) is it today?"
  1262. )
  1263.  
  1264. FlashCard.create(
  1265. kana: "お なまえは なん ですか?",
  1266. romaji: "O namae wa nan desuka?",
  1267. eigo: "What is your name?"
  1268. )
  1269.  
  1270. FlashCard.create(
  1271. kana: "なにじんですか?",
  1272. romaji: "Nani jin desu ka?",
  1273. eigo: "What is your nationality?"
  1274. )
  1275.  
  1276. FlashCard.create(
  1277. kana: "なに ご お はなし ますか?",
  1278. romaji: "Nani go o hanashi masuka?",
  1279. eigo: "What language(s) do you speak?"
  1280. )
  1281.  
  1282. FlashCard.create(
  1283. kana: "これは なに いろ ですか?",
  1284. romaji: "Kore wa nani iro desuka?",
  1285. eigo: "What color is this?"
  1286. )
  1287.  
  1288. FlashCard.create(
  1289. kana: "'Airplane'はにほんごでなんですか?",
  1290. romaji: "Airplane wa nihongo de nan desuka?",
  1291. eigo: "What is 'airplane' in Japanese?"
  1292. # FIXME: part_of_speech: 'sentence' would enable marginally more interesting sentence flash cards
  1293. )
  1294.  
  1295. FlashCard.create(
  1296. kana: 'しずかに',
  1297. romaji: 'shizukani',
  1298. eigo: 'be quiet'
  1299. )
  1300.  
  1301. FlashCard.create(
  1302. kana: 'せんせんしゅう',
  1303. romaji: 'sensenshuu',
  1304. eigo: 'week before last'
  1305. )
  1306.  
  1307. FlashCard.create(
  1308. kana: 'せんせんげつ',
  1309. romaji: 'sensengetsu',
  1310. eigo: 'month before last'
  1311. )
  1312.  
  1313. FlashCard.create(
  1314. kana: 'おはよう',
  1315. romaji: 'ohayou',
  1316. eigo: 'good morning'
  1317. )
  1318.  
  1319. FlashCard.create(
  1320. kana: 'かたかなご',
  1321. romaji: 'katakanago',
  1322. eigo: 'Japanglish'
  1323. )
  1324.  
  1325. FlashCard.create(
  1326. kana: 'ベナドリル',
  1327. romaji: 'benadoriru',
  1328. eigo: 'Benadryl'
  1329. )
  1330.  
  1331. FlashCard.create(
  1332. kana: 'しつもんがあります',
  1333. romaji: 'shitsumon ga arimasu',
  1334. eigo: 'I have a question'
  1335. )
  1336.  
  1337. FlashCard.create(
  1338. kana: 'スケジュール',
  1339. romaji: 'sukejuuru',
  1340. eigo: 'schedule'
  1341. )
  1342.  
  1343. FlashCard.create(
  1344. kana: 'アレルギー',
  1345. romaji: 'arerugii',
  1346. eigo: 'allergy'
  1347. )
  1348.  
  1349. FlashCard.create(
  1350. kana: 'ところで',
  1351. romaji: 'tokoro de',
  1352. eigo: 'by the way'
  1353. )
  1354.  
  1355. FlashCard.create(
  1356. kana: 'ドイツゴ',
  1357. romaji: 'doitsugo',
  1358. eigo: 'German ("Deutsch")'
  1359. )
  1360.  
  1361. FlashCard.create(
  1362. kana: 'ふくしゅう',
  1363. romaji: 'fukushuu',
  1364. eigo: 'review'
  1365. )
  1366.  
  1367. FlashCard.create(
  1368. kana: 'やさい',
  1369. romaji: 'yasai',
  1370. eigo: 'vegetable'
  1371. )
  1372.  
  1373. FlashCard.create(
  1374. kana: 'おわりましょう',
  1375. romaji: 'owari mashou',
  1376. eigo: "let's finish"
  1377. )
  1378.  
  1379. FlashCard.create(
  1380. kana: 'ドル',
  1381. romaji: 'doru',
  1382. eigo: "dollar"
  1383. )
  1384.  
  1385. FlashCard.create(
  1386. kana: 'ざんねん',
  1387. romaji: 'zannen',
  1388. eigo: "idiomatic: it's too bad, literal: disappointment"
  1389. )
  1390.  
  1391. FlashCard.create(
  1392. kana: 'いしゃ',
  1393. romaji: 'isha',
  1394. eigo: "doctor"
  1395. )
  1396.  
  1397. FlashCard.create(
  1398. kana: 'すこし',
  1399. romaji: 'sukoshi',
  1400. eigo: "a little"
  1401. )
  1402.  
  1403. FlashCard.create(
  1404. kana: 'たくさん',
  1405. romaji: 'takusan',
  1406. eigo: "a lot"
  1407. )
  1408.  
  1409. FlashCard.create(
  1410. kana: 'ど でも い',
  1411. romaji: 'do demo i',
  1412. eigo: "whatever (idiomatic?)"
  1413. )
  1414.  
  1415. FlashCard.create(
  1416. kana: 'みみ',
  1417. romaji: 'mimi',
  1418. eigo: "ears"
  1419. )
  1420.  
  1421. FlashCard.create(
  1422. kana: 'すぅがく',
  1423. romaji: 'suugaku',
  1424. eigo: "math"
  1425. )
  1426.  
  1427. FlashCard.create(
  1428. kana: 'ゆっくり',
  1429. romaji: 'yukkuri',
  1430. eigo: "slowly"
  1431. )
  1432.  
  1433. FlashCard.create(
  1434. kana: 'ふりん',
  1435. romaji: 'furin',
  1436. eigo: "extramarital affair"
  1437. )
  1438.  
  1439. FlashCard.create(
  1440. kana: 'ふぅりん',
  1441. romaji: 'fuurin',
  1442. eigo: "wind chime"
  1443. )
  1444.  
  1445. FlashCard.create(
  1446. kana: 'はは',
  1447. romaji: 'haha',
  1448. eigo: "mother (humble form)"
  1449. )
  1450.  
  1451. FlashCard.create(
  1452. kana: 'むせぅめ',
  1453. romaji: 'musume',
  1454. eigo: "daughter (humble form)"
  1455. )
  1456.  
  1457. FlashCard.create(
  1458. kana: 'むせぅめさん',
  1459. romaji: 'musume-san',
  1460. eigo: "your daughter or their daughter (humble form + honorific)"
  1461. )
  1462.  
  1463. FlashCard.create(
  1464. kana: 'しゅじん',
  1465. romaji: 'shujin',
  1466. eigo: "husband (humble form)"
  1467. )
  1468.  
  1469. FlashCard.create(
  1470. kana: 'しゅうじん',
  1471. romaji: 'shuujin',
  1472. eigo: "prisoner"
  1473. )
  1474.  
  1475. FlashCard.create(
  1476. kana: 'ご しゅじん',
  1477. romaji: 'go shujin',
  1478. eigo: "your husband or their husband (honorific + humble form)"
  1479. )
  1480.  
  1481. FlashCard.create(
  1482. kana: 'ひく',
  1483. romaji: 'hiku',
  1484. eigo: "subtract (math), pull, drag, bring"
  1485. )
  1486.  
  1487. FlashCard.create(
  1488. kana: 'パセント',
  1489. romaji: 'pasento',
  1490. eigo: "percent"
  1491. )
  1492.  
  1493. FlashCard.create(
  1494. kana: 'えん',
  1495. romaji: 'en',
  1496. eigo: "yen (japanese currency)"
  1497. )
  1498.  
  1499. FlashCard.create(
  1500. kana: 'ゆめ',
  1501. romaji: 'yume',
  1502. eigo: "dream"
  1503. )
  1504.  
  1505. FlashCard.create(
  1506. kana: 'はな',
  1507. romaji: 'hana',
  1508. eigo: "nose, or flower"
  1509. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement