go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/kana-server/pkg/kana/katakana_words.go (about)

     1  /*
     2  
     3  Copyright (c) 2023 - Present. Will Charczuk. All rights reserved.
     4  Use of this source code is governed by a MIT license that can be found in the LICENSE file at the root of the repository.
     5  
     6  */
     7  
     8  package kana
     9  
    10  // KatakanaWords are words in katakana to quiz.
    11  var KatakanaWords = map[string]string{
    12  	"カメラ":       "camera",
    13  	"コーヒー":      "coffee",
    14  	"ビール":       "beer",
    15  	"オレンジ":      "orange",
    16  	"ガラス":       "glass",
    17  	"コンピューター":   "computer",
    18  	"テレビ":       "television",
    19  	"ラップトップ":    "laptop",
    20  	"ホテル":       "hotel",
    21  	"コンビニ":      "convenience store",
    22  	"エコノミークラス":  "economy class",
    23  	"スーパーマーケット": "supermarket",
    24  	"アメリカン":     "american",
    25  	"ドイツ人":      "german",
    26  	"フランス人":     "french",
    27  	"イタリア人":     "italian",
    28  }