en.json 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064
  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": "Bhumma",
  28. "book": "book",
  29. "book_mark": "Book Mark",
  30. "book_name": "book name",
  31. "bookmark": "bookmark...",
  32. "buddhist_calendar": "Buddhist Calendar",
  33. "budha": "Budha",
  34. "by": "By",
  35. "cancel": "Cancel",
  36. "canda": "Canda",
  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": "Contents",
  55. "copy": "copy",
  56. "copy_to_clipboard": "copy 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": "Guru",
  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": "Ravi",
  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": "Sora",
  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": "Sukka",
  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. "": ""
  487. },
  488. "grammastr": [
  489. {
  490. "id": "$",
  491. "value": " "
  492. },
  493. {
  494. "id": "$",
  495. "value": " "
  496. },
  497. {
  498. "id": "$",
  499. "value": " "
  500. },
  501. {
  502. "id": ".nt.",
  503. "value": "nt."
  504. },
  505. {
  506. "id": ".m.",
  507. "value": "m."
  508. },
  509. {
  510. "id": ".f.",
  511. "value": "f."
  512. },
  513. {
  514. "id": ".sg.",
  515. "value": "sg."
  516. },
  517. {
  518. "id": ".pl.",
  519. "value": "pl."
  520. },
  521. {
  522. "id": ".nom.",
  523. "value": "nom."
  524. },
  525. {
  526. "id": ".voc.",
  527. "value": "voc."
  528. },
  529. {
  530. "id": ".acc.",
  531. "value": "acc."
  532. },
  533. {
  534. "id": ".gen.",
  535. "value": "gen."
  536. },
  537. {
  538. "id": ".dat.",
  539. "value": "dat."
  540. },
  541. {
  542. "id": ".inst.",
  543. "value": "inst."
  544. },
  545. {
  546. "id": ".abl.",
  547. "value": "abl."
  548. },
  549. {
  550. "id": ".loc.",
  551. "value": "loc."
  552. },
  553. {
  554. "id": ".imp.",
  555. "value": "imp."
  556. },
  557. {
  558. "id": ".cond.",
  559. "value": "cond."
  560. },
  561. {
  562. "id": ".opt.",
  563. "value": "opt."
  564. },
  565. {
  566. "id": ".pres.",
  567. "value": "pres."
  568. },
  569. {
  570. "id": ".aor.",
  571. "value": "aor."
  572. },
  573. {
  574. "id": ".pf.",
  575. "value": "pf."
  576. },
  577. {
  578. "id": ".fut.",
  579. "value": "fut."
  580. },
  581. {
  582. "id": ".act.",
  583. "value": "act."
  584. },
  585. {
  586. "id": ".refl.",
  587. "value": "refl."
  588. },
  589. {
  590. "id": ".1p.",
  591. "value": "1p."
  592. },
  593. {
  594. "id": ".2p.",
  595. "value": "2p."
  596. },
  597. {
  598. "id": ".3p.",
  599. "value": "3p."
  600. },
  601. {
  602. "id": ".prp.",
  603. "value": "prp."
  604. },
  605. {
  606. "id": ".prpa.",
  607. "value": "prpa."
  608. },
  609. {
  610. "id": ".prpp.",
  611. "value": "prpp."
  612. },
  613. {
  614. "id": ".pp.",
  615. "value": "pp."
  616. },
  617. {
  618. "id": ".ppa.",
  619. "value": "ppa."
  620. },
  621. {
  622. "id": ".ppp.",
  623. "value": "ppp."
  624. },
  625. {
  626. "id": ".futp.",
  627. "value": "futp."
  628. },
  629. {
  630. "id": ".fpa.",
  631. "value": "fpa."
  632. },
  633. {
  634. "id": ".fpp.",
  635. "value": "fpp."
  636. },
  637. {
  638. "id": ".grd.",
  639. "value": "Grd."
  640. },
  641. {
  642. "id": ".pass.",
  643. "value": "Pass."
  644. },
  645. {
  646. "id": ".caus.",
  647. "value": "Caus."
  648. },
  649. {
  650. "id": ".desid.",
  651. "value": "desid."
  652. },
  653. {
  654. "id": ".intens.",
  655. "value": "intens."
  656. },
  657. {
  658. "id": ".denom.",
  659. "value": "denom."
  660. },
  661. {
  662. "id": ".ger.",
  663. "value": "Ger."
  664. },
  665. {
  666. "id": ".abs.",
  667. "value": "Abs."
  668. },
  669. {
  670. "id": ".inf.",
  671. "value": "Inf."
  672. },
  673. {
  674. "id": ".n.",
  675. "value": "n."
  676. },
  677. {
  678. "id": ".adj.",
  679. "value": "adj."
  680. },
  681. {
  682. "id": ".ti.",
  683. "value": "n.a."
  684. },
  685. {
  686. "id": ".num.",
  687. "value": "num."
  688. },
  689. {
  690. "id": ".pron.",
  691. "value": "pron."
  692. },
  693. {
  694. "id": ".v:base.",
  695. "value": "v:base."
  696. },
  697. {
  698. "id": ".ti:base.",
  699. "value": "n.a:base."
  700. },
  701. {
  702. "id": ".n:base.",
  703. "value": "n:base."
  704. },
  705. {
  706. "id": ".adj:base.",
  707. "value": "adj:base."
  708. },
  709. {
  710. "id": ".pron:base.",
  711. "value": "pron:base."
  712. },
  713. {
  714. "id": ".pron.per.",
  715. "value": "pron.per."
  716. },
  717. {
  718. "id": ".pron.demon.",
  719. "value": "pron.demon."
  720. },
  721. {
  722. "id": ".pron.rel.",
  723. "value": "pron.rel."
  724. },
  725. {
  726. "id": ".pron.interr.",
  727. "value": "pron.interr."
  728. },
  729. {
  730. "id": ".pron.indef.",
  731. "value": "pron.indef."
  732. },
  733. {
  734. "id": ".v.",
  735. "value": "v."
  736. },
  737. {
  738. "id": ".v:ind.",
  739. "value": "v.ind."
  740. },
  741. {
  742. "id": ".ind.",
  743. "value": "ind."
  744. },
  745. {
  746. "id": ".adv.",
  747. "value": "adv."
  748. },
  749. {
  750. "id": ".conj.",
  751. "value": "conj."
  752. },
  753. {
  754. "id": ".prep.",
  755. "value": "prep."
  756. },
  757. {
  758. "id": ".interj.",
  759. "value": "interj."
  760. },
  761. {
  762. "id": ".comp.",
  763. "value": "comp."
  764. },
  765. {
  766. "id": ".pre.",
  767. "value": "prefix."
  768. },
  769. {
  770. "id": ".part.",
  771. "value": "part"
  772. },
  773. {
  774. "id": ".root.",
  775. "value": "root."
  776. },
  777. {
  778. "id": ".suf.",
  779. "value": "suffix."
  780. },
  781. {
  782. "id": ".end.",
  783. "value": "case end."
  784. },
  785. {
  786. "id": "_un_auto_factormean_",
  787. "value": "—Auto—"
  788. },
  789. {
  790. "id": "_un_auto_mean_",
  791. "value": " × × × "
  792. },
  793. {
  794. "id": ".un.",
  795. "value": "slur."
  796. }
  797. ],
  798. "type_str": [
  799. {
  800. "id": ".n.",
  801. "value": "n."
  802. },
  803. {
  804. "id": ".v.",
  805. "value": "v."
  806. },
  807. {
  808. "id": ".ti.",
  809. "value": "n.a."
  810. },
  811. {
  812. "id": ".ind.",
  813. "value": "ind."
  814. },
  815. {
  816. "id": ".pron.",
  817. "value": "pron."
  818. },
  819. {
  820. "id": ".adj.",
  821. "value": "adj."
  822. },
  823. {
  824. "id": ".v:ind.",
  825. "value": "v.ind."
  826. },
  827. {
  828. "id": ".num.",
  829. "value": "num."
  830. },
  831. {
  832. "id": ".un.",
  833. "value": "slur."
  834. },
  835. {
  836. "id": ".comp.",
  837. "value": "comp."
  838. },
  839. {
  840. "id": ".pron:base.",
  841. "value": "pron:base."
  842. },
  843. {
  844. "id": ".adj:base.",
  845. "value": "adj:base."
  846. },
  847. {
  848. "id": ".n:base.",
  849. "value": "n:base."
  850. },
  851. {
  852. "id": ".ti:base.",
  853. "value": "ti:base."
  854. },
  855. {
  856. "id": ".num:base.",
  857. "value": "num:base."
  858. },
  859. {
  860. "id": ".pre.",
  861. "value": "prefix."
  862. },
  863. {
  864. "id": ".root.",
  865. "value": "root."
  866. },
  867. {
  868. "id": ".suf.",
  869. "value": "suffix."
  870. },
  871. {
  872. "id": ".end.",
  873. "value": "case end."
  874. },
  875. {
  876. "id": ".v:base.",
  877. "value": "v:base."
  878. }
  879. ],
  880. "formula": [
  881. {
  882. "id": ".pl.$.abl.",
  883. "value": "{from }~{s}${from }~{es}${from }~{}${because of }~{s}${because of }~{es}${because of }~{}${due to }~{s}${due to }~{es}${due to }~{}${than }~{s}${than }~{es}${than }~{}"
  884. },
  885. {
  886. "id": "$.pl.$.abl.",
  887. "value": "{from }~{s}${from }~{es}${from }~{}${because of }~{s}${because of }~{es}${because of }~{}${due to }~{s}${due to }~{es}${due to }~{}${than }~{s}${than }~{es}${than }~{}"
  888. },
  889. {
  890. "id": ".1p.$.pl.$.abl.",
  891. "value": "{from }~{s}${from }~{es}${from }~{}${because of }~{s}${because of }~{es}${because of }~{}${due to }~{s}${due to }~{es}${due to }~{}${than }~{s}${than }~{es}${than }~{}"
  892. },
  893. {
  894. "id": ".1p.$.pl.$.abl.",
  895. "value": "{from }~{s}${from }~{es}${from }~{}${because of }~{s}${because of }~{es}${because of }~{}${due to }~{s}${due to }~{es}${due to }~{}${than }~{s}${than }~{es}${than }~{}"
  896. },
  897. {
  898. "id": ".m.$.pl.$.abl.",
  899. "value": "{from }~{s}${from }~{es}${from }~{}${because of }~{s}${because of }~{es}${because of }~{}${due to }~{s}${due to }~{es}${due to }~{}${than }~{s}${than }~{es}${than }~{}"
  900. },
  901. {
  902. "id": ".nt.$.pl.$.abl.",
  903. "value": "{from }~{s}${from }~{es}${from }~{}${because of }~{s}${because of }~{es}${because of }~{}${due to }~{s}${due to }~{es}${due to }~{}${than }~{s}${than }~{es}${than }~{}"
  904. },
  905. {
  906. "id": ".f.$.pl.$.abl.",
  907. "value": "{from }~{s}${from }~{es}${from }~{}${because of }~{s}${because of }~{es}${because of }~{}${due to }~{s}${due to }~{es}${due to }~{}${than }~{s}${than }~{es}${than }~{}"
  908. },
  909. {
  910. "id": ".pl.$.acc.",
  911. "value": "{}~{s}${}~{es}${}~{}${to }~{s}${to }~{es}${to }~{}"
  912. },
  913. {
  914. "id": "$.pl.$.acc.",
  915. "value": "{}~{s}${}~{es}${}~{}${to }~{s}${to }~{es}${to }~{}"
  916. },
  917. {
  918. "id": ".1p.$.pl.$.acc.",
  919. "value": "{}~{s}${}~{es}${}~{}${to }~{s}${to }~{es}${to }~{}"
  920. },
  921. {
  922. "id": ".1p.$.pl.$.acc.",
  923. "value": "{}~{s}${}~{es}${}~{}${to }~{s}${to }~{es}${to }~{}"
  924. },
  925. {
  926. "id": ".m.$.pl.$.acc.",
  927. "value": "{}~{s}${}~{es}${}~{}${to }~{s}${to }~{es}${to }~{}"
  928. },
  929. {
  930. "id": ".nt.$.pl.$.acc.",
  931. "value": "{}~{s}${}~{es}${}~{}${to }~{s}${to }~{es}${to }~{}"
  932. },
  933. {
  934. "id": ".f.$.pl.$.acc.",
  935. "value": "{}~{s}${}~{es}${}~{}${to }~{s}${to }~{es}${to }~{}"
  936. },
  937. {
  938. "id": ".pl.$.dat.",
  939. "value": "{to }~{s}${to }~{es}${to }~{}${for }~{s}${for }~{es}${for }~{}"
  940. },
  941. {
  942. "id": "$.pl.$.dat.",
  943. "value": "{to }~{s}${to }~{es}${to }~{}${for }~{s}${for }~{es}${for }~{}"
  944. },
  945. {
  946. "id": ".1p.$.pl.$.dat.",
  947. "value": "{to }~{s}${to }~{es}${to }~{}${for }~{s}${for }~{es}${for }~{}"
  948. },
  949. {
  950. "id": ".1p.$.pl.$.dat.",
  951. "value": "{to }~{s}${to }~{es}${to }~{}${for }~{s}${for }~{es}${for }~{}"
  952. },
  953. {
  954. "id": ".m.$.pl.$.dat.",
  955. "value": "{to }~{s}${to }~{es}${to }~{}${for }~{s}${for }~{es}${for }~{}"
  956. },
  957. {
  958. "id": ".nt.$.pl.$.dat.",
  959. "value": "{to }~{s}${to }~{es}${to }~{}${for }~{s}${for }~{es}${for }~{}"
  960. },
  961. {
  962. "id": ".f.$.pl.$.dat.",
  963. "value": "{to }~{s}${to }~{es}${to }~{}${for }~{s}${for }~{es}${for }~{}"
  964. },
  965. {
  966. "id": ".pl.$.gen.",
  967. "value": "{of }~{s}${of }~{es}${of }~{}${}~{s’}${}~{es’}${}~{’s}"
  968. },
  969. {
  970. "id": "$.pl.$.gen.",
  971. "value": "{of }~{s}${of }~{es}${of }~{}${}~{s’}${}~{es’}${}~{’s}"
  972. },
  973. {
  974. "id": ".1p.$.pl.$.gen.",
  975. "value": "{of }~{s}${of }~{es}${of }~{}${}~{s’}${}~{es’}${}~{’s}"
  976. },
  977. {
  978. "id": ".1p.$.pl.$.gen.",
  979. "value": "{of }~{s}${of }~{es}${of }~{}${}~{s’}${}~{es’}${}~{’s}"
  980. },
  981. {
  982. "id": ".m.$.pl.$.gen.",
  983. "value": "{of }~{s}${of }~{es}${of }~{}${}~{s’}${}~{es’}${}~{’s}"
  984. },
  985. {
  986. "id": ".nt.$.pl.$.gen.",
  987. "value": "{of }~{s}${of }~{es}${of }~{}${}~{s’}${}~{es’}${}~{’s}"
  988. },
  989. {
  990. "id": ".f.$.pl.$.gen.",
  991. "value": "{of }~{s}${of }~{es}${of }~{}${}~{s’}${}~{es’}${}~{’s}"
  992. },
  993. {
  994. "id": ".pl.$.inst.",
  995. "value": "{by }~{s}${by }~{es}${by }~{}${through }~{s}${through }~{es}${through }~{}${with }~{s}${with }~{es}${with }~{}${according to }~{s}${according to }~{es}${according to }~{}"
  996. },
  997. {
  998. "id": "$.pl.$.inst.",
  999. "value": "{by }~{s}${by }~{es}${by }~{}${through }~{s}${through }~{es}${through }~{}${with }~{s}${with }~{es}${with }~{}${according to }~{s}${according to }~{es}${according to }~{}"
  1000. },
  1001. {
  1002. "id": ".1p.$.pl.$.inst.",
  1003. "value": "{by }~{s}${by }~{es}${by }~{}${through }~{s}${through }~{es}${through }~{}${with }~{s}${with }~{es}${with }~{}${according to }~{s}${according to }~{es}${according to }~{}"
  1004. },
  1005. {
  1006. "id": ".1p.$.pl.$.inst.",
  1007. "value": "{by }~{s}${by }~{es}${by }~{}${through }~{s}${through }~{es}${through }~{}${with }~{s}${with }~{es}${with }~{}${according to }~{s}${according to }~{es}${according to }~{}"
  1008. },
  1009. {
  1010. "id": ".m.$.pl.$.inst.",
  1011. "value": "{by }~{s}${by }~{es}${by }~{}${through }~{s}${through }~{es}${through }~{}${with }~{s}${with }~{es}${with }~{}${according to }~{s}${according to }~{es}${according to }~{}"
  1012. },
  1013. {
  1014. "id": ".nt.$.pl.$.inst.",
  1015. "value": "{by }~{s}${by }~{es}${by }~{}${through }~{s}${through }~{es}${through }~{}${with }~{s}${with }~{es}${with }~{}${according to }~{s}${according to }~{es}${according to }~{}"
  1016. },
  1017. {
  1018. "id": ".f.$.pl.$.inst.",
  1019. "value": "{by }~{s}${by }~{es}${by }~{}${through }~{s}${through }~{es}${through }~{}${with }~{s}${with }~{es}${with }~{}${according to }~{s}${according to }~{es}${according to }~{}"
  1020. },
  1021. {
  1022. "id": ".pl.$.loc.",
  1023. "value": "{at }~{s}${at }~{es}${at }~{}${at }~{s time}${at }~{es time}${at }~{ time}${in }~{s place}${in }~{es place}${in }~{ place}${in }~{s case}${in }~{es case}${in }~{ case}${in }~{ship}"
  1024. },
  1025. {
  1026. "id": "$.pl.$.loc.",
  1027. "value": "{at }~{s}${at }~{es}${at }~{}${at }~{s time}${at }~{es time}${at }~{ time}${in }~{s place}${in }~{es place}${in }~{ place}${in }~{s case}${in }~{es case}${in }~{ case}${in }~{ship}"
  1028. },
  1029. {
  1030. "id": ".1p.$.pl.$.loc.",
  1031. "value": "{at }~{s}${at }~{es}${at }~{}${at }~{s time}${at }~{es time}${at }~{ time}${in }~{s place}${in }~{es place}${in }~{ place}${in }~{s case}${in }~{es case}${in }~{ case}${in }~{ship}"
  1032. },
  1033. {
  1034. "id": ".1p.$.pl.$.loc.",
  1035. "value": "{at }~{s}${at }~{es}${at }~{}${at }~{s time}${at }~{es time}${at }~{ time}${in }~{s place}${in }~{es place}${in }~{ place}${in }~{s case}${in }~{es case}${in }~{ case}${in }~{ship}"
  1036. },
  1037. {
  1038. "id": ".m.$.pl.$.loc.",
  1039. "value": "{at }~{s}${at }~{es}${at }~{}${at }~{s time}${at }~{es time}${at }~{ time}${in }~{s place}${in }~{es place}${in }~{ place}${in }~{s case}${in }~{es case}${in }~{ case}${in }~{ship}"
  1040. },
  1041. {
  1042. "id": ".nt.$.pl.$.loc.",
  1043. "value": "{at }~{s}${at }~{es}${at }~{}${at }~{s time}${at }~{es time}${at }~{ time}${in }~{s place}${in }~{es place}${in }~{ place}${in }~{s case}${in }~{es case}${in }~{ case}${in }~{ship}"
  1044. },
  1045. {
  1046. "id": ".f.$.pl.$.loc.",
  1047. "value": "{at }~{s}${at }~{es}${at }~{}${at }~{s time}${at }~{es time}${at }~{ time}${in }~{s place}${in }~{es place}${in }~{ place}${in }~{s case}${in }~{es case}${in }~{ case}${in }~{ship}"
  1048. },
  1049. {
  1050. "id": ".pl.$.nom.",
  1051. "value": "{}~{s}${}~{es}${}~{}"
  1052. },
  1053. {
  1054. "id": "$.pl.$.nom.",
  1055. "value": "{}~{s}${}~{es}${}~{}"
  1056. },
  1057. {
  1058. "id": ".1p.$.pl.$.nom.",
  1059. "value": "{}~{s}${}~{es}${}~{}"
  1060. },
  1061. {
  1062. "id": ".1p.$.pl.$.nom.",
  1063. "value": "{}~{s}${}~{es}${}~{}"
  1064. },
  1065. {
  1066. "id": ".m.$.pl.$.nom.",
  1067. "value": "{}~{s}${}~{es}${}~{}"
  1068. },
  1069. {
  1070. "id": ".nt.$.pl.$.nom.",
  1071. "value": "{}~{s}${}~{es}${}~{}"
  1072. },
  1073. {
  1074. "id": ".f.$.pl.$.nom.",
  1075. "value": "{}~{s}${}~{es}${}~{}"
  1076. },
  1077. {
  1078. "id": ".pl.$.voc.",
  1079. "value": "{}~{s!}${}~{es!}${}~{!}${Oh }~{s}${Oh }~{es}${Oh }~{}"
  1080. },
  1081. {
  1082. "id": "$.pl.$.voc.",
  1083. "value": "{}~{s!}${}~{es!}${}~{!}${Oh }~{s}${Oh }~{es}${Oh }~{}"
  1084. },
  1085. {
  1086. "id": ".1p.$.pl.$.voc.",
  1087. "value": "{}~{s!}${}~{es!}${}~{!}${Oh }~{s}${Oh }~{es}${Oh }~{}"
  1088. },
  1089. {
  1090. "id": ".1p.$.pl.$.voc.",
  1091. "value": "{}~{s!}${}~{es!}${}~{!}${Oh }~{s}${Oh }~{es}${Oh }~{}"
  1092. },
  1093. {
  1094. "id": ".m.$.pl.$.voc.",
  1095. "value": "{}~{s!}${}~{es!}${}~{!}${Oh }~{s}${Oh }~{es}${Oh }~{}"
  1096. },
  1097. {
  1098. "id": ".nt.$.pl.$.voc.",
  1099. "value": "{}~{s!}${}~{es!}${}~{!}${Oh }~{s}${Oh }~{es}${Oh }~{}"
  1100. },
  1101. {
  1102. "id": ".f.$.pl.$.voc.",
  1103. "value": "{}~{s!}${}~{es!}${}~{!}${Oh }~{s}${Oh }~{es}${Oh }~{}"
  1104. },
  1105. {
  1106. "id": ".sg.$.abl.",
  1107. "value": "{from }~{}${because of }~{}${due to }~{}${than }~{}"
  1108. },
  1109. {
  1110. "id": "$.sg.$.abl.",
  1111. "value": "{from }~{}${because of }~{}${due to }~{}${than }~{}"
  1112. },
  1113. {
  1114. "id": ".1p.$.sg.$.abl.",
  1115. "value": "{from }~{}${because of }~{}${due to }~{}${than }~{}"
  1116. },
  1117. {
  1118. "id": ".1p.$.sg.$.abl.",
  1119. "value": "{from }~{}${because of }~{}${due to }~{}${than }~{}"
  1120. },
  1121. {
  1122. "id": ".m.$.sg.$.abl.",
  1123. "value": "{from }~{}${because of }~{}${due to }~{}${than }~{}"
  1124. },
  1125. {
  1126. "id": ".nt.$.sg.$.abl.",
  1127. "value": "{from }~{}${because of }~{}${due to }~{}${than }~{}"
  1128. },
  1129. {
  1130. "id": ".f.$.sg.$.abl.",
  1131. "value": "{from }~{}${because of }~{}${due to }~{}${than }~{}"
  1132. },
  1133. {
  1134. "id": ".sg.$.acc.",
  1135. "value": "{}~{}${to }~{}"
  1136. },
  1137. {
  1138. "id": "$.sg.$.acc.",
  1139. "value": "{}~{}${to }~{}"
  1140. },
  1141. {
  1142. "id": ".1p.$.sg.$.acc.",
  1143. "value": "{}~{}${to }~{}"
  1144. },
  1145. {
  1146. "id": ".1p.$.sg.$.acc.",
  1147. "value": "{}~{}${to }~{}"
  1148. },
  1149. {
  1150. "id": ".m.$.sg.$.acc.",
  1151. "value": "{}~{}${to }~{}"
  1152. },
  1153. {
  1154. "id": ".nt.$.sg.$.acc.",
  1155. "value": "{}~{}${to }~{}"
  1156. },
  1157. {
  1158. "id": ".f.$.sg.$.acc.",
  1159. "value": "{}~{}${to }~{}"
  1160. },
  1161. {
  1162. "id": ".sg.$.dat.",
  1163. "value": "{to }~{}${for }~{}"
  1164. },
  1165. {
  1166. "id": "$.sg.$.dat.",
  1167. "value": "{to }~{}${for }~{}"
  1168. },
  1169. {
  1170. "id": ".1p.$.sg.$.dat.",
  1171. "value": "{to }~{}${for }~{}"
  1172. },
  1173. {
  1174. "id": ".1p.$.sg.$.dat.",
  1175. "value": "{to }~{}${for }~{}"
  1176. },
  1177. {
  1178. "id": ".m.$.sg.$.dat.",
  1179. "value": "{to }~{}${for }~{}"
  1180. },
  1181. {
  1182. "id": ".nt.$.sg.$.dat.",
  1183. "value": "{to }~{}${for }~{}"
  1184. },
  1185. {
  1186. "id": ".f.$.sg.$.dat.",
  1187. "value": "{to }~{}${for }~{}"
  1188. },
  1189. {
  1190. "id": ".sg.$.gen.",
  1191. "value": "{of }~{}${}~{’s}"
  1192. },
  1193. {
  1194. "id": "$.sg.$.gen.",
  1195. "value": "{of }~{}${}~{’s}"
  1196. },
  1197. {
  1198. "id": ".1p.$.sg.$.gen.",
  1199. "value": "{of }~{}${}~{’s}"
  1200. },
  1201. {
  1202. "id": ".1p.$.sg.$.gen.",
  1203. "value": "{of }~{}${}~{’s}"
  1204. },
  1205. {
  1206. "id": ".m.$.sg.$.gen.",
  1207. "value": "{of }~{}${}~{’s}"
  1208. },
  1209. {
  1210. "id": ".nt.$.sg.$.gen.",
  1211. "value": "{of }~{}${}~{’s}"
  1212. },
  1213. {
  1214. "id": ".f.$.sg.$.gen.",
  1215. "value": "{of }~{}${}~{’s}"
  1216. },
  1217. {
  1218. "id": ".sg.$.inst.",
  1219. "value": "{by }~{}${through }~{}${with }~{}${according to }~{}"
  1220. },
  1221. {
  1222. "id": "$.sg.$.inst.",
  1223. "value": "{by }~{}${through }~{}${with }~{}${according to }~{}"
  1224. },
  1225. {
  1226. "id": ".1p.$.sg.$.inst.",
  1227. "value": "{by }~{}${through }~{}${with }~{}${according to }~{}"
  1228. },
  1229. {
  1230. "id": ".1p.$.sg.$.inst.",
  1231. "value": "{by }~{}${through }~{}${with }~{}${according to }~{}"
  1232. },
  1233. {
  1234. "id": ".m.$.sg.$.inst.",
  1235. "value": "{by }~{}${through }~{}${with }~{}${according to }~{}"
  1236. },
  1237. {
  1238. "id": ".nt.$.sg.$.inst.",
  1239. "value": "{by }~{}${through }~{}${with }~{}${according to }~{}"
  1240. },
  1241. {
  1242. "id": ".f.$.sg.$.inst.",
  1243. "value": "{by }~{}${through }~{}${with }~{}${according to }~{}"
  1244. },
  1245. {
  1246. "id": ".sg.$.loc.",
  1247. "value": "{at }~{}${at }~{ time}${in }~{ place}${in }~{ case}${in }~{ship}"
  1248. },
  1249. {
  1250. "id": "$.sg.$.loc.",
  1251. "value": "{at }~{}${at }~{ time}${in }~{ place}${in }~{ case}${in }~{ship}"
  1252. },
  1253. {
  1254. "id": ".1p.$.sg.$.loc.",
  1255. "value": "{at }~{}${at }~{ time}${in }~{ place}${in }~{ case}${in }~{ship}"
  1256. },
  1257. {
  1258. "id": ".1p.$.sg.$.loc.",
  1259. "value": "{at }~{}${at }~{ time}${in }~{ place}${in }~{ case}${in }~{ship}"
  1260. },
  1261. {
  1262. "id": ".m.$.sg.$.loc.",
  1263. "value": "{at }~{}${at }~{ time}${in }~{ place}${in }~{ case}${in }~{ship}"
  1264. },
  1265. {
  1266. "id": ".nt.$.sg.$.loc.",
  1267. "value": "{at }~{}${at }~{ time}${in }~{ place}${in }~{ case}${in }~{ship}"
  1268. },
  1269. {
  1270. "id": ".f.$.sg.$.loc.",
  1271. "value": "{at }~{}${at }~{ time}${in }~{ place}${in }~{ case}${in }~{ship}"
  1272. },
  1273. {
  1274. "id": ".sg.$.nom.",
  1275. "value": "{}~{}"
  1276. },
  1277. {
  1278. "id": "$.sg.$.nom.",
  1279. "value": "{}~{}"
  1280. },
  1281. {
  1282. "id": ".1p.$.sg.$.nom.",
  1283. "value": "{}~{}"
  1284. },
  1285. {
  1286. "id": ".1p.$.sg.$.nom.",
  1287. "value": "{}~{}"
  1288. },
  1289. {
  1290. "id": ".m.$.sg.$.nom.",
  1291. "value": "{}~{}"
  1292. },
  1293. {
  1294. "id": ".nt.$.sg.$.nom.",
  1295. "value": "{}~{}"
  1296. },
  1297. {
  1298. "id": ".f.$.sg.$.nom.",
  1299. "value": "{}~{}"
  1300. },
  1301. {
  1302. "id": ".sg.$.voc.",
  1303. "value": "{}~{!}${Oh }~{}"
  1304. },
  1305. {
  1306. "id": "$.sg.$.voc.",
  1307. "value": "{}~{!}${Oh }~{}"
  1308. },
  1309. {
  1310. "id": ".1p.$.sg.$.voc.",
  1311. "value": "{}~{!}${Oh }~{}"
  1312. },
  1313. {
  1314. "id": ".1p.$.sg.$.voc.",
  1315. "value": "{}~{!}${Oh }~{}"
  1316. },
  1317. {
  1318. "id": ".m.$.sg.$.voc.",
  1319. "value": "{}~{!}${Oh }~{}"
  1320. },
  1321. {
  1322. "id": ".nt.$.sg.$.voc.",
  1323. "value": "{}~{!}${Oh }~{}"
  1324. },
  1325. {
  1326. "id": ".f.$.sg.$.voc.",
  1327. "value": "{}~{!}${Oh }~{}"
  1328. },
  1329. {
  1330. "id": ".1p.$.pl.$.aor.",
  1331. "value": "{we }~{ed}${we }~{d}${we have }~{ed}${we have }~{d}${we were }~{ing}${we did }~{}${we had }~{ed}${we had }~{d}"
  1332. },
  1333. {
  1334. "id": ".1p.$.pl.$.cond.",
  1335. "value": "{if we }~{}${we }~{}"
  1336. },
  1337. {
  1338. "id": ".1p.$.pl.$.fut.",
  1339. "value": "{we will }~{}${we shall }~{}${we }~{}${we }~{}${we }~{}${we’re going to }~{}"
  1340. },
  1341. {
  1342. "id": ".1p.$.pl.$.imp.",
  1343. "value": "{let’s }~{}${let’s }~{,please}${please let’s }~{}${please let’s }~{}${we could }~{}${we would }~{}"
  1344. },
  1345. {
  1346. "id": ".1p.$.pl.$.opt.",
  1347. "value": "{we should }~{}${we’d like }~{}${we have to }~{}${we must }~{}${we might }~{}${we may }~{}"
  1348. },
  1349. {
  1350. "id": ".1p.$.pl.$.pres.",
  1351. "value": "{we }~{}${we’re }~{ing}"
  1352. },
  1353. {
  1354. "id": ".1p.$.sg.$.aor.",
  1355. "value": "{I }~{ed}${I }~{d}${I have }~{ed}${I have }~{d}${I was }~{ing}${I did }~{}${I had }~{ed}${I had }~{d}"
  1356. },
  1357. {
  1358. "id": ".1p.$.sg.$.cond.",
  1359. "value": "{if I }~{}${I }~{}"
  1360. },
  1361. {
  1362. "id": ".1p.$.sg.$.fut.",
  1363. "value": "{I will }~{}${I shall }~{}${I }~{}${I }~{}${I }~{}${I’m going to }~{}"
  1364. },
  1365. {
  1366. "id": ".1p.$.sg.$.imp.",
  1367. "value": "{let me }~{}${let me }~{,please}${please let me }~{}${please let me }~{}${I could }~{}${I would }~{}"
  1368. },
  1369. {
  1370. "id": ".1p.$.sg.$.opt.",
  1371. "value": "{I should }~{}${I’d like }~{}${I have to }~{}${I must }~{}${I might }~{}${I may }~{}"
  1372. },
  1373. {
  1374. "id": ".1p.$.sg.$.pres.",
  1375. "value": "{I }~{}${I’m }~{ing}"
  1376. },
  1377. {
  1378. "id": ".2p.$.pl.$.aor.",
  1379. "value": "{you }~{ed}${your highness }~{ed}${you all }~{ed}${you }~{d}${your highness }~{d}${you all }~{d}${you have }~{ed}${your highness have }~{ed}${you all have }~{ed}${you have }~{d}${your highness have }~{d}${you all have }~{d}${you were }~{ing}${your highness were }~{ing}${you all were }~{ing}${you did }~{}${your highness did }~{}${you all did }~{}${you had }~{ed}${your highness had }~{ed}${you all had }~{ed}${you had }~{d}${your highness had }~{d}${you all had }~{d}"
  1380. },
  1381. {
  1382. "id": ".2p.$.pl.$.cond.",
  1383. "value": "{if you }~{}${if your highness }~{}${if you all }~{}${you }~{}${your highness }~{}${you all }~{}"
  1384. },
  1385. {
  1386. "id": ".2p.$.pl.$.fut.",
  1387. "value": "{you will }~{}${your highness will }~{}${you all will }~{}${you shall }~{}${your highness shall }~{}${you all shall }~{}${you }~{}${your highness }~{}${you all }~{}${you }~{}${your highness }~{}${you all }~{}${you }~{}${your highness }~{}${you all }~{}${you’re going to }~{}${your highness’re going to }~{}${you all’re going to }~{}"
  1388. },
  1389. {
  1390. "id": ".2p.$.pl.$.imp.",
  1391. "value": "{please }~{}${please }~{}${please }~{}${you }~{}${your highness }~{}${you all }~{}${you }~{,please}${your highness }~{,please}${you all }~{,please}${you }~{,please}${your highness }~{,please}${you all }~{,please}${you could }~{}${your highness could }~{}${you all could }~{}${would you please }~{}${would your highness please }~{}${would you all please }~{}${you would }~{}${your highness would }~{}${you all would }~{}"
  1392. },
  1393. {
  1394. "id": ".2p.$.pl.$.opt.",
  1395. "value": "{you should }~{}${your highness should }~{}${you all should }~{}${you’d like }~{}${your highness’d like }~{}${you all’d like }~{}${you have to }~{}${your highness have to }~{}${you all have to }~{}${you must }~{}${your highness must }~{}${you all must }~{}${you might }~{}${your highness might }~{}${you all might }~{}${you may }~{}${your highness may }~{}${you all may }~{}"
  1396. },
  1397. {
  1398. "id": ".2p.$.pl.$.pres.",
  1399. "value": "{you }~{}${your highness }~{}${you all }~{}${you’re }~{ing}${your highness’re }~{ing}${you all’re }~{ing}"
  1400. },
  1401. {
  1402. "id": ".2p.$.sg.$.aor.",
  1403. "value": "{you }~{ed}${you }~{d}${you have }~{ed}${you have }~{d}${you were }~{ing}${you did }~{}${you had }~{ed}${you had }~{d}"
  1404. },
  1405. {
  1406. "id": ".2p.$.sg.$.cond.",
  1407. "value": "{if you }~{}${you }~{}"
  1408. },
  1409. {
  1410. "id": ".2p.$.sg.$.fut.",
  1411. "value": "{you will }~{}${you shall }~{}${you }~{}${you }~{}${you }~{}${you’re going to }~{}"
  1412. },
  1413. {
  1414. "id": ".2p.$.sg.$.imp.",
  1415. "value": "{please }~{}${you }~{}${you }~{,please}${you }~{,please}${you could }~{}${would you please }~{}${you would }~{}"
  1416. },
  1417. {
  1418. "id": ".2p.$.sg.$.opt.",
  1419. "value": "{you should }~{}${you’d like }~{}${you have to }~{}${you must }~{}${you might }~{}${you may }~{}"
  1420. },
  1421. {
  1422. "id": ".2p.$.sg.$.pres.",
  1423. "value": "{you }~{}${you’re }~{ing}"
  1424. },
  1425. {
  1426. "id": ".3p.$.pl.$.aor.",
  1427. "value": "{they }~{ed}${they }~{d}${they have }~{ed}${they have }~{d}${they were }~{ing}${they did }~{}${they had }~{ed}${they had }~{d}"
  1428. },
  1429. {
  1430. "id": ".3p.$.pl.$.cond.",
  1431. "value": "{if they }~{}${they }~{}"
  1432. },
  1433. {
  1434. "id": ".3p.$.pl.$.fut.",
  1435. "value": "{they will }~{}${they shall }~{}${they }~{}${they }~{}${they }~{}${they’re going to }~{}"
  1436. },
  1437. {
  1438. "id": ".3p.$.pl.$.imp.",
  1439. "value": "{let them }~{}${let them }~{,please}${please let them }~{}${please let them }~{}${they could }~{}${they would }~{}"
  1440. },
  1441. {
  1442. "id": ".3p.$.pl.$.opt.",
  1443. "value": "{they should }~{}${they’d like }~{}${they have to }~{}${they must }~{}${they might }~{}${they may }~{}"
  1444. },
  1445. {
  1446. "id": ".3p.$.pl.$.pres.",
  1447. "value": "{they }~{}${they’re }~{ing}"
  1448. },
  1449. {
  1450. "id": ".3p.$.sg.$.aor.",
  1451. "value": "{he }~{ed}${she }~{ed}${it }~{ed}${he }~{d}${she }~{d}${it }~{d}${he has }~{ed}${she has }~{ed}${it has }~{ed}${he has }~{d}${she has }~{d}${it has }~{d}${he was }~{ing}${she was }~{ing}${it was }~{ing}${he did }~{}${she did }~{}${it did }~{}${he had }~{ed}${she had }~{ed}${it had }~{ed}${he had }~{d}${she had }~{d}${it had }~{d}"
  1452. },
  1453. {
  1454. "id": ".3p.$.sg.$.cond.",
  1455. "value": "{if he }~{}${if she }~{}${if it }~{}${he }~{}${she }~{}${it }~{}"
  1456. },
  1457. {
  1458. "id": ".3p.$.sg.$.fut.",
  1459. "value": "{he will }~{}${she will }~{}${it will }~{}${he shall }~{}${she shall }~{}${it shall }~{}${he }~{}${she }~{}${it }~{}${he }~{}${she }~{}${it }~{}${he }~{}${she }~{}${it }~{}${he’s going to }~{}${she’s going to }~{}${it’s going to }~{}"
  1460. },
  1461. {
  1462. "id": ".3p.$.sg.$.imp.",
  1463. "value": "{let him }~{}${let her }~{}${let it }~{}${let him }~{,please}${let her }~{,please}${let it }~{,please}${please let him }~{}${please let her }~{}${please let it }~{}${please let him }~{}${please let her }~{}${please let it }~{}${he could }~{}${she could }~{}${it could }~{}${he would }~{}${she would }~{}${it would }~{}"
  1464. },
  1465. {
  1466. "id": ".3p.$.sg.$.opt.",
  1467. "value": "{he should }~{}${she should }~{}${it should }~{}${he’d like }~{}${she’d like }~{}${it’d like }~{}${he has to }~{}${she has to }~{}${it has to }~{}${he must }~{}${she must }~{}${it must }~{}${he might }~{}${she might }~{}${it might }~{}${he may }~{}${she may }~{}${it may }~{}"
  1468. },
  1469. {
  1470. "id": ".3p.$.sg.$.pres.",
  1471. "value": "{he }~{s}${she }~{s}${it }~{s}${he }~{es}${she }~{es}${it }~{es}${he’s }~{ing}${she’s }~{ing}${it’s }~{ing}"
  1472. },
  1473. {
  1474. "id": ".nom.",
  1475. "value": "~"
  1476. },
  1477. {
  1478. "id": ".voc.",
  1479. "value": "~"
  1480. },
  1481. {
  1482. "id": ".acc.",
  1483. "value": "~"
  1484. },
  1485. {
  1486. "id": ".gen.",
  1487. "value": "{of }~"
  1488. },
  1489. {
  1490. "id": ".dat.",
  1491. "value": "{to }~"
  1492. },
  1493. {
  1494. "id": ".inst.",
  1495. "value": "{by }~"
  1496. },
  1497. {
  1498. "id": ".abl.",
  1499. "value": "{from }~"
  1500. },
  1501. {
  1502. "id": ".loc.",
  1503. "value": "{at }~"
  1504. },
  1505. {
  1506. "id": ".imp.",
  1507. "value": "{make to }~"
  1508. },
  1509. {
  1510. "id": ".cond.",
  1511. "value": "{if}"
  1512. },
  1513. {
  1514. "id": ".opt.",
  1515. "value": "{should }~"
  1516. },
  1517. {
  1518. "id": ".pres.",
  1519. "value": "~"
  1520. },
  1521. {
  1522. "id": ".aor.",
  1523. "value": "{did }~"
  1524. },
  1525. {
  1526. "id": ".pf.",
  1527. "value": "{have }~"
  1528. },
  1529. {
  1530. "id": ".fut.",
  1531. "value": "{will }~{(ed)}"
  1532. },
  1533. {
  1534. "id": ".prp.",
  1535. "value": "{be }~{ing}"
  1536. },
  1537. {
  1538. "id": ".prpa.",
  1539. "value": "~{ing}"
  1540. },
  1541. {
  1542. "id": ".prpp.",
  1543. "value": "{being }~{(ed)}"
  1544. },
  1545. {
  1546. "id": ".pp.",
  1547. "value": "~{(ed)}"
  1548. },
  1549. {
  1550. "id": ".ppa.",
  1551. "value": "~{(ed)}"
  1552. },
  1553. {
  1554. "id": ".ppp.",
  1555. "value": "{have been }~{(ed)}"
  1556. },
  1557. {
  1558. "id": ".futp.",
  1559. "value": "~{ing}"
  1560. },
  1561. {
  1562. "id": ".fpa.",
  1563. "value": "{should }~"
  1564. },
  1565. {
  1566. "id": ".fpp.",
  1567. "value": "{should be }~{(ed)}"
  1568. },
  1569. {
  1570. "id": ".grd.",
  1571. "value": "{should be }~{(ed)}"
  1572. },
  1573. {
  1574. "id": ".pass.",
  1575. "value": "{be }~{(ed)}"
  1576. },
  1577. {
  1578. "id": ".caus.",
  1579. "value": "{make }~"
  1580. },
  1581. {
  1582. "id": ".desid.",
  1583. "value": "{want }~"
  1584. },
  1585. {
  1586. "id": ".intens.",
  1587. "value": "{insist }~"
  1588. },
  1589. {
  1590. "id": ".ger.",
  1591. "value": "{after }~{ing}${after having }~{ed}${after }~{ed}"
  1592. },
  1593. {
  1594. "id": ".abs.",
  1595. "value": "{after }~{ing}${after having }~{ed}${after }~{ed}"
  1596. },
  1597. {
  1598. "id": ".inf.",
  1599. "value": "{to }~"
  1600. },
  1601. {
  1602. "id": ".1p.$.sg.$.pass.",
  1603. "value": "{I’m }~{ed}"
  1604. },
  1605. {
  1606. "id": ".2p.$.sg.$.pass.",
  1607. "value": "{you’re }~{ed}"
  1608. },
  1609. {
  1610. "id": ".3p.$.sg.$.pass.",
  1611. "value": "{he’s }~{ed}"
  1612. },
  1613. {
  1614. "id": ".1p.$.pl.$.pass.",
  1615. "value": "{we’re }~{ed}"
  1616. },
  1617. {
  1618. "id": ".2p.$.pl.$.pass.",
  1619. "value": "{you all are }~{ed}"
  1620. },
  1621. {
  1622. "id": ".3p.$.pl.$.pass.",
  1623. "value": "{they’re }~{ed}"
  1624. },
  1625. {
  1626. "id": ".1p.$.sg.$.pass.",
  1627. "value": "{I’m }~{ed}"
  1628. },
  1629. {
  1630. "id": ".2p.$.sg.$.pass.",
  1631. "value": "{you’re }~{ed}"
  1632. },
  1633. {
  1634. "id": ".3p.$.sg.$.pass.",
  1635. "value": "{he’s }~{ed}"
  1636. },
  1637. {
  1638. "id": ".1p.$.pl.$.pass.",
  1639. "value": "{we’re }~{ed}"
  1640. },
  1641. {
  1642. "id": ".2p.$.pl.$.pass.",
  1643. "value": "{you all are }~{ed}"
  1644. },
  1645. {
  1646. "id": ".3p.$.pl.$.pass.",
  1647. "value": "{they’re }~{ed}"
  1648. },
  1649. {
  1650. "id": ".1p.$.sg.$.caus.",
  1651. "value": "{I make to }~"
  1652. },
  1653. {
  1654. "id": ".2p.$.sg.$.caus.",
  1655. "value": "{you make to }~"
  1656. },
  1657. {
  1658. "id": ".3p.$.sg.$.caus.",
  1659. "value": "{he makes to }~"
  1660. },
  1661. {
  1662. "id": ".1p.$.pl.$.caus.",
  1663. "value": "{we make to }~"
  1664. },
  1665. {
  1666. "id": ".2p.$.pl.$.caus.",
  1667. "value": "{you all make to }~"
  1668. },
  1669. {
  1670. "id": ".3p.$.pl.$.caus.",
  1671. "value": "{they make to }~"
  1672. },
  1673. {
  1674. "id": ".1p.$.sg.$.caus.",
  1675. "value": "{I make to }~"
  1676. },
  1677. {
  1678. "id": ".2p.$.sg.$.caus.",
  1679. "value": "{you make to }~"
  1680. },
  1681. {
  1682. "id": ".3p.$.sg.$.caus.",
  1683. "value": "{he makes to }~"
  1684. },
  1685. {
  1686. "id": ".1p.$.pl.$.caus.",
  1687. "value": "{we make to }~"
  1688. },
  1689. {
  1690. "id": ".2p.$.pl.$.caus.",
  1691. "value": "{you all make to }~"
  1692. },
  1693. {
  1694. "id": ".3p.$.pl.$.caus.",
  1695. "value": "{they make to }~"
  1696. },
  1697. {
  1698. "id": ".1p.$.sg.$.caus.opt.",
  1699. "value": "{我应令 }~"
  1700. },
  1701. {
  1702. "id": ".2p.$.sg.$.caus.opt.",
  1703. "value": "{你应令 }~"
  1704. },
  1705. {
  1706. "id": ".3p.$.sg.$.caus.opt.",
  1707. "value": "{其应令 }~"
  1708. },
  1709. {
  1710. "id": ".1p.$.pl.$.caus.opt.",
  1711. "value": "{我们应令 }~"
  1712. },
  1713. {
  1714. "id": ".2p.$.pl.$.caus.opt.",
  1715. "value": "{你们应令 }~"
  1716. },
  1717. {
  1718. "id": ".3p.$.pl.$.caus.opt.",
  1719. "value": "{其等应令 }~"
  1720. },
  1721. {
  1722. "id": ".1p.$.sg.$.caus.opt.",
  1723. "value": "{我应令 }~"
  1724. },
  1725. {
  1726. "id": ".2p.$.sg.$.caus.opt.",
  1727. "value": "{你应令 }~"
  1728. },
  1729. {
  1730. "id": ".3p.$.sg.$.caus.opt.",
  1731. "value": "{其应令 }~"
  1732. },
  1733. {
  1734. "id": ".1p.$.pl.$.caus.opt.",
  1735. "value": "{我们应令 }~"
  1736. },
  1737. {
  1738. "id": ".2p.$.pl.$.caus.opt.",
  1739. "value": "{你们应令 }~"
  1740. },
  1741. {
  1742. "id": ".3p.$.pl.$.caus.opt.",
  1743. "value": "{其等应令 }~"
  1744. },
  1745. {
  1746. "id": ".1p.$.sg.$.caus.pass.",
  1747. "value": "{我被令 }~"
  1748. },
  1749. {
  1750. "id": ".2p.$.sg.$.caus.pass.",
  1751. "value": "{你被令 }~"
  1752. },
  1753. {
  1754. "id": ".3p.$.sg.$.caus.pass.",
  1755. "value": "{其被令 }~"
  1756. },
  1757. {
  1758. "id": ".1p.$.pl.$.caus.pass.",
  1759. "value": "{我们被令 }~"
  1760. },
  1761. {
  1762. "id": ".2p.$.pl.$.caus.pass.",
  1763. "value": "{你们被令 }~"
  1764. },
  1765. {
  1766. "id": ".3p.$.pl.$.caus.pass.",
  1767. "value": "{其等被令 }~"
  1768. },
  1769. {
  1770. "id": ".1p.$.sg.$.caus.pass.",
  1771. "value": "{我被令 }~"
  1772. },
  1773. {
  1774. "id": ".2p.$.sg.$.caus.pass.",
  1775. "value": "{你被令 }~"
  1776. },
  1777. {
  1778. "id": ".3p.$.sg.$.caus.pass.",
  1779. "value": "{其被令 }~"
  1780. },
  1781. {
  1782. "id": ".1p.$.pl.$.caus.pass.",
  1783. "value": "{我们被令 }~"
  1784. },
  1785. {
  1786. "id": ".2p.$.pl.$.caus.pass.",
  1787. "value": "{你们被令 }~"
  1788. },
  1789. {
  1790. "id": ".3p.$.pl.$.caus.pass.",
  1791. "value": "{其等被令 }~"
  1792. },
  1793. {
  1794. "id": ".1p.$.sg.$.caus.doub.",
  1795. "value": "{派我令 }~"
  1796. },
  1797. {
  1798. "id": ".2p.$.sg.$.caus.doub.",
  1799. "value": "{派你令 }~"
  1800. },
  1801. {
  1802. "id": ".3p.$.sg.$.caus.doub.",
  1803. "value": "{派其令 }~"
  1804. },
  1805. {
  1806. "id": ".1p.$.pl.$.caus.doub.",
  1807. "value": "{派我们令 }~"
  1808. },
  1809. {
  1810. "id": ".2p.$.pl.$.caus.doub.",
  1811. "value": "{派你们令 }~"
  1812. },
  1813. {
  1814. "id": ".3p.$.pl.$.caus.doub.",
  1815. "value": "{派其等令 }~"
  1816. },
  1817. {
  1818. "id": ".1p.$.sg.$.caus.doub.",
  1819. "value": "{派我令 }~"
  1820. },
  1821. {
  1822. "id": ".2p.$.sg.$.caus.doub.",
  1823. "value": "{派你令 }~"
  1824. },
  1825. {
  1826. "id": ".3p.$.sg.$.caus.doub.",
  1827. "value": "{派其令 }~"
  1828. },
  1829. {
  1830. "id": ".1p.$.pl.$.caus.doub.",
  1831. "value": "{派我们令 }~"
  1832. },
  1833. {
  1834. "id": ".2p.$.pl.$.caus.doub.",
  1835. "value": "{派你们令 }~"
  1836. },
  1837. {
  1838. "id": ".3p.$.pl.$.caus.doub.",
  1839. "value": "{派其等令 }~"
  1840. }
  1841. ],
  1842. "parent_formula": [
  1843. {
  1844. "id": ".imp.",
  1845. "value": "令~"
  1846. },
  1847. {
  1848. "id": ".cond.",
  1849. "value": "若~"
  1850. },
  1851. {
  1852. "id": ".opt.",
  1853. "value": "想~"
  1854. },
  1855. {
  1856. "id": ".pres.",
  1857. "value": "正~"
  1858. },
  1859. {
  1860. "id": ".aor.",
  1861. "value": "曾~"
  1862. },
  1863. {
  1864. "id": ".pf.",
  1865. "value": "已~完"
  1866. },
  1867. {
  1868. "id": ".fut.",
  1869. "value": "将~"
  1870. },
  1871. {
  1872. "id": ".prp.",
  1873. "value": "正~的"
  1874. },
  1875. {
  1876. "id": ".prpa.",
  1877. "value": "正~的"
  1878. },
  1879. {
  1880. "id": ".prpp.",
  1881. "value": "正被~的"
  1882. },
  1883. {
  1884. "id": ".pp.",
  1885. "value": "已~的"
  1886. },
  1887. {
  1888. "id": ".ppa.",
  1889. "value": "已~的"
  1890. },
  1891. {
  1892. "id": ".ppp.",
  1893. "value": "已被~的"
  1894. },
  1895. {
  1896. "id": ".futp.",
  1897. "value": "将~的"
  1898. },
  1899. {
  1900. "id": ".fpa.",
  1901. "value": "将~的"
  1902. },
  1903. {
  1904. "id": ".fpp.",
  1905. "value": "应被~的"
  1906. },
  1907. {
  1908. "id": ".grd.",
  1909. "value": "应被~的"
  1910. },
  1911. {
  1912. "id": ".pass.",
  1913. "value": "被~"
  1914. },
  1915. {
  1916. "id": ".caus.",
  1917. "value": "使~"
  1918. },
  1919. {
  1920. "id": ".desid.",
  1921. "value": "要~"
  1922. },
  1923. {
  1924. "id": ".intens.",
  1925. "value": "执意~"
  1926. },
  1927. {
  1928. "id": ".ger.",
  1929. "value": "~完之后"
  1930. },
  1931. {
  1932. "id": ".abs.",
  1933. "value": "~完之后"
  1934. },
  1935. {
  1936. "id": ".inf.",
  1937. "value": "为了~"
  1938. }
  1939. ],
  1940. "dictname": [
  1941. {
  1942. "id": "bh",
  1943. "value": "巴漢-明法尊者"
  1944. },
  1945. {
  1946. "id": "sy",
  1947. "value": "漢譯-水野弘元"
  1948. },
  1949. {
  1950. "id": "user",
  1951. "value": "User Dict"
  1952. },
  1953. {
  1954. "id": "co",
  1955. "value": "Concise"
  1956. },
  1957. {
  1958. "id": "unkow",
  1959. "value": "Unknown"
  1960. },
  1961. {
  1962. "id": "vn",
  1963. "value": "SYS_IR-V"
  1964. },
  1965. {
  1966. "id": "SCR",
  1967. "value": "Root-中"
  1968. },
  1969. {
  1970. "id": "ENR",
  1971. "value": "Root-EN"
  1972. },
  1973. {
  1974. "id": "parts",
  1975. "value": "Parts"
  1976. },
  1977. {
  1978. "id": "sys_ir",
  1979. "value": "SYS_IR-K"
  1980. },
  1981. {
  1982. "id": "PM",
  1983. "value": "Pāḷi-Myr"
  1984. },
  1985. {
  1986. "id": "",
  1987. "value": ""
  1988. },
  1989. {
  1990. "id": "",
  1991. "value": ""
  1992. },
  1993. {
  1994. "id": "",
  1995. "value": ""
  1996. }
  1997. ],
  1998. "dictname_short": [
  1999. {
  2000. "id": "bh",
  2001. "value": "巴漢"
  2002. },
  2003. {
  2004. "id": "sy",
  2005. "value": "水漢"
  2006. },
  2007. {
  2008. "id": "user",
  2009. "value": "User"
  2010. },
  2011. {
  2012. "id": "co",
  2013. "value": "Con"
  2014. },
  2015. {
  2016. "id": "unkow",
  2017. "value": "Unknown"
  2018. },
  2019. {
  2020. "id": "vn",
  2021. "value": "SYS_IR-V"
  2022. },
  2023. {
  2024. "id": "SCR",
  2025. "value": "根中"
  2026. },
  2027. {
  2028. "id": "ENR",
  2029. "value": "Root"
  2030. },
  2031. {
  2032. "id": "parts",
  2033. "value": "Parts"
  2034. },
  2035. {
  2036. "id": "sys_ir",
  2037. "value": "IR"
  2038. },
  2039. {
  2040. "id": "PM",
  2041. "value": "Pāḷi-Myr"
  2042. },
  2043. {
  2044. "id": "",
  2045. "value": ""
  2046. },
  2047. {
  2048. "id": "",
  2049. "value": ""
  2050. },
  2051. {
  2052. "id": "",
  2053. "value": ""
  2054. }
  2055. ],
  2056. "language": {
  2057. "en": "English",
  2058. "si": "Sinhalese",
  2059. "my": "Brummese",
  2060. "zh": "Chinese",
  2061. "zh_cn": "Simple Chinese",
  2062. "zh_tw": "Traditional Chinese"
  2063. }
  2064. }