-
Notifications
You must be signed in to change notification settings - Fork 7
/
seed.rb
81 lines (77 loc) · 2.05 KB
/
seed.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
require 'json'
require 'date'
require 'http'
require './db'
WORDS = {
"video": "影片",
"computer mouse": "電腦滑鼠",
"harddisk": "硬碟",
"CD": "光碟",
"HD": "高畫質",
"software": "軟體",
"hardware": "硬體",
"computer memory": "電腦記憶體",
"potato": "馬鈴薯",
"instant noodles": "泡麵",
"quality": "品質",
"project": "專案",
"mega": "百萬",
"laser": "雷射",
"internet": "網際網路",
"compatibility": "相容性",
"information": "資訊",
"database": "資料庫",
"digital": "數位,數位的",
"server": "伺服器",
"AI": "人工智慧",
"rapper": "饒舌歌手",
"butter": "奶油",
"screen": "螢幕",
"taxi": "計程車",
"message": "訊息",
"default": "預設",
"printer": "印表機",
"yogurt": "優格",
"plastic": "塑膠",
"guinea pig": "天竺鼠",
"college major": "大學主修",
"convenience store": "便利商店",
"rubik's cube": "魔術方塊",
"uninstall": "解除安裝",
"icon": "圖示",
"program": "程式",
"motherboard": "主機板",
"laptop": "筆記型電腦",
"pineapple": "鳳梨",
"text": "文字",
"billiards": "撞球,英式撞球",
"protocol": "協定",
"roller coaster": "雲霄飛車",
"through": "透過",
"frames per second": "每秒影格數",
"cybercafe": "網咖",
"good morning": "早安",
"transistor": "電晶體",
"instant coffee": "即溶咖啡",
"Fed": "聯準會",
"P/E ratio": "本益比",
"earthquake magnitude": "地震規模",
"earthquake intensity": "地震震度",
"mantle": "地函",
"operations": "營運",
"optimization": "最佳化"
}
words = DB[:words]
WORDS.each do |english_word, correct_zhtw_word|
english_word = english_word.to_s
if words.where(:english_word => english_word).count == 0
puts "adding #{english_word}..."
words.insert({
english_word: english_word,
correct_zhtw_word: correct_zhtw_word
})
else
puts "updating #{english_word}..."
words.where({ :english_word => english_word }).update({ correct_zhtw_word: correct_zhtw_word })
end
end