@instructure/canvas-rce 5.11.0 → 5.12.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/es/canvasFileBrowser/FileBrowser.js +6 -1
  3. package/es/common/fileUrl.js +3 -4
  4. package/es/defaultTinymceConfig.js +1 -1
  5. package/es/elementDenylist.js +19 -0
  6. package/es/getThemeVars.js +4 -3
  7. package/es/getTranslations.js +77 -1
  8. package/es/rce/RCEWrapper.js +2 -6
  9. package/es/rce/RceHtmlEditor.js +58 -20
  10. package/es/rce/StatusBar.js +8 -2
  11. package/es/rce/contentInsertion.js +5 -2
  12. package/es/rce/plugins/instructure_documents/components/DocumentsPanel.js +3 -9
  13. package/es/rce/plugins/instructure_html_view/plugin.js +2 -2
  14. package/es/rce/plugins/instructure_icon_maker/components/SavedIconMakerList.js +3 -2
  15. package/es/rce/plugins/instructure_image/ImageList/Image.js +2 -2
  16. package/es/rce/plugins/instructure_image/Images/index.js +3 -10
  17. package/es/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialog.js +3 -0
  18. package/es/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/ResourceLinkContentItem.js +3 -1
  19. package/es/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +26 -1
  20. package/es/rce/plugins/instructure_record/AudioOptionsTray/index.js +9 -3
  21. package/es/rce/plugins/instructure_record/MediaPanel/index.js +3 -9
  22. package/es/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +27 -2
  23. package/es/rce/plugins/instructure_record/VideoOptionsTray/index.js +35 -6
  24. package/es/rce/plugins/shared/fileShape.js +81 -9
  25. package/es/rce/plugins/shared/fileTypeUtils.js +6 -0
  26. package/es/rcs/api.js +6 -4
  27. package/es/sidebar/store/configureStore.js +2 -2
  28. package/es/translations/locales/ab.js +26 -0
  29. package/es/translations/locales/cs.js +27 -0
  30. package/es/translations/locales/cs_CZ.js +27 -0
  31. package/es/translations/locales/da_DK.js +27 -0
  32. package/es/translations/locales/en_NZ.js +26 -0
  33. package/es/translations/locales/en_SE.js +26 -0
  34. package/es/translations/locales/en_US.js +26 -0
  35. package/es/translations/locales/hu_HU.js +27 -0
  36. package/es/translations/locales/id.js +2426 -0
  37. package/{lib/types/inst-ui.d.js → es/translations/locales/id_ID.js} +9 -1
  38. package/es/translations/locales/ko_KR.js +27 -0
  39. package/es/translations/locales/lt.js +26 -0
  40. package/es/translations/locales/lt_LT.js +26 -0
  41. package/es/translations/locales/mn_MN.js +26 -0
  42. package/es/translations/locales/nl_NL.js +27 -0
  43. package/es/translations/locales/ro.js +27 -0
  44. package/es/translations/locales/ru.js +2375 -32
  45. package/es/translations/locales/sv.js +2379 -30
  46. package/es/translations/locales/th.js +2401 -1
  47. package/es/translations/locales/tl_PH.js +26 -0
  48. package/es/translations/locales/tr.js +3 -0
  49. package/es/translations/locales/vi.js +2396 -8
  50. package/es/translations/locales/zh_TW.Big5.js +27 -0
  51. package/es/translations/locales/zh_TW.js +27 -0
  52. package/lib/canvasFileBrowser/FileBrowser.js +6 -1
  53. package/lib/common/fileUrl.js +3 -4
  54. package/lib/defaultTinymceConfig.js +1 -1
  55. package/lib/elementDenylist.js +19 -0
  56. package/lib/getThemeVars.js +4 -3
  57. package/lib/getTranslations.js +77 -1
  58. package/lib/rce/RCEWrapper.js +2 -6
  59. package/lib/rce/RceHtmlEditor.js +58 -20
  60. package/lib/rce/StatusBar.js +8 -2
  61. package/lib/rce/contentInsertion.js +5 -2
  62. package/lib/rce/plugins/instructure_documents/components/DocumentsPanel.js +3 -9
  63. package/lib/rce/plugins/instructure_html_view/plugin.js +2 -2
  64. package/lib/rce/plugins/instructure_icon_maker/components/SavedIconMakerList.js +3 -2
  65. package/lib/rce/plugins/instructure_image/ImageList/Image.js +2 -2
  66. package/lib/rce/plugins/instructure_image/Images/index.js +3 -10
  67. package/lib/rce/plugins/instructure_rce_external_tools/components/ExternalToolDialog/ExternalToolDialog.js +3 -0
  68. package/lib/rce/plugins/instructure_rce_external_tools/lti13-content-items/models/ResourceLinkContentItem.js +3 -1
  69. package/lib/rce/plugins/instructure_record/AudioOptionsTray/TrayController.js +26 -1
  70. package/lib/rce/plugins/instructure_record/AudioOptionsTray/index.js +9 -3
  71. package/lib/rce/plugins/instructure_record/MediaPanel/index.js +3 -9
  72. package/lib/rce/plugins/instructure_record/VideoOptionsTray/TrayController.js +27 -2
  73. package/lib/rce/plugins/instructure_record/VideoOptionsTray/index.js +35 -6
  74. package/lib/rce/plugins/shared/fileShape.js +81 -9
  75. package/lib/rce/plugins/shared/fileTypeUtils.js +6 -0
  76. package/lib/rcs/api.js +6 -4
  77. package/lib/sidebar/store/configureStore.js +2 -2
  78. package/lib/translations/locales/ab.js +26 -0
  79. package/lib/translations/locales/cs.js +27 -0
  80. package/lib/translations/locales/cs_CZ.js +27 -0
  81. package/lib/translations/locales/da_DK.js +27 -0
  82. package/lib/translations/locales/en_NZ.js +26 -0
  83. package/lib/translations/locales/en_SE.js +26 -0
  84. package/lib/translations/locales/en_US.js +26 -0
  85. package/lib/translations/locales/hu_HU.js +27 -0
  86. package/lib/translations/locales/id.js +2426 -0
  87. package/{es/types/inst-ui.d.js → lib/translations/locales/id_ID.js} +9 -1
  88. package/lib/translations/locales/ko_KR.js +27 -0
  89. package/lib/translations/locales/lt.js +26 -0
  90. package/lib/translations/locales/lt_LT.js +26 -0
  91. package/lib/translations/locales/mn_MN.js +26 -0
  92. package/lib/translations/locales/nl_NL.js +27 -0
  93. package/lib/translations/locales/ro.js +27 -0
  94. package/lib/translations/locales/ru.js +2375 -32
  95. package/lib/translations/locales/sv.js +2379 -30
  96. package/lib/translations/locales/th.js +2401 -1
  97. package/lib/translations/locales/tl_PH.js +26 -0
  98. package/lib/translations/locales/tr.js +3 -0
  99. package/lib/translations/locales/vi.js +2396 -8
  100. package/lib/translations/locales/zh_TW.Big5.js +27 -0
  101. package/lib/translations/locales/zh_TW.js +27 -0
  102. package/package.json +12 -12
  103. package/scripts/publish_to_npm.sh +26 -0
  104. package/es/common/scroll.js +0 -45
  105. package/es/types/ts-migration.js +0 -1
  106. package/lib/common/scroll.js +0 -45
  107. package/lib/types/ts-migration.js +0 -1
@@ -18,8 +18,2408 @@
18
18
  import formatMessage from '../../format-message';
19
19
  import '../tinymce/th';
20
20
  const locale = {
21
+ "access_the_pretty_html_editor_37168efe": {
22
+ "message": "เข้าไปยัง HTML Editor ที่สวยงาม"
23
+ },
24
+ "accessibility_checker_b3af1f6c": {
25
+ "message": "ระบบตรวจสอบการใช้งาน"
26
+ },
27
+ "action_to_take_b626a99a": {
28
+ "message": "การดำเนินการที่จะมีขึ้น:"
29
+ },
30
+ "add_8523c19b": {
31
+ "message": "เพิ่ม"
32
+ },
33
+ "add_a_caption_2a915239": {
34
+ "message": "เพิ่มคำบรรยาย"
35
+ },
36
+ "add_alt_text_for_the_image_48cd88aa": {
37
+ "message": "เพิ่มข้อความเผื่อเลือกสำหรับภาพ"
38
+ },
39
+ "add_another_f4e50d57": {
40
+ "message": "เพิ่มรายการอื่น"
41
+ },
42
+ "add_cc_subtitles_55f0394e": {
43
+ "message": "เพิ่ม CC/คำบรรยาย"
44
+ },
45
+ "add_image_60b2de07": {
46
+ "message": "เพิ่มภาพ"
47
+ },
48
+ "add_one_9e34a6f8": {
49
+ "message": "เพิ่มหนึ่งรายการ!"
50
+ },
51
+ "additional_considerations_f3801683": {
52
+ "message": "ข้อพิจารณาเพิ่มเติม"
53
+ },
54
+ "adjacent_links_with_the_same_url_should_be_a_singl_7a1f7f6c": {
55
+ "message": "ลิงค์ที่ติดกันกับ URL เหมือน ๆ กันควรเป็นลิงค์แยกเดี่ยว"
56
+ },
57
+ "aleph_f4ffd155": {
58
+ "message": "อาเลฟ"
59
+ },
60
+ "align_11050992": {
61
+ "message": "เชื่อมโยง"
62
+ },
63
+ "alignment_and_lists_5cebcb69": {
64
+ "message": "การจัดตำแหน่งและรายการต่าง ๆ"
65
+ },
66
+ "all_4321c3a1": {
67
+ "message": "ทั้งหมด"
68
+ },
69
+ "all_apps_a50dea49": {
70
+ "message": "แอพทั้งหมด"
71
+ },
72
+ "alpha_15d59033": {
73
+ "message": "อัลฟ่า"
74
+ },
75
+ "alphabetical_55b5b4e0": {
76
+ "message": "ตามลำดับตัวอักษร"
77
+ },
78
+ "alt_attribute_text_should_not_contain_more_than_12_e21d4040": {
79
+ "message": "ข้อความคุณลักษณะเผื่อเลือกไม่ควรยาวเกินกว่า 120 ตัวอักษร"
80
+ },
81
+ "alt_text_611fb322": {
82
+ "message": "ข้อความเผื่อเลือก"
83
+ },
84
+ "amalg_coproduct_c589fb12": {
85
+ "message": "Amalg (Coproduct)"
86
+ },
87
+ "an_error_occured_reading_the_file_ff48558b": {
88
+ "message": "เกิดข้อผิดพลาดขณะอ่านไฟล์"
89
+ },
90
+ "an_error_occurred_making_a_network_request_d1bda348": {
91
+ "message": "เกิดข้อผิดพลาดขณะทำคำขอผ่านเครือข่าย"
92
+ },
93
+ "an_error_occurred_uploading_your_media_71f1444d": {
94
+ "message": "เกิดข้อผิดพลาดขณะอัพโหลดสื่อของคุณ"
95
+ },
96
+ "and_7fcc2911": {
97
+ "message": "และ"
98
+ },
99
+ "angle_c5b4ec50": {
100
+ "message": "มุม"
101
+ },
102
+ "announcement_fb4cb645": {
103
+ "message": "ประกาศ"
104
+ },
105
+ "announcement_list_da155734": {
106
+ "message": "รายการประกาศ"
107
+ },
108
+ "announcements_a4b8ed4a": {
109
+ "message": "ประกาศ"
110
+ },
111
+ "apply_781a2546": {
112
+ "message": "ปรับใช้"
113
+ },
114
+ "apply_changes_to_all_instances_of_this_icon_maker__2642f466": {
115
+ "message": "ปรับใช้การเปลี่ยนแปลงกับส่วนรายการทั้งหมดของไอคอน Icon Maker (Icon Maker Icon) ในบทเรียน (Course) นี้"
116
+ },
117
+ "approaches_the_limit_893aeec9": {
118
+ "message": "กำลังจะถึงเกณฑ์ที่จำกัดไว้"
119
+ },
120
+ "approximately_e7965800": {
121
+ "message": "โดยประมาณ"
122
+ },
123
+ "apps_54d24a47": {
124
+ "message": "แอพ"
125
+ },
126
+ "are_you_sure_you_want_to_cancel_changes_you_made_m_c5210496": {
127
+ "message": "คุณแน่ใจว่าต้องการยกเลิกหรือไม่ การเปลี่ยนแปลงที่คุณทำขึ้นอาจไม่ถูกบันทึกไว้"
128
+ },
129
+ "arrows_464a3e54": {
130
+ "message": "ลูกศร"
131
+ },
132
+ "art_icon_8e1daad": {
133
+ "message": "ไอคอนอาร์ตเวิร์ค"
134
+ },
135
+ "aspect_ratio_will_be_preserved_cb5fdfb8": {
136
+ "message": "สัดส่วนจะถูกรักษาไว้ตามเดิม"
137
+ },
138
+ "assignment_976578a8": {
139
+ "message": "ภารกิจ"
140
+ },
141
+ "assignments_1e02582c": {
142
+ "message": "ภารกิจ"
143
+ },
144
+ "asterisk_82255584": {
145
+ "message": "ดอกจัน"
146
+ },
147
+ "attributes_963ba262": {
148
+ "message": "คุณลักษณะ"
149
+ },
150
+ "audio_and_video_recording_not_supported_please_use_5ce3f0d7": {
151
+ "message": "ไม่รองรับบันทึกเสียงและภาพ กรุณาใช้เบราเซอร์อื่น"
152
+ },
153
+ "audio_options_feb58e2c": {
154
+ "message": "ตัวเลือกเสียง"
155
+ },
156
+ "audio_options_tray_33a90711": {
157
+ "message": "ถาดตัวเลือกเสียง"
158
+ },
159
+ "audio_player_for_title_20cc70d": {
160
+ "message": "เครื่องเล่นเสียงสำหรับ { title }"
161
+ },
162
+ "auto_saved_content_exists_would_you_like_to_load_t_fee528f2": {
163
+ "message": "มีเนื้อหาบันทึกอัตโนมัติ ต้องการโหลดเนื้อหาบันทึกอัตโนมัติแทนหรือไม่"
164
+ },
165
+ "available_folders_694d0436": {
166
+ "message": "โฟลเดอร์ที่ใช้ได้"
167
+ },
168
+ "backslash_b2d5442d": {
169
+ "message": "แบ็คสแลช"
170
+ },
171
+ "bar_ec63ed6": {
172
+ "message": "แท่ง"
173
+ },
174
+ "basic_554cdc0a": {
175
+ "message": "พื้นฐาน"
176
+ },
177
+ "because_501841b": {
178
+ "message": "เนื่องจาก"
179
+ },
180
+ "below_81d4dceb": {
181
+ "message": "ด้านล่าง"
182
+ },
183
+ "beta_cb5f307e": {
184
+ "message": "เบต้า"
185
+ },
186
+ "big_circle_16b2e604": {
187
+ "message": "วงกลมใหญ่"
188
+ },
189
+ "binomial_coefficient_ea5b9bb7": {
190
+ "message": "สัมประสิทธิ์ทวินาม"
191
+ },
192
+ "black_4cb01371": {
193
+ "message": "ดำ"
194
+ },
195
+ "blue_daf8fea9": {
196
+ "message": "น้ำเงิน"
197
+ },
198
+ "bottom_15a2a9be": {
199
+ "message": "ล่างสุด"
200
+ },
201
+ "bottom_third_5f5fec1d": {
202
+ "message": "อันดับที่สามจากด้านล่าง"
203
+ },
204
+ "bowtie_5f9629e4": {
205
+ "message": "โบว์"
206
+ },
207
+ "brick_f2656265": {
208
+ "message": "บริค"
209
+ },
210
+ "c_2001_acme_inc_283f7f80": {
211
+ "message": "(c) 2001 Acme Inc."
212
+ },
213
+ "cancel_caeb1e68": {
214
+ "message": "ยกเลิก"
215
+ },
216
+ "cap_product_3a5265a6": {
217
+ "message": "ผล Cap"
218
+ },
219
+ "center_align_e68d9997": {
220
+ "message": "จัดกลาง"
221
+ },
222
+ "centered_dot_64d5e378": {
223
+ "message": "จุดตรงกลาง"
224
+ },
225
+ "centered_horizontal_dots_451c5815": {
226
+ "message": "จุดแนวนอนตรงกลาง"
227
+ },
228
+ "change_alt_text_92654906": {
229
+ "message": "เปลี่ยนข้อความเผื่อเลือก"
230
+ },
231
+ "change_heading_tag_to_paragraph_a61e3113": {
232
+ "message": "เปลี่ยนหมายเหตุกำกับหัวเรื่องสำหรับย่อหน้า"
233
+ },
234
+ "change_only_this_heading_s_level_903cc956": {
235
+ "message": "เปลี่ยนเฉพาะระดับหัวเรื่องนี้"
236
+ },
237
+ "change_text_color_1aecb912": {
238
+ "message": "เปลี่ยนสีข้อความ"
239
+ },
240
+ "changes_you_made_may_not_be_saved_4e8db973": {
241
+ "message": "การเปลี่ยนแปลงที่คุณทำขึ้นอาจไม่ถูกบันทึกไว้"
242
+ },
243
+ "characters_9d897d1c": {
244
+ "message": "ตัวอักษร"
245
+ },
246
+ "characters_no_spaces_485e5367": {
247
+ "message": "ตัวอักษร (ไม่มีเคาะว่าง)"
248
+ },
249
+ "check_accessibility_3c78211c": {
250
+ "message": "ตรวจสอบการใช้งาน"
251
+ },
252
+ "checking_for_accessibility_issues_fac18c6d": {
253
+ "message": "กำลังตรวจสอบปัญหาการใช้งาน"
254
+ },
255
+ "chi_54a32644": {
256
+ "message": "ชี่"
257
+ },
258
+ "choose_caption_file_9c45bc4e": {
259
+ "message": "เลือกไฟล์คำบรรยาย"
260
+ },
261
+ "choose_usage_rights_33683854": {
262
+ "message": "เลือกสิทธิ์การใช้งาน..."
263
+ },
264
+ "circle_484abe63": {
265
+ "message": "วงกลม"
266
+ },
267
+ "circle_unordered_list_9e3a0763": {
268
+ "message": "วงเลือกรายการที่ไม่ได้จัดลำดับ"
269
+ },
270
+ "clear_2084585f": {
271
+ "message": "ล้าง"
272
+ },
273
+ "clear_image_3213fe62": {
274
+ "message": "ล้างภาพ"
275
+ },
276
+ "clear_selected_file_82388e50": {
277
+ "message": "ล้างไฟล์ที่เลือก"
278
+ },
279
+ "clear_selected_file_filename_2fe8a58e": {
280
+ "message": "ล้างไฟล์ที่เลือก: { filename }"
281
+ },
282
+ "click_or_shift_click_for_the_html_editor_25d70bb4": {
283
+ "message": "คลิกหรือ shift-คลิก สำหรับ HTML Editor"
284
+ },
285
+ "click_to_embed_imagename_c41ea8df": {
286
+ "message": "คลิกเพื่อผนวก { imageName }"
287
+ },
288
+ "click_to_hide_preview_3c707763": {
289
+ "message": "คลิกเพื่อซ่อนการแสดงตัวอย่าง"
290
+ },
291
+ "click_to_insert_a_link_into_the_editor_c19613aa": {
292
+ "message": "คลิกเพื่อแทรกลิงค์ไปยังโปรแกรมแก้ไข"
293
+ },
294
+ "click_to_show_preview_faa27051": {
295
+ "message": "คลิกเพื่อแสดงตัวอย่าง"
296
+ },
297
+ "close_a_menu_or_dialog_also_returns_you_to_the_edi_739079e6": {
298
+ "message": "ปิดเมนูหรือกล่องโต้ตอบ และนำคุณกลับไปที่โปรแกรมแก้ไข"
299
+ },
300
+ "close_accessibility_checker_29d1c51e": {
301
+ "message": "ปิดระบบตรวจสอบการใช้งาน"
302
+ },
303
+ "close_d634289d": {
304
+ "message": "ปิด"
305
+ },
306
+ "closed_caption_file_must_be_less_than_maxkb_kb_5880f752": {
307
+ "message": "ไฟล์คำบรรยายแบบปิดได้จะต้องมีขนาดน้อยกว่า { maxKb } kb"
308
+ },
309
+ "closed_captions_subtitles_e6aaa016": {
310
+ "message": "คำบรรยายแบบซ่อนได้"
311
+ },
312
+ "clubs_suit_c1ffedff": {
313
+ "message": "คลับ (ชุด)"
314
+ },
315
+ "collaborations_5c56c15f": {
316
+ "message": "การประสานความร่วมมือ"
317
+ },
318
+ "collapse_to_hide_types_1ab46d2e": {
319
+ "message": "ย่อเพื่อซ่อน { types }"
320
+ },
321
+ "color_picker_6b359edf": {
322
+ "message": "ระบบเลือกสี "
323
+ },
324
+ "color_picker_colorname_selected_ad4cf400": {
325
+ "message": "ระบบเลือกสี ({ colorName } ที่เลือก)"
326
+ },
327
+ "column_e1ae5c64": {
328
+ "message": "คอลัมน์"
329
+ },
330
+ "column_group_1c062368": {
331
+ "message": "กลุ่มคอลัมน์"
332
+ },
333
+ "complex_numbers_a543d004": {
334
+ "message": "จำนวนเชิงซ้อน"
335
+ },
336
+ "computer_1d7dfa6f": {
337
+ "message": "คอมพิวเตอร์"
338
+ },
339
+ "congruent_5a244acd": {
340
+ "message": "สอดคล้อง"
341
+ },
342
+ "contains_311f37b7": {
343
+ "message": "ประกอบด้วย"
344
+ },
345
+ "content_1440204b": {
346
+ "message": "ข้อมูล"
347
+ },
348
+ "content_is_still_being_uploaded_if_you_continue_it_8f06d0cb": {
349
+ "message": "เนื้อหายังอัพโหลดอยู่ หากคุณดำเนินการต่อ ข้อมูลจะไม่ถูกผนวกอย่างถูกต้อง"
350
+ },
351
+ "content_subtype_5ce35e88": {
352
+ "message": "ประเภทเนื้อหาย่อย"
353
+ },
354
+ "content_type_2cf90d95": {
355
+ "message": "ประเภทเนื้อหา"
356
+ },
357
+ "coproduct_e7838082": {
358
+ "message": "Coproduct"
359
+ },
360
+ "copyright_holder_66ee111": {
361
+ "message": "ผู้ถือลิขสิทธิ์:"
362
+ },
363
+ "could_not_insert_content_itemtype_items_are_not_cu_638dfecd": {
364
+ "message": "ไม่สามารถแทรกเนื้อหา: \"{ itemType }\" ปัจจุบันไม่รองรับใน Canvas"
365
+ },
366
+ "count_40eced3b": {
367
+ "message": "จำนวน"
368
+ },
369
+ "count_plural_0_0_words_one_1_word_other_words_acf32eca": {
370
+ "message": "{ count, plural,\n =0 {0 คำ}\n one {1 คำ}\n other {# คำ}\n}"
371
+ },
21
372
  "count_plural_one_item_loaded_other_items_loaded_857023b7": {
22
- "message": "{ count, plural,\n other {}\n}"
373
+ "message": "{ count, plural,\n one {# รายการที่โหลด}\n other {# รายการที่โหลด}\n}"
374
+ },
375
+ "course_documents_104d76e0": {
376
+ "message": "เอกสารสำหรับบทเรียน"
377
+ },
378
+ "course_files_62deb8f8": {
379
+ "message": "ไฟล์บทเรียน"
380
+ },
381
+ "course_files_a31f97fc": {
382
+ "message": "ไฟล์บทเรียน"
383
+ },
384
+ "course_images_f8511d04": {
385
+ "message": "ภาพในบทเรียน"
386
+ },
387
+ "course_link_b369426": {
388
+ "message": "ลิงค์บทเรียน"
389
+ },
390
+ "course_links_b56959b9": {
391
+ "message": "ลิงค์บทเรียน"
392
+ },
393
+ "course_media_ec759ad": {
394
+ "message": "สื่อสำหรับบทเรียน"
395
+ },
396
+ "course_navigation_dd035109": {
397
+ "message": "การสืบค้นเนื้อหาบทเรียน"
398
+ },
399
+ "create_icon_110d6463": {
400
+ "message": "จัดทำไอคอน"
401
+ },
402
+ "create_icon_maker_icon_c716bffe": {
403
+ "message": "จัดทำไอคอน Icon Maker"
404
+ },
405
+ "creative_commons_license_725584ae": {
406
+ "message": "สิทธิ์ใช้งาน Creative Commons:"
407
+ },
408
+ "crop_image_41bf940c": {
409
+ "message": "ครอปภาพ"
410
+ },
411
+ "crop_image_807ebb08": {
412
+ "message": "ครอปภาพ"
413
+ },
414
+ "cup_product_14174434": {
415
+ "message": "ผล Cup"
416
+ },
417
+ "current_image_f16c249c": {
418
+ "message": "ภาพปัจจุบัน"
419
+ },
420
+ "current_link_945a47ee": {
421
+ "message": "ลิงค์ปัจจุบัน"
422
+ },
423
+ "current_volume_level_c55ab825": {
424
+ "message": "ระดับเสียงในปัจจุบัน"
425
+ },
426
+ "custom_6979cd81": {
427
+ "message": "กำหนดเอง"
428
+ },
429
+ "custom_width_and_height_pixels_946eea7c": {
430
+ "message": "ความกว้างและความสูงกำหนดเอง (พิกเซล)"
431
+ },
432
+ "cyan_c1d5f68a": {
433
+ "message": "ฟ้า"
434
+ },
435
+ "dagger_57e0f4e5": {
436
+ "message": "กริช"
437
+ },
438
+ "date_added_ed5ad465": {
439
+ "message": "วันที่ที่เพิ่ม"
440
+ },
441
+ "decorative_icon_9a7f3fc3": {
442
+ "message": "ไอคอนตกแต่ง"
443
+ },
444
+ "decorative_image_fde98579": {
445
+ "message": "ภาพตกแต่ง"
446
+ },
447
+ "decorative_type_upper_f2c95e3": {
448
+ "message": "{ TYPE_UPPER } สำหรับตกแต่ง"
449
+ },
450
+ "decrease_indent_d9cf469d": {
451
+ "message": "ลดการเยื้อง"
452
+ },
453
+ "deep_purple_bb3e2907": {
454
+ "message": "ม่วงเข้ม"
455
+ },
456
+ "default_bulleted_unordered_list_47079da8": {
457
+ "message": "รายการที่ไม่ได้จัดลำดับแบบมีหัวข้อย่อยเริ่มต้น"
458
+ },
459
+ "default_numerical_ordered_list_48dd3548": {
460
+ "message": "รายการที่จัดลำดับแบบมีตัวเลขกำกับเริ่มต้น"
461
+ },
462
+ "definite_integral_fe7ffed1": {
463
+ "message": "อินทริกรัลจำกัดเขต"
464
+ },
465
+ "degree_symbol_4a823d5f": {
466
+ "message": "สัญลักษณ์องศา"
467
+ },
468
+ "delimiters_4db4840d": {
469
+ "message": "ตัวคั่น"
470
+ },
471
+ "delta_53765780": {
472
+ "message": "เดลต้า"
473
+ },
474
+ "describe_the_icon_f6a18823": {
475
+ "message": "(ระบุรายละเอียดไอคอน)"
476
+ },
477
+ "describe_the_type_ff448da5": {
478
+ "message": "(ระบุรายละเอียด { TYPE })"
479
+ },
480
+ "describe_the_video_2fe8f46a": {
481
+ "message": "(ระบุรายละเอียดวิดีโอ)"
482
+ },
483
+ "description_436c48d7": {
484
+ "message": "รายละเอียด"
485
+ },
486
+ "details_98a31b68": {
487
+ "message": "รายละเอียด"
488
+ },
489
+ "diagonal_dots_7d71b57e": {
490
+ "message": "จุดแนวทแยง"
491
+ },
492
+ "diamond_b8dfe7ae": {
493
+ "message": "เพชร"
494
+ },
495
+ "diamonds_suit_526abaaf": {
496
+ "message": "ข้าวหลามตัด (ชุด)"
497
+ },
498
+ "digamma_258ade94": {
499
+ "message": "ไดแกมม่า"
500
+ },
501
+ "dimension_type_f5fa9170": {
502
+ "message": "ประเภทขนาด"
503
+ },
504
+ "dimensions_45ddb7b7": {
505
+ "message": "ขนาด"
506
+ },
507
+ "directionality_26ae9e08": {
508
+ "message": "ทิศทาง"
509
+ },
510
+ "directly_edit_latex_b7e9235b": {
511
+ "message": "แก้ไข LaTeX โดยตรง"
512
+ },
513
+ "disable_preview_222bdf72": {
514
+ "message": "ปิดใช้งานการแสดงตัวอย่าง"
515
+ },
516
+ "discussion_6719c51d": {
517
+ "message": "การพูดคุย"
518
+ },
519
+ "discussions_a5f96392": {
520
+ "message": "การพูดคุย"
521
+ },
522
+ "discussions_index_6c36ced": {
523
+ "message": "ดัชนีการพูดคุย"
524
+ },
525
+ "disjoint_union_e74351a8": {
526
+ "message": "ยูเนียนที่ไม่เกี่ยวพันกัน"
527
+ },
528
+ "display_options_315aba85": {
529
+ "message": "แสดงตัวเลือก"
530
+ },
531
+ "display_text_link_opens_in_a_new_tab_75e9afc9": {
532
+ "message": "แสดงลิงค์ข้อความ (เปิดในแท็บใหม่)"
533
+ },
534
+ "division_sign_72190870": {
535
+ "message": "สัญลักษณ์หาร"
536
+ },
537
+ "document_678cd7bf": {
538
+ "message": "เอกสาร"
539
+ },
540
+ "documents_81393201": {
541
+ "message": "เอกสาร"
542
+ },
543
+ "done_54e3d4b6": {
544
+ "message": "เสร็จสิ้น"
545
+ },
546
+ "double_dagger_faf78681": {
547
+ "message": "กริชคู่"
548
+ },
549
+ "down_5831a426": {
550
+ "message": "ลง"
551
+ },
552
+ "down_and_left_diagonal_arrow_40ef602c": {
553
+ "message": "ลูกศรลงและทแยงซ้าย"
554
+ },
555
+ "down_and_right_diagonal_arrow_6ea0f460": {
556
+ "message": "ลูกศรลงและทแยงขวา"
557
+ },
558
+ "download_filename_2baae924": {
559
+ "message": "ดาวน์โหลด { filename }"
560
+ },
561
+ "downward_arrow_cca52012": {
562
+ "message": "ลูกศรลง"
563
+ },
564
+ "downward_pointing_triangle_2a12a601": {
565
+ "message": "สามเหลี่ยมชี้ลง"
566
+ },
567
+ "drag_a_file_here_1bf656d5": {
568
+ "message": "ลากไฟล์ที่นี่"
569
+ },
570
+ "drag_and_drop_or_click_to_browse_your_computer_60772d6d": {
571
+ "message": "ลากและวาง หรือคลิกเพื่อเรียกดูในคอมพิวเตอร์ของคุณ"
572
+ },
573
+ "drag_handle_use_up_and_down_arrows_to_resize_e29eae5c": {
574
+ "message": "ลากที่มือจับ ใช้ลูกศรขึ้นและลงเพื่อปรับขนาด"
575
+ },
576
+ "due_multiple_dates_cc0ee3f5": {
577
+ "message": "ครบกำหนด: วันที่หลายรายการ"
578
+ },
579
+ "due_when_7eed10c6": {
580
+ "message": "ครบกำหนด: { when }"
581
+ },
582
+ "edit_alt_text_for_this_icon_instance_9c6fc5fd": {
583
+ "message": "แก้ไขข้อความเผื่อเลือกในรายการไอคอนนี้"
584
+ },
585
+ "edit_c5fbea07": {
586
+ "message": "แก้ไข"
587
+ },
588
+ "edit_course_link_5a5c3c59": {
589
+ "message": "แก้ไขลิงค์บทเรียน"
590
+ },
591
+ "edit_equation_f5279959": {
592
+ "message": "แก้ไขสมการ"
593
+ },
594
+ "edit_existing_icon_maker_icon_5d0ebb3f": {
595
+ "message": "แก้ไข ไอคอนในปัจจุบัน Maker Icon"
596
+ },
597
+ "edit_icon_2c6b0e91": {
598
+ "message": "ไอคอนแก้ไข"
599
+ },
600
+ "edit_link_7f53bebb": {
601
+ "message": "แก้ไขลิงค์"
602
+ },
603
+ "editor_statusbar_26ac81fc": {
604
+ "message": "แถบสถานะโปรแกรมแก้ไข"
605
+ },
606
+ "element_starting_with_start_91bf4c3b": {
607
+ "message": "องค์ประกอบเริ่มต้นด้วย { start }"
608
+ },
609
+ "embed_828fac4a": {
610
+ "message": "ผนวก"
611
+ },
612
+ "embed_code_314f1bd5": {
613
+ "message": "ผนวกรหัส"
614
+ },
615
+ "embed_content_from_external_tool_3397ad2d": {
616
+ "message": "แทรกเนื้อหาจากเครื่องมือจากภายนอก"
617
+ },
618
+ "embed_image_1080badc": {
619
+ "message": "ผนวกภาพ"
620
+ },
621
+ "embed_video_a97a64af": {
622
+ "message": "ผนวกวิดีโอ"
623
+ },
624
+ "embedded_content_aaeb4d3d": {
625
+ "message": "เนื้อหาที่ผนวก"
626
+ },
627
+ "empty_set_91a92df4": {
628
+ "message": "ชุดว่างเปล่า"
629
+ },
630
+ "encircled_dot_8f5e51c": {
631
+ "message": "จุดวงกลมล้อมรอบ"
632
+ },
633
+ "encircled_minus_72745096": {
634
+ "message": "เครื่องหมายลบวงกลมล้อมรอบ"
635
+ },
636
+ "encircled_plus_36d8d104": {
637
+ "message": "เครื่องหมายบวกวงกลมล้อมรอบ"
638
+ },
639
+ "encircled_times_5700096d": {
640
+ "message": "เวลาวงกลมล้อมรอบ"
641
+ },
642
+ "engineering_icon_f8f3cf43": {
643
+ "message": "ไอคอนวิศวกรรม"
644
+ },
645
+ "english_icon_25bfe845": {
646
+ "message": "ไอคอนอังกฤษ"
647
+ },
648
+ "enter_at_least_3_characters_to_search_4f037ee0": {
649
+ "message": "กรอกอย่างน้อย 3 ตัวอักษรเพื่อค้นหา"
650
+ },
651
+ "epsilon_54bb8afa": {
652
+ "message": "เอปไซลอน"
653
+ },
654
+ "epsilon_variant_d31f1e77": {
655
+ "message": "เอปไซลอน (ตัวแปร)"
656
+ },
657
+ "equals_sign_c51bdc58": {
658
+ "message": "สัญลักษณ์เท่ากับ"
659
+ },
660
+ "equation_1c5ac93c": {
661
+ "message": "สมการ"
662
+ },
663
+ "equation_editor_39fbc3f1": {
664
+ "message": "ตัวแก้ไขสมการ"
665
+ },
666
+ "equilibrium_6ff3040b": {
667
+ "message": "ความสมดุล"
668
+ },
669
+ "equivalence_class_7b0f11c0": {
670
+ "message": "ชั้นสมมูล"
671
+ },
672
+ "equivalent_identity_654b3ce5": {
673
+ "message": "เทียบเท่า (ไอเดนติตี้)"
674
+ },
675
+ "eta_b8828f99": {
676
+ "message": "Eta"
677
+ },
678
+ "exists_2e62bdaa": {
679
+ "message": "มีอยู่"
680
+ },
681
+ "exit_fullscreen_b7eb0aa4": {
682
+ "message": "ออกจากโหมดเต็มหน้าจอ"
683
+ },
684
+ "expand_preview_by_default_2abbf9f8": {
685
+ "message": "ขยายตัวอย่างเป็นค่าเริ่มต้น"
686
+ },
687
+ "expand_to_see_types_f5d29352": {
688
+ "message": "ขยายเพื่อดู { types }"
689
+ },
690
+ "external_link_d3f9e62a": {
691
+ "message": "ลิงค์จากภายนอก"
692
+ },
693
+ "external_tool_frame_70b32473": {
694
+ "message": "กรอบเครื่องมือจากภายนอก"
695
+ },
696
+ "external_tools_6e77821": {
697
+ "message": "เครื่องมือจากภายนอก"
698
+ },
699
+ "extra_large_b6cdf1ff": {
700
+ "message": "ใหญ่พิเศษ"
701
+ },
702
+ "extra_small_9ae33252": {
703
+ "message": "เล็กพิเศษ"
704
+ },
705
+ "extracurricular_icon_67c8ca42": {
706
+ "message": "ไอคอนกิจกรรมนอกหลักสูตร"
707
+ },
708
+ "f_function_fe422d65": {
709
+ "message": "F (ฟังก์ชั่น)"
710
+ },
711
+ "failed_getting_file_contents_e9ea19f4": {
712
+ "message": "ไม่สามารถสืบค้นเนื้อหาของไฟล์"
713
+ },
714
+ "failed_to_retrieve_content_from_external_tool_5899c213": {
715
+ "message": "ไม่สามารถเรียกค้นเนื้อหาจากเครื่องมือภายนอก"
716
+ },
717
+ "file_name_8fd421ff": {
718
+ "message": "ชื่อไฟล์"
719
+ },
720
+ "file_storage_quota_exceeded_b7846cd1": {
721
+ "message": "เกินโควต้าพื้นที่จัดเก็บไฟล์"
722
+ },
723
+ "file_url_c12b64be": {
724
+ "message": "URL ไฟล์"
725
+ },
726
+ "filename_file_icon_602eb5de": {
727
+ "message": "ไอคอนไฟล์ { filename }"
728
+ },
729
+ "filename_image_preview_6cef8f26": {
730
+ "message": "แสดงตัวอย่างภาพ { filename }"
731
+ },
732
+ "filename_text_preview_e41ca2d8": {
733
+ "message": "แสดงตัวอย่างข้อความ { filename }"
734
+ },
735
+ "files_c300e900": {
736
+ "message": "ไฟล์"
737
+ },
738
+ "files_index_af7c662b": {
739
+ "message": "ดัชนีไฟล์"
740
+ },
741
+ "finish_bc343002": {
742
+ "message": "เสร็จสิ้น"
743
+ },
744
+ "fix_heading_hierarchy_f60884c4": {
745
+ "message": "แก้ไขโครงสร้างหัวเรื่อง"
746
+ },
747
+ "flat_music_76d5a5c3": {
748
+ "message": "แฟลท (ดนตรี)"
749
+ },
750
+ "focus_element_options_toolbar_18d993e": {
751
+ "message": "ปรับโฟกัสแถบเครื่องมือตัวเลือกส่วนประกอบ"
752
+ },
753
+ "folder_tree_fbab0726": {
754
+ "message": "โครงสร้างโฟลเดอร์"
755
+ },
756
+ "for_all_b919f972": {
757
+ "message": "สำหรับทั้งหมด"
758
+ },
759
+ "format_4247a9c5": {
760
+ "message": "รูปแบบ"
761
+ },
762
+ "format_as_a_list_142210c3": {
763
+ "message": "กำหนดรูปแบบเป็นรายการ"
764
+ },
765
+ "formatting_5b143aa8": {
766
+ "message": "การกำหนดรูปแบบ"
767
+ },
768
+ "forward_slash_3f90f35e": {
769
+ "message": "ฟอร์วอร์ดสแลช"
770
+ },
771
+ "found_auto_saved_content_3f6e4ca5": {
772
+ "message": "พบเนื้อหาบันทึกอัตโนมัติ"
773
+ },
774
+ "found_count_plural_0_results_one_result_other_resu_46aeaa01": {
775
+ "message": "พบ { count, plural,\n =0 {# ผลลัพธ์}\n one {# ผลลัพธ์}\n other {# ผลลัพธ์}\n}"
776
+ },
777
+ "fraction_41bac7af": {
778
+ "message": "สัดส่วน"
779
+ },
780
+ "fullscreen_873bf53f": {
781
+ "message": "เต็มหน้าจอ"
782
+ },
783
+ "gamma_1767928": {
784
+ "message": "แกมม่า"
785
+ },
786
+ "generating_preview_45b53be0": {
787
+ "message": "กำลังจัดทำตัวอย่างจัดแสดง..."
788
+ },
789
+ "gif_png_format_images_larger_than_size_kb_are_not__7af3bdbd": {
790
+ "message": "ฟอร์แมตภาพ GIF/PNG ขนาดใหญ่กว่า { size } KB ยังไม่รองรับในปัจจุบัน"
791
+ },
792
+ "go_to_the_editor_s_menubar_e6674c81": {
793
+ "message": "ไปที่แถบเมนูของโปรแกรมแก้ไข"
794
+ },
795
+ "go_to_the_editor_s_toolbar_a5cb875f": {
796
+ "message": "ไปที่แถบเครื่องมือของโปรแกรมแก้ไข"
797
+ },
798
+ "grades_a61eba0a": {
799
+ "message": "เกรด"
800
+ },
801
+ "greater_than_e98af662": {
802
+ "message": "มากกว่า"
803
+ },
804
+ "greater_than_or_equal_b911949a": {
805
+ "message": "มากกว่าหรือเท่ากับ"
806
+ },
807
+ "greek_65c5b3f7": {
808
+ "message": "กรีก"
809
+ },
810
+ "green_15af4778": {
811
+ "message": "เขียว"
812
+ },
813
+ "grey_a55dceff": {
814
+ "message": "เทา"
815
+ },
816
+ "group_documents_8bfd6ae6": {
817
+ "message": "เอกสารของกลุ่ม"
818
+ },
819
+ "group_files_4324f3df": {
820
+ "message": "ไฟล์ของกลุ่ม"
821
+ },
822
+ "group_files_82e5dcdb": {
823
+ "message": "ไฟล์ของกลุ่ม"
824
+ },
825
+ "group_images_98e0ac17": {
826
+ "message": "ภาพกลุ่ม"
827
+ },
828
+ "group_isomorphism_45b1458c": {
829
+ "message": "ไอโซมอร์ฟิกของกลุ่ม"
830
+ },
831
+ "group_link_63e626b3": {
832
+ "message": "ลิงค์ของกลุ่ม"
833
+ },
834
+ "group_links_9493129e": {
835
+ "message": "ลิงค์ของกลุ่ม"
836
+ },
837
+ "group_media_2f3d128a": {
838
+ "message": "สื่อของกลุ่ม"
839
+ },
840
+ "group_navigation_99f191a": {
841
+ "message": "การสืบค้นเนื้อหาของกลุ่ม"
842
+ },
843
+ "h_bar_bb94deae": {
844
+ "message": "แท่ง H"
845
+ },
846
+ "hat_ea321e35": {
847
+ "message": "หมวก"
848
+ },
849
+ "header_column_f27433cb": {
850
+ "message": "คอลัมน์หัวเรื่อง"
851
+ },
852
+ "header_row_and_column_ec5b9ec": {
853
+ "message": "แถวและคอลัมน์หัวเรื่อง"
854
+ },
855
+ "header_row_f33eb169": {
856
+ "message": "แถวหัวเรื่อง"
857
+ },
858
+ "heading_2_5b84eed2": {
859
+ "message": "หัวเรื่อง 2"
860
+ },
861
+ "heading_3_2c83de44": {
862
+ "message": "หัวเรื่อง 3"
863
+ },
864
+ "heading_4_b2e74be7": {
865
+ "message": "หัวเรื่อง 4"
866
+ },
867
+ "heading_levels_should_not_be_skipped_3947c0e0": {
868
+ "message": "ไม่ควรข้ามระดับหัวเรื่อง"
869
+ },
870
+ "heading_starting_with_start_42a3e7f9": {
871
+ "message": "หัวเรื่องเริ่มต้นด้วย { start }"
872
+ },
873
+ "headings_should_not_contain_more_than_120_characte_3c0e0cb3": {
874
+ "message": "หัวเรื่องไม่ควรยาวมากกว่า 120 ตัวอักษร"
875
+ },
876
+ "health_icon_8d292eb5": {
877
+ "message": "ไอคอนสุขภาพ"
878
+ },
879
+ "hearts_suit_e50e04ca": {
880
+ "message": "หัวใจ (ชุด)"
881
+ },
882
+ "height_69b03e15": {
883
+ "message": "ความสูง"
884
+ },
885
+ "hexagon_d8468e0d": {
886
+ "message": "หกเหลี่ยม"
887
+ },
888
+ "hide_description_bfb5502e": {
889
+ "message": "ซ่อนรายละเอียด"
890
+ },
891
+ "hide_title_description_caf092ef": {
892
+ "message": "ซ่อนรายละเอียด { title }"
893
+ },
894
+ "highlight_an_element_to_activate_the_element_optio_60e1e56b": {
895
+ "message": "แรเงาองค์ประกอบเพื่อเปิดใช้แถบเครื่องมือตัวเลือกองค์ประกอบ"
896
+ },
897
+ "home_351838cd": {
898
+ "message": "หน้าหลัก"
899
+ },
900
+ "html_code_editor_fd967a44": {
901
+ "message": "โปรแกรมแก้ไขรหัส HTML"
902
+ },
903
+ "html_editor_fb2ab713": {
904
+ "message": "HTML Editor"
905
+ },
906
+ "i_have_obtained_permission_to_use_this_file_6386f087": {
907
+ "message": "ฉันได้รับสิทธิ์อนุญาตให้ใช้ไฟล์นี้"
908
+ },
909
+ "i_hold_the_copyright_71ee91b1": {
910
+ "message": "ฉันถือลิขสิทธิ์"
911
+ },
912
+ "icon_215a1dc6": {
913
+ "message": "ไอคอน"
914
+ },
915
+ "icon_8168b2f8": {
916
+ "message": "ไอคอน"
917
+ },
918
+ "icon_color_b86dd6d6": {
919
+ "message": "สีไอคอน"
920
+ },
921
+ "icon_maker_icons_cc560f7e": {
922
+ "message": "ไอคอน Icon Maker"
923
+ },
924
+ "icon_options_7e32746e": {
925
+ "message": "ตัวเลือกไอคอน"
926
+ },
927
+ "icon_options_tray_2b407977": {
928
+ "message": "ถาดตัวเลือกไอคอน"
929
+ },
930
+ "icon_preview_1782a1d9": {
931
+ "message": "แสดงตัวอย่างไอคอน"
932
+ },
933
+ "icon_shape_30b61e7": {
934
+ "message": "รูปทรงไอคอน"
935
+ },
936
+ "icon_size_9353edea": {
937
+ "message": "ขนาดไอคอน"
938
+ },
939
+ "if_left_empty_link_text_will_display_as_course_lin_2a34eedb": {
940
+ "message": "หากปล่อยลิงค์ว่างไว้ ข้อความจะปรากฏเป็นชื่อลิงค์บทเรียน"
941
+ },
942
+ "if_usage_rights_are_required_the_file_will_not_pub_841e276e": {
943
+ "message": "หากต้องมีสิทธิ์การใช้งาน (Usage Rights) ไฟล์จะไม่ถูกเผยแพร่จนกว่าจะเปิดใช้งานในเพจไฟล์ (Files)"
944
+ },
945
+ "if_you_do_not_select_usage_rights_now_this_file_wi_14e07ab5": {
946
+ "message": "หากคุณไม่เลือกสิทธิ์การใช้งาน ไฟล์นี้จะถูกเลิกเผยแพร่หลังจากอัพโหลดแล้ว"
947
+ },
948
+ "image_8ad06": {
949
+ "message": "ภาพ"
950
+ },
951
+ "image_c1c98202": {
952
+ "message": "ภาพ"
953
+ },
954
+ "image_filenames_should_not_be_used_as_the_alt_attr_bcfd7780": {
955
+ "message": "ชื่อไฟล์ภาพไม่ควรใช้เป็นคุณลักษณะเผื่อเลือกเพื่อระบุเนื้อหาในภาพ"
956
+ },
957
+ "image_options_5412d02c": {
958
+ "message": "ตัวเลือกภาพ"
959
+ },
960
+ "image_options_tray_90a46006": {
961
+ "message": "ถาดตัวเลือกภาพ"
962
+ },
963
+ "image_to_crop_3a34487d": {
964
+ "message": "ภาพที่จะครอป"
965
+ },
966
+ "image_with_filename_file_aacd7180": {
967
+ "message": "ภาพพร้อมชื่อไฟล์ { file }"
968
+ },
969
+ "images_7ce26570": {
970
+ "message": "ภาพ"
971
+ },
972
+ "images_should_include_an_alt_attribute_describing__b86d6a86": {
973
+ "message": "ภาพควรมีคุณลักษณะเผื่อเลือกระบุเนื้อหาของภาพ"
974
+ },
975
+ "imaginary_portion_of_complex_number_2c733ffa": {
976
+ "message": "สัดส่วนจินตภาพ (ของจำนวนเชิงซ้อน)"
977
+ },
978
+ "in_element_of_19ca2f33": {
979
+ "message": "ใน (องค์ประกอบของ)"
980
+ },
981
+ "increase_indent_6af90f7c": {
982
+ "message": "เพิ่มการเยื้อง"
983
+ },
984
+ "indefinite_integral_6623307e": {
985
+ "message": "อินทริกรัลไม่จำกัดเขต"
986
+ },
987
+ "indigo_2035fc55": {
988
+ "message": "คราม"
989
+ },
990
+ "inference_fed5c960": {
991
+ "message": "การอนุมาน"
992
+ },
993
+ "infinity_7a10f206": {
994
+ "message": "อนันต์"
995
+ },
996
+ "insert_593145ef": {
997
+ "message": "ใบกัด"
998
+ },
999
+ "insert_link_6dc23cae": {
1000
+ "message": "แทรกลิงค์"
1001
+ },
1002
+ "insert_math_equation_57c6e767": {
1003
+ "message": "แทรกสมการทางคณิตศาสตร์"
1004
+ },
1005
+ "integers_336344e1": {
1006
+ "message": "จำนวนเต็ม"
1007
+ },
1008
+ "intersection_cd4590e4": {
1009
+ "message": "ตัดกัน"
1010
+ },
1011
+ "invalid_entry_f7d2a0f5": {
1012
+ "message": "รายการไม่ถูกต้อง"
1013
+ },
1014
+ "invalid_file_c11ba11": {
1015
+ "message": "ไฟล์ไม่ถูกต้อง"
1016
+ },
1017
+ "invalid_file_type_881cc9b2": {
1018
+ "message": "ประเภทไฟล์ไม่ถูกต้อง"
1019
+ },
1020
+ "invalid_url_cbde79f": {
1021
+ "message": "URL ไม่ถูกต้อง"
1022
+ },
1023
+ "iota_11c932a9": {
1024
+ "message": "Iota"
1025
+ },
1026
+ "issue_num_total_f94536cf": {
1027
+ "message": "ประเด็น { num }/{ total }"
1028
+ },
1029
+ "kappa_2f14c816": {
1030
+ "message": "Kappa"
1031
+ },
1032
+ "kappa_variant_eb64574b": {
1033
+ "message": "Kappa (ตัวแปร)"
1034
+ },
1035
+ "keyboard_shortcuts_ed1844bd": {
1036
+ "message": "ชอร์ตคัทแป้นพิมพ์"
1037
+ },
1038
+ "keyboards_navigate_to_links_using_the_tab_key_two__5fab8c82": {
1039
+ "message": "แป้นพิมพ์สืบค้นลิงค์ต่าง ๆ โดยใช้ปุ่ม Tab ลิงค์สองตัวที่ติดกันที่นำไปยังปลายทางเดียวกันอาจทำให้ผู้ใช้แป้นพิมพ์เกิดความสับสน"
1040
+ },
1041
+ "lambda_4f602498": {
1042
+ "message": "แลมบ์ด้า"
1043
+ },
1044
+ "language_arts_icon_a798b0f8": {
1045
+ "message": "ไอคอนศิลปศาสตร์ด้านภาษา"
1046
+ },
1047
+ "languages_icon_9d20539": {
1048
+ "message": "ไอคอนภาษา"
1049
+ },
1050
+ "large_9c5e80e7": {
1051
+ "message": "ใหญ่"
1052
+ },
1053
+ "learn_more_about_adjacent_links_2cb9762c": {
1054
+ "message": "เรียนรู้เพิ่มเติมเกี่ยวกับลิงค์ที่ติดกัน"
1055
+ },
1056
+ "learn_more_about_color_contrast_c019dfb9": {
1057
+ "message": "เรียนรู้เพิ่มเติมเกี่ยวกับคอนทราสต์สี"
1058
+ },
1059
+ "learn_more_about_organizing_page_headings_8a7caa2e": {
1060
+ "message": "เรียนรู้เพิ่มเติมเกี่ยวกับการกำหนดโครงสร้างหัวเรื่องเพจ"
1061
+ },
1062
+ "learn_more_about_proper_page_heading_structure_d2959f2d": {
1063
+ "message": "เรียนรู้เพิ่มเติมเกี่ยวกับโครงสร้างหัวเรื่องหน้าเพจที่เหมาะสม"
1064
+ },
1065
+ "learn_more_about_table_headers_5f5ee13": {
1066
+ "message": "เรียนรู้เพิ่มเติมเกี่ยวกับหัวตาราง"
1067
+ },
1068
+ "learn_more_about_using_alt_text_for_images_5698df9a": {
1069
+ "message": "เรียนรู้เพิ่มเติมเกี่ยวกับการใช้ข้อความสำรองสำหรับภาพ"
1070
+ },
1071
+ "learn_more_about_using_captions_with_tables_36fe496f": {
1072
+ "message": "เรียนรู้เพิ่มเติมเกี่ยวกับการใช้คำบรรยายกับตาราง"
1073
+ },
1074
+ "learn_more_about_using_filenames_as_alt_text_264286af": {
1075
+ "message": "เรียนรู้เพิ่มเติมเกี่ยวกับการใช้ชื่อไฟล์เป็นข้อความเผื่อเลือก"
1076
+ },
1077
+ "learn_more_about_using_lists_4e6eb860": {
1078
+ "message": "เรียนรู้เพิ่มเติมเกี่ยวกับการใช้รายการ"
1079
+ },
1080
+ "learn_more_about_using_scope_attributes_with_table_20df49aa": {
1081
+ "message": "เรียนรู้เพิ่มเติมเกี่ยวกับการใช้คุณลักษณะขอบเขตกับตาราง"
1082
+ },
1083
+ "leave_as_is_4facfe55": {
1084
+ "message": "ปล่อยไว้ตามเดิม"
1085
+ },
1086
+ "left_3ea9d375": {
1087
+ "message": "ซ้าย"
1088
+ },
1089
+ "left_align_43d95491": {
1090
+ "message": "จัดซ้าย"
1091
+ },
1092
+ "left_angle_bracket_c87a6d07": {
1093
+ "message": "วงเล็บมุมซ้าย"
1094
+ },
1095
+ "left_arrow_4fde1a64": {
1096
+ "message": "ลูกศรซ้าย"
1097
+ },
1098
+ "left_arrow_with_hook_5bfcad93": {
1099
+ "message": "ลูกศรซ้ายพร้อมขอเกี่ยว"
1100
+ },
1101
+ "left_ceiling_ee9dd88a": {
1102
+ "message": "บนซ้าย"
1103
+ },
1104
+ "left_curly_brace_1726fb4": {
1105
+ "message": "ปีกกาซ้าย"
1106
+ },
1107
+ "left_downard_harpoon_arrow_1d7b3d2e": {
1108
+ "message": "ลูกศรฉมวกล่างซ้าย"
1109
+ },
1110
+ "left_floor_29ac2274": {
1111
+ "message": "ล่างซ้าย"
1112
+ },
1113
+ "left_to_right_e9b4fd06": {
1114
+ "message": "ซ้ายไปขวา"
1115
+ },
1116
+ "left_upward_harpoon_arrow_3a562a96": {
1117
+ "message": "ลูกศรฉมวกบนซ้าย"
1118
+ },
1119
+ "leftward_arrow_1e4765de": {
1120
+ "message": "ลูกศรซ้าย"
1121
+ },
1122
+ "leftward_pointing_triangle_d14532ce": {
1123
+ "message": "สามเหลี่ยมชี้ซ้าย"
1124
+ },
1125
+ "less_than_a26c0641": {
1126
+ "message": "น้อยกว่า"
1127
+ },
1128
+ "less_than_or_equal_be5216cb": {
1129
+ "message": "น้อยกว่าหรือเท่ากับ"
1130
+ },
1131
+ "library_icon_ae1e54cf": {
1132
+ "message": "ไอคอนห้องสมุด"
1133
+ },
1134
+ "light_blue_5374f600": {
1135
+ "message": "ฟ้า"
1136
+ },
1137
+ "link_7262adec": {
1138
+ "message": "ลิงค์"
1139
+ },
1140
+ "link_options_a16b758b": {
1141
+ "message": "ตัวเลือกลิงค์"
1142
+ },
1143
+ "link_type_linktypemessage_c6d26815": {
1144
+ "message": "ประเภทลิงค์: { linkTypeMessage }"
1145
+ },
1146
+ "link_with_text_starting_with_start_b3fcbe71": {
1147
+ "message": "ลิงค์ที่มีข้อความเริ่มต้นด้วย { start }"
1148
+ },
1149
+ "links_14b70841": {
1150
+ "message": "ลิงค์"
1151
+ },
1152
+ "links_to_an_external_site_de74145d": {
1153
+ "message": "ลิงค์ไปยังไซต์ภายนอก"
1154
+ },
1155
+ "lists_should_be_formatted_as_lists_f862de8d": {
1156
+ "message": "รายการควรกำหนดรูปแบบเป็นแสดงรายการ"
1157
+ },
1158
+ "load_more_35d33c7": {
1159
+ "message": "โหลดเพิ่มเติม"
1160
+ },
1161
+ "loading_25990131": {
1162
+ "message": "กำลังโหลด..."
1163
+ },
1164
+ "loading_bde52856": {
1165
+ "message": "กำลังโหลด"
1166
+ },
1167
+ "loading_closed_captions_subtitles_failed_95ceef47": {
1168
+ "message": "โหลดคำบรรยายแบบซ่อนได้ล้มเหลว"
1169
+ },
1170
+ "loading_external_tool_d839042c": {
1171
+ "message": "กำลังโหลดเครื่องมือจากภายนอก"
1172
+ },
1173
+ "loading_failed_b3524381": {
1174
+ "message": "โหลดล้มเหลว..."
1175
+ },
1176
+ "loading_failed_e6a9d8ef": {
1177
+ "message": "โหลดล้มเหลว..."
1178
+ },
1179
+ "loading_folders_d8b5869e": {
1180
+ "message": "กำลังโหลดโฟลเดอร์"
1181
+ },
1182
+ "loading_placeholder_for_filename_792ef5e8": {
1183
+ "message": "กำลังโหลดตัวกำกับตำแหน่งสำหรับ { fileName }"
1184
+ },
1185
+ "loading_please_wait_d276220a": {
1186
+ "message": "กำลังโหลด กรุณารอสักครู่"
1187
+ },
1188
+ "loading_preview_9f077aa1": {
1189
+ "message": "กำลังโหลดตัวอย่าง"
1190
+ },
1191
+ "locked_762f138b": {
1192
+ "message": "ล็อคแล้ว"
1193
+ },
1194
+ "logical_equivalence_76fca396": {
1195
+ "message": "สมมูลเชิงตรรกศาสตร์"
1196
+ },
1197
+ "logical_equivalence_short_8efd7b4f": {
1198
+ "message": "สมมูลเชิงตรรกศาสตร์ (สั้น)"
1199
+ },
1200
+ "logical_equivalence_short_and_thick_1e1f654d": {
1201
+ "message": "สมมูลเชิงตรรกะศาสตร์ (สั้นและหนา)"
1202
+ },
1203
+ "logical_equivalence_thick_662dd3f2": {
1204
+ "message": "สมมูลเชิงตรรกศาสตร์ (หนา)"
1205
+ },
1206
+ "low_horizontal_dots_cc08498e": {
1207
+ "message": "จุดแนวนอนช่วงต่ำ"
1208
+ },
1209
+ "magenta_4a65993c": {
1210
+ "message": "ม่วงอมแดง"
1211
+ },
1212
+ "maps_to_e5ef7382": {
1213
+ "message": "แผนที่ไป"
1214
+ },
1215
+ "math_icon_ad4e9d03": {
1216
+ "message": "ไอคอนคณิตศาสตร์"
1217
+ },
1218
+ "media_af190855": {
1219
+ "message": "มีเดีย"
1220
+ },
1221
+ "media_file_is_processing_please_try_again_later_58a6d49": {
1222
+ "message": "ไฟล์มีเดียกำลังประมวลผล กรุณาลองใหม่อีกครั้งในภายหลัง"
1223
+ },
1224
+ "media_title_2112243b": {
1225
+ "message": "ชื่อสื่อ"
1226
+ },
1227
+ "medium_5a8e9ead": {
1228
+ "message": "ปานกลาง"
1229
+ },
1230
+ "merge_links_2478df96": {
1231
+ "message": "ผสานลิงค์"
1232
+ },
1233
+ "mic_a7f3d311": {
1234
+ "message": "ไมโครโฟน"
1235
+ },
1236
+ "microphone_disabled_15c83130": {
1237
+ "message": "ไมโครโฟนปิดใช้งาน"
1238
+ },
1239
+ "middle_27dc1d5": {
1240
+ "message": "ตรงกลาง"
1241
+ },
1242
+ "minimize_file_preview_da911944": {
1243
+ "message": "ย่อการแสดงตัวอย่างไฟล์"
1244
+ },
1245
+ "minimize_video_20aa554b": {
1246
+ "message": "ย่อวิดีโอ"
1247
+ },
1248
+ "minus_fd961e2e": {
1249
+ "message": "ลบ"
1250
+ },
1251
+ "minus_plus_3461f637": {
1252
+ "message": "ลบ/บวก"
1253
+ },
1254
+ "misc_3b692ea7": {
1255
+ "message": "เบ็ดเตล็ด"
1256
+ },
1257
+ "miscellaneous_e9818229": {
1258
+ "message": "เบ็ดเตล็ด"
1259
+ },
1260
+ "module_90d9fd32": {
1261
+ "message": "หน่วยการเรียน"
1262
+ },
1263
+ "modules_c4325335": {
1264
+ "message": "หน่วยการเรียน"
1265
+ },
1266
+ "moving_image_to_crop_directionword_6f66cde2": {
1267
+ "message": "กำลังเคลื่อนย้ายภาพเพื่อครอป { directionWord }"
1268
+ },
1269
+ "mu_37223b8b": {
1270
+ "message": "Mu"
1271
+ },
1272
+ "multi_color_image_63d7372f": {
1273
+ "message": "ภาพหลายสี"
1274
+ },
1275
+ "multiplication_sign_15f95c22": {
1276
+ "message": "สัญลักษณ์คูณ"
1277
+ },
1278
+ "music_icon_4db5c972": {
1279
+ "message": "ไอคอนดนตรี"
1280
+ },
1281
+ "must_be_at_least_percentage_22e373b6": {
1282
+ "message": "จะต้องเท่ากับอย่างน้อย { percentage }%"
1283
+ },
1284
+ "must_be_at_least_width_x_height_px_41dc825e": {
1285
+ "message": "จะต้องเท่ากับอย่างน้อย { width } x { height }px"
1286
+ },
1287
+ "my_files_2f621040": {
1288
+ "message": "ไฟล์ของฉัน"
1289
+ },
1290
+ "n_th_root_9991a6e4": {
1291
+ "message": "รากที่ n"
1292
+ },
1293
+ "nabla_1e216d25": {
1294
+ "message": "Nabla"
1295
+ },
1296
+ "name_1aed4a1b": {
1297
+ "message": "ชื่อ"
1298
+ },
1299
+ "name_color_ceec76ff": {
1300
+ "message": "{ name } ({ color })"
1301
+ },
1302
+ "natural_music_54a70258": {
1303
+ "message": "ธรรมชาติ (ดนตรี)"
1304
+ },
1305
+ "natural_numbers_3da07060": {
1306
+ "message": "จำนวนธรรมชาติ"
1307
+ },
1308
+ "navigate_through_the_menu_or_toolbar_415a4e50": {
1309
+ "message": "ดูรายการเมนูหรือแถบเครื่องมือ"
1310
+ },
1311
+ "navigation_ee9af92d": {
1312
+ "message": "การสืบค้น"
1313
+ },
1314
+ "nested_greater_than_d852e60d": {
1315
+ "message": "เชิงซ้อนมากกว่า"
1316
+ },
1317
+ "nested_less_than_27d17e58": {
1318
+ "message": "เชิงซ้อนน้อยกว่า"
1319
+ },
1320
+ "new_quiz_34aacba6": {
1321
+ "message": "แบบทดสอบใหม่"
1322
+ },
1323
+ "next_40e12421": {
1324
+ "message": "ถัดไป"
1325
+ },
1326
+ "no_accessibility_issues_were_detected_f8d3c875": {
1327
+ "message": "ไม่พบปัญหาในการใช้งาน"
1328
+ },
1329
+ "no_announcements_created_yet_c44a94f4": {
1330
+ "message": "ยังไม่ได้จัดทำประกาศ"
1331
+ },
1332
+ "no_announcements_found_20185afc": {
1333
+ "message": "ไม่พบประกาศ"
1334
+ },
1335
+ "no_assignments_created_yet_1b236d87": {
1336
+ "message": "ยังไม่ได้จัดทำภารกิจ"
1337
+ },
1338
+ "no_assignments_found_79e46d7f": {
1339
+ "message": "ไม่พบภารกิจ"
1340
+ },
1341
+ "no_changes_to_save_d29f6e91": {
1342
+ "message": "ไม่มีการเปลี่ยนแปลงที่จะบันทึก"
1343
+ },
1344
+ "no_discussions_created_yet_ff99abe3": {
1345
+ "message": "ยังไม่ได้จัดทำส่วนการพูดคุย"
1346
+ },
1347
+ "no_discussions_found_9284063b": {
1348
+ "message": "ไม่พบส่วนการพูดคุย"
1349
+ },
1350
+ "no_e16d9132": {
1351
+ "message": "ไม่"
1352
+ },
1353
+ "no_file_chosen_9a880793": {
1354
+ "message": "ไม่มีไฟล์ที่เลือก"
1355
+ },
1356
+ "no_headers_9bc7dc7f": {
1357
+ "message": "ไม่มีหัวเรื่อง"
1358
+ },
1359
+ "no_modules_created_yet_c71b6d4d": {
1360
+ "message": "ยังไม่ได้จัดทำหน่วยการเรียน"
1361
+ },
1362
+ "no_modules_found_2df43a40": {
1363
+ "message": "ไม่พบหน่วยการเรียน"
1364
+ },
1365
+ "no_pages_created_yet_c379fa6e": {
1366
+ "message": "ยังไม่ได้จัดทำเพจ"
1367
+ },
1368
+ "no_pages_found_6799350": {
1369
+ "message": "ไม่พบเพจ"
1370
+ },
1371
+ "no_preview_is_available_for_this_file_f940114a": {
1372
+ "message": "ไม่มีตัวอย่างแสดงสำหรับไฟล์นี้"
1373
+ },
1374
+ "no_quizzes_created_yet_1a2370b9": {
1375
+ "message": "ยังไม่ได้จัดทำแบบทดสอบ"
1376
+ },
1377
+ "no_quizzes_found_c80c537a": {
1378
+ "message": "ไม่พบแบบทดสอบ"
1379
+ },
1380
+ "no_results_940393cf": {
1381
+ "message": "ไม่มีผลลัพธ์"
1382
+ },
1383
+ "no_results_found_for_filterterm_ad1b04c8": {
1384
+ "message": "ไม่พบผลลัพธ์สำหรับ { filterTerm }"
1385
+ },
1386
+ "no_video_1ed00b26": {
1387
+ "message": "ไม่มีวิดีโอ"
1388
+ },
1389
+ "none_3b5e34d2": {
1390
+ "message": "ไม่มี"
1391
+ },
1392
+ "none_selected_b93d56d2": {
1393
+ "message": "ไม่ได้เลือกรายการใด"
1394
+ },
1395
+ "not_equal_6e2980e6": {
1396
+ "message": "ไม่เท่ากับ"
1397
+ },
1398
+ "not_in_not_an_element_of_fb1ffb54": {
1399
+ "message": "ไม่อยู่ใน (ไม่ใช่องค์ประกอบของ)"
1400
+ },
1401
+ "not_negation_1418ebb8": {
1402
+ "message": "ไม่ใช่ (นิเสธ)"
1403
+ },
1404
+ "not_subset_dc2b5e84": {
1405
+ "message": "ไม่ใช่ซับเซ็ต"
1406
+ },
1407
+ "not_subset_strict_23d282bf": {
1408
+ "message": "ไม่ใช่ซับเซ็ต (เข้มงวด)"
1409
+ },
1410
+ "not_superset_5556b913": {
1411
+ "message": "ไม่ใช่ซุปเปอร์เซ็ต"
1412
+ },
1413
+ "not_superset_strict_24e06f36": {
1414
+ "message": "ไม่ใช่ซุปเปอร์เซ็ต (เข้มงวด)"
1415
+ },
1416
+ "nu_1c0f6848": {
1417
+ "message": "Nu"
1418
+ },
1419
+ "octagon_e48be9f": {
1420
+ "message": "แปดเหลี่ยม"
1421
+ },
1422
+ "olive_6a3e4d6b": {
1423
+ "message": "โอลีฟ"
1424
+ },
1425
+ "omega_8f2c3463": {
1426
+ "message": "โอเมก้า"
1427
+ },
1428
+ "one_of_the_following_styles_must_be_added_to_save__1de769aa": {
1429
+ "message": "จะต้องเพิ่มรูปแบบอย่างหนึ่งอย่างใดต่อไปนี้เพื่อบันทึกไอคอน: สีไอคอน (Icon Color) ขนาดกรอบ (Outline Size) ข้อความไอคอน (Icon Text) หรือภาพ (Image)"
1430
+ },
1431
+ "one_or_more_files_failed_to_paste_please_try_uploa_7fa39dd3": {
1432
+ "message": "ไฟล์บางส่วนไม่สามารถวางได้ กรุณาลองอัพโหลดหรือลากและวางไฟล์"
1433
+ },
1434
+ "open_circle_e9bd069": {
1435
+ "message": "วงกลมกลวง"
1436
+ },
1437
+ "open_this_keyboard_shortcuts_dialog_9658b83a": {
1438
+ "message": "เปิดกล่องโต้ตอบชอร์ตคัทแป้นพิมพ์นี้"
1439
+ },
1440
+ "open_title_application_fd624fc5": {
1441
+ "message": "เปิดแอพพลิเคชั่น { title }"
1442
+ },
1443
+ "operators_a2ef9a93": {
1444
+ "message": "ผู้ดำเนินการ"
1445
+ },
1446
+ "or_9b70ccaa": {
1447
+ "message": "หรือ"
1448
+ },
1449
+ "orange_81386a62": {
1450
+ "message": "ส้ม"
1451
+ },
1452
+ "ordered_and_unordered_lists_cfadfc38": {
1453
+ "message": "รายการที่จัดลำดับและไม่ได้จัดลำดับ"
1454
+ },
1455
+ "other_editor_shortcuts_may_be_found_at_404aba4a": {
1456
+ "message": "ชอร์ตคัทโปรแกรมแก้ไขอื่น ๆ สามารถค้นหาได้จาก"
1457
+ },
1458
+ "outline_color_3ef2cea7": {
1459
+ "message": "สีเค้าโครง"
1460
+ },
1461
+ "outline_size_a6059a21": {
1462
+ "message": "ขนาดเค้าโครง"
1463
+ },
1464
+ "p_is_not_a_valid_protocol_which_must_be_ftp_http_h_adf13fc2": {
1465
+ "message": "{ p } ไม่ใช่โปรโตคอลที่ถูกต้อง โดยจะต้องเป็น ftp, http, https, mailto, skype, tel หรือสามารถเว้นว่าง"
1466
+ },
1467
+ "page_50c4823d": {
1468
+ "message": "หน้า"
1469
+ },
1470
+ "pages_e5414c2c": {
1471
+ "message": "เพจ"
1472
+ },
1473
+ "paragraph_5e5ad8eb": {
1474
+ "message": "ย่อหน้า"
1475
+ },
1476
+ "paragraph_starting_with_start_a59923f8": {
1477
+ "message": "ย่อหน้าที่เริ่มต้นด้วย { start }"
1478
+ },
1479
+ "parallel_d55d6e38": {
1480
+ "message": "คู่ขนาน"
1481
+ },
1482
+ "partial_derivative_4a9159df": {
1483
+ "message": "บางส่วน (อนุพันธ์)"
1484
+ },
1485
+ "paste_5963d1c1": {
1486
+ "message": "วาง"
1487
+ },
1488
+ "pause_12af3bb4": {
1489
+ "message": "หยุดชั่วคราว"
1490
+ },
1491
+ "pentagon_17d82ea3": {
1492
+ "message": "ห้าเหลี่ยม"
1493
+ },
1494
+ "people_b4ebb13c": {
1495
+ "message": "บุคคล"
1496
+ },
1497
+ "percentage_34ab7c2c": {
1498
+ "message": "เปอร์เซ็นต์"
1499
+ },
1500
+ "percentage_must_be_a_number_8033c341": {
1501
+ "message": "เปอร์เซ็นต์จะต้องเป็นตัวเลข"
1502
+ },
1503
+ "performing_arts_icon_f3497486": {
1504
+ "message": "ไอคอนนาฏศิลป์"
1505
+ },
1506
+ "perpendicular_7c48ede4": {
1507
+ "message": "แนวดิ่ง"
1508
+ },
1509
+ "phi_4ac33b6d": {
1510
+ "message": "ฟาย"
1511
+ },
1512
+ "phi_variant_c9bb3ac5": {
1513
+ "message": "ฟาย (ตัวแปร)"
1514
+ },
1515
+ "physical_education_icon_d7dffd3e": {
1516
+ "message": "ไอคอนพลศึกษา"
1517
+ },
1518
+ "pi_dc4f0bd8": {
1519
+ "message": "พาย"
1520
+ },
1521
+ "pi_variant_10f5f520": {
1522
+ "message": "พาย (ตัวแปร)"
1523
+ },
1524
+ "pink_68ad45cb": {
1525
+ "message": "ชมพู"
1526
+ },
1527
+ "pixels_52ece7d1": {
1528
+ "message": "พิกเซล"
1529
+ },
1530
+ "play_1a47eaa7": {
1531
+ "message": "เปิดเล่น"
1532
+ },
1533
+ "play_media_comment_35257210": {
1534
+ "message": "เปิดเล่นความเห็นแบบสื่อ"
1535
+ },
1536
+ "play_media_comment_by_name_from_createdat_c230123d": {
1537
+ "message": "เปิดเล่นความเห็นแบบสื่อโดย { name } จาก { createdAt }"
1538
+ },
1539
+ "please_allow_canvas_to_access_your_microphone_and__dc2c3079": {
1540
+ "message": "กรุณาให้อนุญาต Canvas ในการใช้งานไมโครโฟนและเว็บแคมของคุณ"
1541
+ },
1542
+ "plus_d43cd4ec": {
1543
+ "message": "บวก"
1544
+ },
1545
+ "plus_minus_f8be2e83": {
1546
+ "message": "บวก/ลบ"
1547
+ },
1548
+ "posted_when_a578f5ab": {
1549
+ "message": "โพสต์เมื่อ: { when }"
1550
+ },
1551
+ "power_set_4f26f316": {
1552
+ "message": "พาวเวอร์เซ็ต"
1553
+ },
1554
+ "precedes_196b9aef": {
1555
+ "message": "นำหน้า"
1556
+ },
1557
+ "precedes_equal_20701e84": {
1558
+ "message": "นำหน้าเท่ากับ"
1559
+ },
1560
+ "preformatted_d0670862": {
1561
+ "message": "กำหนดรูปแบบไว้ล่วงหน้า"
1562
+ },
1563
+ "prev_f82cbc48": {
1564
+ "message": "ก่อนหน้า"
1565
+ },
1566
+ "preview_53003fd2": {
1567
+ "message": "แสดงตัวอย่าง"
1568
+ },
1569
+ "preview_a3f8f854": {
1570
+ "message": "แสดงตัวอย่าง"
1571
+ },
1572
+ "preview_in_overlay_ed772c46": {
1573
+ "message": "แสดงตัวอย่างเป็นโอเวอร์เลย์"
1574
+ },
1575
+ "preview_inline_9787330": {
1576
+ "message": "แสดงตัวอย่างในแถว"
1577
+ },
1578
+ "prime_917ea60e": {
1579
+ "message": "เฉพาะ"
1580
+ },
1581
+ "prime_numbers_13464f61": {
1582
+ "message": "จำนวนเฉพาะ"
1583
+ },
1584
+ "product_39cf144f": {
1585
+ "message": "ผล"
1586
+ },
1587
+ "proportional_f02800cc": {
1588
+ "message": "ตามสัดส่วน"
1589
+ },
1590
+ "protocol_must_be_ftp_http_https_mailto_skype_tel_o_73beb4f8": {
1591
+ "message": "โปรโตคอลจะต้องเป็น ftp, http, https, mailto, skype, tel หรือสามารถเว้นว่าง"
1592
+ },
1593
+ "psi_e3f5f0f7": {
1594
+ "message": "Psi"
1595
+ },
1596
+ "published_c944a23d": {
1597
+ "message": "เผยแพร่แล้ว"
1598
+ },
1599
+ "published_when_302d8e23": {
1600
+ "message": "เผยแพร่แล้ว: { when }"
1601
+ },
1602
+ "pumpkin_904428d5": {
1603
+ "message": "ฟักทอง"
1604
+ },
1605
+ "purple_7678a9fc": {
1606
+ "message": "ม่วง"
1607
+ },
1608
+ "quaternions_877024e0": {
1609
+ "message": "ควอเทอร์เนียน"
1610
+ },
1611
+ "quiz_e0dcce8f": {
1612
+ "message": "แบบทดสอบ"
1613
+ },
1614
+ "quizzes_7e598f57": {
1615
+ "message": "คำถาม"
1616
+ },
1617
+ "rational_numbers_80ddaa4a": {
1618
+ "message": "จำนวนตรรกะ"
1619
+ },
1620
+ "real_numbers_7c99df94": {
1621
+ "message": "จำนวนจริง"
1622
+ },
1623
+ "real_portion_of_complex_number_7dad33b5": {
1624
+ "message": "ส่วนจริง (ของจำนวนเชิงซ้อน)"
1625
+ },
1626
+ "record_7c9448b": {
1627
+ "message": "บันทึก"
1628
+ },
1629
+ "record_upload_media_5fdce166": {
1630
+ "message": "บันทึก/อัพโหลดสื่อ"
1631
+ },
1632
+ "recording_98da6bda": {
1633
+ "message": "กำลังบันทึก"
1634
+ },
1635
+ "red_8258edf3": {
1636
+ "message": "แดง"
1637
+ },
1638
+ "relationships_6602af70": {
1639
+ "message": "ความสัมพันธ์"
1640
+ },
1641
+ "religion_icon_246e0be1": {
1642
+ "message": "ไอคอนศาสนา"
1643
+ },
1644
+ "remove_heading_style_5fdc8855": {
1645
+ "message": "ลบรูปแบบหัวเรื่อง"
1646
+ },
1647
+ "remove_link_d1f2f4d0": {
1648
+ "message": "ลบลิงค์"
1649
+ },
1650
+ "replace_e61834a7": {
1651
+ "message": "แทนที่"
1652
+ },
1653
+ "reset_95a81614": {
1654
+ "message": "รีเซ็ต"
1655
+ },
1656
+ "resize_ec83d538": {
1657
+ "message": "ปรับขนาด"
1658
+ },
1659
+ "restore_auto_save_deccd84b": {
1660
+ "message": "กู้คืนที่บันทึกอัตโนมัติหรือไม่"
1661
+ },
1662
+ "reverse_turnstile_does_not_yield_7558be06": {
1663
+ "message": "Reverse Turnstile (มีเกิดผลลัพธ์)"
1664
+ },
1665
+ "rho_a0244a36": {
1666
+ "message": "โร"
1667
+ },
1668
+ "rho_variant_415245cd": {
1669
+ "message": "โร (ตัวแปร)"
1670
+ },
1671
+ "rich_content_editor_2708ef21": {
1672
+ "message": "Rich Content Editor"
1673
+ },
1674
+ "rich_text_area_press_oskey_f8_for_rich_content_edi_c2f651d": {
1675
+ "message": "พื้นที่ Rich Text กด { OSKey }+F8 สำหรับชอร์ตคัท Rich Content Editor"
1676
+ },
1677
+ "right_71ffdc4d": {
1678
+ "message": "ขวา"
1679
+ },
1680
+ "right_align_39e7a32a": {
1681
+ "message": "จัดขวา"
1682
+ },
1683
+ "right_angle_bracket_d704e2d6": {
1684
+ "message": "วงเล็บมุมขวา"
1685
+ },
1686
+ "right_arrow_35e0eddf": {
1687
+ "message": "ลูกศรขวา"
1688
+ },
1689
+ "right_arrow_with_hook_29d92d31": {
1690
+ "message": "ลูกศรขวาพร้อมขอเกี่ยว"
1691
+ },
1692
+ "right_ceiling_839dc744": {
1693
+ "message": "บนขวา"
1694
+ },
1695
+ "right_curly_brace_5159d5cd": {
1696
+ "message": "ปีกกาขวา"
1697
+ },
1698
+ "right_downward_harpoon_arrow_d71b114f": {
1699
+ "message": "ลูกศรฉมวกล่างขวา"
1700
+ },
1701
+ "right_floor_5392d5cf": {
1702
+ "message": "ล่างขวา"
1703
+ },
1704
+ "right_to_left_9cfb092a": {
1705
+ "message": "ขวาไปซ้าย"
1706
+ },
1707
+ "right_upward_harpoon_arrow_f5a34c73": {
1708
+ "message": "ลูกศรฉมวกบนขวา"
1709
+ },
1710
+ "rightward_arrow_32932107": {
1711
+ "message": "ลูกศรชี้ขวา"
1712
+ },
1713
+ "rightward_pointing_triangle_60330f5c": {
1714
+ "message": "สามเหลี่ยมชี้ขวา"
1715
+ },
1716
+ "rotate_image_90_degrees_2ab77c05": {
1717
+ "message": "หมุน -90 องศา"
1718
+ },
1719
+ "rotate_image_90_degrees_6c92cd42": {
1720
+ "message": "หมุน 90 องศา"
1721
+ },
1722
+ "rotation_9699c538": {
1723
+ "message": "หมุนองศา"
1724
+ },
1725
+ "row_fc0944a7": {
1726
+ "message": "แถว"
1727
+ },
1728
+ "row_group_979f5528": {
1729
+ "message": "กลุ่มแถว"
1730
+ },
1731
+ "sadly_the_pretty_html_editor_is_not_keyboard_acces_50da7665": {
1732
+ "message": "น่าเสียดาย HTML Editor ที่สวยงามไม่สามารถใช้งานผ่านแป้นพิมพ์ ใช้งาน HTML Editor แบบไม่ปรุงแต่งที่นี่"
1733
+ },
1734
+ "save_11a80ec3": {
1735
+ "message": "บันทึก"
1736
+ },
1737
+ "save_copy_ca63944e": {
1738
+ "message": "บันทึกสำเนา"
1739
+ },
1740
+ "save_media_cb9e786e": {
1741
+ "message": "บันทึกสื่อ"
1742
+ },
1743
+ "saved_icon_maker_icons_df86e2a1": {
1744
+ "message": "ไอคอน Icon Maker ที่บันทึกไว้"
1745
+ },
1746
+ "screen_readers_cannot_determine_what_is_displayed__6a5842ab": {
1747
+ "message": "ตัวอ่านหน้าจอไม่สามารถพิจารณาได้ว่าอะไรที่ปรากฏอยู่ในภาพหากไม่มีข้อความเผื่อเลือก และชื่อไฟล์มักเป็นชุกอักขระที่ไม่มีความหมายเฉพาะประกอบไปด้วยตัวเลขและตัวอักษรที่ไม่เกี่ยวข้องกับบริบทหรือความหมายแฝง"
1748
+ },
1749
+ "screen_readers_cannot_determine_what_is_displayed__6f1ea667": {
1750
+ "message": "ตัวอ่านหน้าจอไม่สามารถระบุเนื้อหาที่จัดแสดงในภาพหากไม่ีข้อความเผื่อเลือกเพื่อระบุบริบทและความหมายของภาพ ข้อความเผื่อเลือกควรกระชับและเข้าใจได้ง่าย"
1751
+ },
1752
+ "screen_readers_cannot_determine_what_is_displayed__a57e6723": {
1753
+ "message": "ตัวอ่านหน้าจอไม่สามารถระบุเนื้อหาที่จัดแสดงในภาพหากไม่ีข้อความเผื่อเลือกเพื่อระบุบริบทและความหมายของภาพ"
1754
+ },
1755
+ "screen_readers_cannot_interpret_tables_without_the_bd861652": {
1756
+ "message": "ตัวอ่านหน้าจอไม่สามารถแปลความหมายตารางโดยไม่มีโครงสร้างที่ถูกต้อง หัวเรื่องตารางระบุทิศทางและขอบเขตของเนื้อหา"
1757
+ },
1758
+ "screen_readers_cannot_interpret_tables_without_the_e62912d5": {
1759
+ "message": "ตัวอ่านหน้าจอไม่สามารถแปลความหมายตารางโดยไม่มีโครงสร้างที่ถูกต้อง คำบรรยายตารางระบุบริบทและรายละเอียดทั่วไปเกี่ยวกับตารางดังกล่าว"
1760
+ },
1761
+ "screen_readers_cannot_interpret_tables_without_the_f0bdec0f": {
1762
+ "message": "ตัวอ่านหน้าจอไม่สามารถแปลความหมายตารางโดยไม่มีโครงสร้างที่ถูกต้อง หัวตารางกำหนดทิศทางและภาพรวมของเนื้อหา"
1763
+ },
1764
+ "script_l_42a7b254": {
1765
+ "message": "สคริปต์ L"
1766
+ },
1767
+ "search_280d00bd": {
1768
+ "message": "ค้นหา"
1769
+ },
1770
+ "select_audio_source_21043cd5": {
1771
+ "message": "เลือกแหล่งข้อมูลเสียง"
1772
+ },
1773
+ "select_crop_shape_d441feeb": {
1774
+ "message": "เลือกรูปทรงการครอป"
1775
+ },
1776
+ "select_language_7c93a900": {
1777
+ "message": "เลือกภาษา"
1778
+ },
1779
+ "select_video_source_1b5c9dbe": {
1780
+ "message": "เลือกแหล่งข้อมูลวิดีโอ"
1781
+ },
1782
+ "selected_274ce24f": {
1783
+ "message": "เลือกแล้ว"
1784
+ },
1785
+ "selected_linkfilename_c093b1f2": {
1786
+ "message": "{ linkFileName } ที่เลือก"
1787
+ },
1788
+ "selection_b52c4c5e": {
1789
+ "message": "การเลือกรายการ"
1790
+ },
1791
+ "set_header_scope_8c548f40": {
1792
+ "message": "กำหนดขอบเขตหัวเรื่อง"
1793
+ },
1794
+ "set_minus_b46e9b88": {
1795
+ "message": "กำหนดค่าลบ"
1796
+ },
1797
+ "set_table_header_cfab13a0": {
1798
+ "message": "กำหนดหัวเรื่องตาราง"
1799
+ },
1800
+ "sharp_music_ab956814": {
1801
+ "message": "ชาร์ป (ดนตรี)"
1802
+ },
1803
+ "shift_arrows_4d5785fe": {
1804
+ "message": "SHIFT+ลูกศร"
1805
+ },
1806
+ "shift_o_to_open_the_pretty_html_editor_55ff5a31": {
1807
+ "message": "Shift-O เพื่อเปิด HTML Editor ที่สวยงาม"
1808
+ },
1809
+ "shortcut_911d6255": {
1810
+ "message": "ชอร์ตคัท"
1811
+ },
1812
+ "show_audio_options_b489926b": {
1813
+ "message": "แสดงตัวเลือกเสียง"
1814
+ },
1815
+ "show_image_options_1e2ecc6b": {
1816
+ "message": "แสดงตัวเลือกสำหรับภาพ"
1817
+ },
1818
+ "show_link_options_545338fd": {
1819
+ "message": "แสดงตัวเลือกสำหรับลิงค์"
1820
+ },
1821
+ "show_studio_media_options_a0c748c6": {
1822
+ "message": "แสดงตัวเลือกมีเดีย Studio"
1823
+ },
1824
+ "show_video_options_6ed3721a": {
1825
+ "message": "แสดงตัวเลือกสำหรับวิดีโอ"
1826
+ },
1827
+ "sighted_users_browse_web_pages_quickly_looking_for_1d4db0c1": {
1828
+ "message": "ผู้ใช้ที่อ่านได้เองจะเรียกดูหน้าเว็บได้อย่างรวดเร็ว ทั้งหัวเรื่องตัวใหญ่และตัวหนา ผู้ใช้ตัวอ่านหน้าจอจะต้องอาศัยหัวเรื่องเพื่อทำความเข้าใจบริบทแวดล้อม หัวเรื่องควรใช้โครงสร้างที่เหมาะสม"
1829
+ },
1830
+ "sighted_users_browse_web_pages_quickly_looking_for_ade806f5": {
1831
+ "message": "ผู้ใช้ที่อ่านได้เองจะเรียกดูหน้าเว็บได้อย่างรวดเร็ว ทั้งหัวเรื่องตัวใหญ่และตัวหนา ผู้ใช้ตัวอ่านหน้าจอจะต้องอาศัยหัวเรื่องเพื่อทำความเข้าใจบริบทแวดล้อม หัวเรื่องควรกระชับและอยู่ภายในโครงสร้างที่เหมาะสม"
1832
+ },
1833
+ "sigma_5c35e553": {
1834
+ "message": "ซิกม่า"
1835
+ },
1836
+ "sigma_variant_8155625": {
1837
+ "message": "ซิกม่า (ตัวแปร)"
1838
+ },
1839
+ "single_color_image_4e5d4dbc": {
1840
+ "message": "ภาพสีเดียว"
1841
+ },
1842
+ "single_color_image_color_95fa9a87": {
1843
+ "message": "สีเดี่ยวสำหรับภาพสี"
1844
+ },
1845
+ "size_b30e1077": {
1846
+ "message": "ขนาด"
1847
+ },
1848
+ "size_of_caption_file_is_greater_than_the_maximum_m_bff5f86e": {
1849
+ "message": "ขนาดของไฟล์คำบรรยายจะต้องมากกว่าขนาดสูงสุดที่อนุญาตที่ { max } kb"
1850
+ },
1851
+ "small_b070434a": {
1852
+ "message": "เล็ก"
1853
+ },
1854
+ "solid_circle_9f061dfc": {
1855
+ "message": "วงกลมทึบ"
1856
+ },
1857
+ "something_went_wrong_89195131": {
1858
+ "message": "มีบางอย่างผิดปกติ"
1859
+ },
1860
+ "something_went_wrong_accessing_your_webcam_6643b87e": {
1861
+ "message": "มีบางอย่างผิดพลาดในการใช้งานเว็บแคมของคุณ"
1862
+ },
1863
+ "something_went_wrong_and_i_don_t_know_what_to_show_e0c54ec8": {
1864
+ "message": "มีบางอย่างผิดพลาดและเราไม่รู้ว่าจะแสดงอะไรให้กับคุณ"
1865
+ },
1866
+ "something_went_wrong_check_your_connection_reload__c7868286": {
1867
+ "message": "มีบางอย่างผิดปกติ ตรวจสอบการเชื่อมต่อของคุณ โหลดหน้าเพจใหม่แล้วลองใหม่อีกครั้ง"
1868
+ },
1869
+ "something_went_wrong_d238c551": {
1870
+ "message": "มีบางอย่างผิดปกติ"
1871
+ },
1872
+ "something_went_wrong_while_sharing_your_screen_8de579e5": {
1873
+ "message": "มีบางอย่างผิดพลาดขณะแชร์หน้าจอของคุณ"
1874
+ },
1875
+ "sort_by_e75f9e3e": {
1876
+ "message": "จัดเรียงจาก"
1877
+ },
1878
+ "spades_suit_b37020c2": {
1879
+ "message": "โพธิ์ดำ (ชุด)"
1880
+ },
1881
+ "square_511eb3b3": {
1882
+ "message": "จัตุรัส"
1883
+ },
1884
+ "square_cap_9ec88646": {
1885
+ "message": "Cap สี่เหลี่ยม"
1886
+ },
1887
+ "square_cup_b0665113": {
1888
+ "message": "Cup สี่เหลี่ยม"
1889
+ },
1890
+ "square_root_e8bcbc60": {
1891
+ "message": "รากที่สอง"
1892
+ },
1893
+ "square_root_symbol_d0898a53": {
1894
+ "message": "สัญลักษณ์รากที่สอง"
1895
+ },
1896
+ "square_subset_17be67cb": {
1897
+ "message": "ซับเซ็ตของสแควร์"
1898
+ },
1899
+ "square_subset_strict_7044e84f": {
1900
+ "message": "ซับเซ็ตของสแควร์ (เข้มงวด)"
1901
+ },
1902
+ "square_superset_3be8dae1": {
1903
+ "message": "ซุปเปอร์เซ็ตของสแควร์"
1904
+ },
1905
+ "square_superset_strict_fa4262e4": {
1906
+ "message": "ซุปเปอร์เซ็ตของสแควร์ (เข้มงวด)"
1907
+ },
1908
+ "square_unordered_list_b15ce93b": {
1909
+ "message": "ทำกรอบรายการที่ไม่ได้จัดลำดับ"
1910
+ },
1911
+ "star_8d156e09": {
1912
+ "message": "Star"
1913
+ },
1914
+ "start_over_f7552aa9": {
1915
+ "message": "เริ่มใหม่"
1916
+ },
1917
+ "start_recording_9a65141a": {
1918
+ "message": "เริ่มบันทึก"
1919
+ },
1920
+ "steel_blue_14296f08": {
1921
+ "message": "สตีลบลู"
1922
+ },
1923
+ "studio_media_options_ee504361": {
1924
+ "message": "ตัวเลือกมีเดีย Studio"
1925
+ },
1926
+ "studio_media_options_tray_cfb94654": {
1927
+ "message": "ถาดตัวเลือกมีเดีย Studio"
1928
+ },
1929
+ "styles_2aa721ef": {
1930
+ "message": "รูปแบบ"
1931
+ },
1932
+ "submit_a3cc6859": {
1933
+ "message": "ส่ง"
1934
+ },
1935
+ "subscript_59744f96": {
1936
+ "message": "ตัวห้อย"
1937
+ },
1938
+ "subset_19c1a92f": {
1939
+ "message": "ซับเซ็ต"
1940
+ },
1941
+ "subset_strict_8d8948d6": {
1942
+ "message": "ซับเซ็ต (เข้มงวด)"
1943
+ },
1944
+ "succeeds_9cc31be9": {
1945
+ "message": "สัมฤทธิ์"
1946
+ },
1947
+ "succeeds_equal_158e8c3a": {
1948
+ "message": "สัมฤทธิ์เท่ากับ"
1949
+ },
1950
+ "sum_b0842d31": {
1951
+ "message": "ผลรวม"
1952
+ },
1953
+ "superscript_8cb349a2": {
1954
+ "message": "ตัวยก"
1955
+ },
1956
+ "superscript_and_subscript_37f94a50": {
1957
+ "message": "ตัวยกและตัวห้อย"
1958
+ },
1959
+ "superset_c4db8a7a": {
1960
+ "message": "ซุปเปอร์เซ็ต"
1961
+ },
1962
+ "superset_strict_c77dd6d2": {
1963
+ "message": "ซุปเปอร์เซ็ต (เข้มงวด)"
1964
+ },
1965
+ "supported_file_types_srt_or_webvtt_7d827ed": {
1966
+ "message": "ประเภทไฟล์ที่รองรับ: SRT หรือ WebVTT"
1967
+ },
1968
+ "switch_to_pretty_html_editor_a3cee15f": {
1969
+ "message": "สลับไปที่ HTML Editor ที่สวยงาม"
1970
+ },
1971
+ "switch_to_raw_html_editor_f970ae1a": {
1972
+ "message": "สลับไปที่ Raw HTML Editor"
1973
+ },
1974
+ "switch_to_the_html_editor_146dfffd": {
1975
+ "message": "สลับไปที่ HTML Editor"
1976
+ },
1977
+ "switch_to_the_rich_text_editor_63c1ecf6": {
1978
+ "message": "สลับไปที่ Rich Text Editor"
1979
+ },
1980
+ "syllabus_f191f65b": {
1981
+ "message": "หลักสูตร"
1982
+ },
1983
+ "system_audio_allowed_b2508f8c": {
1984
+ "message": "อนุญาตเสียงในระบบ"
1985
+ },
1986
+ "system_audio_disabled_c177bd13": {
1987
+ "message": "ปิดใช้งานเสียงในระบบ"
1988
+ },
1989
+ "tab_arrows_4cf5abfc": {
1990
+ "message": "แท็บ/ลูกศร"
1991
+ },
1992
+ "table_header_starting_with_start_ffcabba6": {
1993
+ "message": "หัวเรื่องตารางเริ่มต้นด้วย { start }"
1994
+ },
1995
+ "table_starting_with_start_e7232848": {
1996
+ "message": "ตารางเริ่มต้นด้วย { start }"
1997
+ },
1998
+ "tables_headers_should_specify_scope_5abf3a8e": {
1999
+ "message": "หัวเรื่องตารางควรระบุขอบเขต"
2000
+ },
2001
+ "tables_should_include_a_caption_describing_the_con_e91e78fc": {
2002
+ "message": "ตารางควรครอบคลุมคำบรรยายระบุเนื้อหาของตาราง"
2003
+ },
2004
+ "tables_should_include_at_least_one_header_48779eac": {
2005
+ "message": "ตารางควรมีหัวเรื่องอย่างน้อยหนึ่งรายการ"
2006
+ },
2007
+ "tau_880974b7": {
2008
+ "message": "เทา"
2009
+ },
2010
+ "teal_f729a294": {
2011
+ "message": "ทีล"
2012
+ },
2013
+ "text_7f4593da": {
2014
+ "message": "ข้อความ"
2015
+ },
2016
+ "text_background_color_16e61c3f": {
2017
+ "message": "สีพื้นหลังข้อความ"
2018
+ },
2019
+ "text_color_acf75eb6": {
2020
+ "message": "สีข้อความ"
2021
+ },
2022
+ "text_is_difficult_to_read_without_sufficient_contr_69e62bd6": {
2023
+ "message": "ข้อความยากในการอ่านหากไม่มีความเปรียบต่างที่ชัดเจนระหว่างข้อความและพื้นหลัง โดยเฉพาะสำหรับผู้ที่สายตาไม่ดี"
2024
+ },
2025
+ "text_larger_than_18pt_or_bold_14pt_should_display__5c364db6": {
2026
+ "message": "ข้อความที่ใหญ่กว่า 18pt (หรือตัวหนา 14pt) ควรมีระดับความเปรียบต่างขั้นต่ำที่ 3:1"
2027
+ },
2028
+ "text_optional_384f94f7": {
2029
+ "message": "ข้อความ (เผื่อเลือก)"
2030
+ },
2031
+ "text_position_8df8c162": {
2032
+ "message": "ตำแหน่งข้อความ"
2033
+ },
2034
+ "text_size_887c2f6": {
2035
+ "message": "ขนาดข้อความ"
2036
+ },
2037
+ "text_smaller_than_18pt_or_bold_14pt_should_display_aaffb22b": {
2038
+ "message": "ข้อความที่เล็กกว่า 18pt (หรือตัวหนา 14pt) ควรมีระดับความเปรียบต่างขั้นต่ำที่ 4.5:1"
2039
+ },
2040
+ "the_document_preview_is_currently_being_processed__7d9ea135": {
2041
+ "message": "การแสดงตัวอย่างเอกสารปัจจุบันกำลังประมวลผลอยู่ กรุณาลองใหม่อีกครั้งในภายหลัง"
2042
+ },
2043
+ "the_first_heading_on_a_page_should_be_an_h2_859089f2": {
2044
+ "message": "หัวเรื่องแรกในเพจควรเป็น H2"
2045
+ },
2046
+ "the_following_content_is_partner_provided_ed1da756": {
2047
+ "message": "เนื้อหาต่อไปนี้จัดหาโดยพันธมิตรของเรา"
2048
+ },
2049
+ "the_material_is_in_the_public_domain_279c39a3": {
2050
+ "message": "สื่ออยู่ในโดเมนสาธารณะ"
2051
+ },
2052
+ "the_material_is_licensed_under_creative_commons_3242cb5e": {
2053
+ "message": "สื่อได้รับอนุญาตภายใต้ ใช้งานร่วมกันเพื่อการสร้างสรรค์"
2054
+ },
2055
+ "the_material_is_subject_to_an_exception_e_g_fair_u_a39c8ca2": {
2056
+ "message": "สื่อมีข้อยกเว้น เช่น การใช้งานอย่างเหมาะสม สิทธิ์ในการเสนอราคา หรืออื่น ๆ ภายใต้กฎหมายลิขสิทธิ์ที่เกี่ยวข้อง"
2057
+ },
2058
+ "the_preceding_content_is_partner_provided_d753928c": {
2059
+ "message": "เนื้อหาก่อนหน้าไม่ได้จัดหาโดยผู้ใช้"
2060
+ },
2061
+ "the_pretty_html_editor_is_not_keyboard_accessible__d6d5d2b": {
2062
+ "message": "HTML Editor ที่สวยงามไม่สามารถใช้งานผ่านแป้นพิมพ์ กด Shift-O เพื่อเปิด HTML Editor แบบไม่ปรุงแต่ง"
2063
+ },
2064
+ "therefore_d860e024": {
2065
+ "message": "ดังนั้น"
2066
+ },
2067
+ "theta_ce2d2350": {
2068
+ "message": "เทตา"
2069
+ },
2070
+ "theta_variant_fff6da6f": {
2071
+ "message": "เทตา (ตัวแปร)"
2072
+ },
2073
+ "thick_downward_arrow_b85add4c": {
2074
+ "message": "ลูกศรลงแบบหนา"
2075
+ },
2076
+ "thick_left_arrow_d5f3e925": {
2077
+ "message": "ลูกศรซ้ายแบบหนา"
2078
+ },
2079
+ "thick_leftward_arrow_6ab89880": {
2080
+ "message": "ลูกศรซ้ายแบบหนา"
2081
+ },
2082
+ "thick_right_arrow_3ed5e8f7": {
2083
+ "message": "ลูกศรขวาแบบหนา"
2084
+ },
2085
+ "thick_rightward_arrow_a2e1839e": {
2086
+ "message": "ลูกศรขวาแบบหนา"
2087
+ },
2088
+ "thick_upward_arrow_acd20328": {
2089
+ "message": "ลูกศรบนแบบหนา"
2090
+ },
2091
+ "this_document_cannot_be_displayed_within_canvas_7aba77be": {
2092
+ "message": "เอกสารนี้ไม่สามารถแสดงได้ภายใน Canvas"
2093
+ },
2094
+ "this_equation_cannot_be_rendered_in_basic_view_9b6c07ae": {
2095
+ "message": "สมการนี้ไม่สามารถเรนเดอร์ได้ในมุมมองพื้นฐาน"
2096
+ },
2097
+ "this_image_is_currently_unavailable_25c68857": {
2098
+ "message": "ภาพนี้ปัจจุบันไม่พร้อมใช้งาน"
2099
+ },
2100
+ "though_your_video_will_have_the_correct_title_in_t_90e427f3": {
2101
+ "message": "แม้ว่าวิดีโอของคุณจะมีชื่อที่ถูกต้องในเบราเซอร์ แต่เราไม่สามารถอัพเดตในฐานข้อมูลได้"
2102
+ },
2103
+ "timebar_a4d18443": {
2104
+ "message": "แถบเวลา"
2105
+ },
2106
+ "title_ee03d132": {
2107
+ "message": "ชื่อ"
2108
+ },
2109
+ "to_be_posted_when_d24bf7dc": {
2110
+ "message": "ที่จะโพสต์: { when }"
2111
+ },
2112
+ "to_do_when_2783d78f": {
2113
+ "message": "สิ่งที่ต้องทำ: { when }"
2114
+ },
2115
+ "toggle_summary_group_413df9ac": {
2116
+ "message": "สลับกลุ่ม { summary }"
2117
+ },
2118
+ "toggle_tooltip_d3b7cb86": {
2119
+ "message": "เปิดปิดคำแนะนำในการใช้เครื่องมือ"
2120
+ },
2121
+ "tools_2fcf772e": {
2122
+ "message": "เครื่องมือ"
2123
+ },
2124
+ "top_66e0adb6": {
2125
+ "message": "บน"
2126
+ },
2127
+ "tray_839df38a": {
2128
+ "message": "ถาด"
2129
+ },
2130
+ "triangle_6072304e": {
2131
+ "message": "สามเหลี่ยม"
2132
+ },
2133
+ "turnstile_yields_f9e76df1": {
2134
+ "message": "Turnstile (ผลลัพธ์)"
2135
+ },
2136
+ "type_control_f9_to_access_image_options_text_a47e319f": {
2137
+ "message": "พิมพ์ Control F9 เพื่อเข้าไปยังตัวเลือกสำหรับภาพ { text }"
2138
+ },
2139
+ "type_control_f9_to_access_link_options_text_4ead9682": {
2140
+ "message": "พิมพ์ Control F9 เพื่อเข้าไปยังตัวเลือกสำหรับลิงค์ { text }"
2141
+ },
2142
+ "type_control_f9_to_access_table_options_text_92141329": {
2143
+ "message": "พิมพ์ Control F9 เพื่อเข้าไปยังตัวเลือกสำหรับตาราง { text }"
2144
+ },
2145
+ "unable_to_determine_resource_selection_url_7867e060": {
2146
+ "message": "ไม่สามารถพิจารณา url การเลือกทรัพยากรข้อมูล"
2147
+ },
2148
+ "union_e6b57a53": {
2149
+ "message": "ยูเนียน"
2150
+ },
2151
+ "unpublished_dfd8801": {
2152
+ "message": "เลิกเผยแพร่แล้ว"
2153
+ },
2154
+ "untitled_16aa4f2b": {
2155
+ "message": "ไม่มีชื่อ"
2156
+ },
2157
+ "untitled_efdc2d7d": {
2158
+ "message": "ไม่ระบุชื่อ"
2159
+ },
2160
+ "up_and_left_diagonal_arrow_e4a74a23": {
2161
+ "message": "ลูกศรขึ้นและทแยงซ้าย"
2162
+ },
2163
+ "up_and_right_diagonal_arrow_935b902e": {
2164
+ "message": "ลูกศรขึ้นและทแยงขวา"
2165
+ },
2166
+ "up_c553575d": {
2167
+ "message": "ขึ้น"
2168
+ },
2169
+ "updated_link_a827e441": {
2170
+ "message": "ลิงค์ที่มีการอัพเดต"
2171
+ },
2172
+ "upload_document_253f0478": {
2173
+ "message": "อัพโหลดเอกสาร"
2174
+ },
2175
+ "upload_file_fd2361b8": {
2176
+ "message": "อัพโหลดไฟล์"
2177
+ },
2178
+ "upload_image_6120b609": {
2179
+ "message": "อัพโหลดภาพ"
2180
+ },
2181
+ "upload_media_ce31135a": {
2182
+ "message": "อัพโหลดสื่อ"
2183
+ },
2184
+ "upload_record_media_e4207d72": {
2185
+ "message": "อัพโหลด/บันทึกสื่อ"
2186
+ },
2187
+ "uploading_19e8a4e7": {
2188
+ "message": "กำลังอัพโหลด"
2189
+ },
2190
+ "uppercase_alphabetic_ordered_list_3f5aa6b2": {
2191
+ "message": "รายการจัดลำดับอักษรตัวพิมพ์ใหญ่"
2192
+ },
2193
+ "uppercase_delta_d4f4bc41": {
2194
+ "message": "เดลต้าพิมพ์ใหญ่"
2195
+ },
2196
+ "uppercase_gamma_86f492e9": {
2197
+ "message": "แกมม่าพิมพ์ใหญ่"
2198
+ },
2199
+ "uppercase_lambda_c78d8ed4": {
2200
+ "message": "แลมบ์ด้าพิมพ์ใหญ่"
2201
+ },
2202
+ "uppercase_omega_8aedfa2": {
2203
+ "message": "โอเมกาพิมพ์ใหญ่"
2204
+ },
2205
+ "uppercase_phi_caa36724": {
2206
+ "message": "ฟายพิมพ์ใหญ่"
2207
+ },
2208
+ "uppercase_pi_fcc70f5e": {
2209
+ "message": "พายพิมพ์ใหญ่"
2210
+ },
2211
+ "uppercase_psi_6395acbe": {
2212
+ "message": "Psi พิมพ์ใหญ่"
2213
+ },
2214
+ "uppercase_roman_numeral_ordered_list_853f292b": {
2215
+ "message": "รายการจัดลำดับตัวเลขโรมันพิมพ์ใหญ่"
2216
+ },
2217
+ "uppercase_sigma_dbb70e92": {
2218
+ "message": "ซิกม่าพิมพ์ใหญ่"
2219
+ },
2220
+ "uppercase_theta_49afc891": {
2221
+ "message": "เทตาพิมพ์ใหญ่"
2222
+ },
2223
+ "uppercase_upsilon_8c1e623e": {
2224
+ "message": "อัปไซลอนพิมพ์ใหญ่"
2225
+ },
2226
+ "uppercase_xi_341e8556": {
2227
+ "message": "Xi พิมพ์ใหญ่"
2228
+ },
2229
+ "upsilon_33651634": {
2230
+ "message": "อัปไซลอน"
2231
+ },
2232
+ "upward_and_downward_pointing_arrow_fa90a918": {
2233
+ "message": "ลูกศรชี้ขึ้นและลง"
2234
+ },
2235
+ "upward_and_downward_pointing_arrow_thick_d420fdef": {
2236
+ "message": "ลูกศรชี้ขึ้นและลง (หนา)"
2237
+ },
2238
+ "upward_arrow_9992cb2d": {
2239
+ "message": "ลูกศรขึ้น"
2240
+ },
2241
+ "upward_pointing_triangle_d078d7cb": {
2242
+ "message": "สามเหลี่ยมชี้ขึ้น"
2243
+ },
2244
+ "url_22a5f3b8": {
2245
+ "message": "URL"
2246
+ },
2247
+ "usage_right_ff96f3e2": {
2248
+ "message": "สิทธิ์การใช้งาน:"
2249
+ },
2250
+ "usage_rights_required_5fe4dd68": {
2251
+ "message": "สิทธิ์การใช้งาน (ต้องมี)"
2252
+ },
2253
+ "use_arrow_keys_to_navigate_options_2021cc50": {
2254
+ "message": "ใช้ปุ่มลูกศรเพื่อไปยังตัวเลือกต่าง ๆ"
2255
+ },
2256
+ "use_arrow_keys_to_select_a_shape_c8eb57ed": {
2257
+ "message": "ใช้ปุ่มลูกศรเพื่อเลือกรูปทรง"
2258
+ },
2259
+ "use_arrow_keys_to_select_a_size_699a19f4": {
2260
+ "message": "ใช้ปุ่มลูกศรเพื่อเลือกขนาด"
2261
+ },
2262
+ "use_arrow_keys_to_select_a_text_position_72f9137c": {
2263
+ "message": "ใช้ปุ่มลูกศรเพื่อเลือกตำแหน่งข้อความ"
2264
+ },
2265
+ "use_arrow_keys_to_select_a_text_size_65e89336": {
2266
+ "message": "ใช้ปุ่มลูกศรเพื่อเลือกขนาดข้อความ"
2267
+ },
2268
+ "use_arrow_keys_to_select_an_outline_size_e009d6b0": {
2269
+ "message": "ใช้ปุ่มลูกศรเพื่อเลือกขนาดกรอบ"
2270
+ },
2271
+ "used_by_screen_readers_to_describe_the_content_of__4f14b4e4": {
2272
+ "message": "ใช้โดยโปรแกรมอ่านหน้าจอเพื่อระบุเนื้อหา { TYPE }"
2273
+ },
2274
+ "used_by_screen_readers_to_describe_the_content_of__b1e76d9e": {
2275
+ "message": "ใช้โดยโปรแกรมอ่านหน้าจอเพื่อระบุเนื้อหาของภาพ"
2276
+ },
2277
+ "used_by_screen_readers_to_describe_the_video_37ebad25": {
2278
+ "message": "ใช้โดยโปรแกรมอ่านหน้าจอเพื่อระบุวิดีโอ"
2279
+ },
2280
+ "user_documents_c206e61f": {
2281
+ "message": "เอกสารของผู้ใช้"
2282
+ },
2283
+ "user_files_78e21703": {
2284
+ "message": "ไฟล์ของผู้ใช้"
2285
+ },
2286
+ "user_images_b6490852": {
2287
+ "message": "ภาพของผู้ใช้"
2288
+ },
2289
+ "user_media_14fbf656": {
2290
+ "message": "สื่อของผู้ใช้"
2291
+ },
2292
+ "vector_notation_cf6086ab": {
2293
+ "message": "เวคเตอร์ (สัญกรณ์)"
2294
+ },
2295
+ "vertical_bar_set_builder_notation_4300495f": {
2296
+ "message": "แท่งแนวตั้ง (เซ็ตบอกเงื่อนไข)"
2297
+ },
2298
+ "vertical_dots_bfb21f14": {
2299
+ "message": "จุดแนวดิ่ง"
2300
+ },
2301
+ "video_options_24ef6e5d": {
2302
+ "message": "ตัวเลือกวิดีโอ"
2303
+ },
2304
+ "video_options_tray_3b9809a5": {
2305
+ "message": "ถาดตัวเลือกวิดีโอ"
2306
+ },
2307
+ "video_player_b371005": {
2308
+ "message": "เครื่องเล่นวิดีโอ"
2309
+ },
2310
+ "video_player_for_9e7d373b": {
2311
+ "message": "เครื่องเล่นวิดีโอสำหรับ "
2312
+ },
2313
+ "video_player_for_title_ffd9fbc4": {
2314
+ "message": "เครื่องเล่นวิดีโอสำหรับ { title }"
2315
+ },
2316
+ "view_all_e13bf0a6": {
2317
+ "message": "ดูทั้งหมด"
2318
+ },
2319
+ "view_ba339f93": {
2320
+ "message": "ดู"
2321
+ },
2322
+ "view_description_30446afc": {
2323
+ "message": "ดูรายละเอียด"
2324
+ },
2325
+ "view_keyboard_shortcuts_34d1be0b": {
2326
+ "message": "ดูชอร์ตคัทแป้นพิมพ์"
2327
+ },
2328
+ "view_title_description_67940918": {
2329
+ "message": "ดูรายละเอียด { title }"
2330
+ },
2331
+ "view_word_and_character_counts_a743dd0c": {
2332
+ "message": "ดูจำนวนคำและอักขระ"
2333
+ },
2334
+ "we_couldn_t_detect_a_working_microphone_connected__ceb71c40": {
2335
+ "message": "เราไม่พบไมโครโฟนที่ใช้การได้ที่เชื่อมต่อกับอุปกรณ์ของคุณ"
2336
+ },
2337
+ "we_couldn_t_detect_a_working_webcam_connected_to_y_6715cc4": {
2338
+ "message": "เราไม่พบเว็บแคมที่ใช้การได้ที่เชื่อมต่อกับอุปกรณ์ของคุณ"
2339
+ },
2340
+ "we_couldn_t_detect_a_working_webcam_or_microphone__263b6674": {
2341
+ "message": "เราไม่พบเว็บแคมหรือไมโครโฟนที่ใช้การได้ที่เชื่อมต่อกับอุปกรณ์ของคุณ"
2342
+ },
2343
+ "webcam_disabled_30c66986": {
2344
+ "message": "เว็บแคมปิดใช้งาน"
2345
+ },
2346
+ "webcam_fe91b20f": {
2347
+ "message": "เว็บแคม"
2348
+ },
2349
+ "webpages_should_only_have_a_single_h1_which_is_aut_dc99189e": {
2350
+ "message": "เว็บเพจควรมี H1 เดียวซึ่งจะใช้อัตโนมัติจาก Title ของเพจ หัวเรื่องแรกในเนื้อหาของคุณควรเป็น H2"
2351
+ },
2352
+ "when_markup_is_used_that_visually_formats_items_as_f941fc1b": {
2353
+ "message": "เมื่อมีการใช้มาร์กอัพที่กำหนดรูปแบบรายการเป็นแสดงรายการแต่ไม่ได้ระบุความสัมพันธ์ในรายการ ผู้ใช้อาจมีปัญหาในการสืบค้นข้อมูล"
2354
+ },
2355
+ "white_87fa64fd": {
2356
+ "message": "คนผิวขาว"
2357
+ },
2358
+ "why_523b3d8c": {
2359
+ "message": "สาเหตุ"
2360
+ },
2361
+ "width_492fec76": {
2362
+ "message": "ความกว้าง"
2363
+ },
2364
+ "width_and_height_must_be_numbers_110ab2e3": {
2365
+ "message": "ความกว้างและความสูงต้องเป็นตัวเลข"
2366
+ },
2367
+ "width_x_height_px_ff3ccb93": {
2368
+ "message": "{ width } x { height }px"
2369
+ },
2370
+ "wiki_home_9cd54d0": {
2371
+ "message": "Wiki Home"
2372
+ },
2373
+ "word_count_c77fe3a6": {
2374
+ "message": "จำนวนคำ"
2375
+ },
2376
+ "words_b448b7d5": {
2377
+ "message": "Words"
2378
+ },
2379
+ "wreath_product_200b38ef": {
2380
+ "message": "Wreath Product"
2381
+ },
2382
+ "xi_149681d0": {
2383
+ "message": "Xi"
2384
+ },
2385
+ "yes_dde87d5": {
2386
+ "message": "ใช่"
2387
+ },
2388
+ "you_have_unsaved_changes_in_the_icon_maker_tray_do_e8cf5f1b": {
2389
+ "message": "คุณมีการเปลี่ยนแปลงที่ไม่ได้บันทึกไว้ในถาด Icon Maker ต้องการดำเนินการต่อโดยไม่บันทึกการเปลี่ยนแปลงเหล่านี้หรือไม่"
2390
+ },
2391
+ "you_may_need_to_adjust_additional_headings_to_main_975f0eee": {
2392
+ "message": "คุณอาจต้องปรับหัวเรื่องเพิ่มเติมเพื่อรักษาโครงสร้างของเพจไว้"
2393
+ },
2394
+ "you_may_not_upload_an_empty_file_11c31eb2": {
2395
+ "message": "คุณไม่สามารถอัพโหลดไฟล์เปล่า"
2396
+ },
2397
+ "your_image_has_been_compressed_for_icon_maker_imag_2e45cd91": {
2398
+ "message": "ภาพของคุณถูกบีบอัดสำหรับ Icon Maker ภาพที่มีขนาดเล็กกว่า { size } KB จะไม่ถูกบีบอัด"
2399
+ },
2400
+ "your_microphone_is_blocked_in_the_browser_settings_42af0ddc": {
2401
+ "message": "ไมโครโฟนของคุณถูกบล็อคในค่าปรับตั้งของเบราเซอร์"
2402
+ },
2403
+ "your_webcam_and_microphone_are_blocked_in_the_brow_73357dc6": {
2404
+ "message": "เว็บแคมและไมโครโฟนของคุณถูกบล็อคในค่าปรับตั้งของเบราเซอร์"
2405
+ },
2406
+ "your_webcam_is_blocked_in_the_browser_settings_7f638128": {
2407
+ "message": "เว็บแคมของคุณถูกบล็อคในค่าปรับตั้งของเบราเซอร์"
2408
+ },
2409
+ "your_webcam_may_already_be_in_use_6cd64c25": {
2410
+ "message": "เว็บแคมของคุณอาจใช้งานอยู่"
2411
+ },
2412
+ "zeta_5ef24f0e": {
2413
+ "message": "ซีตา"
2414
+ },
2415
+ "zoom_f3e54d69": {
2416
+ "message": "ซูม"
2417
+ },
2418
+ "zoom_in_image_bb97d4f": {
2419
+ "message": "ซูมภาพเข้า"
2420
+ },
2421
+ "zoom_out_image_d0a0a2ec": {
2422
+ "message": "ซูมภาพออก"
23
2423
  }
24
2424
  };
25
2425
  formatMessage.addLocale({