| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048 |
- const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
- module.exports = {
- zh: {
- languageName: "中文",
- extended: "多元宇宙",
- extendedDescription: [
- "当你支持某人时,你可能会下载他们所支持的居民的帖子,这些帖子会显示在这里,按时间倒序排列。",
- ],
- popular: "精选",
- popularDescription: [
- "来自你网络中居民的帖子,",
- strong("按传播量排序"),
- "。选择时间段以获取列表。",
- ],
- day: "日",
- week: "周",
- month: "月",
- year: "年",
- latest: "最新",
- latestDescription: [
- strong("帖子"),
- " 来自你自己和你支持的居民,按时间倒序排列。",
- ],
- topics: "话题",
- topicsDescription: [
- strong("话题"),
- " 来自你自己和你支持的居民,按时间倒序排列。",
- ],
- summaries: "摘要",
- summariesDescription: [
- strong("有评论的话题"),
- " 来自你自己和你支持的居民,按时间倒序排列。",
- ],
- threads: "讨论串",
- threadsDescription: [
- strong("有评论的帖子"),
- " 来自你支持的居民(包括多元宇宙),按时间倒序排列。",
- ],
- profile: "头像",
- inhabitants: "居民",
- manualMode: "手动模式",
- mentions: "提及",
- mentionsDescription: [
- strong("@提及你的帖子"),
- ",按时间倒序排列。",
- ],
- nextPage: "下一页",
- previousPage: "上一页",
- noMentions: "你还没有收到@提及。",
- private: "收件箱",
- privateDescription: "查看和管理你的私信。",
- privateInbox: "收件箱",
- privateSent: "已发送",
- privateFrom: "发件人",
- privateTo: "收件人",
- privateDate: "日期",
- privateDelete: "删除",
- pmCreateButton: "写私信",
- pmReply: "回复",
- pmReplies: "回复",
- pmNew: "新消息",
- pmMarkRead: "标记为已读",
- inReplyTo: "回复",
- pmPreview: "预览",
- pmPreviewTitle: "消息预览",
- noPrivateMessages: "你还没有收到任何私信。",
- peers: "节点",
- privateDescription: ["私信通过",strong("你的公钥加密"),",最多可有7位收件人。"],
- search: "搜索",
- searchDescription: "描述",
- imageSearch: "图片搜索",
- searchPlaceholder: "搜索 @居民、#标签和关键词...",
- settings: "设置",
- continueReading: "继续阅读",
- moreComments: "更多评论",
- readThread: "阅读剩余讨论串",
- pixeliaTitle: 'Pixelia',
- pixeliaDescription: '在网格上绘制像素,与网络中的其他人协作创作。',
- coordLabel: '坐标(例如 A3)',
- coordPlaceholder: '输入坐标',
- contributorsTitle: "贡献者",
- pixeliaBy: "作者",
- colorLabel: '选择颜色',
- paintButton: '画!',
- invalidCoordinate: '坐标无效',
- goToMuralButton: "查看壁画",
- totalPixels: '总像素数',
- modules: "模块",
- modulesViewTitle: "模块",
- modulesViewDescription: "通过启用或禁用模块来设置你的环境。",
- inbox: "收件箱",
- multiverse: "多元宇宙",
- popularLabel: "精选",
- topicsLabel: "话题",
- latestLabel: "最新",
- summariesLabel: "摘要",
- threadsLabel: "讨论串",
- multiverseLabel: "多元宇宙",
- inboxLabel: "收件箱",
- invitesLabel: "邀请",
- walletLabel: "钱包",
- legacyLabel: "密钥",
- cipherLabel: "加密器",
- bookmarksLabel: "书签",
- videosLabel: "视频",
- torrentsLabel: "种子",
- docsLabel: "文档",
- audiosLabel: "音频",
- tagsLabel: "标签",
- imagesLabel: "图片",
- inhabitantsLabel: "居民",
- trendingLabel: "热门",
- eventsLabel: "活动",
- tasksLabel: "任务",
- transfersTitle: "转账",
- marketTitle: "市场",
- opinionsTitle: "观点",
- saveSettings: "保存配置",
- apply: "应用",
- menuPersonal: "个人",
- menuContent: "内容",
- menuGovernance: "治理",
- menuOffice: "办公",
- menuMultiverse: "多元宇宙",
- menuNetwork: "网络",
- menuCreative: "创意",
- menuEconomy: "经济",
- menuMedia: "媒体",
- menuTools: "工具",
- comment: "评论",
- subtopic: "子话题",
- json: "JSON",
- createdAt: "创建于",
- createdBy: "作者",
- unfollow: "取消支持",
- follow: "支持",
- block: "屏蔽",
- unblock: "取消屏蔽",
- newerPosts: "更新的帖子",
- olderPosts: "更早的帖子",
- feedRangeEmpty: "该范围内没有内容。请尝试查看",
- seeFullFeed: "完整动态",
- feedEmpty: "Oasis 网络从未见过此账户的帖子。",
- beginningOfFeed: "这是动态的起始位置",
- noNewerPosts: "尚未收到更新的帖子。",
- relationshipNotFollowing: "你未被支持",
- relationshipTheyFollow: "支持你",
- relationshipMutuals: "互相支持",
- relationshipFollowing: "你正在支持",
- relationshipYou: "你",
- relationshipBlocking: "你正在屏蔽",
- relationshipBlockedBy: "你被屏蔽了",
- relationshipMutualBlock: "互相屏蔽",
- relationshipNone: "你未支持",
- relationshipConflict: "冲突",
- relationshipBlockingPost: "已屏蔽的帖子",
- viewLikes: "查看传播",
- spreadedDescription: "该居民传播的帖子列表。",
- totalspreads: "总传播数",
- attachFiles: "附加文件",
- preview: "预览",
- publish: "写作",
- contentWarningPlaceholder: "为帖子添加主题(可选)",
- privateWarningPlaceholder: "添加居民以发送私密帖子(可选)",
- publishWarningPlaceholder: "...",
- publishCustomDescription: [
- "提醒:由于区块链技术,帖子一旦发布就无法编辑或删除。",
- ],
- commentWarning: [
- "提醒:由于区块链技术,帖子一旦发布就无法编辑或删除。",
- ],
- commentPublic: "公开",
- commentPrivate: "私密",
- commentLabel: ({ publicOrPrivate, markdownUrl }) => [
- ],
- publishLabel: ({ markdownUrl, linkTarget }) => [
- "提醒:由于区块链技术,帖子一旦发布就无法编辑或删除。",
- ],
- replyLabel: ({ markdownUrl }) => [
- "提醒:由于区块链技术,帖子一旦发布就无法编辑或删除。",
- ],
- publishCustomInfo: ({ href }) => [
- "如果你有经验,也可以",
- a({ href }, "撰写高级帖子"),
- "。",
- ],
- publishBasicInfo: ({ href }) => [
- "如果你没有经验,应该",
- a({ href }, "撰写帖子"),
- "。",
- ],
- publishCustom: "撰写高级帖子",
- subtopicLabel: "创建此帖子的子话题",
- messagePreview: "帖子预览",
- mentionsMatching: "匹配的提及",
- mentionsName: "名称",
- mentionsRelationship: "关系",
- updateit: "获取更新!",
- updateBannerText: "Oasis 有新版本可用。",
- updateBannerAction: "立即更新 →",
- info: "信息",
- settingsIntro: ({ version }) => [
- `[SNH] ꖒ OASIS [ v.${version} ]`,
- ],
- timeAgo: "前",
- sendTime: "大约 ",
- theme: "主题",
- legacy: "密钥",
- legacyTitle: "密钥",
- legacyDescription: "快速安全地管理你的密钥(私钥)。",
- legacyExportButton: "导出",
- legacyImportButton: "导入",
- ssbLogStream: "区块链",
- ssbLogStreamDescription: "配置区块链流的消息限制。",
- saveSettings: "保存设置",
- exportTitle: "导出数据",
- exportDescription: "设置密码(至少32个字符)以加密你的密钥",
- exportDataTitle: "备份",
- exportDataDescription: "下载你的数据(不包含私钥!)",
- exportDataButton: "下载数据库",
- pubWallet: "PUB 钱包",
- pubWalletDescription: "设置 PUB 钱包 URL。这将用于 PUB 交易(包括 UBI)。",
- pubWalletConfiguration: "保存配置",
- importTitle: "导入数据",
- importDescription: "导入你的加密私钥以启用你的头像",
- importAttach: "附加加密文件 (.enc)",
- passwordLengthInfo: "密码至少需要32个字符。",
- passwordImport: "输入密码以解密将保存在系统主目录的数据(文件名:secret)",
- randomPassword: "随机密码",
- exportPasswordPlaceholder: "使用小写字母、大写字母、数字和符号",
- fileInfo: "你的加密私钥将保存在系统主目录(文件名:oasis.enc)",
- themeIntro:
- "选择一个主题。",
- setTheme: "设置主题",
- language: "语言",
- languageDescription:
- "如果你想使用其他语言,请在此选择。",
- setLanguage: "设置语言",
- status: "状态",
- peerConnections: "节点",
- peerConnectionsIntro: "管理与其他节点的所有连接。",
- online: "在线",
- offline: "离线",
- discovered: '已发现',
- unknown: '未知',
- pub: 'PUB',
- supported: "已支持",
- recommended: "推荐",
- blocked: "已屏蔽",
- noConnections: "没有已连接的节点。",
- noDiscovered: "没有已发现的节点。",
- noSupportedConnections: "没有已支持的节点。",
- noBlockedConnections: "没有已屏蔽的节点。",
- noRecommendedConnections: "没有推荐的节点。",
- connectionActionIntro:
- "",
- startNetworking: "启动网络",
- stopNetworking: "停止网络",
- restartNetworking: "重启网络",
- sync: "同步网络",
- indexes: "索引",
- indexesDescription:
- "重建索引是安全的,可能修复某些类型的错误。",
- homePageTitle: "主页",
- homePageDescription: "选择你想要作为主页的模块。",
- saveHomePage: "设置主页",
- invites: "邀请",
- invitesTitle: "邀请",
- invitesInvites: "邀请",
- invitesDescription: "管理和应用你网络中的邀请码。",
- invitesTribesTitle: "部落",
- invitesTribeInviteCodePlaceholder: "输入部落邀请码",
- invitesTribeJoinButton: "加入部落",
- invitesPubsTitle: "PUBs",
- invitesPubInviteCodePlaceholder: "输入 PUB 邀请码",
- invitesAcceptInvite: "加入 PUB",
- invitesAcceptedInvites: "已联邦网络",
- invitesNoInvites: "尚未接受任何邀请。",
- invitesUnfollow: "取消关注",
- invitesFollow: "关注",
- invitesUnfollowedInvites: "未联邦网络",
- invitesNoFederatedPubs: "没有已联邦网络。",
- invitesNoUnfollowed: "没有未联邦网络。",
- invitesUnreachablePubs: "不可达网络",
- invitesNoUnreachablePubs: "没有不可达网络。",
- currentlyUnreachable: "错误!",
- errorDetails: "错误详情",
- genericError: "发生了一个错误。",
- panicMode: "紧急模式!",
- encryptData: "设置密码(至少32个字符)以加密你的区块链",
- decryptData: "输入密码以解密你的区块链",
- panicModeDescription: "加密/解密或删除你的区块链",
- removeDataDescription: "警告:此操作不可撤销。",
- encryptPanicButton: "加密区块链",
- decryptPanicButton: "解密区块链",
- removePanicButton: "删除所有数据!",
- searchTitle: "搜索",
- searchDescriptionLabel: "在你的网络中搜索内容。",
- searchLanguagesLabel: "语言",
- searchSkillsLabel: "技能",
- searchPlaceholder:"搜索内容...",
- searchSubmit:"搜索!",
- tribeLocationLabel:"位置",
- tribeModeLabel:"邀请模式",
- tribeMembersCount:"成员数",
- searchDateLabel:"日期",
- searchLocationLabel:"位置",
- searchPriceLabel:"价格",
- searchUrlLabel:"URL",
- searchCategoryLabel:"类别",
- searchStartLabel:"开始时间",
- searchEndLabel:"结束时间",
- searchPriorityLabel:"优先级",
- searchStatusLabel:"状态",
- statusLabel:"状态",
- totalVotesLabel:"总票数",
- votesLabel:"投票",
- noResultsFound:"未找到结果。",
- author:"作者",
- createdAtLabel:"创建于",
- hashtagDescription:"浏览与此标签相关的内容",
- tribeDescriptionLabel:"描述",
- votesOption:"投票选项",
- voteYesLabel:"赞成",
- voteNoLabel:"反对",
- allTypesLabel: "无限制",
- ABSTENTIONLabel:"弃权",
- YESLabel:"赞成",
- NOLabel:"反对",
- FOLLOW_MAJORITYLabel: "跟随多数",
- CONFUSEDLabel: "困惑",
- NOT_INTERESTEDLabel: "不感兴趣",
- voteOptionYes:"赞成",
- voteOptionNo:"反对",
- voteOptionAbstention:"弃权",
- StatusLabel:"状态",
- votesOptionYesLabel:"赞成",
- votesOptionNoLabel:"反对",
- votesOptionAbstentionLabel:"弃权",
- votesQuestionLabel:"问题",
- votesCreatedByLabel:"创建者",
- voteStatusOpen:"进行中",
- voteStatusClosed:"已关闭",
- imageSearchLabel: "输入关键词以搜索带有相应标签的图片。",
- commentDescription: ({ parentUrl }) => [
- " 评论了 ",
- a({ href: parentUrl }, " 讨论串"),
- ],
- commentTitle: ({ authorName }) => [`对 @${authorName} 帖子的评论`],
- subtopicDescription: ({ parentUrl }) => [
- " 从 ",
- a({ href: parentUrl }, " 一篇帖子"),
- " 创建了子话题",
- ],
- subtopicTitle: ({ authorName }) => [`@${authorName} 帖子的子话题`],
- mysteryDescription: "发布了一篇神秘的帖子",
- oasisDescription: "OASIS 项目网络",
- searchSubmit: "搜索...",
- hashtagDescription: "带有此标签的帖子。",
- postLabel: "帖子",
- aboutLabel: "居民",
- feedLabel: "动态",
- votesLabel: "投票",
- reportLabel: "报告",
- imageLabel: "图片",
- videoLabel: "视频",
- audioLabel: "音频",
- documentLabel: "文档",
- pdfFallbackLabel: "PDF 文档",
- eventLabel: "活动",
- taskLabel: "任务",
- transferLabel: "转账",
- curriculumLabel: "简历",
- bookmarkLabel: "书签",
- tribeLabel: "部落",
- marketLabel: "市场",
- shopLabel: "SHOPS",
- shopProductLabel: "SHOP PRODUCTS",
- mapLabel: "MAPS",
- jobLabel: "JOBS",
- forumLabel: "FORUMS",
- projectLabel: "PROJECTS",
- bankWalletLabel: "钱包",
- bankClaimLabel: "UBI CLAIMS",
- voteLabel: "VOTES",
- contactLabel: "CONTACTS",
- pubLabel: "PUBS",
- cvLabel: "简历",
- submit: "提交",
- subjectLabel: "主题",
- editProfile: "编辑头像",
- editProfileDescription:
- "",
- profileName: "名称",
- profileImage: "头像图片",
- profileDescription: "描述",
- hashtagDescription:
- "来自你网络中引用此 #标签 的居民的帖子,按时间倒序排列。",
- rebuildName: "重建数据库",
- wallet: "钱包",
- walletAddress: "地址",
- walletAmount: "金额",
- walletAddressLine: ({ address }) => `地址:${address}`,
- walletAmountLine: ({ amount }) => `金额:${amount} ECO`,
- walletBack: "返回",
- walletBalanceTitle: "余额",
- walletWalletSendTitle: "发送",
- walletReceiveTitle: "接收",
- walletHistoryTitle: "历史",
- walletBalanceLine: ({ balance }) => `${balance} ECO`,
- walletCnfrs: "确认数",
- walletConfirm: "确认",
- walletDescription: "管理你的数字资产,包括发送和接收 ECOin、查看余额和访问交易历史。",
- walletDate: "日期",
- walletFee: "手续费(手续费越高,交易处理越快)",
- walletFeeLine: ({ fee }) => `手续费:ECO ${fee}`,
- walletHistory: "历史",
- walletReceive: "接收",
- walletReset: "重置",
- walletSend: "发送",
- walletStatus: "状态",
- walletDisconnected: [
- "ECOin ",
- strong("钱包已断开连接"),
- "。请检查 ",
- a({ href: '/settings' }, "你的设置"),
- " 或连接状态。",
- ],
- walletSentToLine: ({ destination, amount }) => `已发送 ECO ${amount} 至 ${destination}`,
- walletSettingsTitle: "钱包",
- walletSettingsDescription: "将 Oasis 与你的 ECOin 钱包集成。",
- walletSettingsDocLink: "ECOin 安装指南",
- walletStatusMessages: {
- invalid_amount: "无效金额",
- invalid_dest: "无效目标地址",
- invalid_fee: "无效手续费",
- validation_errors: "验证错误",
- send_tx_success: "交易成功",
- },
- walletTitle: "钱包",
- walletTotalCostLine: ({ totalCost }) => `总费用:ECO ${totalCost}`,
- walletTransactionId: "交易 ID",
- walletTxId: "交易ID",
- walletType: "类型",
- walletUser: "用户名",
- walletPass: "密码",
- walletConfiguration: "设置钱包",
- cipher: "加密器",
- cipherTitle: "加密器",
- cipherDescription: "使用共享密码对文本进行对称加密和解密。",
- randomPassword: "随机密码",
- cipherEncryptTitle: "加密文本",
- cipherEncryptDescription: "输入要加密的文本",
- cipherTextLabel: "要加密的文本",
- cipherTextPlaceholder: "输入要加密的文本...",
- cipherPasswordLabel: "设置密码(至少32个字符)以加密你的文本",
- cipherPasswordDecryptLabel: "设置密码(至少32个字符)以解密你的文本",
- cipherPasswordPlaceholder: "输入密码...",
- cipherEncryptButton: "加密",
- cipherDecryptTitle: "解密文本",
- cipherDecryptDescription: "输入要解密的文本",
- cipherEncryptedMessageLabel: "加密文本",
- cipherDecryptedMessageLabel: "解密文本",
- cipherPasswordUsedLabel: "加密所用密码(请妥善保管!)",
- cipherEncryptedTextPlaceholder: "输入加密文本...",
- cipherIvLabel: "IV",
- cipherIvPlaceholder: "输入初始化向量...",
- cipherDecryptButton: "解密",
- password: "密码",
- text: "文本",
- encryptedText: "加密文本",
- iv: "初始化向量 (IV)",
- encryptTitle: "加密你的文本",
- encryptDescription: "输入要加密的文本并提供密码。",
- encryptButton: "加密",
- decryptTitle: "解密你的文本",
- decryptDescription: "输入加密文本并提供相同的加密密码。",
- decryptButton: "解密",
- passwordLengthError: "密码至少需要32个字符。",
- missingFieldsError: "未提供文本、密码或 IV。",
- encryptionError: "加密文本时出错。",
- decryptionError: "解密文本时出错。",
- bookmarkTitle: "书签",
- bookmarkDescription: "发现和管理你网络中的书签。",
- bookmarkAllSectionTitle: "书签",
- bookmarkMineSectionTitle: "你的书签",
- bookmarkRecentSectionTitle: "最近的书签",
- bookmarkTopSectionTitle: "热门书签",
- bookmarkFavoritesSectionTitle: "收藏",
- bookmarkCreateSectionTitle: "创建书签",
- bookmarkUpdateSectionTitle: "更新书签",
- bookmarkFilterAll: "全部",
- bookmarkFilterMine: "我的",
- bookmarkFilterTop: "热门",
- bookmarkFilterFavorites: "收藏",
- bookmarkFilterRecent: "最近",
- bookmarkCreateButton: "创建书签",
- bookmarkUpdateButton: "更新",
- bookmarkDeleteButton: "删除",
- bookmarkAddFavoriteButton: "添加收藏",
- bookmarkRemoveFavoriteButton: "取消收藏",
- bookmarkUrlLabel: "链接",
- bookmarkUrlPlaceholder: "https://example.com",
- bookmarkDescriptionLabel: "描述",
- bookmarkDescriptionPlaceholder: "可选",
- bookmarkTagsLabel: "标签",
- bookmarkTagsPlaceholder: "输入标签,用逗号分隔",
- bookmarkCategoryLabel: "类别",
- bookmarkCategoryPlaceholder: "可选",
- bookmarkLastVisitLabel: "上次访问",
- bookmarkSearchPlaceholder: "搜索 URL、标签、类别、作者...",
- bookmarkSortRecent: "最近",
- bookmarkSortOldest: "最早",
- bookmarkSortTop: "最多投票",
- bookmarkSearchButton: "搜索",
- bookmarkUpdatedAt: "已更新",
- bookmarkNoMatch: "没有匹配的书签。",
- noBookmarks: "没有可用的书签。",
- noUrl: "无链接",
- noCategory: "无类别",
- noLastVisit: "无访问记录",
- videoTitle: "视频",
- videoDescription: "探索和管理你网络中的视频内容。",
- videoPluginTitle: "标题",
- videoPluginDescription: "描述",
- videoMineSectionTitle: "你的视频",
- videoCreateSectionTitle: "上传视频",
- videoUpdateSectionTitle: "更新视频",
- videoAllSectionTitle: "视频",
- videoRecentSectionTitle: "最近的视频",
- videoTopSectionTitle: "热门视频",
- videoFavoritesSectionTitle: "收藏",
- videoFilterAll: "全部",
- videoFilterMine: "我的",
- videoFilterRecent: "最近",
- videoFilterTop: "热门",
- videoFilterFavorites: "收藏",
- videoCreateButton: "上传视频",
- videoUpdateButton: "更新",
- videoDeleteButton: "删除",
- videoAddFavoriteButton: "添加收藏",
- videoRemoveFavoriteButton: "取消收藏",
- videoFileLabel: "选择视频文件 (.mp4, .webm, .ogv, .mov)",
- videoTagsLabel: "标签",
- videoTagsPlaceholder: "输入标签,用逗号分隔",
- videoTitleLabel: "标题",
- videoTitlePlaceholder: "可选",
- videoDescriptionLabel: "描述",
- videoDescriptionPlaceholder: "可选",
- videoNoFile: "未提供视频文件",
- noVideos: "没有可用的视频。",
- videoSearchPlaceholder: "搜索标题、标签、作者...",
- videoSortRecent: "最近",
- videoSortOldest: "最早",
- videoSortTop: "最多投票",
- videoSearchButton: "搜索",
- videoMessageAuthorButton: "私信",
- videoUpdatedAt: "已更新",
- videoNoMatch: "没有匹配的视频。",
- documentTitle: "文档",
- documentDescription: "发现和管理你网络中的文档。",
- documentAllSectionTitle: "文档",
- documentMineSectionTitle: "你的文档",
- documentRecentSectionTitle: "最近的文档",
- documentTopSectionTitle: "热门文档",
- documentFavoritesSectionTitle: "收藏",
- documentCreateSectionTitle: "上传文档",
- documentUpdateSectionTitle: "编辑文档",
- documentFilterAll: "全部",
- documentFilterMine: "我的",
- documentFilterRecent: "最近",
- documentFilterTop: "热门",
- documentFilterFavorites: "收藏",
- documentCreateButton: "上传文档",
- documentUpdateButton: "更新",
- documentDeleteButton: "删除",
- documentAddFavoriteButton: "添加收藏",
- documentRemoveFavoriteButton: "取消收藏",
- documentMessageAuthorButton: "私信",
- documentFileLabel: "上传文档 (.pdf)",
- documentTagsLabel: "标签",
- documentTagsPlaceholder: "输入标签,用逗号分隔",
- documentTitleLabel: "标题",
- documentTitlePlaceholder: "可选",
- documentDescriptionLabel: "描述",
- documentDescriptionPlaceholder: "可选",
- documentNoFile: "无文件。",
- noDocuments: "没有可用的文档。",
- documentSearchPlaceholder: "搜索标题、标签、描述、作者...",
- documentSortRecent: "最近",
- documentSortOldest: "最早",
- documentSortTop: "最多投票",
- documentSearchButton: "搜索",
- documentNoMatch: "没有匹配的文档。",
- documentUpdatedAt: "已更新",
- audioTitle: "音频",
- audioDescription: "探索和管理你网络中的音频内容。",
- audioPluginTitle: "标题",
- audioPluginDescription: "描述",
- audioMineSectionTitle: "你的音频",
- audioCreateSectionTitle: "上传音频",
- audioUpdateSectionTitle: "更新音频",
- audioAllSectionTitle: "音频",
- audioRecentSectionTitle: "最近的音频",
- audioTopSectionTitle: "热门音频",
- audioFilterAll: "全部",
- audioFilterMine: "我的",
- audioFilterRecent: "最近",
- audioFilterTop: "热门",
- audioCreateButton: "上传音频",
- audioUpdateButton: "更新",
- audioDeleteButton: "删除",
- audioAddFavoriteButton: "添加收藏",
- audioRemoveFavoriteButton: "取消收藏",
- audioFileLabel: "选择音频文件 (.mp3, .wav, .ogg)",
- audioTagsLabel: "标签",
- audioTagsPlaceholder: "输入标签,用逗号分隔",
- audioTitleLabel: "标题",
- audioTitlePlaceholder: "可选",
- audioDescriptionLabel: "描述",
- audioDescriptionPlaceholder: "可选",
- audioNoFile: "未提供音频文件",
- noAudios: "没有可用的音频。",
- audioSearchPlaceholder: "搜索标题、标签、作者...",
- audioSortRecent: "最近",
- audioSortOldest: "最早",
- audioSortTop: "最多投票",
- audioSearchButton: "搜索",
- audioMessageAuthorButton: "私信",
- audioUpdatedAt: "已更新",
- audioNoMatch: "没有匹配的音频。",
- audioFavoritesSectionTitle: "收藏",
- audioFilterFavorites: "收藏",
- favoritesTitle: "收藏",
- favoritesDescription: "所有你收藏的媒体集中在一处。",
- favoritesFilterAll: "全部",
- favoritesFilterRecent: "最近",
- favoritesFilterAudios: "音频",
- favoritesFilterBookmarks: "书签",
- favoritesFilterDocuments: "文档",
- favoritesFilterImages: "图片",
- favoritesFilterMaps: "地图",
- favoritesFilterPads: "记事本",
- favoritesFilterChats: "聊天",
- favoritesFilterCalendars: "日历",
- favoritesFilterVideos: "视频",
- favoritesRemoveButton: "取消收藏",
- favoritesNoItems: "还没有收藏。",
- yourContacts: "你的联系人",
- allInhabitants: "居民",
- allCVs: "所有简历",
- discoverPeople: "发现你网络中的居民。",
- allInhabitantsButton: "全部",
- contactsButton: "支持",
- CVsButton: "简历",
- matchSkills: "匹配技能",
- matchSkillsButton: "匹配技能",
- suggestedButton: "推荐",
- searchInhabitantsPlaceholder: "按名称筛选居民...",
- filterLocation: "按位置筛选居民...",
- filterLanguage: "按语言筛选居民...",
- filterSkills: "按技能筛选居民...",
- applyFilters: "应用筛选",
- locationLabel: "位置",
- languagesLabel: "语言",
- skillsLabel: "技能",
- commonSkills: "共同技能",
- mutualFollowers: "共同关注者",
- latestInteractions: "最近互动",
- viewAvatar: "查看头像",
- viewCV: "查看简历",
- suggestedSectionTitle: "推荐",
- topkarmaSectionTitle: "最高因缘值",
- topactivitySectionTitle: "最高活跃度",
- blockedSectionTitle: "已屏蔽",
- gallerySectionTitle: "画廊",
- blockedButton: "已屏蔽",
- blockedLabel: "已屏蔽用户",
- inhabitantviewDetails: "查看详情",
- viewDetails: "查看详情",
- keepReading: "继续阅读...",
- oasisId: "ID",
- noInhabitantsFound: "尚未找到居民。",
- inhabitantActivityLevel: "活跃等级",
- deviceLabel: "设备",
- parliamentTitle: "议会",
- parliamentDescription: "探索政府形式和集体管理法律。",
- parliamentFilterGovernment: "政府",
- parliamentFilterCandidatures: "候选",
- parliamentFilterProposals: "提案",
- parliamentFilterLaws: "法律",
- parliamentFilterHistorical: "历史",
- parliamentFilterLeaders: "领袖",
- parliamentFilterRules: "规则",
- parliamentGovernmentCard: "现任政府",
- parliamentGovMethod: "政府方式",
- parliamentActorInPowerInhabitant: '执政居民',
- parliamentActorInPowerTribe: '执政部落',
- parliamentHistoricalGovernmentsTitle: '政府',
- parliamentHistoricalElectionsTitle: '选举周期',
- parliamentHistoricalLawsTitle: '历史',
- parliamentHistoricalLeadersTitle: '领袖',
- parliamentThCycles: '周期',
- parliamentThTimesInPower: '执政',
- parliamentThTotalCandidatures: '候选',
- parliamentThProposed: '提议的法律',
- parliamentThApproved: '通过的法律',
- parliamentThDeclined: '否决的法律',
- parliamentThDiscarded: '废弃的法律',
- parliamentVotesReceived: "获得票数",
- parliamentMembers: "成员",
- parliamentLegSince: "周期起始",
- parliamentLegEnd: "周期结束",
- parliamentPoliciesProposal: "法律提案",
- parliamentPoliciesApproved: "通过的法律",
- parliamentPoliciesDeclined: "否决的法律",
- parliamentPoliciesDiscarded: "废弃的法律",
- parliamentEfficiency: "% 效率",
- parliamentFilterRevocations: '撤销',
- parliamentRevocationFormTitle: '撤销法律',
- parliamentRevocationLaw: '法律',
- parliamentRevocationTitle: '标题',
- parliamentRevocationReasons: '理由',
- parliamentRevocationPublish: '发布撤销',
- parliamentCurrentRevocationsTitle: '当前撤销',
- parliamentFutureRevocationsTitle: '未来撤销',
- parliamentPoliciesRevocated: '已撤销的法律',
- parliamentPoliciesTitle: '历史',
- parliamentLawsTitle: '已通过的法律',
- parliamentRulesRevocations: '任何已通过的法律都可以使用当前政府执政方式进行撤销。',
- parliamentNoStableGov: "尚未选择政府。",
- parliamentNoGovernments: "还没有政府。",
- parliamentCandidatureFormTitle: "提议候选",
- parliamentCandidatureId: "候选",
- parliamentCandidatureIdPh: "Oasis ID (@...) 或部落名称",
- parliamentCandidatureSlogan: "口号(最多140字)",
- parliamentCandidatureSloganPh: "一个简短的口号",
- parliamentCandidatureMethod: "方式",
- parliamentCandidatureProposeBtn: "发布候选",
- parliamentThType: "类型",
- parliamentThId: "ID",
- parliamentThDate: "提议日期",
- parliamentThSlogan: "口号",
- parliamentThMethod: "方式",
- parliamentThKarma: "因缘值",
- parliamentThSince: "注册时间",
- parliamentThVotes: "获得票数",
- parliamentThVoteAction: "投票",
- parliamentTypeUser: "居民",
- parliamentTypeTribe: "部落",
- parliamentVoteBtn: "投票",
- parliamentProposalFormTitle: "提议法律",
- parliamentProposalTitle: "标题",
- parliamentProposalDescription: "描述(不超过1000字)",
- parliamentProposalPublish: "发布提案",
- parliamentOpenVote: "公开投票",
- parliamentFinalize: "结束",
- parliamentDeadline: "截止日期",
- parliamentStatus: "状态",
- parliamentNoProposals: "还没有法律提案。",
- parliamentNoLaws: "还没有已通过的法律。",
- parliamentLawMethod: "方式",
- parliamentLawProposer: "提议者",
- parliamentLawVotes: "赞成/总计",
- parliamentLawEnacted: "生效于",
- parliamentMethodDEMOCRACY: "民主",
- parliamentMethodMAJORITY: "多数(80%)",
- parliamentMethodMINORITY: "少数(20%)",
- parliamentMethodDICTATORSHIP: "独裁",
- parliamentMethodKARMATOCRACY: "Karma 制",
- parliamentMethodANARCHY: "无政府",
- parliamentThId: "ID",
- parliamentThProposalDate: "提议日期",
- parliamentThMethod: "方式",
- parliamentThKarma: "Karma",
- parliamentThSupports: "支持",
- parliamentThVote: "投票",
- parliamentCurrentProposalsTitle: "当前提案",
- parliamentVotesSlashTotal: "票数/总计",
- parliamentVotesNeeded: "所需票数",
- parliamentFutureLawsTitle: "未来法律",
- parliamentNoFutureLaws: "还没有未来法律。",
- parliamentVoteAction: "投票",
- parliamentLeadersTitle: "领袖",
- parliamentThLeader: "头像",
- parliamentPopulation: "人口",
- parliamentThType: "类型",
- parliamentThInPower: "执政中",
- parliamentThPresented: "候选",
- parliamentNoLeaders: "还没有领袖。",
- typeParliament: "议会",
- typeParliamentCandidature: "议会 · 候选",
- typeParliamentTerm: "议会 · 任期",
- typeParliamentProposal: "议会 · 提案",
- typeParliamentLaw: "议会 · 新法律",
- typeCourts: "法庭",
- parliamentLawQuestion: "问题",
- parliamentStatus: "状态",
- parliamentCandidaturesListTitle: "候选列表",
- parliamentElectionsEnd: "选举结束",
- parliamentTimeRemaining: "剩余时间",
- parliamentCurrentLeader: "领先候选",
- parliamentNoLeader: "尚无领先候选。",
- parliamentElectionsStatusTitle: "下届政府",
- parliamentElectionsStart: "选举开始",
- parliamentProposalDeadlineLabel: "截止日期",
- parliamentProposalTimeLeft: "剩余时间",
- parliamentProposalOnTrack: "有望通过",
- parliamentProposalOffTrack: "支持不足",
- parliamentRulesTitle: "议会运作方式",
- parliamentRulesIntro: "选举每2个月进行一次;候选是持续的,在政府选定后重置。",
- parliamentRulesCandidates: "任何居民都可以提名自己、其他居民或任何部落。每位居民每个周期最多可提出3项候选;同一周期内的重复候选将被拒绝。",
- parliamentRulesElection: "获胜者是在结算时获得最多选票的候选。",
- parliamentRulesTies: "平局规则:最高居民 Karma;如果仍然平局,最早注册的;如果仍然平局,最早提出的;然后按 ID 字典序。",
- parliamentRulesFallback: "如果没有人投票,最后提出的候选获胜。如果没有候选,将随机选择一个部落。",
- parliamentRulesTerm: "政府标签显示当前政府和统计数据。",
- parliamentRulesMethods: "形式:无政府(简单多数)、民主(50%+1)、多数(80%)、少数(20%)、Karma 制(最高 Karma 提案)、独裁(即时通过)。",
- parliamentRulesAnarchy: "无政府是默认模式:如果在结算时没有候选被选出,宣布无政府状态。在无政府状态下,任何居民都可以提议法律。",
- parliamentRulesProposals: "如果你是执政居民或执政部落的成员,你可以发布法律提案。非独裁方式会创建公开投票。",
- parliamentRulesLimit: "每位居民每个周期最多可发布3项法律提案。",
- parliamentRulesLaws: "当提案达到其门槛时,它成为法律并出现在法律标签中,附有生效日期。",
- parliamentRulesHistorical: "在历史标签中,你可以看到已发生的每个政府周期及其管理数据。",
- parliamentRulesLeaders: "在领袖标签中,你可以看到曾经执政(或作为候选人)的居民/部落排名,按效率排序。",
- parliamentProposalVoteStatusLabel: "投票状态",
- parliamentProposalOnTrackYes: "已达门槛",
- parliamentProposalOnTrackNo: "低于门槛",
- courtsTitle: "法庭",
- courtsDescription: "探索冲突解决和集体司法管理形式。",
- courtsFilterCases: "案件",
- courtsFilterMyCases: "我的",
- courtsFilterJudges: "法官",
- courtsFilterHistory: "历史",
- courtsFilterRules: "规则",
- courtsFilterOpenCase: "开立案件",
- courtsCaseFormTitle: "开立案件",
- courtsCaseTitle: "标题",
- courtsCaseRespondent: "被告/答辩人",
- courtsCaseRespondentPh: "Oasis ID (@...) 或部落名称",
- courtsCaseMediatorsAccuser: "调解员(原告方)",
- courtsCaseMediatorsPh: "Oasis ID,用逗号分隔",
- courtsCaseMethod: "解决方式",
- courtsCaseDescription: "描述(最多1000字)",
- courtsCaseEvidenceTitle: "案件证据",
- courtsCaseEvidenceHelp: "附加图片、音频、文档(PDF)或视频以支持你的案件。",
- courtsCaseSubmit: "提交案件",
- courtsNominateJudge: "提名法官",
- courtsJudgeId: "法官",
- courtsJudgeIdPh: "Oasis ID (@...) 或居民名称",
- courtsNominateBtn: "提名",
- courtsAddEvidence: "添加证据",
- courtsEvidenceText: "文本",
- courtsEvidenceLink: "链接",
- courtsEvidenceLinkPh: "https://…",
- courtsEvidenceSubmit: "附加",
- courtsAnswerTitle: "回应诉求",
- courtsAnswerText: "答辩摘要",
- courtsAnswerSubmit: "发送回应",
- courtsStanceDENY: "否认",
- courtsStanceADMIT: "承认",
- courtsStancePARTIAL: "部分承认",
- courtsVerdictTitle: "发布裁决",
- courtsVerdictResult: "结果",
- courtsVerdictOrders: "命令",
- courtsVerdictOrdersPh: "措施、期限、修复步骤...",
- courtsIssueVerdict: "发布裁决",
- courtsMediationPropose: "提议和解",
- courtsSettlementText: "条款",
- courtsSettlementProposeBtn: "提议",
- courtsNominationsTitle: "司法提名",
- courtsThJudge: "法官",
- courtsThSupports: "支持",
- courtsThDate: "日期",
- courtsThVote: "投票",
- courtsNoNominations: "还没有提名。",
- courtsAccuser: "原告",
- courtsRespondent: "被告",
- courtsThStatus: "状态",
- courtsThAnswerBy: "答辩人",
- courtsThEvidenceBy: "举证人",
- courtsThDecisionBy: "裁决者",
- courtsThCase: "案件",
- courtsThCreatedAt: "开始日期",
- courtsThActions: "操作",
- courtsCaseMediatorsRespondentTitle: "添加辩护调解员",
- courtsCaseMediatorsRespondent: "调解员(辩护方)",
- courtsMediatorsAccuserLabel: "调解员(原告方)",
- courtsMediatorsRespondentLabel: "调解员(辩护方)",
- courtsMediatorsSubmit: "保存调解员",
- courtsVotesNeeded: "所需票数",
- courtsVotesSlashTotal: "赞成 / 总计",
- courtsOpenVote: "公开投票",
- courtsPublicPrefLabel: "解决后的可见性",
- courtsPublicPrefYes: "我同意此案件可完全公开",
- courtsPublicPrefNo: "我倾向于保持细节私密",
- courtsPublicPrefSubmit: "保存可见性偏好",
- courtsNoCases: "没有案件。",
- courtsNoMyCases: "你还没有冲突。",
- courtsNoHistory: "还没有审判记录。",
- courtsMethodJUDGE: "法官",
- courtsMethodDICTATOR: "独裁者",
- courtsMethodPOPULAR: "民意",
- courtsMethodMEDIATION: "调解",
- courtsMethodKARMATOCRACY: "Karma 制",
- courtsMethod: "方式",
- courtsRulesTitle: "法庭运作方式",
- courtsRulesIntro: "法庭是社区驱动的冲突解决和恢复性司法流程。优先考虑对话、清晰证据和适当补救。",
- courtsRulesLifecycle: "流程:1) 开立案件 2) 选择方式 3) 提交证据 4) 听证和审议 5) 裁决和补救 6) 执行和结案 7) 上诉(如适用)。",
- courtsRulesRoles: "原告:开立案件。辩护方:被告人或部落。方式:社区选择的用于促进、评估证据和发布裁决的机制。证人:提供证词或证据。调解员:由原告和/或辩护方邀请的中立人士,可访问所有细节,帮助缓和冲突并共同达成协议。",
- courtsRulesEvidence: "描述不超过1000字。附加相关合法的图片、音频、视频和 PDF 文档。未经同意不要分享敏感私人数据。",
- courtsRulesDeliberation: "听证可以是公开的或私密的。法官确保尊重、要求澄清,并可能排除不相关或不合法的材料。",
- courtsRulesVerdict: "优先考虑修复:道歉、调解协议、内容审核、临时限制或其他适当措施。必须记录推理过程。",
- courtsRulesAppeals: "上诉:在有新证据或明显程序错误时允许。除非另有规定,必须在7天内提出。",
- courtsRulesPrivacy: "尊重隐私和安全。人肉搜索、仇恨或威胁将被删除。法官可以编辑或封存记录的部分内容以保护有风险的人。",
- courtsRulesMisconduct: "骚扰、操纵或伪造证据可能导致立即不利裁决。",
- courtsRulesGlossary: "案件:冲突记录。证据:支持诉求的材料。裁决:附有补救措施的决定。上诉:请求审查裁决。",
- courtsFilterActions: "操作",
- courtsNoActions: "你的角色没有待处理的操作。",
- courtsCaseTitlePlaceholder: "冲突的简要描述",
- courtsCaseSeverity: "严重程度",
- courtsCaseSeverityNone: "无严重程度标签",
- courtsCaseSeverityLOW: "低",
- courtsCaseSeverityMEDIUM: "中",
- courtsCaseSeverityHIGH: "高",
- courtsCaseSeverityCRITICAL: "严重",
- courtsCaseSubject: "主题",
- courtsCaseSubjectNone: "无主题标签",
- courtsCaseSubjectBEHAVIOUR: "行为",
- courtsCaseSubjectCONTENT: "内容",
- courtsCaseSubjectGOVERNANCE: "治理/规则",
- courtsCaseSubjectFINANCIAL: "财务/资源",
- courtsCaseSubjectOTHER: "其他",
- courtsHiddenRespondent: "已隐藏(仅相关角色可见)。",
- courtsThRole: "角色",
- courtsRoleAccuser: "原告",
- courtsRoleDefence: "辩护方",
- courtsRoleMediator: "调解员",
- courtsRoleJudge: "法官",
- courtsRoleDictator: "独裁者",
- courtsAssignJudgeTitle: "选择法官",
- courtsAssignJudgeBtn: "选择法官",
- trendingTitle: "热门",
- exploreTrending: "探索你网络中最受欢迎的内容。",
- ALLButton: "全部",
- MINEButton: "我的",
- RECENTButton: "最近",
- TOPButton: "热门",
- bookmarkButton: "书签",
- transferButton: "转账",
- eventButton: "活动",
- taskButton: "任务",
- votesButton: "投票",
- reportButton: "报告",
- feedButton: "动态",
- marketButton: "市场",
- imageButton: "图片",
- audioButton: "音频",
- videoButton: "视频",
- documentButton: "文档",
- author: "作者",
- createdAtLabel: "创建于",
- totalVotes: "总票数",
- noTrendingFound: "未找到热门内容。",
- noContentMessage: "暂无热门内容。",
- trendingDescription: "描述",
- trendingDate: "日期",
- trendingLocation: "位置",
- trendingPrice: "价格",
- trendingUrl: "URL",
- trendingCategory: "类别",
- trendingStart: "开始",
- trendingEnd: "结束",
- trendingPriority: "优先级",
- trendingStatus: "状态",
- trendingFrom: "发件人",
- trendingTo: "收件人",
- trendingConcept: "概念",
- trendingAmount: "金额",
- trendingDeadline: "截止日期",
- trendingItemStatus: "项目状态",
- trendingTotalVotes: "总票数",
- trendingTotalOpinions: "总观点数",
- trendingNoContentMessage: "暂无热门内容。",
- trendingAuthor: "作者",
- trendingCreatedAtLabel: "创建于",
- trendingTotalCount: "总计",
- tasksTitle: "任务",
- tasksDescription: "发现和管理你网络中的任务。",
- taskTitleLabel: "标题",
- taskDescriptionLabel: "描述",
- taskStartTimeLabel: "开始时间",
- taskEndTimeLabel: "结束时间",
- taskPriorityLabel: "优先级",
- taskPrioritySelect: "选择优先级",
- taskPriorityUrgent: "紧急",
- taskPriorityHigh: "高",
- taskPriorityMedium: "中",
- taskPriorityLow: "低",
- taskLocationLabel: "位置",
- taskTagsLabel: "标签",
- taskVisibilityLabel: "可见性",
- taskPublic: "公开",
- taskPrivate: "私密",
- taskCreatedAt: "创建于",
- taskBy: "作者",
- taskStatus: "状态",
- taskStatusOpen: "开放",
- taskStatusInProgress: "进行中",
- taskStatusClosed: "已关闭",
- taskAssignedTo: "分配给",
- taskAssignees: "被分配者",
- taskAssignButton: "分配给我",
- taskUnassignButton: "取消分配",
- taskCreateButton: "创建任务",
- taskUpdateButton: "更新",
- taskDeleteButton: "删除",
- taskFilterAll: "全部",
- taskFilterMine: "我的",
- taskFilterOpen: "开放",
- taskFilterInProgress: "进行中",
- taskFilterClosed: "已关闭",
- taskFilterAssigned: "已分配",
- taskFilterArchived: "已归档",
- taskFilterUrgent: "紧急",
- taskFilterHigh: "高",
- taskFilterMedium: "中",
- taskFilterLow: "低",
- taskAllSectionTitle: "任务",
- taskMineSectionTitle: "你的任务",
- taskCreateSectionTitle: "创建任务",
- taskUpdateSectionTitle: "更新",
- taskOpenTitle: "开放任务",
- taskInProgressTitle: "进行中的任务",
- taskClosedTitle: "已关闭的任务",
- taskAssignedTitle: "已分配的任务",
- taskArchivedTitle: "已归档的任务",
- taskPublicTitle: "公开任务",
- taskPrivateTitle: "私密任务",
- notasks: "没有可用的任务。",
- noLocation: "未指定位置",
- taskSetStatus: "设置状态",
- eventTitle: "活动",
- eventDateLabel: "日期",
- eventsTitle: "活动",
- eventsDescription: "发现和管理你网络中的活动。",
- eventDescription: "描述",
- eventPrice: "价格",
- eventStatus: "状态",
- eventOrganizer: "组织者",
- eventAllSectionTitle: "活动",
- eventMineSectionTitle: "你的活动",
- eventArchivedTitle: "已归档的活动",
- eventCreateSectionTitle: "创建活动",
- eventUpdateSectionTitle: "更新活动",
- eventDeleteButton: "删除",
- eventCreateButton: "创建活动",
- eventTitleLabel: "标题",
- eventDescriptionLabel: "描述",
- eventDescriptionPlaceholder: "输入活动描述...",
- eventUpdateButton: "更新",
- eventAttendeesLabel: "参与者",
- eventAttendeesPlaceholder: "输入参与者,用逗号分隔...",
- eventTagsLabel: "标签",
- eventTagsPlaceholder: "输入活动标签,用逗号分隔...",
- eventTags: "标签",
- eventPriceLabel: "价格",
- eventUrlLabel: "URL",
- eventAttendees: "参与者",
- noAttendees: "暂无参与者",
- eventCreatedAt: "创建于",
- eventLocation: "位置",
- eventLocationLabel: "位置",
- eventNoLocation: "未指定位置",
- eventNoURL: "未指定 URL",
- eventBy: "作者",
- noevents: "没有可用的活动。",
- eventDate: "日期",
- eventDateFormat: "YYYY年MM月DD日 HH:mm",
- eventAttendButton: "参加活动",
- eventUnattendButton: "取消参加",
- eventCreatedBy: "创建者",
- eventAttendeesCount: "参与人数",
- eventCreatedByYou: "你创建了此活动",
- eventAttendConfirmation: "你现在正在参加此活动",
- eventUnattendConfirmation: "你已取消参加此活动",
- eventFilterAll: "全部",
- eventFilterMine: "我的",
- eventFilterToday: "今天",
- eventFilterWeek: "本周",
- eventFilterMonth: "本月",
- eventFilterYear: "今年",
- eventFilterArchived: "已归档",
- eventTodayTitle: "今天的活动",
- eventThisWeekTitle: "本周的活动",
- eventThisMonthTitle: "本月的活动",
- eventThisYearTitle: "今年的活动",
- eventPrivacyLabel: "可见性",
- eventPublic: "公开",
- eventPrivate: "私密",
- eventPublicTitle: "公开活动",
- eventNoPrice: "免费活动",
- eventNoImage: "未上传图片",
- eventAttendConfirmation: "你现在正在参加此活动",
- eventUnattendConfirmation: "你已取消参加此活动",
- eventAttended: "已参加",
- eventUnattended: "未参加",
- eventStatusOpen: "开放",
- eventStatusClosed: "已关闭",
- tagsTitle: "标签",
- tagsDescription: "发现和探索你网络中的分类模式。",
- tagsAllSectionTitle: "标签",
- tagsTopSectionTitle: "热门标签",
- tagsCloudSectionTitle: "标签云",
- tagsFilterAll: "全部",
- tagsFilterTop: "热门",
- tagsFilterCloud: "标签云",
- tagsNoItems: "没有可用的标签。",
- tagsTableHeaderTag: "标签/链接:",
- tagsTableHeaderCount: "计数:",
- transfersTitle: "转账",
- transfersDescription: "发现和管理你网络中的转账。",
- transfersFrom: "发起人",
- transfersTo: "接收人",
- transfersFilterAll: "全部",
- transfersFilterMine: "我的",
- transfersFilterUBI: "UBI",
- transfersFilterMarket: "市场",
- transfersFilterTop: "热门",
- transfersFilterPending: "待处理",
- transfersFilterUnconfirmed: "未确认",
- transfersFilterClosed: "已关闭",
- transfersFilterDiscarded: "已废弃",
- transfersCreateButton: "创建转账",
- transfersUpdateButton: "更新",
- transfersDeleteButton: "删除",
- transfersToUser: "Oasis ID",
- transfersToUserValidation: "有效的 Oasis ID,例如 @…=.ed25519",
- transfersConcept: "概念",
- transfersAmount: "金额",
- transfersDeadline: "截止日期",
- transfersTags: "标签",
- transfersStatus: "状态",
- transfersStatusUnconfirmed: "未确认",
- transfersStatusClosed: "已关闭",
- transfersStatusDiscarded: "已废弃",
- transfersCreatedAt: "创建于",
- transfersConfirmations: "确认",
- transfersConfirmButton: "确认转账",
- transfersNoItems: "未找到转账。",
- transfersMineSectionTitle: "你的转账",
- transfersUBISectionTitle: "UBI 转账",
- transfersMarketSectionTitle: "市场转账",
- transfersTopSectionTitle: "热门转账",
- transfersPendingSectionTitle: "待处理转账",
- transfersUnconfirmedSectionTitle: "未确认转账",
- transfersClosedSectionTitle: "已关闭转账",
- transfersDiscardedSectionTitle: "已废弃转账",
- transfersCreateSectionTitle: "创建转账",
- transfersAllSectionTitle: "转账",
- transfersFilterFavs: "收藏",
- transfersFavsSectionTitle: "收藏的转账",
- transfersSearchLabel: "搜索",
- transfersSearchPlaceholder: "搜索概念、标签、用户...",
- transfersMinAmountLabel: "最低金额",
- transfersMaxAmountLabel: "最高金额",
- transfersSortLabel: "排序",
- transfersSortRecent: "最近",
- transfersSortAmount: "最高金额",
- transfersSortDeadline: "最近截止",
- transfersSearchButton: "搜索",
- transfersFavoriteButton: "收藏",
- transfersUnfavoriteButton: "取消收藏",
- transfersMessageUserButton: "消息",
- transfersExpiringSoonBadge: "即将到期",
- transfersExpiredBadge: "已过期",
- transfersUpdatedAt: "已更新",
- transfersNoMatch: "没有匹配的转账。",
- votationsTitle: "投票",
- votationsDescription: "发现和管理你网络中的投票。",
- voteMineSectionTitle: "你的投票",
- voteCreateSectionTitle: "创建投票",
- voteUpdateSectionTitle: "更新",
- voteOpenTitle: "进行中的投票",
- voteClosedTitle: "已关闭的投票",
- voteAllSectionTitle: "投票",
- voteCreateButton: "创建投票",
- voteUpdateButton: "更新",
- voteDeleteButton: "删除",
- voteOptionYes: "赞成",
- voteOptionNo: "反对",
- voteOptionAbstention: "弃权",
- voteConfused: "困惑",
- voteFollowMajority: "跟随多数",
- voteNotInterested: "不感兴趣",
- voteFilterAll: "全部",
- voteFilterMine: "我的",
- voteFilterOpen: "进行中",
- voteFilterClosed: "已关闭",
- voteQuestionLabel: "问题",
- voteDeadlineLabel: "截止日期",
- voteOptionsLabel: "你的投票",
- voteBreakdown: "分布",
- voteFinalResult: "结果",
- voteTagsLabel: "标签",
- voteDeadline: "截止日期",
- voteStatus: "状态",
- voteTotalVotes: "总票数",
- voteTags: "标签",
- voteOpinions: "观点",
- novotes: "没有可用的投票提案。",
- voteBy: "作者",
- voteCreatedAt: "创建于",
- voteNoQuestion: "未提供问题",
- voteUnknownCreator: "未知创建者",
- voteUnknownDate: "未知日期",
- errorVoteNotFound: "未找到投票",
- errorAlreadyVoted: "你已经表达了意见。",
- errorVoteClosedCannotEdit: "无法编辑已关闭的投票",
- errorVoteDeadlinePassed: "此投票的截止日期已过",
- errorRetrievingVote: "获取投票时出错",
- errorCreatingVote: "创建投票时出错",
- errorVoteAlreadyVoted: "意见提交后无法编辑",
- errorDeletingOldVote: "删除旧意见时出错",
- errorCreatingUpdatedVote: "创建更新的意见时出错",
- errorCreatingTombstone: "创建墓碑时出错",
- voteDetailSectionTitle: '投票详情',
- voteCommentsLabel: '评论',
- voteCommentsForumButton: '公开讨论',
- voteCommentsSectionTitle: '公开讨论',
- voteNoCommentsYet: '还没有评论。成为第一个回复的人。',
- voteNewCommentPlaceholder: '在此写下你的评论…',
- voteNewCommentButton: '发表评论',
- voteNewCommentLabel: '添加评论',
- cvTitle: "简历",
- cvLabel: "简历 (CV)",
- cvEditSectionTitle: "编辑简历",
- cvCreateSectionTitle: "创建简历",
- cvDescription: "管理和分享你的专业技能和信息。",
- cvNameLabel: "全名",
- cvDescriptionLabel: "摘要",
- cvPhotoLabel: "照片",
- cvPersonalExperiencesLabel: "个人经历",
- cvPersonalSkillsLabel: "个人技能(逗号分隔)",
- cvOasisExperiencesLabel: "Oasis 贡献经历",
- cvOasisSkillsLabel: "Oasis 贡献技能(逗号分隔)",
- cvEducationExperiencesLabel: "教育经历",
- cvEducationalSkillsLabel: "教育技能(逗号分隔)",
- cvProfessionalExperiencesLabel: "专业经历",
- cvProfessionalSkillsLabel: "专业技能(逗号分隔)",
- cvLanguagesLabel: "语言",
- cvLocationLabel: "位置",
- cvStatusLabel: "状态",
- cvPreferencesLabel: "偏好",
- cvOasisContributorLabel: "Oasis 贡献者",
- cvPersonal: "个人",
- cvOasis: "Oasis 贡献者(可选)",
- cvOasisContributorView: "Oasis 贡献",
- cvEducational: "教育(可选)",
- cvEducationalView: "教育",
- cvProfessional: "专业(可选)",
- cvProfessionalView: "专业",
- cvAvailability: "可用性(可选)",
- cvAvailabilityView: "可用性",
- cvUpdateButton: "更新",
- cvCreateButton: "创建简历",
- cvContactLabel: "联系方式",
- cvCreatedAt: "创建于",
- cvUpdatedAt: "更新于",
- cvEditButton: "更新",
- cvDeleteButton: "删除",
- cvNoCV: "未找到简历。",
- blogSubject: "主题",
- blogMessage: "消息",
- blogImage: "上传媒体(最大:50MB)",
- blogPublish: "预览",
- noPopularMessages: "还没有发布热门消息",
- forumTitle: "论坛",
- forumCategoryLabel: "类别",
- forumTitleLabel: "标题",
- forumTitlePlaceholder: "论坛标题...",
- forumCreateButton: "创建论坛",
- forumCreateSectionTitle: "创建论坛",
- forumDescription: "与你网络中的其他居民公开交流。",
- forumFilterAll: "全部",
- forumFilterMine: "我的",
- forumFilterRecent: "最近",
- forumFilterTop: "热门",
- forumMineSectionTitle: "你的论坛",
- forumRecentSectionTitle: "最近的论坛",
- forumAllSectionTitle: "论坛",
- forumDeleteButton: "删除",
- forumParticipants: "参与者",
- forumMessages: "消息",
- forumLastMessage: "最后消息",
- forumMessageLabel: "消息",
- forumMessagePlaceholder: "写下你的消息...",
- forumSendButton: "发送",
- forumVisitForum: "访问论坛",
- noForums: "未找到论坛。",
- forumVisitButton: "访问论坛",
- forumCatGENERAL: "综合",
- forumCatOASIS: "Oasis",
- forumCatLARP: "L.A.R.P.",
- forumCatPOLITICS: "政治",
- forumCatTECH: "科技",
- forumCatSCIENCE: "科学",
- forumCatMUSIC: "音乐",
- forumCatART: "艺术",
- forumCatGAMING: "游戏",
- forumCatBOOKS: "书籍",
- forumCatFILMS: "电影",
- forumCatPHILOSOPHY: "哲学",
- forumCatSOCIETY: "社会",
- forumCatPRIVACY: "隐私",
- forumCatCYBERWARFARE: "网络战争",
- forumCatSURVIVALISM: "生存主义",
- imageTitle: "图片",
- imageDescription: "探索和管理你网络中的图片内容。",
- imagePluginTitle: "标题",
- imagePluginDescription: "描述",
- imageMineSectionTitle: "你的图片",
- imageCreateSectionTitle: "上传图片",
- imageUpdateSectionTitle: "更新图片",
- imageAllSectionTitle: "图片",
- imageRecentSectionTitle: "最近的图片",
- imageTopSectionTitle: "热门图片",
- imageFavoritesSectionTitle: "收藏",
- imageGallerySectionTitle: "画廊",
- imageMemeSectionTitle: "梗图",
- imageFilterAll: "全部",
- imageFilterMine: "我的",
- imageFilterRecent: "最近",
- imageFilterTop: "热门",
- imageFilterFavorites: "收藏",
- imageFilterGallery: "画廊",
- imageFilterMeme: "梗图",
- imageCreateButton: "上传图片",
- imageUpdateButton: "更新",
- imageDeleteButton: "删除",
- imageAddFavoriteButton: "添加收藏",
- imageRemoveFavoriteButton: "取消收藏",
- imageFileLabel: "选择图片文件 (.jpeg, .jpg, .png, .gif)",
- imageTagsLabel: "标签",
- imageTagsPlaceholder: "输入标签,用逗号分隔",
- imageTitleLabel: "标题",
- imageTitlePlaceholder: "可选",
- imageDescriptionLabel: "描述",
- imageDescriptionPlaceholder: "可选",
- imageMemeLabel: "标记为表情包",
- imageNoFile: "未提供图片文件",
- noImages: "没有可用的图片。",
- imageSearchPlaceholder: "搜索标题、标签、描述、作者...",
- imageSortRecent: "最近",
- imageSortOldest: "最早",
- imageSortTop: "最多投票",
- imageSearchButton: "搜索",
- imageMessageAuthorButton: "消息",
- imageUpdatedAt: "已更新",
- imageNoMatch: "没有匹配的图片。",
- feedTitle: "动态",
- createFeedTitle: "创建动态",
- createFeedButton: "发送动态!",
- feedPlaceholder: "有什么新鲜事?(最多280字)",
- ALLButton: "动态",
- MINEButton: "你的动态",
- TODAYButton: "今天",
- TOPButton: "热门动态",
- CREATEButton: "创建动态",
- totalOpinions: "总观点数",
- moreVoted: "最多投票",
- alreadyVoted: "你已经表达了意见。",
- noFeedsFound: "未找到动态。",
- author: "作者",
- createdAtLabel: "创建于",
- FeedshareYourOpinions: "发现和分享你网络中的短文。",
- refeedButton: "转发",
- alreadyRefeeded: "你已经转发过了。",
- activityTitle: "活动记录",
- yourActivity: "你的活动",
- globalActivity: "全局活动",
- activityList: "活动记录",
- activityDesc: "查看你网络中的最新活动。",
- allButton: "全部",
- mineButton: "我的",
- noActions: "没有可用的活动。",
- performed: "→",
- from: "发起人",
- to: "接收人",
- amount: "金额",
- concept: "概念",
- description: "描述",
- meme: "表情包",
- activityContact: "联系人",
- activityBy: "名称",
- activityPixelia: "新增像素",
- viewImage: "查看图片",
- playAudio: "播放音频",
- playVideo: "播放视频",
- typeRecent: "最近",
- errorActivity: "获取活动时出错",
- typePost: "帖子",
- typeTribe: "部落",
- typeAbout: "居民",
- typeCurriculum: "简历",
- typeImage: "图片",
- typeBookmark: "书签",
- typeDocument: "文档",
- typeVotes: "投票",
- typeAudio: "音频",
- typeMarket: "市场",
- typeJob: "工作",
- typeProject: "项目",
- typeVideo: "视频",
- typeVote: "传播",
- typeEvent: "活动",
- typeTransfer: "转账",
- typeTask: "任务",
- typePixelia: "像素画",
- typeForum: "论坛",
- typeReport: "报告",
- typeFeed: "动态",
- typeContact: "联系人",
- typePub: "PUB",
- typeTombstone: "墓碑",
- typeBanking: "银行",
- typeBankWallet: "银行/钱包",
- typeBankClaim: "银行/UBI",
- typeKarmaScore: "因缘值",
- typeParliament: "议会",
- typeSpread: "传播",
- typeParliamentCandidature: "议会 · 候选",
- typeParliamentTerm: "议会 · 任期",
- typeParliamentProposal:"议会 · 提案",
- typeParliamentRevocation:"议会 · 撤销",
- typeParliamentLaw: "议会 · 新法律",
- typeCourts: "法庭",
- typeCourtsCase: "法庭 · 案件",
- typeCourtsEvidence: "法庭 · 证据",
- typeCourtsAnswer: "法庭 · 答辩",
- typeCourtsVerdict: "法庭 · 裁决",
- typeCourtsSettlement: "法庭 · 和解",
- typeCourtsSettlementProposal: "法庭 · 和解提议",
- typeCourtsSettlementAccepted: "法庭 · 和解接受",
- typeCourtsNomination: "法庭 · 提名",
- typeCourtsNominationVote: "法庭 · 提名投票",
- activitySupport: "新联盟建立",
- activityJoin: "加入新 PUB",
- question: "问题",
- deadline: "截止日期",
- status: "状态",
- votes: "投票",
- totalVotes: "总票数",
- voteTotalVotes: "总票数",
- name: "名称",
- skills: "技能",
- tags: "标签",
- title: "标题",
- date: "日期",
- category: "类别",
- attendees: "参与者",
- activitySpread: "->",
- visitLink: "访问链接",
- viewDocument: "查看文档",
- location: "位置",
- contentWarning: "主题",
- personName: "居民名称",
- bankWalletConnected: "ECOin 钱包",
- bankUbiReceived: "已收到 UBI",
- bankTx: "交易",
- bankEpochShort: "纪元",
- bankAllocId: "分配 ID",
- bankingUserEngagementScore: "KARMA 评分",
- viewDetails: "查看详情",
- link: "链接",
- aiSnippetsLearned: "已学习片段",
- tribeFeedRefeeds: "转发",
- activityProjectFollow: "%OASIS% 正在 %ACTION% 此项目 %PROJECT%",
- activityProjectUnfollow: "%OASIS% 正在 %ACTION% 此项目 %PROJECT%",
- activityProjectPledged: "%OASIS% 已 %ACTION% %AMOUNT% 至项目 %PROJECT%",
- following: "关注中",
- unfollowing: "取消关注中",
- pledged: "已质押",
- parliamentCandidatureId: "候选",
- parliamentGovMethod: "方式",
- parliamentVotesReceived: "获得票数",
- parliamentMethodANARCHY: "无政府",
- parliamentMethodVOTE: "社区投票",
- parliamentMethodRANKED: "排序选择",
- parliamentMethodPLURALITY: "多数制",
- parliamentMethodCOUNCIL: "委员会",
- parliamentMethodJURY: "陪审团",
- parliamentAnarchy: "无政府",
- parliamentElectionsStart: "选举开始",
- parliamentElectionsEnd: "选举结束",
- parliamentCurrentLeader: "领先候选",
- parliamentProposalTitle: "标题",
- parliamentOpenVote: "公开投票",
- parliamentStatus: "状态",
- parliamentLawQuestion: "问题",
- parliamentLawMethod: "方式",
- parliamentLawProposer: "提议者",
- parliamentLawEnacted: "生效于",
- parliamentLawVotes: "投票",
- createdAt: "创建于",
- courtsCaseTitle: "案件",
- courtsMethod: "方式",
- courtsMethodJUDGE: "法官",
- courtsMethodJUDGES: "法官组",
- courtsMethodSINGLE_JUDGE: "独任法官",
- courtsMethodJURY: "陪审团",
- courtsMethodCOUNCIL: "委员会",
- courtsMethodCOMMUNITY: "社区",
- courtsMethodMEDIATION: "调解",
- courtsMethodARBITRATION: "仲裁",
- courtsMethodVOTE: "社区投票",
- courtsAccuser: "原告",
- courtsRespondent: "被告",
- courtsThStatus: "状态",
- courtsThAnswerBy: "答辩人",
- courtsThEvidenceBy: "举证人",
- courtsThDecisionBy: "裁决者",
- courtsVotesNeeded: "所需票数",
- courtsVotesSlashTotal: "赞成/总计",
- courtsOpenVote: "公开投票",
- courtsAnswerTitle: "答辩",
- courtsStanceADMIT: "承认",
- courtsStanceDENY: "否认",
- courtsStancePARTIAL: "部分承认",
- courtsStanceCOUNTERCLAIM: "反诉",
- courtsStanceNEUTRAL: "中立",
- courtsVerdictResult: "结果",
- courtsVerdictOrders: "命令",
- courtsSettlementText: "和解",
- courtsSettlementAccepted: "已接受",
- courtsSettlementPending: "待处理",
- courtsJudge: "法官",
- courtsThSupports: "支持",
- courtsFilterOpenCase: '开立案件',
- courtsEvidenceFileLabel: '证据文件(图片、音频、视频或 PDF)',
- courtsCaseMediators: '调解员',
- courtsCaseMediatorsPh: '调解员 Oasis ID,用逗号分隔',
- courtsMediatorsLabel: '调解员',
- courtsThCase: '案件',
- courtsThCreatedAt: '开始日期',
- courtsThActions: '操作',
- courtsPublicPrefLabel: '解决后的可见性',
- courtsPublicPrefYes: '我同意此案件可完全公开',
- courtsPublicPrefNo: '我倾向于保持细节私密',
- courtsPublicPrefSubmit: '保存可见性偏好',
- courtsMethodMEDIATION: '调解',
- courtsNoCases: '没有案件。',
- reportsTitle: "报告",
- reportsDescription: "管理和追踪你网络中与问题、漏洞、滥用和内容警告相关的报告。",
- reportsFilterAll: "全部",
- reportsFilterMine: "我的",
- reportsFilterFeatures: "功能",
- reportsFilterBugs: "漏洞",
- reportsFilterAbuse: "滥用",
- reportsFilterContent: "内容",
- reportsFilterConfirmed: "已确认",
- reportsFilterResolved: "已解决",
- reportsFilterOpen: "开放",
- reportsFilterUnderReview: "审查中",
- reportsFilterInvalid: "无效",
- reportsCreateButton: "创建报告",
- reportsTitleLabel: "标题",
- reportsDescriptionLabel: "描述",
- reportsDescriptionPlaceholder: "请提供详细描述。",
- reportsCategory: "类别",
- reportsCategoryLabel: "类别",
- reportsCategoryFeatures: "功能",
- reportsCategoryBugs: "漏洞",
- reportsCategoryAbuse: "滥用",
- reportsCategoryContent: "内容问题",
- reportsUpdateButton: "更新",
- reportsDeleteButton: "删除",
- reportsDateLabel: "日期",
- reportsUploadFile: "上传媒体(最大:50MB)",
- reportsCreatedBy: "作者",
- reportsMineSectionTitle: "你的报告",
- reportsFeaturesSectionTitle: "功能请求",
- reportsBugsSectionTitle: "漏洞",
- reportsAbuseSectionTitle: "滥用报告",
- reportsContentSectionTitle: "内容问题",
- reportsAllSectionTitle: "报告",
- reportsNoItems: "没有可用的报告。",
- reportsValidationTitle: "请输入有效的标题。",
- reportsValidationDescription: "描述不能为空。",
- reportsValidationCategory: "请选择一个类别。",
- reportsCreatedAt: "创建于",
- reportsCreatedBy: "作者",
- reportsSeverity: "严重程度",
- reportsSeverityLow: "低",
- reportsSeverityMedium: "中",
- reportsSeverityHigh: "高",
- reportsSeverityCritical: "严重",
- reportsStatus: "状态",
- reportsStatusOpen: "开放",
- reportsStatusUnderReview: "审查中",
- reportsStatusResolved: "已解决",
- reportsStatusInvalid: "无效",
- reportsUpdateStatusButton: "更新状态",
- reportsAnonymityOption: "匿名提交",
- reportsAnonymousAuthor: "匿名",
- reportsConfirmButton: "确认报告!",
- reportsConfirmations: "确认",
- reportsConfirmedSectionTitle: "已确认的报告",
- reportsCreateTaskButton: "创建任务",
- reportsOpenSectionTitle: "开放报告",
- reportsUnderReviewSectionTitle: "审查中的报告",
- reportsResolvedSectionTitle: "已解决的报告",
- reportsInvalidSectionTitle: "无效报告",
- reportsTemplateSectionTitle: '报告模板',
- reportsBugTemplateTitle: '复现详情(漏洞)',
- reportsFeatureTemplateTitle: '详情(功能)',
- reportsAbuseTemplateTitle: '详情(滥用)',
- reportsContentTemplateTitle: '详情(内容问题)',
- reportsStepsToReproduceLabel: '复现步骤',
- reportsStepsToReproducePlaceholder: '1) ...\n2) ...\n3) ...',
- reportsExpectedBehaviorLabel: '预期结果',
- reportsExpectedBehaviorPlaceholder: '应该发生什么?',
- reportsActualBehaviorLabel: '实际结果',
- reportsActualBehaviorPlaceholder: '实际发生了什么?',
- reportsEnvironmentLabel: '环境',
- reportsEnvironmentPlaceholder: '版本、设备、操作系统、浏览器、设置、日志等。',
- reportsReproduceRateLabel: '复现率',
- reportsReproduceRateAlways: '总是',
- reportsReproduceRateOften: '经常',
- reportsReproduceRateSometimes: '有时',
- reportsReproduceRateRarely: '偶尔',
- reportsReproduceRateUnable: '无法复现',
- reportsReproduceRateUnknown: '未指定',
- reportsProblemStatementLabel: '问题/需求',
- reportsProblemStatementPlaceholder: '此功能解决什么问题?',
- reportsUserStoryLabel: '居民故事',
- reportsUserStoryPlaceholder: '作为一个 <居民>,我希望 <动作>,以便 <收益>。',
- reportsAcceptanceCriteriaLabel: '验收标准',
- reportsAcceptanceCriteriaPlaceholder: '- 假设...\n- 当...\n- 那么...',
- reportsWhatHappenedLabel: '发生了什么?',
- reportsWhatHappenedPlaceholder: '描述事件的背景和大致日期。',
- reportsReportedUserLabel: '被举报的居民/实体',
- reportsReportedUserPlaceholder: '@居民、动态、ID、链接等。',
- reportsEvidenceLinksLabel: '证据/链接',
- reportsEvidenceLinksPlaceholder: '粘贴链接、消息 ID、截图(如适用)等。',
- reportsContentLocationLabel: '内容位置',
- reportsContentLocationPlaceholder: '链接、ID、频道、讨论串、作者等。',
- reportsWhyInappropriateLabel: "为什么不合适",
- reportsWhyInappropriatePlaceholder: '说明原因和影响。',
- reportsRequestedActionLabel: '请求的操作',
- reportsRequestedActionPlaceholder: '删除、隐藏、标记、警告等。',
- tribesTitle: "部落",
- tribeAllSectionTitle: "部落",
- tribeMineSectionTitle: "你的部落",
- tribeCreateSectionTitle: "创建部落",
- tribeUpdateSectionTitle: "更新部落",
- tribeGallerySectionTitle: "部落画廊",
- tribeLarpSectionTitle: "L.A.R.P",
- tribeRecentSectionTitle: "最近的部落",
- tribeTopSectionTitle: "热门部落",
- tribeviewTribeButton: "访问部落",
- tribeDescription: "探索或创建你网络中的部落。",
- tribeFilterAll: "全部",
- tribeFilterMine: "我的",
- tribeFilterMembership: "成员资格",
- tribeFilterRecent: "最近",
- tribeFilterLarp: "L.A.R.P.",
- tribeFilterTop: "热门",
- tribeFilterSubtribes: "子部落",
- tribeFilterGallery: "画廊",
- tribeMainTribeLabel: "主部落",
- tribeCreateButton: "创建部落",
- tribeUpdateButton: "更新",
- tribeDeleteButton: "删除",
- tribeImageLabel: "上传媒体(最大:50MB)",
- tribeTitleLabel: "标题",
- searchTribesPlaceholder: "按名称筛选部落...",
- tribeTitlePlaceholder: "部落名称",
- tribeDescriptionLabel: "描述",
- tribeDescriptionPlaceholder: "描述这个部落",
- tribeLocationLabel: "位置",
- tribeLocationPlaceholder: "这个部落位于哪里?",
- tribeTagsLabel: "标签",
- tribeTagsPlaceholder: "输入标签,用逗号分隔",
- tribeIsLARPLabel: "L.A.R.P. 部落?",
- tribeInviteMode: "邀请模式",
- tribeLARPLabel: "L.A.R.P.",
- tribeModeLabel: "模式",
- tribeIsAnonymousLabel: "状态",
- tribeMembersCount: "成员",
- tribeInviteCodePlaceholder: "输入邀请码",
- tribeJoinByCodeButton: "使用邀请码加入",
- tribeJoinButton: "加入",
- tribeLeaveButton: "离开",
- tribeYes: "是",
- tribeNo: "否",
- tribePublic: "公开",
- tribePrivate: "私密",
- tribeGenerateInvite: "生成邀请码",
- tribeCreatedAt: "创建于",
- tribeAuthor: "作者",
- tribeAuthorLabel: "作者",
- tribeStrict: "严格",
- tribeOpen: "开放",
- tribeFeedFilterRECENT: "最近",
- tribeFeedFilterMINE: "我的",
- tribeFeedFilterALL: "全部",
- tribeFeedFilterTOP: "热门",
- tribeFeedRefeeds: "转发",
- tribeFeedRefeed: "转发",
- tribeFeedMessagePlaceholder: "写一条动态…",
- tribeFeedSend: "发送",
- tribeFeedEmpty: "暂无动态消息。",
- noTribes: "尚未找到部落。",
- tribeNotFound: "未找到部落!",
- createTribeTitle: "创建部落",
- updateTribeTitle: "更新部落",
- tribeSectionOverview: "概览",
- tribeSectionInhabitants: "居民",
- tribeSectionVotations: "投票",
- tribeSectionEvents: "活动",
- tribeSectionReports: "报告",
- tribeSectionTasks: "任务",
- tribeSectionFeed: "动态",
- tribeSectionForum: "论坛",
- tribeSectionMarket: "市场",
- tribeSectionJobs: "工作",
- tribeSectionProjects: "项目",
- tribeSectionMedia: "媒体",
- tribeSectionImages: "图片",
- tribeSectionAudios: "音频",
- tribeSectionVideos: "视频",
- tribeSectionDocuments: "文档",
- tribeSectionBookmarks: "书签",
- tribeSectionMaps: "MAPS",
- tribeSectionPads: "PADS",
- tribeSectionChats: "CHATS",
- tribeSectionCalendars: "CALENDARS",
- tribePadCreate: "Create Pad",
- tribeChatCreate: "Create Chat",
- tribeCalendarCreate: "Create Calendar",
- tribePadsEmpty: "No pads, yet.",
- tribeChatsEmpty: "No chats, yet.",
- tribeCalendarsEmpty: "No calendars, yet.",
- tribeInhabitantsEmpty: "此部落中还没有居民。",
- tribeEventCreate: "创建活动",
- tribeEventsEmpty: "还没有活动。",
- tribeEventTitle: "标题",
- tribeEventDescription: "描述",
- tribeEventDate: "日期",
- tribeEventLocation: "位置",
- tribeEventAttend: "参加",
- tribeEventUnattend: "离开",
- tribeEventAttendees: "参与者",
- tribeTaskCreate: "创建任务",
- tribeTasksEmpty: "还没有任务。",
- tribeTaskTitle: "标题",
- tribeTaskDescription: "描述",
- tribeTaskPriority: "优先级",
- tribeTaskDeadline: "截止日期",
- tribeTaskAssignees: "被分配者",
- tribeTaskStatusInProgress: "进行中",
- tribeTaskStatusClosed: "关闭",
- tribeTaskAssign: "分配",
- tribeTaskUnassign: "取消分配",
- tribeReportCreate: "创建报告",
- tribeReportsEmpty: "还没有报告。",
- tribeReportTitle: "标题",
- tribeReportDescription: "描述",
- tribeReportCategory: "类别",
- tribeVotationCreate: "创建投票",
- tribeVotationsEmpty: "还没有投票。",
- tribeVotationTitle: "标题",
- tribeVotationDescription: "描述",
- tribeVotationOptions: "选项",
- tribeVotationDeadline: "截止日期",
- tribeVotationVote: "投票",
- tribeVotationResults: "票数",
- tribeVotationClose: "关闭投票",
- tribeVotationOptionPlaceholder: "选项",
- tribeForumCreate: "创建论坛",
- tribeForumEmpty: "还没有讨论串。",
- tribeForumTitle: "标题",
- tribeForumText: "消息",
- tribeForumCategory: "类别",
- tribeForumReply: "回复",
- tribeForumReplies: "回复",
- tribeMarketCreate: "创建商品",
- tribeMarketEmpty: "还没有商品。",
- tribeMarketTitle: "标题",
- tribeMarketDescription: "描述",
- tribeMarketPrice: "价格",
- tribeMarketImage: "图片",
- tribeMarketCategory: "类别",
- tribeJobCreate: "创建工作",
- tribeJobsEmpty: "还没有工作。",
- tribeJobTitle: "标题",
- tribeJobDescription: "描述",
- tribeJobLocation: "位置",
- tribeJobSalary: "薪资",
- tribeJobDeadline: "截止日期",
- tribeProjectCreate: "创建项目",
- tribeProjectsEmpty: "还没有项目。",
- tribeProjectTitle: "标题",
- tribeProjectDescription: "描述",
- tribeProjectGoal: "目标",
- tribeProjectFunded: "已筹资",
- tribeProjectDeadline: "截止日期",
- tribeMediaUpload: "上传媒体",
- readDocument: "阅读文档",
- tribeCreateImage: "创建图片",
- tribeCreateAudio: "创建音频",
- tribeCreateVideo: "创建视频",
- tribeCreateDocument: "创建文档",
- tribeCreateBookmark: "创建书签",
- tribeMediaEmpty: "还没有媒体。",
- tribeMediaTitle: "标题",
- tribeMediaDescription: "描述",
- tribeMediaType: "类型",
- tribeMediaTypeImage: "图片",
- tribeMediaTypeVideo: "视频",
- tribeMediaTypeAudio: "音频",
- tribeMediaTypeDocument: "文档",
- tribeMediaTypeBookmark: "书签",
- tribeContentDelete: "删除",
- tribeInviteCodeText: "邀请码:",
- tribeGroupTribe: "部落",
- tribeGroupOffice: "办公",
- tribeGroupNetwork: "网络",
- tribeGroupEconomy: "经济",
- tribeGroupMedia: "媒体",
- tribeStatusOpen: "开放",
- tribeStatusClosed: "已关闭",
- tribeStatusInProgress: "进行中",
- tribePriorityLow: "低",
- tribePriorityMedium: "中",
- tribePriorityHigh: "高",
- tribePriorityCritical: "严重",
- tribeTaskFilterAll: "全部",
- tribeMediaFilterAll: "全部",
- tribeReportCatBug: "漏洞",
- tribeReportCatAbuse: "滥用",
- tribeReportCatContent: "内容",
- tribeReportCatOther: "其他",
- tribeForumCatGeneral: "综合",
- tribeForumCatProposal: "提案",
- tribeForumCatQuestion: "问题",
- tribeForumCatAnnouncement: "公告",
- tribeMarketCatGoods: "商品",
- tribeMarketCatServices: "服务",
- tribeMarketCatFood: "食品",
- tribeMarketCatOther: "其他",
- tribeStatusLabel: "状态",
- tribeSubTribes: "子部落",
- tribeSubTribesCreate: "创建子部落",
- tribeSubTribesEmpty: "还没有创建子部落。",
- tribeLarpCreateForbidden: "无法创建 L.A.R.P. 部落。",
- tribeLarpUpdateForbidden: "无法更新 L.A.R.P. 部落。",
- tribeActivityJoined: "已加入",
- tribeActivityLeft: "已离开",
- tribeActivityFeed: "动态",
- tribeActivityRefeed: "转发",
- tribeGroupAnalytics: "分析",
- tribeGroupCreative: "创意",
- tribeSectionActivity: "活动记录",
- tribeSectionTrending: "热门",
- tribeSectionOpinions: "观点",
- tribeSectionPixelia: "PIXELIA",
- tribeSectionTags: "标签",
- tribeSectionSearch: "搜索",
- tribeActivityEmpty: "还没有活动。",
- tribeActivityCreated: "已创建",
- tribeActivityPosted: "已发布",
- tribeActivityReplied: "已回复",
- tribeTrendingEmpty: "还没有热门内容。",
- tribeTrendingPeriodDay: "今天",
- tribeTrendingPeriodWeek: "本周",
- tribeTrendingPeriodAll: "全部时间",
- tribeTrendingEngagement: "参与度",
- tribeOpinionsEmpty: "还没有观点。",
- tribeOpinionsCast: "投票",
- tribeOpinionsRankings: "排名",
- tribeOpinionsAlreadyVoted: "已投票",
- tribeTopCategory: "最多投票",
- tribePixeliaTitle: "Pixelia",
- tribePixeliaDescription: "协作像素艺术画布。",
- tribePixeliaPaint: "画",
- tribePixeliaContributors: "贡献者",
- tribePixeliaTotalPixels: "已绘制像素",
- tribeTagsEmpty: "未找到标签。",
- tribeTagsCloud: "标签云",
- tribeTagsContentWith: "带有标签的内容",
- tribeSearchPlaceholder: "搜索部落内容...",
- tribeSearchEmpty: "未找到结果。",
- tribeSearchResults: "结果",
- tribeSearchMinChars: "请输入至少2个字符进行搜索。",
- agendaTitle: "日程",
- agendaDescription: "在这里你可以找到所有分配给你的项目。",
- agendaFilterAll: "全部",
- agendaFilterOpen: "开放",
- agendaFilterClosed: "已关闭",
- agendaFilterTasks: "任务",
- agendaFilterMarket: "市场",
- agendaFilterTribes: "部落",
- agendaFilterEvents: "活动",
- agendaFilterReports: "报告",
- agendaFilterTransfers: "转账",
- agendaFilterJobs: "工作",
- agendaFilterProjects: "项目",
- agendaFilterCalendars: "日历",
- agendaNoItems: "未找到分配项目。",
- agendaAuthor: "作者",
- agendaDiscardButton: "丢弃",
- agendaRestoreButton: "恢复",
- agendaCreatedAt: "创建于",
- agendaTitleLabel: "标题",
- agendaMembersCount: "成员",
- agendaDescriptionLabel: "描述",
- agendaStatus: "状态",
- agendaVisibility: "可见性",
- agendaEventDate: "活动日期",
- agendaEventLocation: "位置",
- agendaEventPrice: "价格",
- agendaEventUrl: "URL",
- agendaTaskStart: "开始时间",
- agendaLocationLabel: "位置",
- agendaLARPLabel: "L.A.R.P.",
- agendaYes: "是",
- agendaNo: "否",
- agendaInviteModeLabel: "状态",
- agendaAnonymousLabel: "匿名",
- agendaMembersLabel: "成员",
- agendareportCategory: "类别",
- agendareportSeverity: "严重程度",
- agendareportStatus: "状态",
- agendareportDescription: "描述",
- agendaTaskEnd: "结束时间",
- agendaTaskPriority: "优先级",
- agendaTransferFrom: "发起人",
- agendaTransferTo: "接收人",
- agendaTransferConcept: "概念",
- agendaTransferAmount: "金额",
- agendaTransferDeadline: "截止日期",
- agendaTransferFrom: "发起人",
- agendaTransferTo: "接收人",
- agendaTransferConcept: "概念",
- agendaTransferAmount: "金额",
- agendaTransferDeadline: "截止日期",
- opinionsTitle: "观点",
- shareYourOpinions: "发现并为你网络中的观点投票。",
- author: "作者",
- voteNow: "立即投票",
- alreadyVoted: "你已经表达了意见。",
- noOpinionsFound: "未找到观点。",
- ALLButton: "全部",
- MINEButton: "我的",
- RECENTButton: "最近",
- TOPButton: "热门",
- interestingButton: "有趣",
- necessaryButton: "必要",
- funnyButton: "搞笑",
- disgustingButton: "恶心",
- sensibleButton: "明智",
- propagandaButton: "宣传",
- adultOnlyButton: "仅限成人",
- boringButton: "无聊",
- confusingButton: "令人困惑",
- inspiringButton: "鼓舞人心",
- spamButton: "垃圾信息",
- usefulButton: "有用",
- informativeButton: "信息丰富",
- wellResearchedButton: "研究充分",
- accurateButton: "准确",
- needsSourcesButton: "需要来源",
- wrongButton: "错误",
- lowQualityButton: "低质量",
- creativeButton: "有创意",
- insightfulButton: "有洞察力",
- actionableButton: "可操作",
- inspiringButton: "鼓舞人心",
- loveButton: "喜爱",
- clearButton: "清晰",
- upliftingButton: "振奋人心",
- unnecessaryButton: "不必要",
- rejectedButton: "被拒绝",
- misleadingButton: "误导",
- offTopicButton: "离题",
- duplicateButton: "重复",
- clickbaitButton: "标题党",
- spamButton: "垃圾信息",
- trollButton: "恶搞",
- nsfwButton: "NSFW",
- violentButton: "暴力",
- toxicButton: "有毒",
- harassmentButton: "骚扰",
- hateButton: "仇恨",
- scamButton: "诈骗",
- triggeringButton: "触发性",
- opinionsCreatedAt: "创建于",
- opinionsTotalCount: "总观点数",
- voteInteresting: "有趣",
- voteNecessary: "必要",
- voteUseful: "有用",
- voteInformative: "信息丰富",
- voteWellResearched: "研究充分",
- voteNeedsSources: "需要来源",
- voteWrong: "错误",
- voteLowQuality: "低质量",
- voteLove: "喜爱",
- voteClear: "清晰",
- voteMisleading: "误导",
- voteOffTopic: "离题",
- voteDuplicate: "重复",
- voteClickbait: "标题党",
- votePropaganda: "宣传",
- voteFunny: "搞笑",
- voteInspiring: "鼓舞人心",
- voteUplifting: "振奋人心",
- voteUnnecessary: "不必要",
- voteRejected: "被拒绝",
- voteConfusing: "令人困惑",
- voteTroll: "恶搞",
- voteNsfw: "NSFW",
- voteViolent: "暴力",
- voteToxic: "有毒",
- voteHarassment: "骚扰",
- voteHate: "仇恨",
- voteScam: "诈骗",
- voteTriggering: "触发性",
- voteInsightful: "有洞察力",
- voteAccurate: "准确",
- voteActionable: "可操作",
- voteCreative: "有创意",
- voteSpam: "垃圾信息",
- voteAdultOnly: "仅限成人",
- publishBlog: "发布博客",
- privateMessage: "私信",
- pmSendTitle: "私信",
- pmSend: "发送!",
- pmDescription: "使用此表单向其他居民发送加密消息。",
- pmRecipients: "收件人",
- pmRecipientsHint: "输入 Oasis ID,用逗号分隔",
- pmSubject: "主题",
- pmSubjectHint: "输入消息主题",
- pmText: "消息",
- pmFile: "附件",
- private: "私密",
- privateDescription: "你的加密消息。",
- privateInbox: "收件箱",
- privateSent: "已发送",
- privateDelete: "删除",
- pmCreateButton: "写私信",
- noPrivateMessages: "没有私信。",
- pmFromLabel: "发件人:",
- pmToLabel: "收件人:",
- pmInvalidMessage: "无效消息",
- pmNoSubject: "(无主题)",
- pmSubjectLabel: "主题:",
- pmBodyLabel: "正文",
- pmBotJobs: "42-JobsBOT",
- pmBotProjects: "42-ProjectsBOT",
- pmBotMarket: "42-MarketBOT",
- inboxJobSubscribedTitle: "你的工作机会有新订阅",
- pmInhabitantWithId: "Oasis ID 为以下的居民:",
- pmHasSubscribedToYourJobOffer: "已订阅你的工作机会",
- inboxProjectCreatedTitle: "新项目已创建",
- pmHasCreatedAProject: "已创建一个项目",
- inboxMarketItemSoldTitle: "商品已售出",
- pmYourItem: "你的商品",
- pmHasBeenSoldTo: "已售出给",
- pmFor: "售价",
- inboxProjectPledgedTitle: "你的项目有新质押",
- pmHasPledged: "已质押",
- pmToYourProject: "至你的项目",
- blockchain: '区块浏览器',
- blockchainTitle: '区块浏览器',
- blockchainDescription: '探索和可视化区块链中的区块。',
- blockchainNoBlocks: '区块链中未找到区块。',
- blockchainBlockID: '区块 ID',
- blockchainBlockAuthor: '作者',
- blockchainBlockType: '类型',
- blockchainBlockTimestamp: '时间戳',
- blockchainBlockContent: '区块',
- blockchainBlockURL: 'URL:',
- blockchainContent: '区块',
- blockchainContentPreview: '区块内容预览',
- blockchainLatestDatagram: '最新数据报',
- blockchainDatagram: '数据报',
- blockchainDetails: '查看区块详情',
- blockchainBlockInfo: '区块信息',
- blockchainBlockDetails: '所选区块的详情',
- blockchainBack: '返回区块浏览器',
- blockchainContentDeleted: "此内容已被标记为墓碑",
- visitContent: "访问内容",
- banking: '银行',
- bankingTitle: '银行',
- bankingDescription: '探索 ECOin 的当前价值和相应的 UBI 分配,根据参与度和信任度按纪元分配。',
- bankOverview: '概览',
- bankEpochs: '纪元',
- bankRules: '规则',
- pending: '待处理',
- closed: '已关闭',
- bankBack: '返回银行',
- bankViewTx: '查看交易',
- bankClaimNow: '立即领取',
- bankClaimUBI: '领取 UBI!',
- bankClaimAndPay: 'Claim & Pay',
- bankClaimedPending: 'Claim pending...',
- bankStatusUnclaimed: 'Unclaimed',
- bankStatusClaimed: 'Claimed',
- bankStatusExpired: 'Expired',
- bankPubOnly: 'PUB-only operation',
- bankNoPendingUBI: '本期无待领取的 UBI 分配。',
- bankPubBalance: 'PUB 余额',
- bankEpoch: '纪元',
- bankPool: '资金池(本纪元)',
- bankWeightsSum: '权重总和',
- bankAllocations: '分配',
- bankNoAllocations: '未找到分配。',
- bankNoEpochs: '未找到纪元。',
- bankEpochAllocations: '纪元分配',
- bankAllocId: '分配 ID',
- bankAllocDate: '日期',
- bankAllocConcept: '概念',
- bankAllocFrom: '发起人',
- bankAllocTo: '接收人',
- bankAllocAmount: '金额',
- bankAllocStatus: '状态',
- bankEpochId: '纪元 ID',
- bankRuleHash: '规则快照哈希',
- bankViewEpoch: '查看纪元',
- bankUserBalance: '你的余额',
- ecoWalletNotConfigured: '未配置 ECOin 钱包',
- editWallet: '编辑钱包',
- addWallet: '添加钱包',
- bankAddresses: '地址',
- bankNoAddresses: '未找到地址。',
- bankUser: 'Oasis ID',
- bankAddress: '地址',
- bankAddAddressTitle: '添加 ECOIN 地址',
- bankAddAddressUser: 'Oasis ID',
- bankAddAddressAddress: 'ECOIN 地址',
- bankAddAddressSave: '保存',
- bankAddressAdded: '地址已添加',
- bankAddressUpdated: '地址已更新',
- bankAddressExists: '地址已存在',
- bankAddressInvalid: '无效地址',
- bankAddressDeleted: '地址已删除',
- bankAddressNotFound: '未找到地址',
- bankAddressTotal: '地址总数',
- bankAddressSearch: '搜索 @居民或地址',
- bankAddressActions: '操作',
- bankAddressDelete: '删除',
- bankAddressSource: '来源',
- bankAddressDeleteConfirm: '删除此地址?',
- search: '搜索!',
- bankLocal: '本地',
- bankFromOasis: 'Oasis',
- bankMyAddress: '你的地址',
- bankRemoveMyAddress: '移除我的地址',
- bankNotRemovableOasis: '无法在本地移除地址',
- bankingFutureUBI: "UBI",
- pubIdTitle: "PUB Wallet",
- pubIdDescription: "Set the PUB wallet URL. This will be used for PUB transactions (including the UBI).",
- pubIdLabel: "PUB ID",
- pubIdSave: "Save configuration",
- pubIdPlaceholder: "@PUB_ID.ed25519",
- bankUbiAvailability: "UBI 可用性",
- bankUbiAvailableOk: "可用",
- bankUbiAvailableNo: "资金不足!",
- bankAlreadyClaimedThisMonth: "本月已领取",
- bankUbiThisMonth: "UBI(本月)",
- bankUbiLastClaimed: "UBI(上次领取)",
- bankUbiNeverClaimed: "从未领取",
- bankUbiTotalClaimed: "UBI(累计领取)",
- bankUbiPub: "PUB",
- bankUbiInhabitant: "居民",
- bankUbiClaimedAmount: "已领取(ECO)",
- typeBankUbiResult: "银行 - UBI",
- bankNoPubConfigured: "未配置 PUB。请在设置中设置您的 PUB ID。",
- shopsTitle: "商店",
- shopDescription: "发现和管理网络中的商店。",
- shopTitle: "商店",
- shopFilterAll: "全部",
- shopFilterMine: "我的",
- shopFilterRecent: "最近",
- shopFilterTop: "热门",
- shopFilterProducts: "产品",
- shopFilterPrices: "价格",
- shopFilterFavorites: "收藏",
- shopUpload: "创建商店",
- shopAllSectionTitle: "所有商店",
- shopMineSectionTitle: "我的商店",
- shopRecentSectionTitle: "最近商店",
- shopTopSectionTitle: "热门商店",
- shopProductsSectionTitle: "热门产品",
- shopPricesSectionTitle: "按价格排列的产品",
- shopFavoritesSectionTitle: "收藏",
- shopCreateSectionTitle: "创建商店",
- shopUpdateSectionTitle: "更新商店",
- shopCreate: "创建",
- shopUpdate: "更新",
- shopDelete: "删除",
- shopAddFavorite: "添加收藏",
- shopRemoveFavorite: "取消收藏",
- shopOpen: "开放",
- shopClosed: "关闭",
- shopOpenShop: "开放商店",
- shopCloseShop: "关闭商店",
- shopProducts: "产品",
- shopProductAdd: "添加产品",
- shopProductTitle: "产品",
- shopProductUpdate: "更新产品",
- shopProductPrice: "价格 (ECO)",
- shopProductStock: "库存",
- shopProductUntitled: "无标题产品",
- shopUntitled: "无标题商店",
- shopNoItems: "未找到商店。",
- shopNoProducts: "暂无产品。",
- shopOutOfStock: "已售罄",
- shopBuy: "购买",
- shopBackToShop: "返回商店",
- shopShareUrl: "分享链接",
- shopVisitShop: "访问商店",
- shopStatus: "状态",
- shopCreatedAt: "创建时间",
- shopSearchPlaceholder: "搜索商店...",
- shopUrl: "网址",
- shopLocation: "位置",
- shopTags: "标签",
- shopVisibility: "可见性",
- shopImage: "图片",
- shopShortDescription: "简短描述",
- shopShortDescriptionPlaceholder: "店铺卡片简短描述(最多160个字符)",
- shopTitlePlaceholder: "您的店铺名称",
- shopDescriptionPlaceholder: "您的店铺详细描述",
- shopUrlPlaceholder: "https://您的店铺网址.com",
- shopLocationPlaceholder: "城市,国家",
- shopTagsPlaceholder: "标签1, 标签2, 标签3",
- mapTitlePlaceholder: "地图标题",
- shopProductFeatured: "推荐产品",
- shopSendToMarket: "Send to Market",
- typeShop: "商店",
- typeShopProduct: "店铺商品",
- bankExchange: '交易所',
- bankExchangeCurrentValue: 'ECOin 价值(1小时)',
- bankTotalSupply: 'ECOin 总供应量',
- bankEcoinHours: "ECOin 时间等价",
- bankHoursOfWork: '小时',
- bankExchangeNoData: '无可用数据',
- bankExchangeIndex: 'ECOin 价值(1小时)',
- bankInflation: 'ECOin 通胀率',
- bankCurrentSupply: 'ECOin 当前供应量',
- bankingSyncStatus: 'ECOin 状态',
- bankingSyncStatusSynced: '已同步',
- bankingSyncStatusOutdated: '已过时',
- statsTitle: '统计',
- statistics: "统计",
- statsInhabitant: "居民统计",
- statsDescription: "发现你网络的统计数据。",
- ALLButton: "全部",
- MINEButton: "我的",
- TOMBSTONEButton: "墓碑",
- statsYou: "你",
- statsUserId: "Oasis ID",
- statsCreatedAt: "创建于",
- statsYourContent: "内容",
- statsYourOpinions: "观点",
- statsYourTombstone: "墓碑",
- statsNetwork: "网络",
- statsTotalInhabitants: "居民",
- statsDiscoveredTribes: "部落(公开)",
- statsPrivateDiscoveredTribes: "部落(私密)",
- statsNetworkContent: "内容",
- statsYourMarket: "市场",
- statsYourJob: "工作",
- statsYourProject: "项目",
- statsYourTransfer: "转账",
- statsYourForum: "论坛",
- statsNetworkOpinions: "观点",
- statsDiscoveredMarket: "市场",
- statsDiscoveredJob: "工作",
- statsDiscoveredProject: "项目",
- statsBankingTitle: "银行",
- statsEcoWalletLabel: "ECOIN 钱包",
- statsEcoWalletNotConfigured: "未配置!",
- statsTotalEcoAddresses: "地址总数",
- statsDiscoveredTransfer: "转账",
- statsDiscoveredForum: "论坛",
- statsNetworkTombstone: "墓碑",
- statsBookmark: "书签",
- statsEvent: "活动",
- statsTask: "任务",
- statsVotes: "投票",
- statsMarket: "市场",
- statsForum: "论坛",
- statsJob: "工作",
- statsProject: "项目",
- statsReport: "报告",
- statsFeed: "动态",
- statsTribe: "部落",
- statsImage: "图片",
- statsAudio: "音频",
- statsVideo: "视频",
- statsDocument: "文档",
- statsMap: "地图",
- statsShop: "店铺",
- statsShopProduct: "店铺商品",
- statsTransfer: "转账",
- statsAiExchange: "AI",
- statsPUBs: 'PUB',
- statsPost: "帖子",
- statsOasisID: "Oasis ID",
- statsSize: "总计(大小)",
- statsBlockchainSize: "区块链(大小)",
- statsBlobsSize: "Blob(大小)",
- statsActivity7d: "活动(最近7天)",
- statsActivity7dTotal: "7天总计",
- statsActivity30dTotal: "30天总计",
- statsKarmaScore: "KARMA 评分",
- statsPublic: "公开",
- statsPrivate: "私密",
- day: "日",
- messages: "消息",
- statsProject: "项目",
- statsProjectsTitle: "项目",
- statsProjectsTotal: "项目总数",
- statsProjectsActive: "活跃",
- statsProjectsCompleted: "已完成",
- statsProjectsPaused: "已暂停",
- statsProjectsCancelled: "已取消",
- statsProjectsGoalTotal: "目标总额",
- statsProjectsPledgedTotal: "质押总额",
- statsProjectsSuccessRate: "成功率",
- statsProjectsAvgProgress: "平均进度",
- statsProjectsMedianProgress: "中位数进度",
- statsProjectsActiveFundingAvg: "平均活跃筹资",
- statsJobsTitle: "工作",
- statsJobsTotal: "工作总数",
- statsJobsOpen: "开放",
- statsJobsClosed: "已关闭",
- statsJobsOpenVacants: "开放职位",
- statsJobsSubscribersTotal: "订阅者总数",
- statsJobsAvgSalary: "平均薪资",
- statsJobsMedianSalary: "中位数薪资",
- statsMarketTitle: "市场",
- statsMarketTotal: "商品总数",
- statsMarketForSale: "在售",
- statsMarketReserved: "已预订",
- statsMarketClosed: "已关闭",
- statsMarketSold: "已售出",
- statsMarketRevenue: "收入",
- statsMarketAvgSoldPrice: "平均售价",
- statsUsersTitle: "居民",
- user: "居民",
- statsTombstoneTitle: "墓碑",
- statsNetworkTombstones: "网络墓碑",
- statsTombstoneRatio: "墓碑比率 (%)",
- statsAITraining: "AI 训练",
- statsAIExchanges: "交流",
- statsParliamentCandidature: "议会候选",
- statsParliamentTerm: "议会任期",
- statsParliamentProposal: "议会提案",
- statsParliamentRevocation: "议会撤销",
- statsParliamentLaw: "议会法律",
- statsCourtsCase: "法庭案件",
- statsCourtsEvidence: "法庭证据",
- statsCourtsAnswer: "法庭答辩",
- statsCourtsVerdict: "法庭裁决",
- statsCourtsSettlement: "法庭和解",
- statsCourtsSettlementProposal: "和解提议",
- statsCourtsSettlementAccepted: "已接受的和解",
- statsCourtsNomination: "法官提名",
- statsCourtsNominationVote: "提名投票",
- ai: "AI",
- aiTitle: "AI",
- aiDescription: "一个名为 '42' 的集体人工智能 (CAI),从你的网络中学习。",
- aiInputPlaceholder: "有什么问题?",
- aiUserQuestion: "问题",
- aiResponseTitle: "回复",
- aiSubmitButton: "发送!",
- aiSettingsDescription: "为 AI 模型设置你的提示语(最多128个字符)。",
- aiPrompt: "提供信息丰富且精确的回答。",
- aiConfiguration: "设置提示语",
- aiPromptUsed: "提示语",
- aiClearHistory: "清除聊天记录",
- aiSharePrompt: "将此回答添加到集体训练?",
- aiShareYes: "是",
- aiShareNo: "否",
- aiSharedLabel: "已添加到训练",
- aiRejectedLabel: "未添加到训练",
- aiServerError: "AI 无法回答。请重试。",
- aiInputPlaceholder: "什么是 Oasis?",
- typeAiExchange: "AI",
- aiApproveTrain: "添加到集体训练",
- aiRejectTrain: "不训练",
- aiTrainPending: "待批准",
- aiTrainApproved: "已批准训练",
- aiTrainRejected: "已拒绝训练",
- aiSnippetsUsed: "使用的片段",
- aiSnippetsLearned: "已学习的片段",
- statsAITraining: "AI 训练",
- aiApproveCustomTrain: "使用此自定义回答训练",
- aiCustomAnswerPlaceholder: "写下你的自定义回答…",
- statsAIExchanges: "模型交流",
- marketMineSectionTitle: "你的商品",
- marketCreateSectionTitle: "创建商品",
- marketUpdateSectionTitle: "更新",
- marketAllSectionTitle: "市场",
- marketRecentSectionTitle: "最近的市场",
- marketTitle: "市场",
- marketDescription: "在你的网络中交换商品或服务的市场。",
- marketFilterAll: "全部",
- marketFilterMine: "我的",
- marketFilterAuctions: "拍卖",
- marketFilterItems: "交换",
- marketFilterNew: "全新",
- marketFilterUsed: "二手",
- marketFilterBroken: "损坏",
- marketFilterForSale: "出售中",
- marketFilterSold: "已售出",
- marketFilterDiscarded: "已废弃",
- marketFilterRecent: "最近",
- marketFilterMyBids: "出价",
- marketCreateButton: "创建商品",
- marketItemType: "类型",
- marketItemTitle: "标题",
- marketItemAvailable: "截止日期",
- marketItemDescription: "描述",
- marketItemDescriptionPlaceholder: "描述你要出售的商品",
- marketItemStatus: "状态",
- marketShopLabel: "商店",
- marketItemCondition: "状况",
- marketItemPrice: "价格",
- marketItemTags: "标签",
- marketItemTagsPlaceholder: "输入标签,用逗号分隔",
- marketItemDeadline: "截止日期",
- marketItemIncludesShipping: "包含运费?",
- marketItemHighestBid: "最高出价",
- marketItemHighestBidder: "最高出价者",
- marketItemStock: "库存",
- marketOutOfStock: "缺货",
- marketItemBidTime: "出价时间",
- marketActionsUpdate: "更新",
- marketUpdateButton: "更新商品!",
- marketActionsDelete: "删除",
- marketActionsSold: "标记为已售出",
- marketActionsChangeStatus: "更改状态",
- marketActionsBuy: "购买!",
- marketAuctionBids: "当前出价",
- marketPlaceBidButton: "出价",
- marketItemSeller: "卖家",
- marketNoItems: "暂无可用商品。",
- marketYourBid: "你的出价",
- marketCreateFormImageLabel: "上传媒体(最大:50MB)",
- marketSearchLabel: "搜索",
- marketSearchPlaceholder: "搜索标题或标签",
- marketMinPriceLabel: "最低价格",
- marketMaxPriceLabel: "最高价格",
- marketSortLabel: "排序",
- marketSortRecent: "最近",
- marketSortPrice: "价格",
- marketSortDeadline: "截止日期",
- marketSearchButton: "搜索",
- marketAuctionEndsIn: "结束于",
- marketAuctionEnded: "已结束",
- marketMyBidBadge: "你已出价",
- marketNoItemsMatch: "没有匹配的商品。",
- jobsTitle: "工作",
- jobsDescription: "发现和管理你网络中的工作。",
- jobsFilterRecent: "最近",
- jobsFilterMine: "我的",
- jobsFilterAll: "全部",
- jobsFilterRemote: "远程",
- jobsFilterOpen: "开放",
- jobsFilterClosed: "已关闭",
- jobsCV: "简历",
- jobsCreateJob: "创建工作",
- jobsRecentTitle: "最近的工作",
- jobsMineTitle: "你的工作",
- jobsAllTitle: "工作",
- jobsRemoteTitle: "远程工作",
- jobsOpenTitle: "开放的工作",
- jobsClosedTitle: "已关闭的工作",
- jobsCVTitle: "简历",
- jobsFilterPresencial: "现场",
- jobsFilterFreelancer: "自由职业",
- jobsFilterEmployee: "全职",
- jobsPresencialTitle: "现场工作",
- jobsFreelancerTitle: "自由职业工作",
- jobsEmployeeTitle: "全职工作",
- jobTitle: "标题",
- jobLocation: "位置",
- jobSalary: "薪资 (ECO/1小时)",
- jobVacants: "空缺",
- jobDescription: "描述",
- jobRequirements: "要求",
- jobLanguages: "语言",
- jobStatus: "状态",
- jobStatusOPEN: "开放",
- jobStatusCLOSED: "已关闭",
- jobSetOpen: "设为开放",
- jobSetClosed: "设为已关闭",
- jobSubscribeButton: "加入此机会!",
- jobUnsubscribeButton: "离开此机会!",
- jobTitlePlaceholder: "输入工作标题",
- jobDescriptionPlaceholder: "描述工作内容",
- jobRequirementsPlaceholder: "输入要求",
- jobLanguagesPlaceholder: "中文、英文、西班牙文...",
- jobTasksPlaceholder: "列出任务",
- jobLocationPresencial: "现场",
- jobLocationRemote: "远程",
- jobVacantsPlaceholder: "职位数量",
- jobSalaryPlaceholder: "每小时 ECO 薪资",
- jobImage: "上传媒体(最大:50MB)",
- jobTasks: "任务",
- jobType: "工作类型",
- jobTime: "工作时间",
- jobSubscribers: "订阅者",
- noSubscribers: "没有订阅者",
- jobsFilterTop: "热门",
- jobsTopTitle: "最高薪资工作",
- createJobButton: "发布工作",
- viewDetailsButton: "查看详情",
- noJobsFound: "未找到工作机会。",
- jobAuthor: "作者",
- jobTypeFreelance: "自由职业",
- jobTypeSalary: "全职",
- jobTimePartial: "兼职",
- jobTimeComplete: "全职",
- jobsDeleteButton: "删除",
- jobsUpdateButton: "更新",
- jobsFilterApplied: "已申请",
- jobsAppliedTitle: "我的申请",
- jobsAppliedBadge: "已申请",
- jobsFilterFavs: "收藏",
- jobsFavsTitle: "收藏",
- jobsFilterNeeds: "需要帮助",
- jobsNeedsTitle: "需要帮助",
- jobsSearchLabel: "搜索",
- jobsSearchPlaceholder: "搜索标题、标签、描述...",
- jobsMinSalaryLabel: "最低薪资",
- jobsMaxSalaryLabel: "最高薪资",
- jobsSortLabel: "排序",
- jobsSortRecent: "最近",
- jobsSortSalary: "最高薪资",
- jobsSortSubscribers: "最多申请者",
- jobsSearchButton: "搜索",
- jobsFavoriteButton: "收藏",
- jobsUnfavoriteButton: "取消收藏",
- jobsMessageAuthorButton: "私信",
- jobsApplicants: "申请者",
- jobsUpdatedAt: "已更新",
- jobSetOpen: "设为开放",
- jobNewBadge: "新",
- jobsTagsLabel: "标签",
- jobsTagsPlaceholder: "标签1, 标签2, 标签3",
- noJobsMatch: "没有匹配的工作。",
- projectsTitle: "项目",
- projectsDescription: "创建、资助和关注你网络中的社区驱动项目。",
- projectCreateProject: "创建项目",
- projectCreateButton: "创建项目",
- projectUpdateButton: "更新",
- projectDeleteButton: "删除",
- projectNoProjectsFound: "未找到项目。",
- projectFilterAll: "全部",
- projectFilterMine: "我的",
- projectFilterActive: "活跃",
- projectFilterPaused: "已暂停",
- projectFilterCompleted: "已完成",
- projectFilterFollowing: "已关注",
- projectFilterRecent: "最近",
- projectFilterTop: "热门",
- projectAllTitle: "项目",
- projectMineTitle: "你的项目",
- projectActiveTitle: "活跃项目",
- projectPausedTitle: "已暂停项目",
- projectCompletedTitle: "已完成项目",
- projectFollowingTitle: "已关注项目",
- projectRecentTitle: "最近的项目",
- projectTopTitle: "最高筹资",
- projectTitlePlaceholder: "项目名称",
- projectImage: "上传媒体(最大:50MB)",
- projectDescription: "描述",
- projectDescriptionPlaceholder: "讲述故事和目标…",
- projectGoal: "目标 (ECO)",
- projectGoalPlaceholder: "50000",
- projectDeadline: "截止日期",
- projectProgress: "起始进度 (%)",
- projectStatus: "状态",
- projectFunding: "筹资",
- projectPledged: "已质押",
- projectSetStatus: "设置状态",
- projectSetProgress: "更新进度",
- projectFollowButton: "关注",
- projectUnfollowButton: "取消关注",
- projectStatusACTIVE: "活跃",
- projectStatusPAUSED: "已暂停",
- projectStatusCOMPLETED: "已完成",
- projectStatusCANCELLED: "已取消",
- projectPledgeTitle: "支持此项目",
- projectPledgePlaceholder: "ECO 金额",
- projectBounties: "悬赏",
- projectBountiesInputLabel: "悬赏(每行一个:标题|金额 [ECO]|描述)",
- projectBountiesPlaceholder: "修复 UI 漏洞|100|问题链接\n编写文档|250|列出使用示例",
- projectNoBounties: "未找到悬赏。",
- projectTitle: "标题",
- projectAddBountyTitle: "新悬赏",
- projectBountyTitle: "悬赏标题",
- projectBountyAmount: "金额 (ECO)",
- projectBountyDescription: "描述",
- projectMilestoneSelect: "选择里程碑",
- projectBountyCreateButton: "创建悬赏",
- projectBountyStatus: "悬赏状态",
- projectBountyOpen: "开放",
- projectBountyClaimed: "已认领",
- projectBountyDone: "已完成",
- projectBountyClaimedBy: "认领者",
- projectBountyClaimButton: "认领",
- projectBountyCompleteButton: "标记为已完成",
- projectMilestones: "里程碑",
- projectAddMilestoneTitle: "新里程碑",
- projectMilestoneTitle: "里程碑标题",
- projectMilestoneTargetPercent: "百分比 (%)",
- projectMilestoneDueDate: "日期",
- projectMilestoneCreateButton: "创建里程碑",
- projectMilestoneStatus: "里程碑状态",
- projectMilestoneOpen: "开放",
- projectMilestoneDone: "已完成",
- projectMilestoneMarkDone: "标记为已完成",
- projectMilestoneDue: "截止",
- projectNoMilestones: "未找到里程碑。",
- projectMilestoneMarkDone: "标记为已完成",
- projectMilestoneTitlePlaceholder: "输入里程碑标题",
- projectMilestoneDescriptionPlaceholder: "输入此里程碑的描述",
- projectMilestoneDescription: "里程碑描述",
- projectBudgetGoal: "预算(目标)",
- projectBudgetAssigned: "已分配至悬赏",
- projectBudgetRemaining: "剩余",
- projectBudgetOver: "⚠ 超出预算:分配金额超过目标",
- projectFollowers: "关注者",
- projectFollowersTitle: "关注者",
- projectFollowersNone: "还没有关注者。",
- projectMore: "更多",
- projectYouFollowHint: "你关注了此项目",
- projectBackers: "支持者",
- projectBackersTitle: "支持者",
- projectBackersTotal: "支持者总数",
- projectBackersTotalPledged: "质押总额",
- projectBackersYourPledge: "你的质押",
- projectBackersNone: "还没有质押。",
- projectNoRemainingBudget: "没有剩余预算。",
- projectFilterBackers: "支持者",
- projectFilterApplied: "已申请",
- projectAppliedTitle: "已申请",
- projectBackersLeaderboardTitle: "顶级支持者",
- projectNoBackersFound: "未找到支持者。",
- projectBackerAmount: "总贡献",
- projectBackerPledges: "质押",
- projectBackerProjects: "项目",
- projectPledgeAmount: "金额",
- projectSelectMilestoneOrBounty: "选择里程碑或悬赏",
- projectPledgeButton: "质押",
- footerLicense: "GPLv3",
- footerPackage: "软件包",
- footerVersion: "版本",
- modulesModuleName: "名称",
- modulesModuleDescription: "描述",
- modulesModuleStatus: "状态",
- modulesTotalModulesLabel: "已加载模块",
- modulesEnabledModulesLabel: "已启用",
- modulesDisabledModulesLabel: "已禁用",
- modulesPopularLabel: "精选",
- modulesPopularDescription: "接收热门、最多浏览或最多评论帖子的模块。",
- modulesTopicsLabel: "话题",
- modulesTopicsDescription: "接收基于共同兴趣的讨论类别的模块。",
- modulesSummariesLabel: "摘要",
- modulesSummariesDescription: "接收长讨论或帖子摘要的模块。",
- modulesLatestLabel: "最新",
- modulesLatestDescription: "接收最新帖子和讨论的模块。",
- modulesThreadsLabel: "讨论串",
- modulesThreadsDescription: "接收按话题或问题分组的对话的模块。",
- modulesMultiverseLabel: "多元宇宙",
- modulesMultiverseDescription: "接收来自其他联邦节点内容的模块。",
- modulesInvitesLabel: "邀请",
- modulesInvitesDescription: "管理和应用邀请码的模块。",
- modulesWalletLabel: "钱包",
- modulesWalletDescription: "管理你的数字资产 (ECOin) 的模块。",
- modulesLegacyLabel: "密钥",
- modulesLegacyDescription: "快速安全地管理你的私钥的模块。",
- modulesCipherLabel: "加密器",
- modulesCipherDescription: "使用共享密码对文本进行对称加密和解密的模块。",
- modulesBookmarksLabel: "书签",
- modulesBookmarksDescription: "发现和管理书签的模块。",
- modulesVideosLabel: "视频",
- modulesVideosDescription: "发现和管理视频的模块。",
- modulesDocsLabel: "文档",
- modulesDocsDescription: "发现和管理文档的模块。",
- modulesAudiosLabel: "音频",
- modulesAudiosDescription: "发现和管理音频的模块。",
- modulesTagsLabel: "标签",
- modulesTagsDescription: "发现和探索分类模式(标签)的模块。",
- modulesImagesLabel: "图片",
- modulesImagesDescription: "发现和管理图片的模块。",
- modulesTrendingLabel: "热门",
- modulesTrendingDescription: "探索最受欢迎内容的模块。",
- modulesEventsLabel: "活动",
- modulesEventsDescription: "发现和管理活动的模块。",
- modulesTasksLabel: "任务",
- modulesTasksDescription: "发现和管理任务的模块。",
- modulesMarketLabel: "市场",
- modulesMarketDescription: "交换商品或服务的模块。",
- modulesShopsLabel: "商店",
- modulesShopsDescription: "管理和发现商店的模块。",
- modulesTribesLabel: "部落",
- modulesTribesDescription: "探索或创建部落(群组)的模块。",
- modulesVotationsLabel: "投票",
- modulesVotationsDescription: "发现和管理投票的模块。",
- modulesReportsLabel: "报告",
- modulesReportsDescription: "管理和追踪与问题、漏洞、滥用和内容警告相关报告的模块。",
- modulesOpinionsLabel: "观点",
- modulesOpinionsDescription: "发现和为观点投票的模块。",
- modulesTransfersLabel: "转账",
- modulesTransfersDescription: "发现和管理智能合约(转账)的模块。",
- modulesFeedLabel: "动态",
- modulesFeedDescription: "发现和分享短文(动态)的模块。",
- modulesParliamentLabel: "议会",
- modulesParliamentDescription: "选举政府和投票法律的模块。",
- modulesCourtsLabel: "法庭",
- modulesCourtsDescription: "解决冲突和发布裁决的模块。",
- modulesPixeliaLabel: "Pixelia",
- modulesPixeliaDescription: "在协作网格上绘画的模块。",
- modulesAgendaLabel: "日程",
- modulesAgendaDescription: "管理所有分配给你的项目的模块。",
- modulesAILabel: "AI",
- modulesAIDescription: "与名为 '42' 的 LLM 对话的模块。",
- modulesForumLabel: "论坛",
- modulesForumDescription: "发现和管理论坛的模块。",
- modulesJobsLabel: "工作",
- modulesJobsDescription: "发现和管理工作的模块。",
- modulesProjectsLabel: "项目",
- modulesProjectsDescription: "探索、众筹和管理项目的模块。",
- modulesBankingLabel: "银行",
- modulesBankingDescription: "确定 ECOIN 真实价值并使用公共金库分配 UBI 的模块。",
- modulesFavoritesLabel: "收藏",
- modulesFavoritesDescription: "管理你收藏内容的模块。",
- fileTooLargeTitle: "文件过大",
- fileTooLargeMessage: "文件超过了允许的最大大小(50 MB)。请选择较小的文件。",
- goBack: "返回",
- directConnect: "直接连接",
- directConnectDescription: "通过输入对方的 IP 地址、端口和公钥直接连接到节点。该节点将被添加为已关注的连接。",
- peerHost: "IP / 主机名",
- peerPort: "端口(默认:8008)",
- peerPublicKey: "公钥 (@...ed25519)",
- connectAndFollow: "连接",
- deviceSourceLabel: "设备来源",
- modulesPresetTitle: "常用配置",
- modulesPreset_minimal: "极简",
- modulesPreset_basic: "基础",
- modulesPreset_social: "社交",
- modulesPreset_economy: "经济",
- modulesPreset_full: "完整",
- statsCarbonFootprintTitle: "碳足迹",
- statsCarbonFootprintNetwork: "网络碳足迹",
- statsCarbonFootprintYours: "你的碳足迹",
- statsCarbonTombstone: "墓碑碳足迹",
- feedSuccessMsg: "动态发布成功!",
- dominantOpinionLabel: "主流观点",
- uploadMedia: "上传媒体(最大:50MB)",
- feedOpenDiscussion: "公开讨论",
- feedDetailTitle: "动态",
- feedPostComment: "发表评论",
- courtsRespondentInvalid: "必须是有效的 SSB ID (@...ed25519)",
- noComments: "还没有评论",
- mapsLabel: "地图",
- mapTitle: "地图",
- mapDescription: "在您的网络中探索和管理离线地图。",
- mapMineSectionTitle: "我的地图",
- mapCreateSectionTitle: "创建地图",
- mapUpdateSectionTitle: "更新地图",
- mapAllSectionTitle: "地图",
- mapRecentSectionTitle: "最近的地图",
- mapFavoritesSectionTitle: "收藏",
- mapFilterAll: "全部",
- mapFilterMine: "我的",
- mapFilterRecent: "最近",
- mapFilterFavorites: "收藏",
- mapUploadButton: "创建地图",
- mapCreateButton: "创建地图",
- mapUpdateButton: "更新",
- mapDeleteButton: "删除",
- mapAddFavoriteButton: "添加收藏",
- mapRemoveFavoriteButton: "取消收藏",
- mapLatLabel: "纬度",
- mapLatPlaceholder: "例如 39.9042",
- mapLngLabel: "经度",
- mapLngPlaceholder: "例如 116.4074",
- mapDescriptionLabel: "描述",
- mapDescriptionPlaceholder: "描述地图或位置...",
- mapTypeLabel: "地图类型",
- mapTypeSingle: "单一(仅初始位置)",
- mapTypeOpen: "开放(任何人可添加标记)",
- mapTypeClosed: "封闭(仅创建者可添加标记)",
- mapTagsLabel: "标签",
- mapTagsPlaceholder: "输入以逗号分隔的标签",
- mapUrlLabel: "地图链接",
- mapPickCoordLabel: "或在网格上选择位置:",
- mapMarkersLabel: "标记",
- mapMarkersTitle: "标记",
- mapMarkerDefault: "标记",
- mapMarkerLatLabel: "标记纬度",
- mapMarkerLngLabel: "标记经度",
- mapMarkerLabelField: "标记名称",
- mapMarkerLabelPlaceholder: "描述此标记...",
- markerImageLabel: "标记图片",
- mapAddMarkerTitle: "添加标记",
- mapAddMarkerButton: "添加标记",
- mapCleanMarkerButton: "Clean Marker",
- mapApplyZoom: "应用缩放",
- mapSearchPlaceholder: "搜索描述、标签、作者...",
- mapSearchButton: "搜索",
- mapUpdatedAt: "已更新",
- mapNoMatch: "没有匹配的地图。",
- noMaps: "没有可用的地图。",
- mapLocationTitle: "位置",
- mapVisitLabel: "访问地图",
- typeMap: "地图",
- typeMapMarker: "地图标记",
- modulesMapLabel: "地图",
- modulesMapDescription: "管理和分享离线地图的模块。",
- padsTitle: "协作板",
- padTitle: "协作板",
- modulesPadsLabel: "协作板",
- modulesPadsDescription: "管理协作文本编辑器的模块。",
- padFilterAll: "全部",
- padFilterMine: "我的",
- padFilterRecent: "最近",
- padFilterOpen: "开放",
- padFilterClosed: "关闭",
- padCreate: "创建协作板",
- padUpdate: "更新协作板",
- padDelete: "删除协作板",
- padTitleLabel: "标题",
- padTitlePlaceholder: "输入协作板标题...",
- padStatusLabel: "状态",
- padStatusOpen: "开放",
- padStatusInviteOnly: "仅限受邀者",
- padStatusClosed: "关闭",
- padDeadlineLabel: "截止日期",
- padTagsLabel: "标签",
- padTagsPlaceholder: "标签1, 标签2, ...",
- padMembersLabel: "成员",
- padVisitPad: "访问协作板",
- padShareUrl: "分享链接",
- padCreated: "创建时间",
- padAuthor: "作者",
- padGenerateCode: "生成邀请码",
- padInviteCodeLabel: "邀请码",
- padInviteCodePlaceholder: "输入邀请码...",
- padValidateInvite: "验证",
- padStartEditing: "开始编辑!",
- padEditorPlaceholder: "开始写作...",
- padSubmitEntry: "提交",
- padNoEntries: "暂无内容。",
- padAllSectionTitle: "全部协作板",
- padMineSectionTitle: "我的协作板",
- padRecentSectionTitle: "最近协作板",
- padOpenSectionTitle: "开放协作板",
- padClosedSectionTitle: "关闭协作板",
- padCreateSectionTitle: "创建新协作板",
- padUpdateSectionTitle: "更新协作板",
- padInviteGenerated: "邀请码已生成",
- typePad: "协作板",
- padNew: "新建",
- padAddFavorite: "添加到收藏",
- padRemoveFavorite: "从收藏中移除",
- padClose: "关闭记事本",
- padBackToEditor: "返回编辑器",
- padSearchPlaceholder: "搜索共享文本...",
- modulesChatsLabel: "聊天",
- modulesChatsDescription: "发现和管理加密聊天室的模块。",
- typeChat: "聊天",
- typeChatMessage: "聊天消息",
- chatLabel: "聊天",
- chatMessageLabel: "聊天消息",
- chatsTitle: "聊天",
- chatMineSectionTitle: "Your Chats",
- chatRecentTitle: "Recent Chats",
- chatFavoritesTitle: "收藏",
- chatOpenTitle: "Open Chats",
- chatClosedTitle: "Closed Chats",
- chatDescription: "描述",
- chatCategory: "类别",
- chatStatus: "状态",
- chatFilterAll: "全部",
- chatFilterMine: "我的",
- chatFilterRecent: "最近",
- chatFilterFavorites: "收藏",
- chatFilterOpen: "开放",
- chatFilterClosed: "已关闭",
- chatCreate: "创建聊天",
- chatUpdate: "更新聊天",
- chatDelete: "删除聊天",
- chatClose: "关闭聊天",
- chatVisitChat: "访问聊天",
- chatUntitled: "无标题聊天",
- chatNoItems: "未找到聊天。",
- chatParticipants: "参与者",
- chatStartChatting: "开始聊天!",
- chatGenerateCode: "生成代码",
- chatShareUrl: "分享链接",
- chatCreatedAt: "创建时间",
- chatSearchPlaceholder: "搜索聊天...",
- chatStatusOpen: "开放",
- chatStatusInviteOnly: "仅限邀请",
- chatStatusClosed: "已关闭",
- chatSendMessage: "发送",
- chatMessagePlaceholder: "输入您的消息...",
- chatNoMessages: "暂无消息。",
- chatLeave: "离开聊天",
- chatInviteCodeLabel: "输入邀请码",
- chatJoinByInvite: "加入",
- chatTitlePlaceholder: "聊天标题",
- chatDescriptionPlaceholder: "聊天描述",
- chatTagsPlaceholder: "标签1, 标签2",
- chatImageLabel: "选择图片文件 (.jpeg, .jpg, .png, .gif)",
- chatInviteCode: "邀请码",
- chatAuthor: "作者",
- chatCreated: "创建",
- chatAddFavorite: "添加到收藏",
- chatRemoveFavorite: "从收藏中移除",
- chatPM: "私信",
- chatStatusLabel: "状态",
- chatCategoryLabel: "类别",
- chatParticipantsLabel: "参与者",
- gamesTitle: "游戏",
- gamesDescription: "发现并玩一些游戏。",
- gamesFilterAll: "全部",
- gamesPlayButton: "开始游戏!",
- gamesBackToGames: "返回游戏",
- modulesGamesLabel: "游戏",
- modulesGamesDescription: "用于发现和玩游戏的模块。",
- gamesCocolandTitle: "Cocoland",
- gamesCocolandDesc: "一颗有眼睛的椰子跳过棕榈树,收集ECOins。",
- gamesTheFlowTitle: "ECOinflow",
- gamesTheFlowDesc: "通过验证者、商店和累积器将PUB连接到居民。抵御CBDC威胁!",
- gamesSpaceInvadersTitle: "Space Invaders",
- gamesSpaceInvadersDesc: "阻止外星人入侵!在入侵者抵达地面之前击落它们。",
- gamesArkanoidTitle: "Arkanoid",
- gamesArkanoidDesc: "用你的球拍和球打破所有砖块。经典街机挑战。",
- gamesPingPongTitle: "PingPong",
- gamesPingPongDesc: "与AI对战的经典乒乓球。先得5分者获胜。",
- gamesOutrunTitle: "Outrun",
- gamesOutrunDesc: "与时间赛跑!躲避交通障碍,在时间用完前到达终点。",
- gamesAsteroidsTitle: "Asteroids",
- gamesAsteroidsDesc: "驾驶飞船穿越小行星带。在它们撞上你之前将其摧毁。",
- gamesTikTakToeTitle: "TikTakToe",
- gamesTikTakToeDesc: "与AI对战石头、剪刀、布。三局两胜获胜。",
- gamesFlipFlopTitle: "FlipFlop",
- gamesFlipFlopDesc: "抛硬币,猜正面还是反面。你有多幸运?",
- games8BallTitle: "8Ball Pool",
- games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.",
- gamesArtilleryTitle: "Artillery",
- gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.",
- gamesLabyrinthTitle: "Labyrinth",
- gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.",
- gamesCocomanTitle: "Cocoman",
- gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Turn-based Pac-Man — every key press counts.",
- gamesTetrisTitle: "Tetris",
- gamesAudioPendulumTitle: "Audio Pendulum",
- gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.",
- gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?",
- gamesQuakeTitle: "Quake Arena",
- gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.",
- gamesFilterScoring: "SCORING",
- gamesHallOfFame: "Hall of Fame",
- gamesHallPlayer: "Player",
- gamesHallScore: "Score",
- gamesNoScores: "No scores yet.",
- calendarsTitle: "日历",
- calendarTitle: "日历",
- modulesCalendarsLabel: "日历",
- modulesCalendarsDescription: "用于发现和管理日历的模块。",
- typeCalendar: "日历",
- calendarFilterAll: "全部",
- calendarFilterMine: "我的",
- calendarFilterOpen: "开放",
- calendarFilterClosed: "关闭",
- calendarFilterRecent: "最近",
- calendarFilterFavorites: "收藏",
- calendarCreate: "创建日历",
- calendarUpdate: "更新",
- calendarDelete: "删除",
- calendarTitleLabel: "标题",
- calendarTitlePlaceholder: "日历标题...",
- calendarStatusLabel: "状态",
- calendarStatusOpen: "开放",
- calendarStatusClosed: "关闭",
- calendarDeadlineLabel: "Deadline",
- calendarTagsLabel: "标签",
- calendarTagsPlaceholder: "标签1, 标签2...",
- calendarParticipantsLabel: "参与者",
- calendarParticipantsCount: "参与者",
- calendarVisitCalendar: "访问日历",
- calendarCreated: "已创建",
- calendarAuthor: "作者",
- calendarJoin: "加入",
- calendarJoined: "已加入",
- calendarAddDate: "添加日期",
- calendarAddNote: "添加笔记",
- calendarDateLabel: "日期",
- calendarDatePlaceholder: "描述这个日期...",
- calendarNoteLabel: "笔记",
- calendarNotePlaceholder: "添加笔记...",
- calendarFirstDateLabel: "日期",
- calendarFirstNoteLabel: "备注",
- calendarIntervalLabel: "Interval",
- calendarIntervalWeekly: "Weekly",
- calendarIntervalMonthly: "Monthly",
- calendarIntervalYearly: "Yearly",
- calendarFormDescription: "描述",
- calendarNoDates: "尚未添加日期。",
- calendarNoNotes: "暂无笔记。",
- calendarsNoItems: "未找到日历。",
- calendarsDescription: "在您的网络中发现和管理日历。",
- calendarMonthPrev: "← 上一月",
- calendarMonthNext: "下一月 →",
- calendarMonthLabel: "日期",
- calendarsShareUrl: "分享链接",
- calendarAllSectionTitle: "所有日历",
- calendarRecentSectionTitle: "最近的日历",
- calendarFavoritesSectionTitle: "收藏",
- calendarMineSectionTitle: "你的日历",
- calendarOpenSectionTitle: "开放日历",
- calendarClosedSectionTitle: "关闭日历",
- calendarCreateSectionTitle: "创建新日历",
- calendarUpdateSectionTitle: "更新日历",
- calendarAddFavorite: "添加到收藏",
- calendarDeleteNote: "Delete",
- calendarRemoveFavorite: "从收藏移除",
- calendarSearchPlaceholder: "搜索日历...",
- calendarAddEntry: "添加条目",
- calendarLeave: "离开日历",
- statsCalendar: "日历",
- statsCalendarDate: "日历日期",
- statsCalendarNote: "日历笔记"
- }
- };
|