From c549bb9aa4fdd320ba6a9ef8d81e1510ff3c7fa7 Mon Sep 17 00:00:00 2001 From: itzmeowww Date: Fri, 2 Oct 2020 14:58:36 +0700 Subject: [PATCH 1/3] add thai language --- README.md | 28 +- client/src/store/index.js | 12 +- server/data/languages.json | 116 +- server/data/words/thai.json | 12002 ++++++++++++++++++++++++++++++++++ 4 files changed, 12085 insertions(+), 73 deletions(-) create mode 100644 server/data/words/thai.json diff --git a/README.md b/README.md index 0d987713..b91bfc18 100644 --- a/README.md +++ b/README.md @@ -25,12 +25,14 @@ ![Main Screenshot](docs/screenshots/main_screenshot.png) ## ✨ Features + - New word everyday - Listen to the word in the chosen language - New inspirational quote about learning - Dark Interface ## 🌎 Supported Languages + - 🇿🇦 Afrikaans - 🇸🇦 Arabic - 🇧🇩 Bangla @@ -45,13 +47,14 @@ - 🇰🇷 Korean - 🇷🇺 Russian - 🇪🇸 Spanish +- ᴛʜ Thai ## 🛠 Built With -* [Vue.js](https://vuejs.org/) - Frontend -* [Node.js](https://nodejs.org/en/) - Backend -* [Pug](https://pugjs.org/api/getting-started.html) - Template Engine -* [Jest](https://jestjs.io/) - Testing Framework +- [Vue.js](https://vuejs.org/) - Frontend +- [Node.js](https://nodejs.org/en/) - Backend +- [Pug](https://pugjs.org/api/getting-started.html) - Template Engine +- [Jest](https://jestjs.io/) - Testing Framework ## 🤝 Contributing @@ -76,13 +79,13 @@ Here's a [guide](https://github.com/jayehernandez/letra-extension/blob/master/do ## 🙏🏻 Acknowledgements -* Boilerplate Vue Extension from [Kocal's vue-web-extension](https://github.com/Kocal/vue-web-extension) -* Text to Speech API from [ResponsiveVoice API](https://responsivevoice.org/api/) -* Background Image API from [Unsplash](https://unsplash.com/developers) -* Twitter Flag Emojis from [Twemoji Awesome](https://github.com/ellekasai/twemoji-awesome) -* Icons from [Raj Dev](https://freeicons.io/profile/714) -* [Vue Analytics](https://github.com/MatteoGabriele/vue-analytics) -* README generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator) +- Boilerplate Vue Extension from [Kocal's vue-web-extension](https://github.com/Kocal/vue-web-extension) +- Text to Speech API from [ResponsiveVoice API](https://responsivevoice.org/api/) +- Background Image API from [Unsplash](https://unsplash.com/developers) +- Twitter Flag Emojis from [Twemoji Awesome](https://github.com/ellekasai/twemoji-awesome) +- Icons from [Raj Dev](https://freeicons.io/profile/714) +- [Vue Analytics](https://github.com/MatteoGabriele/vue-analytics) +- README generated with ❤️ by [readme-md-generator](https://github.com/kefranabg/readme-md-generator) Give a ⭐️ if this project helped you! @@ -91,7 +94,9 @@ Give a ⭐️ if this project helped you! Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)): + [![All Contributors](https://img.shields.io/badge/all_contributors-81-orange.svg?style=flat-square)](#contributors-) + @@ -207,6 +212,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d + This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome! diff --git a/client/src/store/index.js b/client/src/store/index.js index 6e03d1c0..196aabe5 100644 --- a/client/src/store/index.js +++ b/client/src/store/index.js @@ -6,7 +6,7 @@ import axios from 'axios'; Vue.use(Vuex); -export const currentLanguagesCount = 14; +export const currentLanguagesCount = 15; export const state = { dailyData: { @@ -24,7 +24,7 @@ export const state = { export const actions = { getSelectedLanguages({ commit, dispatch }) { commit('setLoading', true); - chrome.storage.sync.get('selectedLanguages', response => { + chrome.storage.sync.get('selectedLanguages', (response) => { let { selectedLanguages } = response; if (selectedLanguages === undefined || selectedLanguages.length === 0) { selectedLanguages = ['german']; @@ -42,7 +42,7 @@ export const actions = { dispatch('retrieveDailyData'); }, getDailyData({ commit, dispatch }) { - chrome.storage.sync.get('dailyData', response => { + chrome.storage.sync.get('dailyData', (response) => { const data = response.dailyData; if (!!data && data.created_at === new Date().toDateString()) { dispatch('saveDailyData', data); @@ -55,7 +55,7 @@ export const actions = { const languages = state.selectedLanguages.join(','); axios .get(`${process.env.VUE_APP_API_URL}/daily?languages=${languages}`) - .then(response => { + .then((response) => { const { data } = response; data.created_at = new Date().toDateString(); chrome.storage.sync.set({ dailyData: data }); @@ -70,7 +70,7 @@ export const actions = { commit('setDailyData', data); }, getLanguageOptions({ dispatch }) { - chrome.storage.sync.get('languageOptions', response => { + chrome.storage.sync.get('languageOptions', (response) => { const data = response.languageOptions; if (!!data && data.length === currentLanguagesCount) dispatch('saveLanguageOptions', data); @@ -80,7 +80,7 @@ export const actions = { retrieveLanguageOptions({ commit, dispatch }) { axios .get(`${process.env.VUE_APP_API_URL}/languages`) - .then(response => { + .then((response) => { const options = Object.keys(response.data.languages); chrome.storage.sync.set({ languageOptions: options }); dispatch('saveLanguageOptions', options); diff --git a/server/data/languages.json b/server/data/languages.json index 823fd308..9fc11105 100644 --- a/server/data/languages.json +++ b/server/data/languages.json @@ -1,58 +1,62 @@ { - "afrikaans": { - "flag": "twa-south-south-africa-flag", - "voice": "Afrikaans Male" - }, - "arabic": { - "flag": "twa-saudi-arabia-flag", - "voice": "Arabic Female" - }, - "bangla": { - "flag": "twa-bangladesh-flag", - "voice": "Bangla Bangladesh Male" - }, - "brazilian-portuguese": { - "flag": "twa-brazil-flag", - "voice": "Brazilian Portuguese Female" - }, - "chinese-simplified": { - "flag": "twa-china-flag", - "voice": "Chinese Female" - }, - "filipino": { - "flag": "twa-philippines-flag", - "voice": "Filipino Female" - }, - "french": { - "flag": "twa-france-flag", - "voice": "French Female" - }, - "german": { - "flag": "twa-germany-flag", - "voice": "Deutsch Female" - }, - "hindi": { - "flag": "twa-india-flag", - "voice": "Hindi Female" - }, - "indonesian": { - "flag": "twa-indonesia-flag", - "voice": "Indonesian Female" - }, - "japanese": { - "flag": "twa-japan-flag", - "voice": "Japanese Female" - }, - "korean": { - "flag": "twa-korea-south-south-korea-flag", - "voice": "Korean Female" - }, - "russian": { - "flag": "twa-russia-flag", - "voice": "Russian Female" - }, - "spanish": { - "flag": "twa-spain-flag", - "voice": "Spanish Female" - } + "afrikaans": { + "flag": "twa-south-south-africa-flag", + "voice": "Afrikaans Male" + }, + "arabic": { + "flag": "twa-saudi-arabia-flag", + "voice": "Arabic Female" + }, + "bangla": { + "flag": "twa-bangladesh-flag", + "voice": "Bangla Bangladesh Male" + }, + "brazilian-portuguese": { + "flag": "twa-brazil-flag", + "voice": "Brazilian Portuguese Female" + }, + "chinese-simplified": { + "flag": "twa-china-flag", + "voice": "Chinese Female" + }, + "filipino": { + "flag": "twa-philippines-flag", + "voice": "Filipino Female" + }, + "french": { + "flag": "twa-france-flag", + "voice": "French Female" + }, + "german": { + "flag": "twa-germany-flag", + "voice": "Deutsch Female" + }, + "hindi": { + "flag": "twa-india-flag", + "voice": "Hindi Female" + }, + "indonesian": { + "flag": "twa-indonesia-flag", + "voice": "Indonesian Female" + }, + "japanese": { + "flag": "twa-japan-flag", + "voice": "Japanese Female" + }, + "korean": { + "flag": "twa-korea-south-south-korea-flag", + "voice": "Korean Female" + }, + "russian": { + "flag": "twa-russia-flag", + "voice": "Russian Female" + }, + "spanish": { + "flag": "twa-spain-flag", + "voice": "Spanish Female" + }, + "thai": { + "flag": "twa-thailand-flag", + "voice": "Thai Female" + } } diff --git a/server/data/words/thai.json b/server/data/words/thai.json new file mode 100644 index 00000000..d2f64a50 --- /dev/null +++ b/server/data/words/thai.json @@ -0,0 +1,12002 @@ +[ + { + "word": "", + "translation": "a" + }, + { + "word": "ละทิ้ง", + "translation": "abandon" + }, + { + "word": "ความสามารถ", + "translation": "ability" + }, + { + "word": "สามารถ", + "translation": "able" + }, + { + "word": "การแท้ง", + "translation": "abortion" + }, + { + "word": "เกี่ยวกับ", + "translation": "about" + }, + { + "word": "ข้างบน", + "translation": "above" + }, + { + "word": "ในต่างประเทศ", + "translation": "abroad" + }, + { + "word": "ขาด", + "translation": "absence" + }, + { + "word": "แน่นอน", + "translation": "absolute" + }, + { + "word": "อย่างแน่นอน", + "translation": "absolutely" + }, + { + "word": "ซึมซับ", + "translation": "absorb" + }, + { + "word": "การละเมิด", + "translation": "abuse" + }, + { + "word": "วิชาการ", + "translation": "academic" + }, + { + "word": "ยอมรับ", + "translation": "accept" + }, + { + "word": "เข้าไป", + "translation": "access" + }, + { + "word": "อุบัติเหตุ", + "translation": "accident" + }, + { + "word": "มากับ", + "translation": "accompany" + }, + { + "word": "ทำให้สำเร็จ", + "translation": "accomplish" + }, + { + "word": "ตาม", + "translation": "according" + }, + { + "word": "บัญชีผู้ใช้", + "translation": "account" + }, + { + "word": "ถูกต้อง", + "translation": "accurate" + }, + { + "word": "กล่าวโทษ", + "translation": "accuse" + }, + { + "word": "บรรลุ", + "translation": "achieve" + }, + { + "word": "ความสำเร็จ", + "translation": "achievement" + }, + { + "word": "กรด", + "translation": "acid" + }, + { + "word": "รับทราบ", + "translation": "acknowledge" + }, + { + "word": "ซื้อ", + "translation": "acquire" + }, + { + "word": "ข้าม", + "translation": "across" + }, + { + "word": "ทำหน้าที่", + "translation": "act" + }, + { + "word": "หนังบู๊", + "translation": "action" + }, + { + "word": "คล่องแคล่ว", + "translation": "active" + }, + { + "word": "กิจกรรม", + "translation": "activist" + }, + { + "word": "กิจกรรม", + "translation": "activity" + }, + { + "word": "นักแสดงชาย", + "translation": "actor" + }, + { + "word": "นักแสดงหญิง", + "translation": "actress" + }, + { + "word": "ที่จริง", + "translation": "actual" + }, + { + "word": "แท้จริง", + "translation": "actually" + }, + { + "word": "การโฆษณา", + "translation": "ad" + }, + { + "word": "ปรับ", + "translation": "adapt" + }, + { + "word": "เพิ่ม", + "translation": "add" + }, + { + "word": "ส่วนที่เพิ่มเข้าไป", + "translation": "addition" + }, + { + "word": "เพิ่มเติม", + "translation": "additional" + }, + { + "word": "ที่อยู่", + "translation": "address" + }, + { + "word": "เพียงพอ", + "translation": "adequate" + }, + { + "word": "ปรับ", + "translation": "adjust" + }, + { + "word": "การปรับ", + "translation": "adjustment" + }, + { + "word": "การบริหาร", + "translation": "administration" + }, + { + "word": "ผู้บริหาร", + "translation": "administrator" + }, + { + "word": "ชื่นชม", + "translation": "admire" + }, + { + "word": "การรับเข้า", + "translation": "admission" + }, + { + "word": "ยอมรับ", + "translation": "admit" + }, + { + "word": "วัยรุ่น", + "translation": "adolescent" + }, + { + "word": "นำมาใช้", + "translation": "adopt" + }, + { + "word": "ผู้ใหญ่", + "translation": "adult" + }, + { + "word": "ล่วงหน้า", + "translation": "advance" + }, + { + "word": "สูง", + "translation": "advanced" + }, + { + "word": "ความได้เปรียบ", + "translation": "advantage" + }, + { + "word": "การผจญภัย", + "translation": "adventure" + }, + { + "word": "การโฆษณา", + "translation": "advertising" + }, + { + "word": "คำแนะนำ", + "translation": "advice" + }, + { + "word": "ให้คำแนะนำ", + "translation": "advise" + }, + { + "word": "ที่ปรึกษา", + "translation": "adviser" + }, + { + "word": "สนับสนุน", + "translation": "advocate" + }, + { + "word": "เรื่อง", + "translation": "affair" + }, + { + "word": "มีผลต่อ", + "translation": "affect" + }, + { + "word": "จ่าย", + "translation": "afford" + }, + { + "word": "เกรงกลัว", + "translation": "afraid" + }, + { + "word": "แอฟริกัน", + "translation": "African" + }, + { + "word": "แอฟริกันอเมริกัน", + "translation": "African-American" + }, + { + "word": "หลังจาก", + "translation": "after" + }, + { + "word": "ตอนบ่าย", + "translation": "afternoon" + }, + { + "word": "อีกครั้ง", + "translation": "again" + }, + { + "word": "ต่อต้าน", + "translation": "against" + }, + { + "word": "อายุ", + "translation": "age" + }, + { + "word": "หน่วยงาน", + "translation": "agency" + }, + { + "word": "ระเบียบวาระการประชุม", + "translation": "agenda" + }, + { + "word": "ตัวแทน", + "translation": "agent" + }, + { + "word": "ก้าวร้าว", + "translation": "aggressive" + }, + { + "word": "มาแล้ว", + "translation": "ago" + }, + { + "word": "ตกลง", + "translation": "agree" + }, + { + "word": "ข้อตกลง", + "translation": "agreement" + }, + { + "word": "การเกษตร", + "translation": "agricultural" + }, + { + "word": "อา", + "translation": "ah" + }, + { + "word": "ล่วงหน้า", + "translation": "ahead" + }, + { + "word": "ช่วยเหลือ", + "translation": "aid" + }, + { + "word": "เสนาธิการ", + "translation": "aide" + }, + { + "word": "เอดส์", + "translation": "AIDS" + }, + { + "word": "จุดมุ่งหมาย", + "translation": "aim" + }, + { + "word": "อากาศ", + "translation": "air" + }, + { + "word": "อากาศยาน", + "translation": "aircraft" + }, + { + "word": "สายการบิน", + "translation": "airline" + }, + { + "word": "สนามบิน", + "translation": "airport" + }, + { + "word": "อัลบั้ม", + "translation": "album" + }, + { + "word": "แอลกอฮอล์", + "translation": "alcohol" + }, + { + "word": "มีชีวิตอยู่", + "translation": "alive" + }, + { + "word": "ทั้งหมด", + "translation": "all" + }, + { + "word": "พันธมิตร", + "translation": "alliance" + }, + { + "word": "อนุญาต", + "translation": "allow" + }, + { + "word": "พันธมิตร", + "translation": "ally" + }, + { + "word": "เกือบจะ", + "translation": "almost" + }, + { + "word": "คนเดียว", + "translation": "alone" + }, + { + "word": "ตาม", + "translation": "along" + }, + { + "word": "แล้ว", + "translation": "already" + }, + { + "word": "ด้วย", + "translation": "also" + }, + { + "word": "แก้ไข", + "translation": "alter" + }, + { + "word": "ทางเลือก", + "translation": "alternative" + }, + { + "word": "แม้ว่า", + "translation": "although" + }, + { + "word": "เสมอ", + "translation": "always" + }, + { + "word": "AM", + "translation": "AM" + }, + { + "word": "น่าอัศจรรย์", + "translation": "amazing" + }, + { + "word": "อเมริกัน", + "translation": "American" + }, + { + "word": "ในหมู่", + "translation": "among" + }, + { + "word": "จำนวน", + "translation": "amount" + }, + { + "word": "การวิเคราะห์", + "translation": "analysis" + }, + { + "word": "นักวิเคราะห์", + "translation": "analyst" + }, + { + "word": "วิเคราะห์", + "translation": "analyze" + }, + { + "word": "โบราณ", + "translation": "ancient" + }, + { + "word": "และ", + "translation": "and" + }, + { + "word": "ความโกรธ", + "translation": "anger" + }, + { + "word": "มุม", + "translation": "angle" + }, + { + "word": "โกรธ", + "translation": "angry" + }, + { + "word": "สัตว์", + "translation": "animal" + }, + { + "word": "วันครบรอบ", + "translation": "anniversary" + }, + { + "word": "ประกาศ", + "translation": "announce" + }, + { + "word": "ประจำปี", + "translation": "annual" + }, + { + "word": "อื่น", + "translation": "another" + }, + { + "word": "ตอบ", + "translation": "answer" + }, + { + "word": "คาดหวัง", + "translation": "anticipate" + }, + { + "word": "ความกังวล", + "translation": "anxiety" + }, + { + "word": "ใด", + "translation": "any" + }, + { + "word": "ใคร ๆ", + "translation": "anybody" + }, + { + "word": "อีกต่อไป", + "translation": "anymore" + }, + { + "word": "ใคร ๆ", + "translation": "anyone" + }, + { + "word": "สิ่งใด", + "translation": "anything" + }, + { + "word": "อย่างไรก็ตาม", + "translation": "anyway" + }, + { + "word": "ทุกแห่ง", + "translation": "anywhere" + }, + { + "word": "ต่างหาก", + "translation": "apart" + }, + { + "word": "อพาร์ทเม้น", + "translation": "apartment" + }, + { + "word": "เห็นได้ชัด", + "translation": "apparent" + }, + { + "word": "เด่นชัด", + "translation": "apparently" + }, + { + "word": "อุทธรณ์", + "translation": "appeal" + }, + { + "word": "ปรากฏ", + "translation": "appear" + }, + { + "word": "การปรากฏ", + "translation": "appearance" + }, + { + "word": "แอปเปิ้ล", + "translation": "apple" + }, + { + "word": "ใบสมัคร", + "translation": "application" + }, + { + "word": "ใช้", + "translation": "apply" + }, + { + "word": "แต่งตั้ง", + "translation": "appoint" + }, + { + "word": "การแต่งตั้ง", + "translation": "appointment" + }, + { + "word": "ซาบซึ้ง", + "translation": "appreciate" + }, + { + "word": "เข้าใกล้", + "translation": "approach" + }, + { + "word": "จัดสรร", + "translation": "appropriate" + }, + { + "word": "การอนุมัติ", + "translation": "approval" + }, + { + "word": "อนุมัติ", + "translation": "approve" + }, + { + "word": "ประมาณ", + "translation": "approximately" + }, + { + "word": "อาหรับ", + "translation": "Arab" + }, + { + "word": "สถาปนิก", + "translation": "architect" + }, + { + "word": "พื้นที่", + "translation": "area" + }, + { + "word": "เถียง", + "translation": "argue" + }, + { + "word": "การโต้เถียง", + "translation": "argument" + }, + { + "word": "เกิดขึ้น", + "translation": "arise" + }, + { + "word": "แขน", + "translation": "arm" + }, + { + "word": "อาวุธ", + "translation": "armed" + }, + { + "word": "กองทัพบก", + "translation": "army" + }, + { + "word": "รอบ", + "translation": "around" + }, + { + "word": "เตรียมการ", + "translation": "arrange" + }, + { + "word": "การจัดการ", + "translation": "arrangement" + }, + { + "word": "จับกุม", + "translation": "arrest" + }, + { + "word": "การมาถึง", + "translation": "arrival" + }, + { + "word": "มาถึง", + "translation": "arrive" + }, + { + "word": "ศิลปะ", + "translation": "art" + }, + { + "word": "บทความ", + "translation": "article" + }, + { + "word": "ศิลปิน", + "translation": "artist" + }, + { + "word": "ศิลปะ", + "translation": "artistic" + }, + { + "word": "เช่น", + "translation": "as" + }, + { + "word": "เอเชีย", + "translation": "Asian" + }, + { + "word": "กัน", + "translation": "aside" + }, + { + "word": "ถาม", + "translation": "ask" + }, + { + "word": "นอนหลับ", + "translation": "asleep" + }, + { + "word": "แง่มุม", + "translation": "aspect" + }, + { + "word": "โจมตี", + "translation": "assault" + }, + { + "word": "ยืนยัน", + "translation": "assert" + }, + { + "word": "ประเมินผล", + "translation": "assess" + }, + { + "word": "การประเมินผล", + "translation": "assessment" + }, + { + "word": "สินทรัพย์", + "translation": "asset" + }, + { + "word": "กำหนด", + "translation": "assign" + }, + { + "word": "การมอบหมาย", + "translation": "assignment" + }, + { + "word": "ช่วยเหลือ", + "translation": "assist" + }, + { + "word": "ความช่วยเหลือ", + "translation": "assistance" + }, + { + "word": "ผู้ช่วย", + "translation": "assistant" + }, + { + "word": "ที่เกี่ยวข้อง", + "translation": "associate" + }, + { + "word": "สมาคม", + "translation": "association" + }, + { + "word": "สมมติ", + "translation": "assume" + }, + { + "word": "การสันนิษฐาน", + "translation": "assumption" + }, + { + "word": "รับประกัน", + "translation": "assure" + }, + { + "word": "ที่", + "translation": "at" + }, + { + "word": "นักกีฬา", + "translation": "athlete" + }, + { + "word": "แข็งแรง", + "translation": "athletic" + }, + { + "word": "บรรยากาศ", + "translation": "atmosphere" + }, + { + "word": "แนบ", + "translation": "attach" + }, + { + "word": "โจมตี", + "translation": "attack" + }, + { + "word": "พยายาม", + "translation": "attempt" + }, + { + "word": "เข้าร่วม", + "translation": "attend" + }, + { + "word": "ความสนใจ", + "translation": "attention" + }, + { + "word": "ท่าที", + "translation": "attitude" + }, + { + "word": "อัยการ", + "translation": "attorney" + }, + { + "word": "ดึงดูดใจ", + "translation": "attract" + }, + { + "word": "มีเสน่ห์", + "translation": "attractive" + }, + { + "word": "คุณลักษณะ", + "translation": "attribute" + }, + { + "word": "ผู้ชม", + "translation": "audience" + }, + { + "word": "ผู้เขียน", + "translation": "author" + }, + { + "word": "ผู้มีอำนาจ", + "translation": "authority" + }, + { + "word": "รถยนต์", + "translation": "auto" + }, + { + "word": "ใช้ได้", + "translation": "available" + }, + { + "word": "เฉลี่ย", + "translation": "average" + }, + { + "word": "หลีกเลี่ยงการ", + "translation": "avoid" + }, + { + "word": "รางวัล", + "translation": "award" + }, + { + "word": "ทราบ", + "translation": "aware" + }, + { + "word": "ความตระหนัก", + "translation": "awareness" + }, + { + "word": "ไป", + "translation": "away" + }, + { + "word": "น่ากลัว", + "translation": "awful" + }, + { + "word": "ทารก", + "translation": "baby" + }, + { + "word": "กลับ", + "translation": "back" + }, + { + "word": "พื้นหลัง", + "translation": "background" + }, + { + "word": "ไม่ดี", + "translation": "bad" + }, + { + "word": "ไม่ดี", + "translation": "badly" + }, + { + "word": "ถุง", + "translation": "bag" + }, + { + "word": "อบ", + "translation": "bake" + }, + { + "word": "สมดุล", + "translation": "balance" + }, + { + "word": "ลูกบอล", + "translation": "ball" + }, + { + "word": "ห้าม", + "translation": "ban" + }, + { + "word": "วงดนตรี", + "translation": "band" + }, + { + "word": "ธนาคาร", + "translation": "bank" + }, + { + "word": "บาร์", + "translation": "bar" + }, + { + "word": "เพิ่งจะ", + "translation": "barely" + }, + { + "word": "บาร์เรล", + "translation": "barrel" + }, + { + "word": "อุปสรรค", + "translation": "barrier" + }, + { + "word": "ฐาน", + "translation": "base" + }, + { + "word": "กีฬาเบสบอล", + "translation": "baseball" + }, + { + "word": "ขั้นพื้นฐาน", + "translation": "basic" + }, + { + "word": "เป็นพื้น", + "translation": "basically" + }, + { + "word": "รากฐาน", + "translation": "basis" + }, + { + "word": "ตะกร้า", + "translation": "basket" + }, + { + "word": "บาสเกตบอล", + "translation": "basketball" + }, + { + "word": "ห้องอาบน้ำ", + "translation": "bathroom" + }, + { + "word": "แบตเตอรี่", + "translation": "battery" + }, + { + "word": "การต่อสู้", + "translation": "battle" + }, + { + "word": "เป็น", + "translation": "be" + }, + { + "word": "ชายหาด", + "translation": "beach" + }, + { + "word": "ถั่ว", + "translation": "bean" + }, + { + "word": "หมี", + "translation": "bear" + }, + { + "word": "ตี", + "translation": "beat" + }, + { + "word": "สวย", + "translation": "beautiful" + }, + { + "word": "ความงาม", + "translation": "beauty" + }, + { + "word": "เพราะ", + "translation": "because" + }, + { + "word": "กลายเป็น", + "translation": "become" + }, + { + "word": "เตียง", + "translation": "bed" + }, + { + "word": "ห้องนอน", + "translation": "bedroom" + }, + { + "word": "เบียร์", + "translation": "beer" + }, + { + "word": "ก่อน", + "translation": "before" + }, + { + "word": "เริ่ม", + "translation": "begin" + }, + { + "word": "จุดเริ่มต้น", + "translation": "beginning" + }, + { + "word": "พฤติกรรม", + "translation": "behavior" + }, + { + "word": "หลัง", + "translation": "behind" + }, + { + "word": "ความเป็นอยู่", + "translation": "being" + }, + { + "word": "ความเชื่อ", + "translation": "belief" + }, + { + "word": "เชื่อ", + "translation": "believe" + }, + { + "word": "ระฆัง", + "translation": "bell" + }, + { + "word": "เป็นของ", + "translation": "belong" + }, + { + "word": "ด้านล่าง", + "translation": "below" + }, + { + "word": "เข็มขัด", + "translation": "belt" + }, + { + "word": "ม้านั่ง", + "translation": "bench" + }, + { + "word": "โค้ง", + "translation": "bend" + }, + { + "word": "ใต้", + "translation": "beneath" + }, + { + "word": "ประโยชน์", + "translation": "benefit" + }, + { + "word": "ข้าง", + "translation": "beside" + }, + { + "word": "นอกเหนือจาก", + "translation": "besides" + }, + { + "word": "ดีที่สุด", + "translation": "best" + }, + { + "word": "เดิมพัน", + "translation": "bet" + }, + { + "word": "ดีกว่า", + "translation": "better" + }, + { + "word": "ระหว่าง", + "translation": "between" + }, + { + "word": "เกิน", + "translation": "beyond" + }, + { + "word": "คัมภีร์ไบเบิล", + "translation": "Bible" + }, + { + "word": "ใหญ่", + "translation": "big" + }, + { + "word": "จักรยาน", + "translation": "bike" + }, + { + "word": "บิล", + "translation": "bill" + }, + { + "word": "พันล้าน", + "translation": "billion" + }, + { + "word": "ผูก", + "translation": "bind" + }, + { + "word": "ชีวภาพ", + "translation": "biological" + }, + { + "word": "นก", + "translation": "bird" + }, + { + "word": "กำเนิด", + "translation": "birth" + }, + { + "word": "วันเกิด", + "translation": "birthday" + }, + { + "word": "นิดหน่อย", + "translation": "bit" + }, + { + "word": "กัด", + "translation": "bite" + }, + { + "word": "สีดำ", + "translation": "black" + }, + { + "word": "ใบมีด", + "translation": "blade" + }, + { + "word": "ตำหนิ", + "translation": "blame" + }, + { + "word": "ผ้าห่ม", + "translation": "blanket" + }, + { + "word": "ตาบอด", + "translation": "blind" + }, + { + "word": "บล็อก", + "translation": "block" + }, + { + "word": "เลือด", + "translation": "blood" + }, + { + "word": "ระเบิด", + "translation": "blow" + }, + { + "word": "สีน้ำเงิน", + "translation": "blue" + }, + { + "word": "คณะกรรมการ", + "translation": "board" + }, + { + "word": "เรือ", + "translation": "boat" + }, + { + "word": "ร่างกาย", + "translation": "body" + }, + { + "word": "วางระเบิด", + "translation": "bomb" + }, + { + "word": "ระเบิด", + "translation": "bombing" + }, + { + "word": "พันธบัตร", + "translation": "bond" + }, + { + "word": "กระดูก", + "translation": "bone" + }, + { + "word": "หนังสือ", + "translation": "book" + }, + { + "word": "ความเจริญ", + "translation": "boom" + }, + { + "word": "รองเท้า", + "translation": "boot" + }, + { + "word": "ชายแดน", + "translation": "border" + }, + { + "word": "เกิด", + "translation": "born" + }, + { + "word": "ยืม", + "translation": "borrow" + }, + { + "word": "นาย", + "translation": "boss" + }, + { + "word": "ทั้งสอง", + "translation": "both" + }, + { + "word": "ตื๊อ", + "translation": "bother" + }, + { + "word": "ขวด", + "translation": "bottle" + }, + { + "word": "ด้านล่าง", + "translation": "bottom" + }, + { + "word": "เขตแดน", + "translation": "boundary" + }, + { + "word": "ขัน", + "translation": "bowl" + }, + { + "word": "กล่อง", + "translation": "box" + }, + { + "word": "เด็กผู้ชาย", + "translation": "boy" + }, + { + "word": "แฟน", + "translation": "boyfriend" + }, + { + "word": "สมอง", + "translation": "brain" + }, + { + "word": "สาขา", + "translation": "branch" + }, + { + "word": "ยี่ห้อ", + "translation": "brand" + }, + { + "word": "ขนมปัง", + "translation": "bread" + }, + { + "word": "หยุดพัก", + "translation": "break" + }, + { + "word": "อาหารเช้า", + "translation": "breakfast" + }, + { + "word": "เต้านม", + "translation": "breast" + }, + { + "word": "ลมหายใจ", + "translation": "breath" + }, + { + "word": "หายใจ", + "translation": "breathe" + }, + { + "word": "อิฐ", + "translation": "brick" + }, + { + "word": "สะพาน", + "translation": "bridge" + }, + { + "word": "สั้น", + "translation": "brief" + }, + { + "word": "สั้น", + "translation": "briefly" + }, + { + "word": "สดใส", + "translation": "bright" + }, + { + "word": "สุกใส", + "translation": "brilliant" + }, + { + "word": "นำมาซึ่ง", + "translation": "bring" + }, + { + "word": "อังกฤษ", + "translation": "British" + }, + { + "word": "กว้าง", + "translation": "broad" + }, + { + "word": "เสีย", + "translation": "broken" + }, + { + "word": "พี่ชาย", + "translation": "brother" + }, + { + "word": "สีน้ำตาล", + "translation": "brown" + }, + { + "word": "แปรง", + "translation": "brush" + }, + { + "word": "เจ้าชู้", + "translation": "buck" + }, + { + "word": "งบ", + "translation": "budget" + }, + { + "word": "สร้าง", + "translation": "build" + }, + { + "word": "อาคาร", + "translation": "building" + }, + { + "word": "กระสุน", + "translation": "bullet" + }, + { + "word": "พวง", + "translation": "bunch" + }, + { + "word": "ภาระ", + "translation": "burden" + }, + { + "word": "เผา", + "translation": "burn" + }, + { + "word": "ฝังศพ", + "translation": "bury" + }, + { + "word": "รถบัส", + "translation": "bus" + }, + { + "word": "ธุรกิจ", + "translation": "business" + }, + { + "word": "ไม่ว่าง", + "translation": "busy" + }, + { + "word": "แต่", + "translation": "but" + }, + { + "word": "เนย", + "translation": "butter" + }, + { + "word": "ปุ่ม", + "translation": "button" + }, + { + "word": "ซื้อ", + "translation": "buy" + }, + { + "word": "ผู้ซื้อ", + "translation": "buyer" + }, + { + "word": "โดย", + "translation": "by" + }, + { + "word": "กระท่อม", + "translation": "cabin" + }, + { + "word": "คณะรัฐมนตรี", + "translation": "cabinet" + }, + { + "word": "สายเคเบิล", + "translation": "cable" + }, + { + "word": "เค้ก", + "translation": "cake" + }, + { + "word": "คำนวณ", + "translation": "calculate" + }, + { + "word": "โทร", + "translation": "call" + }, + { + "word": "กล้อง", + "translation": "camera" + }, + { + "word": "ค่าย", + "translation": "camp" + }, + { + "word": "รณรงค์", + "translation": "campaign" + }, + { + "word": "วิทยาเขต", + "translation": "campus" + }, + { + "word": "สามารถ", + "translation": "can" + }, + { + "word": "ชาวแคนาดา", + "translation": "Canadian" + }, + { + "word": "โรคมะเร็ง", + "translation": "cancer" + }, + { + "word": "ผู้สมัคร", + "translation": "candidate" + }, + { + "word": "ฝาครอบ", + "translation": "cap" + }, + { + "word": "ความสามารถ", + "translation": "capability" + }, + { + "word": "สามารถ", + "translation": "capable" + }, + { + "word": "ความจุ", + "translation": "capacity" + }, + { + "word": "เมืองหลวง", + "translation": "capital" + }, + { + "word": "กัปตัน", + "translation": "captain" + }, + { + "word": "การจับกุม", + "translation": "capture" + }, + { + "word": "รถยนต์", + "translation": "car" + }, + { + "word": "คาร์บอน", + "translation": "carbon" + }, + { + "word": "บัตร", + "translation": "card" + }, + { + "word": "การดูแล", + "translation": "care" + }, + { + "word": "อาชีพ", + "translation": "career" + }, + { + "word": "ระมัดระวัง", + "translation": "careful" + }, + { + "word": "รอบคอบ", + "translation": "carefully" + }, + { + "word": "ผู้ให้บริการ", + "translation": "carrier" + }, + { + "word": "การพกพา", + "translation": "carry" + }, + { + "word": "กรณี", + "translation": "case" + }, + { + "word": "เงินสด", + "translation": "cash" + }, + { + "word": "หล่อ", + "translation": "cast" + }, + { + "word": "แมว", + "translation": "cat" + }, + { + "word": "จับ", + "translation": "catch" + }, + { + "word": "ประเภท", + "translation": "category" + }, + { + "word": "คาทอลิก", + "translation": "Catholic" + }, + { + "word": "สาเหตุ", + "translation": "cause" + }, + { + "word": "เพดาน", + "translation": "ceiling" + }, + { + "word": "ฉลอง", + "translation": "celebrate" + }, + { + "word": "งานเฉลิมฉลอง", + "translation": "celebration" + }, + { + "word": "ชื่อเสียง", + "translation": "celebrity" + }, + { + "word": "เซลล์", + "translation": "cell" + }, + { + "word": "ศูนย์", + "translation": "center" + }, + { + "word": "ศูนย์กลาง", + "translation": "central" + }, + { + "word": "ศตวรรษ", + "translation": "century" + }, + { + "word": "ผู้บริหารสูงสุด", + "translation": "CEO" + }, + { + "word": "พิธี", + "translation": "ceremony" + }, + { + "word": "แน่นอน", + "translation": "certain" + }, + { + "word": "อย่างแน่นอน", + "translation": "certainly" + }, + { + "word": "เชื่อมต่อ", + "translation": "chain" + }, + { + "word": "เก้าอี้", + "translation": "chair" + }, + { + "word": "ประธาน", + "translation": "chairman" + }, + { + "word": "ท้าทาย", + "translation": "challenge" + }, + { + "word": "ห้อง", + "translation": "chamber" + }, + { + "word": "แชมป์", + "translation": "champion" + }, + { + "word": "การแข่งขันชิงแชมป์", + "translation": "championship" + }, + { + "word": "โอกาส", + "translation": "chance" + }, + { + "word": "เปลี่ยนแปลง", + "translation": "change" + }, + { + "word": "เปลี่ยนแปลง", + "translation": "changing" + }, + { + "word": "ช่อง", + "translation": "channel" + }, + { + "word": "บท", + "translation": "chapter" + }, + { + "word": "ตัวละคร", + "translation": "character" + }, + { + "word": "ลักษณะเฉพาะ", + "translation": "characteristic" + }, + { + "word": "สมบัติ", + "translation": "characterize" + }, + { + "word": "ค่าใช้จ่าย", + "translation": "charge" + }, + { + "word": "การกุศล", + "translation": "charity" + }, + { + "word": "แผนภูมิ", + "translation": "chart" + }, + { + "word": "การไล่ล่า", + "translation": "chase" + }, + { + "word": "ถูก", + "translation": "cheap" + }, + { + "word": "ตรวจสอบ", + "translation": "check" + }, + { + "word": "แก้ม", + "translation": "cheek" + }, + { + "word": "ชีส", + "translation": "cheese" + }, + { + "word": "พ่อครัว", + "translation": "chef" + }, + { + "word": "สารเคมี", + "translation": "chemical" + }, + { + "word": "หน้าอก", + "translation": "chest" + }, + { + "word": "ไก่", + "translation": "chicken" + }, + { + "word": "หัวหน้า", + "translation": "chief" + }, + { + "word": "เด็ก", + "translation": "child" + }, + { + "word": "วัยเด็ก", + "translation": "childhood" + }, + { + "word": "ชาวจีน", + "translation": "Chinese" + }, + { + "word": "ชิป", + "translation": "chip" + }, + { + "word": "ช็อคโกแลต", + "translation": "chocolate" + }, + { + "word": "ทางเลือก", + "translation": "choice" + }, + { + "word": "คอเลสเตอรอล", + "translation": "cholesterol" + }, + { + "word": "เลือก", + "translation": "choose" + }, + { + "word": "คริสเตียน", + "translation": "Christian" + }, + { + "word": "คริสต์มาส", + "translation": "Christmas" + }, + { + "word": "โบสถ์", + "translation": "church" + }, + { + "word": "บุหรี่", + "translation": "cigarette" + }, + { + "word": "วงกลม", + "translation": "circle" + }, + { + "word": "สถานการณ์", + "translation": "circumstance" + }, + { + "word": "อ้างอิง", + "translation": "cite" + }, + { + "word": "พลเมือง", + "translation": "citizen" + }, + { + "word": "เมือง", + "translation": "city" + }, + { + "word": "พลเรือน", + "translation": "civil" + }, + { + "word": "พลเรือน", + "translation": "civilian" + }, + { + "word": "ข้อเรียกร้อง", + "translation": "claim" + }, + { + "word": "ชั้น", + "translation": "class" + }, + { + "word": "คลาสสิก", + "translation": "classic" + }, + { + "word": "ห้องเรียน", + "translation": "classroom" + }, + { + "word": "สะอาด", + "translation": "clean" + }, + { + "word": "ชัดเจน", + "translation": "clear" + }, + { + "word": "อย่างเห็นได้ชัด", + "translation": "clearly" + }, + { + "word": "ลูกค้า", + "translation": "client" + }, + { + "word": "ภูมิอากาศ", + "translation": "climate" + }, + { + "word": "ปีนขึ้นไป", + "translation": "climb" + }, + { + "word": "คลินิก", + "translation": "clinic" + }, + { + "word": "ทางคลินิก", + "translation": "clinical" + }, + { + "word": "นาฬิกา", + "translation": "clock" + }, + { + "word": "ปิด", + "translation": "close" + }, + { + "word": "อย่างใกล้ชิด", + "translation": "closely" + }, + { + "word": "ใกล้ชิด", + "translation": "closer" + }, + { + "word": "เสื้อผ้า", + "translation": "clothes" + }, + { + "word": "เสื้อผ้า", + "translation": "clothing" + }, + { + "word": "เมฆ", + "translation": "cloud" + }, + { + "word": "สโมสร", + "translation": "club" + }, + { + "word": "เงื่อนงำ", + "translation": "clue" + }, + { + "word": "กลุ่ม", + "translation": "cluster" + }, + { + "word": "โค้ช", + "translation": "coach" + }, + { + "word": "ถ่านหิน", + "translation": "coal" + }, + { + "word": "รัฐบาลผสม", + "translation": "coalition" + }, + { + "word": "ชายฝั่ง", + "translation": "coast" + }, + { + "word": "เสื้อโค้ท", + "translation": "coat" + }, + { + "word": "รหัส", + "translation": "code" + }, + { + "word": "กาแฟ", + "translation": "coffee" + }, + { + "word": "องค์ความรู้", + "translation": "cognitive" + }, + { + "word": "เย็น", + "translation": "cold" + }, + { + "word": "ล่มสลาย", + "translation": "collapse" + }, + { + "word": "เพื่อนร่วมงาน", + "translation": "colleague" + }, + { + "word": "เก็บ", + "translation": "collect" + }, + { + "word": "ชุด", + "translation": "collection" + }, + { + "word": "โดยรวม", + "translation": "collective" + }, + { + "word": "วิทยาลัย", + "translation": "college" + }, + { + "word": "โคโลเนียล", + "translation": "colonial" + }, + { + "word": "สี", + "translation": "color" + }, + { + "word": "คอลัมน์", + "translation": "column" + }, + { + "word": "การรวมกัน", + "translation": "combination" + }, + { + "word": "รวมกัน", + "translation": "combine" + }, + { + "word": "มา", + "translation": "come" + }, + { + "word": "ความขบขัน", + "translation": "comedy" + }, + { + "word": "ความสบายใจ", + "translation": "comfort" + }, + { + "word": "สบาย", + "translation": "comfortable" + }, + { + "word": "คำสั่ง", + "translation": "command" + }, + { + "word": "ผู้บังคับบัญชา", + "translation": "commander" + }, + { + "word": "คิดเห็น", + "translation": "comment" + }, + { + "word": "เชิงพาณิชย์", + "translation": "commercial" + }, + { + "word": "คณะกรรมาธิการ", + "translation": "commission" + }, + { + "word": "ผูกมัด", + "translation": "commit" + }, + { + "word": "ความมุ่งมั่น", + "translation": "commitment" + }, + { + "word": "กรรมการ", + "translation": "committee" + }, + { + "word": "ร่วมกัน", + "translation": "common" + }, + { + "word": "สื่อสาร", + "translation": "communicate" + }, + { + "word": "การสื่อสาร", + "translation": "communication" + }, + { + "word": "ชุมชน", + "translation": "community" + }, + { + "word": "บริษัท", + "translation": "company" + }, + { + "word": "เปรียบเทียบ", + "translation": "compare" + }, + { + "word": "การเปรียบเทียบ", + "translation": "comparison" + }, + { + "word": "แข่งขัน", + "translation": "compete" + }, + { + "word": "การแข่งขัน", + "translation": "competition" + }, + { + "word": "การแข่งขัน", + "translation": "competitive" + }, + { + "word": "คู่แข่ง", + "translation": "competitor" + }, + { + "word": "บ่น", + "translation": "complain" + }, + { + "word": "การร้องเรียน", + "translation": "complaint" + }, + { + "word": "สมบูรณ์", + "translation": "complete" + }, + { + "word": "อย่างสมบูรณ์", + "translation": "completely" + }, + { + "word": "ซับซ้อน", + "translation": "complex" + }, + { + "word": "ซับซ้อน", + "translation": "complicated" + }, + { + "word": "ส่วนประกอบ", + "translation": "component" + }, + { + "word": "เขียน", + "translation": "compose" + }, + { + "word": "ส่วนประกอบ", + "translation": "composition" + }, + { + "word": "ครอบคลุม", + "translation": "comprehensive" + }, + { + "word": "คอมพิวเตอร์", + "translation": "computer" + }, + { + "word": "สมาธิ", + "translation": "concentrate" + }, + { + "word": "สมาธิ", + "translation": "concentration" + }, + { + "word": "แนวคิด", + "translation": "concept" + }, + { + "word": "กังวล", + "translation": "concern" + }, + { + "word": "ที่เกี่ยวข้อง", + "translation": "concerned" + }, + { + "word": "คอนเสิร์ต", + "translation": "concert" + }, + { + "word": "เอาเป็นว่า", + "translation": "conclude" + }, + { + "word": "ข้อสรุป", + "translation": "conclusion" + }, + { + "word": "คอนกรีต", + "translation": "concrete" + }, + { + "word": "เงื่อนไข", + "translation": "condition" + }, + { + "word": "ความประพฤติ", + "translation": "conduct" + }, + { + "word": "การประชุม", + "translation": "conference" + }, + { + "word": "ความมั่นใจ", + "translation": "confidence" + }, + { + "word": "มั่นใจ", + "translation": "confident" + }, + { + "word": "ยืนยัน", + "translation": "confirm" + }, + { + "word": "ขัดแย้ง", + "translation": "conflict" + }, + { + "word": "เผชิญหน้า", + "translation": "confront" + }, + { + "word": "ความสับสน", + "translation": "confusion" + }, + { + "word": "คองเกรส", + "translation": "Congress" + }, + { + "word": "รัฐสภา", + "translation": "congressional" + }, + { + "word": "การเชื่อมต่อ", + "translation": "connect" + }, + { + "word": "สัมพันธ์", + "translation": "connection" + }, + { + "word": "สติ", + "translation": "consciousness" + }, + { + "word": "เอกฉันท์", + "translation": "consensus" + }, + { + "word": "ผลพวง", + "translation": "consequence" + }, + { + "word": "อนุรักษนิยม", + "translation": "conservative" + }, + { + "word": "พิจารณา", + "translation": "consider" + }, + { + "word": "มาก", + "translation": "considerable" + }, + { + "word": "การพิจารณา", + "translation": "consideration" + }, + { + "word": "ประกอบด้วย", + "translation": "consist" + }, + { + "word": "คงเส้นคงวา", + "translation": "consistent" + }, + { + "word": "คงที่", + "translation": "constant" + }, + { + "word": "อย่างสม่ำเสมอ", + "translation": "constantly" + }, + { + "word": "เป็น", + "translation": "constitute" + }, + { + "word": "ตามรัฐธรรมนูญ", + "translation": "constitutional" + }, + { + "word": "สร้าง", + "translation": "construct" + }, + { + "word": "การก่อสร้าง", + "translation": "construction" + }, + { + "word": "ผู้ให้คำปรึกษา", + "translation": "consultant" + }, + { + "word": "บริโภค", + "translation": "consume" + }, + { + "word": "ผู้บริโภค", + "translation": "consumer" + }, + { + "word": "การบริโภค", + "translation": "consumption" + }, + { + "word": "ติดต่อ", + "translation": "contact" + }, + { + "word": "บรรจุ", + "translation": "contain" + }, + { + "word": "ภาชนะ", + "translation": "container" + }, + { + "word": "ร่วมสมัย", + "translation": "contemporary" + }, + { + "word": "เนื้อหา", + "translation": "content" + }, + { + "word": "การประกวด", + "translation": "contest" + }, + { + "word": "บริบท", + "translation": "context" + }, + { + "word": "ต่อ", + "translation": "continue" + }, + { + "word": "อย่างต่อเนื่อง", + "translation": "continued" + }, + { + "word": "สัญญา", + "translation": "contract" + }, + { + "word": "ความคมชัด", + "translation": "contrast" + }, + { + "word": "สนับสนุน", + "translation": "contribute" + }, + { + "word": "การสนับสนุน", + "translation": "contribution" + }, + { + "word": "ควบคุม", + "translation": "control" + }, + { + "word": "ที่เถียงกัน", + "translation": "controversial" + }, + { + "word": "การทะเลาะวิวาท", + "translation": "controversy" + }, + { + "word": "การประชุม", + "translation": "convention" + }, + { + "word": "ตามธรรมเนียม", + "translation": "conventional" + }, + { + "word": "การสนทนา", + "translation": "conversation" + }, + { + "word": "แปลง", + "translation": "convert" + }, + { + "word": "ความเชื่อมั่น", + "translation": "conviction" + }, + { + "word": "โน้มน้าวใจ", + "translation": "convince" + }, + { + "word": "ปรุงอาหาร", + "translation": "cook" + }, + { + "word": "คุกกี้", + "translation": "cookie" + }, + { + "word": "การปรุงอาหาร", + "translation": "cooking" + }, + { + "word": "เย็น", + "translation": "cool" + }, + { + "word": "ความร่วมมือ", + "translation": "cooperation" + }, + { + "word": "ตำรวจ", + "translation": "cop" + }, + { + "word": "รับมือ", + "translation": "cope" + }, + { + "word": "สำเนา", + "translation": "copy" + }, + { + "word": "แกน", + "translation": "core" + }, + { + "word": "ข้าวโพด", + "translation": "corn" + }, + { + "word": "มุม", + "translation": "corner" + }, + { + "word": "ขององค์กร", + "translation": "corporate" + }, + { + "word": "บริษัท", + "translation": "corporation" + }, + { + "word": "แก้ไข", + "translation": "correct" + }, + { + "word": "ผู้สื่อข่าว", + "translation": "correspondent" + }, + { + "word": "ราคา", + "translation": "cost" + }, + { + "word": "ฝ้าย", + "translation": "cotton" + }, + { + "word": "โซฟา", + "translation": "couch" + }, + { + "word": "ได้", + "translation": "could" + }, + { + "word": "สภา", + "translation": "council" + }, + { + "word": "ผู้ให้คำปรึกษา", + "translation": "counselor" + }, + { + "word": "นับ", + "translation": "count" + }, + { + "word": "เคาน์เตอร์", + "translation": "counter" + }, + { + "word": "ประเทศ", + "translation": "country" + }, + { + "word": "เขต", + "translation": "county" + }, + { + "word": "คู่", + "translation": "couple" + }, + { + "word": "ความกล้าหาญ", + "translation": "courage" + }, + { + "word": "หลักสูตร", + "translation": "course" + }, + { + "word": "ศาล", + "translation": "court" + }, + { + "word": "ลูกพี่ลูกน้อง", + "translation": "cousin" + }, + { + "word": "ปก", + "translation": "cover" + }, + { + "word": "ความคุ้มครอง", + "translation": "coverage" + }, + { + "word": "วัว", + "translation": "cow" + }, + { + "word": "ร้าว", + "translation": "crack" + }, + { + "word": "งานฝีมือ", + "translation": "craft" + }, + { + "word": "ชน", + "translation": "crash" + }, + { + "word": "บ้า", + "translation": "crazy" + }, + { + "word": "ครีม", + "translation": "cream" + }, + { + "word": "สร้าง", + "translation": "create" + }, + { + "word": "การสร้าง", + "translation": "creation" + }, + { + "word": "ความคิดสร้างสรรค์", + "translation": "creative" + }, + { + "word": "สัตว์", + "translation": "creature" + }, + { + "word": "เครดิต", + "translation": "credit" + }, + { + "word": "พวกลูกเรือ", + "translation": "crew" + }, + { + "word": "อาชญากรรม", + "translation": "crime" + }, + { + "word": "อาชญากร", + "translation": "criminal" + }, + { + "word": "วิกฤติ", + "translation": "crisis" + }, + { + "word": "เกณฑ์", + "translation": "criteria" + }, + { + "word": "นักวิจารณ์", + "translation": "critic" + }, + { + "word": "วิกฤติ", + "translation": "critical" + }, + { + "word": "คำวิจารณ์", + "translation": "criticism" + }, + { + "word": "วิจารณ์", + "translation": "criticize" + }, + { + "word": "พืชผล", + "translation": "crop" + }, + { + "word": "ข้าม", + "translation": "cross" + }, + { + "word": "ฝูงชน", + "translation": "crowd" + }, + { + "word": "สำคัญมาก", + "translation": "crucial" + }, + { + "word": "ร้องไห้", + "translation": "cry" + }, + { + "word": "ด้านวัฒนธรรม", + "translation": "cultural" + }, + { + "word": "วัฒนธรรม", + "translation": "culture" + }, + { + "word": "ถ้วย", + "translation": "cup" + }, + { + "word": "อยากรู้อยากเห็น", + "translation": "curious" + }, + { + "word": "ปัจจุบัน", + "translation": "current" + }, + { + "word": "ปัจจุบัน", + "translation": "currently" + }, + { + "word": "หลักสูตร", + "translation": "curriculum" + }, + { + "word": "กำหนดเอง", + "translation": "custom" + }, + { + "word": "ลูกค้า", + "translation": "customer" + }, + { + "word": "ตัด", + "translation": "cut" + }, + { + "word": "วงจร", + "translation": "cycle" + }, + { + "word": "พ่อ", + "translation": "dad" + }, + { + "word": "ประจำวัน", + "translation": "daily" + }, + { + "word": "ความเสียหาย", + "translation": "damage" + }, + { + "word": "เต้นรำ", + "translation": "dance" + }, + { + "word": "อันตราย", + "translation": "danger" + }, + { + "word": "เป็นอันตราย", + "translation": "dangerous" + }, + { + "word": "กล้า", + "translation": "dare" + }, + { + "word": "มืด", + "translation": "dark" + }, + { + "word": "ความมืด", + "translation": "darkness" + }, + { + "word": "ข้อมูล", + "translation": "data" + }, + { + "word": "วันที่", + "translation": "date" + }, + { + "word": "ลูกสาว", + "translation": "daughter" + }, + { + "word": "วัน", + "translation": "day" + }, + { + "word": "ตาย", + "translation": "dead" + }, + { + "word": "จัดการ", + "translation": "deal" + }, + { + "word": "เจ้ามือ", + "translation": "dealer" + }, + { + "word": "ที่รัก", + "translation": "dear" + }, + { + "word": "ความตาย", + "translation": "death" + }, + { + "word": "อภิปราย", + "translation": "debate" + }, + { + "word": "หนี้สิน", + "translation": "debt" + }, + { + "word": "ทศวรรษ", + "translation": "decade" + }, + { + "word": "ตัดสิน", + "translation": "decide" + }, + { + "word": "การตัดสิน", + "translation": "decision" + }, + { + "word": "สำรับ", + "translation": "deck" + }, + { + "word": "ประกาศ", + "translation": "declare" + }, + { + "word": "ลดลง", + "translation": "decline" + }, + { + "word": "ลดลง", + "translation": "decrease" + }, + { + "word": "ลึก", + "translation": "deep" + }, + { + "word": "ลึก", + "translation": "deeply" + }, + { + "word": "กวาง", + "translation": "deer" + }, + { + "word": "ความพ่ายแพ้", + "translation": "defeat" + }, + { + "word": "ป้องกัน", + "translation": "defend" + }, + { + "word": "จำเลย", + "translation": "defendant" + }, + { + "word": "ป้องกัน", + "translation": "defense" + }, + { + "word": "เกี่ยวกับการป้องกัน", + "translation": "defensive" + }, + { + "word": "การขาดดุล", + "translation": "deficit" + }, + { + "word": "กำหนด", + "translation": "define" + }, + { + "word": "อย่างแน่นอน", + "translation": "definitely" + }, + { + "word": "คำนิยาม", + "translation": "definition" + }, + { + "word": "ระดับ", + "translation": "degree" + }, + { + "word": "ความล่าช้า", + "translation": "delay" + }, + { + "word": "ส่งมอบ", + "translation": "deliver" + }, + { + "word": "การจัดส่ง", + "translation": "delivery" + }, + { + "word": "ความต้องการ", + "translation": "demand" + }, + { + "word": "ประชาธิปไตย", + "translation": "democracy" + }, + { + "word": "ประชาธิปัตย์", + "translation": "Democrat" + }, + { + "word": "ประชาธิปัตย์", + "translation": "democratic" + }, + { + "word": "สาธิต", + "translation": "demonstrate" + }, + { + "word": "สาธิต", + "translation": "demonstration" + }, + { + "word": "ปฏิเสธ", + "translation": "deny" + }, + { + "word": "สาขา", + "translation": "department" + }, + { + "word": "ขึ้นอยู่กับ", + "translation": "depend" + }, + { + "word": "ขึ้นอยู่กับ", + "translation": "dependent" + }, + { + "word": "ทั้งนี้ขึ้นอยู่กับ", + "translation": "depending" + }, + { + "word": "พรรณนา", + "translation": "depict" + }, + { + "word": "พายุดีเปรสชัน", + "translation": "depression" + }, + { + "word": "ความลึก", + "translation": "depth" + }, + { + "word": "รอง", + "translation": "deputy" + }, + { + "word": "การสืบทอดมา", + "translation": "derive" + }, + { + "word": "อธิบาย", + "translation": "describe" + }, + { + "word": "ลักษณะ", + "translation": "description" + }, + { + "word": "ทะเลทราย", + "translation": "desert" + }, + { + "word": "สมน้ำสมเนื้อ", + "translation": "deserve" + }, + { + "word": "ออกแบบ", + "translation": "design" + }, + { + "word": "นักออกแบบ", + "translation": "designer" + }, + { + "word": "ความต้องการ", + "translation": "desire" + }, + { + "word": "เคาน์เตอร์", + "translation": "desk" + }, + { + "word": "หมดหวัง", + "translation": "desperate" + }, + { + "word": "แม้จะมี", + "translation": "despite" + }, + { + "word": "ทำลาย", + "translation": "destroy" + }, + { + "word": "การทำลาย", + "translation": "destruction" + }, + { + "word": "รายละเอียด", + "translation": "detail" + }, + { + "word": "รายละเอียด", + "translation": "detailed" + }, + { + "word": "ตรวจจับ", + "translation": "detect" + }, + { + "word": "กำหนด", + "translation": "determine" + }, + { + "word": "พัฒนา", + "translation": "develop" + }, + { + "word": "ที่กำลังพัฒนา", + "translation": "developing" + }, + { + "word": "พัฒนาการ", + "translation": "development" + }, + { + "word": "เครื่อง", + "translation": "device" + }, + { + "word": "อุทิศ", + "translation": "devote" + }, + { + "word": "บทสนทนา", + "translation": "dialogue" + }, + { + "word": "ตาย", + "translation": "die" + }, + { + "word": "อาหาร", + "translation": "diet" + }, + { + "word": "แตกต่าง", + "translation": "differ" + }, + { + "word": "ข้อแตกต่าง", + "translation": "difference" + }, + { + "word": "ต่าง", + "translation": "different" + }, + { + "word": "ต่างกัน", + "translation": "differently" + }, + { + "word": "ยาก", + "translation": "difficult" + }, + { + "word": "ความยาก", + "translation": "difficulty" + }, + { + "word": "ขุด", + "translation": "dig" + }, + { + "word": "ดิจิทัล", + "translation": "digital" + }, + { + "word": "มิติ", + "translation": "dimension" + }, + { + "word": "การรับประทานอาหาร", + "translation": "dining" + }, + { + "word": "อาหารเย็น", + "translation": "dinner" + }, + { + "word": "โดยตรง", + "translation": "direct" + }, + { + "word": "ทิศทาง", + "translation": "direction" + }, + { + "word": "โดยตรง", + "translation": "directly" + }, + { + "word": "ผู้อำนวยการ", + "translation": "director" + }, + { + "word": "ฝุ่น", + "translation": "dirt" + }, + { + "word": "สกปรก", + "translation": "dirty" + }, + { + "word": "ความพิการ", + "translation": "disability" + }, + { + "word": "ไม่เห็นด้วย", + "translation": "disagree" + }, + { + "word": "หายไป", + "translation": "disappear" + }, + { + "word": "ภัยพิบัติ", + "translation": "disaster" + }, + { + "word": "วินัย", + "translation": "discipline" + }, + { + "word": "สนทนา", + "translation": "discourse" + }, + { + "word": "ค้นพบ", + "translation": "discover" + }, + { + "word": "การค้นพบ", + "translation": "discovery" + }, + { + "word": "การแบ่งแยก", + "translation": "discrimination" + }, + { + "word": "สนทนา", + "translation": "discuss" + }, + { + "word": "อภิปรายผล", + "translation": "discussion" + }, + { + "word": "โรค", + "translation": "disease" + }, + { + "word": "จาน", + "translation": "dish" + }, + { + "word": "ยกเลิก", + "translation": "dismiss" + }, + { + "word": "ความไม่เป็นระเบียบ", + "translation": "disorder" + }, + { + "word": "แสดง", + "translation": "display" + }, + { + "word": "พิพาท", + "translation": "dispute" + }, + { + "word": "ระยะทาง", + "translation": "distance" + }, + { + "word": "ไกล", + "translation": "distant" + }, + { + "word": "แตกต่าง", + "translation": "distinct" + }, + { + "word": "ความแตกต่าง", + "translation": "distinction" + }, + { + "word": "เห็นความแตกต่าง", + "translation": "distinguish" + }, + { + "word": "กระจาย", + "translation": "distribute" + }, + { + "word": "การกระจาย", + "translation": "distribution" + }, + { + "word": "อำเภอ", + "translation": "district" + }, + { + "word": "หลากหลาย", + "translation": "diverse" + }, + { + "word": "ความหลากหลาย", + "translation": "diversity" + }, + { + "word": "การแบ่ง", + "translation": "divide" + }, + { + "word": "แผนก", + "translation": "division" + }, + { + "word": "หย่า", + "translation": "divorce" + }, + { + "word": "ดีเอ็นเอ", + "translation": "DNA" + }, + { + "word": "ทำ", + "translation": "do" + }, + { + "word": "คุณหมอ", + "translation": "doctor" + }, + { + "word": "เอกสาร", + "translation": "document" + }, + { + "word": "หมา", + "translation": "dog" + }, + { + "word": "ในประเทศ", + "translation": "domestic" + }, + { + "word": "เด่น", + "translation": "dominant" + }, + { + "word": "ครอง", + "translation": "dominate" + }, + { + "word": "ประตู", + "translation": "door" + }, + { + "word": "สอง", + "translation": "double" + }, + { + "word": "สงสัย", + "translation": "doubt" + }, + { + "word": "ลง", + "translation": "down" + }, + { + "word": "ตัวเมือง", + "translation": "downtown" + }, + { + "word": "โหล", + "translation": "dozen" + }, + { + "word": "ร่าง", + "translation": "draft" + }, + { + "word": "ลาก", + "translation": "drag" + }, + { + "word": "ละคร", + "translation": "drama" + }, + { + "word": "น่าทึ่ง", + "translation": "dramatic" + }, + { + "word": "เป็นคุ้งเป็นแคว", + "translation": "dramatically" + }, + { + "word": "วาด", + "translation": "draw" + }, + { + "word": "การวาดภาพ", + "translation": "drawing" + }, + { + "word": "ฝัน", + "translation": "dream" + }, + { + "word": "แต่งตัว", + "translation": "dress" + }, + { + "word": "ดื่ม", + "translation": "drink" + }, + { + "word": "ขับรถ", + "translation": "drive" + }, + { + "word": "คนขับรถ", + "translation": "driver" + }, + { + "word": "หล่น", + "translation": "drop" + }, + { + "word": "ยา", + "translation": "drug" + }, + { + "word": "แห้ง", + "translation": "dry" + }, + { + "word": "ครบกำหนด", + "translation": "due" + }, + { + "word": "ในระหว่าง", + "translation": "during" + }, + { + "word": "ฝุ่น", + "translation": "dust" + }, + { + "word": "หน้าที่", + "translation": "duty" + }, + { + "word": "แต่ละ", + "translation": "each" + }, + { + "word": "กระตือรือร้น", + "translation": "eager" + }, + { + "word": "หู", + "translation": "ear" + }, + { + "word": "ตอนต้น", + "translation": "early" + }, + { + "word": "ได้รับ", + "translation": "earn" + }, + { + "word": "รายได้", + "translation": "earnings" + }, + { + "word": "โลก", + "translation": "earth" + }, + { + "word": "ความสะดวก", + "translation": "ease" + }, + { + "word": "อย่างง่ายดาย", + "translation": "easily" + }, + { + "word": "ทางทิศตะวันออก", + "translation": "east" + }, + { + "word": "ทางตะวันออก", + "translation": "eastern" + }, + { + "word": "ง่าย", + "translation": "easy" + }, + { + "word": "กิน", + "translation": "eat" + }, + { + "word": "เศรษฐกิจ", + "translation": "economic" + }, + { + "word": "เศรษฐศาสตร์", + "translation": "economics" + }, + { + "word": "นักเศรษฐศาสตร์", + "translation": "economist" + }, + { + "word": "เศรษฐกิจ", + "translation": "economy" + }, + { + "word": "ขอบ", + "translation": "edge" + }, + { + "word": "ฉบับ", + "translation": "edition" + }, + { + "word": "บรรณาธิการ", + "translation": "editor" + }, + { + "word": "ให้ความรู้", + "translation": "educate" + }, + { + "word": "การศึกษา", + "translation": "education" + }, + { + "word": "เกี่ยวกับการศึกษา", + "translation": "educational" + }, + { + "word": "นักการศึกษา", + "translation": "educator" + }, + { + "word": "ผล", + "translation": "effect" + }, + { + "word": "มีประสิทธิภาพ", + "translation": "effective" + }, + { + "word": "มีประสิทธิภาพ", + "translation": "effectively" + }, + { + "word": "อย่างมีประสิทธิภาพ", + "translation": "efficiency" + }, + { + "word": "ที่มีประสิทธิภาพ", + "translation": "efficient" + }, + { + "word": "ความพยายาม", + "translation": "effort" + }, + { + "word": "ไข่", + "translation": "egg" + }, + { + "word": "แปด", + "translation": "eight" + }, + { + "word": "ทั้ง", + "translation": "either" + }, + { + "word": "สูงอายุ", + "translation": "elderly" + }, + { + "word": "รักษาการ", + "translation": "elect" + }, + { + "word": "การเลือกตั้ง", + "translation": "election" + }, + { + "word": "ไฟฟ้า", + "translation": "electric" + }, + { + "word": "ไฟฟ้า", + "translation": "electricity" + }, + { + "word": "อิเล็กทรอนิกส์", + "translation": "electronic" + }, + { + "word": "ธาตุ", + "translation": "element" + }, + { + "word": "เบื้องต้น", + "translation": "elementary" + }, + { + "word": "กำจัด", + "translation": "eliminate" + }, + { + "word": "ผู้ลากมากดี", + "translation": "elite" + }, + { + "word": "อื่น", + "translation": "else" + }, + { + "word": "ที่อื่น ๆ", + "translation": "elsewhere" + }, + { + "word": "อีเมล", + "translation": "e-mail" + }, + { + "word": "โอบกอด", + "translation": "embrace" + }, + { + "word": "ออกมา", + "translation": "emerge" + }, + { + "word": "กรณีฉุกเฉิน", + "translation": "emergency" + }, + { + "word": "การปล่อยมลพิษ", + "translation": "emission" + }, + { + "word": "อารมณ์", + "translation": "emotion" + }, + { + "word": "อารมณ์", + "translation": "emotional" + }, + { + "word": "ความสำคัญ", + "translation": "emphasis" + }, + { + "word": "เน้น", + "translation": "emphasize" + }, + { + "word": "จ้าง", + "translation": "employ" + }, + { + "word": "ลูกจ้าง", + "translation": "employee" + }, + { + "word": "นายจ้าง", + "translation": "employer" + }, + { + "word": "การจ้าง", + "translation": "employment" + }, + { + "word": "ว่างเปล่า", + "translation": "empty" + }, + { + "word": "ทำให้สามารถ", + "translation": "enable" + }, + { + "word": "พบ", + "translation": "encounter" + }, + { + "word": "ส่งเสริม", + "translation": "encourage" + }, + { + "word": "ปลาย", + "translation": "end" + }, + { + "word": "ศัตรู", + "translation": "enemy" + }, + { + "word": "พลังงาน", + "translation": "energy" + }, + { + "word": "การบังคับใช้", + "translation": "enforcement" + }, + { + "word": "ว่าจ้าง", + "translation": "engage" + }, + { + "word": "เครื่องยนต์", + "translation": "engine" + }, + { + "word": "วิศวกร", + "translation": "engineer" + }, + { + "word": "วิศวกรรม", + "translation": "engineering" + }, + { + "word": "อังกฤษ", + "translation": "English" + }, + { + "word": "ทำให้ดีขึ้น", + "translation": "enhance" + }, + { + "word": "สนุก", + "translation": "enjoy" + }, + { + "word": "มหาศาล", + "translation": "enormous" + }, + { + "word": "พอ", + "translation": "enough" + }, + { + "word": "ทำให้มั่นใจ", + "translation": "ensure" + }, + { + "word": "เข้าสู่", + "translation": "enter" + }, + { + "word": "องค์กร", + "translation": "enterprise" + }, + { + "word": "การบันเทิง", + "translation": "entertainment" + }, + { + "word": "ทั้งหมด", + "translation": "entire" + }, + { + "word": "อย่างสิ้นเชิง", + "translation": "entirely" + }, + { + "word": "ทางเข้า", + "translation": "entrance" + }, + { + "word": "การเข้า", + "translation": "entry" + }, + { + "word": "สิ่งแวดล้อม", + "translation": "environment" + }, + { + "word": "สิ่งแวดล้อม", + "translation": "environmental" + }, + { + "word": "ตอน", + "translation": "episode" + }, + { + "word": "เท่ากัน", + "translation": "equal" + }, + { + "word": "พอ ๆ กัน", + "translation": "equally" + }, + { + "word": "อุปกรณ์", + "translation": "equipment" + }, + { + "word": "ยุค", + "translation": "era" + }, + { + "word": "ความผิดพลาด", + "translation": "error" + }, + { + "word": "หนี", + "translation": "escape" + }, + { + "word": "โดยเฉพาะอย่างยิ่ง", + "translation": "especially" + }, + { + "word": "เรียงความ", + "translation": "essay" + }, + { + "word": "สำคัญ", + "translation": "essential" + }, + { + "word": "เป็นหลัก", + "translation": "essentially" + }, + { + "word": "สร้าง", + "translation": "establish" + }, + { + "word": "สถานประกอบการ", + "translation": "establishment" + }, + { + "word": "ที่ดิน", + "translation": "estate" + }, + { + "word": "ประมาณการ", + "translation": "estimate" + }, + { + "word": "ฯลฯ", + "translation": "etc" + }, + { + "word": "จริยธรรม", + "translation": "ethics" + }, + { + "word": "ชาติพันธุ์", + "translation": "ethnic" + }, + { + "word": "ชาวยุโรป", + "translation": "European" + }, + { + "word": "ประเมินผล", + "translation": "evaluate" + }, + { + "word": "การประเมินผล", + "translation": "evaluation" + }, + { + "word": "แม้", + "translation": "even" + }, + { + "word": "ตอนเย็น", + "translation": "evening" + }, + { + "word": "เหตุการณ์", + "translation": "event" + }, + { + "word": "ในที่สุด", + "translation": "eventually" + }, + { + "word": "เคย", + "translation": "ever" + }, + { + "word": "ทุกๆ", + "translation": "every" + }, + { + "word": "ทุกคน", + "translation": "everybody" + }, + { + "word": "ทุกวัน", + "translation": "everyday" + }, + { + "word": "ทุกคน", + "translation": "everyone" + }, + { + "word": "ทุกอย่าง", + "translation": "everything" + }, + { + "word": "ทุกที่", + "translation": "everywhere" + }, + { + "word": "หลักฐาน", + "translation": "evidence" + }, + { + "word": "วิวัฒนาการ", + "translation": "evolution" + }, + { + "word": "วิวัฒนาการ", + "translation": "evolve" + }, + { + "word": "แน่นอน", + "translation": "exact" + }, + { + "word": "อย่างแน่นอน", + "translation": "exactly" + }, + { + "word": "การตรวจสอบ", + "translation": "examination" + }, + { + "word": "ตรวจสอบ", + "translation": "examine" + }, + { + "word": "ตัวอย่าง", + "translation": "example" + }, + { + "word": "เกินกว่า", + "translation": "exceed" + }, + { + "word": "ยอดเยี่ยม", + "translation": "excellent" + }, + { + "word": "ยกเว้น", + "translation": "except" + }, + { + "word": "ข้อยกเว้น", + "translation": "exception" + }, + { + "word": "แลกเปลี่ยน", + "translation": "exchange" + }, + { + "word": "น่าตื่นเต้น", + "translation": "exciting" + }, + { + "word": "ฝ่ายบริหาร", + "translation": "executive" + }, + { + "word": "การออกกำลังกาย", + "translation": "exercise" + }, + { + "word": "จัดแสดง", + "translation": "exhibit" + }, + { + "word": "งานแสดงนิทรรศการ", + "translation": "exhibition" + }, + { + "word": "ที่มีอยู่", + "translation": "exist" + }, + { + "word": "การดำรงอยู่", + "translation": "existence" + }, + { + "word": "ที่มีอยู่", + "translation": "existing" + }, + { + "word": "ขยายตัว", + "translation": "expand" + }, + { + "word": "การขยาย", + "translation": "expansion" + }, + { + "word": "คาดหวัง", + "translation": "expect" + }, + { + "word": "ความคาดหวัง", + "translation": "expectation" + }, + { + "word": "ค่าใช้จ่าย", + "translation": "expense" + }, + { + "word": "เเพง", + "translation": "expensive" + }, + { + "word": "ประสบการณ์", + "translation": "experience" + }, + { + "word": "การทดลอง", + "translation": "experiment" + }, + { + "word": "ผู้เชี่ยวชาญ", + "translation": "expert" + }, + { + "word": "อธิบาย", + "translation": "explain" + }, + { + "word": "คำอธิบาย", + "translation": "explanation" + }, + { + "word": "ระเบิด", + "translation": "explode" + }, + { + "word": "สำรวจ", + "translation": "explore" + }, + { + "word": "การระเบิด", + "translation": "explosion" + }, + { + "word": "เปิดเผย", + "translation": "expose" + }, + { + "word": "การรับสัมผัสเชื้อ", + "translation": "exposure" + }, + { + "word": "ด่วน", + "translation": "express" + }, + { + "word": "การแสดงออก", + "translation": "expression" + }, + { + "word": "ต่ออายุ", + "translation": "extend" + }, + { + "word": "ส่วนขยาย", + "translation": "extension" + }, + { + "word": "กว้างขวาง", + "translation": "extensive" + }, + { + "word": "ขอบเขต", + "translation": "extent" + }, + { + "word": "ภายนอก", + "translation": "external" + }, + { + "word": "พิเศษ", + "translation": "extra" + }, + { + "word": "วิสามัญ", + "translation": "extraordinary" + }, + { + "word": "สุดขีด", + "translation": "extreme" + }, + { + "word": "อย่างมาก", + "translation": "extremely" + }, + { + "word": "ตา", + "translation": "eye" + }, + { + "word": "ผ้า", + "translation": "fabric" + }, + { + "word": "ใบหน้า", + "translation": "face" + }, + { + "word": "สิ่งอำนวยความสะดวก", + "translation": "facility" + }, + { + "word": "ความจริง", + "translation": "fact" + }, + { + "word": "ปัจจัย", + "translation": "factor" + }, + { + "word": "โรงงาน", + "translation": "factory" + }, + { + "word": "คณะ", + "translation": "faculty" + }, + { + "word": "เลือนหายไป", + "translation": "fade" + }, + { + "word": "ล้มเหลว", + "translation": "fail" + }, + { + "word": "ความล้มเหลว", + "translation": "failure" + }, + { + "word": "ธรรม", + "translation": "fair" + }, + { + "word": "อย่างเป็นธรรม", + "translation": "fairly" + }, + { + "word": "ความเชื่อ", + "translation": "faith" + }, + { + "word": "ตก", + "translation": "fall" + }, + { + "word": "เท็จ", + "translation": "false" + }, + { + "word": "คุ้นเคย", + "translation": "familiar" + }, + { + "word": "ครอบครัว", + "translation": "family" + }, + { + "word": "มีชื่อเสียง", + "translation": "famous" + }, + { + "word": "แฟน", + "translation": "fan" + }, + { + "word": "จินตนาการ", + "translation": "fantasy" + }, + { + "word": "ห่างไกล", + "translation": "far" + }, + { + "word": "ฟาร์ม", + "translation": "farm" + }, + { + "word": "ชาวนา", + "translation": "farmer" + }, + { + "word": "แฟชั่น", + "translation": "fashion" + }, + { + "word": "รวดเร็ว", + "translation": "fast" + }, + { + "word": "อ้วน", + "translation": "fat" + }, + { + "word": "โชคชะตา", + "translation": "fate" + }, + { + "word": "พ่อ", + "translation": "father" + }, + { + "word": "ความผิด", + "translation": "fault" + }, + { + "word": "โปรดปราน", + "translation": "favor" + }, + { + "word": "ที่ชื่นชอบ", + "translation": "favorite" + }, + { + "word": "กลัว", + "translation": "fear" + }, + { + "word": "ลักษณะเฉพาะ", + "translation": "feature" + }, + { + "word": "รัฐบาลกลาง", + "translation": "federal" + }, + { + "word": "ค่าธรรมเนียม", + "translation": "fee" + }, + { + "word": "อาหาร", + "translation": "feed" + }, + { + "word": "รู้สึก", + "translation": "feel" + }, + { + "word": "ความรู้สึก", + "translation": "feeling" + }, + { + "word": "มนุษย์", + "translation": "fellow" + }, + { + "word": "หญิง", + "translation": "female" + }, + { + "word": "รั้ว", + "translation": "fence" + }, + { + "word": "น้อย", + "translation": "few" + }, + { + "word": "น้อยลง", + "translation": "fewer" + }, + { + "word": "ไฟเบอร์", + "translation": "fiber" + }, + { + "word": "เรื่องอ่านเล่น", + "translation": "fiction" + }, + { + "word": "สนาม", + "translation": "field" + }, + { + "word": "สิบห้า", + "translation": "fifteen" + }, + { + "word": "ที่ห้า", + "translation": "fifth" + }, + { + "word": "ห้าสิบ", + "translation": "fifty" + }, + { + "word": "สู้", + "translation": "fight" + }, + { + "word": "นักมวย", + "translation": "fighter" + }, + { + "word": "ศึก", + "translation": "fighting" + }, + { + "word": "รูป", + "translation": "figure" + }, + { + "word": "ไฟล์", + "translation": "file" + }, + { + "word": "เติม", + "translation": "fill" + }, + { + "word": "ฟิล์ม", + "translation": "film" + }, + { + "word": "สุดท้าย", + "translation": "final" + }, + { + "word": "ในที่สุด", + "translation": "finally" + }, + { + "word": "การเงิน", + "translation": "finance" + }, + { + "word": "การเงิน", + "translation": "financial" + }, + { + "word": "หา", + "translation": "find" + }, + { + "word": "คำวินิจฉัย", + "translation": "finding" + }, + { + "word": "ละเอียด", + "translation": "fine" + }, + { + "word": "นิ้ว", + "translation": "finger" + }, + { + "word": "เสร็จสิ้น", + "translation": "finish" + }, + { + "word": "ไฟ", + "translation": "fire" + }, + { + "word": "บริษัท", + "translation": "firm" + }, + { + "word": "เป็นครั้งแรก", + "translation": "first" + }, + { + "word": "ปลา", + "translation": "fish" + }, + { + "word": "ประมง", + "translation": "fishing" + }, + { + "word": "พอดี", + "translation": "fit" + }, + { + "word": "การออกกำลังกาย", + "translation": "fitness" + }, + { + "word": "ห้า", + "translation": "five" + }, + { + "word": "แก้ไข", + "translation": "fix" + }, + { + "word": "ธง", + "translation": "flag" + }, + { + "word": "เปลวไฟ", + "translation": "flame" + }, + { + "word": "แบน", + "translation": "flat" + }, + { + "word": "รส", + "translation": "flavor" + }, + { + "word": "หนี", + "translation": "flee" + }, + { + "word": "เนื้อ", + "translation": "flesh" + }, + { + "word": "เที่ยวบิน", + "translation": "flight" + }, + { + "word": "ลอย", + "translation": "float" + }, + { + "word": "ชั้น", + "translation": "floor" + }, + { + "word": "ไหล", + "translation": "flow" + }, + { + "word": "ดอกไม้", + "translation": "flower" + }, + { + "word": "บิน", + "translation": "fly" + }, + { + "word": "โฟกัส", + "translation": "focus" + }, + { + "word": "พื้นบ้าน", + "translation": "folk" + }, + { + "word": "ปฏิบัติตาม", + "translation": "follow" + }, + { + "word": "ดังต่อไปนี้", + "translation": "following" + }, + { + "word": "อาหาร", + "translation": "food" + }, + { + "word": "เท้า", + "translation": "foot" + }, + { + "word": "ฟุตบอล", + "translation": "football" + }, + { + "word": "สำหรับ", + "translation": "for" + }, + { + "word": "บังคับ", + "translation": "force" + }, + { + "word": "ต่างประเทศ", + "translation": "foreign" + }, + { + "word": "ป่า", + "translation": "forest" + }, + { + "word": "ตลอดไป", + "translation": "forever" + }, + { + "word": "ลืม", + "translation": "forget" + }, + { + "word": "แบบฟอร์ม", + "translation": "form" + }, + { + "word": "เป็นทางการ", + "translation": "formal" + }, + { + "word": "รูปแบบ", + "translation": "formation" + }, + { + "word": "อดีต", + "translation": "former" + }, + { + "word": "สูตร", + "translation": "formula" + }, + { + "word": "ออกมา", + "translation": "forth" + }, + { + "word": "โชคลาภ", + "translation": "fortune" + }, + { + "word": "ข้างหน้า", + "translation": "forward" + }, + { + "word": "พบ", + "translation": "found" + }, + { + "word": "รากฐาน", + "translation": "foundation" + }, + { + "word": "ผู้สร้าง", + "translation": "founder" + }, + { + "word": "สี่", + "translation": "four" + }, + { + "word": "ที่สี่", + "translation": "fourth" + }, + { + "word": "กรอบ", + "translation": "frame" + }, + { + "word": "กรอบ", + "translation": "framework" + }, + { + "word": "ฟรี", + "translation": "free" + }, + { + "word": "เสรีภาพ", + "translation": "freedom" + }, + { + "word": "แข็ง", + "translation": "freeze" + }, + { + "word": "ฝรั่งเศส", + "translation": "French" + }, + { + "word": "ความถี่", + "translation": "frequency" + }, + { + "word": "บ่อย", + "translation": "frequent" + }, + { + "word": "บ่อยๆ", + "translation": "frequently" + }, + { + "word": "สด", + "translation": "fresh" + }, + { + "word": "เพื่อน", + "translation": "friend" + }, + { + "word": "เป็นมิตร", + "translation": "friendly" + }, + { + "word": "มิตรภาพ", + "translation": "friendship" + }, + { + "word": "จาก", + "translation": "from" + }, + { + "word": "ด้านหน้า", + "translation": "front" + }, + { + "word": "ผลไม้", + "translation": "fruit" + }, + { + "word": "แห้ว", + "translation": "frustration" + }, + { + "word": "เชื้อเพลิง", + "translation": "fuel" + }, + { + "word": "เต็ม", + "translation": "full" + }, + { + "word": "อย่างเต็มที่", + "translation": "fully" + }, + { + "word": "สนุก", + "translation": "fun" + }, + { + "word": "ฟังก์ชัน", + "translation": "function" + }, + { + "word": "กองทุน", + "translation": "fund" + }, + { + "word": "พื้นฐาน", + "translation": "fundamental" + }, + { + "word": "การระดมทุน", + "translation": "funding" + }, + { + "word": "งานศพ", + "translation": "funeral" + }, + { + "word": "ตลก", + "translation": "funny" + }, + { + "word": "เฟอร์นิเจอร์", + "translation": "furniture" + }, + { + "word": "นอกจากนี้", + "translation": "furthermore" + }, + { + "word": "อนาคต", + "translation": "future" + }, + { + "word": "ได้รับ", + "translation": "gain" + }, + { + "word": "กาแล็กซี", + "translation": "galaxy" + }, + { + "word": "เฉลียง", + "translation": "gallery" + }, + { + "word": "เกม", + "translation": "game" + }, + { + "word": "แก๊ง", + "translation": "gang" + }, + { + "word": "ช่องว่าง", + "translation": "gap" + }, + { + "word": "โรงรถ", + "translation": "garage" + }, + { + "word": "สวน", + "translation": "garden" + }, + { + "word": "กระเทียม", + "translation": "garlic" + }, + { + "word": "แก๊ส", + "translation": "gas" + }, + { + "word": "ประตู", + "translation": "gate" + }, + { + "word": "รวบรวม", + "translation": "gather" + }, + { + "word": "เกย์", + "translation": "gay" + }, + { + "word": "จ้องมอง", + "translation": "gaze" + }, + { + "word": "เกียร์", + "translation": "gear" + }, + { + "word": "เพศ", + "translation": "gender" + }, + { + "word": "ยีน", + "translation": "gene" + }, + { + "word": "ทั่วไป", + "translation": "general" + }, + { + "word": "โดยทั่วไป", + "translation": "generally" + }, + { + "word": "สร้าง", + "translation": "generate" + }, + { + "word": "รุ่น", + "translation": "generation" + }, + { + "word": "ทางพันธุกรรม", + "translation": "genetic" + }, + { + "word": "สุภาพบุรุษ", + "translation": "gentleman" + }, + { + "word": "ค่อยๆ", + "translation": "gently" + }, + { + "word": "เยอรมัน", + "translation": "German" + }, + { + "word": "เชิง", + "translation": "gesture" + }, + { + "word": "ได้รับ", + "translation": "get" + }, + { + "word": "ผี", + "translation": "ghost" + }, + { + "word": "ยักษ์", + "translation": "giant" + }, + { + "word": "ของขวัญ", + "translation": "gift" + }, + { + "word": "มีพรสวรรค์", + "translation": "gifted" + }, + { + "word": "สาว", + "translation": "girl" + }, + { + "word": "แฟน", + "translation": "girlfriend" + }, + { + "word": "ให้", + "translation": "give" + }, + { + "word": "รับ", + "translation": "given" + }, + { + "word": "ดีใจ", + "translation": "glad" + }, + { + "word": "ชำเลือง", + "translation": "glance" + }, + { + "word": "กระจก", + "translation": "glass" + }, + { + "word": "ทั่วโลก", + "translation": "global" + }, + { + "word": "ถุงมือ", + "translation": "glove" + }, + { + "word": "ไป", + "translation": "go" + }, + { + "word": "เป้าหมาย", + "translation": "goal" + }, + { + "word": "พระเจ้า", + "translation": "God" + }, + { + "word": "ทอง", + "translation": "gold" + }, + { + "word": "ทอง", + "translation": "golden" + }, + { + "word": "กอล์ฟ", + "translation": "golf" + }, + { + "word": "ดี", + "translation": "good" + }, + { + "word": "รัฐบาล", + "translation": "government" + }, + { + "word": "ผู้ว่าราชการจังหวัด", + "translation": "governor" + }, + { + "word": "คว้า", + "translation": "grab" + }, + { + "word": "เกรด", + "translation": "grade" + }, + { + "word": "ค่อยๆ", + "translation": "gradually" + }, + { + "word": "จบการศึกษา", + "translation": "graduate" + }, + { + "word": "เมล็ดข้าว", + "translation": "grain" + }, + { + "word": "ยิ่งใหญ่", + "translation": "grand" + }, + { + "word": "คุณปู่", + "translation": "grandfather" + }, + { + "word": "ยาย", + "translation": "grandmother" + }, + { + "word": "ทุน", + "translation": "grant" + }, + { + "word": "หญ้า", + "translation": "grass" + }, + { + "word": "หลุมฝังศพ", + "translation": "grave" + }, + { + "word": "สีเทา", + "translation": "gray" + }, + { + "word": "ยิ่งใหญ่", + "translation": "great" + }, + { + "word": "ใหญ่ที่สุด", + "translation": "greatest" + }, + { + "word": "สีเขียว", + "translation": "green" + }, + { + "word": "ร้านขายของชำ", + "translation": "grocery" + }, + { + "word": "พื้น", + "translation": "ground" + }, + { + "word": "กลุ่ม", + "translation": "group" + }, + { + "word": "เจริญ", + "translation": "grow" + }, + { + "word": "การเจริญเติบโต", + "translation": "growing" + }, + { + "word": "การเจริญเติบโต", + "translation": "growth" + }, + { + "word": "รับประกัน", + "translation": "guarantee" + }, + { + "word": "ยาม", + "translation": "guard" + }, + { + "word": "เดา", + "translation": "guess" + }, + { + "word": "แขก", + "translation": "guest" + }, + { + "word": "คู่มือ", + "translation": "guide" + }, + { + "word": "ข้อแนะนำ", + "translation": "guideline" + }, + { + "word": "รู้สึกผิด", + "translation": "guilty" + }, + { + "word": "ปืน", + "translation": "gun" + }, + { + "word": "ผู้ชาย", + "translation": "guy" + }, + { + "word": "นิสัย", + "translation": "habit" + }, + { + "word": "ที่อยู่อาศัย", + "translation": "habitat" + }, + { + "word": "ผม", + "translation": "hair" + }, + { + "word": "ครึ่ง", + "translation": "half" + }, + { + "word": "ห้องโถง", + "translation": "hall" + }, + { + "word": "มือ", + "translation": "hand" + }, + { + "word": "กำมือ", + "translation": "handful" + }, + { + "word": "ด้ามจับ", + "translation": "handle" + }, + { + "word": "แขวน", + "translation": "hang" + }, + { + "word": "เกิดขึ้น", + "translation": "happen" + }, + { + "word": "มีความสุข", + "translation": "happy" + }, + { + "word": "ยาก", + "translation": "hard" + }, + { + "word": "แทบจะไม่", + "translation": "hardly" + }, + { + "word": "หมวก", + "translation": "hat" + }, + { + "word": "เกลียด", + "translation": "hate" + }, + { + "word": "มี", + "translation": "have" + }, + { + "word": "เขา", + "translation": "he" + }, + { + "word": "ศีรษะ", + "translation": "head" + }, + { + "word": "พาดหัว", + "translation": "headline" + }, + { + "word": "สำนักงานใหญ่", + "translation": "headquarters" + }, + { + "word": "สุขภาพ", + "translation": "health" + }, + { + "word": "แข็งแรง", + "translation": "healthy" + }, + { + "word": "ได้ยิน", + "translation": "hear" + }, + { + "word": "การได้ยิน", + "translation": "hearing" + }, + { + "word": "หัวใจ", + "translation": "heart" + }, + { + "word": "ความร้อน", + "translation": "heat" + }, + { + "word": "สวรรค์", + "translation": "heaven" + }, + { + "word": "หนัก", + "translation": "heavily" + }, + { + "word": "หนัก", + "translation": "heavy" + }, + { + "word": "ส้น", + "translation": "heel" + }, + { + "word": "ความสูง", + "translation": "height" + }, + { + "word": "เฮลิคอปเตอร์", + "translation": "helicopter" + }, + { + "word": "นรก", + "translation": "hell" + }, + { + "word": "สวัสดี", + "translation": "hello" + }, + { + "word": "ช่วยด้วย", + "translation": "help" + }, + { + "word": "เป็นประโยชน์", + "translation": "helpful" + }, + { + "word": "เธอ", + "translation": "her" + }, + { + "word": "ที่นี่", + "translation": "here" + }, + { + "word": "มรดก", + "translation": "heritage" + }, + { + "word": "พระเอก", + "translation": "hero" + }, + { + "word": "ตัวเธอเอง", + "translation": "herself" + }, + { + "word": "เฮ้", + "translation": "hey" + }, + { + "word": "สวัสดี", + "translation": "hi" + }, + { + "word": "ซ่อน", + "translation": "hide" + }, + { + "word": "สูง", + "translation": "high" + }, + { + "word": "ไฮไลท์", + "translation": "highlight" + }, + { + "word": "อย่างมาก", + "translation": "highly" + }, + { + "word": "ทางหลวง", + "translation": "highway" + }, + { + "word": "เนินเขา", + "translation": "hill" + }, + { + "word": "เขา", + "translation": "him" + }, + { + "word": "ตัวเขาเอง", + "translation": "himself" + }, + { + "word": "สะโพก", + "translation": "hip" + }, + { + "word": "จ้าง", + "translation": "hire" + }, + { + "word": "ของเขา", + "translation": "his" + }, + { + "word": "นักประวัติศาสตร์", + "translation": "historian" + }, + { + "word": "ประวัติศาสตร์", + "translation": "historic" + }, + { + "word": "ประวัติศาสตร์", + "translation": "historical" + }, + { + "word": "ประวัติศาสตร์", + "translation": "history" + }, + { + "word": "ตี", + "translation": "hit" + }, + { + "word": "ถือ", + "translation": "hold" + }, + { + "word": "รู", + "translation": "hole" + }, + { + "word": "วันหยุด", + "translation": "holiday" + }, + { + "word": "ศักดิ์สิทธิ์", + "translation": "holy" + }, + { + "word": "บ้าน", + "translation": "home" + }, + { + "word": "ไม่มีที่อยู่อาศัย", + "translation": "homeless" + }, + { + "word": "ซื่อสัตย์", + "translation": "honest" + }, + { + "word": "น้ำผึ้ง", + "translation": "honey" + }, + { + "word": "เกียรติ", + "translation": "honor" + }, + { + "word": "ความหวัง", + "translation": "hope" + }, + { + "word": "ขอบฟ้า", + "translation": "horizon" + }, + { + "word": "ความน่ากลัว", + "translation": "horror" + }, + { + "word": "ม้า", + "translation": "horse" + }, + { + "word": "โรงพยาบาล", + "translation": "hospital" + }, + { + "word": "เจ้าภาพ", + "translation": "host" + }, + { + "word": "ร้อน", + "translation": "hot" + }, + { + "word": "โรงแรม", + "translation": "hotel" + }, + { + "word": "ชั่วโมง", + "translation": "hour" + }, + { + "word": "บ้าน", + "translation": "house" + }, + { + "word": "ครัวเรือน", + "translation": "household" + }, + { + "word": "การเคหะ", + "translation": "housing" + }, + { + "word": "อย่างไร", + "translation": "how" + }, + { + "word": "อย่างไรก็ตาม", + "translation": "however" + }, + { + "word": "ใหญ่", + "translation": "huge" + }, + { + "word": "เป็นมนุษย์", + "translation": "human" + }, + { + "word": "อารมณ์ขัน", + "translation": "humor" + }, + { + "word": "ร้อย", + "translation": "hundred" + }, + { + "word": "หิว", + "translation": "hungry" + }, + { + "word": "ผู้ล่า", + "translation": "hunter" + }, + { + "word": "การล่าสัตว์", + "translation": "hunting" + }, + { + "word": "เจ็บ", + "translation": "hurt" + }, + { + "word": "สามี", + "translation": "husband" + }, + { + "word": "สมมติฐาน", + "translation": "hypothesis" + }, + { + "word": "ผม", + "translation": "I" + }, + { + "word": "น้ำแข็ง", + "translation": "ice" + }, + { + "word": "ความคิด", + "translation": "idea" + }, + { + "word": "ในอุดมคติ", + "translation": "ideal" + }, + { + "word": "บัตรประจำตัว", + "translation": "identification" + }, + { + "word": "แยกแยะ", + "translation": "identify" + }, + { + "word": "เอกลักษณ์", + "translation": "identity" + }, + { + "word": "กล่าวคือ", + "translation": "ie" + }, + { + "word": "ถ้า", + "translation": "if" + }, + { + "word": "ไม่สนใจ", + "translation": "ignore" + }, + { + "word": "ป่วย", + "translation": "ill" + }, + { + "word": "ที่ผิดกฎหมาย", + "translation": "illegal" + }, + { + "word": "การเจ็บป่วย", + "translation": "illness" + }, + { + "word": "แสดง", + "translation": "illustrate" + }, + { + "word": "ภาพ", + "translation": "image" + }, + { + "word": "จินตนาการ", + "translation": "imagination" + }, + { + "word": "จินตนาการ", + "translation": "imagine" + }, + { + "word": "ทันทีทันใด", + "translation": "immediate" + }, + { + "word": "ทันที", + "translation": "immediately" + }, + { + "word": "ผู้อพยพ", + "translation": "immigrant" + }, + { + "word": "การอพยพ", + "translation": "immigration" + }, + { + "word": "ส่งผลกระทบ", + "translation": "impact" + }, + { + "word": "การดำเนินการ", + "translation": "implement" + }, + { + "word": "ความหมาย", + "translation": "implication" + }, + { + "word": "บ่งบอกถึง", + "translation": "imply" + }, + { + "word": "ความสำคัญ", + "translation": "importance" + }, + { + "word": "สำคัญ", + "translation": "important" + }, + { + "word": "กำหนด", + "translation": "impose" + }, + { + "word": "เป็นไปไม่ได้", + "translation": "impossible" + }, + { + "word": "ประทับใจ", + "translation": "impress" + }, + { + "word": "ความประทับใจ", + "translation": "impression" + }, + { + "word": "ประทับใจ", + "translation": "impressive" + }, + { + "word": "ทำให้ดีขึ้น", + "translation": "improve" + }, + { + "word": "การปรับปรุง", + "translation": "improvement" + }, + { + "word": "ใน", + "translation": "in" + }, + { + "word": "แรงจูงใจ", + "translation": "incentive" + }, + { + "word": "อุบัติการณ์", + "translation": "incident" + }, + { + "word": "ประกอบด้วย", + "translation": "include" + }, + { + "word": "รวมทั้ง", + "translation": "including" + }, + { + "word": "เงินได้", + "translation": "income" + }, + { + "word": "incorporate", + "translation": "incorporate" + }, + { + "word": "เพิ่มขึ้น", + "translation": "increase" + }, + { + "word": "เพิ่มขึ้น", + "translation": "increased" + }, + { + "word": "ที่เพิ่มขึ้น", + "translation": "increasing" + }, + { + "word": "ขึ้น", + "translation": "increasingly" + }, + { + "word": "เหลือเชื่อ", + "translation": "incredible" + }, + { + "word": "จริง", + "translation": "indeed" + }, + { + "word": "ความเป็นอิสระ", + "translation": "independence" + }, + { + "word": "อิสระ", + "translation": "independent" + }, + { + "word": "ดัชนี", + "translation": "index" + }, + { + "word": "ชาวอินเดีย", + "translation": "Indian" + }, + { + "word": "แสดง", + "translation": "indicate" + }, + { + "word": "การแสดง", + "translation": "indication" + }, + { + "word": "รายบุคคล", + "translation": "individual" + }, + { + "word": "ด้านอุตสาหกรรม", + "translation": "industrial" + }, + { + "word": "อุตสาหกรรม", + "translation": "industry" + }, + { + "word": "ทารก", + "translation": "infant" + }, + { + "word": "การติดเชื้อ", + "translation": "infection" + }, + { + "word": "เงินเฟ้อ", + "translation": "inflation" + }, + { + "word": "มีอิทธิพล", + "translation": "influence" + }, + { + "word": "แจ้ง", + "translation": "inform" + }, + { + "word": "ข้อมูล", + "translation": "information" + }, + { + "word": "ส่วนผสม", + "translation": "ingredient" + }, + { + "word": "แรกเริ่ม", + "translation": "initial" + }, + { + "word": "ในขั้นต้น", + "translation": "initially" + }, + { + "word": "ความคิดริเริ่ม", + "translation": "initiative" + }, + { + "word": "ความเสียหาย", + "translation": "injury" + }, + { + "word": "ภายใน", + "translation": "inner" + }, + { + "word": "ผู้บริสุทธิ์", + "translation": "innocent" + }, + { + "word": "การสอบสวน", + "translation": "inquiry" + }, + { + "word": "ภายใน", + "translation": "inside" + }, + { + "word": "ข้อมูลเชิงลึก", + "translation": "insight" + }, + { + "word": "ยืนยัน", + "translation": "insist" + }, + { + "word": "สร้างแรงบันดาลใจ", + "translation": "inspire" + }, + { + "word": "ติดตั้ง", + "translation": "install" + }, + { + "word": "ตัวอย่าง", + "translation": "instance" + }, + { + "word": "แทน", + "translation": "instead" + }, + { + "word": "สถาบัน", + "translation": "institution" + }, + { + "word": "สถาบัน", + "translation": "institutional" + }, + { + "word": "คำแนะนำ", + "translation": "instruction" + }, + { + "word": "อาจารย์ผู้สอน", + "translation": "instructor" + }, + { + "word": "เครื่องดนตรี", + "translation": "instrument" + }, + { + "word": "ประกันภัย", + "translation": "insurance" + }, + { + "word": "ทางปัญญา", + "translation": "intellectual" + }, + { + "word": "สติปัญญา", + "translation": "intelligence" + }, + { + "word": "ตั้งใจ", + "translation": "intend" + }, + { + "word": "เข้มข้น", + "translation": "intense" + }, + { + "word": "ความรุนแรง", + "translation": "intensity" + }, + { + "word": "ความตั้งใจ", + "translation": "intention" + }, + { + "word": "ปฏิสัมพันธ์", + "translation": "interaction" + }, + { + "word": "น่าสนใจ", + "translation": "interest" + }, + { + "word": "สนใจ", + "translation": "interested" + }, + { + "word": "น่าสนใจ", + "translation": "interesting" + }, + { + "word": "ภายใน", + "translation": "internal" + }, + { + "word": "ระหว่างประเทศ", + "translation": "international" + }, + { + "word": "อินเทอร์เน็ต", + "translation": "Internet" + }, + { + "word": "ตีความ", + "translation": "interpret" + }, + { + "word": "การตีความ", + "translation": "interpretation" + }, + { + "word": "การแทรกแซง", + "translation": "intervention" + }, + { + "word": "สัมภาษณ์", + "translation": "interview" + }, + { + "word": "เข้าไป", + "translation": "into" + }, + { + "word": "แนะนำ", + "translation": "introduce" + }, + { + "word": "บทนำ", + "translation": "introduction" + }, + { + "word": "การบุกรุก", + "translation": "invasion" + }, + { + "word": "ลงทุน", + "translation": "invest" + }, + { + "word": "สอบสวน", + "translation": "investigate" + }, + { + "word": "ตรวจสอบ", + "translation": "investigation" + }, + { + "word": "พนักงานสืบสวน", + "translation": "investigator" + }, + { + "word": "การลงทุน", + "translation": "investment" + }, + { + "word": "นักลงทุน", + "translation": "investor" + }, + { + "word": "เชิญ", + "translation": "invite" + }, + { + "word": "รวมถึง", + "translation": "involve" + }, + { + "word": "ที่เกี่ยวข้อง", + "translation": "involved" + }, + { + "word": "การมีส่วนร่วม", + "translation": "involvement" + }, + { + "word": "เกี่ยวกับอิรัก", + "translation": "Iraqi" + }, + { + "word": "ไอริช", + "translation": "Irish" + }, + { + "word": "เหล็ก", + "translation": "iron" + }, + { + "word": "อิสลาม", + "translation": "Islamic" + }, + { + "word": "เกาะ", + "translation": "island" + }, + { + "word": "ชาวอิสราเอล", + "translation": "Israeli" + }, + { + "word": "ปัญหา", + "translation": "issue" + }, + { + "word": "มัน", + "translation": "it" + }, + { + "word": "อิตาลี", + "translation": "Italian" + }, + { + "word": "สิ่งของ", + "translation": "item" + }, + { + "word": "ของมัน", + "translation": "its" + }, + { + "word": "ตัวเอง", + "translation": "itself" + }, + { + "word": "แจ็คเก็ต", + "translation": "jacket" + }, + { + "word": "คุก", + "translation": "jail" + }, + { + "word": "ญี่ปุ่น", + "translation": "Japanese" + }, + { + "word": "เครื่องบินไอพ่น", + "translation": "jet" + }, + { + "word": "ชาวยิว", + "translation": "Jew" + }, + { + "word": "ชาวยิว", + "translation": "Jewish" + }, + { + "word": "งาน", + "translation": "job" + }, + { + "word": "ร่วม", + "translation": "join" + }, + { + "word": "ร่วมกัน", + "translation": "joint" + }, + { + "word": "เรื่องตลก", + "translation": "joke" + }, + { + "word": "วารสาร", + "translation": "journal" + }, + { + "word": "นักข่าว", + "translation": "journalist" + }, + { + "word": "การเดินทาง", + "translation": "journey" + }, + { + "word": "ความปิติยินดี", + "translation": "joy" + }, + { + "word": "ผู้พิพากษา", + "translation": "judge" + }, + { + "word": "การตัดสิน", + "translation": "judgment" + }, + { + "word": "น้ำผลไม้", + "translation": "juice" + }, + { + "word": "กระโดด", + "translation": "jump" + }, + { + "word": "อนุ", + "translation": "junior" + }, + { + "word": "คณะลูกขุน", + "translation": "jury" + }, + { + "word": "แค่", + "translation": "just" + }, + { + "word": "ความยุติธรรม", + "translation": "justice" + }, + { + "word": "แสดงให้เห็นถึง", + "translation": "justify" + }, + { + "word": "เก็บไว้", + "translation": "keep" + }, + { + "word": "สำคัญ", + "translation": "key" + }, + { + "word": "เตะ", + "translation": "kick" + }, + { + "word": "เด็ก", + "translation": "kid" + }, + { + "word": "ฆ่า", + "translation": "kill" + }, + { + "word": "นักฆ่า", + "translation": "killer" + }, + { + "word": "ที่ฆ่า", + "translation": "killing" + }, + { + "word": "ชนิด", + "translation": "kind" + }, + { + "word": "กษัตริย์", + "translation": "king" + }, + { + "word": "จูบ", + "translation": "kiss" + }, + { + "word": "ครัว", + "translation": "kitchen" + }, + { + "word": "เข่า", + "translation": "knee" + }, + { + "word": "มีด", + "translation": "knife" + }, + { + "word": "เคาะ", + "translation": "knock" + }, + { + "word": "ทราบ", + "translation": "know" + }, + { + "word": "ความรู้", + "translation": "knowledge" + }, + { + "word": "ห้องปฏิบัติการ", + "translation": "lab" + }, + { + "word": "ฉลาก", + "translation": "label" + }, + { + "word": "แรงงาน", + "translation": "labor" + }, + { + "word": "ห้องปฏิบัติการ", + "translation": "laboratory" + }, + { + "word": "ไม่มี", + "translation": "lack" + }, + { + "word": "ผู้หญิง", + "translation": "lady" + }, + { + "word": "ทะเลสาป", + "translation": "lake" + }, + { + "word": "ที่ดิน", + "translation": "land" + }, + { + "word": "ภูมิประเทศ", + "translation": "landscape" + }, + { + "word": "ภาษา", + "translation": "language" + }, + { + "word": "ตัก", + "translation": "lap" + }, + { + "word": "ใหญ่", + "translation": "large" + }, + { + "word": "ส่วนใหญ่", + "translation": "largely" + }, + { + "word": "ล่าสุด", + "translation": "last" + }, + { + "word": "สาย", + "translation": "late" + }, + { + "word": "ต่อมา", + "translation": "later" + }, + { + "word": "ละติน", + "translation": "Latin" + }, + { + "word": "ระยะหลัง", + "translation": "latter" + }, + { + "word": "หัวเราะ", + "translation": "laugh" + }, + { + "word": "เปิด", + "translation": "launch" + }, + { + "word": "กฎหมาย", + "translation": "law" + }, + { + "word": "สนามหญ้า", + "translation": "lawn" + }, + { + "word": "คดีความ", + "translation": "lawsuit" + }, + { + "word": "ทนายความ", + "translation": "lawyer" + }, + { + "word": "วาง", + "translation": "lay" + }, + { + "word": "ชั้น", + "translation": "layer" + }, + { + "word": "ตะกั่ว", + "translation": "lead" + }, + { + "word": "หัวหน้า", + "translation": "leader" + }, + { + "word": "ความเป็นผู้นำ", + "translation": "leadership" + }, + { + "word": "ชั้นนำ", + "translation": "leading" + }, + { + "word": "ใบไม้", + "translation": "leaf" + }, + { + "word": "พันธมิตร", + "translation": "league" + }, + { + "word": "ยัน", + "translation": "lean" + }, + { + "word": "เรียน", + "translation": "learn" + }, + { + "word": "การเรียนรู้", + "translation": "learning" + }, + { + "word": "น้อยที่สุด", + "translation": "least" + }, + { + "word": "หนังสัตว์", + "translation": "leather" + }, + { + "word": "ออกจาก", + "translation": "leave" + }, + { + "word": "ซ้าย", + "translation": "left" + }, + { + "word": "ขา", + "translation": "leg" + }, + { + "word": "มรดก", + "translation": "legacy" + }, + { + "word": "ถูกกฎหมาย", + "translation": "legal" + }, + { + "word": "ตำนาน", + "translation": "legend" + }, + { + "word": "กฎหมาย", + "translation": "legislation" + }, + { + "word": "ถูกกฎหมาย", + "translation": "legitimate" + }, + { + "word": "มะนาว", + "translation": "lemon" + }, + { + "word": "ความยาว", + "translation": "length" + }, + { + "word": "น้อยกว่า", + "translation": "less" + }, + { + "word": "บทเรียน", + "translation": "lesson" + }, + { + "word": "ปล่อย", + "translation": "let" + }, + { + "word": "จดหมาย", + "translation": "letter" + }, + { + "word": "ชั้น", + "translation": "level" + }, + { + "word": "ใจกว้าง", + "translation": "liberal" + }, + { + "word": "ห้องสมุด", + "translation": "library" + }, + { + "word": "อนุญาต", + "translation": "license" + }, + { + "word": "โกหก", + "translation": "lie" + }, + { + "word": "ชีวิต", + "translation": "life" + }, + { + "word": "วิถีการดำเนินชีวิต", + "translation": "lifestyle" + }, + { + "word": "ตลอดชีวิต", + "translation": "lifetime" + }, + { + "word": "ยก", + "translation": "lift" + }, + { + "word": "เบา", + "translation": "light" + }, + { + "word": "ชอบ", + "translation": "like" + }, + { + "word": "เป็นไปได้", + "translation": "likely" + }, + { + "word": "จำกัด", + "translation": "limit" + }, + { + "word": "การ จำกัด", + "translation": "limitation" + }, + { + "word": "ถูก จำกัด", + "translation": "limited" + }, + { + "word": "ไลน์", + "translation": "line" + }, + { + "word": "ลิงค์", + "translation": "link" + }, + { + "word": "ฝีปาก", + "translation": "lip" + }, + { + "word": "รายการ", + "translation": "list" + }, + { + "word": "ฟัง", + "translation": "listen" + }, + { + "word": "อย่างแท้จริง", + "translation": "literally" + }, + { + "word": "ทางวรรณคดี", + "translation": "literary" + }, + { + "word": "วรรณกรรม", + "translation": "literature" + }, + { + "word": "น้อย", + "translation": "little" + }, + { + "word": "มีชีวิต", + "translation": "live" + }, + { + "word": "การดำรงชีวิต", + "translation": "living" + }, + { + "word": "ภาระ", + "translation": "load" + }, + { + "word": "เงินกู้", + "translation": "loan" + }, + { + "word": "ในประเทศ", + "translation": "local" + }, + { + "word": "ตั้งอยู่", + "translation": "locate" + }, + { + "word": "ที่ตั้ง", + "translation": "location" + }, + { + "word": "ล็อค", + "translation": "lock" + }, + { + "word": "ยาว", + "translation": "long" + }, + { + "word": "ระยะยาว", + "translation": "long-term" + }, + { + "word": "ดู", + "translation": "look" + }, + { + "word": "หลวม", + "translation": "loose" + }, + { + "word": "แพ้", + "translation": "lose" + }, + { + "word": "การสูญเสีย", + "translation": "loss" + }, + { + "word": "สูญหาย", + "translation": "lost" + }, + { + "word": "จำนวนมาก", + "translation": "lot" + }, + { + "word": "จำนวนมาก", + "translation": "lots" + }, + { + "word": "ดัง", + "translation": "loud" + }, + { + "word": "ความรัก", + "translation": "love" + }, + { + "word": "น่ารัก", + "translation": "lovely" + }, + { + "word": "คนรัก", + "translation": "lover" + }, + { + "word": "ต่ำ", + "translation": "low" + }, + { + "word": "ลดลง", + "translation": "lower" + }, + { + "word": "โชค", + "translation": "luck" + }, + { + "word": "โชคดี", + "translation": "lucky" + }, + { + "word": "อาหารกลางวัน", + "translation": "lunch" + }, + { + "word": "ปอด", + "translation": "lung" + }, + { + "word": "เครื่อง", + "translation": "machine" + }, + { + "word": "บ้า", + "translation": "mad" + }, + { + "word": "นิตยสาร", + "translation": "magazine" + }, + { + "word": "อีเมล", + "translation": "mail" + }, + { + "word": "หลัก", + "translation": "main" + }, + { + "word": "ส่วนใหญ่", + "translation": "mainly" + }, + { + "word": "เก็บรักษา", + "translation": "maintain" + }, + { + "word": "ซ่อมบำรุง", + "translation": "maintenance" + }, + { + "word": "สำคัญ", + "translation": "major" + }, + { + "word": "ส่วนใหญ่", + "translation": "majority" + }, + { + "word": "แต่งหน้า", + "translation": "make" + }, + { + "word": "ผู้สร้าง", + "translation": "maker" + }, + { + "word": "แต่งหน้า", + "translation": "makeup" + }, + { + "word": "ชาย", + "translation": "male" + }, + { + "word": "ห้างสรรพสินค้า", + "translation": "mall" + }, + { + "word": "ชาย", + "translation": "man" + }, + { + "word": "จัดการ", + "translation": "manage" + }, + { + "word": "การจัดการ", + "translation": "management" + }, + { + "word": "ผู้จัดการ", + "translation": "manager" + }, + { + "word": "ลักษณะ", + "translation": "manner" + }, + { + "word": "ผู้ผลิต", + "translation": "manufacturer" + }, + { + "word": "การผลิต", + "translation": "manufacturing" + }, + { + "word": "จำนวนมาก", + "translation": "many" + }, + { + "word": "แผนที่", + "translation": "map" + }, + { + "word": "ขอบ", + "translation": "margin" + }, + { + "word": "เครื่องหมาย", + "translation": "mark" + }, + { + "word": "ตลาด", + "translation": "market" + }, + { + "word": "การตลาด", + "translation": "marketing" + }, + { + "word": "การแต่งงาน", + "translation": "marriage" + }, + { + "word": "แต่งงาน", + "translation": "married" + }, + { + "word": "แต่งงาน", + "translation": "marry" + }, + { + "word": "หน้ากาก", + "translation": "mask" + }, + { + "word": "มวล", + "translation": "mass" + }, + { + "word": "มาก", + "translation": "massive" + }, + { + "word": "เจ้านาย", + "translation": "master" + }, + { + "word": "การจับคู่", + "translation": "match" + }, + { + "word": "วัสดุ", + "translation": "material" + }, + { + "word": "คณิตศาสตร์", + "translation": "math" + }, + { + "word": "เรื่อง", + "translation": "matter" + }, + { + "word": "อาจ", + "translation": "may" + }, + { + "word": "อาจจะ", + "translation": "maybe" + }, + { + "word": "นายกเทศมนตรี", + "translation": "mayor" + }, + { + "word": "ผม", + "translation": "me" + }, + { + "word": "อาหาร", + "translation": "meal" + }, + { + "word": "ค่าเฉลี่ย", + "translation": "mean" + }, + { + "word": "ความหมาย", + "translation": "meaning" + }, + { + "word": "ในขณะเดียวกัน", + "translation": "meanwhile" + }, + { + "word": "วัด", + "translation": "measure" + }, + { + "word": "การวัด", + "translation": "measurement" + }, + { + "word": "เนื้อ", + "translation": "meat" + }, + { + "word": "กลไก", + "translation": "mechanism" + }, + { + "word": "สื่อ", + "translation": "media" + }, + { + "word": "ทางการแพทย์", + "translation": "medical" + }, + { + "word": "ยา", + "translation": "medication" + }, + { + "word": "ยา", + "translation": "medicine" + }, + { + "word": "กลาง", + "translation": "medium" + }, + { + "word": "พบกัน", + "translation": "meet" + }, + { + "word": "ประชุม", + "translation": "meeting" + }, + { + "word": "สมาชิก", + "translation": "member" + }, + { + "word": "การเป็นสมาชิก", + "translation": "membership" + }, + { + "word": "หน่วยความจำ", + "translation": "memory" + }, + { + "word": "ทางใจ", + "translation": "mental" + }, + { + "word": "กล่าวถึง", + "translation": "mention" + }, + { + "word": "เมนู", + "translation": "menu" + }, + { + "word": "เท่านั้น", + "translation": "mere" + }, + { + "word": "แค่", + "translation": "merely" + }, + { + "word": "ความยุ่งเหยิง", + "translation": "mess" + }, + { + "word": "ข่าวสาร", + "translation": "message" + }, + { + "word": "โลหะ", + "translation": "metal" + }, + { + "word": "เมตร", + "translation": "meter" + }, + { + "word": "วิธี", + "translation": "method" + }, + { + "word": "เม็กซิกัน", + "translation": "Mexican" + }, + { + "word": "กลาง", + "translation": "middle" + }, + { + "word": "อาจ", + "translation": "might" + }, + { + "word": "ทหาร", + "translation": "military" + }, + { + "word": "นม", + "translation": "milk" + }, + { + "word": "ล้าน", + "translation": "million" + }, + { + "word": "ใจ", + "translation": "mind" + }, + { + "word": "เหมือง", + "translation": "mine" + }, + { + "word": "รัฐมนตรี", + "translation": "minister" + }, + { + "word": "ผู้เยาว์", + "translation": "minor" + }, + { + "word": "ชนกลุ่มน้อย", + "translation": "minority" + }, + { + "word": "นาที", + "translation": "minute" + }, + { + "word": "ปาฏิหาริย์", + "translation": "miracle" + }, + { + "word": "กระจกเงา", + "translation": "mirror" + }, + { + "word": "นางสาว", + "translation": "miss" + }, + { + "word": "ขีปนาวุธ", + "translation": "missile" + }, + { + "word": "หน้าที่", + "translation": "mission" + }, + { + "word": "ผิดพลาด", + "translation": "mistake" + }, + { + "word": "ผสม", + "translation": "mix" + }, + { + "word": "สารผสม", + "translation": "mixture" + }, + { + "word": "อืมมมม", + "translation": "mm-hmm" + }, + { + "word": "โหมด", + "translation": "mode" + }, + { + "word": "แบบ", + "translation": "model" + }, + { + "word": "ปานกลาง", + "translation": "moderate" + }, + { + "word": "ทันสมัย", + "translation": "modern" + }, + { + "word": "เจียมเนื้อเจียมตัว", + "translation": "modest" + }, + { + "word": "แม่", + "translation": "mom" + }, + { + "word": "ขณะ", + "translation": "moment" + }, + { + "word": "เงิน", + "translation": "money" + }, + { + "word": "หน้าจอ", + "translation": "monitor" + }, + { + "word": "เดือน", + "translation": "month" + }, + { + "word": "อารมณ์", + "translation": "mood" + }, + { + "word": "ดวงจันทร์", + "translation": "moon" + }, + { + "word": "คุณธรรม", + "translation": "moral" + }, + { + "word": "มากกว่า", + "translation": "more" + }, + { + "word": "ยิ่งไปกว่านั้น", + "translation": "moreover" + }, + { + "word": "ตอนเช้า", + "translation": "morning" + }, + { + "word": "จำนอง", + "translation": "mortgage" + }, + { + "word": "มากที่สุด", + "translation": "most" + }, + { + "word": "ส่วนใหญ่", + "translation": "mostly" + }, + { + "word": "แม่", + "translation": "mother" + }, + { + "word": "การเคลื่อนไหว", + "translation": "motion" + }, + { + "word": "แรงจูงใจ", + "translation": "motivation" + }, + { + "word": "เครื่องยนต์", + "translation": "motor" + }, + { + "word": "ภูเขา", + "translation": "mount" + }, + { + "word": "ภูเขา", + "translation": "mountain" + }, + { + "word": "เม้าส์", + "translation": "mouse" + }, + { + "word": "ปาก", + "translation": "mouth" + }, + { + "word": "ย้าย", + "translation": "move" + }, + { + "word": "การเคลื่อนไหว", + "translation": "movement" + }, + { + "word": "หนัง", + "translation": "movie" + }, + { + "word": "นาย", + "translation": "Mr" + }, + { + "word": "นาง", + "translation": "Mrs" + }, + { + "word": "นางสาว", + "translation": "Ms" + }, + { + "word": "มาก", + "translation": "much" + }, + { + "word": "หลายอย่าง", + "translation": "multiple" + }, + { + "word": "ฆาตกรรม", + "translation": "murder" + }, + { + "word": "กล้ามเนื้อ", + "translation": "muscle" + }, + { + "word": "พิพิธภัณฑ์", + "translation": "museum" + }, + { + "word": "เพลง", + "translation": "music" + }, + { + "word": "ดนตรี", + "translation": "musical" + }, + { + "word": "นักดนตรี", + "translation": "musician" + }, + { + "word": "มุสลิม", + "translation": "Muslim" + }, + { + "word": "ต้อง", + "translation": "must" + }, + { + "word": "ซึ่งกันและกัน", + "translation": "mutual" + }, + { + "word": "ของฉัน", + "translation": "my" + }, + { + "word": "ตนเอง", + "translation": "myself" + }, + { + "word": "ความลึกลับ", + "translation": "mystery" + }, + { + "word": "ตำนาน", + "translation": "myth" + }, + { + "word": "เปลือยกาย", + "translation": "naked" + }, + { + "word": "ชื่อ", + "translation": "name" + }, + { + "word": "การเล่าเรื่อง", + "translation": "narrative" + }, + { + "word": "แคบ", + "translation": "narrow" + }, + { + "word": "ประเทศชาติ", + "translation": "nation" + }, + { + "word": "แห่งชาติ", + "translation": "national" + }, + { + "word": "พื้นเมือง", + "translation": "native" + }, + { + "word": "โดยธรรมชาติ", + "translation": "natural" + }, + { + "word": "เป็นธรรมชาติ", + "translation": "naturally" + }, + { + "word": "ธรรมชาติ", + "translation": "nature" + }, + { + "word": "ใกล้", + "translation": "near" + }, + { + "word": "ใกล้เคียง", + "translation": "nearby" + }, + { + "word": "เกือบ", + "translation": "nearly" + }, + { + "word": "อย่างจำเป็น", + "translation": "necessarily" + }, + { + "word": "จำเป็น", + "translation": "necessary" + }, + { + "word": "คอ", + "translation": "neck" + }, + { + "word": "ความต้องการ", + "translation": "need" + }, + { + "word": "เชิงลบ", + "translation": "negative" + }, + { + "word": "ต่อรองจัดการ", + "translation": "negotiate" + }, + { + "word": "การเจรจาต่อรอง", + "translation": "negotiation" + }, + { + "word": "เพื่อนบ้าน", + "translation": "neighbor" + }, + { + "word": "ย่าน", + "translation": "neighborhood" + }, + { + "word": "ค่า", + "translation": "neither" + }, + { + "word": "เส้นประสาท", + "translation": "nerve" + }, + { + "word": "หงุดหงิด", + "translation": "nervous" + }, + { + "word": "สุทธิ", + "translation": "net" + }, + { + "word": "เครือข่าย", + "translation": "network" + }, + { + "word": "ไม่เคย", + "translation": "never" + }, + { + "word": "แต่ถึงอย่างไร", + "translation": "nevertheless" + }, + { + "word": "ใหม่", + "translation": "new" + }, + { + "word": "ใหม่", + "translation": "newly" + }, + { + "word": "ข่าว", + "translation": "news" + }, + { + "word": "หนังสือพิมพ์", + "translation": "newspaper" + }, + { + "word": "ต่อไป", + "translation": "next" + }, + { + "word": "ดี", + "translation": "nice" + }, + { + "word": "กลางคืน", + "translation": "night" + }, + { + "word": "เก้า", + "translation": "nine" + }, + { + "word": "ไม่", + "translation": "no" + }, + { + "word": "ไม่มีใคร", + "translation": "nobody" + }, + { + "word": "พยักหน้า", + "translation": "nod" + }, + { + "word": "สัญญาณรบกวน", + "translation": "noise" + }, + { + "word": "การเสนอชื่อ", + "translation": "nomination" + }, + { + "word": "ไม่มี", + "translation": "none" + }, + { + "word": "กระนั้น", + "translation": "nonetheless" + }, + { + "word": "ไม่", + "translation": "nor" + }, + { + "word": "ปกติ", + "translation": "normal" + }, + { + "word": "ปกติ", + "translation": "normally" + }, + { + "word": "ทางทิศเหนือ", + "translation": "north" + }, + { + "word": "ภาคเหนือ", + "translation": "northern" + }, + { + "word": "จมูก", + "translation": "nose" + }, + { + "word": "ไม่", + "translation": "not" + }, + { + "word": "บันทึก", + "translation": "note" + }, + { + "word": "ไม่มีอะไร", + "translation": "nothing" + }, + { + "word": "แจ้งให้ทราบ", + "translation": "notice" + }, + { + "word": "ความคิด", + "translation": "notion" + }, + { + "word": "นวนิยาย", + "translation": "novel" + }, + { + "word": "ตอนนี้", + "translation": "now" + }, + { + "word": "ไม่มีที่ไหนเลย", + "translation": "nowhere" + }, + { + "word": "ไม่", + "translation": "n't" + }, + { + "word": "นิวเคลียร์", + "translation": "nuclear" + }, + { + "word": "จำนวน", + "translation": "number" + }, + { + "word": "มากมาย", + "translation": "numerous" + }, + { + "word": "พยาบาล", + "translation": "nurse" + }, + { + "word": "ถั่ว", + "translation": "nut" + }, + { + "word": "วัตถุ", + "translation": "object" + }, + { + "word": "วัตถุประสงค์", + "translation": "objective" + }, + { + "word": "ภาระผูกพัน", + "translation": "obligation" + }, + { + "word": "การสังเกต", + "translation": "observation" + }, + { + "word": "สังเกต", + "translation": "observe" + }, + { + "word": "ผู้สังเกตการณ์", + "translation": "observer" + }, + { + "word": "ได้รับ", + "translation": "obtain" + }, + { + "word": "ชัดเจน", + "translation": "obvious" + }, + { + "word": "อย่างชัดเจน", + "translation": "obviously" + }, + { + "word": "โอกาส", + "translation": "occasion" + }, + { + "word": "เป็นครั้งคราว", + "translation": "occasionally" + }, + { + "word": "อาชีพ", + "translation": "occupation" + }, + { + "word": "ครอบครอง", + "translation": "occupy" + }, + { + "word": "เกิดขึ้น", + "translation": "occur" + }, + { + "word": "มหาสมุทร", + "translation": "ocean" + }, + { + "word": "แปลก", + "translation": "odd" + }, + { + "word": "อัตราต่อรอง", + "translation": "odds" + }, + { + "word": "ของ", + "translation": "of" + }, + { + "word": "ปิด", + "translation": "off" + }, + { + "word": "การกระทำผิดกฎหมาย", + "translation": "offense" + }, + { + "word": "น่ารังเกียจ", + "translation": "offensive" + }, + { + "word": "เสนอ", + "translation": "offer" + }, + { + "word": "สำนักงาน", + "translation": "office" + }, + { + "word": "เจ้าหน้าที่", + "translation": "officer" + }, + { + "word": "เป็นทางการ", + "translation": "official" + }, + { + "word": "บ่อยครั้ง", + "translation": "often" + }, + { + "word": "โอ้", + "translation": "oh" + }, + { + "word": "น้ำมัน", + "translation": "oil" + }, + { + "word": "ตกลง", + "translation": "ok" + }, + { + "word": "ตกลง", + "translation": "okay" + }, + { + "word": "เก่า", + "translation": "old" + }, + { + "word": "โอลิมปิค", + "translation": "Olympic" + }, + { + "word": "บน", + "translation": "on" + }, + { + "word": "ครั้งหนึ่ง", + "translation": "once" + }, + { + "word": "หนึ่ง", + "translation": "one" + }, + { + "word": "ต่อเนื่อง", + "translation": "ongoing" + }, + { + "word": "หัวหอม", + "translation": "onion" + }, + { + "word": "ออนไลน์", + "translation": "online" + }, + { + "word": "เท่านั้น", + "translation": "only" + }, + { + "word": "ไปยัง", + "translation": "onto" + }, + { + "word": "เปิด", + "translation": "open" + }, + { + "word": "การเปิด", + "translation": "opening" + }, + { + "word": "ทำงาน", + "translation": "operate" + }, + { + "word": "การดำเนินงาน", + "translation": "operating" + }, + { + "word": "การทำงาน", + "translation": "operation" + }, + { + "word": "ผู้ประกอบการ", + "translation": "operator" + }, + { + "word": "ความคิดเห็น", + "translation": "opinion" + }, + { + "word": "คู่แข่ง", + "translation": "opponent" + }, + { + "word": "โอกาส", + "translation": "opportunity" + }, + { + "word": "ต่อต้าน", + "translation": "oppose" + }, + { + "word": "ตรงข้าม", + "translation": "opposite" + }, + { + "word": "ฝ่ายค้าน", + "translation": "opposition" + }, + { + "word": "ตัวเลือก", + "translation": "option" + }, + { + "word": "หรือ", + "translation": "or" + }, + { + "word": "ส้ม", + "translation": "orange" + }, + { + "word": "ใบสั่ง", + "translation": "order" + }, + { + "word": "สามัญ", + "translation": "ordinary" + }, + { + "word": "โดยธรรมชาติ", + "translation": "organic" + }, + { + "word": "องค์กร", + "translation": "organization" + }, + { + "word": "จัดระเบียบ", + "translation": "organize" + }, + { + "word": "ปฐมนิเทศ", + "translation": "orientation" + }, + { + "word": "ที่มา", + "translation": "origin" + }, + { + "word": "เป็นต้นฉบับ", + "translation": "original" + }, + { + "word": "แต่เดิม", + "translation": "originally" + }, + { + "word": "อื่น ๆ", + "translation": "other" + }, + { + "word": "คนอื่น ๆ", + "translation": "others" + }, + { + "word": "มิฉะนั้น", + "translation": "otherwise" + }, + { + "word": "ควร", + "translation": "ought" + }, + { + "word": "ของเรา", + "translation": "our" + }, + { + "word": "ตัวเรา", + "translation": "ourselves" + }, + { + "word": "ออก", + "translation": "out" + }, + { + "word": "ผล", + "translation": "outcome" + }, + { + "word": "ด้านนอก", + "translation": "outside" + }, + { + "word": "เตาอบ", + "translation": "oven" + }, + { + "word": "เกิน", + "translation": "over" + }, + { + "word": "ทั้งหมด", + "translation": "overall" + }, + { + "word": "เอาชนะ", + "translation": "overcome" + }, + { + "word": "มองข้าม", + "translation": "overlook" + }, + { + "word": "เป็นหนี้", + "translation": "owe" + }, + { + "word": "ด้วยตัวเอง", + "translation": "own" + }, + { + "word": "เจ้าของ", + "translation": "owner" + }, + { + "word": "ก้าว", + "translation": "pace" + }, + { + "word": "แพ็ค", + "translation": "pack" + }, + { + "word": "บรรจุภัณฑ์", + "translation": "package" + }, + { + "word": "หน้า", + "translation": "page" + }, + { + "word": "ความเจ็บปวด", + "translation": "pain" + }, + { + "word": "เจ็บปวด", + "translation": "painful" + }, + { + "word": "สี", + "translation": "paint" + }, + { + "word": "จิตรกร", + "translation": "painter" + }, + { + "word": "จิตรกรรม", + "translation": "painting" + }, + { + "word": "คู่", + "translation": "pair" + }, + { + "word": "ซีด", + "translation": "pale" + }, + { + "word": "ปาเลสไตน์", + "translation": "Palestinian" + }, + { + "word": "ปาล์ม", + "translation": "palm" + }, + { + "word": "กระทะ", + "translation": "pan" + }, + { + "word": "แผงหน้าปัด", + "translation": "panel" + }, + { + "word": "หอบ", + "translation": "pant" + }, + { + "word": "กระดาษ", + "translation": "paper" + }, + { + "word": "ผู้ปกครอง", + "translation": "parent" + }, + { + "word": "สวน", + "translation": "park" + }, + { + "word": "ที่จอดรถ", + "translation": "parking" + }, + { + "word": "ส่วนหนึ่ง", + "translation": "part" + }, + { + "word": "ผู้เข้าร่วม", + "translation": "participant" + }, + { + "word": "มีส่วนร่วม", + "translation": "participate" + }, + { + "word": "การมีส่วนร่วม", + "translation": "participation" + }, + { + "word": "โดยเฉพาะ", + "translation": "particular" + }, + { + "word": "โดยเฉพาะ", + "translation": "particularly" + }, + { + "word": "เป็นบางส่วน", + "translation": "partly" + }, + { + "word": "หุ้นส่วน", + "translation": "partner" + }, + { + "word": "หุ้นส่วน", + "translation": "partnership" + }, + { + "word": "พรรค", + "translation": "party" + }, + { + "word": "ผ่านไป", + "translation": "pass" + }, + { + "word": "ทางเดิน", + "translation": "passage" + }, + { + "word": "ผู้โดยสาร", + "translation": "passenger" + }, + { + "word": "แรงผลักดัน", + "translation": "passion" + }, + { + "word": "อดีต", + "translation": "past" + }, + { + "word": "ปะ", + "translation": "patch" + }, + { + "word": "เส้นทาง", + "translation": "path" + }, + { + "word": "อดทน", + "translation": "patient" + }, + { + "word": "แบบแผน", + "translation": "pattern" + }, + { + "word": "หยุด", + "translation": "pause" + }, + { + "word": "การจ่ายเงิน", + "translation": "pay" + }, + { + "word": "การชำระเงิน", + "translation": "payment" + }, + { + "word": "พีซี", + "translation": "PC" + }, + { + "word": "ความสงบ", + "translation": "peace" + }, + { + "word": "จุดสูงสุด", + "translation": "peak" + }, + { + "word": "เพียร์", + "translation": "peer" + }, + { + "word": "การลงโทษ", + "translation": "penalty" + }, + { + "word": "คน", + "translation": "people" + }, + { + "word": "พริกไทย", + "translation": "pepper" + }, + { + "word": "ต่อ", + "translation": "per" + }, + { + "word": "รับรู้", + "translation": "perceive" + }, + { + "word": "ร้อยละ", + "translation": "percentage" + }, + { + "word": "ความเข้าใจ", + "translation": "perception" + }, + { + "word": "สมบูรณ์", + "translation": "perfect" + }, + { + "word": "อย่างสมบูรณ์", + "translation": "perfectly" + }, + { + "word": "ปฏิบัติการ", + "translation": "perform" + }, + { + "word": "ประสิทธิภาพ", + "translation": "performance" + }, + { + "word": "บางที", + "translation": "perhaps" + }, + { + "word": "ระยะเวลา", + "translation": "period" + }, + { + "word": "ถาวร", + "translation": "permanent" + }, + { + "word": "การอนุญาต", + "translation": "permission" + }, + { + "word": "ใบอนุญาต", + "translation": "permit" + }, + { + "word": "คน", + "translation": "person" + }, + { + "word": "ส่วนบุคคล", + "translation": "personal" + }, + { + "word": "บุคลิกภาพ", + "translation": "personality" + }, + { + "word": "ส่วนตัว", + "translation": "personally" + }, + { + "word": "บุคลากร", + "translation": "personnel" + }, + { + "word": "มุมมอง", + "translation": "perspective" + }, + { + "word": "ชักชวน", + "translation": "persuade" + }, + { + "word": "สัตว์เลี้ยง", + "translation": "pet" + }, + { + "word": "ระยะ", + "translation": "phase" + }, + { + "word": "ปรากฏการณ์", + "translation": "phenomenon" + }, + { + "word": "ปรัชญา", + "translation": "philosophy" + }, + { + "word": "โทรศัพท์", + "translation": "phone" + }, + { + "word": "ภาพถ่าย", + "translation": "photo" + }, + { + "word": "ถ่ายภาพ", + "translation": "photograph" + }, + { + "word": "ช่างภาพ", + "translation": "photographer" + }, + { + "word": "วลี", + "translation": "phrase" + }, + { + "word": "กายภาพ", + "translation": "physical" + }, + { + "word": "ทางร่างกาย", + "translation": "physically" + }, + { + "word": "แพทย์", + "translation": "physician" + }, + { + "word": "เปียโน", + "translation": "piano" + }, + { + "word": "เลือก", + "translation": "pick" + }, + { + "word": "ภาพ", + "translation": "picture" + }, + { + "word": "พาย", + "translation": "pie" + }, + { + "word": "ชิ้น", + "translation": "piece" + }, + { + "word": "กอง", + "translation": "pile" + }, + { + "word": "นักบิน", + "translation": "pilot" + }, + { + "word": "ต้นสน", + "translation": "pine" + }, + { + "word": "สีชมพู", + "translation": "pink" + }, + { + "word": "ท่อ", + "translation": "pipe" + }, + { + "word": "ขว้าง", + "translation": "pitch" + }, + { + "word": "สถานที่", + "translation": "place" + }, + { + "word": "วางแผน", + "translation": "plan" + }, + { + "word": "เครื่องบิน", + "translation": "plane" + }, + { + "word": "ดาวเคราะห์", + "translation": "planet" + }, + { + "word": "การวางแผน", + "translation": "planning" + }, + { + "word": "ปลูก", + "translation": "plant" + }, + { + "word": "พลาสติก", + "translation": "plastic" + }, + { + "word": "จาน", + "translation": "plate" + }, + { + "word": "เวที", + "translation": "platform" + }, + { + "word": "เล่น", + "translation": "play" + }, + { + "word": "ผู้เล่น", + "translation": "player" + }, + { + "word": "กรุณา", + "translation": "please" + }, + { + "word": "ความสุข", + "translation": "pleasure" + }, + { + "word": "ความอุดมสมบูรณ์", + "translation": "plenty" + }, + { + "word": "พล็อต", + "translation": "plot" + }, + { + "word": "บวก", + "translation": "plus" + }, + { + "word": "PM", + "translation": "PM" + }, + { + "word": "กระเป๋าเสื้อ", + "translation": "pocket" + }, + { + "word": "บทกวี", + "translation": "poem" + }, + { + "word": "กวี", + "translation": "poet" + }, + { + "word": "บทกวี", + "translation": "poetry" + }, + { + "word": "จุด", + "translation": "point" + }, + { + "word": "เสา", + "translation": "pole" + }, + { + "word": "ตำรวจ", + "translation": "police" + }, + { + "word": "นโยบาย", + "translation": "policy" + }, + { + "word": "ในทางการเมือง", + "translation": "political" + }, + { + "word": "ในทางการเมือง", + "translation": "politically" + }, + { + "word": "นักการเมือง", + "translation": "politician" + }, + { + "word": "การเมือง", + "translation": "politics" + }, + { + "word": "โพลล์", + "translation": "poll" + }, + { + "word": "มลพิษ", + "translation": "pollution" + }, + { + "word": "สระ", + "translation": "pool" + }, + { + "word": "น่าสงสาร", + "translation": "poor" + }, + { + "word": "ป๊อปอัพ", + "translation": "pop" + }, + { + "word": "เป็นที่นิยม", + "translation": "popular" + }, + { + "word": "ประชากร", + "translation": "population" + }, + { + "word": "ระเบียง", + "translation": "porch" + }, + { + "word": "ท่าเรือ", + "translation": "port" + }, + { + "word": "ส่วน", + "translation": "portion" + }, + { + "word": "ภาพเหมือน", + "translation": "portrait" + }, + { + "word": "วาดภาพ", + "translation": "portray" + }, + { + "word": "ก่อให้เกิด", + "translation": "pose" + }, + { + "word": "ตำแหน่ง", + "translation": "position" + }, + { + "word": "บวก", + "translation": "positive" + }, + { + "word": "มี", + "translation": "possess" + }, + { + "word": "ความเป็นไปได้", + "translation": "possibility" + }, + { + "word": "เป็นไปได้", + "translation": "possible" + }, + { + "word": "อาจ", + "translation": "possibly" + }, + { + "word": "เสา", + "translation": "post" + }, + { + "word": "หม้อ", + "translation": "pot" + }, + { + "word": "มันฝรั่ง", + "translation": "potato" + }, + { + "word": "ที่อาจเกิดขึ้น", + "translation": "potential" + }, + { + "word": "ที่อาจเกิดขึ้น", + "translation": "potentially" + }, + { + "word": "ปอนด์", + "translation": "pound" + }, + { + "word": "เท", + "translation": "pour" + }, + { + "word": "ความยากจน", + "translation": "poverty" + }, + { + "word": "ผง", + "translation": "powder" + }, + { + "word": "อำนาจ", + "translation": "power" + }, + { + "word": "มีอำนาจ", + "translation": "powerful" + }, + { + "word": "ประยุกต์", + "translation": "practical" + }, + { + "word": "การปฏิบัติ", + "translation": "practice" + }, + { + "word": "อธิษฐาน", + "translation": "pray" + }, + { + "word": "การอธิษฐาน", + "translation": "prayer" + }, + { + "word": "แม่นยำ", + "translation": "precisely" + }, + { + "word": "ทำนาย", + "translation": "predict" + }, + { + "word": "ชอบ", + "translation": "prefer" + }, + { + "word": "การตั้งค่า", + "translation": "preference" + }, + { + "word": "การตั้งครรภ์", + "translation": "pregnancy" + }, + { + "word": "ตั้งครรภ์", + "translation": "pregnant" + }, + { + "word": "การจัดเตรียม", + "translation": "preparation" + }, + { + "word": "เตรียมการ", + "translation": "prepare" + }, + { + "word": "ใบสั่งยา", + "translation": "prescription" + }, + { + "word": "การมี", + "translation": "presence" + }, + { + "word": "ปัจจุบัน", + "translation": "present" + }, + { + "word": "การเสนอ", + "translation": "presentation" + }, + { + "word": "อนุรักษ์", + "translation": "preserve" + }, + { + "word": "ประธาน", + "translation": "president" + }, + { + "word": "ประธานาธิบดี", + "translation": "presidential" + }, + { + "word": "กด", + "translation": "press" + }, + { + "word": "ความดัน", + "translation": "pressure" + }, + { + "word": "แกล้งทำ", + "translation": "pretend" + }, + { + "word": "น่ารัก", + "translation": "pretty" + }, + { + "word": "ป้องกัน", + "translation": "prevent" + }, + { + "word": "ก่อน", + "translation": "previous" + }, + { + "word": "ก่อนหน้านี้", + "translation": "previously" + }, + { + "word": "ราคา", + "translation": "price" + }, + { + "word": "ความภาคภูมิใจ", + "translation": "pride" + }, + { + "word": "พระสงฆ์", + "translation": "priest" + }, + { + "word": "ส่วนใหญ่", + "translation": "primarily" + }, + { + "word": "ประถม", + "translation": "primary" + }, + { + "word": "สำคัญ", + "translation": "prime" + }, + { + "word": "หลัก", + "translation": "principal" + }, + { + "word": "หลัก", + "translation": "principle" + }, + { + "word": "พิมพ์", + "translation": "print" + }, + { + "word": "ก่อน", + "translation": "prior" + }, + { + "word": "จัดลำดับความสำคัญ", + "translation": "priority" + }, + { + "word": "คุก", + "translation": "prison" + }, + { + "word": "นักโทษ", + "translation": "prisoner" + }, + { + "word": "ความเป็นส่วนตัว", + "translation": "privacy" + }, + { + "word": "เอกชน", + "translation": "private" + }, + { + "word": "อาจ", + "translation": "probably" + }, + { + "word": "ปัญหา", + "translation": "problem" + }, + { + "word": "ขั้นตอน", + "translation": "procedure" + }, + { + "word": "ดำเนินดำเนินการต่อ", + "translation": "proceed" + }, + { + "word": "กระบวนการ", + "translation": "process" + }, + { + "word": "การผลิต", + "translation": "produce" + }, + { + "word": "ผู้ผลิต", + "translation": "producer" + }, + { + "word": "สินค้า", + "translation": "product" + }, + { + "word": "การผลิต", + "translation": "production" + }, + { + "word": "อาชีพ", + "translation": "profession" + }, + { + "word": "มืออาชีพ", + "translation": "professional" + }, + { + "word": "ศาสตราจารย์", + "translation": "professor" + }, + { + "word": "ข้อมูลส่วนตัว", + "translation": "profile" + }, + { + "word": "กำไร", + "translation": "profit" + }, + { + "word": "โปรแกรม", + "translation": "program" + }, + { + "word": "ความคืบหน้า", + "translation": "progress" + }, + { + "word": "โครงการ", + "translation": "project" + }, + { + "word": "โดดเด่น", + "translation": "prominent" + }, + { + "word": "คำมั่นสัญญา", + "translation": "promise" + }, + { + "word": "ส่งเสริม", + "translation": "promote" + }, + { + "word": "รวดเร็ว", + "translation": "prompt" + }, + { + "word": "พิสูจน์", + "translation": "proof" + }, + { + "word": "เหมาะสม", + "translation": "proper" + }, + { + "word": "อย่างถูกต้อง", + "translation": "properly" + }, + { + "word": "คุณสมบัติ", + "translation": "property" + }, + { + "word": "สัดส่วน", + "translation": "proportion" + }, + { + "word": "ข้อเสนอ", + "translation": "proposal" + }, + { + "word": "เสนอ", + "translation": "propose" + }, + { + "word": "เสนอ", + "translation": "proposed" + }, + { + "word": "ฝ่ายอัยการ", + "translation": "prosecutor" + }, + { + "word": "โอกาส", + "translation": "prospect" + }, + { + "word": "ป้องกัน", + "translation": "protect" + }, + { + "word": "การป้องกัน", + "translation": "protection" + }, + { + "word": "โปรตีน", + "translation": "protein" + }, + { + "word": "ประท้วง", + "translation": "protest" + }, + { + "word": "ภูมิใจ", + "translation": "proud" + }, + { + "word": "พิสูจน์", + "translation": "prove" + }, + { + "word": "ให้", + "translation": "provide" + }, + { + "word": "ผู้ให้บริการ", + "translation": "provider" + }, + { + "word": "จังหวัด", + "translation": "province" + }, + { + "word": "บทบัญญัติ", + "translation": "provision" + }, + { + "word": "จิตวิทยา", + "translation": "psychological" + }, + { + "word": "นักจิตวิทยา", + "translation": "psychologist" + }, + { + "word": "จิตวิทยา", + "translation": "psychology" + }, + { + "word": "สาธารณะ", + "translation": "public" + }, + { + "word": "สิ่งพิมพ์", + "translation": "publication" + }, + { + "word": "สาธารณชน", + "translation": "publicly" + }, + { + "word": "ประกาศ", + "translation": "publish" + }, + { + "word": "สำนักพิมพ์", + "translation": "publisher" + }, + { + "word": "ดึง", + "translation": "pull" + }, + { + "word": "การลงโทษ", + "translation": "punishment" + }, + { + "word": "ซื้อ", + "translation": "purchase" + }, + { + "word": "บริสุทธิ์", + "translation": "pure" + }, + { + "word": "วัตถุประสงค์", + "translation": "purpose" + }, + { + "word": "ไล่ตาม", + "translation": "pursue" + }, + { + "word": "ดัน", + "translation": "push" + }, + { + "word": "ใส่", + "translation": "put" + }, + { + "word": "มีคุณสมบัติ", + "translation": "qualify" + }, + { + "word": "คุณภาพ", + "translation": "quality" + }, + { + "word": "ย่าน", + "translation": "quarter" + }, + { + "word": "ตำแหน่งกองหลัง", + "translation": "quarterback" + }, + { + "word": "คำถาม", + "translation": "question" + }, + { + "word": "รวดเร็ว", + "translation": "quick" + }, + { + "word": "อย่างรวดเร็ว", + "translation": "quickly" + }, + { + "word": "เงียบ", + "translation": "quiet" + }, + { + "word": "เงียบ ๆ", + "translation": "quietly" + }, + { + "word": "เลิก", + "translation": "quit" + }, + { + "word": "ทีเดียว", + "translation": "quite" + }, + { + "word": "อ้างอิง", + "translation": "quote" + }, + { + "word": "แข่ง", + "translation": "race" + }, + { + "word": "เกี่ยวกับเชื้อชาติ", + "translation": "racial" + }, + { + "word": "รุนแรง", + "translation": "radical" + }, + { + "word": "วิทยุ", + "translation": "radio" + }, + { + "word": "ทางรถไฟ", + "translation": "rail" + }, + { + "word": "ฝน", + "translation": "rain" + }, + { + "word": "ยก", + "translation": "raise" + }, + { + "word": "พิสัย", + "translation": "range" + }, + { + "word": "ยศ", + "translation": "rank" + }, + { + "word": "รวดเร็ว", + "translation": "rapid" + }, + { + "word": "อย่างรวดเร็ว", + "translation": "rapidly" + }, + { + "word": "หายาก", + "translation": "rare" + }, + { + "word": "นาน ๆ ครั้ง", + "translation": "rarely" + }, + { + "word": "ประเมินค่า", + "translation": "rate" + }, + { + "word": "ค่อนข้าง", + "translation": "rather" + }, + { + "word": "อันดับ", + "translation": "rating" + }, + { + "word": "อัตราส่วน", + "translation": "ratio" + }, + { + "word": "ดิบ", + "translation": "raw" + }, + { + "word": "การเข้าถึง", + "translation": "reach" + }, + { + "word": "เกิดปฏิกิริยา", + "translation": "react" + }, + { + "word": "ปฏิกิริยา", + "translation": "reaction" + }, + { + "word": "อ่าน", + "translation": "read" + }, + { + "word": "ผู้อ่าน", + "translation": "reader" + }, + { + "word": "การอ่าน", + "translation": "reading" + }, + { + "word": "พร้อมแล้ว", + "translation": "ready" + }, + { + "word": "จริง", + "translation": "real" + }, + { + "word": "ความจริง", + "translation": "reality" + }, + { + "word": "ตระหนัก", + "translation": "realize" + }, + { + "word": "จริงๆ", + "translation": "really" + }, + { + "word": "เหตุผล", + "translation": "reason" + }, + { + "word": "มีเหตุผล", + "translation": "reasonable" + }, + { + "word": "จำ", + "translation": "recall" + }, + { + "word": "รับ", + "translation": "receive" + }, + { + "word": "เมื่อเร็ว ๆ นี้", + "translation": "recent" + }, + { + "word": "เมื่อเร็ว ๆ นี้", + "translation": "recently" + }, + { + "word": "สูตรอาหาร", + "translation": "recipe" + }, + { + "word": "ได้รับการยอมรับ", + "translation": "recognition" + }, + { + "word": "รับรู้", + "translation": "recognize" + }, + { + "word": "แนะนำ", + "translation": "recommend" + }, + { + "word": "ข้อเสนอแนะ", + "translation": "recommendation" + }, + { + "word": "บันทึก", + "translation": "record" + }, + { + "word": "การบันทึก", + "translation": "recording" + }, + { + "word": "กู้", + "translation": "recover" + }, + { + "word": "การฟื้นตัว", + "translation": "recovery" + }, + { + "word": "รับสมัคร", + "translation": "recruit" + }, + { + "word": "สีแดง", + "translation": "red" + }, + { + "word": "ลด", + "translation": "reduce" + }, + { + "word": "การลดลง", + "translation": "reduction" + }, + { + "word": "อ้างถึง", + "translation": "refer" + }, + { + "word": "การอ้างอิง", + "translation": "reference" + }, + { + "word": "สะท้อน", + "translation": "reflect" + }, + { + "word": "การสะท้อนกลับ", + "translation": "reflection" + }, + { + "word": "ปฏิรูป", + "translation": "reform" + }, + { + "word": "ผู้ลี้ภัย", + "translation": "refugee" + }, + { + "word": "ขยะ", + "translation": "refuse" + }, + { + "word": "คำนึงถึง", + "translation": "regard" + }, + { + "word": "เกี่ยวกับ", + "translation": "regarding" + }, + { + "word": "ไม่คำนึงถึง", + "translation": "regardless" + }, + { + "word": "ระบบการปกครอง", + "translation": "regime" + }, + { + "word": "ภูมิภาค", + "translation": "region" + }, + { + "word": "ของแคว้น", + "translation": "regional" + }, + { + "word": "การลงทะเบียน", + "translation": "register" + }, + { + "word": "ปกติ", + "translation": "regular" + }, + { + "word": "สม่ำเสมอ", + "translation": "regularly" + }, + { + "word": "ควบคุม", + "translation": "regulate" + }, + { + "word": "ระเบียบข้อบังคับ", + "translation": "regulation" + }, + { + "word": "เสริมสร้าง", + "translation": "reinforce" + }, + { + "word": "ปฏิเสธ", + "translation": "reject" + }, + { + "word": "สัมพันธ์", + "translation": "relate" + }, + { + "word": "ความสัมพันธ์", + "translation": "relation" + }, + { + "word": "ความสัมพันธ์", + "translation": "relationship" + }, + { + "word": "ญาติ", + "translation": "relative" + }, + { + "word": "สัมพัทธ์", + "translation": "relatively" + }, + { + "word": "ผ่อนคลาย", + "translation": "relax" + }, + { + "word": "ปล่อย", + "translation": "release" + }, + { + "word": "ที่เกี่ยวข้อง", + "translation": "relevant" + }, + { + "word": "ความโล่งอก", + "translation": "relief" + }, + { + "word": "ศาสนา", + "translation": "religion" + }, + { + "word": "เคร่งศาสนา", + "translation": "religious" + }, + { + "word": "วางใจ", + "translation": "rely" + }, + { + "word": "ยังคง", + "translation": "remain" + }, + { + "word": "ที่เหลืออยู่", + "translation": "remaining" + }, + { + "word": "โดดเด่น", + "translation": "remarkable" + }, + { + "word": "จำ", + "translation": "remember" + }, + { + "word": "เตือน", + "translation": "remind" + }, + { + "word": "ห่างไกล", + "translation": "remote" + }, + { + "word": "ลบ", + "translation": "remove" + }, + { + "word": "ทำซ้ำ", + "translation": "repeat" + }, + { + "word": "ซ้ำแล้วซ้ำเล่า", + "translation": "repeatedly" + }, + { + "word": "แทนที่", + "translation": "replace" + }, + { + "word": "ตอบ", + "translation": "reply" + }, + { + "word": "รายงาน", + "translation": "report" + }, + { + "word": "ผู้สื่อข่าว", + "translation": "reporter" + }, + { + "word": "แทน", + "translation": "represent" + }, + { + "word": "การแสดง", + "translation": "representation" + }, + { + "word": "ตัวแทน", + "translation": "representative" + }, + { + "word": "รีพับลิกัน", + "translation": "Republican" + }, + { + "word": "ชื่อเสียง", + "translation": "reputation" + }, + { + "word": "ขอร้อง", + "translation": "request" + }, + { + "word": "จำเป็นต้อง", + "translation": "require" + }, + { + "word": "ความต้องการ", + "translation": "requirement" + }, + { + "word": "การวิจัย", + "translation": "research" + }, + { + "word": "นักวิจัย", + "translation": "researcher" + }, + { + "word": "คล้ายคลึงกับ", + "translation": "resemble" + }, + { + "word": "การจองห้องพัก", + "translation": "reservation" + }, + { + "word": "ผู้อยู่อาศัย", + "translation": "resident" + }, + { + "word": "ต่อต้าน", + "translation": "resist" + }, + { + "word": "ความต้านทาน", + "translation": "resistance" + }, + { + "word": "ความละเอียด", + "translation": "resolution" + }, + { + "word": "แก้ไข", + "translation": "resolve" + }, + { + "word": "รีสอร์ท", + "translation": "resort" + }, + { + "word": "ทรัพยากร", + "translation": "resource" + }, + { + "word": "เคารพ", + "translation": "respect" + }, + { + "word": "ตอบสนอง", + "translation": "respond" + }, + { + "word": "ตอบ", + "translation": "respondent" + }, + { + "word": "คำตอบ", + "translation": "response" + }, + { + "word": "ความรับผิดชอบ", + "translation": "responsibility" + }, + { + "word": "รับผิดชอบ", + "translation": "responsible" + }, + { + "word": "ส่วนที่เหลือ", + "translation": "rest" + }, + { + "word": "ร้านอาหาร", + "translation": "restaurant" + }, + { + "word": "ฟื้นฟู", + "translation": "restore" + }, + { + "word": "การ จำกัด", + "translation": "restriction" + }, + { + "word": "ผลลัพธ์", + "translation": "result" + }, + { + "word": "รักษา", + "translation": "retain" + }, + { + "word": "เกษียณอายุ", + "translation": "retire" + }, + { + "word": "การเกษียณอายุ", + "translation": "retirement" + }, + { + "word": "กลับ", + "translation": "return" + }, + { + "word": "เปิดเผย", + "translation": "reveal" + }, + { + "word": "รายได้", + "translation": "revenue" + }, + { + "word": "ทบทวน", + "translation": "review" + }, + { + "word": "การปฏิวัติ", + "translation": "revolution" + }, + { + "word": "จังหวะ", + "translation": "rhythm" + }, + { + "word": "ข้าว", + "translation": "rice" + }, + { + "word": "รวย", + "translation": "rich" + }, + { + "word": "กำจัด", + "translation": "rid" + }, + { + "word": "นั่ง", + "translation": "ride" + }, + { + "word": "ปืนยาว", + "translation": "rifle" + }, + { + "word": "ขวา", + "translation": "right" + }, + { + "word": "แหวน", + "translation": "ring" + }, + { + "word": "ลุกขึ้น", + "translation": "rise" + }, + { + "word": "อันตราย", + "translation": "risk" + }, + { + "word": "แม่น้ำ", + "translation": "river" + }, + { + "word": "ถนน", + "translation": "road" + }, + { + "word": "หิน", + "translation": "rock" + }, + { + "word": "บทบาท", + "translation": "role" + }, + { + "word": "ม้วน", + "translation": "roll" + }, + { + "word": "โรแมนติก", + "translation": "romantic" + }, + { + "word": "หลังคา", + "translation": "roof" + }, + { + "word": "ห้อง", + "translation": "room" + }, + { + "word": "ราก", + "translation": "root" + }, + { + "word": "เชือก", + "translation": "rope" + }, + { + "word": "ดอกกุหลาบ", + "translation": "rose" + }, + { + "word": "ขรุขระ", + "translation": "rough" + }, + { + "word": "ลวก", + "translation": "roughly" + }, + { + "word": "รอบ", + "translation": "round" + }, + { + "word": "เส้นทาง", + "translation": "route" + }, + { + "word": "กิจวัตรประจำวัน", + "translation": "routine" + }, + { + "word": "แถว", + "translation": "row" + }, + { + "word": "ถู", + "translation": "rub" + }, + { + "word": "กฎ", + "translation": "rule" + }, + { + "word": "วิ่ง", + "translation": "run" + }, + { + "word": "วิ่ง", + "translation": "running" + }, + { + "word": "ชนบท", + "translation": "rural" + }, + { + "word": "วิ่ง", + "translation": "rush" + }, + { + "word": "รัสเซีย", + "translation": "Russian" + }, + { + "word": "ศักดิ์สิทธิ์", + "translation": "sacred" + }, + { + "word": "เสียใจ", + "translation": "sad" + }, + { + "word": "ปลอดภัย", + "translation": "safe" + }, + { + "word": "ความปลอดภัย", + "translation": "safety" + }, + { + "word": "เหล้าสาเก", + "translation": "sake" + }, + { + "word": "สลัด", + "translation": "salad" + }, + { + "word": "เงินเดือน", + "translation": "salary" + }, + { + "word": "การขาย", + "translation": "sale" + }, + { + "word": "ขาย", + "translation": "sales" + }, + { + "word": "เกลือ", + "translation": "salt" + }, + { + "word": "เหมือนกัน", + "translation": "same" + }, + { + "word": "ตัวอย่าง", + "translation": "sample" + }, + { + "word": "อนุมัติ", + "translation": "sanction" + }, + { + "word": "ทราย", + "translation": "sand" + }, + { + "word": "ดาวเทียม", + "translation": "satellite" + }, + { + "word": "ความพอใจ", + "translation": "satisfaction" + }, + { + "word": "พอใจ", + "translation": "satisfy" + }, + { + "word": "ซอส", + "translation": "sauce" + }, + { + "word": "บันทึก", + "translation": "save" + }, + { + "word": "ประหยัด", + "translation": "saving" + }, + { + "word": "พูด", + "translation": "say" + }, + { + "word": "ขนาด", + "translation": "scale" + }, + { + "word": "เรื่องอื้อฉาว", + "translation": "scandal" + }, + { + "word": "กลัว", + "translation": "scared" + }, + { + "word": "สถานการณ์", + "translation": "scenario" + }, + { + "word": "ฉาก", + "translation": "scene" + }, + { + "word": "ตารางเวลา", + "translation": "schedule" + }, + { + "word": "โครงการ", + "translation": "scheme" + }, + { + "word": "นักวิชาการ", + "translation": "scholar" + }, + { + "word": "ทุนการศึกษา", + "translation": "scholarship" + }, + { + "word": "โรงเรียน", + "translation": "school" + }, + { + "word": "วิทยาศาสตร์", + "translation": "science" + }, + { + "word": "วิทยาศาสตร์", + "translation": "scientific" + }, + { + "word": "นักวิทยาศาสตร์", + "translation": "scientist" + }, + { + "word": "ขอบเขต", + "translation": "scope" + }, + { + "word": "คะแนน", + "translation": "score" + }, + { + "word": "กรีดร้อง", + "translation": "scream" + }, + { + "word": "จอภาพ", + "translation": "screen" + }, + { + "word": "ต้นฉบับ", + "translation": "script" + }, + { + "word": "ทะเล", + "translation": "sea" + }, + { + "word": "ค้นหา", + "translation": "search" + }, + { + "word": "ฤดู", + "translation": "season" + }, + { + "word": "ที่นั่ง", + "translation": "seat" + }, + { + "word": "ที่สอง", + "translation": "second" + }, + { + "word": "ความลับ", + "translation": "secret" + }, + { + "word": "เลขานุการ", + "translation": "secretary" + }, + { + "word": "มาตรา", + "translation": "section" + }, + { + "word": "ภาค", + "translation": "sector" + }, + { + "word": "ปลอดภัย", + "translation": "secure" + }, + { + "word": "ความปลอดภัย", + "translation": "security" + }, + { + "word": "ดู", + "translation": "see" + }, + { + "word": "เมล็ดพันธุ์", + "translation": "seed" + }, + { + "word": "แสวงหา", + "translation": "seek" + }, + { + "word": "ดูเหมือน", + "translation": "seem" + }, + { + "word": "ส่วน", + "translation": "segment" + }, + { + "word": "ยึด", + "translation": "seize" + }, + { + "word": "เลือก", + "translation": "select" + }, + { + "word": "การเลือก", + "translation": "selection" + }, + { + "word": "ตนเอง", + "translation": "self" + }, + { + "word": "ขาย", + "translation": "sell" + }, + { + "word": "วุฒิสภา", + "translation": "Senate" + }, + { + "word": "วุฒิสมาชิก", + "translation": "senator" + }, + { + "word": "ส่ง", + "translation": "send" + }, + { + "word": "ระดับอาวุโส", + "translation": "senior" + }, + { + "word": "ความรู้สึก", + "translation": "sense" + }, + { + "word": "รู้สึกไว", + "translation": "sensitive" + }, + { + "word": "ประโยค", + "translation": "sentence" + }, + { + "word": "แยก", + "translation": "separate" + }, + { + "word": "ลำดับ", + "translation": "sequence" + }, + { + "word": "ชุด", + "translation": "series" + }, + { + "word": "จริงจัง", + "translation": "serious" + }, + { + "word": "อย่างจริงจัง", + "translation": "seriously" + }, + { + "word": "บริการ", + "translation": "serve" + }, + { + "word": "บริการ", + "translation": "service" + }, + { + "word": "เซสชั่น", + "translation": "session" + }, + { + "word": "ชุด", + "translation": "set" + }, + { + "word": "การตั้งค่า", + "translation": "setting" + }, + { + "word": "ชำระ", + "translation": "settle" + }, + { + "word": "การตั้งถิ่นฐาน", + "translation": "settlement" + }, + { + "word": "เจ็ด", + "translation": "seven" + }, + { + "word": "หลาย", + "translation": "several" + }, + { + "word": "รุนแรง", + "translation": "severe" + }, + { + "word": "เพศ", + "translation": "sex" + }, + { + "word": "ทางเพศ", + "translation": "sexual" + }, + { + "word": "ร่มเงา", + "translation": "shade" + }, + { + "word": "เงา", + "translation": "shadow" + }, + { + "word": "สั่น", + "translation": "shake" + }, + { + "word": "จะต้อง", + "translation": "shall" + }, + { + "word": "รูปร่าง", + "translation": "shape" + }, + { + "word": "หุ้น", + "translation": "share" + }, + { + "word": "คม", + "translation": "sharp" + }, + { + "word": "เธอ", + "translation": "she" + }, + { + "word": "แผ่น", + "translation": "sheet" + }, + { + "word": "หิ้ง", + "translation": "shelf" + }, + { + "word": "เปลือก", + "translation": "shell" + }, + { + "word": "ที่พักอาศัย", + "translation": "shelter" + }, + { + "word": "เปลี่ยน", + "translation": "shift" + }, + { + "word": "เปล่งปลั่ง", + "translation": "shine" + }, + { + "word": "เรือ", + "translation": "ship" + }, + { + "word": "เสื้อเชิ้ต", + "translation": "shirt" + }, + { + "word": "อึ", + "translation": "shit" + }, + { + "word": "ช็อก", + "translation": "shock" + }, + { + "word": "รองเท้า", + "translation": "shoe" + }, + { + "word": "ยิง", + "translation": "shoot" + }, + { + "word": "การยิง", + "translation": "shooting" + }, + { + "word": "ร้านขายของ", + "translation": "shop" + }, + { + "word": "ช้อปปิ้ง", + "translation": "shopping" + }, + { + "word": "ฝั่งทะเล", + "translation": "shore" + }, + { + "word": "สั้น", + "translation": "short" + }, + { + "word": "ในไม่ช้า", + "translation": "shortly" + }, + { + "word": "การถ่ายภาพ", + "translation": "shot" + }, + { + "word": "ควร", + "translation": "should" + }, + { + "word": "ไหล่", + "translation": "shoulder" + }, + { + "word": "เสียงร้อง", + "translation": "shout" + }, + { + "word": "แสดง", + "translation": "show" + }, + { + "word": "ฝักบัว", + "translation": "shower" + }, + { + "word": "ยัก", + "translation": "shrug" + }, + { + "word": "ปิด", + "translation": "shut" + }, + { + "word": "ป่วย", + "translation": "sick" + }, + { + "word": "ด้าน", + "translation": "side" + }, + { + "word": "ถอนหายใจ", + "translation": "sigh" + }, + { + "word": "สายตา", + "translation": "sight" + }, + { + "word": "สัญญาณ", + "translation": "sign" + }, + { + "word": "สัญญาณ", + "translation": "signal" + }, + { + "word": "ความสำคัญ", + "translation": "significance" + }, + { + "word": "สำคัญ", + "translation": "significant" + }, + { + "word": "อย่างมีความหมาย", + "translation": "significantly" + }, + { + "word": "ความเงียบ", + "translation": "silence" + }, + { + "word": "เงียบ", + "translation": "silent" + }, + { + "word": "เงิน", + "translation": "silver" + }, + { + "word": "คล้ายคลึงกัน", + "translation": "similar" + }, + { + "word": "เหมือนกับ", + "translation": "similarly" + }, + { + "word": "ง่าย", + "translation": "simple" + }, + { + "word": "ง่ายดาย", + "translation": "simply" + }, + { + "word": "บาป", + "translation": "sin" + }, + { + "word": "ตั้งแต่", + "translation": "since" + }, + { + "word": "ร้องเพลง", + "translation": "sing" + }, + { + "word": "นักร้อง", + "translation": "singer" + }, + { + "word": "เดียว", + "translation": "single" + }, + { + "word": "จม", + "translation": "sink" + }, + { + "word": "ท่าน", + "translation": "sir" + }, + { + "word": "น้องสาว", + "translation": "sister" + }, + { + "word": "นั่ง", + "translation": "sit" + }, + { + "word": "เว็บไซต์", + "translation": "site" + }, + { + "word": "สถานการณ์", + "translation": "situation" + }, + { + "word": "หก", + "translation": "six" + }, + { + "word": "ขนาด", + "translation": "size" + }, + { + "word": "สกี", + "translation": "ski" + }, + { + "word": "ความสามารถ", + "translation": "skill" + }, + { + "word": "ผิว", + "translation": "skin" + }, + { + "word": "ท้องฟ้า", + "translation": "sky" + }, + { + "word": "ทาส", + "translation": "slave" + }, + { + "word": "นอน", + "translation": "sleep" + }, + { + "word": "ชิ้น", + "translation": "slice" + }, + { + "word": "สไลด์", + "translation": "slide" + }, + { + "word": "เล็กน้อย", + "translation": "slight" + }, + { + "word": "เล็กน้อย", + "translation": "slightly" + }, + { + "word": "ลื่น", + "translation": "slip" + }, + { + "word": "ช้า", + "translation": "slow" + }, + { + "word": "ช้า", + "translation": "slowly" + }, + { + "word": "เล็ก", + "translation": "small" + }, + { + "word": "ฉลาด", + "translation": "smart" + }, + { + "word": "กลิ่น", + "translation": "smell" + }, + { + "word": "ยิ้ม", + "translation": "smile" + }, + { + "word": "ควัน", + "translation": "smoke" + }, + { + "word": "เรียบ", + "translation": "smooth" + }, + { + "word": "ตะครุบ", + "translation": "snap" + }, + { + "word": "หิมะ", + "translation": "snow" + }, + { + "word": "ดังนั้น", + "translation": "so" + }, + { + "word": "ที่เรียกว่า", + "translation": "so-called" + }, + { + "word": "ฟุตบอล", + "translation": "soccer" + }, + { + "word": "สังคม", + "translation": "social" + }, + { + "word": "สังคม", + "translation": "society" + }, + { + "word": "อ่อนนุ่ม", + "translation": "soft" + }, + { + "word": "ซอฟต์แวร์", + "translation": "software" + }, + { + "word": "ดิน", + "translation": "soil" + }, + { + "word": "แสงอาทิตย์", + "translation": "solar" + }, + { + "word": "ทหาร", + "translation": "soldier" + }, + { + "word": "ของแข็ง", + "translation": "solid" + }, + { + "word": "สารละลาย", + "translation": "solution" + }, + { + "word": "แก้", + "translation": "solve" + }, + { + "word": "บาง", + "translation": "some" + }, + { + "word": "บางคน", + "translation": "somebody" + }, + { + "word": "อย่างใด", + "translation": "somehow" + }, + { + "word": "บางคน", + "translation": "someone" + }, + { + "word": "บางสิ่งบางอย่าง", + "translation": "something" + }, + { + "word": "บางครั้ง", + "translation": "sometimes" + }, + { + "word": "ค่อนข้าง", + "translation": "somewhat" + }, + { + "word": "บางแห่ง", + "translation": "somewhere" + }, + { + "word": "ลูกชาย", + "translation": "son" + }, + { + "word": "เพลง", + "translation": "song" + }, + { + "word": "ในไม่ช้า", + "translation": "soon" + }, + { + "word": "ซับซ้อน", + "translation": "sophisticated" + }, + { + "word": "ขอโทษ", + "translation": "sorry" + }, + { + "word": "ประเภท", + "translation": "sort" + }, + { + "word": "จิตวิญญาณ", + "translation": "soul" + }, + { + "word": "เสียง", + "translation": "sound" + }, + { + "word": "ซุป", + "translation": "soup" + }, + { + "word": "แหล่ง", + "translation": "source" + }, + { + "word": "ทางทิศใต้", + "translation": "south" + }, + { + "word": "ทางใต้", + "translation": "southern" + }, + { + "word": "โซเวียต", + "translation": "Soviet" + }, + { + "word": "ช่องว่าง", + "translation": "space" + }, + { + "word": "สเปน", + "translation": "Spanish" + }, + { + "word": "พูด", + "translation": "speak" + }, + { + "word": "ผู้พูด", + "translation": "speaker" + }, + { + "word": "พิเศษ", + "translation": "special" + }, + { + "word": "ผู้เชี่ยวชาญ", + "translation": "specialist" + }, + { + "word": "สายพันธุ์", + "translation": "species" + }, + { + "word": "โดยเฉพาะ", + "translation": "specific" + }, + { + "word": "เฉพาะ", + "translation": "specifically" + }, + { + "word": "การพูด", + "translation": "speech" + }, + { + "word": "ความเร็ว", + "translation": "speed" + }, + { + "word": "ใช้จ่าย", + "translation": "spend" + }, + { + "word": "การใช้จ่าย", + "translation": "spending" + }, + { + "word": "ปั่น", + "translation": "spin" + }, + { + "word": "วิญญาณ", + "translation": "spirit" + }, + { + "word": "มโนมัย", + "translation": "spiritual" + }, + { + "word": "แยก", + "translation": "split" + }, + { + "word": "โฆษก", + "translation": "spokesman" + }, + { + "word": "กีฬา", + "translation": "sport" + }, + { + "word": "จุด", + "translation": "spot" + }, + { + "word": "การแพร่กระจาย", + "translation": "spread" + }, + { + "word": "ฤดูใบไม้ผลิ", + "translation": "spring" + }, + { + "word": "สี่เหลี่ยม", + "translation": "square" + }, + { + "word": "บีบ", + "translation": "squeeze" + }, + { + "word": "ความมั่นคง", + "translation": "stability" + }, + { + "word": "มีเสถียรภาพ", + "translation": "stable" + }, + { + "word": "บุคลากร", + "translation": "staff" + }, + { + "word": "เวที", + "translation": "stage" + }, + { + "word": "บันได", + "translation": "stair" + }, + { + "word": "เดิมพัน", + "translation": "stake" + }, + { + "word": "ยืน", + "translation": "stand" + }, + { + "word": "มาตรฐาน", + "translation": "standard" + }, + { + "word": "จุดยืน", + "translation": "standing" + }, + { + "word": "ดาว", + "translation": "star" + }, + { + "word": "จ้อง", + "translation": "stare" + }, + { + "word": "เริ่มต้น", + "translation": "start" + }, + { + "word": "สถานะ", + "translation": "state" + }, + { + "word": "คำให้การ", + "translation": "statement" + }, + { + "word": "สถานี", + "translation": "station" + }, + { + "word": "สถิติ", + "translation": "statistics" + }, + { + "word": "สถานะ", + "translation": "status" + }, + { + "word": "เข้าพัก", + "translation": "stay" + }, + { + "word": "มั่นคง", + "translation": "steady" + }, + { + "word": "ขโมย", + "translation": "steal" + }, + { + "word": "เหล็ก", + "translation": "steel" + }, + { + "word": "ขั้นตอน", + "translation": "step" + }, + { + "word": "ติด", + "translation": "stick" + }, + { + "word": "ยังคง", + "translation": "still" + }, + { + "word": "กวน", + "translation": "stir" + }, + { + "word": "คลังสินค้า", + "translation": "stock" + }, + { + "word": "กระเพาะอาหาร", + "translation": "stomach" + }, + { + "word": "หิน", + "translation": "stone" + }, + { + "word": "หยุด", + "translation": "stop" + }, + { + "word": "การเก็บรักษา", + "translation": "storage" + }, + { + "word": "เก็บ", + "translation": "store" + }, + { + "word": "พายุ", + "translation": "storm" + }, + { + "word": "เรื่องราว", + "translation": "story" + }, + { + "word": "ตรง", + "translation": "straight" + }, + { + "word": "แปลก", + "translation": "strange" + }, + { + "word": "คนแปลกหน้า", + "translation": "stranger" + }, + { + "word": "ยุทธศาสตร์", + "translation": "strategic" + }, + { + "word": "กลยุทธ์", + "translation": "strategy" + }, + { + "word": "กระแส", + "translation": "stream" + }, + { + "word": "ถนน", + "translation": "street" + }, + { + "word": "ความแข็งแรง", + "translation": "strength" + }, + { + "word": "เสริมสร้าง", + "translation": "strengthen" + }, + { + "word": "ความตึงเครียด", + "translation": "stress" + }, + { + "word": "ยืด", + "translation": "stretch" + }, + { + "word": "โจมตี", + "translation": "strike" + }, + { + "word": "เชือก", + "translation": "string" + }, + { + "word": "เพิก", + "translation": "strip" + }, + { + "word": "ลากเส้น", + "translation": "stroke" + }, + { + "word": "แข็งแรง", + "translation": "strong" + }, + { + "word": "เสถียร", + "translation": "strongly" + }, + { + "word": "โครงสร้าง", + "translation": "structure" + }, + { + "word": "การต่อสู้", + "translation": "struggle" + }, + { + "word": "นักเรียน", + "translation": "student" + }, + { + "word": "สตูดิโอ", + "translation": "studio" + }, + { + "word": "ศึกษา", + "translation": "study" + }, + { + "word": "สิ่ง", + "translation": "stuff" + }, + { + "word": "โง่", + "translation": "stupid" + }, + { + "word": "สไตล์", + "translation": "style" + }, + { + "word": "เรื่อง", + "translation": "subject" + }, + { + "word": "เสนอ", + "translation": "submit" + }, + { + "word": "ภายหลัง", + "translation": "subsequent" + }, + { + "word": "สสาร", + "translation": "substance" + }, + { + "word": "รูปธรรม", + "translation": "substantial" + }, + { + "word": "ประสบความสำเร็จ", + "translation": "succeed" + }, + { + "word": "ความสำเร็จ", + "translation": "success" + }, + { + "word": "ที่ประสบความสำเร็จ", + "translation": "successful" + }, + { + "word": "ประสบความสำเร็จ", + "translation": "successfully" + }, + { + "word": "อย่างเช่น", + "translation": "such" + }, + { + "word": "ฉับพลัน", + "translation": "sudden" + }, + { + "word": "ทันใดนั้น", + "translation": "suddenly" + }, + { + "word": "ฟ้อง", + "translation": "sue" + }, + { + "word": "ประสบ", + "translation": "suffer" + }, + { + "word": "เพียงพอ", + "translation": "sufficient" + }, + { + "word": "น้ำตาล", + "translation": "sugar" + }, + { + "word": "แนะนำ", + "translation": "suggest" + }, + { + "word": "ข้อเสนอแนะ", + "translation": "suggestion" + }, + { + "word": "การฆ่าตัวตาย", + "translation": "suicide" + }, + { + "word": "สูท", + "translation": "suit" + }, + { + "word": "ฤดูร้อน", + "translation": "summer" + }, + { + "word": "ประชุมสุดยอด", + "translation": "summit" + }, + { + "word": "ดวงอาทิตย์", + "translation": "sun" + }, + { + "word": "ซุปเปอร์", + "translation": "super" + }, + { + "word": "จัดหา", + "translation": "supply" + }, + { + "word": "สนับสนุน", + "translation": "support" + }, + { + "word": "ผู้สนับสนุน", + "translation": "supporter" + }, + { + "word": "สมมติ", + "translation": "suppose" + }, + { + "word": "ควร", + "translation": "supposed" + }, + { + "word": "สูงสุด", + "translation": "Supreme" + }, + { + "word": "แน่ใจ", + "translation": "sure" + }, + { + "word": "อย่างแน่นอน", + "translation": "surely" + }, + { + "word": "พื้นผิว", + "translation": "surface" + }, + { + "word": "ศัลยกรรม", + "translation": "surgery" + }, + { + "word": "แปลกใจ", + "translation": "surprise" + }, + { + "word": "ประหลาดใจ", + "translation": "surprised" + }, + { + "word": "น่าแปลกใจ", + "translation": "surprising" + }, + { + "word": "อย่างแปลกใจ", + "translation": "surprisingly" + }, + { + "word": "รอบทิศทาง", + "translation": "surround" + }, + { + "word": "สำรวจ", + "translation": "survey" + }, + { + "word": "การอยู่รอด", + "translation": "survival" + }, + { + "word": "อยู่รอด", + "translation": "survive" + }, + { + "word": "ผู้รอดชีวิต", + "translation": "survivor" + }, + { + "word": "สงสัย", + "translation": "suspect" + }, + { + "word": "ยังชีพประคับประคอง", + "translation": "sustain" + }, + { + "word": "สาบาน", + "translation": "swear" + }, + { + "word": "กวาด", + "translation": "sweep" + }, + { + "word": "หวาน", + "translation": "sweet" + }, + { + "word": "การว่ายน้ำ", + "translation": "swim" + }, + { + "word": "แกว่ง", + "translation": "swing" + }, + { + "word": "สวิตซ์", + "translation": "switch" + }, + { + "word": "สัญลักษณ์", + "translation": "symbol" + }, + { + "word": "อาการ", + "translation": "symptom" + }, + { + "word": "ระบบ", + "translation": "system" + }, + { + "word": "ตาราง", + "translation": "table" + }, + { + "word": "ช้อนโต๊ะ", + "translation": "tablespoon" + }, + { + "word": "ชั้นเชิง", + "translation": "tactic" + }, + { + "word": "หาง", + "translation": "tail" + }, + { + "word": "เอา", + "translation": "take" + }, + { + "word": "นิทาน", + "translation": "tale" + }, + { + "word": "ความสามารถพิเศษ", + "translation": "talent" + }, + { + "word": "การพูดคุย", + "translation": "talk" + }, + { + "word": "สูง", + "translation": "tall" + }, + { + "word": "ถัง", + "translation": "tank" + }, + { + "word": "แตะเบา ๆ", + "translation": "tap" + }, + { + "word": "เทป", + "translation": "tape" + }, + { + "word": "เป้า", + "translation": "target" + }, + { + "word": "งาน", + "translation": "task" + }, + { + "word": "ลิ้มรส", + "translation": "taste" + }, + { + "word": "ภาษี", + "translation": "tax" + }, + { + "word": "ผู้เสียภาษีอากร", + "translation": "taxpayer" + }, + { + "word": "ชา", + "translation": "tea" + }, + { + "word": "สั่งสอน", + "translation": "teach" + }, + { + "word": "ครู", + "translation": "teacher" + }, + { + "word": "การสอน", + "translation": "teaching" + }, + { + "word": "ทีม", + "translation": "team" + }, + { + "word": "การฉีกขาด", + "translation": "tear" + }, + { + "word": "ช้อนชา", + "translation": "teaspoon" + }, + { + "word": "วิชาการ", + "translation": "technical" + }, + { + "word": "เทคนิค", + "translation": "technique" + }, + { + "word": "เทคโนโลยี", + "translation": "technology" + }, + { + "word": "วัยรุ่น", + "translation": "teen" + }, + { + "word": "วัยโจ๋", + "translation": "teenager" + }, + { + "word": "โทรศัพท์", + "translation": "telephone" + }, + { + "word": "กล้องโทรทรรศน์", + "translation": "telescope" + }, + { + "word": "โทรทัศน์", + "translation": "television" + }, + { + "word": "บอก", + "translation": "tell" + }, + { + "word": "อุณหภูมิ", + "translation": "temperature" + }, + { + "word": "ชั่วคราว", + "translation": "temporary" + }, + { + "word": "สิบ", + "translation": "ten" + }, + { + "word": "มีแนวโน้ม", + "translation": "tend" + }, + { + "word": "ความโน้มเอียง", + "translation": "tendency" + }, + { + "word": "เทนนิส", + "translation": "tennis" + }, + { + "word": "ความตึงเครียด", + "translation": "tension" + }, + { + "word": "เต็นท์", + "translation": "tent" + }, + { + "word": "วาระ", + "translation": "term" + }, + { + "word": "เงื่อนไข", + "translation": "terms" + }, + { + "word": "น่ากลัว", + "translation": "terrible" + }, + { + "word": "อาณาเขต", + "translation": "territory" + }, + { + "word": "ความหวาดกลัว", + "translation": "terror" + }, + { + "word": "ลัทธิก่อการร้าย", + "translation": "terrorism" + }, + { + "word": "ผู้ก่อการร้าย", + "translation": "terrorist" + }, + { + "word": "ทดสอบ", + "translation": "test" + }, + { + "word": "เป็นพยาน", + "translation": "testify" + }, + { + "word": "พยานหลักฐาน", + "translation": "testimony" + }, + { + "word": "การทดสอบ", + "translation": "testing" + }, + { + "word": "ข้อความ", + "translation": "text" + }, + { + "word": "กว่า", + "translation": "than" + }, + { + "word": "ขอบคุณ", + "translation": "thank" + }, + { + "word": "ขอบคุณ", + "translation": "thanks" + }, + { + "word": "ที่", + "translation": "that" + }, + { + "word": null, + "translation": "the" + }, + { + "word": "โรงละคร", + "translation": "theater" + }, + { + "word": "ของพวกเขา", + "translation": "their" + }, + { + "word": "พวกเขา", + "translation": "them" + }, + { + "word": "กระทู้", + "translation": "theme" + }, + { + "word": "ตัวเอง", + "translation": "themselves" + }, + { + "word": "แล้วก็", + "translation": "then" + }, + { + "word": "ทฤษฎี", + "translation": "theory" + }, + { + "word": "การรักษาด้วย", + "translation": "therapy" + }, + { + "word": "ที่นั่น", + "translation": "there" + }, + { + "word": "ดังนั้น", + "translation": "therefore" + }, + { + "word": "เหล่านี้", + "translation": "these" + }, + { + "word": "พวกเขา", + "translation": "they" + }, + { + "word": "หนา", + "translation": "thick" + }, + { + "word": "ผอม", + "translation": "thin" + }, + { + "word": "สิ่ง", + "translation": "thing" + }, + { + "word": "คิด", + "translation": "think" + }, + { + "word": "ความคิด", + "translation": "thinking" + }, + { + "word": "ที่สาม", + "translation": "third" + }, + { + "word": "สามสิบ", + "translation": "thirty" + }, + { + "word": "นี้", + "translation": "this" + }, + { + "word": "เหล่านั้น", + "translation": "those" + }, + { + "word": "แม้", + "translation": "though" + }, + { + "word": "ความคิด", + "translation": "thought" + }, + { + "word": "พัน", + "translation": "thousand" + }, + { + "word": "การคุกคาม", + "translation": "threat" + }, + { + "word": "ขู่", + "translation": "threaten" + }, + { + "word": "สาม", + "translation": "three" + }, + { + "word": "ลำคอ", + "translation": "throat" + }, + { + "word": "ตลอด", + "translation": "through" + }, + { + "word": "ตลอด", + "translation": "throughout" + }, + { + "word": "โยน", + "translation": "throw" + }, + { + "word": "ดังนั้น", + "translation": "thus" + }, + { + "word": "ตั๋ว", + "translation": "ticket" + }, + { + "word": "ผูก", + "translation": "tie" + }, + { + "word": "แน่น", + "translation": "tight" + }, + { + "word": "เวลา", + "translation": "time" + }, + { + "word": "ขนาดเล็ก", + "translation": "tiny" + }, + { + "word": "ปลาย", + "translation": "tip" + }, + { + "word": "ยาง", + "translation": "tire" + }, + { + "word": "เหนื่อย", + "translation": "tired" + }, + { + "word": "เนื้อเยื่อ", + "translation": "tissue" + }, + { + "word": "หัวข้อ", + "translation": "title" + }, + { + "word": "ถึง", + "translation": "to" + }, + { + "word": "ยาสูบ", + "translation": "tobacco" + }, + { + "word": "ในวันนี้", + "translation": "today" + }, + { + "word": "นิ้วเท้า", + "translation": "toe" + }, + { + "word": "ด้วยกัน", + "translation": "together" + }, + { + "word": "มะเขือเทศ", + "translation": "tomato" + }, + { + "word": "วันพรุ่งนี้", + "translation": "tomorrow" + }, + { + "word": "โทน", + "translation": "tone" + }, + { + "word": "ลิ้น", + "translation": "tongue" + }, + { + "word": "คืนนี้", + "translation": "tonight" + }, + { + "word": "เกินไป", + "translation": "too" + }, + { + "word": "เครื่องมือ", + "translation": "tool" + }, + { + "word": "ฟัน", + "translation": "tooth" + }, + { + "word": "ด้านบน", + "translation": "top" + }, + { + "word": "หัวข้อเรื่อง", + "translation": "topic" + }, + { + "word": "โยน", + "translation": "toss" + }, + { + "word": "รวม", + "translation": "total" + }, + { + "word": "โดยสิ้นเชิง", + "translation": "totally" + }, + { + "word": "สัมผัส", + "translation": "touch" + }, + { + "word": "ยาก", + "translation": "tough" + }, + { + "word": "การท่องเที่ยว", + "translation": "tour" + }, + { + "word": "นักท่องเที่ยว", + "translation": "tourist" + }, + { + "word": "การแข่งขัน", + "translation": "tournament" + }, + { + "word": "ไปทาง", + "translation": "toward" + }, + { + "word": "ไปทาง", + "translation": "towards" + }, + { + "word": "หอคอย", + "translation": "tower" + }, + { + "word": "ตัวเมือง", + "translation": "town" + }, + { + "word": "ของเล่น", + "translation": "toy" + }, + { + "word": "ติดตาม", + "translation": "trace" + }, + { + "word": "ติดตาม", + "translation": "track" + }, + { + "word": "ค้า", + "translation": "trade" + }, + { + "word": "ประเพณี", + "translation": "tradition" + }, + { + "word": "แบบดั้งเดิม", + "translation": "traditional" + }, + { + "word": "การจราจร", + "translation": "traffic" + }, + { + "word": "โศกนาฏกรรม", + "translation": "tragedy" + }, + { + "word": "ทาง", + "translation": "trail" + }, + { + "word": "รถไฟ", + "translation": "train" + }, + { + "word": "การอบรม", + "translation": "training" + }, + { + "word": "โอน", + "translation": "transfer" + }, + { + "word": "แปลง", + "translation": "transform" + }, + { + "word": "การแปลง", + "translation": "transformation" + }, + { + "word": "การเปลี่ยนแปลง", + "translation": "transition" + }, + { + "word": "แปลภาษา", + "translation": "translate" + }, + { + "word": "การขนส่ง", + "translation": "transportation" + }, + { + "word": "การท่องเที่ยว", + "translation": "travel" + }, + { + "word": "รักษา", + "translation": "treat" + }, + { + "word": "การรักษา", + "translation": "treatment" + }, + { + "word": "สนธิสัญญา", + "translation": "treaty" + }, + { + "word": "ต้นไม้", + "translation": "tree" + }, + { + "word": "มหึมา", + "translation": "tremendous" + }, + { + "word": "แนวโน้ม", + "translation": "trend" + }, + { + "word": "การทดลอง", + "translation": "trial" + }, + { + "word": "เผ่า", + "translation": "tribe" + }, + { + "word": "เคล็ดลับ", + "translation": "trick" + }, + { + "word": "การเดินทาง", + "translation": "trip" + }, + { + "word": "กองร้อย", + "translation": "troop" + }, + { + "word": "ปัญหา", + "translation": "trouble" + }, + { + "word": "รถบรรทุก", + "translation": "truck" + }, + { + "word": "จริง", + "translation": "true" + }, + { + "word": "อย่างแท้จริง", + "translation": "truly" + }, + { + "word": "วางใจ", + "translation": "trust" + }, + { + "word": "ความจริง", + "translation": "truth" + }, + { + "word": "ลอง", + "translation": "try" + }, + { + "word": "หลอด", + "translation": "tube" + }, + { + "word": "อุโมงค์", + "translation": "tunnel" + }, + { + "word": "กลับ", + "translation": "turn" + }, + { + "word": "โทรทัศน์", + "translation": "TV" + }, + { + "word": "สิบสอง", + "translation": "twelve" + }, + { + "word": "ยี่สิบ", + "translation": "twenty" + }, + { + "word": "สองครั้ง", + "translation": "twice" + }, + { + "word": "คู่", + "translation": "twin" + }, + { + "word": "สอง", + "translation": "two" + }, + { + "word": "ชนิด", + "translation": "type" + }, + { + "word": "ตามแบบฉบับ", + "translation": "typical" + }, + { + "word": "เป็นปกติ", + "translation": "typically" + }, + { + "word": "น่าเกลียด", + "translation": "ugly" + }, + { + "word": "ที่สุด", + "translation": "ultimate" + }, + { + "word": "ในที่สุด", + "translation": "ultimately" + }, + { + "word": "ไม่สามารถ", + "translation": "unable" + }, + { + "word": "ลุง", + "translation": "uncle" + }, + { + "word": "ภายใต้", + "translation": "under" + }, + { + "word": "ได้รับ", + "translation": "undergo" + }, + { + "word": "เข้าใจ", + "translation": "understand" + }, + { + "word": "ความเข้าใจ", + "translation": "understanding" + }, + { + "word": "น่าเสียดาย", + "translation": "unfortunately" + }, + { + "word": "เหมือนกัน", + "translation": "uniform" + }, + { + "word": "สหภาพ", + "translation": "union" + }, + { + "word": "เป็นเอกลักษณ์", + "translation": "unique" + }, + { + "word": "หน่วย", + "translation": "unit" + }, + { + "word": "ปึกแผ่น", + "translation": "United" + }, + { + "word": "สากล", + "translation": "universal" + }, + { + "word": "จักรวาล", + "translation": "universe" + }, + { + "word": "มหาวิทยาลัย", + "translation": "university" + }, + { + "word": "ไม่ทราบ", + "translation": "unknown" + }, + { + "word": "เว้นแต่", + "translation": "unless" + }, + { + "word": "แตกต่าง", + "translation": "unlike" + }, + { + "word": "ไม่แน่", + "translation": "unlikely" + }, + { + "word": "จนกระทั่ง", + "translation": "until" + }, + { + "word": "ผิดปกติ", + "translation": "unusual" + }, + { + "word": "ขึ้น", + "translation": "up" + }, + { + "word": "เมื่อ", + "translation": "upon" + }, + { + "word": "บน", + "translation": "upper" + }, + { + "word": "ในเมือง", + "translation": "urban" + }, + { + "word": "กระตุ้น", + "translation": "urge" + }, + { + "word": "เรา", + "translation": "us" + }, + { + "word": "ใช้", + "translation": "use" + }, + { + "word": "ใช้", + "translation": "used" + }, + { + "word": "มีประโยชน์", + "translation": "useful" + }, + { + "word": "ผู้ใช้งาน", + "translation": "user" + }, + { + "word": "ตามปกติ", + "translation": "usual" + }, + { + "word": "มักจะ", + "translation": "usually" + }, + { + "word": "ประโยชน์", + "translation": "utility" + }, + { + "word": "วันหยุด", + "translation": "vacation" + }, + { + "word": "หุบเขา", + "translation": "valley" + }, + { + "word": "มีคุณค่า", + "translation": "valuable" + }, + { + "word": "ความคุ้มค่า", + "translation": "value" + }, + { + "word": "ตัวแปร", + "translation": "variable" + }, + { + "word": "การเปลี่ยนแปลง", + "translation": "variation" + }, + { + "word": "ความหลากหลาย", + "translation": "variety" + }, + { + "word": "ต่างๆ", + "translation": "various" + }, + { + "word": "แตกต่าง", + "translation": "vary" + }, + { + "word": "กว้างใหญ่", + "translation": "vast" + }, + { + "word": "ผัก", + "translation": "vegetable" + }, + { + "word": "พาหนะ", + "translation": "vehicle" + }, + { + "word": "เสี่ยง", + "translation": "venture" + }, + { + "word": "รุ่น", + "translation": "version" + }, + { + "word": "กับ", + "translation": "versus" + }, + { + "word": "มาก", + "translation": "very" + }, + { + "word": "เรือ", + "translation": "vessel" + }, + { + "word": "ทหารผ่านศึก", + "translation": "veteran" + }, + { + "word": "ผ่านทาง", + "translation": "via" + }, + { + "word": "เหยื่อ", + "translation": "victim" + }, + { + "word": "ชัยชนะ", + "translation": "victory" + }, + { + "word": "วีดีโอ", + "translation": "video" + }, + { + "word": "ดู", + "translation": "view" + }, + { + "word": "ผู้ชม", + "translation": "viewer" + }, + { + "word": "หมู่บ้าน", + "translation": "village" + }, + { + "word": "ละเมิด", + "translation": "violate" + }, + { + "word": "การละเมิด", + "translation": "violation" + }, + { + "word": "ความรุนแรง", + "translation": "violence" + }, + { + "word": "รุนแรง", + "translation": "violent" + }, + { + "word": "จวน", + "translation": "virtually" + }, + { + "word": "คุณธรรม", + "translation": "virtue" + }, + { + "word": "ไวรัส", + "translation": "virus" + }, + { + "word": "มองเห็นได้", + "translation": "visible" + }, + { + "word": "วิสัยทัศน์", + "translation": "vision" + }, + { + "word": "เยือน", + "translation": "visit" + }, + { + "word": "ผู้มาเยือน", + "translation": "visitor" + }, + { + "word": "ภาพ", + "translation": "visual" + }, + { + "word": "จำเป็น", + "translation": "vital" + }, + { + "word": "เสียงพูด", + "translation": "voice" + }, + { + "word": "ปริมาณ", + "translation": "volume" + }, + { + "word": "อาสาสมัคร", + "translation": "volunteer" + }, + { + "word": "โหวต", + "translation": "vote" + }, + { + "word": "ผู้เลือกตั้ง", + "translation": "voter" + }, + { + "word": "VS", + "translation": "vs" + }, + { + "word": "อ่อนแอ", + "translation": "vulnerable" + }, + { + "word": "ค่าจ้าง", + "translation": "wage" + }, + { + "word": "รอ", + "translation": "wait" + }, + { + "word": "ปลุก", + "translation": "wake" + }, + { + "word": "เดิน", + "translation": "walk" + }, + { + "word": "ผนัง", + "translation": "wall" + }, + { + "word": "เดิน", + "translation": "wander" + }, + { + "word": "ต้องการ", + "translation": "want" + }, + { + "word": "สงคราม", + "translation": "war" + }, + { + "word": "อบอุ่น", + "translation": "warm" + }, + { + "word": "เตือน", + "translation": "warn" + }, + { + "word": "คำเตือน", + "translation": "warning" + }, + { + "word": "ล้าง", + "translation": "wash" + }, + { + "word": "ของเสีย", + "translation": "waste" + }, + { + "word": "ดู", + "translation": "watch" + }, + { + "word": "น้ำ", + "translation": "water" + }, + { + "word": "คลื่น", + "translation": "wave" + }, + { + "word": "ทาง", + "translation": "way" + }, + { + "word": "เรา", + "translation": "we" + }, + { + "word": "อ่อนแอ", + "translation": "weak" + }, + { + "word": "ความมั่งคั่ง", + "translation": "wealth" + }, + { + "word": "ร่ำรวย", + "translation": "wealthy" + }, + { + "word": "อาวุธ", + "translation": "weapon" + }, + { + "word": "สวมใส่", + "translation": "wear" + }, + { + "word": "สภาพอากาศ", + "translation": "weather" + }, + { + "word": "งานแต่งงาน", + "translation": "wedding" + }, + { + "word": "สัปดาห์", + "translation": "week" + }, + { + "word": "สุดสัปดาห์", + "translation": "weekend" + }, + { + "word": "รายสัปดาห์", + "translation": "weekly" + }, + { + "word": "ชั่งน้ำหนัก", + "translation": "weigh" + }, + { + "word": "น้ำหนัก", + "translation": "weight" + }, + { + "word": "ยินดีต้อนรับ", + "translation": "welcome" + }, + { + "word": "สวัสดิการ", + "translation": "welfare" + }, + { + "word": "ดี", + "translation": "well" + }, + { + "word": "ทิศตะวันตก", + "translation": "west" + }, + { + "word": "ตะวันตก", + "translation": "western" + }, + { + "word": "เปียก", + "translation": "wet" + }, + { + "word": "อะไร", + "translation": "what" + }, + { + "word": "อะไรก็ตาม", + "translation": "whatever" + }, + { + "word": "ล้อ", + "translation": "wheel" + }, + { + "word": "เมื่อไหร่", + "translation": "when" + }, + { + "word": "เมื่อไรก็ตาม", + "translation": "whenever" + }, + { + "word": "ที่ไหน", + "translation": "where" + }, + { + "word": "แต่ทว่า", + "translation": "whereas" + }, + { + "word": "ว่า", + "translation": "whether" + }, + { + "word": "ที่", + "translation": "which" + }, + { + "word": "ในขณะที่", + "translation": "while" + }, + { + "word": "กระซิบ", + "translation": "whisper" + }, + { + "word": "ขาว", + "translation": "white" + }, + { + "word": "Who", + "translation": "who" + }, + { + "word": "ทั้งหมด", + "translation": "whole" + }, + { + "word": "ใคร", + "translation": "whom" + }, + { + "word": "ใคร", + "translation": "whose" + }, + { + "word": "ทำไม", + "translation": "why" + }, + { + "word": "กว้าง", + "translation": "wide" + }, + { + "word": "อย่างกว้างขวาง", + "translation": "widely" + }, + { + "word": "แพร่หลาย", + "translation": "widespread" + }, + { + "word": "ภรรยา", + "translation": "wife" + }, + { + "word": "ป่า", + "translation": "wild" + }, + { + "word": "จะ", + "translation": "will" + }, + { + "word": "เต็มใจ", + "translation": "willing" + }, + { + "word": "ชนะ", + "translation": "win" + }, + { + "word": "ลม", + "translation": "wind" + }, + { + "word": "หน้าต่าง", + "translation": "window" + }, + { + "word": "ไวน์", + "translation": "wine" + }, + { + "word": "ปีก", + "translation": "wing" + }, + { + "word": "ผู้ชนะ", + "translation": "winner" + }, + { + "word": "ฤดูหนาว", + "translation": "winter" + }, + { + "word": "เช็ด", + "translation": "wipe" + }, + { + "word": "ลวด", + "translation": "wire" + }, + { + "word": "ความฉลาด", + "translation": "wisdom" + }, + { + "word": "ฉลาด", + "translation": "wise" + }, + { + "word": "ประสงค์", + "translation": "wish" + }, + { + "word": "กับ", + "translation": "with" + }, + { + "word": "ถอน", + "translation": "withdraw" + }, + { + "word": "ภายใน", + "translation": "within" + }, + { + "word": "ไม่มี", + "translation": "without" + }, + { + "word": "พยาน", + "translation": "witness" + }, + { + "word": "หญิง", + "translation": "woman" + }, + { + "word": "น่าแปลกใจ", + "translation": "wonder" + }, + { + "word": "ยอดเยี่ยม", + "translation": "wonderful" + }, + { + "word": "ไม้", + "translation": "wood" + }, + { + "word": "ทำด้วยไม้", + "translation": "wooden" + }, + { + "word": "คำ", + "translation": "word" + }, + { + "word": "งาน", + "translation": "work" + }, + { + "word": "ผู้ปฏิบัติงาน", + "translation": "worker" + }, + { + "word": "การทำงาน", + "translation": "working" + }, + { + "word": "โรงงาน", + "translation": "works" + }, + { + "word": "โรงงาน", + "translation": "workshop" + }, + { + "word": "โลก", + "translation": "world" + }, + { + "word": "กังวล", + "translation": "worried" + }, + { + "word": "กังวล", + "translation": "worry" + }, + { + "word": "คุ้มค่า", + "translation": "worth" + }, + { + "word": "หากว่า", + "translation": "would" + }, + { + "word": "บาดแผล", + "translation": "wound" + }, + { + "word": "ห่อ", + "translation": "wrap" + }, + { + "word": "เขียน", + "translation": "write" + }, + { + "word": "นักเขียน", + "translation": "writer" + }, + { + "word": "การเขียน", + "translation": "writing" + }, + { + "word": "ไม่ถูกต้อง", + "translation": "wrong" + }, + { + "word": "ลาน", + "translation": "yard" + }, + { + "word": "ใช่", + "translation": "yeah" + }, + { + "word": "ปี", + "translation": "year" + }, + { + "word": "ตะโกน", + "translation": "yell" + }, + { + "word": "สีเหลือง", + "translation": "yellow" + }, + { + "word": "ใช่", + "translation": "yes" + }, + { + "word": "เมื่อวาน", + "translation": "yesterday" + }, + { + "word": "ยัง", + "translation": "yet" + }, + { + "word": "ผล", + "translation": "yield" + }, + { + "word": "คุณ", + "translation": "you" + }, + { + "word": "หนุ่มสาว", + "translation": "young" + }, + { + "word": "ของคุณ", + "translation": "your" + }, + { + "word": "ของคุณ", + "translation": "yours" + }, + { + "word": "ด้วยตัวคุณเอง", + "translation": "yourself" + }, + { + "word": "หนุ่ม", + "translation": "youth" + }, + { + "word": "โซน", + "translation": "zone" + } +] From ab71bf214c1b7abc074359a5fbe31f0566da5ab2 Mon Sep 17 00:00:00 2001 From: itzmeowww Date: Fri, 2 Oct 2020 15:29:33 +0700 Subject: [PATCH 2/3] this should work --- client/src/store/index.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/client/src/store/index.js b/client/src/store/index.js index 196aabe5..341c4060 100644 --- a/client/src/store/index.js +++ b/client/src/store/index.js @@ -24,7 +24,7 @@ export const state = { export const actions = { getSelectedLanguages({ commit, dispatch }) { commit('setLoading', true); - chrome.storage.sync.get('selectedLanguages', (response) => { + chrome.storage.sync.get('selectedLanguages', response => { let { selectedLanguages } = response; if (selectedLanguages === undefined || selectedLanguages.length === 0) { selectedLanguages = ['german']; @@ -42,7 +42,7 @@ export const actions = { dispatch('retrieveDailyData'); }, getDailyData({ commit, dispatch }) { - chrome.storage.sync.get('dailyData', (response) => { + chrome.storage.sync.get('dailyData', response => { const data = response.dailyData; if (!!data && data.created_at === new Date().toDateString()) { dispatch('saveDailyData', data); @@ -55,7 +55,7 @@ export const actions = { const languages = state.selectedLanguages.join(','); axios .get(`${process.env.VUE_APP_API_URL}/daily?languages=${languages}`) - .then((response) => { + .then(response => { const { data } = response; data.created_at = new Date().toDateString(); chrome.storage.sync.set({ dailyData: data }); @@ -70,7 +70,7 @@ export const actions = { commit('setDailyData', data); }, getLanguageOptions({ dispatch }) { - chrome.storage.sync.get('languageOptions', (response) => { + chrome.storage.sync.get('languageOptions', response => { const data = response.languageOptions; if (!!data && data.length === currentLanguagesCount) dispatch('saveLanguageOptions', data); @@ -80,7 +80,7 @@ export const actions = { retrieveLanguageOptions({ commit, dispatch }) { axios .get(`${process.env.VUE_APP_API_URL}/languages`) - .then((response) => { + .then(response => { const options = Object.keys(response.data.languages); chrome.storage.sync.set({ languageOptions: options }); dispatch('saveLanguageOptions', options); From 9471073ebfc3aa4375f597c66967af2b3116f2de Mon Sep 17 00:00:00 2001 From: itzmeowww Date: Sun, 4 Oct 2020 13:50:47 +0700 Subject: [PATCH 3/3] this should work --- server/data/languages.json | 124 ++++++++++++++++++------------------- 1 file changed, 62 insertions(+), 62 deletions(-) diff --git a/server/data/languages.json b/server/data/languages.json index 4c878cd8..047e143f 100644 --- a/server/data/languages.json +++ b/server/data/languages.json @@ -1,66 +1,66 @@ { - "afrikaans": { - "flag": "twa-south-south-africa-flag", - "voice": "Afrikaans Male" - }, - "arabic": { - "flag": "twa-saudi-arabia-flag", - "voice": "Arabic Female" - }, - "bangla": { - "flag": "twa-bangladesh-flag", - "voice": "Bangla Bangladesh Male" - }, - "brazilian-portuguese": { - "flag": "twa-brazil-flag", - "voice": "Brazilian Portuguese Female" - }, - "chinese-simplified": { - "flag": "twa-china-flag", - "voice": "Chinese Female" - }, - "filipino": { - "flag": "twa-philippines-flag", - "voice": "Filipino Female" - }, - "french": { - "flag": "twa-france-flag", - "voice": "French Female" - }, - "german": { - "flag": "twa-germany-flag", - "voice": "Deutsch Female" - }, - "hindi": { - "flag": "twa-india-flag", - "voice": "Hindi Female" - }, - "indonesian": { - "flag": "twa-indonesia-flag", - "voice": "Indonesian Female" - }, - "japanese": { - "flag": "twa-japan-flag", - "voice": "Japanese Female" - }, - "korean": { - "flag": "twa-korea-south-south-korea-flag", - "voice": "Korean Female" - }, - "russian": { - "flag": "twa-russia-flag", - "voice": "Russian Female" - }, - "spanish": { - "flag": "twa-spain-flag", - "voice": "Spanish Female" - }, - "swedish": { - "flag": "twa-sweden-flag", - "voice": "Swedish Male" - }, - "thai": { + "afrikaans": { + "flag": "twa-south-south-africa-flag", + "voice": "Afrikaans Male" + }, + "arabic": { + "flag": "twa-saudi-arabia-flag", + "voice": "Arabic Female" + }, + "bangla": { + "flag": "twa-bangladesh-flag", + "voice": "Bangla Bangladesh Male" + }, + "brazilian-portuguese": { + "flag": "twa-brazil-flag", + "voice": "Brazilian Portuguese Female" + }, + "chinese-simplified": { + "flag": "twa-china-flag", + "voice": "Chinese Female" + }, + "filipino": { + "flag": "twa-philippines-flag", + "voice": "Filipino Female" + }, + "french": { + "flag": "twa-france-flag", + "voice": "French Female" + }, + "german": { + "flag": "twa-germany-flag", + "voice": "Deutsch Female" + }, + "hindi": { + "flag": "twa-india-flag", + "voice": "Hindi Female" + }, + "indonesian": { + "flag": "twa-indonesia-flag", + "voice": "Indonesian Female" + }, + "japanese": { + "flag": "twa-japan-flag", + "voice": "Japanese Female" + }, + "korean": { + "flag": "twa-korea-south-south-korea-flag", + "voice": "Korean Female" + }, + "russian": { + "flag": "twa-russia-flag", + "voice": "Russian Female" + }, + "spanish": { + "flag": "twa-spain-flag", + "voice": "Spanish Female" + }, + "swedish": { + "flag": "twa-sweden-flag", + "voice": "Swedish Male" + }, + "thai": { "flag": "twa-thailand-flag", "voice": "Thai Female" - }, + } }