default.json 29 KB

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