| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872 |
- {
- "gui": {
- "50": "50+%",
- "3rd_dictionary": "3rd Dictionary",
- "accessed": "Accessed",
- "add_to_edit_list": "Add to Edit List",
- "adhivacana": "Adhivacana",
- "all": "All",
- "all_select": "All",
- "all_data!": "All Data!",
- "all_done": "Looking up accomplished",
- "allsplit": "Words Splited Successfully ^-^",
- "and_another": " and ",
- "append": "Append",
- "apply": "Apply",
- "applyto": "Apply to",
- "arrival_in_detail": "arrival in detail",
- "asc": "ASC",
- "atitude": "Atitude",
- "audio": "Audio",
- "author": "Author",
- "auto": "AUTO",
- "auto_fill": "Automatic filling",
- "back": "back",
- "base_on": "Base on",
- "BE": "Buddhist Era ",
- "bhumma": "Bhumma",
- "book": "book",
- "book_mark": "Book Mark",
- "book_name": "book name",
- "bookmark": "bookmark...",
- "buddhist_calendar": "Buddhist Calendar",
- "budha": "Budha",
- "by": "By",
- "cancel": "Cancel",
- "canda": "Canda",
- "caption": "Caption",
- "CE": "CE",
- "change_position": "change position",
- "chars": "Chars",
- "checking": "scanning",
- "children": "Children",
- "chinese": "中文",
- "click_on": "Click On",
- "click_word_to": "click word to ",
- "code_convert": "Code Convertor",
- "color": "Color",
- "column_compare": "column",
- "commentary": "Commentary",
- "completely_delete": "completely delete",
- "computer": "Computer",
- "confirm": "Confirm",
- "content": "Content",
- "contents": "Contents",
- "copy": "copy",
- "copy_to_clipboard": "copy to clipboard",
- "creat_a_new_file_by_yourself": "Creat a new file by yourself",
- "created": "Created",
- "current": "Current",
- "database_admin": "Database Admin",
- "date": "Date ",
- "day": " ",
- "day_1": " ",
- "days": " day(s) ",
- "debug": "Debug",
- "delete": "Delete",
- "departure_in_detail": "departure in detail",
- "desc": "DESC",
- "detaile": "Detaile",
- "dhamma_time": "5000 Years of the Buddha’s Dispensation ",
- "dict": "Dict",
- "dict_match": "Match the Dictionary and Document",
- "dict_terms": "Terms",
- "dictionary": "Dictionary",
- "dictionary_match_result": "Dictionary Match Result",
- "dictsouce": "Dictionary Resouce",
- "difficulty": "difficulty level",
- "done": " scanned",
- "down": "Down",
- "download": "[Download]",
- "draft": "As Draft",
- "dawn": "dawn",
- "each_paragraph": "E paragraph",
- "each_sentence": "E sentence",
- "eat": "eat",
- "edit": "Edit",
- "edit_now": "Edit in Studio",
- "edit1": "Edited By ",
- "edition": "Edition ",
- "editor": "Editor",
- "e-mail": "E-mail",
- "empty": "Empty",
- "empty_the_data_below": "Empty the Data Below",
- "empty_the_recycle_bin": "Empty the Recycle Bin",
- "empty1": "EMPTY",
- "english": "English",
- "export": "Export",
- "export_csv": "Export CSV",
- "export_html": "Export HTML",
- "f_mean": "F-Mean",
- "factor": "Factor",
- "factors_input": "input factors by click",
- "favorite": "favorite",
- "file_name": "File Name",
- "files": " files",
- "find_replace": "Find & Replace",
- "finish": "Finish",
- "finished": "finished",
- "g_mean": "G-Mean",
- "gama_entry": "entry the village",
- "gramma": "nirutti",
- "gramma_case": "Grammar Case",
- "guid_creator": "GUID Creator",
- "guru": "Guru",
- "h": "(h)",
- "half": "half",
- "heading": "Heading",
- "heading_1": "Heading 1",
- "heading_2": "Heading 2",
- "heading_3": "Heading 3",
- "heading_4": "Heading 4",
- "heading_5": "Heading 5",
- "heading_6": "Heading 6",
- "heading_7": "Heading 7",
- "heading_8": "Heading 8",
- "heading_lv1": "Heading Lv1",
- "heading_lv2": "Heading Lv2",
- "heading_lv3": "Heading Lv3",
- "heading_lv4": "Heading Lv4",
- "heading_lv5": "Heading Lv5",
- "heading_lv6": "Heading Lv6",
- "heading_lv7": "Heading Lv7",
- "heading_lv8": "Heading Lv8",
- "hidden": "hidden",
- "home": "Home",
- "hori_ref_time": "horizontal refraction correct ",
- "html_text_data": "HTML Text Data",
- "import": "Import",
- "import_csv": "Import CSV",
- "import_export": "Import/Export",
- "import_the_flie_from_cscd": "Import the flie From Cattha Sangayana data base",
- "include": "include",
- "info_panal": "Info Panal",
- "infomation": "Infomation",
- "inline_dictionary": "Inline Dictionary",
- "innerdict": "Inline Dictionary",
- "input": "input",
- "kala": "suitable time",
- "keywords": "Keywords",
- "language": "Language ",
- "language_select": "bhāsā",
- "layout": "Layout",
- "left": "Remains ",
- "lesson": "lesson",
- "letters": " letters",
- "level": "Lv",
- "list": "List",
- "load": "Load",
- "load_from_database": "Load From Database",
- "load_from_wbw_file": "Load From WBW File",
- "loading": "loading…",
- "loading_dictionary_list...": "loading Dictionary List...",
- "lock": "Lock",
- "login": "Login",
- "logout": "Logout",
- "longitude": "Longitude",
- "magic_dict": "Magic Dict",
- "magic_gap": "Magic Gap",
- "magic_split": "Magic Split",
- "magic_terms": "Magic Terms",
- "main_code": "Main Code",
- "mark": "Mark",
- "māsa": "māsa",
- "match_end": "Document update over,Degree of Perfection",
- "matched": "Matched",
- "max": "Max",
- "meaning": "Meaning",
- "meaning_input": "input meanings by click",
- "message": "message",
- "min": "min",
- "mins": "(min)",
- "mobile": "Mobile",
- "modified": "Modified",
- "modify": "Modify",
- "modifyok": "Modified ",
- "month": "Month ",
- "month_1": "- ",
- "months": " month(s) ",
- "more": "more",
- "my_book": "My Book",
- "my_dictionary": "My Dictionary",
- "my_document": "My Document",
- "my_loc": "attasmiṃ",
- "name": "Name",
- "need_inform": "without informing other Bhikkhu ",
- "new": "New",
- "new_account": "New Account",
- "new_project": "New Project",
- "new_revision": "New Revision",
- "new_technic_term": "New Technic Term",
- "newheading": "Text Editor",
- "newproject": "New Project",
- "newword": "New Word",
- "night": "Night",
- "no.": "No.",
- "no_related_file": "No related file",
- "no_string": "cannot ",
- "nofilename": "No File Name",
- "noon_time": "NOON",
- "normal": "Normal",
- "note": "Note",
- "now_time": "NOW",
- "num_k": "K",
- "num_m": "M",
- "ok": "OK",
- "order_by": "Order By",
- "other": "Other",
- "other_meaning": "other meaning",
- "otherdict": "Other Dictionary",
- "pa_auk_dictionary": "Pa-auk Dictionary",
- "pacchā_māsa": "pacchā-māsa",
- "pakkha": "Lunar Phases ",
- "pāli": "Pāli",
- "pali_canon": "Pāḷi Canon",
- "pāli_code": "Pāli Code",
- "para": " Paragraphs",
- "paragraph": "Paragraph",
- "parent": "Parent",
- "parent_input": "input parent by click",
- "part": "Factors",
- "partmeaning": "Factor-Meaning",
- "password": "Password",
- "password_again": "Password again",
- "past": "Passed ",
- "pcd_studio": "PCD Studio ",
- "piṭaka": "Piṭaka",
- "plugin": "Plugin",
- "poweredby": "Powered by PCSD build 27th-Jul-2018",
- "preview": "preview",
- "print": "Print",
- "print_preview": "Print Preview",
- "product": "translation words",
- "project": "Project",
- "protection": "Protection【en】",
- "pubba_māsa": "pubba-māsa",
- "publish": "Publish",
- "ravi": "Ravi",
- "read": "Read",
- "read_only": "Read Only",
- "recent_scan": "Recent Scan",
- "recycle_bin": "Recycle Bin",
- "ref_dict": "Dictionary",
- "refresh": "Refresh",
- "relation": "atthayojanā",
- "remove": "Remove",
- "removeword": "Slur Factor Removed",
- "render": "Render",
- "repeat": "Repeat Quotiety ",
- "resource": "Resource",
- "revision": "Revised By ",
- "revision_mode": "Revision Mode",
- "round_1": "Round ",
- "round_2": " dictionary",
- "row_compare": "row",
- "same_word": "same words",
- "saṃvacchara": "saṃvacchara",
- "sandhi": "Sandhi",
- "sandhi_begin": "Sandhi Begin",
- "sandhi_combin_mode": "Sandhi Combin Mode",
- "sandhi_end": "Sandhi End",
- "sandhi_orginal_word": "Sandhi Orginal Word",
- "sandhi_splited_word": "Sandhi Splited Word",
- "save": "Save",
- "script": "Script",
- "search": "Search",
- "season": "Season ",
- "sec": "sec ",
- "sent_trans": "Translate of Sentence",
- "sentence": "Sentence",
- "sentence_by_sentence": "Sentence By Sentence",
- "setting": "Setting",
- "share": "share",
- "shared": "shared",
- "show": "Show",
- "similar_words": "Similar Words",
- "size": "size",
- "smart_spell": "smart spell",
- "sora": "Sora",
- "source": "Source",
- "spell": "Spell",
- "statistical_data": "statistical data",
- "style": "Style",
- "sub_pcode": "Sub Code",
- "subversion": "Subversion",
- "success": " Words Successfully",
- "successful": "Successful",
- "sukka": "Sukka",
- "sun_height_degree": "Max solar altitude ",
- "system_default": "System Default",
- "system_dictionary": "System Dictionary",
- "tag": "tag",
- "templet": "Templet",
- "terms_system": "Terms System",
- "thischapter": "This Chapter",
- "time": "Time",
- "title": "title ",
- "to_the_dhamma": "Welcome to the Dhamma!",
- "today": "Today ",
- "toDB": "To User Database",
- "tools": "Tools",
- "total": "Total ",
- "total_workload": "total workload",
- "totally": "Totally ",
- "tran_workload": "whole passage translate ",
- "translate": "Translate",
- "translate_convert": "Translate Convert",
- "translate1": "Translated By ",
- "translation": "Translation",
- "translation_templet": "Translation Templet",
- "twilight_time": "dawn",
- "undo_shared": "undo shared",
- "unsplit": "Slur Splited",
- "up": "Up",
- "up_and_down": "Up And Down",
- "update_all_wbw_to_database": "Update All WBW to Database",
- "user": "User",
- "user_dictionary": "User Dictionary",
- "user_id": "User ID",
- "userdict": "User Dictionary",
- "vannana": "vaṇṇanā",
- "view": "View",
- "vikala": "unsuitable time",
- "vocabulary": "Vocabulary ",
- "wbw": "Word by Word Analysis",
- "week": "(week)",
- "week_day": "Day",
- "welcome": "",
- "white": "White",
- "wiki_term": "Wiki Term",
- "with_title": "With Title",
- "wizard": "Wizard",
- "wizard_my_book": "Wizard -> My Book",
- "word_base": "Word base",
- "word_by_word": "Word by Word",
- "word_gramma_statistics": "Word & Grammar Statistics",
- "word_length": "average word length",
- "word_list": "Word List",
- "word_note": "Word Note",
- "word_selection_apply_to": "Word Selection Apply to",
- "wordmap": "Word Tree",
- "wordnum": "Text Amount ",
- "words": " words",
- "wordtype": "Word Type",
- "workload": "workload",
- "xml_data": "XML Data",
- "year": "(year)",
- "year_0": "saṃvacchara",
- "year_1": "- ",
- "years": " year(s) ",
- "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": "sutta",
- "vinaya": "vinaya",
- "abhidhamma": "abhidhamma",
- "anna": "añña",
- "mula": "mūla",
- "atthakatha": "aṭṭhakathā",
- "tika": "ṭīkā",
- "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",
- "open_doc": "如果未自动跳转,请点此打开",
- "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": "kāḷapakkha",
- "sukka_pakkha": "sukkapakkha",
- "com_dict": "community dictionary",
- "contributor": "contributor",
- "": ""
- },
- "grammastr": [
- {
- "id": "$",
- "value": "·"
- },
- {
- "id": "$",
- "value": "·"
- },
- {
- "id": "$",
- "value": "·"
- },
- {
- "id": ".nt.",
- "value": "na"
- },
- {
- "id": ".m.",
- "value": "pu"
- },
- {
- "id": ".f.",
- "value": "thī"
- },
- {
- "id": ".sg.",
- "value": "eka"
- },
- {
- "id": ".pl.",
- "value": "bahu"
- },
- {
- "id": ".nom.",
- "value": "paccatta"
- },
- {
- "id": ".acc.",
- "value": "upayoga"
- },
- {
- "id": ".inst.",
- "value": "karaṇa"
- },
- {
- "id": ".dat.",
- "value": "sampadāna"
- },
- {
- "id": ".abl.",
- "value": "nissakka"
- },
- {
- "id": ".gen.",
- "value": "sāmi"
- },
- {
- "id": ".loc.",
- "value": "bhumma"
- },
- {
- "id": ".voc.",
- "value": "āmantana"
- },
- {
- "id": ".imp.",
- "value": "āṇatti"
- },
- {
- "id": ".cond.",
- "value": "parikappa"
- },
- {
- "id": ".opt.",
- "value": "parikappa"
- },
- {
- "id": ".pres.",
- "value": "paccuppanna"
- },
- {
- "id": ".aor.",
- "value": "atīta"
- },
- {
- "id": ".fut.",
- "value": "anāgata"
- },
- {
- "id": ".med.",
- "value": "attano"
- },
- {
- "id": ".1p.",
- "value": "amha"
- },
- {
- "id": ".2p.",
- "value": "tumha"
- },
- {
- "id": ".3p.",
- "value": "ta"
- },
- {
- "id": ".ger.",
- "value": "Ger."
- },
- {
- "id": ".abs.",
- "value": "Abs."
- },
- {
- "id": ".inf.",
- "value": "Inf."
- },
- {
- "id": ".pf.",
- "value": "pf."
- },
- {
- "id": ".act.",
- "value": "act."
- },
- {
- "id": ".refl.",
- "value": "refl."
- },
- {
- "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": ".n.",
- "value": "nāma"
- },
- {
- "id": ".v.",
- "value": "kriyā"
- },
- {
- "id": ".ind.",
- "value": "bya"
- },
- {
- "id": ".v:ind.",
- "value": "kriyā:bya"
- },
- {
- "id": ".adv.",
- "value": "karaṇattha"
- },
- {
- "id": ".adj.",
- "value": "ti"
- },
- {
- "id": ".ti.",
- "value": "ti"
- },
- {
- "id": ".num.",
- "value": "num."
- },
- {
- "id": ".pron.",
- "value": "pron."
- },
- {
- "id": ".v:base.",
- "value": "v:base."
- },
- {
- "id": ".ti:base.",
- "value": "n.a:base."
- },
- {
- "id": ".adj:base.",
- "value": "adj:base."
- },
- {
- "id": ".n:base.",
- "value": "n:base."
- },
- {
- "id": ".pron:base.",
- "value": "pron:base."
- },
- {
- "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": ".conj.",
- "value": "conj."
- },
- {
- "id": ".prep.",
- "value": "prep."
- },
- {
- "id": ".interj.",
- "value": "interj."
- },
- {
- "id": ".comp.",
- "value": "comp."
- },
- {
- "id": ".pre.",
- "value": "prefix."
- },
- {
- "id": ".part.",
- "value": "part"
- },
- {
- "id": ".root.",
- "value": "root."
- },
- {
- "id": ".suf.",
- "value": "suffix."
- },
- {
- "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": "nāma"
- },
- {
- "id": ".v.",
- "value": "kriyā"
- },
- {
- "id": ".ind.",
- "value": "bya"
- },
- {
- "id": ".v:ind.",
- "value": "kriyā:bya"
- },
- {
- "id": ".adv.",
- "value": "karaṇattha"
- },
- {
- "id": ".adj.",
- "value": "ti"
- },
- {
- "id": ".ti.",
- "value": "ti"
- },
- {
- "id": ".pron.",
- "value": "pron."
- },
- {
- "id": ".note.",
- "value": "original"
- },
- {
- "id": ".num.",
- "value": "num."
- },
- {
- "id": ".un.",
- "value": "sandhi"
- },
- {
- "id": ".comp.",
- "value": "samāsa"
- },
- {
- "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": "prefix."
- },
- {
- "id": ".root.",
- "value": "root."
- },
- {
- "id": ".suf.",
- "value": "suffix."
- },
- {
- "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": "~"
- },
- {
- "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": ""
- }
- ],
- "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": "sīhaḷa",
- "my": "suvaṇṇabhūmi",
- "zh": "cīna",
- "zh_cn": "Simple cīna",
- "zh_tw": "Traditional cīna"
- }
- }
|