en.json 49 KB

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