oasis_zh.js 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048
  1. const { a, em, strong } = require('../../../server/node_modules/hyperaxe');
  2. module.exports = {
  3. zh: {
  4. languageName: "中文",
  5. extended: "多元宇宙",
  6. extendedDescription: [
  7. "当你支持某人时,你可能会下载他们所支持的居民的帖子,这些帖子会显示在这里,按时间倒序排列。",
  8. ],
  9. popular: "精选",
  10. popularDescription: [
  11. "来自你网络中居民的帖子,",
  12. strong("按传播量排序"),
  13. "。选择时间段以获取列表。",
  14. ],
  15. day: "日",
  16. week: "周",
  17. month: "月",
  18. year: "年",
  19. latest: "最新",
  20. latestDescription: [
  21. strong("帖子"),
  22. " 来自你自己和你支持的居民,按时间倒序排列。",
  23. ],
  24. topics: "话题",
  25. topicsDescription: [
  26. strong("话题"),
  27. " 来自你自己和你支持的居民,按时间倒序排列。",
  28. ],
  29. summaries: "摘要",
  30. summariesDescription: [
  31. strong("有评论的话题"),
  32. " 来自你自己和你支持的居民,按时间倒序排列。",
  33. ],
  34. threads: "讨论串",
  35. threadsDescription: [
  36. strong("有评论的帖子"),
  37. " 来自你支持的居民(包括多元宇宙),按时间倒序排列。",
  38. ],
  39. profile: "头像",
  40. inhabitants: "居民",
  41. manualMode: "手动模式",
  42. mentions: "提及",
  43. mentionsDescription: [
  44. strong("@提及你的帖子"),
  45. ",按时间倒序排列。",
  46. ],
  47. nextPage: "下一页",
  48. previousPage: "上一页",
  49. noMentions: "你还没有收到@提及。",
  50. private: "收件箱",
  51. privateDescription: "查看和管理你的私信。",
  52. privateInbox: "收件箱",
  53. privateSent: "已发送",
  54. privateFrom: "发件人",
  55. privateTo: "收件人",
  56. privateDate: "日期",
  57. privateDelete: "删除",
  58. pmCreateButton: "写私信",
  59. pmReply: "回复",
  60. pmReplies: "回复",
  61. pmNew: "新消息",
  62. pmMarkRead: "标记为已读",
  63. inReplyTo: "回复",
  64. pmPreview: "预览",
  65. pmPreviewTitle: "消息预览",
  66. noPrivateMessages: "你还没有收到任何私信。",
  67. peers: "节点",
  68. privateDescription: ["私信通过",strong("你的公钥加密"),",最多可有7位收件人。"],
  69. search: "搜索",
  70. searchDescription: "描述",
  71. imageSearch: "图片搜索",
  72. searchPlaceholder: "搜索 @居民、#标签和关键词...",
  73. settings: "设置",
  74. continueReading: "继续阅读",
  75. moreComments: "更多评论",
  76. readThread: "阅读剩余讨论串",
  77. pixeliaTitle: 'Pixelia',
  78. pixeliaDescription: '在网格上绘制像素,与网络中的其他人协作创作。',
  79. coordLabel: '坐标(例如 A3)',
  80. coordPlaceholder: '输入坐标',
  81. contributorsTitle: "贡献者",
  82. pixeliaBy: "作者",
  83. colorLabel: '选择颜色',
  84. paintButton: '画!',
  85. invalidCoordinate: '坐标无效',
  86. goToMuralButton: "查看壁画",
  87. totalPixels: '总像素数',
  88. modules: "模块",
  89. modulesViewTitle: "模块",
  90. modulesViewDescription: "通过启用或禁用模块来设置你的环境。",
  91. inbox: "收件箱",
  92. multiverse: "多元宇宙",
  93. popularLabel: "精选",
  94. topicsLabel: "话题",
  95. latestLabel: "最新",
  96. summariesLabel: "摘要",
  97. threadsLabel: "讨论串",
  98. multiverseLabel: "多元宇宙",
  99. inboxLabel: "收件箱",
  100. invitesLabel: "邀请",
  101. walletLabel: "钱包",
  102. legacyLabel: "密钥",
  103. cipherLabel: "加密器",
  104. bookmarksLabel: "书签",
  105. videosLabel: "视频",
  106. torrentsLabel: "种子",
  107. docsLabel: "文档",
  108. audiosLabel: "音频",
  109. tagsLabel: "标签",
  110. imagesLabel: "图片",
  111. inhabitantsLabel: "居民",
  112. trendingLabel: "热门",
  113. eventsLabel: "活动",
  114. tasksLabel: "任务",
  115. transfersTitle: "转账",
  116. marketTitle: "市场",
  117. opinionsTitle: "观点",
  118. saveSettings: "保存配置",
  119. apply: "应用",
  120. menuPersonal: "个人",
  121. menuContent: "内容",
  122. menuGovernance: "治理",
  123. menuOffice: "办公",
  124. menuMultiverse: "多元宇宙",
  125. menuNetwork: "网络",
  126. menuCreative: "创意",
  127. menuEconomy: "经济",
  128. menuMedia: "媒体",
  129. menuTools: "工具",
  130. comment: "评论",
  131. subtopic: "子话题",
  132. json: "JSON",
  133. createdAt: "创建于",
  134. createdBy: "作者",
  135. unfollow: "取消支持",
  136. follow: "支持",
  137. block: "屏蔽",
  138. unblock: "取消屏蔽",
  139. newerPosts: "更新的帖子",
  140. olderPosts: "更早的帖子",
  141. feedRangeEmpty: "该范围内没有内容。请尝试查看",
  142. seeFullFeed: "完整动态",
  143. feedEmpty: "Oasis 网络从未见过此账户的帖子。",
  144. beginningOfFeed: "这是动态的起始位置",
  145. noNewerPosts: "尚未收到更新的帖子。",
  146. relationshipNotFollowing: "你未被支持",
  147. relationshipTheyFollow: "支持你",
  148. relationshipMutuals: "互相支持",
  149. relationshipFollowing: "你正在支持",
  150. relationshipYou: "你",
  151. relationshipBlocking: "你正在屏蔽",
  152. relationshipBlockedBy: "你被屏蔽了",
  153. relationshipMutualBlock: "互相屏蔽",
  154. relationshipNone: "你未支持",
  155. relationshipConflict: "冲突",
  156. relationshipBlockingPost: "已屏蔽的帖子",
  157. viewLikes: "查看传播",
  158. spreadedDescription: "该居民传播的帖子列表。",
  159. totalspreads: "总传播数",
  160. attachFiles: "附加文件",
  161. preview: "预览",
  162. publish: "写作",
  163. contentWarningPlaceholder: "为帖子添加主题(可选)",
  164. privateWarningPlaceholder: "添加居民以发送私密帖子(可选)",
  165. publishWarningPlaceholder: "...",
  166. publishCustomDescription: [
  167. "提醒:由于区块链技术,帖子一旦发布就无法编辑或删除。",
  168. ],
  169. commentWarning: [
  170. "提醒:由于区块链技术,帖子一旦发布就无法编辑或删除。",
  171. ],
  172. commentPublic: "公开",
  173. commentPrivate: "私密",
  174. commentLabel: ({ publicOrPrivate, markdownUrl }) => [
  175. ],
  176. publishLabel: ({ markdownUrl, linkTarget }) => [
  177. "提醒:由于区块链技术,帖子一旦发布就无法编辑或删除。",
  178. ],
  179. replyLabel: ({ markdownUrl }) => [
  180. "提醒:由于区块链技术,帖子一旦发布就无法编辑或删除。",
  181. ],
  182. publishCustomInfo: ({ href }) => [
  183. "如果你有经验,也可以",
  184. a({ href }, "撰写高级帖子"),
  185. "。",
  186. ],
  187. publishBasicInfo: ({ href }) => [
  188. "如果你没有经验,应该",
  189. a({ href }, "撰写帖子"),
  190. "。",
  191. ],
  192. publishCustom: "撰写高级帖子",
  193. subtopicLabel: "创建此帖子的子话题",
  194. messagePreview: "帖子预览",
  195. mentionsMatching: "匹配的提及",
  196. mentionsName: "名称",
  197. mentionsRelationship: "关系",
  198. updateit: "获取更新!",
  199. updateBannerText: "Oasis 有新版本可用。",
  200. updateBannerAction: "立即更新 →",
  201. info: "信息",
  202. settingsIntro: ({ version }) => [
  203. `[SNH] ꖒ OASIS [ v.${version} ]`,
  204. ],
  205. timeAgo: "前",
  206. sendTime: "大约 ",
  207. theme: "主题",
  208. legacy: "密钥",
  209. legacyTitle: "密钥",
  210. legacyDescription: "快速安全地管理你的密钥(私钥)。",
  211. legacyExportButton: "导出",
  212. legacyImportButton: "导入",
  213. ssbLogStream: "区块链",
  214. ssbLogStreamDescription: "配置区块链流的消息限制。",
  215. saveSettings: "保存设置",
  216. exportTitle: "导出数据",
  217. exportDescription: "设置密码(至少32个字符)以加密你的密钥",
  218. exportDataTitle: "备份",
  219. exportDataDescription: "下载你的数据(不包含私钥!)",
  220. exportDataButton: "下载数据库",
  221. pubWallet: "PUB 钱包",
  222. pubWalletDescription: "设置 PUB 钱包 URL。这将用于 PUB 交易(包括 UBI)。",
  223. pubWalletConfiguration: "保存配置",
  224. importTitle: "导入数据",
  225. importDescription: "导入你的加密私钥以启用你的头像",
  226. importAttach: "附加加密文件 (.enc)",
  227. passwordLengthInfo: "密码至少需要32个字符。",
  228. passwordImport: "输入密码以解密将保存在系统主目录的数据(文件名:secret)",
  229. randomPassword: "随机密码",
  230. exportPasswordPlaceholder: "使用小写字母、大写字母、数字和符号",
  231. fileInfo: "你的加密私钥将保存在系统主目录(文件名:oasis.enc)",
  232. themeIntro:
  233. "选择一个主题。",
  234. setTheme: "设置主题",
  235. language: "语言",
  236. languageDescription:
  237. "如果你想使用其他语言,请在此选择。",
  238. setLanguage: "设置语言",
  239. status: "状态",
  240. peerConnections: "节点",
  241. peerConnectionsIntro: "管理与其他节点的所有连接。",
  242. online: "在线",
  243. offline: "离线",
  244. discovered: '已发现',
  245. unknown: '未知',
  246. pub: 'PUB',
  247. supported: "已支持",
  248. recommended: "推荐",
  249. blocked: "已屏蔽",
  250. noConnections: "没有已连接的节点。",
  251. noDiscovered: "没有已发现的节点。",
  252. noSupportedConnections: "没有已支持的节点。",
  253. noBlockedConnections: "没有已屏蔽的节点。",
  254. noRecommendedConnections: "没有推荐的节点。",
  255. connectionActionIntro:
  256. "",
  257. startNetworking: "启动网络",
  258. stopNetworking: "停止网络",
  259. restartNetworking: "重启网络",
  260. sync: "同步网络",
  261. indexes: "索引",
  262. indexesDescription:
  263. "重建索引是安全的,可能修复某些类型的错误。",
  264. homePageTitle: "主页",
  265. homePageDescription: "选择你想要作为主页的模块。",
  266. saveHomePage: "设置主页",
  267. invites: "邀请",
  268. invitesTitle: "邀请",
  269. invitesInvites: "邀请",
  270. invitesDescription: "管理和应用你网络中的邀请码。",
  271. invitesTribesTitle: "部落",
  272. invitesTribeInviteCodePlaceholder: "输入部落邀请码",
  273. invitesTribeJoinButton: "加入部落",
  274. invitesPubsTitle: "PUBs",
  275. invitesPubInviteCodePlaceholder: "输入 PUB 邀请码",
  276. invitesAcceptInvite: "加入 PUB",
  277. invitesAcceptedInvites: "已联邦网络",
  278. invitesNoInvites: "尚未接受任何邀请。",
  279. invitesUnfollow: "取消关注",
  280. invitesFollow: "关注",
  281. invitesUnfollowedInvites: "未联邦网络",
  282. invitesNoFederatedPubs: "没有已联邦网络。",
  283. invitesNoUnfollowed: "没有未联邦网络。",
  284. invitesUnreachablePubs: "不可达网络",
  285. invitesNoUnreachablePubs: "没有不可达网络。",
  286. currentlyUnreachable: "错误!",
  287. errorDetails: "错误详情",
  288. genericError: "发生了一个错误。",
  289. panicMode: "紧急模式!",
  290. encryptData: "设置密码(至少32个字符)以加密你的区块链",
  291. decryptData: "输入密码以解密你的区块链",
  292. panicModeDescription: "加密/解密或删除你的区块链",
  293. removeDataDescription: "警告:此操作不可撤销。",
  294. encryptPanicButton: "加密区块链",
  295. decryptPanicButton: "解密区块链",
  296. removePanicButton: "删除所有数据!",
  297. searchTitle: "搜索",
  298. searchDescriptionLabel: "在你的网络中搜索内容。",
  299. searchLanguagesLabel: "语言",
  300. searchSkillsLabel: "技能",
  301. searchPlaceholder:"搜索内容...",
  302. searchSubmit:"搜索!",
  303. tribeLocationLabel:"位置",
  304. tribeModeLabel:"邀请模式",
  305. tribeMembersCount:"成员数",
  306. searchDateLabel:"日期",
  307. searchLocationLabel:"位置",
  308. searchPriceLabel:"价格",
  309. searchUrlLabel:"URL",
  310. searchCategoryLabel:"类别",
  311. searchStartLabel:"开始时间",
  312. searchEndLabel:"结束时间",
  313. searchPriorityLabel:"优先级",
  314. searchStatusLabel:"状态",
  315. statusLabel:"状态",
  316. totalVotesLabel:"总票数",
  317. votesLabel:"投票",
  318. noResultsFound:"未找到结果。",
  319. author:"作者",
  320. createdAtLabel:"创建于",
  321. hashtagDescription:"浏览与此标签相关的内容",
  322. tribeDescriptionLabel:"描述",
  323. votesOption:"投票选项",
  324. voteYesLabel:"赞成",
  325. voteNoLabel:"反对",
  326. allTypesLabel: "无限制",
  327. ABSTENTIONLabel:"弃权",
  328. YESLabel:"赞成",
  329. NOLabel:"反对",
  330. FOLLOW_MAJORITYLabel: "跟随多数",
  331. CONFUSEDLabel: "困惑",
  332. NOT_INTERESTEDLabel: "不感兴趣",
  333. voteOptionYes:"赞成",
  334. voteOptionNo:"反对",
  335. voteOptionAbstention:"弃权",
  336. StatusLabel:"状态",
  337. votesOptionYesLabel:"赞成",
  338. votesOptionNoLabel:"反对",
  339. votesOptionAbstentionLabel:"弃权",
  340. votesQuestionLabel:"问题",
  341. votesCreatedByLabel:"创建者",
  342. voteStatusOpen:"进行中",
  343. voteStatusClosed:"已关闭",
  344. imageSearchLabel: "输入关键词以搜索带有相应标签的图片。",
  345. commentDescription: ({ parentUrl }) => [
  346. " 评论了 ",
  347. a({ href: parentUrl }, " 讨论串"),
  348. ],
  349. commentTitle: ({ authorName }) => [`对 @${authorName} 帖子的评论`],
  350. subtopicDescription: ({ parentUrl }) => [
  351. " 从 ",
  352. a({ href: parentUrl }, " 一篇帖子"),
  353. " 创建了子话题",
  354. ],
  355. subtopicTitle: ({ authorName }) => [`@${authorName} 帖子的子话题`],
  356. mysteryDescription: "发布了一篇神秘的帖子",
  357. oasisDescription: "OASIS 项目网络",
  358. searchSubmit: "搜索...",
  359. hashtagDescription: "带有此标签的帖子。",
  360. postLabel: "帖子",
  361. aboutLabel: "居民",
  362. feedLabel: "动态",
  363. votesLabel: "投票",
  364. reportLabel: "报告",
  365. imageLabel: "图片",
  366. videoLabel: "视频",
  367. audioLabel: "音频",
  368. documentLabel: "文档",
  369. pdfFallbackLabel: "PDF 文档",
  370. eventLabel: "活动",
  371. taskLabel: "任务",
  372. transferLabel: "转账",
  373. curriculumLabel: "简历",
  374. bookmarkLabel: "书签",
  375. tribeLabel: "部落",
  376. marketLabel: "市场",
  377. shopLabel: "SHOPS",
  378. shopProductLabel: "SHOP PRODUCTS",
  379. mapLabel: "MAPS",
  380. jobLabel: "JOBS",
  381. forumLabel: "FORUMS",
  382. projectLabel: "PROJECTS",
  383. bankWalletLabel: "钱包",
  384. bankClaimLabel: "UBI CLAIMS",
  385. voteLabel: "VOTES",
  386. contactLabel: "CONTACTS",
  387. pubLabel: "PUBS",
  388. cvLabel: "简历",
  389. submit: "提交",
  390. subjectLabel: "主题",
  391. editProfile: "编辑头像",
  392. editProfileDescription:
  393. "",
  394. profileName: "名称",
  395. profileImage: "头像图片",
  396. profileDescription: "描述",
  397. hashtagDescription:
  398. "来自你网络中引用此 #标签 的居民的帖子,按时间倒序排列。",
  399. rebuildName: "重建数据库",
  400. wallet: "钱包",
  401. walletAddress: "地址",
  402. walletAmount: "金额",
  403. walletAddressLine: ({ address }) => `地址:${address}`,
  404. walletAmountLine: ({ amount }) => `金额:${amount} ECO`,
  405. walletBack: "返回",
  406. walletBalanceTitle: "余额",
  407. walletWalletSendTitle: "发送",
  408. walletReceiveTitle: "接收",
  409. walletHistoryTitle: "历史",
  410. walletBalanceLine: ({ balance }) => `${balance} ECO`,
  411. walletCnfrs: "确认数",
  412. walletConfirm: "确认",
  413. walletDescription: "管理你的数字资产,包括发送和接收 ECOin、查看余额和访问交易历史。",
  414. walletDate: "日期",
  415. walletFee: "手续费(手续费越高,交易处理越快)",
  416. walletFeeLine: ({ fee }) => `手续费:ECO ${fee}`,
  417. walletHistory: "历史",
  418. walletReceive: "接收",
  419. walletReset: "重置",
  420. walletSend: "发送",
  421. walletStatus: "状态",
  422. walletDisconnected: [
  423. "ECOin ",
  424. strong("钱包已断开连接"),
  425. "。请检查 ",
  426. a({ href: '/settings' }, "你的设置"),
  427. " 或连接状态。",
  428. ],
  429. walletSentToLine: ({ destination, amount }) => `已发送 ECO ${amount} 至 ${destination}`,
  430. walletSettingsTitle: "钱包",
  431. walletSettingsDescription: "将 Oasis 与你的 ECOin 钱包集成。",
  432. walletSettingsDocLink: "ECOin 安装指南",
  433. walletStatusMessages: {
  434. invalid_amount: "无效金额",
  435. invalid_dest: "无效目标地址",
  436. invalid_fee: "无效手续费",
  437. validation_errors: "验证错误",
  438. send_tx_success: "交易成功",
  439. },
  440. walletTitle: "钱包",
  441. walletTotalCostLine: ({ totalCost }) => `总费用:ECO ${totalCost}`,
  442. walletTransactionId: "交易 ID",
  443. walletTxId: "交易ID",
  444. walletType: "类型",
  445. walletUser: "用户名",
  446. walletPass: "密码",
  447. walletConfiguration: "设置钱包",
  448. cipher: "加密器",
  449. cipherTitle: "加密器",
  450. cipherDescription: "使用共享密码对文本进行对称加密和解密。",
  451. randomPassword: "随机密码",
  452. cipherEncryptTitle: "加密文本",
  453. cipherEncryptDescription: "输入要加密的文本",
  454. cipherTextLabel: "要加密的文本",
  455. cipherTextPlaceholder: "输入要加密的文本...",
  456. cipherPasswordLabel: "设置密码(至少32个字符)以加密你的文本",
  457. cipherPasswordDecryptLabel: "设置密码(至少32个字符)以解密你的文本",
  458. cipherPasswordPlaceholder: "输入密码...",
  459. cipherEncryptButton: "加密",
  460. cipherDecryptTitle: "解密文本",
  461. cipherDecryptDescription: "输入要解密的文本",
  462. cipherEncryptedMessageLabel: "加密文本",
  463. cipherDecryptedMessageLabel: "解密文本",
  464. cipherPasswordUsedLabel: "加密所用密码(请妥善保管!)",
  465. cipherEncryptedTextPlaceholder: "输入加密文本...",
  466. cipherIvLabel: "IV",
  467. cipherIvPlaceholder: "输入初始化向量...",
  468. cipherDecryptButton: "解密",
  469. password: "密码",
  470. text: "文本",
  471. encryptedText: "加密文本",
  472. iv: "初始化向量 (IV)",
  473. encryptTitle: "加密你的文本",
  474. encryptDescription: "输入要加密的文本并提供密码。",
  475. encryptButton: "加密",
  476. decryptTitle: "解密你的文本",
  477. decryptDescription: "输入加密文本并提供相同的加密密码。",
  478. decryptButton: "解密",
  479. passwordLengthError: "密码至少需要32个字符。",
  480. missingFieldsError: "未提供文本、密码或 IV。",
  481. encryptionError: "加密文本时出错。",
  482. decryptionError: "解密文本时出错。",
  483. bookmarkTitle: "书签",
  484. bookmarkDescription: "发现和管理你网络中的书签。",
  485. bookmarkAllSectionTitle: "书签",
  486. bookmarkMineSectionTitle: "你的书签",
  487. bookmarkRecentSectionTitle: "最近的书签",
  488. bookmarkTopSectionTitle: "热门书签",
  489. bookmarkFavoritesSectionTitle: "收藏",
  490. bookmarkCreateSectionTitle: "创建书签",
  491. bookmarkUpdateSectionTitle: "更新书签",
  492. bookmarkFilterAll: "全部",
  493. bookmarkFilterMine: "我的",
  494. bookmarkFilterTop: "热门",
  495. bookmarkFilterFavorites: "收藏",
  496. bookmarkFilterRecent: "最近",
  497. bookmarkCreateButton: "创建书签",
  498. bookmarkUpdateButton: "更新",
  499. bookmarkDeleteButton: "删除",
  500. bookmarkAddFavoriteButton: "添加收藏",
  501. bookmarkRemoveFavoriteButton: "取消收藏",
  502. bookmarkUrlLabel: "链接",
  503. bookmarkUrlPlaceholder: "https://example.com",
  504. bookmarkDescriptionLabel: "描述",
  505. bookmarkDescriptionPlaceholder: "可选",
  506. bookmarkTagsLabel: "标签",
  507. bookmarkTagsPlaceholder: "输入标签,用逗号分隔",
  508. bookmarkCategoryLabel: "类别",
  509. bookmarkCategoryPlaceholder: "可选",
  510. bookmarkLastVisitLabel: "上次访问",
  511. bookmarkSearchPlaceholder: "搜索 URL、标签、类别、作者...",
  512. bookmarkSortRecent: "最近",
  513. bookmarkSortOldest: "最早",
  514. bookmarkSortTop: "最多投票",
  515. bookmarkSearchButton: "搜索",
  516. bookmarkUpdatedAt: "已更新",
  517. bookmarkNoMatch: "没有匹配的书签。",
  518. noBookmarks: "没有可用的书签。",
  519. noUrl: "无链接",
  520. noCategory: "无类别",
  521. noLastVisit: "无访问记录",
  522. videoTitle: "视频",
  523. videoDescription: "探索和管理你网络中的视频内容。",
  524. videoPluginTitle: "标题",
  525. videoPluginDescription: "描述",
  526. videoMineSectionTitle: "你的视频",
  527. videoCreateSectionTitle: "上传视频",
  528. videoUpdateSectionTitle: "更新视频",
  529. videoAllSectionTitle: "视频",
  530. videoRecentSectionTitle: "最近的视频",
  531. videoTopSectionTitle: "热门视频",
  532. videoFavoritesSectionTitle: "收藏",
  533. videoFilterAll: "全部",
  534. videoFilterMine: "我的",
  535. videoFilterRecent: "最近",
  536. videoFilterTop: "热门",
  537. videoFilterFavorites: "收藏",
  538. videoCreateButton: "上传视频",
  539. videoUpdateButton: "更新",
  540. videoDeleteButton: "删除",
  541. videoAddFavoriteButton: "添加收藏",
  542. videoRemoveFavoriteButton: "取消收藏",
  543. videoFileLabel: "选择视频文件 (.mp4, .webm, .ogv, .mov)",
  544. videoTagsLabel: "标签",
  545. videoTagsPlaceholder: "输入标签,用逗号分隔",
  546. videoTitleLabel: "标题",
  547. videoTitlePlaceholder: "可选",
  548. videoDescriptionLabel: "描述",
  549. videoDescriptionPlaceholder: "可选",
  550. videoNoFile: "未提供视频文件",
  551. noVideos: "没有可用的视频。",
  552. videoSearchPlaceholder: "搜索标题、标签、作者...",
  553. videoSortRecent: "最近",
  554. videoSortOldest: "最早",
  555. videoSortTop: "最多投票",
  556. videoSearchButton: "搜索",
  557. videoMessageAuthorButton: "私信",
  558. videoUpdatedAt: "已更新",
  559. videoNoMatch: "没有匹配的视频。",
  560. documentTitle: "文档",
  561. documentDescription: "发现和管理你网络中的文档。",
  562. documentAllSectionTitle: "文档",
  563. documentMineSectionTitle: "你的文档",
  564. documentRecentSectionTitle: "最近的文档",
  565. documentTopSectionTitle: "热门文档",
  566. documentFavoritesSectionTitle: "收藏",
  567. documentCreateSectionTitle: "上传文档",
  568. documentUpdateSectionTitle: "编辑文档",
  569. documentFilterAll: "全部",
  570. documentFilterMine: "我的",
  571. documentFilterRecent: "最近",
  572. documentFilterTop: "热门",
  573. documentFilterFavorites: "收藏",
  574. documentCreateButton: "上传文档",
  575. documentUpdateButton: "更新",
  576. documentDeleteButton: "删除",
  577. documentAddFavoriteButton: "添加收藏",
  578. documentRemoveFavoriteButton: "取消收藏",
  579. documentMessageAuthorButton: "私信",
  580. documentFileLabel: "上传文档 (.pdf)",
  581. documentTagsLabel: "标签",
  582. documentTagsPlaceholder: "输入标签,用逗号分隔",
  583. documentTitleLabel: "标题",
  584. documentTitlePlaceholder: "可选",
  585. documentDescriptionLabel: "描述",
  586. documentDescriptionPlaceholder: "可选",
  587. documentNoFile: "无文件。",
  588. noDocuments: "没有可用的文档。",
  589. documentSearchPlaceholder: "搜索标题、标签、描述、作者...",
  590. documentSortRecent: "最近",
  591. documentSortOldest: "最早",
  592. documentSortTop: "最多投票",
  593. documentSearchButton: "搜索",
  594. documentNoMatch: "没有匹配的文档。",
  595. documentUpdatedAt: "已更新",
  596. audioTitle: "音频",
  597. audioDescription: "探索和管理你网络中的音频内容。",
  598. audioPluginTitle: "标题",
  599. audioPluginDescription: "描述",
  600. audioMineSectionTitle: "你的音频",
  601. audioCreateSectionTitle: "上传音频",
  602. audioUpdateSectionTitle: "更新音频",
  603. audioAllSectionTitle: "音频",
  604. audioRecentSectionTitle: "最近的音频",
  605. audioTopSectionTitle: "热门音频",
  606. audioFilterAll: "全部",
  607. audioFilterMine: "我的",
  608. audioFilterRecent: "最近",
  609. audioFilterTop: "热门",
  610. audioCreateButton: "上传音频",
  611. audioUpdateButton: "更新",
  612. audioDeleteButton: "删除",
  613. audioAddFavoriteButton: "添加收藏",
  614. audioRemoveFavoriteButton: "取消收藏",
  615. audioFileLabel: "选择音频文件 (.mp3, .wav, .ogg)",
  616. audioTagsLabel: "标签",
  617. audioTagsPlaceholder: "输入标签,用逗号分隔",
  618. audioTitleLabel: "标题",
  619. audioTitlePlaceholder: "可选",
  620. audioDescriptionLabel: "描述",
  621. audioDescriptionPlaceholder: "可选",
  622. audioNoFile: "未提供音频文件",
  623. noAudios: "没有可用的音频。",
  624. audioSearchPlaceholder: "搜索标题、标签、作者...",
  625. audioSortRecent: "最近",
  626. audioSortOldest: "最早",
  627. audioSortTop: "最多投票",
  628. audioSearchButton: "搜索",
  629. audioMessageAuthorButton: "私信",
  630. audioUpdatedAt: "已更新",
  631. audioNoMatch: "没有匹配的音频。",
  632. audioFavoritesSectionTitle: "收藏",
  633. audioFilterFavorites: "收藏",
  634. favoritesTitle: "收藏",
  635. favoritesDescription: "所有你收藏的媒体集中在一处。",
  636. favoritesFilterAll: "全部",
  637. favoritesFilterRecent: "最近",
  638. favoritesFilterAudios: "音频",
  639. favoritesFilterBookmarks: "书签",
  640. favoritesFilterDocuments: "文档",
  641. favoritesFilterImages: "图片",
  642. favoritesFilterMaps: "地图",
  643. favoritesFilterPads: "记事本",
  644. favoritesFilterChats: "聊天",
  645. favoritesFilterCalendars: "日历",
  646. favoritesFilterVideos: "视频",
  647. favoritesRemoveButton: "取消收藏",
  648. favoritesNoItems: "还没有收藏。",
  649. yourContacts: "你的联系人",
  650. allInhabitants: "居民",
  651. allCVs: "所有简历",
  652. discoverPeople: "发现你网络中的居民。",
  653. allInhabitantsButton: "全部",
  654. contactsButton: "支持",
  655. CVsButton: "简历",
  656. matchSkills: "匹配技能",
  657. matchSkillsButton: "匹配技能",
  658. suggestedButton: "推荐",
  659. searchInhabitantsPlaceholder: "按名称筛选居民...",
  660. filterLocation: "按位置筛选居民...",
  661. filterLanguage: "按语言筛选居民...",
  662. filterSkills: "按技能筛选居民...",
  663. applyFilters: "应用筛选",
  664. locationLabel: "位置",
  665. languagesLabel: "语言",
  666. skillsLabel: "技能",
  667. commonSkills: "共同技能",
  668. mutualFollowers: "共同关注者",
  669. latestInteractions: "最近互动",
  670. viewAvatar: "查看头像",
  671. viewCV: "查看简历",
  672. suggestedSectionTitle: "推荐",
  673. topkarmaSectionTitle: "最高因缘值",
  674. topactivitySectionTitle: "最高活跃度",
  675. blockedSectionTitle: "已屏蔽",
  676. gallerySectionTitle: "画廊",
  677. blockedButton: "已屏蔽",
  678. blockedLabel: "已屏蔽用户",
  679. inhabitantviewDetails: "查看详情",
  680. viewDetails: "查看详情",
  681. keepReading: "继续阅读...",
  682. oasisId: "ID",
  683. noInhabitantsFound: "尚未找到居民。",
  684. inhabitantActivityLevel: "活跃等级",
  685. deviceLabel: "设备",
  686. parliamentTitle: "议会",
  687. parliamentDescription: "探索政府形式和集体管理法律。",
  688. parliamentFilterGovernment: "政府",
  689. parliamentFilterCandidatures: "候选",
  690. parliamentFilterProposals: "提案",
  691. parliamentFilterLaws: "法律",
  692. parliamentFilterHistorical: "历史",
  693. parliamentFilterLeaders: "领袖",
  694. parliamentFilterRules: "规则",
  695. parliamentGovernmentCard: "现任政府",
  696. parliamentGovMethod: "政府方式",
  697. parliamentActorInPowerInhabitant: '执政居民',
  698. parliamentActorInPowerTribe: '执政部落',
  699. parliamentHistoricalGovernmentsTitle: '政府',
  700. parliamentHistoricalElectionsTitle: '选举周期',
  701. parliamentHistoricalLawsTitle: '历史',
  702. parliamentHistoricalLeadersTitle: '领袖',
  703. parliamentThCycles: '周期',
  704. parliamentThTimesInPower: '执政',
  705. parliamentThTotalCandidatures: '候选',
  706. parliamentThProposed: '提议的法律',
  707. parliamentThApproved: '通过的法律',
  708. parliamentThDeclined: '否决的法律',
  709. parliamentThDiscarded: '废弃的法律',
  710. parliamentVotesReceived: "获得票数",
  711. parliamentMembers: "成员",
  712. parliamentLegSince: "周期起始",
  713. parliamentLegEnd: "周期结束",
  714. parliamentPoliciesProposal: "法律提案",
  715. parliamentPoliciesApproved: "通过的法律",
  716. parliamentPoliciesDeclined: "否决的法律",
  717. parliamentPoliciesDiscarded: "废弃的法律",
  718. parliamentEfficiency: "% 效率",
  719. parliamentFilterRevocations: '撤销',
  720. parliamentRevocationFormTitle: '撤销法律',
  721. parliamentRevocationLaw: '法律',
  722. parliamentRevocationTitle: '标题',
  723. parliamentRevocationReasons: '理由',
  724. parliamentRevocationPublish: '发布撤销',
  725. parliamentCurrentRevocationsTitle: '当前撤销',
  726. parliamentFutureRevocationsTitle: '未来撤销',
  727. parliamentPoliciesRevocated: '已撤销的法律',
  728. parliamentPoliciesTitle: '历史',
  729. parliamentLawsTitle: '已通过的法律',
  730. parliamentRulesRevocations: '任何已通过的法律都可以使用当前政府执政方式进行撤销。',
  731. parliamentNoStableGov: "尚未选择政府。",
  732. parliamentNoGovernments: "还没有政府。",
  733. parliamentCandidatureFormTitle: "提议候选",
  734. parliamentCandidatureId: "候选",
  735. parliamentCandidatureIdPh: "Oasis ID (@...) 或部落名称",
  736. parliamentCandidatureSlogan: "口号(最多140字)",
  737. parliamentCandidatureSloganPh: "一个简短的口号",
  738. parliamentCandidatureMethod: "方式",
  739. parliamentCandidatureProposeBtn: "发布候选",
  740. parliamentThType: "类型",
  741. parliamentThId: "ID",
  742. parliamentThDate: "提议日期",
  743. parliamentThSlogan: "口号",
  744. parliamentThMethod: "方式",
  745. parliamentThKarma: "因缘值",
  746. parliamentThSince: "注册时间",
  747. parliamentThVotes: "获得票数",
  748. parliamentThVoteAction: "投票",
  749. parliamentTypeUser: "居民",
  750. parliamentTypeTribe: "部落",
  751. parliamentVoteBtn: "投票",
  752. parliamentProposalFormTitle: "提议法律",
  753. parliamentProposalTitle: "标题",
  754. parliamentProposalDescription: "描述(不超过1000字)",
  755. parliamentProposalPublish: "发布提案",
  756. parliamentOpenVote: "公开投票",
  757. parliamentFinalize: "结束",
  758. parliamentDeadline: "截止日期",
  759. parliamentStatus: "状态",
  760. parliamentNoProposals: "还没有法律提案。",
  761. parliamentNoLaws: "还没有已通过的法律。",
  762. parliamentLawMethod: "方式",
  763. parliamentLawProposer: "提议者",
  764. parliamentLawVotes: "赞成/总计",
  765. parliamentLawEnacted: "生效于",
  766. parliamentMethodDEMOCRACY: "民主",
  767. parliamentMethodMAJORITY: "多数(80%)",
  768. parliamentMethodMINORITY: "少数(20%)",
  769. parliamentMethodDICTATORSHIP: "独裁",
  770. parliamentMethodKARMATOCRACY: "Karma 制",
  771. parliamentMethodANARCHY: "无政府",
  772. parliamentThId: "ID",
  773. parliamentThProposalDate: "提议日期",
  774. parliamentThMethod: "方式",
  775. parliamentThKarma: "Karma",
  776. parliamentThSupports: "支持",
  777. parliamentThVote: "投票",
  778. parliamentCurrentProposalsTitle: "当前提案",
  779. parliamentVotesSlashTotal: "票数/总计",
  780. parliamentVotesNeeded: "所需票数",
  781. parliamentFutureLawsTitle: "未来法律",
  782. parliamentNoFutureLaws: "还没有未来法律。",
  783. parliamentVoteAction: "投票",
  784. parliamentLeadersTitle: "领袖",
  785. parliamentThLeader: "头像",
  786. parliamentPopulation: "人口",
  787. parliamentThType: "类型",
  788. parliamentThInPower: "执政中",
  789. parliamentThPresented: "候选",
  790. parliamentNoLeaders: "还没有领袖。",
  791. typeParliament: "议会",
  792. typeParliamentCandidature: "议会 · 候选",
  793. typeParliamentTerm: "议会 · 任期",
  794. typeParliamentProposal: "议会 · 提案",
  795. typeParliamentLaw: "议会 · 新法律",
  796. typeCourts: "法庭",
  797. parliamentLawQuestion: "问题",
  798. parliamentStatus: "状态",
  799. parliamentCandidaturesListTitle: "候选列表",
  800. parliamentElectionsEnd: "选举结束",
  801. parliamentTimeRemaining: "剩余时间",
  802. parliamentCurrentLeader: "领先候选",
  803. parliamentNoLeader: "尚无领先候选。",
  804. parliamentElectionsStatusTitle: "下届政府",
  805. parliamentElectionsStart: "选举开始",
  806. parliamentProposalDeadlineLabel: "截止日期",
  807. parliamentProposalTimeLeft: "剩余时间",
  808. parliamentProposalOnTrack: "有望通过",
  809. parliamentProposalOffTrack: "支持不足",
  810. parliamentRulesTitle: "议会运作方式",
  811. parliamentRulesIntro: "选举每2个月进行一次;候选是持续的,在政府选定后重置。",
  812. parliamentRulesCandidates: "任何居民都可以提名自己、其他居民或任何部落。每位居民每个周期最多可提出3项候选;同一周期内的重复候选将被拒绝。",
  813. parliamentRulesElection: "获胜者是在结算时获得最多选票的候选。",
  814. parliamentRulesTies: "平局规则:最高居民 Karma;如果仍然平局,最早注册的;如果仍然平局,最早提出的;然后按 ID 字典序。",
  815. parliamentRulesFallback: "如果没有人投票,最后提出的候选获胜。如果没有候选,将随机选择一个部落。",
  816. parliamentRulesTerm: "政府标签显示当前政府和统计数据。",
  817. parliamentRulesMethods: "形式:无政府(简单多数)、民主(50%+1)、多数(80%)、少数(20%)、Karma 制(最高 Karma 提案)、独裁(即时通过)。",
  818. parliamentRulesAnarchy: "无政府是默认模式:如果在结算时没有候选被选出,宣布无政府状态。在无政府状态下,任何居民都可以提议法律。",
  819. parliamentRulesProposals: "如果你是执政居民或执政部落的成员,你可以发布法律提案。非独裁方式会创建公开投票。",
  820. parliamentRulesLimit: "每位居民每个周期最多可发布3项法律提案。",
  821. parliamentRulesLaws: "当提案达到其门槛时,它成为法律并出现在法律标签中,附有生效日期。",
  822. parliamentRulesHistorical: "在历史标签中,你可以看到已发生的每个政府周期及其管理数据。",
  823. parliamentRulesLeaders: "在领袖标签中,你可以看到曾经执政(或作为候选人)的居民/部落排名,按效率排序。",
  824. parliamentProposalVoteStatusLabel: "投票状态",
  825. parliamentProposalOnTrackYes: "已达门槛",
  826. parliamentProposalOnTrackNo: "低于门槛",
  827. courtsTitle: "法庭",
  828. courtsDescription: "探索冲突解决和集体司法管理形式。",
  829. courtsFilterCases: "案件",
  830. courtsFilterMyCases: "我的",
  831. courtsFilterJudges: "法官",
  832. courtsFilterHistory: "历史",
  833. courtsFilterRules: "规则",
  834. courtsFilterOpenCase: "开立案件",
  835. courtsCaseFormTitle: "开立案件",
  836. courtsCaseTitle: "标题",
  837. courtsCaseRespondent: "被告/答辩人",
  838. courtsCaseRespondentPh: "Oasis ID (@...) 或部落名称",
  839. courtsCaseMediatorsAccuser: "调解员(原告方)",
  840. courtsCaseMediatorsPh: "Oasis ID,用逗号分隔",
  841. courtsCaseMethod: "解决方式",
  842. courtsCaseDescription: "描述(最多1000字)",
  843. courtsCaseEvidenceTitle: "案件证据",
  844. courtsCaseEvidenceHelp: "附加图片、音频、文档(PDF)或视频以支持你的案件。",
  845. courtsCaseSubmit: "提交案件",
  846. courtsNominateJudge: "提名法官",
  847. courtsJudgeId: "法官",
  848. courtsJudgeIdPh: "Oasis ID (@...) 或居民名称",
  849. courtsNominateBtn: "提名",
  850. courtsAddEvidence: "添加证据",
  851. courtsEvidenceText: "文本",
  852. courtsEvidenceLink: "链接",
  853. courtsEvidenceLinkPh: "https://…",
  854. courtsEvidenceSubmit: "附加",
  855. courtsAnswerTitle: "回应诉求",
  856. courtsAnswerText: "答辩摘要",
  857. courtsAnswerSubmit: "发送回应",
  858. courtsStanceDENY: "否认",
  859. courtsStanceADMIT: "承认",
  860. courtsStancePARTIAL: "部分承认",
  861. courtsVerdictTitle: "发布裁决",
  862. courtsVerdictResult: "结果",
  863. courtsVerdictOrders: "命令",
  864. courtsVerdictOrdersPh: "措施、期限、修复步骤...",
  865. courtsIssueVerdict: "发布裁决",
  866. courtsMediationPropose: "提议和解",
  867. courtsSettlementText: "条款",
  868. courtsSettlementProposeBtn: "提议",
  869. courtsNominationsTitle: "司法提名",
  870. courtsThJudge: "法官",
  871. courtsThSupports: "支持",
  872. courtsThDate: "日期",
  873. courtsThVote: "投票",
  874. courtsNoNominations: "还没有提名。",
  875. courtsAccuser: "原告",
  876. courtsRespondent: "被告",
  877. courtsThStatus: "状态",
  878. courtsThAnswerBy: "答辩人",
  879. courtsThEvidenceBy: "举证人",
  880. courtsThDecisionBy: "裁决者",
  881. courtsThCase: "案件",
  882. courtsThCreatedAt: "开始日期",
  883. courtsThActions: "操作",
  884. courtsCaseMediatorsRespondentTitle: "添加辩护调解员",
  885. courtsCaseMediatorsRespondent: "调解员(辩护方)",
  886. courtsMediatorsAccuserLabel: "调解员(原告方)",
  887. courtsMediatorsRespondentLabel: "调解员(辩护方)",
  888. courtsMediatorsSubmit: "保存调解员",
  889. courtsVotesNeeded: "所需票数",
  890. courtsVotesSlashTotal: "赞成 / 总计",
  891. courtsOpenVote: "公开投票",
  892. courtsPublicPrefLabel: "解决后的可见性",
  893. courtsPublicPrefYes: "我同意此案件可完全公开",
  894. courtsPublicPrefNo: "我倾向于保持细节私密",
  895. courtsPublicPrefSubmit: "保存可见性偏好",
  896. courtsNoCases: "没有案件。",
  897. courtsNoMyCases: "你还没有冲突。",
  898. courtsNoHistory: "还没有审判记录。",
  899. courtsMethodJUDGE: "法官",
  900. courtsMethodDICTATOR: "独裁者",
  901. courtsMethodPOPULAR: "民意",
  902. courtsMethodMEDIATION: "调解",
  903. courtsMethodKARMATOCRACY: "Karma 制",
  904. courtsMethod: "方式",
  905. courtsRulesTitle: "法庭运作方式",
  906. courtsRulesIntro: "法庭是社区驱动的冲突解决和恢复性司法流程。优先考虑对话、清晰证据和适当补救。",
  907. courtsRulesLifecycle: "流程:1) 开立案件 2) 选择方式 3) 提交证据 4) 听证和审议 5) 裁决和补救 6) 执行和结案 7) 上诉(如适用)。",
  908. courtsRulesRoles: "原告:开立案件。辩护方:被告人或部落。方式:社区选择的用于促进、评估证据和发布裁决的机制。证人:提供证词或证据。调解员:由原告和/或辩护方邀请的中立人士,可访问所有细节,帮助缓和冲突并共同达成协议。",
  909. courtsRulesEvidence: "描述不超过1000字。附加相关合法的图片、音频、视频和 PDF 文档。未经同意不要分享敏感私人数据。",
  910. courtsRulesDeliberation: "听证可以是公开的或私密的。法官确保尊重、要求澄清,并可能排除不相关或不合法的材料。",
  911. courtsRulesVerdict: "优先考虑修复:道歉、调解协议、内容审核、临时限制或其他适当措施。必须记录推理过程。",
  912. courtsRulesAppeals: "上诉:在有新证据或明显程序错误时允许。除非另有规定,必须在7天内提出。",
  913. courtsRulesPrivacy: "尊重隐私和安全。人肉搜索、仇恨或威胁将被删除。法官可以编辑或封存记录的部分内容以保护有风险的人。",
  914. courtsRulesMisconduct: "骚扰、操纵或伪造证据可能导致立即不利裁决。",
  915. courtsRulesGlossary: "案件:冲突记录。证据:支持诉求的材料。裁决:附有补救措施的决定。上诉:请求审查裁决。",
  916. courtsFilterActions: "操作",
  917. courtsNoActions: "你的角色没有待处理的操作。",
  918. courtsCaseTitlePlaceholder: "冲突的简要描述",
  919. courtsCaseSeverity: "严重程度",
  920. courtsCaseSeverityNone: "无严重程度标签",
  921. courtsCaseSeverityLOW: "低",
  922. courtsCaseSeverityMEDIUM: "中",
  923. courtsCaseSeverityHIGH: "高",
  924. courtsCaseSeverityCRITICAL: "严重",
  925. courtsCaseSubject: "主题",
  926. courtsCaseSubjectNone: "无主题标签",
  927. courtsCaseSubjectBEHAVIOUR: "行为",
  928. courtsCaseSubjectCONTENT: "内容",
  929. courtsCaseSubjectGOVERNANCE: "治理/规则",
  930. courtsCaseSubjectFINANCIAL: "财务/资源",
  931. courtsCaseSubjectOTHER: "其他",
  932. courtsHiddenRespondent: "已隐藏(仅相关角色可见)。",
  933. courtsThRole: "角色",
  934. courtsRoleAccuser: "原告",
  935. courtsRoleDefence: "辩护方",
  936. courtsRoleMediator: "调解员",
  937. courtsRoleJudge: "法官",
  938. courtsRoleDictator: "独裁者",
  939. courtsAssignJudgeTitle: "选择法官",
  940. courtsAssignJudgeBtn: "选择法官",
  941. trendingTitle: "热门",
  942. exploreTrending: "探索你网络中最受欢迎的内容。",
  943. ALLButton: "全部",
  944. MINEButton: "我的",
  945. RECENTButton: "最近",
  946. TOPButton: "热门",
  947. bookmarkButton: "书签",
  948. transferButton: "转账",
  949. eventButton: "活动",
  950. taskButton: "任务",
  951. votesButton: "投票",
  952. reportButton: "报告",
  953. feedButton: "动态",
  954. marketButton: "市场",
  955. imageButton: "图片",
  956. audioButton: "音频",
  957. videoButton: "视频",
  958. documentButton: "文档",
  959. author: "作者",
  960. createdAtLabel: "创建于",
  961. totalVotes: "总票数",
  962. noTrendingFound: "未找到热门内容。",
  963. noContentMessage: "暂无热门内容。",
  964. trendingDescription: "描述",
  965. trendingDate: "日期",
  966. trendingLocation: "位置",
  967. trendingPrice: "价格",
  968. trendingUrl: "URL",
  969. trendingCategory: "类别",
  970. trendingStart: "开始",
  971. trendingEnd: "结束",
  972. trendingPriority: "优先级",
  973. trendingStatus: "状态",
  974. trendingFrom: "发件人",
  975. trendingTo: "收件人",
  976. trendingConcept: "概念",
  977. trendingAmount: "金额",
  978. trendingDeadline: "截止日期",
  979. trendingItemStatus: "项目状态",
  980. trendingTotalVotes: "总票数",
  981. trendingTotalOpinions: "总观点数",
  982. trendingNoContentMessage: "暂无热门内容。",
  983. trendingAuthor: "作者",
  984. trendingCreatedAtLabel: "创建于",
  985. trendingTotalCount: "总计",
  986. tasksTitle: "任务",
  987. tasksDescription: "发现和管理你网络中的任务。",
  988. taskTitleLabel: "标题",
  989. taskDescriptionLabel: "描述",
  990. taskStartTimeLabel: "开始时间",
  991. taskEndTimeLabel: "结束时间",
  992. taskPriorityLabel: "优先级",
  993. taskPrioritySelect: "选择优先级",
  994. taskPriorityUrgent: "紧急",
  995. taskPriorityHigh: "高",
  996. taskPriorityMedium: "中",
  997. taskPriorityLow: "低",
  998. taskLocationLabel: "位置",
  999. taskTagsLabel: "标签",
  1000. taskVisibilityLabel: "可见性",
  1001. taskPublic: "公开",
  1002. taskPrivate: "私密",
  1003. taskCreatedAt: "创建于",
  1004. taskBy: "作者",
  1005. taskStatus: "状态",
  1006. taskStatusOpen: "开放",
  1007. taskStatusInProgress: "进行中",
  1008. taskStatusClosed: "已关闭",
  1009. taskAssignedTo: "分配给",
  1010. taskAssignees: "被分配者",
  1011. taskAssignButton: "分配给我",
  1012. taskUnassignButton: "取消分配",
  1013. taskCreateButton: "创建任务",
  1014. taskUpdateButton: "更新",
  1015. taskDeleteButton: "删除",
  1016. taskFilterAll: "全部",
  1017. taskFilterMine: "我的",
  1018. taskFilterOpen: "开放",
  1019. taskFilterInProgress: "进行中",
  1020. taskFilterClosed: "已关闭",
  1021. taskFilterAssigned: "已分配",
  1022. taskFilterArchived: "已归档",
  1023. taskFilterUrgent: "紧急",
  1024. taskFilterHigh: "高",
  1025. taskFilterMedium: "中",
  1026. taskFilterLow: "低",
  1027. taskAllSectionTitle: "任务",
  1028. taskMineSectionTitle: "你的任务",
  1029. taskCreateSectionTitle: "创建任务",
  1030. taskUpdateSectionTitle: "更新",
  1031. taskOpenTitle: "开放任务",
  1032. taskInProgressTitle: "进行中的任务",
  1033. taskClosedTitle: "已关闭的任务",
  1034. taskAssignedTitle: "已分配的任务",
  1035. taskArchivedTitle: "已归档的任务",
  1036. taskPublicTitle: "公开任务",
  1037. taskPrivateTitle: "私密任务",
  1038. notasks: "没有可用的任务。",
  1039. noLocation: "未指定位置",
  1040. taskSetStatus: "设置状态",
  1041. eventTitle: "活动",
  1042. eventDateLabel: "日期",
  1043. eventsTitle: "活动",
  1044. eventsDescription: "发现和管理你网络中的活动。",
  1045. eventDescription: "描述",
  1046. eventPrice: "价格",
  1047. eventStatus: "状态",
  1048. eventOrganizer: "组织者",
  1049. eventAllSectionTitle: "活动",
  1050. eventMineSectionTitle: "你的活动",
  1051. eventArchivedTitle: "已归档的活动",
  1052. eventCreateSectionTitle: "创建活动",
  1053. eventUpdateSectionTitle: "更新活动",
  1054. eventDeleteButton: "删除",
  1055. eventCreateButton: "创建活动",
  1056. eventTitleLabel: "标题",
  1057. eventDescriptionLabel: "描述",
  1058. eventDescriptionPlaceholder: "输入活动描述...",
  1059. eventUpdateButton: "更新",
  1060. eventAttendeesLabel: "参与者",
  1061. eventAttendeesPlaceholder: "输入参与者,用逗号分隔...",
  1062. eventTagsLabel: "标签",
  1063. eventTagsPlaceholder: "输入活动标签,用逗号分隔...",
  1064. eventTags: "标签",
  1065. eventPriceLabel: "价格",
  1066. eventUrlLabel: "URL",
  1067. eventAttendees: "参与者",
  1068. noAttendees: "暂无参与者",
  1069. eventCreatedAt: "创建于",
  1070. eventLocation: "位置",
  1071. eventLocationLabel: "位置",
  1072. eventNoLocation: "未指定位置",
  1073. eventNoURL: "未指定 URL",
  1074. eventBy: "作者",
  1075. noevents: "没有可用的活动。",
  1076. eventDate: "日期",
  1077. eventDateFormat: "YYYY年MM月DD日 HH:mm",
  1078. eventAttendButton: "参加活动",
  1079. eventUnattendButton: "取消参加",
  1080. eventCreatedBy: "创建者",
  1081. eventAttendeesCount: "参与人数",
  1082. eventCreatedByYou: "你创建了此活动",
  1083. eventAttendConfirmation: "你现在正在参加此活动",
  1084. eventUnattendConfirmation: "你已取消参加此活动",
  1085. eventFilterAll: "全部",
  1086. eventFilterMine: "我的",
  1087. eventFilterToday: "今天",
  1088. eventFilterWeek: "本周",
  1089. eventFilterMonth: "本月",
  1090. eventFilterYear: "今年",
  1091. eventFilterArchived: "已归档",
  1092. eventTodayTitle: "今天的活动",
  1093. eventThisWeekTitle: "本周的活动",
  1094. eventThisMonthTitle: "本月的活动",
  1095. eventThisYearTitle: "今年的活动",
  1096. eventPrivacyLabel: "可见性",
  1097. eventPublic: "公开",
  1098. eventPrivate: "私密",
  1099. eventPublicTitle: "公开活动",
  1100. eventNoPrice: "免费活动",
  1101. eventNoImage: "未上传图片",
  1102. eventAttendConfirmation: "你现在正在参加此活动",
  1103. eventUnattendConfirmation: "你已取消参加此活动",
  1104. eventAttended: "已参加",
  1105. eventUnattended: "未参加",
  1106. eventStatusOpen: "开放",
  1107. eventStatusClosed: "已关闭",
  1108. tagsTitle: "标签",
  1109. tagsDescription: "发现和探索你网络中的分类模式。",
  1110. tagsAllSectionTitle: "标签",
  1111. tagsTopSectionTitle: "热门标签",
  1112. tagsCloudSectionTitle: "标签云",
  1113. tagsFilterAll: "全部",
  1114. tagsFilterTop: "热门",
  1115. tagsFilterCloud: "标签云",
  1116. tagsNoItems: "没有可用的标签。",
  1117. tagsTableHeaderTag: "标签/链接:",
  1118. tagsTableHeaderCount: "计数:",
  1119. transfersTitle: "转账",
  1120. transfersDescription: "发现和管理你网络中的转账。",
  1121. transfersFrom: "发起人",
  1122. transfersTo: "接收人",
  1123. transfersFilterAll: "全部",
  1124. transfersFilterMine: "我的",
  1125. transfersFilterUBI: "UBI",
  1126. transfersFilterMarket: "市场",
  1127. transfersFilterTop: "热门",
  1128. transfersFilterPending: "待处理",
  1129. transfersFilterUnconfirmed: "未确认",
  1130. transfersFilterClosed: "已关闭",
  1131. transfersFilterDiscarded: "已废弃",
  1132. transfersCreateButton: "创建转账",
  1133. transfersUpdateButton: "更新",
  1134. transfersDeleteButton: "删除",
  1135. transfersToUser: "Oasis ID",
  1136. transfersToUserValidation: "有效的 Oasis ID,例如 @…=.ed25519",
  1137. transfersConcept: "概念",
  1138. transfersAmount: "金额",
  1139. transfersDeadline: "截止日期",
  1140. transfersTags: "标签",
  1141. transfersStatus: "状态",
  1142. transfersStatusUnconfirmed: "未确认",
  1143. transfersStatusClosed: "已关闭",
  1144. transfersStatusDiscarded: "已废弃",
  1145. transfersCreatedAt: "创建于",
  1146. transfersConfirmations: "确认",
  1147. transfersConfirmButton: "确认转账",
  1148. transfersNoItems: "未找到转账。",
  1149. transfersMineSectionTitle: "你的转账",
  1150. transfersUBISectionTitle: "UBI 转账",
  1151. transfersMarketSectionTitle: "市场转账",
  1152. transfersTopSectionTitle: "热门转账",
  1153. transfersPendingSectionTitle: "待处理转账",
  1154. transfersUnconfirmedSectionTitle: "未确认转账",
  1155. transfersClosedSectionTitle: "已关闭转账",
  1156. transfersDiscardedSectionTitle: "已废弃转账",
  1157. transfersCreateSectionTitle: "创建转账",
  1158. transfersAllSectionTitle: "转账",
  1159. transfersFilterFavs: "收藏",
  1160. transfersFavsSectionTitle: "收藏的转账",
  1161. transfersSearchLabel: "搜索",
  1162. transfersSearchPlaceholder: "搜索概念、标签、用户...",
  1163. transfersMinAmountLabel: "最低金额",
  1164. transfersMaxAmountLabel: "最高金额",
  1165. transfersSortLabel: "排序",
  1166. transfersSortRecent: "最近",
  1167. transfersSortAmount: "最高金额",
  1168. transfersSortDeadline: "最近截止",
  1169. transfersSearchButton: "搜索",
  1170. transfersFavoriteButton: "收藏",
  1171. transfersUnfavoriteButton: "取消收藏",
  1172. transfersMessageUserButton: "消息",
  1173. transfersExpiringSoonBadge: "即将到期",
  1174. transfersExpiredBadge: "已过期",
  1175. transfersUpdatedAt: "已更新",
  1176. transfersNoMatch: "没有匹配的转账。",
  1177. votationsTitle: "投票",
  1178. votationsDescription: "发现和管理你网络中的投票。",
  1179. voteMineSectionTitle: "你的投票",
  1180. voteCreateSectionTitle: "创建投票",
  1181. voteUpdateSectionTitle: "更新",
  1182. voteOpenTitle: "进行中的投票",
  1183. voteClosedTitle: "已关闭的投票",
  1184. voteAllSectionTitle: "投票",
  1185. voteCreateButton: "创建投票",
  1186. voteUpdateButton: "更新",
  1187. voteDeleteButton: "删除",
  1188. voteOptionYes: "赞成",
  1189. voteOptionNo: "反对",
  1190. voteOptionAbstention: "弃权",
  1191. voteConfused: "困惑",
  1192. voteFollowMajority: "跟随多数",
  1193. voteNotInterested: "不感兴趣",
  1194. voteFilterAll: "全部",
  1195. voteFilterMine: "我的",
  1196. voteFilterOpen: "进行中",
  1197. voteFilterClosed: "已关闭",
  1198. voteQuestionLabel: "问题",
  1199. voteDeadlineLabel: "截止日期",
  1200. voteOptionsLabel: "你的投票",
  1201. voteBreakdown: "分布",
  1202. voteFinalResult: "结果",
  1203. voteTagsLabel: "标签",
  1204. voteDeadline: "截止日期",
  1205. voteStatus: "状态",
  1206. voteTotalVotes: "总票数",
  1207. voteTags: "标签",
  1208. voteOpinions: "观点",
  1209. novotes: "没有可用的投票提案。",
  1210. voteBy: "作者",
  1211. voteCreatedAt: "创建于",
  1212. voteNoQuestion: "未提供问题",
  1213. voteUnknownCreator: "未知创建者",
  1214. voteUnknownDate: "未知日期",
  1215. errorVoteNotFound: "未找到投票",
  1216. errorAlreadyVoted: "你已经表达了意见。",
  1217. errorVoteClosedCannotEdit: "无法编辑已关闭的投票",
  1218. errorVoteDeadlinePassed: "此投票的截止日期已过",
  1219. errorRetrievingVote: "获取投票时出错",
  1220. errorCreatingVote: "创建投票时出错",
  1221. errorVoteAlreadyVoted: "意见提交后无法编辑",
  1222. errorDeletingOldVote: "删除旧意见时出错",
  1223. errorCreatingUpdatedVote: "创建更新的意见时出错",
  1224. errorCreatingTombstone: "创建墓碑时出错",
  1225. voteDetailSectionTitle: '投票详情',
  1226. voteCommentsLabel: '评论',
  1227. voteCommentsForumButton: '公开讨论',
  1228. voteCommentsSectionTitle: '公开讨论',
  1229. voteNoCommentsYet: '还没有评论。成为第一个回复的人。',
  1230. voteNewCommentPlaceholder: '在此写下你的评论…',
  1231. voteNewCommentButton: '发表评论',
  1232. voteNewCommentLabel: '添加评论',
  1233. cvTitle: "简历",
  1234. cvLabel: "简历 (CV)",
  1235. cvEditSectionTitle: "编辑简历",
  1236. cvCreateSectionTitle: "创建简历",
  1237. cvDescription: "管理和分享你的专业技能和信息。",
  1238. cvNameLabel: "全名",
  1239. cvDescriptionLabel: "摘要",
  1240. cvPhotoLabel: "照片",
  1241. cvPersonalExperiencesLabel: "个人经历",
  1242. cvPersonalSkillsLabel: "个人技能(逗号分隔)",
  1243. cvOasisExperiencesLabel: "Oasis 贡献经历",
  1244. cvOasisSkillsLabel: "Oasis 贡献技能(逗号分隔)",
  1245. cvEducationExperiencesLabel: "教育经历",
  1246. cvEducationalSkillsLabel: "教育技能(逗号分隔)",
  1247. cvProfessionalExperiencesLabel: "专业经历",
  1248. cvProfessionalSkillsLabel: "专业技能(逗号分隔)",
  1249. cvLanguagesLabel: "语言",
  1250. cvLocationLabel: "位置",
  1251. cvStatusLabel: "状态",
  1252. cvPreferencesLabel: "偏好",
  1253. cvOasisContributorLabel: "Oasis 贡献者",
  1254. cvPersonal: "个人",
  1255. cvOasis: "Oasis 贡献者(可选)",
  1256. cvOasisContributorView: "Oasis 贡献",
  1257. cvEducational: "教育(可选)",
  1258. cvEducationalView: "教育",
  1259. cvProfessional: "专业(可选)",
  1260. cvProfessionalView: "专业",
  1261. cvAvailability: "可用性(可选)",
  1262. cvAvailabilityView: "可用性",
  1263. cvUpdateButton: "更新",
  1264. cvCreateButton: "创建简历",
  1265. cvContactLabel: "联系方式",
  1266. cvCreatedAt: "创建于",
  1267. cvUpdatedAt: "更新于",
  1268. cvEditButton: "更新",
  1269. cvDeleteButton: "删除",
  1270. cvNoCV: "未找到简历。",
  1271. blogSubject: "主题",
  1272. blogMessage: "消息",
  1273. blogImage: "上传媒体(最大:50MB)",
  1274. blogPublish: "预览",
  1275. noPopularMessages: "还没有发布热门消息",
  1276. forumTitle: "论坛",
  1277. forumCategoryLabel: "类别",
  1278. forumTitleLabel: "标题",
  1279. forumTitlePlaceholder: "论坛标题...",
  1280. forumCreateButton: "创建论坛",
  1281. forumCreateSectionTitle: "创建论坛",
  1282. forumDescription: "与你网络中的其他居民公开交流。",
  1283. forumFilterAll: "全部",
  1284. forumFilterMine: "我的",
  1285. forumFilterRecent: "最近",
  1286. forumFilterTop: "热门",
  1287. forumMineSectionTitle: "你的论坛",
  1288. forumRecentSectionTitle: "最近的论坛",
  1289. forumAllSectionTitle: "论坛",
  1290. forumDeleteButton: "删除",
  1291. forumParticipants: "参与者",
  1292. forumMessages: "消息",
  1293. forumLastMessage: "最后消息",
  1294. forumMessageLabel: "消息",
  1295. forumMessagePlaceholder: "写下你的消息...",
  1296. forumSendButton: "发送",
  1297. forumVisitForum: "访问论坛",
  1298. noForums: "未找到论坛。",
  1299. forumVisitButton: "访问论坛",
  1300. forumCatGENERAL: "综合",
  1301. forumCatOASIS: "Oasis",
  1302. forumCatLARP: "L.A.R.P.",
  1303. forumCatPOLITICS: "政治",
  1304. forumCatTECH: "科技",
  1305. forumCatSCIENCE: "科学",
  1306. forumCatMUSIC: "音乐",
  1307. forumCatART: "艺术",
  1308. forumCatGAMING: "游戏",
  1309. forumCatBOOKS: "书籍",
  1310. forumCatFILMS: "电影",
  1311. forumCatPHILOSOPHY: "哲学",
  1312. forumCatSOCIETY: "社会",
  1313. forumCatPRIVACY: "隐私",
  1314. forumCatCYBERWARFARE: "网络战争",
  1315. forumCatSURVIVALISM: "生存主义",
  1316. imageTitle: "图片",
  1317. imageDescription: "探索和管理你网络中的图片内容。",
  1318. imagePluginTitle: "标题",
  1319. imagePluginDescription: "描述",
  1320. imageMineSectionTitle: "你的图片",
  1321. imageCreateSectionTitle: "上传图片",
  1322. imageUpdateSectionTitle: "更新图片",
  1323. imageAllSectionTitle: "图片",
  1324. imageRecentSectionTitle: "最近的图片",
  1325. imageTopSectionTitle: "热门图片",
  1326. imageFavoritesSectionTitle: "收藏",
  1327. imageGallerySectionTitle: "画廊",
  1328. imageMemeSectionTitle: "梗图",
  1329. imageFilterAll: "全部",
  1330. imageFilterMine: "我的",
  1331. imageFilterRecent: "最近",
  1332. imageFilterTop: "热门",
  1333. imageFilterFavorites: "收藏",
  1334. imageFilterGallery: "画廊",
  1335. imageFilterMeme: "梗图",
  1336. imageCreateButton: "上传图片",
  1337. imageUpdateButton: "更新",
  1338. imageDeleteButton: "删除",
  1339. imageAddFavoriteButton: "添加收藏",
  1340. imageRemoveFavoriteButton: "取消收藏",
  1341. imageFileLabel: "选择图片文件 (.jpeg, .jpg, .png, .gif)",
  1342. imageTagsLabel: "标签",
  1343. imageTagsPlaceholder: "输入标签,用逗号分隔",
  1344. imageTitleLabel: "标题",
  1345. imageTitlePlaceholder: "可选",
  1346. imageDescriptionLabel: "描述",
  1347. imageDescriptionPlaceholder: "可选",
  1348. imageMemeLabel: "标记为表情包",
  1349. imageNoFile: "未提供图片文件",
  1350. noImages: "没有可用的图片。",
  1351. imageSearchPlaceholder: "搜索标题、标签、描述、作者...",
  1352. imageSortRecent: "最近",
  1353. imageSortOldest: "最早",
  1354. imageSortTop: "最多投票",
  1355. imageSearchButton: "搜索",
  1356. imageMessageAuthorButton: "消息",
  1357. imageUpdatedAt: "已更新",
  1358. imageNoMatch: "没有匹配的图片。",
  1359. feedTitle: "动态",
  1360. createFeedTitle: "创建动态",
  1361. createFeedButton: "发送动态!",
  1362. feedPlaceholder: "有什么新鲜事?(最多280字)",
  1363. ALLButton: "动态",
  1364. MINEButton: "你的动态",
  1365. TODAYButton: "今天",
  1366. TOPButton: "热门动态",
  1367. CREATEButton: "创建动态",
  1368. totalOpinions: "总观点数",
  1369. moreVoted: "最多投票",
  1370. alreadyVoted: "你已经表达了意见。",
  1371. noFeedsFound: "未找到动态。",
  1372. author: "作者",
  1373. createdAtLabel: "创建于",
  1374. FeedshareYourOpinions: "发现和分享你网络中的短文。",
  1375. refeedButton: "转发",
  1376. alreadyRefeeded: "你已经转发过了。",
  1377. activityTitle: "活动记录",
  1378. yourActivity: "你的活动",
  1379. globalActivity: "全局活动",
  1380. activityList: "活动记录",
  1381. activityDesc: "查看你网络中的最新活动。",
  1382. allButton: "全部",
  1383. mineButton: "我的",
  1384. noActions: "没有可用的活动。",
  1385. performed: "→",
  1386. from: "发起人",
  1387. to: "接收人",
  1388. amount: "金额",
  1389. concept: "概念",
  1390. description: "描述",
  1391. meme: "表情包",
  1392. activityContact: "联系人",
  1393. activityBy: "名称",
  1394. activityPixelia: "新增像素",
  1395. viewImage: "查看图片",
  1396. playAudio: "播放音频",
  1397. playVideo: "播放视频",
  1398. typeRecent: "最近",
  1399. errorActivity: "获取活动时出错",
  1400. typePost: "帖子",
  1401. typeTribe: "部落",
  1402. typeAbout: "居民",
  1403. typeCurriculum: "简历",
  1404. typeImage: "图片",
  1405. typeBookmark: "书签",
  1406. typeDocument: "文档",
  1407. typeVotes: "投票",
  1408. typeAudio: "音频",
  1409. typeMarket: "市场",
  1410. typeJob: "工作",
  1411. typeProject: "项目",
  1412. typeVideo: "视频",
  1413. typeVote: "传播",
  1414. typeEvent: "活动",
  1415. typeTransfer: "转账",
  1416. typeTask: "任务",
  1417. typePixelia: "像素画",
  1418. typeForum: "论坛",
  1419. typeReport: "报告",
  1420. typeFeed: "动态",
  1421. typeContact: "联系人",
  1422. typePub: "PUB",
  1423. typeTombstone: "墓碑",
  1424. typeBanking: "银行",
  1425. typeBankWallet: "银行/钱包",
  1426. typeBankClaim: "银行/UBI",
  1427. typeKarmaScore: "因缘值",
  1428. typeParliament: "议会",
  1429. typeSpread: "传播",
  1430. typeParliamentCandidature: "议会 · 候选",
  1431. typeParliamentTerm: "议会 · 任期",
  1432. typeParliamentProposal:"议会 · 提案",
  1433. typeParliamentRevocation:"议会 · 撤销",
  1434. typeParliamentLaw: "议会 · 新法律",
  1435. typeCourts: "法庭",
  1436. typeCourtsCase: "法庭 · 案件",
  1437. typeCourtsEvidence: "法庭 · 证据",
  1438. typeCourtsAnswer: "法庭 · 答辩",
  1439. typeCourtsVerdict: "法庭 · 裁决",
  1440. typeCourtsSettlement: "法庭 · 和解",
  1441. typeCourtsSettlementProposal: "法庭 · 和解提议",
  1442. typeCourtsSettlementAccepted: "法庭 · 和解接受",
  1443. typeCourtsNomination: "法庭 · 提名",
  1444. typeCourtsNominationVote: "法庭 · 提名投票",
  1445. activitySupport: "新联盟建立",
  1446. activityJoin: "加入新 PUB",
  1447. question: "问题",
  1448. deadline: "截止日期",
  1449. status: "状态",
  1450. votes: "投票",
  1451. totalVotes: "总票数",
  1452. voteTotalVotes: "总票数",
  1453. name: "名称",
  1454. skills: "技能",
  1455. tags: "标签",
  1456. title: "标题",
  1457. date: "日期",
  1458. category: "类别",
  1459. attendees: "参与者",
  1460. activitySpread: "->",
  1461. visitLink: "访问链接",
  1462. viewDocument: "查看文档",
  1463. location: "位置",
  1464. contentWarning: "主题",
  1465. personName: "居民名称",
  1466. bankWalletConnected: "ECOin 钱包",
  1467. bankUbiReceived: "已收到 UBI",
  1468. bankTx: "交易",
  1469. bankEpochShort: "纪元",
  1470. bankAllocId: "分配 ID",
  1471. bankingUserEngagementScore: "KARMA 评分",
  1472. viewDetails: "查看详情",
  1473. link: "链接",
  1474. aiSnippetsLearned: "已学习片段",
  1475. tribeFeedRefeeds: "转发",
  1476. activityProjectFollow: "%OASIS% 正在 %ACTION% 此项目 %PROJECT%",
  1477. activityProjectUnfollow: "%OASIS% 正在 %ACTION% 此项目 %PROJECT%",
  1478. activityProjectPledged: "%OASIS% 已 %ACTION% %AMOUNT% 至项目 %PROJECT%",
  1479. following: "关注中",
  1480. unfollowing: "取消关注中",
  1481. pledged: "已质押",
  1482. parliamentCandidatureId: "候选",
  1483. parliamentGovMethod: "方式",
  1484. parliamentVotesReceived: "获得票数",
  1485. parliamentMethodANARCHY: "无政府",
  1486. parliamentMethodVOTE: "社区投票",
  1487. parliamentMethodRANKED: "排序选择",
  1488. parliamentMethodPLURALITY: "多数制",
  1489. parliamentMethodCOUNCIL: "委员会",
  1490. parliamentMethodJURY: "陪审团",
  1491. parliamentAnarchy: "无政府",
  1492. parliamentElectionsStart: "选举开始",
  1493. parliamentElectionsEnd: "选举结束",
  1494. parliamentCurrentLeader: "领先候选",
  1495. parliamentProposalTitle: "标题",
  1496. parliamentOpenVote: "公开投票",
  1497. parliamentStatus: "状态",
  1498. parliamentLawQuestion: "问题",
  1499. parliamentLawMethod: "方式",
  1500. parliamentLawProposer: "提议者",
  1501. parliamentLawEnacted: "生效于",
  1502. parliamentLawVotes: "投票",
  1503. createdAt: "创建于",
  1504. courtsCaseTitle: "案件",
  1505. courtsMethod: "方式",
  1506. courtsMethodJUDGE: "法官",
  1507. courtsMethodJUDGES: "法官组",
  1508. courtsMethodSINGLE_JUDGE: "独任法官",
  1509. courtsMethodJURY: "陪审团",
  1510. courtsMethodCOUNCIL: "委员会",
  1511. courtsMethodCOMMUNITY: "社区",
  1512. courtsMethodMEDIATION: "调解",
  1513. courtsMethodARBITRATION: "仲裁",
  1514. courtsMethodVOTE: "社区投票",
  1515. courtsAccuser: "原告",
  1516. courtsRespondent: "被告",
  1517. courtsThStatus: "状态",
  1518. courtsThAnswerBy: "答辩人",
  1519. courtsThEvidenceBy: "举证人",
  1520. courtsThDecisionBy: "裁决者",
  1521. courtsVotesNeeded: "所需票数",
  1522. courtsVotesSlashTotal: "赞成/总计",
  1523. courtsOpenVote: "公开投票",
  1524. courtsAnswerTitle: "答辩",
  1525. courtsStanceADMIT: "承认",
  1526. courtsStanceDENY: "否认",
  1527. courtsStancePARTIAL: "部分承认",
  1528. courtsStanceCOUNTERCLAIM: "反诉",
  1529. courtsStanceNEUTRAL: "中立",
  1530. courtsVerdictResult: "结果",
  1531. courtsVerdictOrders: "命令",
  1532. courtsSettlementText: "和解",
  1533. courtsSettlementAccepted: "已接受",
  1534. courtsSettlementPending: "待处理",
  1535. courtsJudge: "法官",
  1536. courtsThSupports: "支持",
  1537. courtsFilterOpenCase: '开立案件',
  1538. courtsEvidenceFileLabel: '证据文件(图片、音频、视频或 PDF)',
  1539. courtsCaseMediators: '调解员',
  1540. courtsCaseMediatorsPh: '调解员 Oasis ID,用逗号分隔',
  1541. courtsMediatorsLabel: '调解员',
  1542. courtsThCase: '案件',
  1543. courtsThCreatedAt: '开始日期',
  1544. courtsThActions: '操作',
  1545. courtsPublicPrefLabel: '解决后的可见性',
  1546. courtsPublicPrefYes: '我同意此案件可完全公开',
  1547. courtsPublicPrefNo: '我倾向于保持细节私密',
  1548. courtsPublicPrefSubmit: '保存可见性偏好',
  1549. courtsMethodMEDIATION: '调解',
  1550. courtsNoCases: '没有案件。',
  1551. reportsTitle: "报告",
  1552. reportsDescription: "管理和追踪你网络中与问题、漏洞、滥用和内容警告相关的报告。",
  1553. reportsFilterAll: "全部",
  1554. reportsFilterMine: "我的",
  1555. reportsFilterFeatures: "功能",
  1556. reportsFilterBugs: "漏洞",
  1557. reportsFilterAbuse: "滥用",
  1558. reportsFilterContent: "内容",
  1559. reportsFilterConfirmed: "已确认",
  1560. reportsFilterResolved: "已解决",
  1561. reportsFilterOpen: "开放",
  1562. reportsFilterUnderReview: "审查中",
  1563. reportsFilterInvalid: "无效",
  1564. reportsCreateButton: "创建报告",
  1565. reportsTitleLabel: "标题",
  1566. reportsDescriptionLabel: "描述",
  1567. reportsDescriptionPlaceholder: "请提供详细描述。",
  1568. reportsCategory: "类别",
  1569. reportsCategoryLabel: "类别",
  1570. reportsCategoryFeatures: "功能",
  1571. reportsCategoryBugs: "漏洞",
  1572. reportsCategoryAbuse: "滥用",
  1573. reportsCategoryContent: "内容问题",
  1574. reportsUpdateButton: "更新",
  1575. reportsDeleteButton: "删除",
  1576. reportsDateLabel: "日期",
  1577. reportsUploadFile: "上传媒体(最大:50MB)",
  1578. reportsCreatedBy: "作者",
  1579. reportsMineSectionTitle: "你的报告",
  1580. reportsFeaturesSectionTitle: "功能请求",
  1581. reportsBugsSectionTitle: "漏洞",
  1582. reportsAbuseSectionTitle: "滥用报告",
  1583. reportsContentSectionTitle: "内容问题",
  1584. reportsAllSectionTitle: "报告",
  1585. reportsNoItems: "没有可用的报告。",
  1586. reportsValidationTitle: "请输入有效的标题。",
  1587. reportsValidationDescription: "描述不能为空。",
  1588. reportsValidationCategory: "请选择一个类别。",
  1589. reportsCreatedAt: "创建于",
  1590. reportsCreatedBy: "作者",
  1591. reportsSeverity: "严重程度",
  1592. reportsSeverityLow: "低",
  1593. reportsSeverityMedium: "中",
  1594. reportsSeverityHigh: "高",
  1595. reportsSeverityCritical: "严重",
  1596. reportsStatus: "状态",
  1597. reportsStatusOpen: "开放",
  1598. reportsStatusUnderReview: "审查中",
  1599. reportsStatusResolved: "已解决",
  1600. reportsStatusInvalid: "无效",
  1601. reportsUpdateStatusButton: "更新状态",
  1602. reportsAnonymityOption: "匿名提交",
  1603. reportsAnonymousAuthor: "匿名",
  1604. reportsConfirmButton: "确认报告!",
  1605. reportsConfirmations: "确认",
  1606. reportsConfirmedSectionTitle: "已确认的报告",
  1607. reportsCreateTaskButton: "创建任务",
  1608. reportsOpenSectionTitle: "开放报告",
  1609. reportsUnderReviewSectionTitle: "审查中的报告",
  1610. reportsResolvedSectionTitle: "已解决的报告",
  1611. reportsInvalidSectionTitle: "无效报告",
  1612. reportsTemplateSectionTitle: '报告模板',
  1613. reportsBugTemplateTitle: '复现详情(漏洞)',
  1614. reportsFeatureTemplateTitle: '详情(功能)',
  1615. reportsAbuseTemplateTitle: '详情(滥用)',
  1616. reportsContentTemplateTitle: '详情(内容问题)',
  1617. reportsStepsToReproduceLabel: '复现步骤',
  1618. reportsStepsToReproducePlaceholder: '1) ...\n2) ...\n3) ...',
  1619. reportsExpectedBehaviorLabel: '预期结果',
  1620. reportsExpectedBehaviorPlaceholder: '应该发生什么?',
  1621. reportsActualBehaviorLabel: '实际结果',
  1622. reportsActualBehaviorPlaceholder: '实际发生了什么?',
  1623. reportsEnvironmentLabel: '环境',
  1624. reportsEnvironmentPlaceholder: '版本、设备、操作系统、浏览器、设置、日志等。',
  1625. reportsReproduceRateLabel: '复现率',
  1626. reportsReproduceRateAlways: '总是',
  1627. reportsReproduceRateOften: '经常',
  1628. reportsReproduceRateSometimes: '有时',
  1629. reportsReproduceRateRarely: '偶尔',
  1630. reportsReproduceRateUnable: '无法复现',
  1631. reportsReproduceRateUnknown: '未指定',
  1632. reportsProblemStatementLabel: '问题/需求',
  1633. reportsProblemStatementPlaceholder: '此功能解决什么问题?',
  1634. reportsUserStoryLabel: '居民故事',
  1635. reportsUserStoryPlaceholder: '作为一个 <居民>,我希望 <动作>,以便 <收益>。',
  1636. reportsAcceptanceCriteriaLabel: '验收标准',
  1637. reportsAcceptanceCriteriaPlaceholder: '- 假设...\n- 当...\n- 那么...',
  1638. reportsWhatHappenedLabel: '发生了什么?',
  1639. reportsWhatHappenedPlaceholder: '描述事件的背景和大致日期。',
  1640. reportsReportedUserLabel: '被举报的居民/实体',
  1641. reportsReportedUserPlaceholder: '@居民、动态、ID、链接等。',
  1642. reportsEvidenceLinksLabel: '证据/链接',
  1643. reportsEvidenceLinksPlaceholder: '粘贴链接、消息 ID、截图(如适用)等。',
  1644. reportsContentLocationLabel: '内容位置',
  1645. reportsContentLocationPlaceholder: '链接、ID、频道、讨论串、作者等。',
  1646. reportsWhyInappropriateLabel: "为什么不合适",
  1647. reportsWhyInappropriatePlaceholder: '说明原因和影响。',
  1648. reportsRequestedActionLabel: '请求的操作',
  1649. reportsRequestedActionPlaceholder: '删除、隐藏、标记、警告等。',
  1650. tribesTitle: "部落",
  1651. tribeAllSectionTitle: "部落",
  1652. tribeMineSectionTitle: "你的部落",
  1653. tribeCreateSectionTitle: "创建部落",
  1654. tribeUpdateSectionTitle: "更新部落",
  1655. tribeGallerySectionTitle: "部落画廊",
  1656. tribeLarpSectionTitle: "L.A.R.P",
  1657. tribeRecentSectionTitle: "最近的部落",
  1658. tribeTopSectionTitle: "热门部落",
  1659. tribeviewTribeButton: "访问部落",
  1660. tribeDescription: "探索或创建你网络中的部落。",
  1661. tribeFilterAll: "全部",
  1662. tribeFilterMine: "我的",
  1663. tribeFilterMembership: "成员资格",
  1664. tribeFilterRecent: "最近",
  1665. tribeFilterLarp: "L.A.R.P.",
  1666. tribeFilterTop: "热门",
  1667. tribeFilterSubtribes: "子部落",
  1668. tribeFilterGallery: "画廊",
  1669. tribeMainTribeLabel: "主部落",
  1670. tribeCreateButton: "创建部落",
  1671. tribeUpdateButton: "更新",
  1672. tribeDeleteButton: "删除",
  1673. tribeImageLabel: "上传媒体(最大:50MB)",
  1674. tribeTitleLabel: "标题",
  1675. searchTribesPlaceholder: "按名称筛选部落...",
  1676. tribeTitlePlaceholder: "部落名称",
  1677. tribeDescriptionLabel: "描述",
  1678. tribeDescriptionPlaceholder: "描述这个部落",
  1679. tribeLocationLabel: "位置",
  1680. tribeLocationPlaceholder: "这个部落位于哪里?",
  1681. tribeTagsLabel: "标签",
  1682. tribeTagsPlaceholder: "输入标签,用逗号分隔",
  1683. tribeIsLARPLabel: "L.A.R.P. 部落?",
  1684. tribeInviteMode: "邀请模式",
  1685. tribeLARPLabel: "L.A.R.P.",
  1686. tribeModeLabel: "模式",
  1687. tribeIsAnonymousLabel: "状态",
  1688. tribeMembersCount: "成员",
  1689. tribeInviteCodePlaceholder: "输入邀请码",
  1690. tribeJoinByCodeButton: "使用邀请码加入",
  1691. tribeJoinButton: "加入",
  1692. tribeLeaveButton: "离开",
  1693. tribeYes: "是",
  1694. tribeNo: "否",
  1695. tribePublic: "公开",
  1696. tribePrivate: "私密",
  1697. tribeGenerateInvite: "生成邀请码",
  1698. tribeCreatedAt: "创建于",
  1699. tribeAuthor: "作者",
  1700. tribeAuthorLabel: "作者",
  1701. tribeStrict: "严格",
  1702. tribeOpen: "开放",
  1703. tribeFeedFilterRECENT: "最近",
  1704. tribeFeedFilterMINE: "我的",
  1705. tribeFeedFilterALL: "全部",
  1706. tribeFeedFilterTOP: "热门",
  1707. tribeFeedRefeeds: "转发",
  1708. tribeFeedRefeed: "转发",
  1709. tribeFeedMessagePlaceholder: "写一条动态…",
  1710. tribeFeedSend: "发送",
  1711. tribeFeedEmpty: "暂无动态消息。",
  1712. noTribes: "尚未找到部落。",
  1713. tribeNotFound: "未找到部落!",
  1714. createTribeTitle: "创建部落",
  1715. updateTribeTitle: "更新部落",
  1716. tribeSectionOverview: "概览",
  1717. tribeSectionInhabitants: "居民",
  1718. tribeSectionVotations: "投票",
  1719. tribeSectionEvents: "活动",
  1720. tribeSectionReports: "报告",
  1721. tribeSectionTasks: "任务",
  1722. tribeSectionFeed: "动态",
  1723. tribeSectionForum: "论坛",
  1724. tribeSectionMarket: "市场",
  1725. tribeSectionJobs: "工作",
  1726. tribeSectionProjects: "项目",
  1727. tribeSectionMedia: "媒体",
  1728. tribeSectionImages: "图片",
  1729. tribeSectionAudios: "音频",
  1730. tribeSectionVideos: "视频",
  1731. tribeSectionDocuments: "文档",
  1732. tribeSectionBookmarks: "书签",
  1733. tribeSectionMaps: "MAPS",
  1734. tribeSectionPads: "PADS",
  1735. tribeSectionChats: "CHATS",
  1736. tribeSectionCalendars: "CALENDARS",
  1737. tribePadCreate: "Create Pad",
  1738. tribeChatCreate: "Create Chat",
  1739. tribeCalendarCreate: "Create Calendar",
  1740. tribePadsEmpty: "No pads, yet.",
  1741. tribeChatsEmpty: "No chats, yet.",
  1742. tribeCalendarsEmpty: "No calendars, yet.",
  1743. tribeInhabitantsEmpty: "此部落中还没有居民。",
  1744. tribeEventCreate: "创建活动",
  1745. tribeEventsEmpty: "还没有活动。",
  1746. tribeEventTitle: "标题",
  1747. tribeEventDescription: "描述",
  1748. tribeEventDate: "日期",
  1749. tribeEventLocation: "位置",
  1750. tribeEventAttend: "参加",
  1751. tribeEventUnattend: "离开",
  1752. tribeEventAttendees: "参与者",
  1753. tribeTaskCreate: "创建任务",
  1754. tribeTasksEmpty: "还没有任务。",
  1755. tribeTaskTitle: "标题",
  1756. tribeTaskDescription: "描述",
  1757. tribeTaskPriority: "优先级",
  1758. tribeTaskDeadline: "截止日期",
  1759. tribeTaskAssignees: "被分配者",
  1760. tribeTaskStatusInProgress: "进行中",
  1761. tribeTaskStatusClosed: "关闭",
  1762. tribeTaskAssign: "分配",
  1763. tribeTaskUnassign: "取消分配",
  1764. tribeReportCreate: "创建报告",
  1765. tribeReportsEmpty: "还没有报告。",
  1766. tribeReportTitle: "标题",
  1767. tribeReportDescription: "描述",
  1768. tribeReportCategory: "类别",
  1769. tribeVotationCreate: "创建投票",
  1770. tribeVotationsEmpty: "还没有投票。",
  1771. tribeVotationTitle: "标题",
  1772. tribeVotationDescription: "描述",
  1773. tribeVotationOptions: "选项",
  1774. tribeVotationDeadline: "截止日期",
  1775. tribeVotationVote: "投票",
  1776. tribeVotationResults: "票数",
  1777. tribeVotationClose: "关闭投票",
  1778. tribeVotationOptionPlaceholder: "选项",
  1779. tribeForumCreate: "创建论坛",
  1780. tribeForumEmpty: "还没有讨论串。",
  1781. tribeForumTitle: "标题",
  1782. tribeForumText: "消息",
  1783. tribeForumCategory: "类别",
  1784. tribeForumReply: "回复",
  1785. tribeForumReplies: "回复",
  1786. tribeMarketCreate: "创建商品",
  1787. tribeMarketEmpty: "还没有商品。",
  1788. tribeMarketTitle: "标题",
  1789. tribeMarketDescription: "描述",
  1790. tribeMarketPrice: "价格",
  1791. tribeMarketImage: "图片",
  1792. tribeMarketCategory: "类别",
  1793. tribeJobCreate: "创建工作",
  1794. tribeJobsEmpty: "还没有工作。",
  1795. tribeJobTitle: "标题",
  1796. tribeJobDescription: "描述",
  1797. tribeJobLocation: "位置",
  1798. tribeJobSalary: "薪资",
  1799. tribeJobDeadline: "截止日期",
  1800. tribeProjectCreate: "创建项目",
  1801. tribeProjectsEmpty: "还没有项目。",
  1802. tribeProjectTitle: "标题",
  1803. tribeProjectDescription: "描述",
  1804. tribeProjectGoal: "目标",
  1805. tribeProjectFunded: "已筹资",
  1806. tribeProjectDeadline: "截止日期",
  1807. tribeMediaUpload: "上传媒体",
  1808. readDocument: "阅读文档",
  1809. tribeCreateImage: "创建图片",
  1810. tribeCreateAudio: "创建音频",
  1811. tribeCreateVideo: "创建视频",
  1812. tribeCreateDocument: "创建文档",
  1813. tribeCreateBookmark: "创建书签",
  1814. tribeMediaEmpty: "还没有媒体。",
  1815. tribeMediaTitle: "标题",
  1816. tribeMediaDescription: "描述",
  1817. tribeMediaType: "类型",
  1818. tribeMediaTypeImage: "图片",
  1819. tribeMediaTypeVideo: "视频",
  1820. tribeMediaTypeAudio: "音频",
  1821. tribeMediaTypeDocument: "文档",
  1822. tribeMediaTypeBookmark: "书签",
  1823. tribeContentDelete: "删除",
  1824. tribeInviteCodeText: "邀请码:",
  1825. tribeGroupTribe: "部落",
  1826. tribeGroupOffice: "办公",
  1827. tribeGroupNetwork: "网络",
  1828. tribeGroupEconomy: "经济",
  1829. tribeGroupMedia: "媒体",
  1830. tribeStatusOpen: "开放",
  1831. tribeStatusClosed: "已关闭",
  1832. tribeStatusInProgress: "进行中",
  1833. tribePriorityLow: "低",
  1834. tribePriorityMedium: "中",
  1835. tribePriorityHigh: "高",
  1836. tribePriorityCritical: "严重",
  1837. tribeTaskFilterAll: "全部",
  1838. tribeMediaFilterAll: "全部",
  1839. tribeReportCatBug: "漏洞",
  1840. tribeReportCatAbuse: "滥用",
  1841. tribeReportCatContent: "内容",
  1842. tribeReportCatOther: "其他",
  1843. tribeForumCatGeneral: "综合",
  1844. tribeForumCatProposal: "提案",
  1845. tribeForumCatQuestion: "问题",
  1846. tribeForumCatAnnouncement: "公告",
  1847. tribeMarketCatGoods: "商品",
  1848. tribeMarketCatServices: "服务",
  1849. tribeMarketCatFood: "食品",
  1850. tribeMarketCatOther: "其他",
  1851. tribeStatusLabel: "状态",
  1852. tribeSubTribes: "子部落",
  1853. tribeSubTribesCreate: "创建子部落",
  1854. tribeSubTribesEmpty: "还没有创建子部落。",
  1855. tribeLarpCreateForbidden: "无法创建 L.A.R.P. 部落。",
  1856. tribeLarpUpdateForbidden: "无法更新 L.A.R.P. 部落。",
  1857. tribeActivityJoined: "已加入",
  1858. tribeActivityLeft: "已离开",
  1859. tribeActivityFeed: "动态",
  1860. tribeActivityRefeed: "转发",
  1861. tribeGroupAnalytics: "分析",
  1862. tribeGroupCreative: "创意",
  1863. tribeSectionActivity: "活动记录",
  1864. tribeSectionTrending: "热门",
  1865. tribeSectionOpinions: "观点",
  1866. tribeSectionPixelia: "PIXELIA",
  1867. tribeSectionTags: "标签",
  1868. tribeSectionSearch: "搜索",
  1869. tribeActivityEmpty: "还没有活动。",
  1870. tribeActivityCreated: "已创建",
  1871. tribeActivityPosted: "已发布",
  1872. tribeActivityReplied: "已回复",
  1873. tribeTrendingEmpty: "还没有热门内容。",
  1874. tribeTrendingPeriodDay: "今天",
  1875. tribeTrendingPeriodWeek: "本周",
  1876. tribeTrendingPeriodAll: "全部时间",
  1877. tribeTrendingEngagement: "参与度",
  1878. tribeOpinionsEmpty: "还没有观点。",
  1879. tribeOpinionsCast: "投票",
  1880. tribeOpinionsRankings: "排名",
  1881. tribeOpinionsAlreadyVoted: "已投票",
  1882. tribeTopCategory: "最多投票",
  1883. tribePixeliaTitle: "Pixelia",
  1884. tribePixeliaDescription: "协作像素艺术画布。",
  1885. tribePixeliaPaint: "画",
  1886. tribePixeliaContributors: "贡献者",
  1887. tribePixeliaTotalPixels: "已绘制像素",
  1888. tribeTagsEmpty: "未找到标签。",
  1889. tribeTagsCloud: "标签云",
  1890. tribeTagsContentWith: "带有标签的内容",
  1891. tribeSearchPlaceholder: "搜索部落内容...",
  1892. tribeSearchEmpty: "未找到结果。",
  1893. tribeSearchResults: "结果",
  1894. tribeSearchMinChars: "请输入至少2个字符进行搜索。",
  1895. agendaTitle: "日程",
  1896. agendaDescription: "在这里你可以找到所有分配给你的项目。",
  1897. agendaFilterAll: "全部",
  1898. agendaFilterOpen: "开放",
  1899. agendaFilterClosed: "已关闭",
  1900. agendaFilterTasks: "任务",
  1901. agendaFilterMarket: "市场",
  1902. agendaFilterTribes: "部落",
  1903. agendaFilterEvents: "活动",
  1904. agendaFilterReports: "报告",
  1905. agendaFilterTransfers: "转账",
  1906. agendaFilterJobs: "工作",
  1907. agendaFilterProjects: "项目",
  1908. agendaFilterCalendars: "日历",
  1909. agendaNoItems: "未找到分配项目。",
  1910. agendaAuthor: "作者",
  1911. agendaDiscardButton: "丢弃",
  1912. agendaRestoreButton: "恢复",
  1913. agendaCreatedAt: "创建于",
  1914. agendaTitleLabel: "标题",
  1915. agendaMembersCount: "成员",
  1916. agendaDescriptionLabel: "描述",
  1917. agendaStatus: "状态",
  1918. agendaVisibility: "可见性",
  1919. agendaEventDate: "活动日期",
  1920. agendaEventLocation: "位置",
  1921. agendaEventPrice: "价格",
  1922. agendaEventUrl: "URL",
  1923. agendaTaskStart: "开始时间",
  1924. agendaLocationLabel: "位置",
  1925. agendaLARPLabel: "L.A.R.P.",
  1926. agendaYes: "是",
  1927. agendaNo: "否",
  1928. agendaInviteModeLabel: "状态",
  1929. agendaAnonymousLabel: "匿名",
  1930. agendaMembersLabel: "成员",
  1931. agendareportCategory: "类别",
  1932. agendareportSeverity: "严重程度",
  1933. agendareportStatus: "状态",
  1934. agendareportDescription: "描述",
  1935. agendaTaskEnd: "结束时间",
  1936. agendaTaskPriority: "优先级",
  1937. agendaTransferFrom: "发起人",
  1938. agendaTransferTo: "接收人",
  1939. agendaTransferConcept: "概念",
  1940. agendaTransferAmount: "金额",
  1941. agendaTransferDeadline: "截止日期",
  1942. agendaTransferFrom: "发起人",
  1943. agendaTransferTo: "接收人",
  1944. agendaTransferConcept: "概念",
  1945. agendaTransferAmount: "金额",
  1946. agendaTransferDeadline: "截止日期",
  1947. opinionsTitle: "观点",
  1948. shareYourOpinions: "发现并为你网络中的观点投票。",
  1949. author: "作者",
  1950. voteNow: "立即投票",
  1951. alreadyVoted: "你已经表达了意见。",
  1952. noOpinionsFound: "未找到观点。",
  1953. ALLButton: "全部",
  1954. MINEButton: "我的",
  1955. RECENTButton: "最近",
  1956. TOPButton: "热门",
  1957. interestingButton: "有趣",
  1958. necessaryButton: "必要",
  1959. funnyButton: "搞笑",
  1960. disgustingButton: "恶心",
  1961. sensibleButton: "明智",
  1962. propagandaButton: "宣传",
  1963. adultOnlyButton: "仅限成人",
  1964. boringButton: "无聊",
  1965. confusingButton: "令人困惑",
  1966. inspiringButton: "鼓舞人心",
  1967. spamButton: "垃圾信息",
  1968. usefulButton: "有用",
  1969. informativeButton: "信息丰富",
  1970. wellResearchedButton: "研究充分",
  1971. accurateButton: "准确",
  1972. needsSourcesButton: "需要来源",
  1973. wrongButton: "错误",
  1974. lowQualityButton: "低质量",
  1975. creativeButton: "有创意",
  1976. insightfulButton: "有洞察力",
  1977. actionableButton: "可操作",
  1978. inspiringButton: "鼓舞人心",
  1979. loveButton: "喜爱",
  1980. clearButton: "清晰",
  1981. upliftingButton: "振奋人心",
  1982. unnecessaryButton: "不必要",
  1983. rejectedButton: "被拒绝",
  1984. misleadingButton: "误导",
  1985. offTopicButton: "离题",
  1986. duplicateButton: "重复",
  1987. clickbaitButton: "标题党",
  1988. spamButton: "垃圾信息",
  1989. trollButton: "恶搞",
  1990. nsfwButton: "NSFW",
  1991. violentButton: "暴力",
  1992. toxicButton: "有毒",
  1993. harassmentButton: "骚扰",
  1994. hateButton: "仇恨",
  1995. scamButton: "诈骗",
  1996. triggeringButton: "触发性",
  1997. opinionsCreatedAt: "创建于",
  1998. opinionsTotalCount: "总观点数",
  1999. voteInteresting: "有趣",
  2000. voteNecessary: "必要",
  2001. voteUseful: "有用",
  2002. voteInformative: "信息丰富",
  2003. voteWellResearched: "研究充分",
  2004. voteNeedsSources: "需要来源",
  2005. voteWrong: "错误",
  2006. voteLowQuality: "低质量",
  2007. voteLove: "喜爱",
  2008. voteClear: "清晰",
  2009. voteMisleading: "误导",
  2010. voteOffTopic: "离题",
  2011. voteDuplicate: "重复",
  2012. voteClickbait: "标题党",
  2013. votePropaganda: "宣传",
  2014. voteFunny: "搞笑",
  2015. voteInspiring: "鼓舞人心",
  2016. voteUplifting: "振奋人心",
  2017. voteUnnecessary: "不必要",
  2018. voteRejected: "被拒绝",
  2019. voteConfusing: "令人困惑",
  2020. voteTroll: "恶搞",
  2021. voteNsfw: "NSFW",
  2022. voteViolent: "暴力",
  2023. voteToxic: "有毒",
  2024. voteHarassment: "骚扰",
  2025. voteHate: "仇恨",
  2026. voteScam: "诈骗",
  2027. voteTriggering: "触发性",
  2028. voteInsightful: "有洞察力",
  2029. voteAccurate: "准确",
  2030. voteActionable: "可操作",
  2031. voteCreative: "有创意",
  2032. voteSpam: "垃圾信息",
  2033. voteAdultOnly: "仅限成人",
  2034. publishBlog: "发布博客",
  2035. privateMessage: "私信",
  2036. pmSendTitle: "私信",
  2037. pmSend: "发送!",
  2038. pmDescription: "使用此表单向其他居民发送加密消息。",
  2039. pmRecipients: "收件人",
  2040. pmRecipientsHint: "输入 Oasis ID,用逗号分隔",
  2041. pmSubject: "主题",
  2042. pmSubjectHint: "输入消息主题",
  2043. pmText: "消息",
  2044. pmFile: "附件",
  2045. private: "私密",
  2046. privateDescription: "你的加密消息。",
  2047. privateInbox: "收件箱",
  2048. privateSent: "已发送",
  2049. privateDelete: "删除",
  2050. pmCreateButton: "写私信",
  2051. noPrivateMessages: "没有私信。",
  2052. pmFromLabel: "发件人:",
  2053. pmToLabel: "收件人:",
  2054. pmInvalidMessage: "无效消息",
  2055. pmNoSubject: "(无主题)",
  2056. pmSubjectLabel: "主题:",
  2057. pmBodyLabel: "正文",
  2058. pmBotJobs: "42-JobsBOT",
  2059. pmBotProjects: "42-ProjectsBOT",
  2060. pmBotMarket: "42-MarketBOT",
  2061. inboxJobSubscribedTitle: "你的工作机会有新订阅",
  2062. pmInhabitantWithId: "Oasis ID 为以下的居民:",
  2063. pmHasSubscribedToYourJobOffer: "已订阅你的工作机会",
  2064. inboxProjectCreatedTitle: "新项目已创建",
  2065. pmHasCreatedAProject: "已创建一个项目",
  2066. inboxMarketItemSoldTitle: "商品已售出",
  2067. pmYourItem: "你的商品",
  2068. pmHasBeenSoldTo: "已售出给",
  2069. pmFor: "售价",
  2070. inboxProjectPledgedTitle: "你的项目有新质押",
  2071. pmHasPledged: "已质押",
  2072. pmToYourProject: "至你的项目",
  2073. blockchain: '区块浏览器',
  2074. blockchainTitle: '区块浏览器',
  2075. blockchainDescription: '探索和可视化区块链中的区块。',
  2076. blockchainNoBlocks: '区块链中未找到区块。',
  2077. blockchainBlockID: '区块 ID',
  2078. blockchainBlockAuthor: '作者',
  2079. blockchainBlockType: '类型',
  2080. blockchainBlockTimestamp: '时间戳',
  2081. blockchainBlockContent: '区块',
  2082. blockchainBlockURL: 'URL:',
  2083. blockchainContent: '区块',
  2084. blockchainContentPreview: '区块内容预览',
  2085. blockchainLatestDatagram: '最新数据报',
  2086. blockchainDatagram: '数据报',
  2087. blockchainDetails: '查看区块详情',
  2088. blockchainBlockInfo: '区块信息',
  2089. blockchainBlockDetails: '所选区块的详情',
  2090. blockchainBack: '返回区块浏览器',
  2091. blockchainContentDeleted: "此内容已被标记为墓碑",
  2092. visitContent: "访问内容",
  2093. banking: '银行',
  2094. bankingTitle: '银行',
  2095. bankingDescription: '探索 ECOin 的当前价值和相应的 UBI 分配,根据参与度和信任度按纪元分配。',
  2096. bankOverview: '概览',
  2097. bankEpochs: '纪元',
  2098. bankRules: '规则',
  2099. pending: '待处理',
  2100. closed: '已关闭',
  2101. bankBack: '返回银行',
  2102. bankViewTx: '查看交易',
  2103. bankClaimNow: '立即领取',
  2104. bankClaimUBI: '领取 UBI!',
  2105. bankClaimAndPay: 'Claim & Pay',
  2106. bankClaimedPending: 'Claim pending...',
  2107. bankStatusUnclaimed: 'Unclaimed',
  2108. bankStatusClaimed: 'Claimed',
  2109. bankStatusExpired: 'Expired',
  2110. bankPubOnly: 'PUB-only operation',
  2111. bankNoPendingUBI: '本期无待领取的 UBI 分配。',
  2112. bankPubBalance: 'PUB 余额',
  2113. bankEpoch: '纪元',
  2114. bankPool: '资金池(本纪元)',
  2115. bankWeightsSum: '权重总和',
  2116. bankAllocations: '分配',
  2117. bankNoAllocations: '未找到分配。',
  2118. bankNoEpochs: '未找到纪元。',
  2119. bankEpochAllocations: '纪元分配',
  2120. bankAllocId: '分配 ID',
  2121. bankAllocDate: '日期',
  2122. bankAllocConcept: '概念',
  2123. bankAllocFrom: '发起人',
  2124. bankAllocTo: '接收人',
  2125. bankAllocAmount: '金额',
  2126. bankAllocStatus: '状态',
  2127. bankEpochId: '纪元 ID',
  2128. bankRuleHash: '规则快照哈希',
  2129. bankViewEpoch: '查看纪元',
  2130. bankUserBalance: '你的余额',
  2131. ecoWalletNotConfigured: '未配置 ECOin 钱包',
  2132. editWallet: '编辑钱包',
  2133. addWallet: '添加钱包',
  2134. bankAddresses: '地址',
  2135. bankNoAddresses: '未找到地址。',
  2136. bankUser: 'Oasis ID',
  2137. bankAddress: '地址',
  2138. bankAddAddressTitle: '添加 ECOIN 地址',
  2139. bankAddAddressUser: 'Oasis ID',
  2140. bankAddAddressAddress: 'ECOIN 地址',
  2141. bankAddAddressSave: '保存',
  2142. bankAddressAdded: '地址已添加',
  2143. bankAddressUpdated: '地址已更新',
  2144. bankAddressExists: '地址已存在',
  2145. bankAddressInvalid: '无效地址',
  2146. bankAddressDeleted: '地址已删除',
  2147. bankAddressNotFound: '未找到地址',
  2148. bankAddressTotal: '地址总数',
  2149. bankAddressSearch: '搜索 @居民或地址',
  2150. bankAddressActions: '操作',
  2151. bankAddressDelete: '删除',
  2152. bankAddressSource: '来源',
  2153. bankAddressDeleteConfirm: '删除此地址?',
  2154. search: '搜索!',
  2155. bankLocal: '本地',
  2156. bankFromOasis: 'Oasis',
  2157. bankMyAddress: '你的地址',
  2158. bankRemoveMyAddress: '移除我的地址',
  2159. bankNotRemovableOasis: '无法在本地移除地址',
  2160. bankingFutureUBI: "UBI",
  2161. pubIdTitle: "PUB Wallet",
  2162. pubIdDescription: "Set the PUB wallet URL. This will be used for PUB transactions (including the UBI).",
  2163. pubIdLabel: "PUB ID",
  2164. pubIdSave: "Save configuration",
  2165. pubIdPlaceholder: "@PUB_ID.ed25519",
  2166. bankUbiAvailability: "UBI 可用性",
  2167. bankUbiAvailableOk: "可用",
  2168. bankUbiAvailableNo: "资金不足!",
  2169. bankAlreadyClaimedThisMonth: "本月已领取",
  2170. bankUbiThisMonth: "UBI(本月)",
  2171. bankUbiLastClaimed: "UBI(上次领取)",
  2172. bankUbiNeverClaimed: "从未领取",
  2173. bankUbiTotalClaimed: "UBI(累计领取)",
  2174. bankUbiPub: "PUB",
  2175. bankUbiInhabitant: "居民",
  2176. bankUbiClaimedAmount: "已领取(ECO)",
  2177. typeBankUbiResult: "银行 - UBI",
  2178. bankNoPubConfigured: "未配置 PUB。请在设置中设置您的 PUB ID。",
  2179. shopsTitle: "商店",
  2180. shopDescription: "发现和管理网络中的商店。",
  2181. shopTitle: "商店",
  2182. shopFilterAll: "全部",
  2183. shopFilterMine: "我的",
  2184. shopFilterRecent: "最近",
  2185. shopFilterTop: "热门",
  2186. shopFilterProducts: "产品",
  2187. shopFilterPrices: "价格",
  2188. shopFilterFavorites: "收藏",
  2189. shopUpload: "创建商店",
  2190. shopAllSectionTitle: "所有商店",
  2191. shopMineSectionTitle: "我的商店",
  2192. shopRecentSectionTitle: "最近商店",
  2193. shopTopSectionTitle: "热门商店",
  2194. shopProductsSectionTitle: "热门产品",
  2195. shopPricesSectionTitle: "按价格排列的产品",
  2196. shopFavoritesSectionTitle: "收藏",
  2197. shopCreateSectionTitle: "创建商店",
  2198. shopUpdateSectionTitle: "更新商店",
  2199. shopCreate: "创建",
  2200. shopUpdate: "更新",
  2201. shopDelete: "删除",
  2202. shopAddFavorite: "添加收藏",
  2203. shopRemoveFavorite: "取消收藏",
  2204. shopOpen: "开放",
  2205. shopClosed: "关闭",
  2206. shopOpenShop: "开放商店",
  2207. shopCloseShop: "关闭商店",
  2208. shopProducts: "产品",
  2209. shopProductAdd: "添加产品",
  2210. shopProductTitle: "产品",
  2211. shopProductUpdate: "更新产品",
  2212. shopProductPrice: "价格 (ECO)",
  2213. shopProductStock: "库存",
  2214. shopProductUntitled: "无标题产品",
  2215. shopUntitled: "无标题商店",
  2216. shopNoItems: "未找到商店。",
  2217. shopNoProducts: "暂无产品。",
  2218. shopOutOfStock: "已售罄",
  2219. shopBuy: "购买",
  2220. shopBackToShop: "返回商店",
  2221. shopShareUrl: "分享链接",
  2222. shopVisitShop: "访问商店",
  2223. shopStatus: "状态",
  2224. shopCreatedAt: "创建时间",
  2225. shopSearchPlaceholder: "搜索商店...",
  2226. shopUrl: "网址",
  2227. shopLocation: "位置",
  2228. shopTags: "标签",
  2229. shopVisibility: "可见性",
  2230. shopImage: "图片",
  2231. shopShortDescription: "简短描述",
  2232. shopShortDescriptionPlaceholder: "店铺卡片简短描述(最多160个字符)",
  2233. shopTitlePlaceholder: "您的店铺名称",
  2234. shopDescriptionPlaceholder: "您的店铺详细描述",
  2235. shopUrlPlaceholder: "https://您的店铺网址.com",
  2236. shopLocationPlaceholder: "城市,国家",
  2237. shopTagsPlaceholder: "标签1, 标签2, 标签3",
  2238. mapTitlePlaceholder: "地图标题",
  2239. shopProductFeatured: "推荐产品",
  2240. shopSendToMarket: "Send to Market",
  2241. typeShop: "商店",
  2242. typeShopProduct: "店铺商品",
  2243. bankExchange: '交易所',
  2244. bankExchangeCurrentValue: 'ECOin 价值(1小时)',
  2245. bankTotalSupply: 'ECOin 总供应量',
  2246. bankEcoinHours: "ECOin 时间等价",
  2247. bankHoursOfWork: '小时',
  2248. bankExchangeNoData: '无可用数据',
  2249. bankExchangeIndex: 'ECOin 价值(1小时)',
  2250. bankInflation: 'ECOin 通胀率',
  2251. bankCurrentSupply: 'ECOin 当前供应量',
  2252. bankingSyncStatus: 'ECOin 状态',
  2253. bankingSyncStatusSynced: '已同步',
  2254. bankingSyncStatusOutdated: '已过时',
  2255. statsTitle: '统计',
  2256. statistics: "统计",
  2257. statsInhabitant: "居民统计",
  2258. statsDescription: "发现你网络的统计数据。",
  2259. ALLButton: "全部",
  2260. MINEButton: "我的",
  2261. TOMBSTONEButton: "墓碑",
  2262. statsYou: "你",
  2263. statsUserId: "Oasis ID",
  2264. statsCreatedAt: "创建于",
  2265. statsYourContent: "内容",
  2266. statsYourOpinions: "观点",
  2267. statsYourTombstone: "墓碑",
  2268. statsNetwork: "网络",
  2269. statsTotalInhabitants: "居民",
  2270. statsDiscoveredTribes: "部落(公开)",
  2271. statsPrivateDiscoveredTribes: "部落(私密)",
  2272. statsNetworkContent: "内容",
  2273. statsYourMarket: "市场",
  2274. statsYourJob: "工作",
  2275. statsYourProject: "项目",
  2276. statsYourTransfer: "转账",
  2277. statsYourForum: "论坛",
  2278. statsNetworkOpinions: "观点",
  2279. statsDiscoveredMarket: "市场",
  2280. statsDiscoveredJob: "工作",
  2281. statsDiscoveredProject: "项目",
  2282. statsBankingTitle: "银行",
  2283. statsEcoWalletLabel: "ECOIN 钱包",
  2284. statsEcoWalletNotConfigured: "未配置!",
  2285. statsTotalEcoAddresses: "地址总数",
  2286. statsDiscoveredTransfer: "转账",
  2287. statsDiscoveredForum: "论坛",
  2288. statsNetworkTombstone: "墓碑",
  2289. statsBookmark: "书签",
  2290. statsEvent: "活动",
  2291. statsTask: "任务",
  2292. statsVotes: "投票",
  2293. statsMarket: "市场",
  2294. statsForum: "论坛",
  2295. statsJob: "工作",
  2296. statsProject: "项目",
  2297. statsReport: "报告",
  2298. statsFeed: "动态",
  2299. statsTribe: "部落",
  2300. statsImage: "图片",
  2301. statsAudio: "音频",
  2302. statsVideo: "视频",
  2303. statsDocument: "文档",
  2304. statsMap: "地图",
  2305. statsShop: "店铺",
  2306. statsShopProduct: "店铺商品",
  2307. statsTransfer: "转账",
  2308. statsAiExchange: "AI",
  2309. statsPUBs: 'PUB',
  2310. statsPost: "帖子",
  2311. statsOasisID: "Oasis ID",
  2312. statsSize: "总计(大小)",
  2313. statsBlockchainSize: "区块链(大小)",
  2314. statsBlobsSize: "Blob(大小)",
  2315. statsActivity7d: "活动(最近7天)",
  2316. statsActivity7dTotal: "7天总计",
  2317. statsActivity30dTotal: "30天总计",
  2318. statsKarmaScore: "KARMA 评分",
  2319. statsPublic: "公开",
  2320. statsPrivate: "私密",
  2321. day: "日",
  2322. messages: "消息",
  2323. statsProject: "项目",
  2324. statsProjectsTitle: "项目",
  2325. statsProjectsTotal: "项目总数",
  2326. statsProjectsActive: "活跃",
  2327. statsProjectsCompleted: "已完成",
  2328. statsProjectsPaused: "已暂停",
  2329. statsProjectsCancelled: "已取消",
  2330. statsProjectsGoalTotal: "目标总额",
  2331. statsProjectsPledgedTotal: "质押总额",
  2332. statsProjectsSuccessRate: "成功率",
  2333. statsProjectsAvgProgress: "平均进度",
  2334. statsProjectsMedianProgress: "中位数进度",
  2335. statsProjectsActiveFundingAvg: "平均活跃筹资",
  2336. statsJobsTitle: "工作",
  2337. statsJobsTotal: "工作总数",
  2338. statsJobsOpen: "开放",
  2339. statsJobsClosed: "已关闭",
  2340. statsJobsOpenVacants: "开放职位",
  2341. statsJobsSubscribersTotal: "订阅者总数",
  2342. statsJobsAvgSalary: "平均薪资",
  2343. statsJobsMedianSalary: "中位数薪资",
  2344. statsMarketTitle: "市场",
  2345. statsMarketTotal: "商品总数",
  2346. statsMarketForSale: "在售",
  2347. statsMarketReserved: "已预订",
  2348. statsMarketClosed: "已关闭",
  2349. statsMarketSold: "已售出",
  2350. statsMarketRevenue: "收入",
  2351. statsMarketAvgSoldPrice: "平均售价",
  2352. statsUsersTitle: "居民",
  2353. user: "居民",
  2354. statsTombstoneTitle: "墓碑",
  2355. statsNetworkTombstones: "网络墓碑",
  2356. statsTombstoneRatio: "墓碑比率 (%)",
  2357. statsAITraining: "AI 训练",
  2358. statsAIExchanges: "交流",
  2359. statsParliamentCandidature: "议会候选",
  2360. statsParliamentTerm: "议会任期",
  2361. statsParliamentProposal: "议会提案",
  2362. statsParliamentRevocation: "议会撤销",
  2363. statsParliamentLaw: "议会法律",
  2364. statsCourtsCase: "法庭案件",
  2365. statsCourtsEvidence: "法庭证据",
  2366. statsCourtsAnswer: "法庭答辩",
  2367. statsCourtsVerdict: "法庭裁决",
  2368. statsCourtsSettlement: "法庭和解",
  2369. statsCourtsSettlementProposal: "和解提议",
  2370. statsCourtsSettlementAccepted: "已接受的和解",
  2371. statsCourtsNomination: "法官提名",
  2372. statsCourtsNominationVote: "提名投票",
  2373. ai: "AI",
  2374. aiTitle: "AI",
  2375. aiDescription: "一个名为 '42' 的集体人工智能 (CAI),从你的网络中学习。",
  2376. aiInputPlaceholder: "有什么问题?",
  2377. aiUserQuestion: "问题",
  2378. aiResponseTitle: "回复",
  2379. aiSubmitButton: "发送!",
  2380. aiSettingsDescription: "为 AI 模型设置你的提示语(最多128个字符)。",
  2381. aiPrompt: "提供信息丰富且精确的回答。",
  2382. aiConfiguration: "设置提示语",
  2383. aiPromptUsed: "提示语",
  2384. aiClearHistory: "清除聊天记录",
  2385. aiSharePrompt: "将此回答添加到集体训练?",
  2386. aiShareYes: "是",
  2387. aiShareNo: "否",
  2388. aiSharedLabel: "已添加到训练",
  2389. aiRejectedLabel: "未添加到训练",
  2390. aiServerError: "AI 无法回答。请重试。",
  2391. aiInputPlaceholder: "什么是 Oasis?",
  2392. typeAiExchange: "AI",
  2393. aiApproveTrain: "添加到集体训练",
  2394. aiRejectTrain: "不训练",
  2395. aiTrainPending: "待批准",
  2396. aiTrainApproved: "已批准训练",
  2397. aiTrainRejected: "已拒绝训练",
  2398. aiSnippetsUsed: "使用的片段",
  2399. aiSnippetsLearned: "已学习的片段",
  2400. statsAITraining: "AI 训练",
  2401. aiApproveCustomTrain: "使用此自定义回答训练",
  2402. aiCustomAnswerPlaceholder: "写下你的自定义回答…",
  2403. statsAIExchanges: "模型交流",
  2404. marketMineSectionTitle: "你的商品",
  2405. marketCreateSectionTitle: "创建商品",
  2406. marketUpdateSectionTitle: "更新",
  2407. marketAllSectionTitle: "市场",
  2408. marketRecentSectionTitle: "最近的市场",
  2409. marketTitle: "市场",
  2410. marketDescription: "在你的网络中交换商品或服务的市场。",
  2411. marketFilterAll: "全部",
  2412. marketFilterMine: "我的",
  2413. marketFilterAuctions: "拍卖",
  2414. marketFilterItems: "交换",
  2415. marketFilterNew: "全新",
  2416. marketFilterUsed: "二手",
  2417. marketFilterBroken: "损坏",
  2418. marketFilterForSale: "出售中",
  2419. marketFilterSold: "已售出",
  2420. marketFilterDiscarded: "已废弃",
  2421. marketFilterRecent: "最近",
  2422. marketFilterMyBids: "出价",
  2423. marketCreateButton: "创建商品",
  2424. marketItemType: "类型",
  2425. marketItemTitle: "标题",
  2426. marketItemAvailable: "截止日期",
  2427. marketItemDescription: "描述",
  2428. marketItemDescriptionPlaceholder: "描述你要出售的商品",
  2429. marketItemStatus: "状态",
  2430. marketShopLabel: "商店",
  2431. marketItemCondition: "状况",
  2432. marketItemPrice: "价格",
  2433. marketItemTags: "标签",
  2434. marketItemTagsPlaceholder: "输入标签,用逗号分隔",
  2435. marketItemDeadline: "截止日期",
  2436. marketItemIncludesShipping: "包含运费?",
  2437. marketItemHighestBid: "最高出价",
  2438. marketItemHighestBidder: "最高出价者",
  2439. marketItemStock: "库存",
  2440. marketOutOfStock: "缺货",
  2441. marketItemBidTime: "出价时间",
  2442. marketActionsUpdate: "更新",
  2443. marketUpdateButton: "更新商品!",
  2444. marketActionsDelete: "删除",
  2445. marketActionsSold: "标记为已售出",
  2446. marketActionsChangeStatus: "更改状态",
  2447. marketActionsBuy: "购买!",
  2448. marketAuctionBids: "当前出价",
  2449. marketPlaceBidButton: "出价",
  2450. marketItemSeller: "卖家",
  2451. marketNoItems: "暂无可用商品。",
  2452. marketYourBid: "你的出价",
  2453. marketCreateFormImageLabel: "上传媒体(最大:50MB)",
  2454. marketSearchLabel: "搜索",
  2455. marketSearchPlaceholder: "搜索标题或标签",
  2456. marketMinPriceLabel: "最低价格",
  2457. marketMaxPriceLabel: "最高价格",
  2458. marketSortLabel: "排序",
  2459. marketSortRecent: "最近",
  2460. marketSortPrice: "价格",
  2461. marketSortDeadline: "截止日期",
  2462. marketSearchButton: "搜索",
  2463. marketAuctionEndsIn: "结束于",
  2464. marketAuctionEnded: "已结束",
  2465. marketMyBidBadge: "你已出价",
  2466. marketNoItemsMatch: "没有匹配的商品。",
  2467. jobsTitle: "工作",
  2468. jobsDescription: "发现和管理你网络中的工作。",
  2469. jobsFilterRecent: "最近",
  2470. jobsFilterMine: "我的",
  2471. jobsFilterAll: "全部",
  2472. jobsFilterRemote: "远程",
  2473. jobsFilterOpen: "开放",
  2474. jobsFilterClosed: "已关闭",
  2475. jobsCV: "简历",
  2476. jobsCreateJob: "创建工作",
  2477. jobsRecentTitle: "最近的工作",
  2478. jobsMineTitle: "你的工作",
  2479. jobsAllTitle: "工作",
  2480. jobsRemoteTitle: "远程工作",
  2481. jobsOpenTitle: "开放的工作",
  2482. jobsClosedTitle: "已关闭的工作",
  2483. jobsCVTitle: "简历",
  2484. jobsFilterPresencial: "现场",
  2485. jobsFilterFreelancer: "自由职业",
  2486. jobsFilterEmployee: "全职",
  2487. jobsPresencialTitle: "现场工作",
  2488. jobsFreelancerTitle: "自由职业工作",
  2489. jobsEmployeeTitle: "全职工作",
  2490. jobTitle: "标题",
  2491. jobLocation: "位置",
  2492. jobSalary: "薪资 (ECO/1小时)",
  2493. jobVacants: "空缺",
  2494. jobDescription: "描述",
  2495. jobRequirements: "要求",
  2496. jobLanguages: "语言",
  2497. jobStatus: "状态",
  2498. jobStatusOPEN: "开放",
  2499. jobStatusCLOSED: "已关闭",
  2500. jobSetOpen: "设为开放",
  2501. jobSetClosed: "设为已关闭",
  2502. jobSubscribeButton: "加入此机会!",
  2503. jobUnsubscribeButton: "离开此机会!",
  2504. jobTitlePlaceholder: "输入工作标题",
  2505. jobDescriptionPlaceholder: "描述工作内容",
  2506. jobRequirementsPlaceholder: "输入要求",
  2507. jobLanguagesPlaceholder: "中文、英文、西班牙文...",
  2508. jobTasksPlaceholder: "列出任务",
  2509. jobLocationPresencial: "现场",
  2510. jobLocationRemote: "远程",
  2511. jobVacantsPlaceholder: "职位数量",
  2512. jobSalaryPlaceholder: "每小时 ECO 薪资",
  2513. jobImage: "上传媒体(最大:50MB)",
  2514. jobTasks: "任务",
  2515. jobType: "工作类型",
  2516. jobTime: "工作时间",
  2517. jobSubscribers: "订阅者",
  2518. noSubscribers: "没有订阅者",
  2519. jobsFilterTop: "热门",
  2520. jobsTopTitle: "最高薪资工作",
  2521. createJobButton: "发布工作",
  2522. viewDetailsButton: "查看详情",
  2523. noJobsFound: "未找到工作机会。",
  2524. jobAuthor: "作者",
  2525. jobTypeFreelance: "自由职业",
  2526. jobTypeSalary: "全职",
  2527. jobTimePartial: "兼职",
  2528. jobTimeComplete: "全职",
  2529. jobsDeleteButton: "删除",
  2530. jobsUpdateButton: "更新",
  2531. jobsFilterApplied: "已申请",
  2532. jobsAppliedTitle: "我的申请",
  2533. jobsAppliedBadge: "已申请",
  2534. jobsFilterFavs: "收藏",
  2535. jobsFavsTitle: "收藏",
  2536. jobsFilterNeeds: "需要帮助",
  2537. jobsNeedsTitle: "需要帮助",
  2538. jobsSearchLabel: "搜索",
  2539. jobsSearchPlaceholder: "搜索标题、标签、描述...",
  2540. jobsMinSalaryLabel: "最低薪资",
  2541. jobsMaxSalaryLabel: "最高薪资",
  2542. jobsSortLabel: "排序",
  2543. jobsSortRecent: "最近",
  2544. jobsSortSalary: "最高薪资",
  2545. jobsSortSubscribers: "最多申请者",
  2546. jobsSearchButton: "搜索",
  2547. jobsFavoriteButton: "收藏",
  2548. jobsUnfavoriteButton: "取消收藏",
  2549. jobsMessageAuthorButton: "私信",
  2550. jobsApplicants: "申请者",
  2551. jobsUpdatedAt: "已更新",
  2552. jobSetOpen: "设为开放",
  2553. jobNewBadge: "新",
  2554. jobsTagsLabel: "标签",
  2555. jobsTagsPlaceholder: "标签1, 标签2, 标签3",
  2556. noJobsMatch: "没有匹配的工作。",
  2557. projectsTitle: "项目",
  2558. projectsDescription: "创建、资助和关注你网络中的社区驱动项目。",
  2559. projectCreateProject: "创建项目",
  2560. projectCreateButton: "创建项目",
  2561. projectUpdateButton: "更新",
  2562. projectDeleteButton: "删除",
  2563. projectNoProjectsFound: "未找到项目。",
  2564. projectFilterAll: "全部",
  2565. projectFilterMine: "我的",
  2566. projectFilterActive: "活跃",
  2567. projectFilterPaused: "已暂停",
  2568. projectFilterCompleted: "已完成",
  2569. projectFilterFollowing: "已关注",
  2570. projectFilterRecent: "最近",
  2571. projectFilterTop: "热门",
  2572. projectAllTitle: "项目",
  2573. projectMineTitle: "你的项目",
  2574. projectActiveTitle: "活跃项目",
  2575. projectPausedTitle: "已暂停项目",
  2576. projectCompletedTitle: "已完成项目",
  2577. projectFollowingTitle: "已关注项目",
  2578. projectRecentTitle: "最近的项目",
  2579. projectTopTitle: "最高筹资",
  2580. projectTitlePlaceholder: "项目名称",
  2581. projectImage: "上传媒体(最大:50MB)",
  2582. projectDescription: "描述",
  2583. projectDescriptionPlaceholder: "讲述故事和目标…",
  2584. projectGoal: "目标 (ECO)",
  2585. projectGoalPlaceholder: "50000",
  2586. projectDeadline: "截止日期",
  2587. projectProgress: "起始进度 (%)",
  2588. projectStatus: "状态",
  2589. projectFunding: "筹资",
  2590. projectPledged: "已质押",
  2591. projectSetStatus: "设置状态",
  2592. projectSetProgress: "更新进度",
  2593. projectFollowButton: "关注",
  2594. projectUnfollowButton: "取消关注",
  2595. projectStatusACTIVE: "活跃",
  2596. projectStatusPAUSED: "已暂停",
  2597. projectStatusCOMPLETED: "已完成",
  2598. projectStatusCANCELLED: "已取消",
  2599. projectPledgeTitle: "支持此项目",
  2600. projectPledgePlaceholder: "ECO 金额",
  2601. projectBounties: "悬赏",
  2602. projectBountiesInputLabel: "悬赏(每行一个:标题|金额 [ECO]|描述)",
  2603. projectBountiesPlaceholder: "修复 UI 漏洞|100|问题链接\n编写文档|250|列出使用示例",
  2604. projectNoBounties: "未找到悬赏。",
  2605. projectTitle: "标题",
  2606. projectAddBountyTitle: "新悬赏",
  2607. projectBountyTitle: "悬赏标题",
  2608. projectBountyAmount: "金额 (ECO)",
  2609. projectBountyDescription: "描述",
  2610. projectMilestoneSelect: "选择里程碑",
  2611. projectBountyCreateButton: "创建悬赏",
  2612. projectBountyStatus: "悬赏状态",
  2613. projectBountyOpen: "开放",
  2614. projectBountyClaimed: "已认领",
  2615. projectBountyDone: "已完成",
  2616. projectBountyClaimedBy: "认领者",
  2617. projectBountyClaimButton: "认领",
  2618. projectBountyCompleteButton: "标记为已完成",
  2619. projectMilestones: "里程碑",
  2620. projectAddMilestoneTitle: "新里程碑",
  2621. projectMilestoneTitle: "里程碑标题",
  2622. projectMilestoneTargetPercent: "百分比 (%)",
  2623. projectMilestoneDueDate: "日期",
  2624. projectMilestoneCreateButton: "创建里程碑",
  2625. projectMilestoneStatus: "里程碑状态",
  2626. projectMilestoneOpen: "开放",
  2627. projectMilestoneDone: "已完成",
  2628. projectMilestoneMarkDone: "标记为已完成",
  2629. projectMilestoneDue: "截止",
  2630. projectNoMilestones: "未找到里程碑。",
  2631. projectMilestoneMarkDone: "标记为已完成",
  2632. projectMilestoneTitlePlaceholder: "输入里程碑标题",
  2633. projectMilestoneDescriptionPlaceholder: "输入此里程碑的描述",
  2634. projectMilestoneDescription: "里程碑描述",
  2635. projectBudgetGoal: "预算(目标)",
  2636. projectBudgetAssigned: "已分配至悬赏",
  2637. projectBudgetRemaining: "剩余",
  2638. projectBudgetOver: "⚠ 超出预算:分配金额超过目标",
  2639. projectFollowers: "关注者",
  2640. projectFollowersTitle: "关注者",
  2641. projectFollowersNone: "还没有关注者。",
  2642. projectMore: "更多",
  2643. projectYouFollowHint: "你关注了此项目",
  2644. projectBackers: "支持者",
  2645. projectBackersTitle: "支持者",
  2646. projectBackersTotal: "支持者总数",
  2647. projectBackersTotalPledged: "质押总额",
  2648. projectBackersYourPledge: "你的质押",
  2649. projectBackersNone: "还没有质押。",
  2650. projectNoRemainingBudget: "没有剩余预算。",
  2651. projectFilterBackers: "支持者",
  2652. projectFilterApplied: "已申请",
  2653. projectAppliedTitle: "已申请",
  2654. projectBackersLeaderboardTitle: "顶级支持者",
  2655. projectNoBackersFound: "未找到支持者。",
  2656. projectBackerAmount: "总贡献",
  2657. projectBackerPledges: "质押",
  2658. projectBackerProjects: "项目",
  2659. projectPledgeAmount: "金额",
  2660. projectSelectMilestoneOrBounty: "选择里程碑或悬赏",
  2661. projectPledgeButton: "质押",
  2662. footerLicense: "GPLv3",
  2663. footerPackage: "软件包",
  2664. footerVersion: "版本",
  2665. modulesModuleName: "名称",
  2666. modulesModuleDescription: "描述",
  2667. modulesModuleStatus: "状态",
  2668. modulesTotalModulesLabel: "已加载模块",
  2669. modulesEnabledModulesLabel: "已启用",
  2670. modulesDisabledModulesLabel: "已禁用",
  2671. modulesPopularLabel: "精选",
  2672. modulesPopularDescription: "接收热门、最多浏览或最多评论帖子的模块。",
  2673. modulesTopicsLabel: "话题",
  2674. modulesTopicsDescription: "接收基于共同兴趣的讨论类别的模块。",
  2675. modulesSummariesLabel: "摘要",
  2676. modulesSummariesDescription: "接收长讨论或帖子摘要的模块。",
  2677. modulesLatestLabel: "最新",
  2678. modulesLatestDescription: "接收最新帖子和讨论的模块。",
  2679. modulesThreadsLabel: "讨论串",
  2680. modulesThreadsDescription: "接收按话题或问题分组的对话的模块。",
  2681. modulesMultiverseLabel: "多元宇宙",
  2682. modulesMultiverseDescription: "接收来自其他联邦节点内容的模块。",
  2683. modulesInvitesLabel: "邀请",
  2684. modulesInvitesDescription: "管理和应用邀请码的模块。",
  2685. modulesWalletLabel: "钱包",
  2686. modulesWalletDescription: "管理你的数字资产 (ECOin) 的模块。",
  2687. modulesLegacyLabel: "密钥",
  2688. modulesLegacyDescription: "快速安全地管理你的私钥的模块。",
  2689. modulesCipherLabel: "加密器",
  2690. modulesCipherDescription: "使用共享密码对文本进行对称加密和解密的模块。",
  2691. modulesBookmarksLabel: "书签",
  2692. modulesBookmarksDescription: "发现和管理书签的模块。",
  2693. modulesVideosLabel: "视频",
  2694. modulesVideosDescription: "发现和管理视频的模块。",
  2695. modulesDocsLabel: "文档",
  2696. modulesDocsDescription: "发现和管理文档的模块。",
  2697. modulesAudiosLabel: "音频",
  2698. modulesAudiosDescription: "发现和管理音频的模块。",
  2699. modulesTagsLabel: "标签",
  2700. modulesTagsDescription: "发现和探索分类模式(标签)的模块。",
  2701. modulesImagesLabel: "图片",
  2702. modulesImagesDescription: "发现和管理图片的模块。",
  2703. modulesTrendingLabel: "热门",
  2704. modulesTrendingDescription: "探索最受欢迎内容的模块。",
  2705. modulesEventsLabel: "活动",
  2706. modulesEventsDescription: "发现和管理活动的模块。",
  2707. modulesTasksLabel: "任务",
  2708. modulesTasksDescription: "发现和管理任务的模块。",
  2709. modulesMarketLabel: "市场",
  2710. modulesMarketDescription: "交换商品或服务的模块。",
  2711. modulesShopsLabel: "商店",
  2712. modulesShopsDescription: "管理和发现商店的模块。",
  2713. modulesTribesLabel: "部落",
  2714. modulesTribesDescription: "探索或创建部落(群组)的模块。",
  2715. modulesVotationsLabel: "投票",
  2716. modulesVotationsDescription: "发现和管理投票的模块。",
  2717. modulesReportsLabel: "报告",
  2718. modulesReportsDescription: "管理和追踪与问题、漏洞、滥用和内容警告相关报告的模块。",
  2719. modulesOpinionsLabel: "观点",
  2720. modulesOpinionsDescription: "发现和为观点投票的模块。",
  2721. modulesTransfersLabel: "转账",
  2722. modulesTransfersDescription: "发现和管理智能合约(转账)的模块。",
  2723. modulesFeedLabel: "动态",
  2724. modulesFeedDescription: "发现和分享短文(动态)的模块。",
  2725. modulesParliamentLabel: "议会",
  2726. modulesParliamentDescription: "选举政府和投票法律的模块。",
  2727. modulesCourtsLabel: "法庭",
  2728. modulesCourtsDescription: "解决冲突和发布裁决的模块。",
  2729. modulesPixeliaLabel: "Pixelia",
  2730. modulesPixeliaDescription: "在协作网格上绘画的模块。",
  2731. modulesAgendaLabel: "日程",
  2732. modulesAgendaDescription: "管理所有分配给你的项目的模块。",
  2733. modulesAILabel: "AI",
  2734. modulesAIDescription: "与名为 '42' 的 LLM 对话的模块。",
  2735. modulesForumLabel: "论坛",
  2736. modulesForumDescription: "发现和管理论坛的模块。",
  2737. modulesJobsLabel: "工作",
  2738. modulesJobsDescription: "发现和管理工作的模块。",
  2739. modulesProjectsLabel: "项目",
  2740. modulesProjectsDescription: "探索、众筹和管理项目的模块。",
  2741. modulesBankingLabel: "银行",
  2742. modulesBankingDescription: "确定 ECOIN 真实价值并使用公共金库分配 UBI 的模块。",
  2743. modulesFavoritesLabel: "收藏",
  2744. modulesFavoritesDescription: "管理你收藏内容的模块。",
  2745. fileTooLargeTitle: "文件过大",
  2746. fileTooLargeMessage: "文件超过了允许的最大大小(50 MB)。请选择较小的文件。",
  2747. goBack: "返回",
  2748. directConnect: "直接连接",
  2749. directConnectDescription: "通过输入对方的 IP 地址、端口和公钥直接连接到节点。该节点将被添加为已关注的连接。",
  2750. peerHost: "IP / 主机名",
  2751. peerPort: "端口(默认:8008)",
  2752. peerPublicKey: "公钥 (@...ed25519)",
  2753. connectAndFollow: "连接",
  2754. deviceSourceLabel: "设备来源",
  2755. modulesPresetTitle: "常用配置",
  2756. modulesPreset_minimal: "极简",
  2757. modulesPreset_basic: "基础",
  2758. modulesPreset_social: "社交",
  2759. modulesPreset_economy: "经济",
  2760. modulesPreset_full: "完整",
  2761. statsCarbonFootprintTitle: "碳足迹",
  2762. statsCarbonFootprintNetwork: "网络碳足迹",
  2763. statsCarbonFootprintYours: "你的碳足迹",
  2764. statsCarbonTombstone: "墓碑碳足迹",
  2765. feedSuccessMsg: "动态发布成功!",
  2766. dominantOpinionLabel: "主流观点",
  2767. uploadMedia: "上传媒体(最大:50MB)",
  2768. feedOpenDiscussion: "公开讨论",
  2769. feedDetailTitle: "动态",
  2770. feedPostComment: "发表评论",
  2771. courtsRespondentInvalid: "必须是有效的 SSB ID (@...ed25519)",
  2772. noComments: "还没有评论",
  2773. mapsLabel: "地图",
  2774. mapTitle: "地图",
  2775. mapDescription: "在您的网络中探索和管理离线地图。",
  2776. mapMineSectionTitle: "我的地图",
  2777. mapCreateSectionTitle: "创建地图",
  2778. mapUpdateSectionTitle: "更新地图",
  2779. mapAllSectionTitle: "地图",
  2780. mapRecentSectionTitle: "最近的地图",
  2781. mapFavoritesSectionTitle: "收藏",
  2782. mapFilterAll: "全部",
  2783. mapFilterMine: "我的",
  2784. mapFilterRecent: "最近",
  2785. mapFilterFavorites: "收藏",
  2786. mapUploadButton: "创建地图",
  2787. mapCreateButton: "创建地图",
  2788. mapUpdateButton: "更新",
  2789. mapDeleteButton: "删除",
  2790. mapAddFavoriteButton: "添加收藏",
  2791. mapRemoveFavoriteButton: "取消收藏",
  2792. mapLatLabel: "纬度",
  2793. mapLatPlaceholder: "例如 39.9042",
  2794. mapLngLabel: "经度",
  2795. mapLngPlaceholder: "例如 116.4074",
  2796. mapDescriptionLabel: "描述",
  2797. mapDescriptionPlaceholder: "描述地图或位置...",
  2798. mapTypeLabel: "地图类型",
  2799. mapTypeSingle: "单一(仅初始位置)",
  2800. mapTypeOpen: "开放(任何人可添加标记)",
  2801. mapTypeClosed: "封闭(仅创建者可添加标记)",
  2802. mapTagsLabel: "标签",
  2803. mapTagsPlaceholder: "输入以逗号分隔的标签",
  2804. mapUrlLabel: "地图链接",
  2805. mapPickCoordLabel: "或在网格上选择位置:",
  2806. mapMarkersLabel: "标记",
  2807. mapMarkersTitle: "标记",
  2808. mapMarkerDefault: "标记",
  2809. mapMarkerLatLabel: "标记纬度",
  2810. mapMarkerLngLabel: "标记经度",
  2811. mapMarkerLabelField: "标记名称",
  2812. mapMarkerLabelPlaceholder: "描述此标记...",
  2813. markerImageLabel: "标记图片",
  2814. mapAddMarkerTitle: "添加标记",
  2815. mapAddMarkerButton: "添加标记",
  2816. mapCleanMarkerButton: "Clean Marker",
  2817. mapApplyZoom: "应用缩放",
  2818. mapSearchPlaceholder: "搜索描述、标签、作者...",
  2819. mapSearchButton: "搜索",
  2820. mapUpdatedAt: "已更新",
  2821. mapNoMatch: "没有匹配的地图。",
  2822. noMaps: "没有可用的地图。",
  2823. mapLocationTitle: "位置",
  2824. mapVisitLabel: "访问地图",
  2825. typeMap: "地图",
  2826. typeMapMarker: "地图标记",
  2827. modulesMapLabel: "地图",
  2828. modulesMapDescription: "管理和分享离线地图的模块。",
  2829. padsTitle: "协作板",
  2830. padTitle: "协作板",
  2831. modulesPadsLabel: "协作板",
  2832. modulesPadsDescription: "管理协作文本编辑器的模块。",
  2833. padFilterAll: "全部",
  2834. padFilterMine: "我的",
  2835. padFilterRecent: "最近",
  2836. padFilterOpen: "开放",
  2837. padFilterClosed: "关闭",
  2838. padCreate: "创建协作板",
  2839. padUpdate: "更新协作板",
  2840. padDelete: "删除协作板",
  2841. padTitleLabel: "标题",
  2842. padTitlePlaceholder: "输入协作板标题...",
  2843. padStatusLabel: "状态",
  2844. padStatusOpen: "开放",
  2845. padStatusInviteOnly: "仅限受邀者",
  2846. padStatusClosed: "关闭",
  2847. padDeadlineLabel: "截止日期",
  2848. padTagsLabel: "标签",
  2849. padTagsPlaceholder: "标签1, 标签2, ...",
  2850. padMembersLabel: "成员",
  2851. padVisitPad: "访问协作板",
  2852. padShareUrl: "分享链接",
  2853. padCreated: "创建时间",
  2854. padAuthor: "作者",
  2855. padGenerateCode: "生成邀请码",
  2856. padInviteCodeLabel: "邀请码",
  2857. padInviteCodePlaceholder: "输入邀请码...",
  2858. padValidateInvite: "验证",
  2859. padStartEditing: "开始编辑!",
  2860. padEditorPlaceholder: "开始写作...",
  2861. padSubmitEntry: "提交",
  2862. padNoEntries: "暂无内容。",
  2863. padAllSectionTitle: "全部协作板",
  2864. padMineSectionTitle: "我的协作板",
  2865. padRecentSectionTitle: "最近协作板",
  2866. padOpenSectionTitle: "开放协作板",
  2867. padClosedSectionTitle: "关闭协作板",
  2868. padCreateSectionTitle: "创建新协作板",
  2869. padUpdateSectionTitle: "更新协作板",
  2870. padInviteGenerated: "邀请码已生成",
  2871. typePad: "协作板",
  2872. padNew: "新建",
  2873. padAddFavorite: "添加到收藏",
  2874. padRemoveFavorite: "从收藏中移除",
  2875. padClose: "关闭记事本",
  2876. padBackToEditor: "返回编辑器",
  2877. padSearchPlaceholder: "搜索共享文本...",
  2878. modulesChatsLabel: "聊天",
  2879. modulesChatsDescription: "发现和管理加密聊天室的模块。",
  2880. typeChat: "聊天",
  2881. typeChatMessage: "聊天消息",
  2882. chatLabel: "聊天",
  2883. chatMessageLabel: "聊天消息",
  2884. chatsTitle: "聊天",
  2885. chatMineSectionTitle: "Your Chats",
  2886. chatRecentTitle: "Recent Chats",
  2887. chatFavoritesTitle: "收藏",
  2888. chatOpenTitle: "Open Chats",
  2889. chatClosedTitle: "Closed Chats",
  2890. chatDescription: "描述",
  2891. chatCategory: "类别",
  2892. chatStatus: "状态",
  2893. chatFilterAll: "全部",
  2894. chatFilterMine: "我的",
  2895. chatFilterRecent: "最近",
  2896. chatFilterFavorites: "收藏",
  2897. chatFilterOpen: "开放",
  2898. chatFilterClosed: "已关闭",
  2899. chatCreate: "创建聊天",
  2900. chatUpdate: "更新聊天",
  2901. chatDelete: "删除聊天",
  2902. chatClose: "关闭聊天",
  2903. chatVisitChat: "访问聊天",
  2904. chatUntitled: "无标题聊天",
  2905. chatNoItems: "未找到聊天。",
  2906. chatParticipants: "参与者",
  2907. chatStartChatting: "开始聊天!",
  2908. chatGenerateCode: "生成代码",
  2909. chatShareUrl: "分享链接",
  2910. chatCreatedAt: "创建时间",
  2911. chatSearchPlaceholder: "搜索聊天...",
  2912. chatStatusOpen: "开放",
  2913. chatStatusInviteOnly: "仅限邀请",
  2914. chatStatusClosed: "已关闭",
  2915. chatSendMessage: "发送",
  2916. chatMessagePlaceholder: "输入您的消息...",
  2917. chatNoMessages: "暂无消息。",
  2918. chatLeave: "离开聊天",
  2919. chatInviteCodeLabel: "输入邀请码",
  2920. chatJoinByInvite: "加入",
  2921. chatTitlePlaceholder: "聊天标题",
  2922. chatDescriptionPlaceholder: "聊天描述",
  2923. chatTagsPlaceholder: "标签1, 标签2",
  2924. chatImageLabel: "选择图片文件 (.jpeg, .jpg, .png, .gif)",
  2925. chatInviteCode: "邀请码",
  2926. chatAuthor: "作者",
  2927. chatCreated: "创建",
  2928. chatAddFavorite: "添加到收藏",
  2929. chatRemoveFavorite: "从收藏中移除",
  2930. chatPM: "私信",
  2931. chatStatusLabel: "状态",
  2932. chatCategoryLabel: "类别",
  2933. chatParticipantsLabel: "参与者",
  2934. gamesTitle: "游戏",
  2935. gamesDescription: "发现并玩一些游戏。",
  2936. gamesFilterAll: "全部",
  2937. gamesPlayButton: "开始游戏!",
  2938. gamesBackToGames: "返回游戏",
  2939. modulesGamesLabel: "游戏",
  2940. modulesGamesDescription: "用于发现和玩游戏的模块。",
  2941. gamesCocolandTitle: "Cocoland",
  2942. gamesCocolandDesc: "一颗有眼睛的椰子跳过棕榈树,收集ECOins。",
  2943. gamesTheFlowTitle: "ECOinflow",
  2944. gamesTheFlowDesc: "通过验证者、商店和累积器将PUB连接到居民。抵御CBDC威胁!",
  2945. gamesSpaceInvadersTitle: "Space Invaders",
  2946. gamesSpaceInvadersDesc: "阻止外星人入侵!在入侵者抵达地面之前击落它们。",
  2947. gamesArkanoidTitle: "Arkanoid",
  2948. gamesArkanoidDesc: "用你的球拍和球打破所有砖块。经典街机挑战。",
  2949. gamesPingPongTitle: "PingPong",
  2950. gamesPingPongDesc: "与AI对战的经典乒乓球。先得5分者获胜。",
  2951. gamesOutrunTitle: "Outrun",
  2952. gamesOutrunDesc: "与时间赛跑!躲避交通障碍,在时间用完前到达终点。",
  2953. gamesAsteroidsTitle: "Asteroids",
  2954. gamesAsteroidsDesc: "驾驶飞船穿越小行星带。在它们撞上你之前将其摧毁。",
  2955. gamesTikTakToeTitle: "TikTakToe",
  2956. gamesTikTakToeDesc: "与AI对战石头、剪刀、布。三局两胜获胜。",
  2957. gamesFlipFlopTitle: "FlipFlop",
  2958. gamesFlipFlopDesc: "抛硬币,猜正面还是反面。你有多幸运?",
  2959. games8BallTitle: "8Ball Pool",
  2960. games8BallDesc: "Top-down pool. Click to aim, hold to charge power. Pot all balls in the fewest shots.",
  2961. gamesArtilleryTitle: "Artillery",
  2962. gamesArtilleryDesc: "Aim your cannon, factor in the wind, and hit the target. 5 rounds, fewest shots wins.",
  2963. gamesLabyrinthTitle: "Labyrinth",
  2964. gamesLabyrinthDesc: "Escape the maze before your moves run out. Each level gets bigger and harder.",
  2965. gamesCocomanTitle: "Cocoman",
  2966. gamesCocomanDesc: "Eat all the dots, avoid the ghosts. Turn-based Pac-Man — every key press counts.",
  2967. gamesTetrisTitle: "Tetris",
  2968. gamesAudioPendulumTitle: "Audio Pendulum",
  2969. gamesAudioPendulumDesc: "Chaotic physics simulator with real-time audio synthesis. Angular velocities become frequencies, peaks become drum hits. No two simulations sound alike.",
  2970. gamesTetrisDesc: "Classic falling blocks. Clear lines to score. How long can you last?",
  2971. gamesQuakeTitle: "Quake Arena",
  2972. gamesQuakeDesc: "First-person raycasting arena. Move and shoot your way through waves of enemies.",
  2973. gamesFilterScoring: "SCORING",
  2974. gamesHallOfFame: "Hall of Fame",
  2975. gamesHallPlayer: "Player",
  2976. gamesHallScore: "Score",
  2977. gamesNoScores: "No scores yet.",
  2978. calendarsTitle: "日历",
  2979. calendarTitle: "日历",
  2980. modulesCalendarsLabel: "日历",
  2981. modulesCalendarsDescription: "用于发现和管理日历的模块。",
  2982. typeCalendar: "日历",
  2983. calendarFilterAll: "全部",
  2984. calendarFilterMine: "我的",
  2985. calendarFilterOpen: "开放",
  2986. calendarFilterClosed: "关闭",
  2987. calendarFilterRecent: "最近",
  2988. calendarFilterFavorites: "收藏",
  2989. calendarCreate: "创建日历",
  2990. calendarUpdate: "更新",
  2991. calendarDelete: "删除",
  2992. calendarTitleLabel: "标题",
  2993. calendarTitlePlaceholder: "日历标题...",
  2994. calendarStatusLabel: "状态",
  2995. calendarStatusOpen: "开放",
  2996. calendarStatusClosed: "关闭",
  2997. calendarDeadlineLabel: "Deadline",
  2998. calendarTagsLabel: "标签",
  2999. calendarTagsPlaceholder: "标签1, 标签2...",
  3000. calendarParticipantsLabel: "参与者",
  3001. calendarParticipantsCount: "参与者",
  3002. calendarVisitCalendar: "访问日历",
  3003. calendarCreated: "已创建",
  3004. calendarAuthor: "作者",
  3005. calendarJoin: "加入",
  3006. calendarJoined: "已加入",
  3007. calendarAddDate: "添加日期",
  3008. calendarAddNote: "添加笔记",
  3009. calendarDateLabel: "日期",
  3010. calendarDatePlaceholder: "描述这个日期...",
  3011. calendarNoteLabel: "笔记",
  3012. calendarNotePlaceholder: "添加笔记...",
  3013. calendarFirstDateLabel: "日期",
  3014. calendarFirstNoteLabel: "备注",
  3015. calendarIntervalLabel: "Interval",
  3016. calendarIntervalWeekly: "Weekly",
  3017. calendarIntervalMonthly: "Monthly",
  3018. calendarIntervalYearly: "Yearly",
  3019. calendarFormDescription: "描述",
  3020. calendarNoDates: "尚未添加日期。",
  3021. calendarNoNotes: "暂无笔记。",
  3022. calendarsNoItems: "未找到日历。",
  3023. calendarsDescription: "在您的网络中发现和管理日历。",
  3024. calendarMonthPrev: "← 上一月",
  3025. calendarMonthNext: "下一月 →",
  3026. calendarMonthLabel: "日期",
  3027. calendarsShareUrl: "分享链接",
  3028. calendarAllSectionTitle: "所有日历",
  3029. calendarRecentSectionTitle: "最近的日历",
  3030. calendarFavoritesSectionTitle: "收藏",
  3031. calendarMineSectionTitle: "你的日历",
  3032. calendarOpenSectionTitle: "开放日历",
  3033. calendarClosedSectionTitle: "关闭日历",
  3034. calendarCreateSectionTitle: "创建新日历",
  3035. calendarUpdateSectionTitle: "更新日历",
  3036. calendarAddFavorite: "添加到收藏",
  3037. calendarDeleteNote: "Delete",
  3038. calendarRemoveFavorite: "从收藏移除",
  3039. calendarSearchPlaceholder: "搜索日历...",
  3040. calendarAddEntry: "添加条目",
  3041. calendarLeave: "离开日历",
  3042. statsCalendar: "日历",
  3043. statsCalendarDate: "日历日期",
  3044. statsCalendarNote: "日历笔记"
  3045. }
  3046. };