en.json 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202
  1. {
  2. "gui": {
  3. "50": "50+%",
  4. "3rd_dictionary": "3rd Dictionary",
  5. "accessed": "Accessed",
  6. "add_to_edit_list": "Add to Edit List",
  7. "adhivacana": "Adhivacana",
  8. "all": "All",
  9. "all_select": "All",
  10. "all_data!": "All Data!",
  11. "all_done": "Looking up accomplished",
  12. "allsplit": "Words Splited Successfully ^-^",
  13. "and_another": " and ",
  14. "append": "Append",
  15. "apply": "Apply",
  16. "applyto": "Apply to",
  17. "arrival_in_detail": "arrival in detail",
  18. "asc": "ASC",
  19. "atitude": "Atitude",
  20. "audio": "Audio",
  21. "author": "Author",
  22. "auto": "AUTO",
  23. "auto_fill": "Automatic filling",
  24. "back": "back",
  25. "base_on": "Base on",
  26. "BE": "Buddhist Era ",
  27. "bhumma": "Tuesday",
  28. "book": "book",
  29. "book_mark": "Book Mark",
  30. "book_name": "book name ",
  31. "bookmark": "bookmark...",
  32. "buddhist_calendar": "Buddhist Calendar",
  33. "budha": "Wednesday",
  34. "by": "By",
  35. "cancel": "Cancel",
  36. "canda": "Monday",
  37. "caption": "Caption",
  38. "CE": "CE",
  39. "change_position": "change position",
  40. "chars": "Chars",
  41. "checking": "scanning",
  42. "children": "Children",
  43. "chinese": "中文",
  44. "click_on": "Click On",
  45. "click_word_to": "click word to ",
  46. "code_convert": "Code Convert",
  47. "color": "Color",
  48. "column_compare": "column",
  49. "commentary": "Commentary",
  50. "completely_delete": "completely delete",
  51. "computer": "Computer",
  52. "confirm": "Confirm",
  53. "content": "Content",
  54. "contents": "Table of Content",
  55. "copy": "copy",
  56. "copy_to_clipboard": "copy the link to clipboard",
  57. "creat_a_new_file_by_yourself": "Creat a new file by yourself",
  58. "created": "Created",
  59. "current": "Current",
  60. "database_admin": "Database Admin",
  61. "date": "Date",
  62. "day": " ",
  63. "day_1": " ",
  64. "days": " day(s) ",
  65. "debug": "Debug",
  66. "delete": "delete",
  67. "departure_in_detail": "departure in detail",
  68. "desc": "DESC",
  69. "detaile": "Detaile",
  70. "dhamma_time": "5000 Years of the Buddha’s Dispensation ",
  71. "dict": "Dict",
  72. "dict_match": "Match the Dictionary and Document",
  73. "dict_terms": "Terms",
  74. "dictionary": "Dictionary",
  75. "dictionary_match_result": "Dictionary Match Result",
  76. "dictsouce": "Dictionary Resouce",
  77. "difficulty": "difficulty level",
  78. "done": " scanned",
  79. "down": "Down",
  80. "download": "[Download]",
  81. "draft": "As Draft",
  82. "dawn": "dawn",
  83. "each_paragraph": "E paragraph",
  84. "each_sentence": "E sentence",
  85. "eat": "eat",
  86. "edit": "Edit",
  87. "edit_now": "Edit in Studio",
  88. "edit1": "Edited By ",
  89. "edition": "Edition",
  90. "editor": "Editor",
  91. "e_mail": "E-mail",
  92. "empty": "Empty",
  93. "empty_the_data_below": "Empty the Data Below",
  94. "empty_the_recycle_bin": "Empty the Recycle Bin",
  95. "empty1": "EMPTY",
  96. "english": "English",
  97. "export": "Export",
  98. "export_csv": "Export CSV",
  99. "export_html": "Export HTML",
  100. "f_mean": "F-Mean",
  101. "factor": "Factor",
  102. "factors_input": "input factors by click",
  103. "favorite": "favorite",
  104. "file_name": "File Name",
  105. "files": " files",
  106. "find_replace": "Find & Replace",
  107. "finish": "Finish",
  108. "finished": "finished",
  109. "g_mean": "G-Mean",
  110. "gama_entry": "entry the village",
  111. "gramma": "Grammar",
  112. "gramma_case": "Grammar Case",
  113. "guid_creator": "GUID Creator",
  114. "guru": "Thursday",
  115. "h": "(h)",
  116. "half": "half",
  117. "heading": "Heading",
  118. "heading_1": "Heading 1",
  119. "heading_2": "Heading 2",
  120. "heading_3": "Heading 3",
  121. "heading_4": "Heading 4",
  122. "heading_5": "Heading 5",
  123. "heading_6": "Heading 6",
  124. "heading_7": "Heading 7",
  125. "heading_8": "Heading 8",
  126. "heading_lv1": "Heading Lv1",
  127. "heading_lv2": "Heading Lv2",
  128. "heading_lv3": "Heading Lv3",
  129. "heading_lv4": "Heading Lv4",
  130. "heading_lv5": "Heading Lv5",
  131. "heading_lv6": "Heading Lv6",
  132. "heading_lv7": "Heading Lv7",
  133. "heading_lv8": "Heading Lv8",
  134. "hidden": "hidden",
  135. "home": "Home",
  136. "hori_ref_time": "horizontal refraction correct ",
  137. "html_text_data": "HTML Text Data",
  138. "import": "Import ",
  139. "import_csv": "Import CSV",
  140. "import_export": "Import/Export",
  141. "import_the_flie_from_cscd": "Import the flie From Cattha Sangayana data base",
  142. "include": "include",
  143. "info_panal": "Info Panal",
  144. "infomation": "Infomation",
  145. "inline_dictionary": "Inline Dictionary",
  146. "innerdict": "Inline Dictionary",
  147. "input": "input",
  148. "kala": "suitable time",
  149. "keywords": "Keywords",
  150. "language": "Language",
  151. "language_select": "Language",
  152. "layout": "Layout",
  153. "left": "Remains ",
  154. "lesson": "lesson",
  155. "letters": " letters",
  156. "level": "Lv",
  157. "list": "List",
  158. "load": "Load",
  159. "load_from_database": "Load From Database",
  160. "load_from_wbw_file": "Load From WBW File",
  161. "loading": "loading…",
  162. "loading_dictionary_list...": "loading Dictionary List...",
  163. "lock": "Lock",
  164. "login": "Login",
  165. "logout": "Logout",
  166. "longitude": "Longitude",
  167. "magic_dict": "Magic Dict",
  168. "magic_gap": "Magic Gap",
  169. "magic_split": "Magic Split",
  170. "magic_terms": "Magic Terms",
  171. "main_code": "Main Code",
  172. "mark": "Mark",
  173. "māsa": "māsa",
  174. "match_end": "Document update over,Degree of Perfection",
  175. "matched": "Matched",
  176. "max": "Max",
  177. "meaning": "Meaning",
  178. "meaning_input": "input meanings by click",
  179. "message": "message",
  180. "min": "min",
  181. "mins": "(min)",
  182. "mobile": "Mobile",
  183. "modified": "Modified",
  184. "modify": "Modify",
  185. "modifyok": "Modified ",
  186. "month": "Month ",
  187. "month_1": "- ",
  188. "months": " month(s) ",
  189. "more": "more",
  190. "my_book": "My Book",
  191. "my_dictionary": "My Vocabulary",
  192. "my_document": "My Document",
  193. "my_loc": "my location",
  194. "name": "Name",
  195. "need_inform": "without informing other Bhikkhu ",
  196. "new": "New",
  197. "new_account": "New Account",
  198. "new_project": "New Project",
  199. "new_revision": "New Revision",
  200. "new_technic_term": "New Technic Term",
  201. "newheading": "Text Editor",
  202. "newproject": "New Project",
  203. "newword": "New Word",
  204. "night": "Night",
  205. "no.": "No.",
  206. "no_related_file": "No related file",
  207. "no_string": "cannot ",
  208. "nofilename": "No File Name",
  209. "noon_time": "NOON",
  210. "normal": "Normal",
  211. "note": "Note",
  212. "now_time": "NOW",
  213. "num_k": "K",
  214. "num_m": "M",
  215. "ok": "OK",
  216. "order_by": "Order By",
  217. "other": "Other ",
  218. "other_meaning": "other meaning",
  219. "otherdict": "Other Dictionary",
  220. "pa_auk_dictionary": "Pa-auk Dictionary",
  221. "pacchā_māsa": "pacchā-māsa",
  222. "pakkha": "Lunar Phases ",
  223. "pāli": "Pāli",
  224. "pali_canon": "Pāḷi Canon",
  225. "pāli_code": "Pāli Code",
  226. "para": " Paragraphs",
  227. "paragraph": "Paragraph",
  228. "parent": "Parent",
  229. "parent_input": "input parent by click",
  230. "part": "Factors",
  231. "partmeaning": "Factor-Meaning",
  232. "password": "Password",
  233. "password_again": "Password again",
  234. "past": "Passed ",
  235. "pcd_studio": "PCD Studio ",
  236. "piṭaka": "Piṭaka",
  237. "plugin": "Plugin",
  238. "poweredby": "Powered by PCSD build27-Jul-2018",
  239. "preview": "preview",
  240. "print": "Print",
  241. "print_preview": "Print Preview",
  242. "product": "translation words",
  243. "project": "Project",
  244. "protection": "Protection【en】",
  245. "pubba_māsa": "pubba-māsa",
  246. "publish": "Publish",
  247. "ravi": "Sunday",
  248. "read": "Read",
  249. "read_only": "Read Only",
  250. "recent_scan": "Recent Scan",
  251. "recycle_bin": "Recycle Bin",
  252. "ref_dict": "Dictionary",
  253. "refresh": "Refresh",
  254. "relation": "relation",
  255. "remove": "Remove",
  256. "removeword": "Slur Factor Removed",
  257. "render": "Render",
  258. "repeat": "Repeat Quotiety ",
  259. "resource": "Resource",
  260. "revision": "Revised By ",
  261. "revision_mode": "Revision Mode",
  262. "round_1": "Round ",
  263. "round_2": " dictionary",
  264. "row_compare": "row",
  265. "same_word": "same words",
  266. "saṃvacchara": "saṃvacchara",
  267. "sandhi": "Sandhi",
  268. "sandhi_begin": "Sandhi Begin",
  269. "sandhi_combin_mode": "Sandhi Combin Mode",
  270. "sandhi_end": "Sandhi End",
  271. "sandhi_orginal_word": "Sandhi Orginal Word",
  272. "sandhi_splited_word": "Sandhi Splited Word",
  273. "save": "Save",
  274. "script": "Script",
  275. "search": "Search",
  276. "season": "Season ",
  277. "sec": "sec",
  278. "sent_trans": "Translate of Sentence",
  279. "sentence": "Sentence",
  280. "sentence_by_sentence": "Sentence By Sentence",
  281. "setting": "Setting",
  282. "share": "share",
  283. "shared": "shared",
  284. "show": "Show",
  285. "similar_words": "Similar Words",
  286. "size": "size",
  287. "smart_spell": "smart spell",
  288. "sora": "Saturday",
  289. "source": "Source",
  290. "spell": "Spell",
  291. "statistical_data": "statistical data",
  292. "style": "Style",
  293. "sub_pcode": "Sub Code",
  294. "subversion": "Subversion",
  295. "success": " Words Successfully",
  296. "successful": "Successful",
  297. "sukka": "Friday",
  298. "sun_height_degree": "Max solar altitude ",
  299. "system_default": "System Default",
  300. "system_dictionary": "System Dictionary",
  301. "tag": "tag",
  302. "templet": "Templet",
  303. "terms_system": "Terms System",
  304. "thischapter": "This Chapter",
  305. "time": "time",
  306. "title": "title ",
  307. "to_the_dhamma": "Welcome to the Dhamma!",
  308. "today": "Today ",
  309. "toDB": "To User Database",
  310. "tools": "Tools",
  311. "total": "Total ",
  312. "total_workload": "total workload",
  313. "totally": "Totally ",
  314. "tran_workload": "whole passage translate ",
  315. "translate": "Translate",
  316. "translate_convert": "Translate Convert",
  317. "translate1": "Translated By ",
  318. "translation": "Translation",
  319. "translation_templet": "Translation Templet",
  320. "twilight_time": "dawn",
  321. "undo_shared": "undo shared",
  322. "unsplit": "Slur Splited",
  323. "up": "Up",
  324. "up_and_down": "Up And Down",
  325. "update_all_wbw_to_database": "Update All WBW to Database",
  326. "user": "User",
  327. "to_user_dictionary": "Save & Add to My Vocabulary List",
  328. "user_id": "User ID",
  329. "userdict": "Vocabulary List",
  330. "vannana": "vaṇṇanā",
  331. "view": "View",
  332. "vikala": "unsuitable time",
  333. "vocabulary": "Vocabulary",
  334. "wbw": "Word by Word Analysis",
  335. "week": "(week)",
  336. "week_day": "Day",
  337. "welcome": "",
  338. "white": "White",
  339. "wiki_term": "Wiki Term",
  340. "with_title": "With Title",
  341. "wizard": "Wizard",
  342. "wizard_my_book": "Wizard -> My Book",
  343. "word_base": "Word base",
  344. "word_by_word": "word by word",
  345. "word_gramma_statistics": "Word & Grammar Statistics",
  346. "word_length": "average word length",
  347. "word_list": "Word List",
  348. "word_note": "Word Note",
  349. "word_selection_apply_to": "Word Selection Apply to",
  350. "wordmap": "Word Tree",
  351. "wordnum": "Text Amount ",
  352. "words": " words",
  353. "wordtype": "Word Type",
  354. "workload": "workload",
  355. "xml_data": "XML Data",
  356. "year": "(year)",
  357. "year_0": "year",
  358. "year_1": "- ",
  359. "years": " year(s) ",
  360. "yes_string": "can ",
  361. "": "",
  362. "continue": "continue",
  363. "account": "Username",
  364. "new_to_wikipali": "New to Wikipāḷi",
  365. "create_account": "Create an account",
  366. "have_account": "I have account",
  367. "join_wikipali": "Join wikipāḷi",
  368. "pali_literature_platform": "Platform for Editing Pāḷi Literature",
  369. "nick_name": "nickname",
  370. "name_for_show": "name showed for others",
  371. "email_address": "E-mail address",
  372. "account_demond": "Username may only contain alphanumeric characters, and try to avoid using ? : ! ; , - etc.",
  373. "password_demond": "Make sure it's at least 5 characters including both numbers and letters",
  374. "login_with_google": "Log in with Google",
  375. "login_with_facebook": "Log in with Facebook",
  376. "login_with_wechat": "Log in with WeChat",
  377. "loged_out": "has loged out",
  378. "online_dict_db": "Online Search for Pāḷi",
  379. "user_data_share": "Editing & Sharing as Open Source",
  380. "cooperate_edit": "Multi-translator Collaboration",
  381. "cannot_empty": " cannot be empty",
  382. "account_existed": "Username is already existed",
  383. "incorrect_ID_PASS": "Incorrect Username or password.",
  384. "sync": "synchron",
  385. "restore": "restore",
  386. "group": "group",
  387. "add_folder": "new folder",
  388. "add_to_folder": "add to folder",
  389. "rename": "rename",
  390. "collaborate": "collaborate",
  391. "help": "help",
  392. "function_introduce": "functions of Wikipāḷi",
  393. "vedio_link": "vedio link",
  394. "project_introduce": "conference of pāḷi-translating platform",
  395. "help_doc": "Help document",
  396. "code_add": "View and download code",
  397. "test_declare": "This website version is only for function test, there's no garantee for the users’ personal data as so far.",
  398. "project_introduce_inbrief": "The general idea of Pali Canon translation project",
  399. "start": "Let’s start",
  400. "wikipali_suite": "wikipali Suite",
  401. "encyclopedia": "Pāḷipedia",
  402. "txt_search": "Text Search",
  403. "title_search": "Title Search",
  404. "dict_builder": "PCD Dict-Builder",
  405. "classroom": "Course",
  406. "filter": "filter",
  407. "result": "results",
  408. "find_about": "about ",
  409. "presented_in": "presented in ",
  410. "books": " books",
  411. "times": " times",
  412. "not_login": "login now",
  413. "database": "database",
  414. "open_with": "open with",
  415. "reader": "wikipāli reader",
  416. "folk": "folk",
  417. "and": " and ",
  418. "digest": "digest",
  419. "composition": "composition ",
  420. "corpus_statistics": "corpus statistics",
  421. "studio": "Studio",
  422. "library": "Library",
  423. "turbo_split": "Turbo Split",
  424. "full_text": "full text",
  425. "word_weight": "weightiness of this word",
  426. "characters": "characters",
  427. "real_declension": "reality of declensions",
  428. "forms": "spelling forms",
  429. "add_to": "add to",
  430. "undone_function": "unfinished function",
  431. "click_to_chart": "click to check the chart",
  432. "frequency": "Frequency",
  433. "declension_list": "Declension List",
  434. "distribution": "Distribution Chart",
  435. "statistical": "statistical ",
  436. "chart": "chart",
  437. "in": "present in",
  438. "present": "",
  439. "sutta": "sutta",
  440. "vinaya": "vinaya",
  441. "abhidhamma": "abhidhamma",
  442. "anna": "añña",
  443. "mula": "mūla",
  444. "atthakatha": "aṭṭhakathā",
  445. "tika": "ṭīkā",
  446. "times2": "times",
  447. "co_doc": "Collaborative Document",
  448. "open": "Open ",
  449. "general": "General",
  450. "username": "Login ID",
  451. "change_password": "change the password",
  452. "ignore": "ignore",
  453. "oversize_to_load": "unable to load due to oversize, please reduce the articles range",
  454. "page_end": "The End of The Page",
  455. "academy": "Academy",
  456. "interface": "interface",
  457. "preference": "preference",
  458. "appearance": "appearance",
  459. "theme": "theme",
  460. "first_choice_word": "first-choice term",
  461. "pali_word": "pali word",
  462. "required": "required",
  463. "optional": "optional",
  464. "comment": "comments",
  465. "my_term": "my term",
  466. "scan_in_reader": "scan in reader",
  467. "selected": "selected",
  468. "to_be_selected": "to be selected",
  469. "text_without_title": "text without title",
  470. "end_of_text": "No Prev",
  471. "begin_of_text": "No Next",
  472. "chapter_select": "Please choose a chapter in the left sidebar",
  473. "kala_pakkha": "waning",
  474. "sukka_pakkha": "waxing",
  475. "com_dict": "Community Dictionary",
  476. "contributor": "contributor",
  477. "interface_language": "interface language",
  478. "translation_language": "languages of translation",
  479. "magic_dict_language": "languages of dictionary",
  480. "priority": "priority",
  481. "no_need": "no need",
  482. "not_started": "not yet start",
  483. "in_progress": "in progress",
  484. "already_over": "already over",
  485. "revise": "revise",
  486. "relational_map": "relational map",
  487. "pp": "past participle",
  488. "prp": "present participle",
  489. "fpp": "Future Passive Participle",
  490. "new_lesson": "Add a new lesson",
  491. "sub_title": "subtitle",
  492. "introduction": "introduction",
  493. "speaker": "speaker",
  494. "notice_live": "notice of live broadcast",
  495. "record_replay": "record & replay",
  496. "time_arrange": "time arrangement",
  497. "duration": "duration",
  498. "attachment": "attachment",
  499. "submit": "submit",
  500. "create_course": "create course",
  501. "created_time": "created time",
  502. "modified_time": "modified time",
  503. "num_of_hit": "num of hits",
  504. "all_courses": "all courses",
  505. "num_of_played": "Video Views",
  506. "recent_update": "recent update",
  507. "course_begin": "course starting time",
  508. "num_of_lesson": "num of lesson periods",
  509. "signed_up": "signed up",
  510. "sign_up": "sign up",
  511. "watch": "watch",
  512. "watched": "watched",
  513. "send": "send",
  514. "accept_copy": "accept & copy",
  515. "with_idea": "I have an idea…",
  516. "text_num": "No. of text",
  517. "copied_to_clipboard": "has been copied to clipboard.",
  518. "I_know": "Got it!",
  519. "text": "text ",
  520. "anthology": "anthology ",
  521. "channel": "channel & style",
  522. "channels": "channels list",
  523. "like": "like",
  524. "blank": "blank",
  525. "vocabulary_list": "words list",
  526. "private": "private",
  527. "private_note": "No URL for others,Unshown in Subscriber feed, search & related",
  528. "unlisted": "unlisted",
  529. "unlisted_note": "Can share URL,Unshown in Subscriber feed, search & related",
  530. "public": "public",
  531. "public_note": "Can share URL,Shows in Subscriber feed, search & related",
  532. "copy_link": "copy the Link",
  533. "copy_share_link": "copy share link",
  534. "saved": "saved ",
  535. "title_necessary": "title is necessary",
  536. "example": "for example ",
  537. "privacy": "privacy",
  538. "new_composition": "new composition",
  539. "add": "add ",
  540. "completed": "completed",
  541. "ongoing": "ongoing",
  542. "popular": "popular",
  543. "recommendation": "recommendation",
  544. "collection": "collection",
  545. "rates": "rates",
  546. "updated": "updated",
  547. "my_zone": "my zone",
  548. "share_to": "share to",
  549. "EXP": "EXP",
  550. "composition_structure": "composition structure",
  551. "search_tools": "search tools",
  552. "timeline": "timeline",
  553. "extension": "extension",
  554. "no_created": " is not created yet",
  555. "create_now": "create now",
  556. "only_this_para": "show this paragraph only",
  557. "no": "No ",
  558. "select": "select",
  559. "history": "history",
  560. "top_search": "Top search",
  561. "similar_sentences": "similar sentences",
  562. "close": "close",
  563. "timezone": "Timezone",
  564. "subfield": "subfield",
  565. "local": "Local",
  566. "form_sent": "Form sentences with the words given & copy to clipboard",
  567. "hot_topic": "hot topic",
  568. "composition_intro": "Make the Pāḷi easy to read<br>solution of Pāḷi glossary<br>For translating Pāḷi in Group<br>Show the source reference in Pāḷi",
  569. "jump_to_this_sent": "jump to this sentence",
  570. "show_nissaya": "show nissaya",
  571. "related_para": "related&nbsp;paragraph",
  572. "disable": "disable",
  573. "disable_note": "disable & invisible to anyone including myself",
  574. "not_found": "not&nbsp;found",
  575. "progress_curve": "progress curve",
  576. "day_EXP": "Daily EXP",
  577. "Jan": "Jan",
  578. "Feb": "Feb",
  579. "Mar": "Mar",
  580. "Apr": "Apr",
  581. "May": "May",
  582. "Jun": "Jun",
  583. "Jul": "Jul",
  584. "Aug": "Aug",
  585. "Sep": "Sep",
  586. "Oct": "Oct",
  587. "Nov": "Nov",
  588. "Dec": "Dec",
  589. "EXP_in_total": "EXP in total",
  590. "day_action": "Daily Action",
  591. "action": "Actions",
  592. "cooperators": "Cooperators",
  593. "person": "Person",
  594. "write": "Write",
  595. "sub_group": "Project",
  596. "your": "Your",
  597. "status": "status",
  598. "in_recycle_bin": "in&nbsp;recycle-bin",
  599. "cover": "cover",
  600. "member": "Member",
  601. "new_group": "Create Group",
  602. "new_sub_group": "Create Project",
  603. "": ""
  604. },
  605. "grammastr": [
  606. {
  607. "id": "$",
  608. "value": " "
  609. },
  610. {
  611. "id": "$",
  612. "value": " "
  613. },
  614. {
  615. "id": "$",
  616. "value": " "
  617. },
  618. {
  619. "id": ".nt.",
  620. "value": "nt."
  621. },
  622. {
  623. "id": ".m.",
  624. "value": "m."
  625. },
  626. {
  627. "id": ".f.",
  628. "value": "f."
  629. },
  630. {
  631. "id": ".sg.",
  632. "value": "sg."
  633. },
  634. {
  635. "id": ".pl.",
  636. "value": "pl."
  637. },
  638. {
  639. "id": ".nom.",
  640. "value": "nom."
  641. },
  642. {
  643. "id": ".voc.",
  644. "value": "voc."
  645. },
  646. {
  647. "id": ".acc.",
  648. "value": "acc."
  649. },
  650. {
  651. "id": ".gen.",
  652. "value": "gen."
  653. },
  654. {
  655. "id": ".dat.",
  656. "value": "dat."
  657. },
  658. {
  659. "id": ".inst.",
  660. "value": "inst."
  661. },
  662. {
  663. "id": ".abl.",
  664. "value": "abl."
  665. },
  666. {
  667. "id": ".loc.",
  668. "value": "loc."
  669. },
  670. {
  671. "id": ".imp.",
  672. "value": "imp."
  673. },
  674. {
  675. "id": ".cond.",
  676. "value": "cond."
  677. },
  678. {
  679. "id": ".opt.",
  680. "value": "opt."
  681. },
  682. {
  683. "id": ".pres.",
  684. "value": "pres."
  685. },
  686. {
  687. "id": ".aor.",
  688. "value": "aor."
  689. },
  690. {
  691. "id": ".pf.",
  692. "value": "pf."
  693. },
  694. {
  695. "id": ".fut.",
  696. "value": "fut."
  697. },
  698. {
  699. "id": ".act.",
  700. "value": "act."
  701. },
  702. {
  703. "id": ".refl.",
  704. "value": "refl."
  705. },
  706. {
  707. "id": ".1p.",
  708. "value": "1p."
  709. },
  710. {
  711. "id": ".2p.",
  712. "value": "2p."
  713. },
  714. {
  715. "id": ".3p.",
  716. "value": "3p."
  717. },
  718. {
  719. "id": ".prp.",
  720. "value": "prp."
  721. },
  722. {
  723. "id": ".prpa.",
  724. "value": "prpa."
  725. },
  726. {
  727. "id": ".prpp.",
  728. "value": "prpp."
  729. },
  730. {
  731. "id": ".pp.",
  732. "value": "pp."
  733. },
  734. {
  735. "id": ".ppa.",
  736. "value": "ppa."
  737. },
  738. {
  739. "id": ".ppp.",
  740. "value": "ppp."
  741. },
  742. {
  743. "id": ".futp.",
  744. "value": "futp."
  745. },
  746. {
  747. "id": ".fpa.",
  748. "value": "fpa."
  749. },
  750. {
  751. "id": ".fpp.",
  752. "value": "fpp."
  753. },
  754. {
  755. "id": ".grd.",
  756. "value": "Grd."
  757. },
  758. {
  759. "id": ".pass.",
  760. "value": "Pass."
  761. },
  762. {
  763. "id": ".caus.",
  764. "value": "Caus."
  765. },
  766. {
  767. "id": ".desid.",
  768. "value": "desid."
  769. },
  770. {
  771. "id": ".intens.",
  772. "value": "intens."
  773. },
  774. {
  775. "id": ".denom.",
  776. "value": "denom."
  777. },
  778. {
  779. "id": ".ger.",
  780. "value": "Ger."
  781. },
  782. {
  783. "id": ".abs.",
  784. "value": "Abs."
  785. },
  786. {
  787. "id": ".inf.",
  788. "value": "Inf."
  789. },
  790. {
  791. "id": ".n.",
  792. "value": "n."
  793. },
  794. {
  795. "id": ".adj.",
  796. "value": "adj."
  797. },
  798. {
  799. "id": ".ti.",
  800. "value": "n.a."
  801. },
  802. {
  803. "id": ".num.",
  804. "value": "num."
  805. },
  806. {
  807. "id": ".pron.",
  808. "value": "pron."
  809. },
  810. {
  811. "id": ".v:base.",
  812. "value": "v:base."
  813. },
  814. {
  815. "id": ".ti:base.",
  816. "value": "n.a:base."
  817. },
  818. {
  819. "id": ".n:base.",
  820. "value": "n:base."
  821. },
  822. {
  823. "id": ".adj:base.",
  824. "value": "adj:base."
  825. },
  826. {
  827. "id": ".pron:base.",
  828. "value": "pron:base."
  829. },
  830. {
  831. "id": ".pron.per.",
  832. "value": "pron.per."
  833. },
  834. {
  835. "id": ".pron.demon.",
  836. "value": "pron.demon."
  837. },
  838. {
  839. "id": ".pron.rel.",
  840. "value": "pron.rel."
  841. },
  842. {
  843. "id": ".pron.interr.",
  844. "value": "pron.interr."
  845. },
  846. {
  847. "id": ".pron.indef.",
  848. "value": "pron.indef."
  849. },
  850. {
  851. "id": ".v.",
  852. "value": "v."
  853. },
  854. {
  855. "id": ".v:ind.",
  856. "value": "v.ind."
  857. },
  858. {
  859. "id": ".ind.",
  860. "value": "ind."
  861. },
  862. {
  863. "id": ".adv.",
  864. "value": "adv."
  865. },
  866. {
  867. "id": ".conj.",
  868. "value": "conj."
  869. },
  870. {
  871. "id": ".prep.",
  872. "value": "prep."
  873. },
  874. {
  875. "id": ".interj.",
  876. "value": "interj."
  877. },
  878. {
  879. "id": ".comp.",
  880. "value": "comp."
  881. },
  882. {
  883. "id": ".pre.",
  884. "value": "prefix."
  885. },
  886. {
  887. "id": ".part.",
  888. "value": "part"
  889. },
  890. {
  891. "id": ".root.",
  892. "value": "root."
  893. },
  894. {
  895. "id": ".suf.",
  896. "value": "suffix."
  897. },
  898. {
  899. "id": ".end.",
  900. "value": "case end."
  901. },
  902. {
  903. "id": "_un_auto_factormean_",
  904. "value": "—Auto—"
  905. },
  906. {
  907. "id": "_un_auto_mean_",
  908. "value": "&nbsp;× × ×&nbsp;"
  909. },
  910. {
  911. "id": ".un.",
  912. "value": "slur."
  913. }
  914. ],
  915. "type_str": [
  916. {
  917. "id": ".n.",
  918. "value": "n."
  919. },
  920. {
  921. "id": ".v.",
  922. "value": "v."
  923. },
  924. {
  925. "id": ".ti.",
  926. "value": "n.a."
  927. },
  928. {
  929. "id": ".ind.",
  930. "value": "ind."
  931. },
  932. {
  933. "id": ".pron.",
  934. "value": "pron."
  935. },
  936. {
  937. "id": ".adj.",
  938. "value": "adj."
  939. },
  940. {
  941. "id": ".v:ind.",
  942. "value": "v.ind."
  943. },
  944. {
  945. "id": ".num.",
  946. "value": "num."
  947. },
  948. {
  949. "id": ".un.",
  950. "value": "slur."
  951. },
  952. {
  953. "id": ".comp.",
  954. "value": "comp."
  955. },
  956. {
  957. "id": ".pron:base.",
  958. "value": "pron:base."
  959. },
  960. {
  961. "id": ".adj:base.",
  962. "value": "adj:base."
  963. },
  964. {
  965. "id": ".n:base.",
  966. "value": "n:base."
  967. },
  968. {
  969. "id": ".ti:base.",
  970. "value": "ti:base."
  971. },
  972. {
  973. "id": ".num:base.",
  974. "value": "num:base."
  975. },
  976. {
  977. "id": ".pre.",
  978. "value": "prefix."
  979. },
  980. {
  981. "id": ".root.",
  982. "value": "root."
  983. },
  984. {
  985. "id": ".suf.",
  986. "value": "suffix."
  987. },
  988. {
  989. "id": ".end.",
  990. "value": "case end."
  991. },
  992. {
  993. "id": ".v:base.",
  994. "value": "v:base."
  995. }
  996. ],
  997. "formula": [
  998. {
  999. "id": ".pl.$.abl.",
  1000. "value": "{from&nbsp;}~{s}${from&nbsp;}~{es}${from&nbsp;}~{}${because of&nbsp;}~{s}${because of&nbsp;}~{es}${because of&nbsp;}~{}${due to&nbsp;}~{s}${due to&nbsp;}~{es}${due to&nbsp;}~{}${than&nbsp;}~{s}${than&nbsp;}~{es}${than&nbsp;}~{}"
  1001. },
  1002. {
  1003. "id": "$.pl.$.abl.",
  1004. "value": "{from&nbsp;}~{s}${from&nbsp;}~{es}${from&nbsp;}~{}${because of&nbsp;}~{s}${because of&nbsp;}~{es}${because of&nbsp;}~{}${due to&nbsp;}~{s}${due to&nbsp;}~{es}${due to&nbsp;}~{}${than&nbsp;}~{s}${than&nbsp;}~{es}${than&nbsp;}~{}"
  1005. },
  1006. {
  1007. "id": ".1p.$.pl.$.abl.",
  1008. "value": "{from&nbsp;}~{s}${from&nbsp;}~{es}${from&nbsp;}~{}${because of&nbsp;}~{s}${because of&nbsp;}~{es}${because of&nbsp;}~{}${due to&nbsp;}~{s}${due to&nbsp;}~{es}${due to&nbsp;}~{}${than&nbsp;}~{s}${than&nbsp;}~{es}${than&nbsp;}~{}"
  1009. },
  1010. {
  1011. "id": ".1p.$.pl.$.abl.",
  1012. "value": "{from&nbsp;}~{s}${from&nbsp;}~{es}${from&nbsp;}~{}${because of&nbsp;}~{s}${because of&nbsp;}~{es}${because of&nbsp;}~{}${due to&nbsp;}~{s}${due to&nbsp;}~{es}${due to&nbsp;}~{}${than&nbsp;}~{s}${than&nbsp;}~{es}${than&nbsp;}~{}"
  1013. },
  1014. {
  1015. "id": ".m.$.pl.$.abl.",
  1016. "value": "{from&nbsp;}~{s}${from&nbsp;}~{es}${from&nbsp;}~{}${because of&nbsp;}~{s}${because of&nbsp;}~{es}${because of&nbsp;}~{}${due to&nbsp;}~{s}${due to&nbsp;}~{es}${due to&nbsp;}~{}${than&nbsp;}~{s}${than&nbsp;}~{es}${than&nbsp;}~{}"
  1017. },
  1018. {
  1019. "id": ".nt.$.pl.$.abl.",
  1020. "value": "{from&nbsp;}~{s}${from&nbsp;}~{es}${from&nbsp;}~{}${because of&nbsp;}~{s}${because of&nbsp;}~{es}${because of&nbsp;}~{}${due to&nbsp;}~{s}${due to&nbsp;}~{es}${due to&nbsp;}~{}${than&nbsp;}~{s}${than&nbsp;}~{es}${than&nbsp;}~{}"
  1021. },
  1022. {
  1023. "id": ".f.$.pl.$.abl.",
  1024. "value": "{from&nbsp;}~{s}${from&nbsp;}~{es}${from&nbsp;}~{}${because of&nbsp;}~{s}${because of&nbsp;}~{es}${because of&nbsp;}~{}${due to&nbsp;}~{s}${due to&nbsp;}~{es}${due to&nbsp;}~{}${than&nbsp;}~{s}${than&nbsp;}~{es}${than&nbsp;}~{}"
  1025. },
  1026. {
  1027. "id": ".pl.$.acc.",
  1028. "value": "{}~{s}${}~{es}${}~{}${to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}"
  1029. },
  1030. {
  1031. "id": "$.pl.$.acc.",
  1032. "value": "{}~{s}${}~{es}${}~{}${to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}"
  1033. },
  1034. {
  1035. "id": ".1p.$.pl.$.acc.",
  1036. "value": "{}~{s}${}~{es}${}~{}${to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}"
  1037. },
  1038. {
  1039. "id": ".1p.$.pl.$.acc.",
  1040. "value": "{}~{s}${}~{es}${}~{}${to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}"
  1041. },
  1042. {
  1043. "id": ".m.$.pl.$.acc.",
  1044. "value": "{}~{s}${}~{es}${}~{}${to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}"
  1045. },
  1046. {
  1047. "id": ".nt.$.pl.$.acc.",
  1048. "value": "{}~{s}${}~{es}${}~{}${to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}"
  1049. },
  1050. {
  1051. "id": ".f.$.pl.$.acc.",
  1052. "value": "{}~{s}${}~{es}${}~{}${to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}"
  1053. },
  1054. {
  1055. "id": ".pl.$.dat.",
  1056. "value": "{to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}${for&nbsp;}~{s}${for&nbsp;}~{es}${for&nbsp;}~{}"
  1057. },
  1058. {
  1059. "id": "$.pl.$.dat.",
  1060. "value": "{to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}${for&nbsp;}~{s}${for&nbsp;}~{es}${for&nbsp;}~{}"
  1061. },
  1062. {
  1063. "id": ".1p.$.pl.$.dat.",
  1064. "value": "{to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}${for&nbsp;}~{s}${for&nbsp;}~{es}${for&nbsp;}~{}"
  1065. },
  1066. {
  1067. "id": ".1p.$.pl.$.dat.",
  1068. "value": "{to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}${for&nbsp;}~{s}${for&nbsp;}~{es}${for&nbsp;}~{}"
  1069. },
  1070. {
  1071. "id": ".m.$.pl.$.dat.",
  1072. "value": "{to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}${for&nbsp;}~{s}${for&nbsp;}~{es}${for&nbsp;}~{}"
  1073. },
  1074. {
  1075. "id": ".nt.$.pl.$.dat.",
  1076. "value": "{to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}${for&nbsp;}~{s}${for&nbsp;}~{es}${for&nbsp;}~{}"
  1077. },
  1078. {
  1079. "id": ".f.$.pl.$.dat.",
  1080. "value": "{to&nbsp;}~{s}${to&nbsp;}~{es}${to&nbsp;}~{}${for&nbsp;}~{s}${for&nbsp;}~{es}${for&nbsp;}~{}"
  1081. },
  1082. {
  1083. "id": ".pl.$.gen.",
  1084. "value": "{of&nbsp;}~{s}${of&nbsp;}~{es}${of&nbsp;}~{}${}~{s’}${}~{es’}${}~{’s}"
  1085. },
  1086. {
  1087. "id": "$.pl.$.gen.",
  1088. "value": "{of&nbsp;}~{s}${of&nbsp;}~{es}${of&nbsp;}~{}${}~{s’}${}~{es’}${}~{’s}"
  1089. },
  1090. {
  1091. "id": ".1p.$.pl.$.gen.",
  1092. "value": "{of&nbsp;}~{s}${of&nbsp;}~{es}${of&nbsp;}~{}${}~{s’}${}~{es’}${}~{’s}"
  1093. },
  1094. {
  1095. "id": ".1p.$.pl.$.gen.",
  1096. "value": "{of&nbsp;}~{s}${of&nbsp;}~{es}${of&nbsp;}~{}${}~{s’}${}~{es’}${}~{’s}"
  1097. },
  1098. {
  1099. "id": ".m.$.pl.$.gen.",
  1100. "value": "{of&nbsp;}~{s}${of&nbsp;}~{es}${of&nbsp;}~{}${}~{s’}${}~{es’}${}~{’s}"
  1101. },
  1102. {
  1103. "id": ".nt.$.pl.$.gen.",
  1104. "value": "{of&nbsp;}~{s}${of&nbsp;}~{es}${of&nbsp;}~{}${}~{s’}${}~{es’}${}~{’s}"
  1105. },
  1106. {
  1107. "id": ".f.$.pl.$.gen.",
  1108. "value": "{of&nbsp;}~{s}${of&nbsp;}~{es}${of&nbsp;}~{}${}~{s’}${}~{es’}${}~{’s}"
  1109. },
  1110. {
  1111. "id": ".pl.$.inst.",
  1112. "value": "{by&nbsp;}~{s}${by&nbsp;}~{es}${by&nbsp;}~{}${through&nbsp;}~{s}${through&nbsp;}~{es}${through&nbsp;}~{}${with&nbsp;}~{s}${with&nbsp;}~{es}${with&nbsp;}~{}${according to&nbsp;}~{s}${according to&nbsp;}~{es}${according to&nbsp;}~{}"
  1113. },
  1114. {
  1115. "id": "$.pl.$.inst.",
  1116. "value": "{by&nbsp;}~{s}${by&nbsp;}~{es}${by&nbsp;}~{}${through&nbsp;}~{s}${through&nbsp;}~{es}${through&nbsp;}~{}${with&nbsp;}~{s}${with&nbsp;}~{es}${with&nbsp;}~{}${according to&nbsp;}~{s}${according to&nbsp;}~{es}${according to&nbsp;}~{}"
  1117. },
  1118. {
  1119. "id": ".1p.$.pl.$.inst.",
  1120. "value": "{by&nbsp;}~{s}${by&nbsp;}~{es}${by&nbsp;}~{}${through&nbsp;}~{s}${through&nbsp;}~{es}${through&nbsp;}~{}${with&nbsp;}~{s}${with&nbsp;}~{es}${with&nbsp;}~{}${according to&nbsp;}~{s}${according to&nbsp;}~{es}${according to&nbsp;}~{}"
  1121. },
  1122. {
  1123. "id": ".1p.$.pl.$.inst.",
  1124. "value": "{by&nbsp;}~{s}${by&nbsp;}~{es}${by&nbsp;}~{}${through&nbsp;}~{s}${through&nbsp;}~{es}${through&nbsp;}~{}${with&nbsp;}~{s}${with&nbsp;}~{es}${with&nbsp;}~{}${according to&nbsp;}~{s}${according to&nbsp;}~{es}${according to&nbsp;}~{}"
  1125. },
  1126. {
  1127. "id": ".m.$.pl.$.inst.",
  1128. "value": "{by&nbsp;}~{s}${by&nbsp;}~{es}${by&nbsp;}~{}${through&nbsp;}~{s}${through&nbsp;}~{es}${through&nbsp;}~{}${with&nbsp;}~{s}${with&nbsp;}~{es}${with&nbsp;}~{}${according to&nbsp;}~{s}${according to&nbsp;}~{es}${according to&nbsp;}~{}"
  1129. },
  1130. {
  1131. "id": ".nt.$.pl.$.inst.",
  1132. "value": "{by&nbsp;}~{s}${by&nbsp;}~{es}${by&nbsp;}~{}${through&nbsp;}~{s}${through&nbsp;}~{es}${through&nbsp;}~{}${with&nbsp;}~{s}${with&nbsp;}~{es}${with&nbsp;}~{}${according to&nbsp;}~{s}${according to&nbsp;}~{es}${according to&nbsp;}~{}"
  1133. },
  1134. {
  1135. "id": ".f.$.pl.$.inst.",
  1136. "value": "{by&nbsp;}~{s}${by&nbsp;}~{es}${by&nbsp;}~{}${through&nbsp;}~{s}${through&nbsp;}~{es}${through&nbsp;}~{}${with&nbsp;}~{s}${with&nbsp;}~{es}${with&nbsp;}~{}${according to&nbsp;}~{s}${according to&nbsp;}~{es}${according to&nbsp;}~{}"
  1137. },
  1138. {
  1139. "id": ".pl.$.loc.",
  1140. "value": "{at&nbsp;}~{s}${at&nbsp;}~{es}${at&nbsp;}~{}${at&nbsp;}~{s time}${at&nbsp;}~{es time}${at&nbsp;}~{ time}${in&nbsp;}~{s place}${in&nbsp;}~{es place}${in&nbsp;}~{ place}${in&nbsp;}~{s case}${in&nbsp;}~{es case}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1141. },
  1142. {
  1143. "id": "$.pl.$.loc.",
  1144. "value": "{at&nbsp;}~{s}${at&nbsp;}~{es}${at&nbsp;}~{}${at&nbsp;}~{s time}${at&nbsp;}~{es time}${at&nbsp;}~{ time}${in&nbsp;}~{s place}${in&nbsp;}~{es place}${in&nbsp;}~{ place}${in&nbsp;}~{s case}${in&nbsp;}~{es case}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1145. },
  1146. {
  1147. "id": ".1p.$.pl.$.loc.",
  1148. "value": "{at&nbsp;}~{s}${at&nbsp;}~{es}${at&nbsp;}~{}${at&nbsp;}~{s time}${at&nbsp;}~{es time}${at&nbsp;}~{ time}${in&nbsp;}~{s place}${in&nbsp;}~{es place}${in&nbsp;}~{ place}${in&nbsp;}~{s case}${in&nbsp;}~{es case}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1149. },
  1150. {
  1151. "id": ".1p.$.pl.$.loc.",
  1152. "value": "{at&nbsp;}~{s}${at&nbsp;}~{es}${at&nbsp;}~{}${at&nbsp;}~{s time}${at&nbsp;}~{es time}${at&nbsp;}~{ time}${in&nbsp;}~{s place}${in&nbsp;}~{es place}${in&nbsp;}~{ place}${in&nbsp;}~{s case}${in&nbsp;}~{es case}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1153. },
  1154. {
  1155. "id": ".m.$.pl.$.loc.",
  1156. "value": "{at&nbsp;}~{s}${at&nbsp;}~{es}${at&nbsp;}~{}${at&nbsp;}~{s time}${at&nbsp;}~{es time}${at&nbsp;}~{ time}${in&nbsp;}~{s place}${in&nbsp;}~{es place}${in&nbsp;}~{ place}${in&nbsp;}~{s case}${in&nbsp;}~{es case}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1157. },
  1158. {
  1159. "id": ".nt.$.pl.$.loc.",
  1160. "value": "{at&nbsp;}~{s}${at&nbsp;}~{es}${at&nbsp;}~{}${at&nbsp;}~{s time}${at&nbsp;}~{es time}${at&nbsp;}~{ time}${in&nbsp;}~{s place}${in&nbsp;}~{es place}${in&nbsp;}~{ place}${in&nbsp;}~{s case}${in&nbsp;}~{es case}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1161. },
  1162. {
  1163. "id": ".f.$.pl.$.loc.",
  1164. "value": "{at&nbsp;}~{s}${at&nbsp;}~{es}${at&nbsp;}~{}${at&nbsp;}~{s time}${at&nbsp;}~{es time}${at&nbsp;}~{ time}${in&nbsp;}~{s place}${in&nbsp;}~{es place}${in&nbsp;}~{ place}${in&nbsp;}~{s case}${in&nbsp;}~{es case}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1165. },
  1166. {
  1167. "id": ".pl.$.nom.",
  1168. "value": "{}~{s}${}~{es}${}~{}"
  1169. },
  1170. {
  1171. "id": "$.pl.$.nom.",
  1172. "value": "{}~{s}${}~{es}${}~{}"
  1173. },
  1174. {
  1175. "id": ".1p.$.pl.$.nom.",
  1176. "value": "{}~{s}${}~{es}${}~{}"
  1177. },
  1178. {
  1179. "id": ".1p.$.pl.$.nom.",
  1180. "value": "{}~{s}${}~{es}${}~{}"
  1181. },
  1182. {
  1183. "id": ".m.$.pl.$.nom.",
  1184. "value": "{}~{s}${}~{es}${}~{}"
  1185. },
  1186. {
  1187. "id": ".nt.$.pl.$.nom.",
  1188. "value": "{}~{s}${}~{es}${}~{}"
  1189. },
  1190. {
  1191. "id": ".f.$.pl.$.nom.",
  1192. "value": "{}~{s}${}~{es}${}~{}"
  1193. },
  1194. {
  1195. "id": ".pl.$.voc.",
  1196. "value": "{}~{s!}${}~{es!}${}~{!}${Oh&nbsp;}~{s}${Oh&nbsp;}~{es}${Oh&nbsp;}~{}"
  1197. },
  1198. {
  1199. "id": "$.pl.$.voc.",
  1200. "value": "{}~{s!}${}~{es!}${}~{!}${Oh&nbsp;}~{s}${Oh&nbsp;}~{es}${Oh&nbsp;}~{}"
  1201. },
  1202. {
  1203. "id": ".1p.$.pl.$.voc.",
  1204. "value": "{}~{s!}${}~{es!}${}~{!}${Oh&nbsp;}~{s}${Oh&nbsp;}~{es}${Oh&nbsp;}~{}"
  1205. },
  1206. {
  1207. "id": ".1p.$.pl.$.voc.",
  1208. "value": "{}~{s!}${}~{es!}${}~{!}${Oh&nbsp;}~{s}${Oh&nbsp;}~{es}${Oh&nbsp;}~{}"
  1209. },
  1210. {
  1211. "id": ".m.$.pl.$.voc.",
  1212. "value": "{}~{s!}${}~{es!}${}~{!}${Oh&nbsp;}~{s}${Oh&nbsp;}~{es}${Oh&nbsp;}~{}"
  1213. },
  1214. {
  1215. "id": ".nt.$.pl.$.voc.",
  1216. "value": "{}~{s!}${}~{es!}${}~{!}${Oh&nbsp;}~{s}${Oh&nbsp;}~{es}${Oh&nbsp;}~{}"
  1217. },
  1218. {
  1219. "id": ".f.$.pl.$.voc.",
  1220. "value": "{}~{s!}${}~{es!}${}~{!}${Oh&nbsp;}~{s}${Oh&nbsp;}~{es}${Oh&nbsp;}~{}"
  1221. },
  1222. {
  1223. "id": ".sg.$.abl.",
  1224. "value": "{from&nbsp;}~{}${because of&nbsp;}~{}${due to&nbsp;}~{}${than&nbsp;}~{}"
  1225. },
  1226. {
  1227. "id": "$.sg.$.abl.",
  1228. "value": "{from&nbsp;}~{}${because of&nbsp;}~{}${due to&nbsp;}~{}${than&nbsp;}~{}"
  1229. },
  1230. {
  1231. "id": ".1p.$.sg.$.abl.",
  1232. "value": "{from&nbsp;}~{}${because of&nbsp;}~{}${due to&nbsp;}~{}${than&nbsp;}~{}"
  1233. },
  1234. {
  1235. "id": ".1p.$.sg.$.abl.",
  1236. "value": "{from&nbsp;}~{}${because of&nbsp;}~{}${due to&nbsp;}~{}${than&nbsp;}~{}"
  1237. },
  1238. {
  1239. "id": ".m.$.sg.$.abl.",
  1240. "value": "{from&nbsp;}~{}${because of&nbsp;}~{}${due to&nbsp;}~{}${than&nbsp;}~{}"
  1241. },
  1242. {
  1243. "id": ".nt.$.sg.$.abl.",
  1244. "value": "{from&nbsp;}~{}${because of&nbsp;}~{}${due to&nbsp;}~{}${than&nbsp;}~{}"
  1245. },
  1246. {
  1247. "id": ".f.$.sg.$.abl.",
  1248. "value": "{from&nbsp;}~{}${because of&nbsp;}~{}${due to&nbsp;}~{}${than&nbsp;}~{}"
  1249. },
  1250. {
  1251. "id": ".sg.$.acc.",
  1252. "value": "{}~{}${to&nbsp;}~{}"
  1253. },
  1254. {
  1255. "id": "$.sg.$.acc.",
  1256. "value": "{}~{}${to&nbsp;}~{}"
  1257. },
  1258. {
  1259. "id": ".1p.$.sg.$.acc.",
  1260. "value": "{}~{}${to&nbsp;}~{}"
  1261. },
  1262. {
  1263. "id": ".1p.$.sg.$.acc.",
  1264. "value": "{}~{}${to&nbsp;}~{}"
  1265. },
  1266. {
  1267. "id": ".m.$.sg.$.acc.",
  1268. "value": "{}~{}${to&nbsp;}~{}"
  1269. },
  1270. {
  1271. "id": ".nt.$.sg.$.acc.",
  1272. "value": "{}~{}${to&nbsp;}~{}"
  1273. },
  1274. {
  1275. "id": ".f.$.sg.$.acc.",
  1276. "value": "{}~{}${to&nbsp;}~{}"
  1277. },
  1278. {
  1279. "id": ".sg.$.dat.",
  1280. "value": "{to&nbsp;}~{}${for&nbsp;}~{}"
  1281. },
  1282. {
  1283. "id": "$.sg.$.dat.",
  1284. "value": "{to&nbsp;}~{}${for&nbsp;}~{}"
  1285. },
  1286. {
  1287. "id": ".1p.$.sg.$.dat.",
  1288. "value": "{to&nbsp;}~{}${for&nbsp;}~{}"
  1289. },
  1290. {
  1291. "id": ".1p.$.sg.$.dat.",
  1292. "value": "{to&nbsp;}~{}${for&nbsp;}~{}"
  1293. },
  1294. {
  1295. "id": ".m.$.sg.$.dat.",
  1296. "value": "{to&nbsp;}~{}${for&nbsp;}~{}"
  1297. },
  1298. {
  1299. "id": ".nt.$.sg.$.dat.",
  1300. "value": "{to&nbsp;}~{}${for&nbsp;}~{}"
  1301. },
  1302. {
  1303. "id": ".f.$.sg.$.dat.",
  1304. "value": "{to&nbsp;}~{}${for&nbsp;}~{}"
  1305. },
  1306. {
  1307. "id": ".sg.$.gen.",
  1308. "value": "{of&nbsp;}~{}${}~{’s}"
  1309. },
  1310. {
  1311. "id": "$.sg.$.gen.",
  1312. "value": "{of&nbsp;}~{}${}~{’s}"
  1313. },
  1314. {
  1315. "id": ".1p.$.sg.$.gen.",
  1316. "value": "{of&nbsp;}~{}${}~{’s}"
  1317. },
  1318. {
  1319. "id": ".1p.$.sg.$.gen.",
  1320. "value": "{of&nbsp;}~{}${}~{’s}"
  1321. },
  1322. {
  1323. "id": ".m.$.sg.$.gen.",
  1324. "value": "{of&nbsp;}~{}${}~{’s}"
  1325. },
  1326. {
  1327. "id": ".nt.$.sg.$.gen.",
  1328. "value": "{of&nbsp;}~{}${}~{’s}"
  1329. },
  1330. {
  1331. "id": ".f.$.sg.$.gen.",
  1332. "value": "{of&nbsp;}~{}${}~{’s}"
  1333. },
  1334. {
  1335. "id": ".sg.$.inst.",
  1336. "value": "{by&nbsp;}~{}${through&nbsp;}~{}${with&nbsp;}~{}${according to&nbsp;}~{}"
  1337. },
  1338. {
  1339. "id": "$.sg.$.inst.",
  1340. "value": "{by&nbsp;}~{}${through&nbsp;}~{}${with&nbsp;}~{}${according to&nbsp;}~{}"
  1341. },
  1342. {
  1343. "id": ".1p.$.sg.$.inst.",
  1344. "value": "{by&nbsp;}~{}${through&nbsp;}~{}${with&nbsp;}~{}${according to&nbsp;}~{}"
  1345. },
  1346. {
  1347. "id": ".1p.$.sg.$.inst.",
  1348. "value": "{by&nbsp;}~{}${through&nbsp;}~{}${with&nbsp;}~{}${according to&nbsp;}~{}"
  1349. },
  1350. {
  1351. "id": ".m.$.sg.$.inst.",
  1352. "value": "{by&nbsp;}~{}${through&nbsp;}~{}${with&nbsp;}~{}${according to&nbsp;}~{}"
  1353. },
  1354. {
  1355. "id": ".nt.$.sg.$.inst.",
  1356. "value": "{by&nbsp;}~{}${through&nbsp;}~{}${with&nbsp;}~{}${according to&nbsp;}~{}"
  1357. },
  1358. {
  1359. "id": ".f.$.sg.$.inst.",
  1360. "value": "{by&nbsp;}~{}${through&nbsp;}~{}${with&nbsp;}~{}${according to&nbsp;}~{}"
  1361. },
  1362. {
  1363. "id": ".sg.$.loc.",
  1364. "value": "{at&nbsp;}~{}${at&nbsp;}~{ time}${in&nbsp;}~{ place}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1365. },
  1366. {
  1367. "id": "$.sg.$.loc.",
  1368. "value": "{at&nbsp;}~{}${at&nbsp;}~{ time}${in&nbsp;}~{ place}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1369. },
  1370. {
  1371. "id": ".1p.$.sg.$.loc.",
  1372. "value": "{at&nbsp;}~{}${at&nbsp;}~{ time}${in&nbsp;}~{ place}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1373. },
  1374. {
  1375. "id": ".1p.$.sg.$.loc.",
  1376. "value": "{at&nbsp;}~{}${at&nbsp;}~{ time}${in&nbsp;}~{ place}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1377. },
  1378. {
  1379. "id": ".m.$.sg.$.loc.",
  1380. "value": "{at&nbsp;}~{}${at&nbsp;}~{ time}${in&nbsp;}~{ place}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1381. },
  1382. {
  1383. "id": ".nt.$.sg.$.loc.",
  1384. "value": "{at&nbsp;}~{}${at&nbsp;}~{ time}${in&nbsp;}~{ place}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1385. },
  1386. {
  1387. "id": ".f.$.sg.$.loc.",
  1388. "value": "{at&nbsp;}~{}${at&nbsp;}~{ time}${in&nbsp;}~{ place}${in&nbsp;}~{ case}${in&nbsp;}~{ship}"
  1389. },
  1390. {
  1391. "id": ".sg.$.nom.",
  1392. "value": "{}~{}"
  1393. },
  1394. {
  1395. "id": "$.sg.$.nom.",
  1396. "value": "{}~{}"
  1397. },
  1398. {
  1399. "id": ".1p.$.sg.$.nom.",
  1400. "value": "{}~{}"
  1401. },
  1402. {
  1403. "id": ".1p.$.sg.$.nom.",
  1404. "value": "{}~{}"
  1405. },
  1406. {
  1407. "id": ".m.$.sg.$.nom.",
  1408. "value": "{}~{}"
  1409. },
  1410. {
  1411. "id": ".nt.$.sg.$.nom.",
  1412. "value": "{}~{}"
  1413. },
  1414. {
  1415. "id": ".f.$.sg.$.nom.",
  1416. "value": "{}~{}"
  1417. },
  1418. {
  1419. "id": ".sg.$.voc.",
  1420. "value": "{}~{!}${Oh&nbsp;}~{}"
  1421. },
  1422. {
  1423. "id": "$.sg.$.voc.",
  1424. "value": "{}~{!}${Oh&nbsp;}~{}"
  1425. },
  1426. {
  1427. "id": ".1p.$.sg.$.voc.",
  1428. "value": "{}~{!}${Oh&nbsp;}~{}"
  1429. },
  1430. {
  1431. "id": ".1p.$.sg.$.voc.",
  1432. "value": "{}~{!}${Oh&nbsp;}~{}"
  1433. },
  1434. {
  1435. "id": ".m.$.sg.$.voc.",
  1436. "value": "{}~{!}${Oh&nbsp;}~{}"
  1437. },
  1438. {
  1439. "id": ".nt.$.sg.$.voc.",
  1440. "value": "{}~{!}${Oh&nbsp;}~{}"
  1441. },
  1442. {
  1443. "id": ".f.$.sg.$.voc.",
  1444. "value": "{}~{!}${Oh&nbsp;}~{}"
  1445. },
  1446. {
  1447. "id": ".1p.$.pl.$.aor.",
  1448. "value": "{we&nbsp;}~{ed}${we&nbsp;}~{d}${we have&nbsp;}~{ed}${we have&nbsp;}~{d}${we were&nbsp;}~{ing}${we did&nbsp;}~{}${we had&nbsp;}~{ed}${we had&nbsp;}~{d}"
  1449. },
  1450. {
  1451. "id": ".1p.$.pl.$.cond.",
  1452. "value": "{if we&nbsp;}~{}${we&nbsp;}~{}"
  1453. },
  1454. {
  1455. "id": ".1p.$.pl.$.fut.",
  1456. "value": "{we will&nbsp;}~{}${we shall&nbsp;}~{}${we&nbsp;}~{}${we&nbsp;}~{}${we&nbsp;}~{}${we’re going to&nbsp;}~{}"
  1457. },
  1458. {
  1459. "id": ".1p.$.pl.$.imp.",
  1460. "value": "{let’s&nbsp;}~{}${let’s&nbsp;}~{,please}${please let’s&nbsp;}~{}${please let’s&nbsp;}~{}${we could&nbsp;}~{}${we would&nbsp;}~{}"
  1461. },
  1462. {
  1463. "id": ".1p.$.pl.$.opt.",
  1464. "value": "{we should&nbsp;}~{}${we’d like&nbsp;}~{}${we have to&nbsp;}~{}${we must&nbsp;}~{}${we might&nbsp;}~{}${we may&nbsp;}~{}"
  1465. },
  1466. {
  1467. "id": ".1p.$.pl.$.pres.",
  1468. "value": "{we&nbsp;}~{}${we’re&nbsp;}~{ing}"
  1469. },
  1470. {
  1471. "id": ".1p.$.sg.$.aor.",
  1472. "value": "{I&nbsp;}~{ed}${I&nbsp;}~{d}${I have&nbsp;}~{ed}${I have&nbsp;}~{d}${I was&nbsp;}~{ing}${I did&nbsp;}~{}${I had&nbsp;}~{ed}${I had&nbsp;}~{d}"
  1473. },
  1474. {
  1475. "id": ".1p.$.sg.$.cond.",
  1476. "value": "{if I&nbsp;}~{}${I&nbsp;}~{}"
  1477. },
  1478. {
  1479. "id": ".1p.$.sg.$.fut.",
  1480. "value": "{I will&nbsp;}~{}${I shall&nbsp;}~{}${I&nbsp;}~{}${I&nbsp;}~{}${I&nbsp;}~{}${I’m going to&nbsp;}~{}"
  1481. },
  1482. {
  1483. "id": ".1p.$.sg.$.imp.",
  1484. "value": "{let me&nbsp;}~{}${let me&nbsp;}~{,please}${please let me&nbsp;}~{}${please let me&nbsp;}~{}${I could&nbsp;}~{}${I would&nbsp;}~{}"
  1485. },
  1486. {
  1487. "id": ".1p.$.sg.$.opt.",
  1488. "value": "{I should&nbsp;}~{}${I’d like&nbsp;}~{}${I have to&nbsp;}~{}${I must&nbsp;}~{}${I might&nbsp;}~{}${I may&nbsp;}~{}"
  1489. },
  1490. {
  1491. "id": ".1p.$.sg.$.pres.",
  1492. "value": "{I&nbsp;}~{}${I’m&nbsp;}~{ing}"
  1493. },
  1494. {
  1495. "id": ".2p.$.pl.$.aor.",
  1496. "value": "{you&nbsp;}~{ed}${your highness&nbsp;}~{ed}${you all&nbsp;}~{ed}${you&nbsp;}~{d}${your highness&nbsp;}~{d}${you all&nbsp;}~{d}${you have&nbsp;}~{ed}${your highness have&nbsp;}~{ed}${you all have&nbsp;}~{ed}${you have&nbsp;}~{d}${your highness have&nbsp;}~{d}${you all have&nbsp;}~{d}${you were&nbsp;}~{ing}${your highness were&nbsp;}~{ing}${you all were&nbsp;}~{ing}${you did&nbsp;}~{}${your highness did&nbsp;}~{}${you all did&nbsp;}~{}${you had&nbsp;}~{ed}${your highness had&nbsp;}~{ed}${you all had&nbsp;}~{ed}${you had&nbsp;}~{d}${your highness had&nbsp;}~{d}${you all had&nbsp;}~{d}"
  1497. },
  1498. {
  1499. "id": ".2p.$.pl.$.cond.",
  1500. "value": "{if you&nbsp;}~{}${if your highness&nbsp;}~{}${if you all&nbsp;}~{}${you&nbsp;}~{}${your highness&nbsp;}~{}${you all&nbsp;}~{}"
  1501. },
  1502. {
  1503. "id": ".2p.$.pl.$.fut.",
  1504. "value": "{you will&nbsp;}~{}${your highness will&nbsp;}~{}${you all will&nbsp;}~{}${you shall&nbsp;}~{}${your highness shall&nbsp;}~{}${you all shall&nbsp;}~{}${you&nbsp;}~{}${your highness&nbsp;}~{}${you all&nbsp;}~{}${you&nbsp;}~{}${your highness&nbsp;}~{}${you all&nbsp;}~{}${you&nbsp;}~{}${your highness&nbsp;}~{}${you all&nbsp;}~{}${you’re going to&nbsp;}~{}${your highness’re going to&nbsp;}~{}${you all’re going to&nbsp;}~{}"
  1505. },
  1506. {
  1507. "id": ".2p.$.pl.$.imp.",
  1508. "value": "{please&nbsp;}~{}${please&nbsp;}~{}${please&nbsp;}~{}${you&nbsp;}~{}${your highness&nbsp;}~{}${you all&nbsp;}~{}${you&nbsp;}~{,please}${your highness&nbsp;}~{,please}${you all&nbsp;}~{,please}${you&nbsp;}~{,please}${your highness&nbsp;}~{,please}${you all&nbsp;}~{,please}${you could&nbsp;}~{}${your highness could&nbsp;}~{}${you all could&nbsp;}~{}${would you please&nbsp;}~{}${would your highness please&nbsp;}~{}${would you all please&nbsp;}~{}${you would&nbsp;}~{}${your highness would&nbsp;}~{}${you all would&nbsp;}~{}"
  1509. },
  1510. {
  1511. "id": ".2p.$.pl.$.opt.",
  1512. "value": "{you should&nbsp;}~{}${your highness should&nbsp;}~{}${you all should&nbsp;}~{}${you’d like&nbsp;}~{}${your highness’d like&nbsp;}~{}${you all’d like&nbsp;}~{}${you have to&nbsp;}~{}${your highness have to&nbsp;}~{}${you all have to&nbsp;}~{}${you must&nbsp;}~{}${your highness must&nbsp;}~{}${you all must&nbsp;}~{}${you might&nbsp;}~{}${your highness might&nbsp;}~{}${you all might&nbsp;}~{}${you may&nbsp;}~{}${your highness may&nbsp;}~{}${you all may&nbsp;}~{}"
  1513. },
  1514. {
  1515. "id": ".2p.$.pl.$.pres.",
  1516. "value": "{you&nbsp;}~{}${your highness&nbsp;}~{}${you all&nbsp;}~{}${you’re&nbsp;}~{ing}${your highness’re&nbsp;}~{ing}${you all’re&nbsp;}~{ing}"
  1517. },
  1518. {
  1519. "id": ".2p.$.sg.$.aor.",
  1520. "value": "{you&nbsp;}~{ed}${you&nbsp;}~{d}${you have&nbsp;}~{ed}${you have&nbsp;}~{d}${you were&nbsp;}~{ing}${you did&nbsp;}~{}${you had&nbsp;}~{ed}${you had&nbsp;}~{d}"
  1521. },
  1522. {
  1523. "id": ".2p.$.sg.$.cond.",
  1524. "value": "{if you&nbsp;}~{}${you&nbsp;}~{}"
  1525. },
  1526. {
  1527. "id": ".2p.$.sg.$.fut.",
  1528. "value": "{you will&nbsp;}~{}${you shall&nbsp;}~{}${you&nbsp;}~{}${you&nbsp;}~{}${you&nbsp;}~{}${you’re going to&nbsp;}~{}"
  1529. },
  1530. {
  1531. "id": ".2p.$.sg.$.imp.",
  1532. "value": "{please&nbsp;}~{}${you&nbsp;}~{}${you&nbsp;}~{,please}${you&nbsp;}~{,please}${you could&nbsp;}~{}${would you please&nbsp;}~{}${you would&nbsp;}~{}"
  1533. },
  1534. {
  1535. "id": ".2p.$.sg.$.opt.",
  1536. "value": "{you should&nbsp;}~{}${you’d like&nbsp;}~{}${you have to&nbsp;}~{}${you must&nbsp;}~{}${you might&nbsp;}~{}${you may&nbsp;}~{}"
  1537. },
  1538. {
  1539. "id": ".2p.$.sg.$.pres.",
  1540. "value": "{you&nbsp;}~{}${you’re&nbsp;}~{ing}"
  1541. },
  1542. {
  1543. "id": ".3p.$.pl.$.aor.",
  1544. "value": "{they&nbsp;}~{ed}${they&nbsp;}~{d}${they have&nbsp;}~{ed}${they have&nbsp;}~{d}${they were&nbsp;}~{ing}${they did&nbsp;}~{}${they had&nbsp;}~{ed}${they had&nbsp;}~{d}"
  1545. },
  1546. {
  1547. "id": ".3p.$.pl.$.cond.",
  1548. "value": "{if they&nbsp;}~{}${they&nbsp;}~{}"
  1549. },
  1550. {
  1551. "id": ".3p.$.pl.$.fut.",
  1552. "value": "{they will&nbsp;}~{}${they shall&nbsp;}~{}${they&nbsp;}~{}${they&nbsp;}~{}${they&nbsp;}~{}${they’re going to&nbsp;}~{}"
  1553. },
  1554. {
  1555. "id": ".3p.$.pl.$.imp.",
  1556. "value": "{let them&nbsp;}~{}${let them&nbsp;}~{,please}${please let them&nbsp;}~{}${please let them&nbsp;}~{}${they could&nbsp;}~{}${they would&nbsp;}~{}"
  1557. },
  1558. {
  1559. "id": ".3p.$.pl.$.opt.",
  1560. "value": "{they should&nbsp;}~{}${they’d like&nbsp;}~{}${they have to&nbsp;}~{}${they must&nbsp;}~{}${they might&nbsp;}~{}${they may&nbsp;}~{}"
  1561. },
  1562. {
  1563. "id": ".3p.$.pl.$.pres.",
  1564. "value": "{they&nbsp;}~{}${they’re&nbsp;}~{ing}"
  1565. },
  1566. {
  1567. "id": ".3p.$.sg.$.aor.",
  1568. "value": "{he&nbsp;}~{ed}${she&nbsp;}~{ed}${it&nbsp;}~{ed}${he&nbsp;}~{d}${she&nbsp;}~{d}${it&nbsp;}~{d}${he has&nbsp;}~{ed}${she has&nbsp;}~{ed}${it has&nbsp;}~{ed}${he has&nbsp;}~{d}${she has&nbsp;}~{d}${it has&nbsp;}~{d}${he was&nbsp;}~{ing}${she was&nbsp;}~{ing}${it was&nbsp;}~{ing}${he did&nbsp;}~{}${she did&nbsp;}~{}${it did&nbsp;}~{}${he had&nbsp;}~{ed}${she had&nbsp;}~{ed}${it had&nbsp;}~{ed}${he had&nbsp;}~{d}${she had&nbsp;}~{d}${it had&nbsp;}~{d}"
  1569. },
  1570. {
  1571. "id": ".3p.$.sg.$.cond.",
  1572. "value": "{if he&nbsp;}~{}${if she&nbsp;}~{}${if it&nbsp;}~{}${he&nbsp;}~{}${she&nbsp;}~{}${it&nbsp;}~{}"
  1573. },
  1574. {
  1575. "id": ".3p.$.sg.$.fut.",
  1576. "value": "{he will&nbsp;}~{}${she will&nbsp;}~{}${it will&nbsp;}~{}${he shall&nbsp;}~{}${she shall&nbsp;}~{}${it shall&nbsp;}~{}${he&nbsp;}~{}${she&nbsp;}~{}${it&nbsp;}~{}${he&nbsp;}~{}${she&nbsp;}~{}${it&nbsp;}~{}${he&nbsp;}~{}${she&nbsp;}~{}${it&nbsp;}~{}${he’s going to&nbsp;}~{}${she’s going to&nbsp;}~{}${it’s going to&nbsp;}~{}"
  1577. },
  1578. {
  1579. "id": ".3p.$.sg.$.imp.",
  1580. "value": "{let him&nbsp;}~{}${let her&nbsp;}~{}${let it&nbsp;}~{}${let him&nbsp;}~{,please}${let her&nbsp;}~{,please}${let it&nbsp;}~{,please}${please let him&nbsp;}~{}${please let her&nbsp;}~{}${please let it&nbsp;}~{}${please let him&nbsp;}~{}${please let her&nbsp;}~{}${please let it&nbsp;}~{}${he could&nbsp;}~{}${she could&nbsp;}~{}${it could&nbsp;}~{}${he would&nbsp;}~{}${she would&nbsp;}~{}${it would&nbsp;}~{}"
  1581. },
  1582. {
  1583. "id": ".3p.$.sg.$.opt.",
  1584. "value": "{he should&nbsp;}~{}${she should&nbsp;}~{}${it should&nbsp;}~{}${he’d like&nbsp;}~{}${she’d like&nbsp;}~{}${it’d like&nbsp;}~{}${he has to&nbsp;}~{}${she has to&nbsp;}~{}${it has to&nbsp;}~{}${he must&nbsp;}~{}${she must&nbsp;}~{}${it must&nbsp;}~{}${he might&nbsp;}~{}${she might&nbsp;}~{}${it might&nbsp;}~{}${he may&nbsp;}~{}${she may&nbsp;}~{}${it may&nbsp;}~{}"
  1585. },
  1586. {
  1587. "id": ".3p.$.sg.$.pres.",
  1588. "value": "{he&nbsp;}~{s}${she&nbsp;}~{s}${it&nbsp;}~{s}${he&nbsp;}~{es}${she&nbsp;}~{es}${it&nbsp;}~{es}${he’s&nbsp;}~{ing}${she’s&nbsp;}~{ing}${it’s&nbsp;}~{ing}"
  1589. },
  1590. {
  1591. "id": ".nom.",
  1592. "value": "~"
  1593. },
  1594. {
  1595. "id": ".voc.",
  1596. "value": "~"
  1597. },
  1598. {
  1599. "id": ".acc.",
  1600. "value": "~"
  1601. },
  1602. {
  1603. "id": ".gen.",
  1604. "value": "{of&nbsp;}~"
  1605. },
  1606. {
  1607. "id": ".dat.",
  1608. "value": "{to&nbsp;}~"
  1609. },
  1610. {
  1611. "id": ".inst.",
  1612. "value": "{by&nbsp;}~"
  1613. },
  1614. {
  1615. "id": ".abl.",
  1616. "value": "{from&nbsp;}~"
  1617. },
  1618. {
  1619. "id": ".loc.",
  1620. "value": "{at&nbsp;}~"
  1621. },
  1622. {
  1623. "id": ".imp.",
  1624. "value": "{make to&nbsp;}~"
  1625. },
  1626. {
  1627. "id": ".cond.",
  1628. "value": "{if}"
  1629. },
  1630. {
  1631. "id": ".opt.",
  1632. "value": "{should&nbsp;}~"
  1633. },
  1634. {
  1635. "id": ".pres.",
  1636. "value": "~"
  1637. },
  1638. {
  1639. "id": ".aor.",
  1640. "value": "{did&nbsp;}~"
  1641. },
  1642. {
  1643. "id": ".pf.",
  1644. "value": "{have&nbsp;}~"
  1645. },
  1646. {
  1647. "id": ".fut.",
  1648. "value": "{will&nbsp;}~{(ed)}"
  1649. },
  1650. {
  1651. "id": ".prp.",
  1652. "value": "{be&nbsp;}~{ing}"
  1653. },
  1654. {
  1655. "id": ".prpa.",
  1656. "value": "~{ing}"
  1657. },
  1658. {
  1659. "id": ".prpp.",
  1660. "value": "{being&nbsp;}~{(ed)}"
  1661. },
  1662. {
  1663. "id": ".pp.",
  1664. "value": "~{(ed)}"
  1665. },
  1666. {
  1667. "id": ".ppa.",
  1668. "value": "~{(ed)}"
  1669. },
  1670. {
  1671. "id": ".ppp.",
  1672. "value": "{have been&nbsp;}~{(ed)}"
  1673. },
  1674. {
  1675. "id": ".futp.",
  1676. "value": "~{ing}"
  1677. },
  1678. {
  1679. "id": ".fpa.",
  1680. "value": "{should&nbsp;}~"
  1681. },
  1682. {
  1683. "id": ".fpp.",
  1684. "value": "{should be&nbsp;}~{(ed)}"
  1685. },
  1686. {
  1687. "id": ".grd.",
  1688. "value": "{should be&nbsp;}~{(ed)}"
  1689. },
  1690. {
  1691. "id": ".pass.",
  1692. "value": "{be&nbsp;}~{(ed)}"
  1693. },
  1694. {
  1695. "id": ".caus.",
  1696. "value": "{make&nbsp;}~"
  1697. },
  1698. {
  1699. "id": ".desid.",
  1700. "value": "{want&nbsp;}~"
  1701. },
  1702. {
  1703. "id": ".intens.",
  1704. "value": "{insist&nbsp;}~"
  1705. },
  1706. {
  1707. "id": ".ger.",
  1708. "value": "{after&nbsp;}~{ing}${after having&nbsp;}~{ed}${after&nbsp;}~{ed}"
  1709. },
  1710. {
  1711. "id": ".abs.",
  1712. "value": "{after&nbsp;}~{ing}${after having&nbsp;}~{ed}${after&nbsp;}~{ed}"
  1713. },
  1714. {
  1715. "id": ".inf.",
  1716. "value": "{to&nbsp;}~"
  1717. },
  1718. {
  1719. "id": ".1p.$.sg.$.pass.",
  1720. "value": "{I’m&nbsp;}~{ed}"
  1721. },
  1722. {
  1723. "id": ".2p.$.sg.$.pass.",
  1724. "value": "{you’re&nbsp;}~{ed}"
  1725. },
  1726. {
  1727. "id": ".3p.$.sg.$.pass.",
  1728. "value": "{he’s&nbsp;}~{ed}"
  1729. },
  1730. {
  1731. "id": ".1p.$.pl.$.pass.",
  1732. "value": "{we’re&nbsp;}~{ed}"
  1733. },
  1734. {
  1735. "id": ".2p.$.pl.$.pass.",
  1736. "value": "{you all are&nbsp;}~{ed}"
  1737. },
  1738. {
  1739. "id": ".3p.$.pl.$.pass.",
  1740. "value": "{they’re&nbsp;}~{ed}"
  1741. },
  1742. {
  1743. "id": ".1p.$.sg.$.pass.",
  1744. "value": "{I’m&nbsp;}~{ed}"
  1745. },
  1746. {
  1747. "id": ".2p.$.sg.$.pass.",
  1748. "value": "{you’re&nbsp;}~{ed}"
  1749. },
  1750. {
  1751. "id": ".3p.$.sg.$.pass.",
  1752. "value": "{he’s&nbsp;}~{ed}"
  1753. },
  1754. {
  1755. "id": ".1p.$.pl.$.pass.",
  1756. "value": "{we’re&nbsp;}~{ed}"
  1757. },
  1758. {
  1759. "id": ".2p.$.pl.$.pass.",
  1760. "value": "{you all are&nbsp;}~{ed}"
  1761. },
  1762. {
  1763. "id": ".3p.$.pl.$.pass.",
  1764. "value": "{they’re&nbsp;}~{ed}"
  1765. },
  1766. {
  1767. "id": ".1p.$.sg.$.caus.",
  1768. "value": "{I make to&nbsp;}~"
  1769. },
  1770. {
  1771. "id": ".2p.$.sg.$.caus.",
  1772. "value": "{you make to&nbsp;}~"
  1773. },
  1774. {
  1775. "id": ".3p.$.sg.$.caus.",
  1776. "value": "{he makes to&nbsp;}~"
  1777. },
  1778. {
  1779. "id": ".1p.$.pl.$.caus.",
  1780. "value": "{we make to&nbsp;}~"
  1781. },
  1782. {
  1783. "id": ".2p.$.pl.$.caus.",
  1784. "value": "{you all make to&nbsp;}~"
  1785. },
  1786. {
  1787. "id": ".3p.$.pl.$.caus.",
  1788. "value": "{they make to&nbsp;}~"
  1789. },
  1790. {
  1791. "id": ".1p.$.sg.$.caus.",
  1792. "value": "{I make to&nbsp;}~"
  1793. },
  1794. {
  1795. "id": ".2p.$.sg.$.caus.",
  1796. "value": "{you make to&nbsp;}~"
  1797. },
  1798. {
  1799. "id": ".3p.$.sg.$.caus.",
  1800. "value": "{he makes to&nbsp;}~"
  1801. },
  1802. {
  1803. "id": ".1p.$.pl.$.caus.",
  1804. "value": "{we make to&nbsp;}~"
  1805. },
  1806. {
  1807. "id": ".2p.$.pl.$.caus.",
  1808. "value": "{you all make to&nbsp;}~"
  1809. },
  1810. {
  1811. "id": ".3p.$.pl.$.caus.",
  1812. "value": "{they make to&nbsp;}~"
  1813. },
  1814. {
  1815. "id": ".1p.$.sg.$.caus.opt.",
  1816. "value": "{我应令&nbsp;}~"
  1817. },
  1818. {
  1819. "id": ".2p.$.sg.$.caus.opt.",
  1820. "value": "{你应令&nbsp;}~"
  1821. },
  1822. {
  1823. "id": ".3p.$.sg.$.caus.opt.",
  1824. "value": "{其应令&nbsp;}~"
  1825. },
  1826. {
  1827. "id": ".1p.$.pl.$.caus.opt.",
  1828. "value": "{我们应令&nbsp;}~"
  1829. },
  1830. {
  1831. "id": ".2p.$.pl.$.caus.opt.",
  1832. "value": "{你们应令&nbsp;}~"
  1833. },
  1834. {
  1835. "id": ".3p.$.pl.$.caus.opt.",
  1836. "value": "{其等应令&nbsp;}~"
  1837. },
  1838. {
  1839. "id": ".1p.$.sg.$.caus.opt.",
  1840. "value": "{我应令&nbsp;}~"
  1841. },
  1842. {
  1843. "id": ".2p.$.sg.$.caus.opt.",
  1844. "value": "{你应令&nbsp;}~"
  1845. },
  1846. {
  1847. "id": ".3p.$.sg.$.caus.opt.",
  1848. "value": "{其应令&nbsp;}~"
  1849. },
  1850. {
  1851. "id": ".1p.$.pl.$.caus.opt.",
  1852. "value": "{我们应令&nbsp;}~"
  1853. },
  1854. {
  1855. "id": ".2p.$.pl.$.caus.opt.",
  1856. "value": "{你们应令&nbsp;}~"
  1857. },
  1858. {
  1859. "id": ".3p.$.pl.$.caus.opt.",
  1860. "value": "{其等应令&nbsp;}~"
  1861. },
  1862. {
  1863. "id": ".1p.$.sg.$.caus.pass.",
  1864. "value": "{我被令&nbsp;}~"
  1865. },
  1866. {
  1867. "id": ".2p.$.sg.$.caus.pass.",
  1868. "value": "{你被令&nbsp;}~"
  1869. },
  1870. {
  1871. "id": ".3p.$.sg.$.caus.pass.",
  1872. "value": "{其被令&nbsp;}~"
  1873. },
  1874. {
  1875. "id": ".1p.$.pl.$.caus.pass.",
  1876. "value": "{我们被令&nbsp;}~"
  1877. },
  1878. {
  1879. "id": ".2p.$.pl.$.caus.pass.",
  1880. "value": "{你们被令&nbsp;}~"
  1881. },
  1882. {
  1883. "id": ".3p.$.pl.$.caus.pass.",
  1884. "value": "{其等被令&nbsp;}~"
  1885. },
  1886. {
  1887. "id": ".1p.$.sg.$.caus.pass.",
  1888. "value": "{我被令&nbsp;}~"
  1889. },
  1890. {
  1891. "id": ".2p.$.sg.$.caus.pass.",
  1892. "value": "{你被令&nbsp;}~"
  1893. },
  1894. {
  1895. "id": ".3p.$.sg.$.caus.pass.",
  1896. "value": "{其被令&nbsp;}~"
  1897. },
  1898. {
  1899. "id": ".1p.$.pl.$.caus.pass.",
  1900. "value": "{我们被令&nbsp;}~"
  1901. },
  1902. {
  1903. "id": ".2p.$.pl.$.caus.pass.",
  1904. "value": "{你们被令&nbsp;}~"
  1905. },
  1906. {
  1907. "id": ".3p.$.pl.$.caus.pass.",
  1908. "value": "{其等被令&nbsp;}~"
  1909. },
  1910. {
  1911. "id": ".1p.$.sg.$.caus.doub.",
  1912. "value": "{派我令&nbsp;}~"
  1913. },
  1914. {
  1915. "id": ".2p.$.sg.$.caus.doub.",
  1916. "value": "{派你令&nbsp;}~"
  1917. },
  1918. {
  1919. "id": ".3p.$.sg.$.caus.doub.",
  1920. "value": "{派其令&nbsp;}~"
  1921. },
  1922. {
  1923. "id": ".1p.$.pl.$.caus.doub.",
  1924. "value": "{派我们令&nbsp;}~"
  1925. },
  1926. {
  1927. "id": ".2p.$.pl.$.caus.doub.",
  1928. "value": "{派你们令&nbsp;}~"
  1929. },
  1930. {
  1931. "id": ".3p.$.pl.$.caus.doub.",
  1932. "value": "{派其等令&nbsp;}~"
  1933. },
  1934. {
  1935. "id": ".1p.$.sg.$.caus.doub.",
  1936. "value": "{派我令&nbsp;}~"
  1937. },
  1938. {
  1939. "id": ".2p.$.sg.$.caus.doub.",
  1940. "value": "{派你令&nbsp;}~"
  1941. },
  1942. {
  1943. "id": ".3p.$.sg.$.caus.doub.",
  1944. "value": "{派其令&nbsp;}~"
  1945. },
  1946. {
  1947. "id": ".1p.$.pl.$.caus.doub.",
  1948. "value": "{派我们令&nbsp;}~"
  1949. },
  1950. {
  1951. "id": ".2p.$.pl.$.caus.doub.",
  1952. "value": "{派你们令&nbsp;}~"
  1953. },
  1954. {
  1955. "id": ".3p.$.pl.$.caus.doub.",
  1956. "value": "{派其等令&nbsp;}~"
  1957. }
  1958. ],
  1959. "parent_formula": [
  1960. {
  1961. "id": ".imp.",
  1962. "value": "令~"
  1963. },
  1964. {
  1965. "id": ".cond.",
  1966. "value": "若~"
  1967. },
  1968. {
  1969. "id": ".opt.",
  1970. "value": "想~"
  1971. },
  1972. {
  1973. "id": ".pres.",
  1974. "value": "正~"
  1975. },
  1976. {
  1977. "id": ".aor.",
  1978. "value": "曾~"
  1979. },
  1980. {
  1981. "id": ".pf.",
  1982. "value": "已~完"
  1983. },
  1984. {
  1985. "id": ".fut.",
  1986. "value": "将~"
  1987. },
  1988. {
  1989. "id": ".prp.",
  1990. "value": "正~的"
  1991. },
  1992. {
  1993. "id": ".prpa.",
  1994. "value": "正~的"
  1995. },
  1996. {
  1997. "id": ".prpp.",
  1998. "value": "正被~的"
  1999. },
  2000. {
  2001. "id": ".pp.",
  2002. "value": "已~的"
  2003. },
  2004. {
  2005. "id": ".ppa.",
  2006. "value": "已~的"
  2007. },
  2008. {
  2009. "id": ".ppp.",
  2010. "value": "已被~的"
  2011. },
  2012. {
  2013. "id": ".futp.",
  2014. "value": "将~的"
  2015. },
  2016. {
  2017. "id": ".fpa.",
  2018. "value": "将~的"
  2019. },
  2020. {
  2021. "id": ".fpp.",
  2022. "value": "应被~的"
  2023. },
  2024. {
  2025. "id": ".grd.",
  2026. "value": "应被~的"
  2027. },
  2028. {
  2029. "id": ".pass.",
  2030. "value": "被~"
  2031. },
  2032. {
  2033. "id": ".caus.",
  2034. "value": "使~"
  2035. },
  2036. {
  2037. "id": ".desid.",
  2038. "value": "要~"
  2039. },
  2040. {
  2041. "id": ".intens.",
  2042. "value": "执意~"
  2043. },
  2044. {
  2045. "id": ".ger.",
  2046. "value": "~完之后"
  2047. },
  2048. {
  2049. "id": ".abs.",
  2050. "value": "~完之后"
  2051. },
  2052. {
  2053. "id": ".inf.",
  2054. "value": "为了~"
  2055. }
  2056. ],
  2057. "dictname": [
  2058. {
  2059. "id": "bh",
  2060. "value": "巴漢-明法尊者"
  2061. },
  2062. {
  2063. "id": "sy",
  2064. "value": "漢譯-水野弘元"
  2065. },
  2066. {
  2067. "id": "user",
  2068. "value": "User Dict"
  2069. },
  2070. {
  2071. "id": "co",
  2072. "value": "Concise"
  2073. },
  2074. {
  2075. "id": "unkow",
  2076. "value": "Unknown"
  2077. },
  2078. {
  2079. "id": "vn",
  2080. "value": "SYS_IR-V"
  2081. },
  2082. {
  2083. "id": "SCR",
  2084. "value": "Root-中"
  2085. },
  2086. {
  2087. "id": "ENR",
  2088. "value": "Root-EN"
  2089. },
  2090. {
  2091. "id": "parts",
  2092. "value": "Parts"
  2093. },
  2094. {
  2095. "id": "sys_ir",
  2096. "value": "SYS_IR-K"
  2097. },
  2098. {
  2099. "id": "PM",
  2100. "value": "Pāḷi-Myr"
  2101. },
  2102. {
  2103. "id": "",
  2104. "value": ""
  2105. },
  2106. {
  2107. "id": "",
  2108. "value": ""
  2109. },
  2110. {
  2111. "id": "",
  2112. "value": ""
  2113. }
  2114. ],
  2115. "dictname_short": [
  2116. {
  2117. "id": "bh",
  2118. "value": "巴漢"
  2119. },
  2120. {
  2121. "id": "sy",
  2122. "value": "水漢"
  2123. },
  2124. {
  2125. "id": "user",
  2126. "value": "User"
  2127. },
  2128. {
  2129. "id": "co",
  2130. "value": "Con"
  2131. },
  2132. {
  2133. "id": "unkow",
  2134. "value": "Unknown"
  2135. },
  2136. {
  2137. "id": "vn",
  2138. "value": "SYS_IR-V"
  2139. },
  2140. {
  2141. "id": "SCR",
  2142. "value": "根中"
  2143. },
  2144. {
  2145. "id": "ENR",
  2146. "value": "Root"
  2147. },
  2148. {
  2149. "id": "parts",
  2150. "value": "Parts"
  2151. },
  2152. {
  2153. "id": "sys_ir",
  2154. "value": "IR"
  2155. },
  2156. {
  2157. "id": "PM",
  2158. "value": "Pāḷi-Myr"
  2159. },
  2160. {
  2161. "id": "",
  2162. "value": ""
  2163. },
  2164. {
  2165. "id": "",
  2166. "value": ""
  2167. },
  2168. {
  2169. "id": "",
  2170. "value": ""
  2171. }
  2172. ],
  2173. "language": {
  2174. "en": "English",
  2175. "si": "Sinhalese",
  2176. "my": "Brummese",
  2177. "zh": "Chinese",
  2178. "zh_cn": "Simple Chinese",
  2179. "zh_tw": "Traditional Chinese"
  2180. },
  2181. "LogType": {
  2182. "10": "edit channel",
  2183. "11": "new channel",
  2184. "20": "edit article",
  2185. "21": "new article",
  2186. "30": "lookup",
  2187. "40": "edit term",
  2188. "41": "lookup term",
  2189. "42": "_TERM_IN_SENT_",
  2190. "50": "search",
  2191. "60": "edit wbw",
  2192. "61": "realation map",
  2193. "62": "new wbw",
  2194. "70": "edit sentence",
  2195. "71": "new sentence",
  2196. "80": "edit collection",
  2197. "81": "new collection",
  2198. "90": "search nissaya",
  2199. "100": "open reader",
  2200. "101": "open studio"
  2201. }
  2202. }