| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854 |
- {
- "gui": {
- "50": "50+%",
- "3rd_dictionary": "3 වැනි ශබ්දකෝෂය",
- "accessed": "ප්රවෙශවිය",
- "add_to_edit_list": "එක් කරනවා සංස්කරණ ලැයිස්තුව",
- "adhivacana": "අධිවචන",
- "all": "සර්ව ",
- "all_select": "සියල්ල",
- "all_data!": "දත්ත සියල්ලම",
- "all_done": "Looking up accomplished",
- "allsplit": "Words Splited Successfully ^-^",
- "and_another": " ච ",
- "append": "Append",
- "apply": "යොමු කරනවා",
- "applyto": "ගානවා",
- "arrival_in_detail": "arrival in detail",
- "asc": "අනුලොම",
- "atitude": "Atitude",
- "audio": "ශ්රවණ",
- "author": "කර්තෘ",
- "auto": "AUTO",
- "auto_fill": "Automatic filling",
- "back": "back",
- "base_on": "පදනම",
- "BE": "බුද්ධ වර්ෂය ",
- "bhumma": "භුම්ම",
- "book": "පොත",
- "book_mark": "පොත් යොමුව",
- "book_name": "පොත් නම",
- "bookmark": "පොත් යොමුව",
- "buddhist_calendar": "Buddhist Calendar",
- "budha": "බුධ",
- "by": "විසින්",
- "cancel": "අවලංගු කරනවා",
- "canda": "චන්ද",
- "caption": "මාතෘකාව",
- "CE": "CE",
- "change_position": "change position",
- "chars": "Chars",
- "checking": "scanning",
- "children": "Children",
- "chinese": "中文",
- "click_on": "ටිකිය",
- "click_word_to": "click word to ",
- "code_convert": "කේතය පරිවර්තනය ",
- "color": "වර්ණය",
- "column_compare": "column",
- "commentary": "Commentary",
- "completely_delete": "completely delete",
- "computer": "පරිගණකය",
- "confirm": "Confirm",
- "content": "පටුන",
- "contents": "අන්තර්ගතය",
- "copy": "copy",
- "copy_to_clipboard": "copy the link to clipboard",
- "creat_a_new_file_by_yourself": "ඔබ කැමති පරදි නව ගොනුව සාදන්න",
- "created": "සාදන ලදි",
- "current": "අලුත්ම",
- "database_admin": "පරිගණක දත්ත ගබඩාව පරිපාලනය කරනවා",
- "date": "දිවස ",
- "day": " ",
- "day_1": " ",
- "days": " දිවසා(නි) ",
- "debug": "නිදොස්කරුව",
- "delete": "මකා දමනවා",
- "departure_in_detail": "departure in detail",
- "desc": "පටිලොම",
- "detaile": "සවිස්තර",
- "dhamma_time": "සම්මා සම්බුද්ධස්ස සාසනං පට්ච-වස්ස-සහස්සානි පවත්තිස්සති ",
- "dict": "ශබ්දකෝෂය",
- "dict_match": "Match the Dictionary and Document",
- "dict_terms": "Terms",
- "dictionary": "ශබ්දකෝෂය",
- "dictionary_match_result": "ශබ්දකෝෂය ගැළපීම ප්රතිඵල",
- "dictsouce": "Dictionary Resouce",
- "difficulty": "difficulty level",
- "done": "” has been scanned",
- "down": "Down",
- "download": "[Download]",
- "draft": "As Draft",
- "dawn": "අරුණ",
- "each_paragraph": "E paragraph",
- "each_sentence": "E sentence",
- "eat": "eat",
- "edit": "සංස්කරණය කිරීම",
- "edit_now": "දැන් සංස්කරණය කිරීම",
- "edit1": "Edited By ",
- "edition": "සංශෝධනය",
- "editor": "සංස්කාරක",
- "e_mail": "E-mail",
- "empty": "හිස්",
- "empty_the_data_below": "හිස් සියල්ලම",
- "empty_the_recycle_bin": "Empty the Recycle Bin",
- "empty1": "EMPTY",
- "english": "English",
- "export": "නිර්ය්යාත",
- "export_csv": "නිර්ය්යාත psv",
- "export_html": "නිර්ය්යාත HTML",
- "f_mean": "මූලාංකය තේරුම",
- "factor": "සාධකය",
- "factors_input": "input factors by click",
- "favorite": "favorite",
- "file_name": "ලිපිගොනුව නම ",
- "files": " files",
- "find_replace": "සොයන්න සහ ප්රතිස්ථාපනය කරන්න",
- "finish": "අවසානය ",
- "finished": "finished",
- "g_mean": "සාමාන්ය තේරුම",
- "gama_entry": "entry the village",
- "gramma": "ව්යාකරණ ",
- "gramma_case": "Gramma Case",
- "guid_creator": "GUID Creator",
- "guru": "ගුරු",
- "h": "(h)",
- "half": "අර්ධය",
- "heading": "නම",
- "heading": "මාතෘකාව",
- "heading_1": "මාතෘකාව 1",
- "heading_2": "මාතෘකාව 2",
- "heading_3": "මාතෘකාව 3",
- "heading_4": "මාතෘකාව 4",
- "heading_5": "මාතෘකාව 5",
- "heading_6": "මාතෘකාව 6",
- "heading_7": "මාතෘකාව 7",
- "heading_8": "මාතෘකාව 8",
- "heading_lv1": "මාතෘකාව 1",
- "heading_lv2": "මාතෘකාව 2",
- "heading_lv3": "මාතෘකාව 3",
- "heading_lv4": "මාතෘකාව 4",
- "heading_lv5": "මාතෘකාව 5",
- "heading_lv6": "මාතෘකාව 6",
- "heading_lv7": "මාතෘකාව 7",
- "heading_lv8": "මාතෘකාව 8",
- "hidden": "සැඟවුණු",
- "home": "නිවස",
- "hori_ref_time": "horizontal refraction correct ",
- "html_text_data": "HTML සටහන් දත්ත",
- "import": "ආනයන ",
- "import_csv": "ආනයන csv",
- "import_export": "ආනයන /අපනයන ",
- "import_the_flie_from_cscd": "Import the flie From Cattha Sangayana data base",
- "include": "include",
- "info_panal": "තොරතුරු ලේඛනය ",
- "infomation": "තොරතුරු",
- "inline_dictionary": "එක්තල ශබ්දකෝෂය",
- "innerdict": "Inline Dictionary",
- "input": "input",
- "kala": "කාල",
- "keywords": "මූලපදය",
- "language": "භාෂාව ",
- "language_select": "භාෂාව",
- "layout": "සැලැස්ම",
- "left": "අවසිට්ඨ ",
- "lesson": "lesson",
- "letters": "letters",
- "level": "Lv",
- "list": " ඇලය",
- "load": "ප්රවේශනය ",
- "load_from_database": "දත්ත ගබඩාවේ සිට ප්රවේශනය ",
- "load_from_wbw_file": "WBW ගොනුවේ සිට ප්රවේශනය ",
- "loading": "ප්රවේශනය වෙනවා ",
- "loading_dictionary_list...": "ශබ්දකෝෂය ලැයිස්තුවේ සිට ප්රවේශනය ",
- "lock": "Lock",
- "login": "Login",
- "logout": "Logout",
- "longitude": "Longitude",
- "magic_dict": "විජ්ජා අකාරාදිය",
- "magic_gap": "Magic Gap",
- "magic_split": "Magic Split",
- "magic_terms": "Magic Terms",
- "main_code": "ප්රථම ",
- "mark": "සළකුණ",
- "māsa": "මාස",
- "match_end": "Document update over,Degree of Perfection",
- "matched": "සමාන",
- "max": "උපරිම ",
- "meaning": "Meaning",
- "meaning_input": "input meanings by click",
- "message": "message",
- "min": "අවම",
- "mins": "(min)",
- "mobile": "දරනවා",
- "modified": "සංස්කරණයක් ",
- "modify": "සංස්කරණයෙහි ",
- "modifyok": "Modified ",
- "month": "මාස ",
- "month_1": "- ",
- "months": " මාසා(නි) ",
- "more": "more",
- "my_book": " මගේ පොත් ",
- "my_book": "අමතර පොත් ",
- "my_dictionary": "මගේ ශබ්දකෝෂය",
- "my_document": "මගේ ලිපිගොනු ",
- "my_loc": "අත්තස්මිං",
- "name": "Name",
- "need_inform": "without informing other Bhikkhu ",
- "new": "නව",
- "new_account": "New Account",
- "new_project": "නව ව්යාපෘතිය ",
- "new_revision": "නව පුනරීක්ෂණය",
- "new_technic_term": "New Technic Term",
- "newheading": "Text Editor",
- "newproject": "New Project",
- "newword": "New Word",
- "night": "රාත්රි ",
- "no.": " No.",
- "no_related_file": "No related file",
- "no_string": "cannot ",
- "nofilename": "No File Name",
- "noon_time": "මජ්ඣන්හික",
- "normal": "සාමන්යය",
- "note": "නෝට්ටුව ",
- "note": "සටහන",
- "now_time": "පච්චුප්පන්න",
- "num_k": "K",
- "num_m": "M",
- "ok": "හරි ",
- "order_by": "අනුපිළිවෙළ විසින්",
- "other": "අමතර ",
- "other_meaning": "other meaning",
- "otherdict": "Other Dictionary",
- "pa_auk_dictionary": "පාඅවුක් ශබ්දකෝෂය",
- "pacchā_māsa": "පච්ඡා-මාස",
- "pakkha": "පක්ඛ ",
- "pāli": "පාලි",
- "pali_canon": "පාලි කැනොන්",
- "pāli_code": "Pāli Code",
- "para": " Paragraphs",
- "paragraph": "ඡේදය",
- "parent": "මූල්ය",
- "parent_input": "input parent by click",
- "part": "Factors",
- "partmeaning": "Factor-Meaning",
- "password": "Password",
- "password_again": "Password again",
- "past": "අතික්කන්ත ",
- "pcd_studio": "පාලි කැනොන් දත්තගබඩාව කලාකුටිය",
- "piṭaka": "පිටක",
- "plugin": "කීලය",
- "poweredby": "PcDS",
- "preview": "පුර්වදර්ශනය",
- "print": "පිටපත් කිරීම ",
- "print_preview": "පිටපත් පුර්වදර්ශනය",
- "product": "translation words",
- "project": "ව්යාපෘතිය ",
- "protection": "Protection【en】",
- "pubba_māsa": "පුබ්බ-මාස",
- "publish": "Publish",
- "ravi": "රවි",
- "read": "කියවනවා",
- "read_only": "Read Only",
- "recent_scan": "අලුත් මුද්රණය",
- "recycle_bin": "Recycle Bin",
- "ref_dict": "Dictionary",
- "refresh": "සතප්පනවා",
- "refresh": "නැවත ප්රාණවත් කිරීම ",
- "relation": "අත්ථයොජනා",
- "remove": "අයින්කරනවා",
- "removeword": "Slur Factor Removed",
- "render": "ගෙනහැර දක්වනවා ",
- "repeat": "Repeat Quotiety ",
- "resource": "සම්පත්",
- "revision": "පුනරීක්ෂණය ",
- "revision_mode": "පුනරීක්ෂණය ක්රමය",
- "round_1": "Round ",
- "round_2": " dictionary “",
- "row_compare": "row",
- "same_word": "same words",
- "saṃvacchara": "සංවච්ඡර",
- "sandhi": "සන්ධි ",
- "sandhi_begin": "සන්ධි අරම්භ කරනවා ",
- "sandhi_combin_mode": "සන්ධි සම්බන්ද කරනවා ",
- "sandhi_end": "සන්ධි අවසන්",
- "sandhi_orginal_word": "සන්ධි ප්රකෘති වචන ",
- "sandhi_splited_word": "සන්ධි කොටස් වචන ",
- "save": "සුරකින්න ",
- "script": "අක්ෂර මාලාව ",
- "search": "සොයන්න ",
- "season": "උතු ",
- "sec": "sec",
- "sent_trans": "Translate of Sentence",
- "sentence": "වාක්ය ",
- "sentence_by_sentence": "Sentence By Sentence",
- "setting": "බැම්ම",
- "share": "share",
- "shared": "shared",
- "show": "පානවා",
- "similar_words": "සමරූපී පදය",
- "size": "size",
- "smart_spell": "smart spell",
- "sora": "සොර",
- "source": "මූලාශ්රය ",
- "spell": "මතුරු",
- "statistical_data": "statistical data",
- "style": "රීතිය ",
- "sub_pcode": "2nd",
- "subversion": "අනු ප්රභවය",
- "success": " Words Successfully",
- "successful": "සඵල",
- "sukka": "සුක්ක",
- "sun_height_degree": "Max solar altitude ",
- "system_default": "පද්ධතිය කලයුත්ත නොකලසිටිම",
- "system_dictionary": "පද්ධතිය ශබ්දකෝෂය ",
- "tag": "tag",
- "templet": "සැකිල්ල ",
- "terms_system": "Terms System",
- "thischapter": "This Chapter",
- "time": "time",
- "title": "title ",
- "to_the_dhamma": " ස්වාමි වහන්සේ",
- "today": "අජ්ජ ",
- "toDB": "To User Database",
- "tools": "උපකරණ ",
- "total": "Total ",
- "total_workload": "total workload",
- "totally": "Totally ",
- "tran_workload": "whole passage translate ",
- "translate": "පෙරැළිය ",
- "translate": "පරිවර්තනය ",
- "translate_convert": "පරිවර්තනය පෙරළිම",
- "translate1": "Translated By ",
- "translation": "පරිවර්තනය ",
- "translation_templet": "Translation Templet",
- "twilight_time": "අරුණුග්ගමන",
- "undo_shared": "undo shared",
- "unsplit": "Slur Splited",
- "up": "Up",
- "up_and_down": "උඩ පහළ ",
- "update_all_wbw_to_database": "යාවත්කාලීන සියල්ලම WBW සිට දත්තගබඩාවට",
- "user": "User",
- "to_user_dictionary": "පරිශීලකය ශබ්දකෝෂය ",
- "user_id": "User ID",
- "userdict": "User Dictionary",
- "vannana": "වණ්ණනා",
- "view": "දර්ශනය ",
- "vikala": "විකාල",
- "vocabulary": "වචනමලාව",
- "wbw": "Word by Word Analysis",
- "week": "(week)",
- "week_day": "වාර ",
- "welcome": "තෙරුවන් සරණ ",
- "white": "සුදු",
- "wiki_term": "Wiki Term",
- "with_title": "මාතෘකාව සමග",
- "wizard": "මායාකාර",
- "wizard_my_book": "Wizard -> My Book",
- "word_base": "Word base",
- "word_by_word": "වචනයෙන් වචන ",
- "word_gramma_statistics": "Word & Gramma Statistics",
- "word_length": "average word length",
- "word_list": "වචන ලැයිස්තුව",
- "word_note": "Word Note",
- "word_selection_apply_to": "තොරාගත් වචන යොදාගෙන ",
- "wordmap": "Word Tree",
- "wordnum": "Text Amount ",
- "words": "words",
- "wordtype": "Word Type",
- "workload": "workload",
- "xml_data": "XML දත්ත ",
- "year": "(year)",
- "year_0": "සංවච්ඡර",
- "year_1": "- ",
- "years": " සංවච්ඡරා(නි) ",
- "yes_string": "can ",
- "": "",
- "continue": "continue",
- "account": "Username",
- "new_to_wikipali": "New to Wikipāḷi",
- "create_account": "Create an account",
- "have_account": "I have account",
- "join_wikipali": "Join wikipāḷi",
- "pali_literature_platform": "Platform for Editing Pāḷi Literature",
- "nick_name": "nickname",
- "name_for_show": "name showed for others",
- "email_address": "E-mail address",
- "account_demond": "Username may only contain alphanumeric characters, and try to avoid using ? : ! ; , - etc.",
- "password_demond": "Make sure it's at least 5 characters including both numbers and letters",
- "login_with_google": "Log in with Google",
- "login_with_facebook": "Log in with Facebook",
- "login_with_wechat": "Log in with WeChat",
- "loged_out": "has loged out",
- "online_dict_db": "Online Search for Pāḷi",
- "user_data_share": "Editing & Sharing as Open Source",
- "cooperate_edit": "Multi-translator Collaboration",
- "cannot_empty": " cannot be empty",
- "account_existed": "Username is already existed",
- "incorrect_ID_PASS": "Incorrect Username or password.",
- "sync": "synchron",
- "restore": "restore",
- "group": "group",
- "add_folder": "new folder",
- "add_to_folder": "add to folder",
- "rename": "rename",
- "collaborate": "collaborate",
- "help": "help",
- "function_introduce": "functions of Wikipāḷi",
- "vedio_link": "vedio link",
- "project_introduce": "conference of pāḷi-translating platform",
- "help_doc": "Help document",
- "code_add": "View and download code",
- "test_declare": "This website version is only for function test, there's no garantee for the users’ personal data as so far.",
- "project_introduce_inbrief": "The general idea of Pali Canon translation project",
- "start": "Let’s start",
- "wikipali_suite": "wikipali Suite",
- "encyclopedia": "Pāḷipedia",
- "txt_search": "Text Search",
- "title_search": "Title Search",
- "dict_builder": "PCD Dict-Builder",
- "classroom": "Course",
- "filter": "filter",
- "result": "results",
- "find_about": "about ",
- "presented_in": "presented in ",
- "books": " books",
- "times": " times",
- "not_login": "login now",
- "database": "database",
- "open_with": "open with",
- "reader": "wikipāli reader",
- "folk": "folk",
- "and": " and ",
- "digest": "digest",
- "composition": "composition ",
- "corpus_statistics": "corpus statistics",
- "studio": "Studio",
- "library": "Library",
- "turbo_split": "Turbo Split",
- "full_text": "full text",
- "word_weight": "weightiness of this word",
- "characters": "characters",
- "real_declension": "reality of declensions",
- "forms": "spelling forms",
- "add_to": "add to",
- "undone_function": "unfinished function",
- "click_to_chart": "click to check the chart",
- "frequency": "Frequency",
- "declension_list": "Declension List",
- "distribution": "Distribution Chart",
- "statistical": "statistical ",
- "chart": "chart",
- "in": "present in",
- "present": "",
- "sutta": "සුත්ත",
- "vinaya": "විනය",
- "abhidhamma": "අභිධම්ම",
- "anna": "අඤ්ඤ",
- "mula": "මූල",
- "atthakatha": "අට්ඨකථා",
- "tika": "ටීකා",
- "times2": "times",
- "co_doc": "Collaborative Document",
- "open": "Open ",
- "general": "General",
- "username": "Login ID",
- "change_password": "change the password",
- "ignore": "ignore",
- "oversize_to_load": "unable to load due to oversize, please reduce the articles range",
- "page_end": "The End of The Page",
- "academy": "Academy",
- "interface": "interface",
- "preference": "preference",
- "appearance": "appearance",
- "theme": "theme",
- "first_choice_word": "first-choice term",
- "pali_word": "pali word",
- "required": "required",
- "optional": "optional",
- "comment": "comments",
- "my_term": "my term",
- "scan_in_reader": "scan in reader",
- "selected": "selected",
- "to_be_selected": "to be selected",
- "text_without_title": "text without title",
- "end_of_text": "No Prev",
- "begin_of_text": "No Next",
- "chapter_select": "Please choose a chapter in the left sidebar",
- "kala_pakkha": "කාළපක්ඛ",
- "sukka_pakkha": "සුක්කපක්ඛ",
- "com_dict": "Community Dictionary",
- "contributor": "contributor",
- "interface_language": "interface language",
- "translation_language": "languages of translation",
- "magic_dict_language": "languages of dictionary",
- "priority": "priority",
- "no_need": "no need",
- "not_started": "not yet start",
- "in_progress": "in progress",
- "already_over": "already over",
- "revise": "revise",
- "relational_map": "relational map",
- "pp": "past participle",
- "prp": "present participle",
- "fpp": "Future Passive Participle",
- "new_lesson": "Add a new lesson",
- "sub_title": "subtitle",
- "introduction": "introduction",
- "speaker": "speaker",
- "notice_live": "notice of live broadcast",
- "record_replay": "record & replay",
- "time_arrange": "time arrangement",
- "duration": "duration",
- "attachment": "attachment",
- "submit": "submit",
- "create_course": "create course",
- "created_time": "created time",
- "modified_time": "modified time",
- "num_of_hit": "num of hits",
- "all_courses": "all courses",
- "num_of_played": "Video Views",
- "recent_update": "recent update",
- "course_begin": "course starting time",
- "num_of_lesson": "num of lesson periods",
- "signed_up": "signed up",
- "sign_up": "sign up",
- "watch": "watch",
- "watched": "watched",
- "send": "send",
- "accept_copy": "accept & copy",
- "with_idea": "I have an idea…",
- "text_num": "No. of text",
- "copied_to_clipboard": "has been copied to clipboard.",
- "I_know": "Got it!",
- "text": "text ",
- "anthology": "anthology ",
- "channel": "channel & style",
- "channels": "channels list",
- "like": "like",
- "blank": "blank",
- "vocabulary_list": "words list",
- "private": "private",
- "private_note": "No URL for others,Unshown in Subscriber feed, search & related",
- "unlisted": "unlisted",
- "unlisted_note": "Can share URL,Unshown in Subscriber feed, search & related",
- "public": "public",
- "public_note": "Can share URL,Shows in Subscriber feed, search & related",
- "copy_link": "copy the Link",
- "saved": "saved ",
- "title_necessary": "title is necessary",
- "example": "for example ",
- "privacy": "privacy",
- "new_composition": "new composition",
- "add": "add ",
- "completed": "completed",
- "ongoing": "ongoing",
- "popular": "popular",
- "recommendation": "recommendation",
- "collection": "collection",
- "rates": "rates",
- "updated": "updated",
- "my_zone": "my zone",
- "share_to": "share to",
- "EXP": "EXP",
- "composition_structure": "composition structure",
- "search_tools": "search tools",
- "timeline": "timeline",
- "extension": "extension",
- "no_created": " is not created yet",
- "create_now": "create now",
- "only_this_para": "show this paragraph only",
- "no": "No ",
- "select": "select",
- "history": "history",
- "top_search": "Top search",
- "similar_sentences": "similar sentences",
- "close": "close",
- "timezone": "Timezone",
- "subfield": "subfield",
- "local": "Local",
- "form_sent": "Form sentences with the words given & copy to clipboard",
- "hot_topic": "hot topic",
- "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",
- "jump_to_this_sent": "jump to this sentence",
- "show_nissaya": "show nissaya",
- "related_para": "related paragraph",
- "disable": "disable",
- "disable_note": "disable",
- "not_found": "not found",
- "": "",
- "": ""
- },
- "grammastr": [
- {
- "id": "$",
- "value": " "
- },
- {
- "id": "$",
- "value": " "
- },
- {
- "id": "$",
- "value": " "
- },
- {
- "id": ".nt.",
- "value": "න."
- },
- {
- "id": ".m.",
- "value": "පු."
- },
- {
- "id": ".f.",
- "value": "ඉ."
- },
- {
- "id": ".sg.",
- "value": "එක."
- },
- {
- "id": ".pl.",
- "value": "බහු."
- },
- {
- "id": ".nom.",
- "value": "පඨමා."
- },
- {
- "id": ".voc.",
- "value": "ආමන්තන."
- },
- {
- "id": ".acc.",
- "value": "දුතියා."
- },
- {
- "id": ".gen.",
- "value": "ඡට්ඨී."
- },
- {
- "id": ".dat.",
- "value": "චතුත්ථී."
- },
- {
- "id": ".inst.",
- "value": "තතියා."
- },
- {
- "id": ".abl.",
- "value": "පඤ්චමී."
- },
- {
- "id": ".loc.",
- "value": "සත්තමී."
- },
- {
- "id": ".imp.",
- "value": "Imp."
- },
- {
- "id": ".cond.",
- "value": "Cond."
- },
- {
- "id": ".opt.",
- "value": "Opt."
- },
- {
- "id": ".pres.",
- "value": "වත්තමානා."
- },
- {
- "id": ".aor.",
- "value": "අ."
- },
- {
- "id": ".pf.",
- "value": "Pf."
- },
- {
- "id": ".fut.",
- "value": "Fut."
- },
- {
- "id": ".act.",
- "value": "Act."
- },
- {
- "id": ".refl.",
- "value": "Refl."
- },
- {
- "id": ".1p.",
- "value": "1p."
- },
- {
- "id": ".2p.",
- "value": "2p."
- },
- {
- "id": ".3p.",
- "value": "3p."
- },
- {
- "id": ".prp.",
- "value": "prp."
- },
- {
- "id": ".prpa.",
- "value": "prpa."
- },
- {
- "id": ".prpp.",
- "value": "prpp."
- },
- {
- "id": ".pp.",
- "value": "pp."
- },
- {
- "id": ".ppa.",
- "value": "ppa."
- },
- {
- "id": ".ppp.",
- "value": "ppp."
- },
- {
- "id": ".futp.",
- "value": "futp."
- },
- {
- "id": ".fpa.",
- "value": "fpa."
- },
- {
- "id": ".fpp.",
- "value": "fpp."
- },
- {
- "id": ".grd.",
- "value": "Grd."
- },
- {
- "id": ".pass.",
- "value": "Pass."
- },
- {
- "id": ".caus.",
- "value": "Caus."
- },
- {
- "id": ".desid.",
- "value": "desid."
- },
- {
- "id": ".intens.",
- "value": "intens."
- },
- {
- "id": ".denom.",
- "value": "denom."
- },
- {
- "id": ".ger.",
- "value": "පු."
- },
- {
- "id": ".abs.",
- "value": "පු."
- },
- {
- "id": ".inf.",
- "value": "Inf."
- },
- {
- "id": ".n.",
- "value": "නාම"
- },
- {
- "id": ".n:base.",
- "value": "නාම"
- },
- {
- "id": ".adj.",
- "value": "ති"
- },
- {
- "id": ".ti.",
- "value": "ති"
- },
- {
- "id": ".num.",
- "value": "num."
- },
- {
- "id": ".pron.",
- "value": "සර්වනාමය"
- },
- {
- "id": ".pron.per.",
- "value": "pron.per."
- },
- {
- "id": ".pron.demon.",
- "value": "pron.demon."
- },
- {
- "id": ".pron.rel.",
- "value": "pron.rel."
- },
- {
- "id": ".pron.interr.",
- "value": "pron.interr."
- },
- {
- "id": ".pron.indef.",
- "value": "pron.indef."
- },
- {
- "id": ".v.",
- "value": "ක්රි."
- },
- {
- "id": ".v:ind.",
- "value": "ක්රි"
- },
- {
- "id": ".ind.",
- "value": "නි"
- },
- {
- "id": ".adv.",
- "value": "ක්රි.වි"
- },
- {
- "id": ".adj:base.",
- "value": "adj:base."
- },
- {
- "id": ".conj.",
- "value": "conj."
- },
- {
- "id": ".prep.",
- "value": "prep."
- },
- {
- "id": ".interj.",
- "value": "interj."
- },
- {
- "id": ".comp.",
- "value": "සන්ධි"
- },
- {
- "id": ".pre.",
- "value": "උපසර්ගය"
- },
- {
- "id": ".part.",
- "value": "part"
- },
- {
- "id": ".root.",
- "value": "ධාතු"
- },
- {
- "id": ".suf.",
- "value": "පස"
- },
- {
- "id": ".end.",
- "value": "case end."
- },
- {
- "id": "_un_auto_factormean_",
- "value": "—Auto—"
- },
- {
- "id": "_un_auto_mean_",
- "value": " × × × "
- },
- {
- "id": ".un.",
- "value": "slur."
- }
- ],
- "type_str": [
- {
- "id": ".n.",
- "value": "නාම"
- },
- {
- "id": ".v.",
- "value": "ක්රි"
- },
- {
- "id": ".ti.",
- "value": "ති"
- },
- {
- "id": ".ind.",
- "value": "නි"
- },
- {
- "id": ".pron.",
- "value": "සර්වනාමය"
- },
- {
- "id": ".adj.",
- "value": "ති."
- },
- {
- "id": ".v:ind.",
- "value": "v.ind."
- },
- {
- "id": ".num.",
- "value": "num."
- },
- {
- "id": ".un.",
- "value": "සන්ධි"
- },
- {
- "id": ".comp.",
- "value": "සමාස"
- },
- {
- "id": ".pron:base.",
- "value": "pron:base."
- },
- {
- "id": ".adj:base.",
- "value": "adj:base."
- },
- {
- "id": ".n:base.",
- "value": "n:base."
- },
- {
- "id": ".ti:base.",
- "value": "ti:base."
- },
- {
- "id": ".num:base.",
- "value": "num:base."
- },
- {
- "id": ".pre.",
- "value": "උපසර්ගය"
- },
- {
- "id": ".root.",
- "value": "ධාතු"
- },
- {
- "id": ".suf.",
- "value": "පස"
- },
- {
- "id": ".end.",
- "value": "case end."
- },
- {
- "id": ".v:base.",
- "value": "v:base."
- }
- ],
- "formula": [
- {
- "id": ".pl.$.abl.",
- "value": "~"
- },
- {
- "id": "$.pl.$.abl.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.abl.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.abl.",
- "value": "~"
- },
- {
- "id": ".m.$.pl.$.abl.",
- "value": "~"
- },
- {
- "id": ".nt.$.pl.$.abl.",
- "value": "~"
- },
- {
- "id": ".f.$.pl.$.abl.",
- "value": "~"
- },
- {
- "id": ".pl.$.acc.",
- "value": "~"
- },
- {
- "id": "$.pl.$.acc.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.acc.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.acc.",
- "value": "~"
- },
- {
- "id": ".m.$.pl.$.acc.",
- "value": "~"
- },
- {
- "id": ".nt.$.pl.$.acc.",
- "value": "~"
- },
- {
- "id": ".f.$.pl.$.acc.",
- "value": "~"
- },
- {
- "id": ".pl.$.dat.",
- "value": "~"
- },
- {
- "id": "$.pl.$.dat.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.dat.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.dat.",
- "value": "~"
- },
- {
- "id": ".m.$.pl.$.dat.",
- "value": "~"
- },
- {
- "id": ".nt.$.pl.$.dat.",
- "value": "~"
- },
- {
- "id": ".f.$.pl.$.dat.",
- "value": "~"
- },
- {
- "id": ".pl.$.gen.",
- "value": "~"
- },
- {
- "id": "$.pl.$.gen.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.gen.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.gen.",
- "value": "~"
- },
- {
- "id": ".m.$.pl.$.gen.",
- "value": "~"
- },
- {
- "id": ".nt.$.pl.$.gen.",
- "value": "~"
- },
- {
- "id": ".f.$.pl.$.gen.",
- "value": "~"
- },
- {
- "id": ".pl.$.inst.",
- "value": "~"
- },
- {
- "id": "$.pl.$.inst.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.inst.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.inst.",
- "value": "~"
- },
- {
- "id": ".m.$.pl.$.inst.",
- "value": "~"
- },
- {
- "id": ".nt.$.pl.$.inst.",
- "value": "~"
- },
- {
- "id": ".f.$.pl.$.inst.",
- "value": "~"
- },
- {
- "id": ".pl.$.loc.",
- "value": "~"
- },
- {
- "id": "$.pl.$.loc.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.loc.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.loc.",
- "value": "~"
- },
- {
- "id": ".m.$.pl.$.loc.",
- "value": "~"
- },
- {
- "id": ".nt.$.pl.$.loc.",
- "value": "~"
- },
- {
- "id": ".f.$.pl.$.loc.",
- "value": "~"
- },
- {
- "id": ".pl.$.nom.",
- "value": "~"
- },
- {
- "id": "$.pl.$.nom.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.nom.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.nom.",
- "value": "~"
- },
- {
- "id": ".m.$.pl.$.nom.",
- "value": "~"
- },
- {
- "id": ".nt.$.pl.$.nom.",
- "value": "~"
- },
- {
- "id": ".f.$.pl.$.nom.",
- "value": "~"
- },
- {
- "id": ".pl.$.voc.",
- "value": "~"
- },
- {
- "id": "$.pl.$.voc.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.voc.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.voc.",
- "value": "~"
- },
- {
- "id": ".m.$.pl.$.voc.",
- "value": "~"
- },
- {
- "id": ".nt.$.pl.$.voc.",
- "value": "~"
- },
- {
- "id": ".f.$.pl.$.voc.",
- "value": "~"
- },
- {
- "id": ".sg.$.abl.",
- "value": "~"
- },
- {
- "id": "$.sg.$.abl.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.abl.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.abl.",
- "value": "~"
- },
- {
- "id": ".m.$.sg.$.abl.",
- "value": "~"
- },
- {
- "id": ".nt.$.sg.$.abl.",
- "value": "~"
- },
- {
- "id": ".f.$.sg.$.abl.",
- "value": "~"
- },
- {
- "id": ".sg.$.acc.",
- "value": "~"
- },
- {
- "id": "$.sg.$.acc.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.acc.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.acc.",
- "value": "~"
- },
- {
- "id": ".m.$.sg.$.acc.",
- "value": "~"
- },
- {
- "id": ".nt.$.sg.$.acc.",
- "value": "~"
- },
- {
- "id": ".f.$.sg.$.acc.",
- "value": "~"
- },
- {
- "id": ".sg.$.dat.",
- "value": "~"
- },
- {
- "id": "$.sg.$.dat.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.dat.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.dat.",
- "value": "~"
- },
- {
- "id": ".m.$.sg.$.dat.",
- "value": "~"
- },
- {
- "id": ".nt.$.sg.$.dat.",
- "value": "~"
- },
- {
- "id": ".f.$.sg.$.dat.",
- "value": "~"
- },
- {
- "id": ".sg.$.gen.",
- "value": "~"
- },
- {
- "id": "$.sg.$.gen.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.gen.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.gen.",
- "value": "~"
- },
- {
- "id": ".m.$.sg.$.gen.",
- "value": "~"
- },
- {
- "id": ".nt.$.sg.$.gen.",
- "value": "~"
- },
- {
- "id": ".f.$.sg.$.gen.",
- "value": "~"
- },
- {
- "id": ".sg.$.inst.",
- "value": "~"
- },
- {
- "id": "$.sg.$.inst.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.inst.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.inst.",
- "value": "~"
- },
- {
- "id": ".m.$.sg.$.inst.",
- "value": "~"
- },
- {
- "id": ".nt.$.sg.$.inst.",
- "value": "~"
- },
- {
- "id": ".f.$.sg.$.inst.",
- "value": "~"
- },
- {
- "id": ".sg.$.loc.",
- "value": "~"
- },
- {
- "id": "$.sg.$.loc.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.loc.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.loc.",
- "value": "~"
- },
- {
- "id": ".m.$.sg.$.loc.",
- "value": "~"
- },
- {
- "id": ".nt.$.sg.$.loc.",
- "value": "~"
- },
- {
- "id": ".f.$.sg.$.loc.",
- "value": "~"
- },
- {
- "id": ".sg.$.nom.",
- "value": "~"
- },
- {
- "id": "$.sg.$.nom.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.nom.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.nom.",
- "value": "~"
- },
- {
- "id": ".m.$.sg.$.nom.",
- "value": "~"
- },
- {
- "id": ".nt.$.sg.$.nom.",
- "value": "~"
- },
- {
- "id": ".f.$.sg.$.nom.",
- "value": "~"
- },
- {
- "id": ".sg.$.voc.",
- "value": "~"
- },
- {
- "id": "$.sg.$.voc.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.voc.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.voc.",
- "value": "~"
- },
- {
- "id": ".m.$.sg.$.voc.",
- "value": "~"
- },
- {
- "id": ".nt.$.sg.$.voc.",
- "value": "~"
- },
- {
- "id": ".f.$.sg.$.voc.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.caus.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.caus.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.caus.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.caus.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.caus.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.caus.",
- "value": "~"
- },
- {
- "id": ".3p.$.pl.$.caus.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.caus.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.caus.",
- "value": "~"
- },
- {
- "id": ".3p.$.pl.$.caus.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.caus.doub.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.caus.doub.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.caus.doub.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.caus.doub.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.caus.doub.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.caus.doub.",
- "value": "~"
- },
- {
- "id": ".3p.$.pl.$.caus.doub.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.caus.doub.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.caus.doub.",
- "value": "~"
- },
- {
- "id": ".3p.$.pl.$.caus.doub.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.caus.opt.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.caus.opt.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.caus.opt.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.caus.opt.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.caus.opt.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.caus.opt.",
- "value": "~"
- },
- {
- "id": ".3p.$.pl.$.caus.opt.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.caus.opt.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.caus.opt.",
- "value": "~"
- },
- {
- "id": ".3p.$.pl.$.caus.opt.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.caus.pass.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.caus.pass.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.caus.pass.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.caus.pass.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.caus.pass.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.caus.pass.",
- "value": "~"
- },
- {
- "id": ".3p.$.pl.$.caus.pass.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.caus.pass.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.caus.pass.",
- "value": "~"
- },
- {
- "id": ".3p.$.pl.$.caus.pass.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.pass.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.pass.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.pass.",
- "value": "~"
- },
- {
- "id": ".3p.$.pl.$.pass.",
- "value": "~"
- },
- {
- "id": ".1p.$.pl.$.pass.",
- "value": "~"
- },
- {
- "id": ".2p.$.pl.$.pass.",
- "value": "~"
- },
- {
- "id": ".3p.$.pl.$.pass.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.pass.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.pass.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.pass.",
- "value": "~"
- },
- {
- "id": ".3p.$.sg.$.pass.",
- "value": "~"
- },
- {
- "id": ".3p.$.sg.$.pass.",
- "value": "~"
- },
- {
- "id": ".3p.$.sg.$.pass.",
- "value": "~"
- },
- {
- "id": ".1p.$.sg.$.pass.",
- "value": "~"
- },
- {
- "id": ".2p.$.sg.$.pass.",
- "value": "~"
- }
- ],
- "parent_formula": [
- {
- "id": ".imp.",
- "value": "~"
- },
- {
- "id": ".cond.",
- "value": "~"
- },
- {
- "id": ".opt.",
- "value": "~"
- },
- {
- "id": ".pres.",
- "value": "~"
- },
- {
- "id": ".aor.",
- "value": "~"
- },
- {
- "id": ".pf.",
- "value": "~"
- },
- {
- "id": ".fut.",
- "value": "~"
- },
- {
- "id": ".prp.",
- "value": "~"
- },
- {
- "id": ".prpa.",
- "value": "~"
- },
- {
- "id": ".prpp.",
- "value": "~"
- },
- {
- "id": ".pp.",
- "value": "~"
- },
- {
- "id": ".ppa.",
- "value": "~"
- },
- {
- "id": ".ppp.",
- "value": "~"
- },
- {
- "id": ".futp.",
- "value": "~"
- },
- {
- "id": ".fpa.",
- "value": "~"
- },
- {
- "id": ".fpp.",
- "value": "~"
- },
- {
- "id": ".grd.",
- "value": "~"
- },
- {
- "id": ".pass.",
- "value": "~"
- },
- {
- "id": ".caus.",
- "value": "~"
- },
- {
- "id": ".desid.",
- "value": "~"
- },
- {
- "id": ".intens.",
- "value": "~"
- },
- {
- "id": ".ger.",
- "value": "~"
- },
- {
- "id": ".abs.",
- "value": "~"
- },
- {
- "id": ".inf.",
- "value": "~"
- }
- ],
- "dictname": [
- {
- "id": "bh",
- "value": "巴漢-明法尊者"
- },
- {
- "id": "sy",
- "value": "漢譯-水野弘元"
- },
- {
- "id": "user",
- "value": "User Dict"
- },
- {
- "id": "co",
- "value": "Concise"
- },
- {
- "id": "unkow",
- "value": "Unknown"
- },
- {
- "id": "vn",
- "value": "SYS_IR-V"
- },
- {
- "id": "SCR",
- "value": "Root-中"
- },
- {
- "id": "ENR",
- "value": "Root-EN"
- },
- {
- "id": "parts",
- "value": "Parts"
- },
- {
- "id": "sys_ir",
- "value": "SYS_IR-K"
- },
- {
- "id": "PM",
- "value": "Pāḷi-Myr"
- },
- {
- "id": "",
- "value": ""
- },
- {
- "id": "",
- "value": ""
- },
- {
- "id": "",
- "value": ""
- }
- ],
- "dictname_short": [
- {
- "id": "bh",
- "value": "巴漢"
- },
- {
- "id": "sy",
- "value": "水漢"
- },
- {
- "id": "user",
- "value": "User"
- },
- {
- "id": "co",
- "value": "Con"
- },
- {
- "id": "unkow",
- "value": "Unknown"
- },
- {
- "id": "vn",
- "value": "SYS_IR-V"
- },
- {
- "id": "SCR",
- "value": "根中"
- },
- {
- "id": "ENR",
- "value": "Root"
- },
- {
- "id": "parts",
- "value": "Parts"
- },
- {
- "id": "sys_ir",
- "value": "IR"
- },
- {
- "id": "PM",
- "value": "Pāḷi-Myr"
- },
- {
- "id": "",
- "value": ""
- },
- {
- "id": "",
- "value": ""
- },
- {
- "id": "",
- "value": ""
- }
- ],
- "language": {
- "en": "English",
- "si": "සිංහල",
- "my": "සුවණ්ණභූමි",
- "zh": "චීන",
- "zh_cn": "Simple චීන",
- "zh_tw": "Traditional චීන"
- }
- }
|