si.json 38 KB

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