// ==UserScript== // @name AO3 汉化插件 // @namespace https://github.com/V-Lipset/ao3-chinese // @description 中文化 AO3 界面,可调用 ChatGLM 实现简介、注释、评论以及全文翻译。 // @version 1.0.0-2025-07-01 // @author V-Lipset // @license GPL-3.0 // @match https://archiveofourown.org/* // @icon https://archiveofourown.org/favicon.ico // @supportURL https://github.com/V-Lipset/ao3-chinese/issues // @connect open.bigmodel.cn // @run-at document-start // @grant GM_xmlhttpRequest // @grant GM_getValue // @grant GM_setValue // @grant GM_registerMenuCommand // @grant GM_unregisterMenuCommand // @grant GM_notification // @downloadURL https://update.greasyfork.icu/scripts/541509/AO3%20%E6%B1%89%E5%8C%96%E6%8F%92%E4%BB%B6.user.js // @updateURL https://update.greasyfork.icu/scripts/541509/AO3%20%E6%B1%89%E5%8C%96%E6%8F%92%E4%BB%B6.meta.js // ==/UserScript== (function (window, document, undefined) { 'use strict'; /****************** 全局配置区 ******************/ const FeatureSet = { enable_RegExp: GM_getValue('enable_RegExp', true), enable_transDesc: GM_getValue('enable_transDesc', false), }; const CONFIG = { LANG: 'zh-CN', PAGE_MAP: { 'archiveofourown.org': 'ao3' }, SPECIAL_SITES: [], OBSERVER_CONFIG: { childList: true, subtree: true, characterData: true, attributeFilter: ['value', 'placeholder', 'aria-label', 'data-confirm', 'title'] }, // 文本分块与请求限流的配置 CHUNK_SIZE: 1200, // 每次请求最大文本长度 PARAGRAPH_LIMIT: 4, // 每次请求最大段落数 REQUEST_DELAY: 200, // 每次API请求之间的延迟(毫秒) transEngine: 'chatglm_official', TRANS_ENGINES: { chatglm_official: { name: 'ChatGLM', url_api: 'https://open.bigmodel.cn/api/paas/v4/chat/completions', method: 'POST', headers: { 'Content-Type': 'application/json' }, getRequestData: (text) => { let customInstructions = ''; const customDictString = GM_getValue('chatglm_custom_dict', '{}'); try { const customDict = JSON.parse(customDictString); const rules = Object.entries(customDict) .map(([key, value]) => `"${key}" must be translated as "${value}"`) .join(', '); if (rules) { customInstructions = `\n\nTranslation Rules: You must follow these rules strictly. ${rules}.`; } } catch (e) { /* 忽略格式错误的词典 */ } // 应用System Prompt和Prompt模板 const system_prompt = `You are an expert translator specializing in fanfiction and online literature from various languages. Your primary function is to accurately identify the source language of a given text and then translate it into natural, fluent Simplified Chinese. You must preserve the original's tone, cultural nuances, idiomatic expressions, and any fandom-specific terminology. Your output must be *only* the translated text, without any additional notes, explanations, or language identification labels.${customInstructions}`; const user_prompt = `Translate the following text to Simplified Chinese, providing only the translation itself:\n\n${text}`; return { model: "glm-4-flash", messages: [ { "role": "system", "content": system_prompt }, { "role": "user", "content": user_prompt } ], stream: false, temperature: 0, }; }, responseIdentifier: 'choices[0].message.content', } } }; /****************** 词库区 (I18N) ******************/ const monthMap = { 'Jan': '1', 'Feb': '2', 'Mar': '3', 'Apr': '4', 'May': '5', 'Jun': '6', 'Jul': '7', 'Aug': '8', 'Sep': '9', 'Oct': '10', 'Nov': '11', 'Dec': '12' }; const I18N = { 'conf': { ignoreMutationSelectorPage: { '*': ['.userstuff .revised.at', '.kudos_count', '.bookmark_count', '.comment_count', '.hit_count', '.view_count'], 'works_show': ['.stats .hits', '.stats .kudos'], }, ignoreSelectorPage: { '*': ['script', 'style', 'noscript', 'iframe', 'canvas', 'video', 'audio', 'img', 'svg', 'pre', 'code', '.userstuff.workskin', '.workskin', '[data-translated-by-custom-function]'], 'works_show': ['.dropdown.actions-menu ul', '.userstuff'], 'admin_posts_show': ['.userstuff'], 'tag_sets_index': ['h2.heading', 'dl.stats'], 'tag_sets_new': ['h4.heading > label[for*="freeform"]'], 'faq_page': ['.userstuff'], 'wrangling_guidelines_page': ['.userstuff'], 'tos_page': ['#tos.userstuff'], 'content_policy_page': ['#content.userstuff'], 'privacy_policy_page': ['#privacy.userstuff'], 'dmca_policy_page': ['#DMCA.userstuff'], 'tos_faq_page': ['.admin.userstuff'], 'abuse_reports_new': ['.userstuff'], 'support_page': ['.userstuff'], 'known_issues_page': ['.admin.userstuff'], }, characterDataPage: ['common', 'works_show', 'users_dashboard'], rePagePath: /^\/([a-zA-Z0-9_-]+)(?:\/([a-zA-Z0-9_-]+))?/ }, 'zh-CN': { 'title': { 'static': {}, 'regexp': [] }, 'public': { 'static': { // 基本 'Archive of Our Own': 'AO3 作品库', 'Fandoms': '同人圈', 'All Fandoms': '所有同人圈', 'Browse': '浏览', 'Works': '作品', 'Bookmarks': '书签', 'Tags': '标签', 'Collections': '合集', 'Search': '搜索', 'People': '用户', 'About': '关于', 'About Us': '关于我们', 'News': '新的动态', 'FAQ': '常见问题', 'Wrangling Guidelines': '整理指南', 'Donate or Volunteer': '捐赠/成为志愿者', 'Recent Works': '最近作品', 'Recent Bookmarks': '最近书签','Collections:': '合集:', 'Bookmarker\'s Tags:': '书签创建者的标签:', 'Bookmarker\'s Collections:': '书签创建者的合集:','Completed': '已完成', 'Bookmark Tags:': '书签标签:', 'Complete Work': '已完结', 'Work in Progress': '连载中', 'Public Bookmark': '公开书签', 'Most Popular': '最常用','Tag Sets': '标签集', 'Warnings': '预警', 'Find your favorites': '寻找喜欢的内容', // 登录 'Log In': '登录', 'Log in': '登录', 'Sign Up': '注册', 'User': '用户', 'Username or email:': '用户名或电子邮箱:', 'Password:': '密码:', 'Remember Me': '记住我', 'Remember me': '记住我', 'Forgot password?': '忘记密码?', 'Get an Invitation': '获取邀请', // 忘记密码 'Forgotten your password?': '忘记您的密码了吗?', 'If you\'ve forgotten your password, we can send instructions that will allow you to reset it. Please tell us the username or email address you used when you signed up for your Archive account.': '如果您忘记了密码,我们可以发送允许您重置密码的邮件说明。请输入您注册 AO3 帐户时使用的用户名或电子邮箱地址。', 'Reset Password': '重置密码', // 星期 'Mon': '周一', 'Tue': '周二', 'Wed': '周三', 'Thu': '周四', 'Fri': '周五', 'Sat': '周六', 'Sun': '周日', 'Monday': '星期一', 'Tuesday': '星期二', 'Wednesday': '星期三', 'Thursday': '星期四', 'Friday': '星期五', 'Saturday': '星期六', 'Sunday': '星期日', // 月份 'Jan': '1月', 'Feb': '2月', 'Mar': '3月', 'Apr': '4月', 'May': '5月', 'Jun': '6月', 'Jul': '7月', 'Aug': '8月', 'Sep': '9月', 'Oct': '10月', 'Nov': '11月', 'Dec': '12月', 'January': '1月', 'February': '2月', 'March': '3月', 'April': '4月', 'May': '5月', 'June': '6月', 'July': '7月', 'August': '8月', 'September': '9月', 'October': '10月', 'November': '11月', 'December': '12月', // 页脚 'Footer': '页脚', 'Customize': '自定义', 'Default': '默认界面', 'Low Vision Default': '低视力默认界面', 'Reversi': 'Reversi 界面', 'Snow Blue': 'Snow Blue 界面', 'About the Archive': '关于作品库', 'Site Map': '站点地图', 'Diversity Statement': '多元化声明', 'Terms of Service': '服务条款', 'Content Policy': '内容政策', 'Privacy Policy': '隐私政策', 'DMCA Policy': 'DMCA 政策', 'TOS FAQ': '服务条款常见问题', '↑ Top': '↑ 回到顶部', 'Frequently Asked Questions': '常见问题', 'Contact Us': '联系我们', 'Policy Questions & Abuse Reports': '政策咨询与滥用举报', 'Technical Support & Feedback': '技术支持与反馈', 'Development': '开发', 'Known Issues': '已知问题', 'View License': '查看许可证', 'OTW': 'OTW', 'Organization for Transformative Works': '再创作组织', // 反馈 'Support and Feedback': '支持与反馈', 'FAQs & Tutorials': '常见问题与教程', 'Release Notes': '更新日志', // 动态 'News': '最新动态', 'All News': '全部动态', 'Published': '发布于', 'Comments': '评论', 'Read more...': '更多', 'Tag:': '标签:', 'Go': '确定', 'RSS Feed': 'RSS 订阅', 'Follow us': '关注我们', 'What\'s New': '新增内容', 'Enter Comment': '输入评论', 'Last Edited': '最后编辑', // 同人圈 'Anime & Manga': '动漫及漫画', 'Books & Literature': '书籍及文学', 'Cartoons & Comics & Graphic Novels': '卡通,漫画及图像小说', 'Celebrities & Real People': '明星及真人', 'Movies': '电影', 'Music & Bands': '音乐及乐队', 'Other Media': '其她媒体', 'Theater': '戏剧', 'TV Shows': '电视剧', 'Video Games': '电子游戏', 'Uncategorized Fandoms': '未分类的同人圈', '> Anime & Manga': ' > 动漫及漫画', '> Books & Literature': ' > 书籍及文学', '> Cartoons & Comics & Graphic Novels': ' > 卡通,漫画及图像小说', '> Celebrities & Real People': ' > 明星及真人', '> Movies': ' > 电影', '> Music & Bands': ' > 音乐及乐队', '> Other Media': ' > 其她媒体', '> Theater': ' > 戏剧', '> TV Shows': ' > 电视剧', '> Video Games': ' > 电子游戏', '> Uncategorized Fandoms': ' > 未分类的同人圈', // 个人中心 'My Dashboard': '个人中心', 'My Subscriptions': '订阅列表', 'My History': '历史记录', 'My Preferences': '偏好设置', 'Dashboard': '仪表盘', 'Preferences': '偏好设置', 'Skins': '我的界面', 'Works in Collections': '合集中的作品', 'Drafts': '草稿', 'Please note:': '注意:', 'Unposted drafts are only saved for a month from the day they are first created, and then deleted from the Archive.': '未发布的草稿自创建日起仅保留一个月,之后将被从 Archive 中删除。', 'Series': '系列', 'Bookmark External Work': '为外部作品创建书签', 'Sorry, there were no collections found.': '抱歉,未找到任何合集。', 'Manage Collection Items': '管理合集', 'New Collection': '新建合集', 'Works in Challenges/Collections': '参与挑战/合集的作品', 'Awaiting Collection Approval': '等待合集方审核', 'Awaiting User Approval': '等待用户确认', 'Rejected by Collection': '合集方已拒绝', 'Rejected by User': '用户已拒绝', 'Approved': '已通过', 'Nothing to review here!': '当前无待审内容!', 'Inbox': '消息中心', 'Filter by read': '按阅读状态筛选', 'Show all': '显示全部', 'Show unread': '显示未读', 'Show read': '显示已读', 'Filter by replied to': '按回复状态筛选', 'Show all': '显示全部', 'Show without replies': '显示未回复', 'Show replied to': '显示已回复', 'Sort by date': '按日期排序', 'Newest first': '最新优先', 'Oldest first': '最早优先', 'Filter': '筛选', 'Statistics': '数据统计', 'History': '历史记录', 'Full History': '全部历史记录', 'Marked for Later': '稍后阅读', 'Clear History': '清空历史记录', 'Delete from History': '从历史记录中删除', 'Subscriptions': '订阅列表', 'All Subscriptions': '全部订阅', 'Series Subscriptions': '系列订阅', 'User Subscriptions': '用户订阅', 'Work Subscriptions': '作品订阅', 'Delete All Subscriptions': '删除所有订阅', 'Sign-ups': '报名挑战', 'Assignments': '任务中心', 'My Assignments': '任务中心', 'Looking for prompts you claimed in a prompt meme? Try': '想查看您在“接梗挑战”中认领的创意提示?请前往', 'My Claims': '我的认领', 'Unfulfilled Claims': '未完成的认领', 'Fulfilled Claims': '已完成的认领', 'Looking for assignments you were given for a gift exchange? Try': '想查看您在赠文交换活动中被分配的任务?请前往', 'Claims': '我的认领', 'Related Works': '相关作品', 'Gifts': '赠文', 'Accepted Gifts': '已接受的赠文', 'Refused Gifts': '已拒绝的赠文', 'Choices': '用户选项', 'Pitch': '创作与发布', 'Catch': '互动与追踪', 'Switch': '活动与交换', 'My Works': '我的作品', 'My Series': '我的系列', 'My Bookmarks': '我的书签', 'My Collections': '我的合集', 'History': '历史记录', 'Log Out': '登出', 'Post New': '发布新作', 'Edit Works': '编辑作品', 'Subscribe': '订阅', 'Invitations': '邀请好友', 'My pseuds:': '笔名:', 'I joined on:': '加入于:', 'My user ID is:': '用户ID:', 'Edit My Works': '编辑作品', 'Edit My Profile': '编辑资料', 'Set My Preferences': '设置偏好', 'Manage My Pseuds': '管理笔名', 'Delete My Account': '删除账号', 'Blocked Users': '已屏蔽用户', 'Muted Users': '已静音用户', 'Change Username': '修改用户名', 'Change Password': '修改密码', 'Change Email': '修改邮箱', 'Privacy': '隐私设置', 'Show my email address to other people.': '向其她人显示我的邮箱地址', 'Show my date of birth to other people.': '向其她人显示我的出生日期', 'Hide my work from search engines when possible.': '尽可能地对搜索引擎隐藏我的作品', 'Hide the share buttons on my work.': '隐藏我作品中的分享按钮', 'Allow others to invite me to be a co-creator.': '允许其她人邀请我成为共同创作者', 'Display': '显示设置', 'Show me adult content without checking.': '无需确认即可显示成人内容', 'Show the whole work by default.': '默认显示全文', 'Hide warnings (you can still choose to show them).': '隐藏内容预警(仍可手动显示)', 'Hide additional tags (you can still choose to show them).': '隐藏附加标签(仍可手动显示)', 'Hide work skins (you can still choose to show them).': '隐藏作品界面(仍可手动显示)', 'Your site skin': '您的站点界面', 'Public Site Skins': '公开站点界面', 'Your time zone': '您所在的时区', 'Browser page title format': '浏览页面标题格式', 'Turn off emails about comments.': '关闭评论邮件通知', 'Turn off messages to your inbox about comments.': '关闭评论消息通知', 'Turn off copies of your own comments.': '关闭自己评论的副本通知', 'Turn off emails about kudos.': '关闭点赞邮件通知', 'Do not allow guests to reply to my comments on news posts or other users\' works (you can still control the comment settings for your works separately).': '不允许游客回复我在动态帖或其她用户作品中的评论(仍可单独调整自己作品的评论权限)', 'Collections, Challenges and Gifts': '合集、挑战与赠文设置', 'Allow others to invite my works to collections.': '允许其她人将我的作品加入合集', 'Allow anyone to gift me works.': '允许任何人向我赠送作品', 'Turn off emails from collections.': '关闭来自合集的邮件通知', 'Turn off inbox messages from collections.': '关闭来自合集的消息通知', 'Turn off emails about gift works.': '关闭有关赠文的邮件通知', 'Misc': '其她偏好设置', 'Turn on History.': '启用历史记录', 'Turn the new user help banner back on.': '重新显示新用户帮助横幅', 'Turn off the banner showing on every page.': '关闭每个页面的提示横幅', 'Update': '确定', 'My Site Skins': '我的站点界面', 'Create Site Skin': '创建站点界面', 'A site skin lets you change the way the Archive is presented when you are logged in to your account. You can use work skins to customize the way your own works are shown to others.': '站点界面可让您在登录账户后更改 Archive 的呈现方式。您也可以使用作品皮肤来自定义其她人查看您作品时的展示样式。', 'My Site Skins': '我的站点界面', 'My Work Skins': '我的作品界面', 'Public Work Skins': '公开作品界面', 'Create Work Skin': '创建作品界面', 'No site skins here yet!': '还没有站点界面!', 'No work skins here yet!': '还没有作品界面!', 'Why not try making one?': '为什么不试着去创建一个呢?', 'Inbox': '收件箱', 'Subscribed Works': '已订阅作品', 'Subscribed Series': '已订阅系列', // 作品搜索页 'Work Info': '作品信息', 'Date Posted': '发布日期', 'Date Updated': '更新日期', 'Completion status': '完成状态', 'All works': '所有作品', 'Complete works only': '仅完结作品', 'Works in progress only': '仅连载作品', 'Include crossovers': '包含跨圈作品', 'Exclude crossovers': '排除跨圈作品', 'Only crossovers': '仅限跨圈作品', 'Single Chapter': '单个章节', 'Rating': '分级', 'Categories': '分类', 'Other': '其她', 'Work Stats': '作品统计', 'Hits': '点击', 'Kudos': '点赞', 'Sort by': '排序方式', 'Best Match': '最佳匹配', 'Sort direction': '排序方向', 'Descending': '降序', 'Ascending': '升序', 'Work Search': '作品搜索', 'Any Field': '任意字段', 'Date': '日期', 'Crossovers': '跨圈作品', 'Language': '语言', 'Characters': '角色', 'Relationships': '关系', 'Additional Tags': '附加标签', // 用户搜索页 'Search all fields': '搜索所有字段', 'Name': '名称', 'Fandom': '同人圈', 'Search People': '搜索用户', // 标签搜索页 'Tag name': '标签名称', 'Find tags wrangled to specific canonical fandoms.': '查找已整理至特定规范同人圈的标签。', 'Type': '类型', 'Fandom': '同人圈', 'Character': '角色', 'Relationship': '关系', 'Freeform': '自由标签', 'Any type': '任意类型', 'Wrangling status': '整理状态', 'Canonical': '规范', 'Non-canonical': '非规范', 'Synonymous': '同义', 'Canonical or synonymous': '规范或同义', 'Non-canonical and non-synonymous': '非规范且非同义', 'Any status': '任意状态', 'Name': '名称', 'Date Created': '创建日期', 'Uses': '使用次数', 'Search Tags': '搜索标签', 'Title': '标题', 'Author': '作者', 'Artist': '画师', 'Author/Artist': '作者/画师', 'People Search': '用户搜索', 'Tag Search': '标签搜索', 'Work Tags': '作品标签', // 浏览 'Expand Fandoms List': '展开同人圈列表', 'Collapse Fandoms List': '收起同人圈列表', 'Recent works': '最近作品', 'Recent bookmarks': '最近书签', 'Expand Works List': '展开作品列表', 'Collapse Works List': '收起作品列表', 'Expand Bookmarks List': '展开书签列表', 'Collapse Booksmarks List': '收起书签列表', // 作品 'Series': '系列', 'Language:': '语言:', 'Words:': '字数:', 'Chapters:': '章节:', 'Comments:': '评论:', 'Kudos:': '点赞:', 'Bookmarks:': '书签:', 'Hits:': '点击:', 'Post': '发布', 'New Work': '新作品', 'Import Work': '导入作品', 'Edit': '编辑', 'Update': '更新', 'Delete': '删除', 'Cancel': '取消', 'Save': '保存', 'Submit': '提交', 'Filters': '筛选器', 'Sort By': '排序方式', 'Random': '随机', 'Creator': '创作者', 'Date Updated': '更新日期', 'Word Count': '字数统计', 'Summary': '简介', 'Notes': '注释', 'Work Text': '作品正文', 'Chapter Index': '章节索引', 'Full-page index': '整页索引', 'Entire Work': '完整作品', 'Next Chapter': '下一章', 'Previous Chapter': '上一章', 'kudos': ' 个赞', 'bookmark': ' 条书签', 'comment': ' 条评论', 'Published:': '发布于:', 'Completed:': '完结于:', 'Updated:': '更新于:', '← Previous': '← 上一页', 'Next →': '下一页 →', 'All fields are required. Your email address will not be published.': '所有字段均为必填。您的电子邮箱地址不会被公开。', 'Guest name': '访客名称', 'Guest email': '访客邮箱', 'Please enter your name.': '请输入您的名称', 'Please enter your email address.': '请输入您的电子邮箱地址', 'Hide Creator\'s Style': '隐藏创作者样式', 'Show Creator\'s Style': '显示创作者样式', 'top level comment': '置顶评论', 'Share Work': '分享作品', // 合集 'Collections in the Archive of Our Own': ' AO3 中的合集', 'Profile': '简介', 'Join': '加入', 'Leave': '退出', 'Open Challenges': '开放中的挑战', 'Open Collections': '开放中的合集', 'Closed Collections': '已截止的合集', 'Moderated Collections': '审核制合集', 'Unmoderated Collections': '非审核制合集', 'Unrevealed Collections': '未公开合集', 'Anonymous Collections': '匿名合集', 'Sort and Filter': '排序及筛选', 'Filter collections:': '筛选合集:', 'Filter by title or name': '按标题或名称筛选', 'Filter by fandom': '按同人圈筛选', 'Closed': '已截止', 'Yes': '是', 'No': '否', 'Either': '皆可', 'Collection Type': '合集类型', 'No Challenge': '无挑战', 'Any': '任意', 'Clear Filters': '清除筛选', // 书签 'Bookmark Search': '书签搜索', 'Start typing for suggestions!': '开始输入以获取建议', 'Searching...': '搜索中…', '(No suggestions found)': '未找到建议', 'Any field on work': '作品任意字段', 'Work tags': '作品标签', 'Type': '类型', 'Work': '作品', 'Work language': '作品语言', 'External Work': '外部作品', 'Date updated': '更新日期', 'Bookmark': '书签', 'Any field on bookmark': '书签任意字段', 'Bookmarker\'s tags': '书签创建者的标签', 'Bookmarker': '书签创建者', 'Bookmark type': '书签类型', 'Rec': '推荐', 'With notes': '含注释', 'Date Bookmarked': '书签创建日期', 'Date bookmarked': '书签创建日期', 'Search Bookmarks': '搜索书签', 'Search Results': '搜索结果', 'Edit Your Search': '修改搜索设置', 'Ratings': '分级', 'Include': '包括', 'Include Ratings': '包括分级', 'Other tags to include': '要包括的其她标签', 'Exclude': '排除', 'Other tags to exclude': '要排除的其她标签', 'More Options': '更多选项', 'Show only crossovers': '仅显示跨圈作品', 'Completion Status': '完成状态', 'Search within results': '在结果中搜索', 'Bookmarker\'s Tags': '书签创建者标签', 'Other work tags to include': '要包括的其她作品标签', 'Other bookmarker\'s tags to include': '要包括的其她书签创建者标签', 'Search bookmarker\'s tags and notes': '搜索书签创建者标签和注释', 'Other work tags to exclude': '要排除的其她作品标签', 'Other bookmarker\'s tags to exclude': '要排除的其她书签创建者标签', 'Bookmark types': '书签类型', 'Recs only': '仅推荐', 'Only bookmarks with notes': '仅含注释', 'All Bookmarks': '所有书签', 'Add To Collection': '添加到合集', 'Share': '分享', 'Private Bookmark': '私人书签', 'Your tags': '您的标签', 'The creator\'s tags are added automatically.': '创建者的标签会自动添加', 'Comma separated, 150 characters per tag': '以逗号分隔,每个标签最多 150 字符', 'Add to collections': '添加到合集', 'Private bookmark': '私人书签', 'Create': '创建', 'Bookmark was successfully deleted.': '书签已成功删除', 'Add Bookmark to collections': '将书签添加到合集', 'Collection name(s):': '合集名称:', 'collection name': '合集名称', 'Add': '添加', 'Back': '返回', 'Bookmark was successfully updated.': '书签已成功更新。', 'Share Bookmark': '分享书签', 'Close': '关闭', 'Bookmark Collections:': '书签合集:', // 系列 'Creators:': '创建者:', 'Series Begun:': '系列开始于:', 'Series Updated:': '系列更新于:', 'Stats:': '统计:', 'Works:': '作品:', 'Complete:': '完结:', // 语言 'Work Languages': '作品语言', 'Suggest a Language': '建议语言', // 界面 'You are now using the default Archive skin again!': '您已重新切换至 Archive 默认界面!', 'Revert to Default Skin': '恢复默认界面', 'Role:': '功能:', 'user': '用户', 'Media:': '媒体:', 'all': '全部', 'Condition:': '状态:', 'Normal': '正常', '(No Description Provided)': '(未提供描述)', 'Parent Skins': '母级界面', 'Use': '使用', 'Preview': '预览', 'Set For Session': '为当前会话设置', 'override': '覆盖', // 屏蔽与静音 'Block': '屏蔽', 'Unblock': '取消屏蔽', 'Mute': '静音', 'Unmute': '取消静音', 'Yes, Unmute User': '是的,取消静音', 'Yes, Mute User': '是的,静音用户', 'Yes, Unblock User': '是的,取消屏蔽', 'Yes, Block User': '是的,屏蔽用户', // 提示信息 'Follow the Archive on Twitter or Tumblr for status updates, and don\'t forget to check out the': '在 Twitter 或 Tumblr 上关注 Archive 以获取最新动态;同时别忘了查看', 'Organization for Transformative Works\' news outlets': ' 再创作组织 的动态发布渠道', 'for updates on our other projects!': ',了解我们其她项目的进展!', 'Your profile has been successfully updated': '您的个人资料已成功更新', 'We\'re sorry! Something went wrong.': '非常抱歉!操作未完成,请稍后重试。', 'Your preferences were successfully updated.': '您的偏好设置已成功更新。', 'Works and bookmarks listed here have been added to a collection but need approval from a collection moderator before they are listed in the collection.': '此处列出的作品和书签已添加至合集中,但需经合集管理员批准后才会在合集内显示。', 'Successfully logged out.': '已成功登出。', 'Successfully logged in.': '已成功登录。', 'Bookmark was successfully created. It should appear in bookmark listings within the next few minutes.': '书签已创建成功。它将在接下来的几分钟内出现在书签列表中。', 'Browse fandoms by media or favorite up to 20 tags to have them listed here!': '可按“媒介”浏览同人圈,或收藏最多 20 个标签,以便在这里显示!', 'You can search this page by pressing': '按', 'ctrl F': ' Ctrl + F ', 'cmd F': ' Cmd + F ,','': '', 'and typing in what you are looking for.': '输入关键词即可在本页搜索。', 'Sorry! We couldn\'t save this bookmark because:': '抱歉!我们无法保存此书签,因为', 'Pseud can\'t be blank': '笔名不能为空', 'The following challenges are currently open for sign-ups! Those closing soonest are at the top.': '以下挑战现已开放报名!即将截止的挑战排在最前面。', 'You currently have no works posted to the Archive. If you add some, you\'ll find information on this page about hits, kudos, comments, and bookmarks of your works.': '您当前没有任何已发布的作品。添加作品后,您可以在此页面查看作品的访问量、点赞、评论和书签情况。', 'Users can also see how many subscribers they have, but not the names of their subscribers or identifying information about other users who have viewed or downloaded their works.': '用户还可以查看自己的订阅者数量,但无法看到订阅者的姓名,也无法获取浏览或下载其作品的其她用户的任何身份信息。', 'This work could have adult content. If you continue, you have agreed that you are willing to see such content.': '此作品可能含有成人内容。若您选择“继续”,即表示您同意查看此类内容。', 'Yes, Continue': '是,继续', 'No, Go Back': '否,返回', 'Work successfully deleted from your history.': '该作品已成功从您的历史记录中删除。', 'Your history is now cleared.': '您的历史记录已清除。', 'You are already signed in.': '您已登录。', }, 'innerHTML_regexp': [ // 浏览 [ 'p', /^\s*These are some of the latest works posted to the Archive\. To find more works, choose a fandom<\/a> or try our advanced search<\/a>\.\s*(?:)?\s*$/s, '这里展示了一些最新发布的作品。要查看更多,请 选择一个同人圈尝试高级搜索 。' ], [ 'p', /^\s*These are some of the latest bookmarks created on the Archive\. To find more bookmarks,\s*choose a fandom<\/a>\s*or\s*try our advanced search<\/a>\.\s*(?:)?\s*$/s, '这里展示了一些最新创建的书签。要查看更多,请 选择一个同人圈尝试高级搜索 。' ], [ 'p', /^\s*These are some of the most popular tags used on the Archive\. To find more tags,\s*try our tag search<\/a>\.\s*$/s, '这里展示了一些最常用的标签。要查看更多,请 尝试标签搜索 。' ], [ 'h2.heading', /^\s*Chapter Index for\s+(.+?<\/a>)\s+by\s+()/s, '由 $1 创建书签'], ['li', /^\s*Part (\d+<\/strong>) of ()/, '$2 第 $1 部分'], ['h2.heading', /^New bookmark for (.*?<\/a>)/, '为 $1 创建新书签'], ['h5.heading a', /^(\d+)\s+works?$/s, '$1 篇作品'], ['h5.heading a', /^(\d+)\s+recs?$/s, '$1 条推荐'], ['h2.heading', /^\s*Items\s+by\s+(.+?)\s+in\s+Collections\s*$/s, '$1 在合集中的作品'], ['dd a', /^([\d,]+)\s+works?$/s, '$1 篇作品'], ['h2.heading', /^\s*([\d,]+)\s+Works?\s*$/s, '$1 篇作品'], ['h2.heading', /^\s*([\d,]+)\s+Collections?\s*$/s, '$1 个合集'], [ 'dt', /(<\/a>)\s*\(Work\)\s+by\s*()\s*\(Series\)\s+by\s*(]*>/g, '(访问受限)' ], // 书签 ['h4.heading', /(\s*
  • hide their works, series, bookmarks, and comments from anyone else<\/li>[\s\S]*?

    \s*To prevent a user from commenting on your works or replying to your comments elsewhere on the site, visit your Blocked Users page<\/a>\.\s*<\/p>[\s\S]*?

    [\s\S]*?instructions for reverting to the default site skin<\/a>\.\s*<\/p>\s*$/s, `

    您确定要静音 $1 吗?静音用户后:

    • 她们的作品、系列、书签和评论将完全对您隐藏;不会留下空白空间、占位文本或其她任何提示

    静音用户不会:

    • 阻止您接收来自该用户的评论或订阅邮件
    • 将她们的内容隐藏给其她任何人

    如需阻止某用户在您的作品上发表评论或在站点其她地方回复您的评论,请访问 已屏蔽用户页面

    请注意,如果您未使用默认站点界面,静音功能可能无法正常工作。要了解有关 如何恢复默认站点界面 的说明,请参阅 界面与 Archive 界面常见问题 。

    ` ], ['div.flash.notice', /^You have muted the user ([^<]+)\.$/s, '您已静音用户 $1 。' ], ['h2.heading', /^Block (.*)$/s, '屏蔽 $1' ], ['div.caution.notice', /^\s*

    \s*Are you sure you want to block<\/strong> ([^<]+)\?\s*Blocking a user prevents them from:\s*<\/p>[\s\S]*?

      \s*
    • commenting or leaving kudos on your works<\/li>\s*
    • replying to your comments anywhere on the site<\/li>\s*
    • giving you gift works outside of challenge assignments and claimed prompts<\/li>\s*<\/ul>[\s\S]*?

      Blocking a user will not:<\/p>[\s\S]*?

        \s*
      • hide their works or bookmarks from you<\/li>\s*
      • delete or hide comments they previously left on your works; you can delete these individually<\/li>\s*
      • hide their comments elsewhere on the site<\/li>\s*<\/ul>[\s\S]*?

        To hide a user's works, bookmarks, series, and comments from you, visit your Muted Users page<\/a>\.<\/p>\s*$/s, `

        您确定要屏蔽 $1 吗?屏蔽用户后,她们将无法:

        • 在您的作品上发表评论或留下点赞
        • 在站点任何地方回复您的评论
        • 在挑战分配和认领同人梗之外赠送作品给您

        屏蔽用户不会:

        • 隐藏您所屏蔽用户的作品或书签
        • 删除或隐藏她们之前在您作品上留下的评论;您可以逐条删除
        • 隐藏她们在站点其她地方的评论

        如需隐藏某用户的作品、书签、系列和评论,请访问 已静音用户页面

        ` ], ['p.actions', /Cancel<\/a>\s*/s, '取消 ' ], ['div.flash.notice', /^You have blocked the user ([^<]+)\.$/s, '您已屏蔽用户 $1 。' ], ['h2.heading', /^Unblock (.*)$/s, '取消屏蔽 $1' ], ['div.caution.notice', /^\s*

        \s*Are you sure you want to unblock<\/strong> ([^<]+)\?\s*Unblocking a user allows them to resume:\s*<\/p>[\s\S]*?

          \s*
        • commenting or leaving kudos on your works<\/li>\s*
        • replying to your comments anywhere on the site<\/li>\s*
        • giving you gift works outside of challenge assignments and claimed prompts<\/li>\s*<\/ul>\s*$/s, `

          您确定要取消屏蔽 $1 吗?取消屏蔽后对方将恢复以下权限:

          • 在您的作品上发表评论或留下点赞
          • 在站点任何地方回复您的评论
          • 在挑战分配和认领同人梗之外赠送作品给您
          ` ], ['div.flash.notice', /^You have unblocked the user ([^<]+)\.$/s, '您已取消屏蔽用户 $1 。' ], ['h2.heading', /^Unmute (.*)$/s, '取消静音 $1' ], ['div.caution.notice', /^\s*

          \s*Are you sure you want to unmute<\/strong> ([^<]+)\?\s*Unmuting a user allows you to:\s*<\/p>[\s\S]*?

            \s*
          • see their works, series, bookmarks, and comments on the site<\/li>\s*<\/ul>\s*$/s, `

            您确定要取消静音 $1 吗?取消静音后,您将可以:

            • 在站点上查看她们的作品、系列、书签和评论
            ` ], ['div.flash.notice', /^You have unmuted the user ([^<]+)\.$/s, '您已取消静音用户 $1 。' ], // 历史记录 [ 'h4.viewed.heading', /^\s*Last visited:<\/span>\s*(\d{1,2})\s+(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)\s+(\d{4})\s+\((.*?)\)\s+Visited\s+(once|(\d+)\s+times)(?:\s+\((Marked for Later\.)\))?\s*$/s, (match, day, monthAbbr, year, statusText, visitText, visitCount, markedForLaterText) => { const statusMap = { 'Latest version.': '最新版本', 'Minor edits made since then.': '此后有细微修改', 'Update available.': '有可用更新' }; const translatedDate = `${year}年${monthMap[monthAbbr]}月${day}日`; const translatedStatus = statusMap[statusText.trim()] || statusText.trim(); const translatedVisit = visitText === 'once' ? '访问 1 次' : `访问 ${visitCount} 次`; const translatedMarked = markedForLaterText ? '(已标记稍后阅读)' : ''; let result = `最近访问:${translatedDate}(${translatedStatus})。${translatedVisit}`; if (translatedMarked) { result += ` ${translatedMarked}`; } return result; } ], // 提示信息 [ '#modal .content p:has(a[href*="content#II.J"])', /\(For more information, see the Ratings and Warnings section of the AO3 Terms of Service<\/a>\.\)/s, '(要了解更多信息,请参阅 AO3 服务条款 的分级与预警部分 。)' ], ['div.flash.error', /Sorry, additional invitations are unavailable\. Please use the queue<\/a>! If you are the mod of a challenge currently being run on the Archive, please contact Support<\/a>\. If you are the maintainer of an at-risk archive, please contact Open Doors<\/a>\./s, '抱歉,暂时无法提供更多邀请。请 使用排队系统
            如果您是正在 Archive 举办挑战活动的管理员,请 联系支持
            如果您是处于风险 Archive 站点的维护者,请 联系 Open Doors 。'], ['div.flash.error', /^\s*Password resets are disabled for that user\.\s*For more information, please\s*\s*contact our Policy & Abuse team\s*<\/a>\.\s*$/s, '此用户的密码重置功能已被禁用。要了解更多信息,请 联系我们的策略与滥用团队。'], [ 'div.flash.error', /^\s*Your current session has expired and we can't authenticate your request\. Try logging in again, refreshing the page, or clearing your cache<\/a> if you continue to experience problems\.\s*$/s, '您当前的会话已过期,无法验证您的请求。如问题持续存在,请重新登录、刷新页面,或清除缓存。' ], ['h2.heading', /^Error 404$/, '错误 404'], ['h3.heading', /^The page you were looking for doesn't exist\.$/, '您查找的页面不存在。'], ['div.error-404 p', /^You may have mistyped the address or the page may have been deleted\.$/, '您可能输入了错误的地址或该页面已被删除。'], [ 'p.message.footnote', /^\s*If you accept cookies from our site and you choose "Yes, Continue", you will not be asked again during this session \(that is, until you close your browser\)\. If you log in you can store your preference and never be asked again\.\s*$/s, '如果您接受我们站点的 Cookie 并选择“是,继续”,在本会话期间(即关闭浏览器之前)将不会被再次询问。若您登录账号,可保存您的偏好,再也不会被询问。' ], [ 'p.notice', /^\s*Sorry, this work doesn't allow non-Archive users to comment\.\s+You can however still leave Kudos!\s*$/s, '抱歉,此作品不允许非 Archive 用户发表评论。但您仍可留下点赞!' ], [ 'p', /^\s*Reminder:<\/strong>\s*This site is in beta\. Things may break or crash without notice\.\s*Please report any pesky bugs and give us your feedback<\/a>!\s*$/s, '提示:本站处于测试阶段。功能可能会无预警地出现故障或崩溃。请报告任何恼人的 Bug 并 提供您的反馈 !' ], [ 'p', /^\s*Forgot your password or username\?\s*Reset password<\/a>\.\s*\s*Don't have an account\?\s*Request an invitation to join<\/a>\.?\s*$/s, '忘记您的密码或用户名? 重置密码
            还没有帐户? 获取邀请 。' ], [ 'label[for="reset_login"]', /^\s*Email address\s*or<\/strong>\s*username\s*$/s, '电子邮箱地址 用户名' ], ], 'regexp': [ [/^(\d+) kudos$/, '$1 个赞'], [/^(\d+) bookmark(?:s)?$/, '$1 条书签'], [/^(\d+) comment(?:s)?$/, '$1 条评论'], [/^(\d+) hit(?:s)?$/, '$1 次点击'], [/^Works by (.*)$/, '$1 的作品'], [/^Series by (.*)$/, '$1 系列'], [/^Bookmarks by (.*)$/, '$1 的书签'], [/^Collections by (.*)$/, '$1 的合集'], [/^Hi, (\w+)!$/, '您好,$1!'], [/^Works \((\d+)\)$/, '作品($1)'], [/^Drafts \((\d+)\)$/, '草稿($1)'], [/^Series \((\d+)\)$/, '系列($1)'], [/^Bookmarks \((\d+)\)$/, '书签($1)'], [/^Collections \((\d+)\)$/, '合集($1)'], [/^Inbox \((\d+)\)$/, '消息中心($1)'], [/^Sign-ups \((\d+)\)$/, '报名挑战($1)'], [/^Assignments \((\d+)\)$/, '任务中心($1)'], [/^Claims \((\d+)\)$/, '我的认领($1)'], [/^Related Works \((\d+)\)$/, '相关作品($1)'], [/^Gifts \((\d+)\)$/, '接收赠文($1)'], [/^\s*(\d+)\s+Work(?:s)?\s+by\s+(.+)\s*$/, '$2 的作品($1)'], [/^\s*(\d+)\s+Unposted\s+Drafts?\s*$/, '未发布的草稿($1)'], [/^\s*(\d+)\s+Series\s+by\s+(.+)\s*$/, '$2 的系列($1)'], [/^\s*(\d+)\s+Bookmark(?:s)?\s+by\s+(.+)\s*$/, '$2 的书签($1)'], [/^\s*(.+)'s\s+Collections\s*$/, '$1 的合集'], [/^\s*(\d+)\s+Collection(?:s)?\s+by\s+(.+)\s*$/, '$2 的合集($1)'], [/^Unsubscribe from (.*)$/, '取消订阅 $1'], [/^(.*)'s Related Works$/, ' $1 的相关作品'], [/^Gifts for (.*)$/, ' $1 接收的赠文'], [/^Challenge Sign-ups for (.*)$/, '$1 参加的挑战'], [/^(\d{2}) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\d{4})$/, (match, p1, p2, p3) => `${p3}年${monthMap[p2]}月${p1}日` ], [/^([\d,]+)\s+Bookmarks?$/, '$1 条书签'], [/The creator's summary is added automatically\.\s*Plain text with limited HTML/s, '创作者的简介会自动添加。纯文本,支持有限 HTML'], ], 'selector': [ ['#tos_prompt button[name=commit]', '我同意并已阅读服务条款'], ['.actions a.bookmark_form_placement_open', '创建书签'], ['.actions a.comment_form_placement_open', '评论'], ['#main .comment_error', '评论不能为空白。'], ['.post.comment .submit input[type=submit]', '评论'], ['form#new_comment .actions input[name=commit]', '评论'], ['#kudo_submit', '点赞'], ] }, 'flexible': { 'You searched for:': '您搜索了:', 'Moderated': '审核制', 'Unmoderated': '非审核制', 'Unrevealed': '未揭晓', 'Anonymous': '匿名投稿', 'Gift Exchange Challenges': '赠文交换活动', 'Gift Exchange Challenge': '赠文交换活动', 'Prompt Meme Challenges': '接梗挑战', 'Prompt Meme Challenge': '接梗挑战', 'Bookmarked Items': '已创建书签作品', 'Not Rated': '未分级', 'No rating': '未分级', 'No category': '未分类', 'General Audiences': '全年龄', 'Teen And Up Audiences': '青少年及以上', 'Mature': '成人向', 'Explicit': '限制级', 'F/F': '女/女', 'F/M': '女/男', 'Gen': '无CP', 'M/M': '男/男', 'Multi-Fandom': '多性向-同人圈', 'Original Work': '原创作品', 'Multi': '多性向', 'Choose Not To Use Archive Warnings': '不使用 Archive 预警', 'Creator Chose Not To Use Archive Warnings': '作者选择不使用 Archive 预警', 'No Archive Warnings Apply': ' Archive 预警不适用', 'Graphic Depictions Of Violence': '暴力场景描写', 'Major Character Death': '主要角色死亡', 'Underage Sex': '未成年性行为', 'Rape/Non-Con': '强暴/非自愿性行为', }, 'common': { 'static': {}, 'regexp': [], 'selector': [] }, 'front_page': { 'static': { 'What is AO3?': 'AO3 是什么?', 'Follow @AO3_Status on Twitter for news and updates!': '在 Twitter 上关注 @AO3_Status 获取新闻和更新!', }, 'regexp': [], 'selector': [ ['.front.home-banner .heading a', '进入 AO3'], ] }, // 作品搜索 'works_search': { 'static': {}, 'regexp': [], 'selector': [], 'innerHTML_regexp': [] }, 'works_search_results': { 'static': {}, 'regexp': [], 'selector': [], 'innerHTML_regexp': [] }, // 用户搜索 'people_search': { 'static': {}, 'regexp': [], 'selector': [], 'innerHTML_regexp': [] }, 'people_search_results': { 'static': {}, 'regexp': [], 'selector': [], 'innerHTML_regexp': [] }, // 书签搜索 'bookmarks_search': { 'static': {}, 'regexp': [], 'selector': [], 'innerHTML_regexp': [] }, 'bookmarks_search_results': { 'static': {}, 'regexp': [], 'selector': [], 'innerHTML_regexp': [] }, // 标签搜索 'tags_search': { 'static': {}, 'regexp': [], 'selector': [], 'innerHTML_regexp': [] }, 'tags_search_results': { 'static': {}, 'regexp': [], 'selector': [], 'innerHTML_regexp': [] }, 'dashboard': { 'static': { }, 'regexp': [], 'selector': [] }, 'profile': { 'static': { 'User Profile': '用户资料', 'My Pseud': '我的笔名', 'Pseuds': '笔名', 'Joined': '加入日期', 'Bio': '个人简介', 'Dismiss permanently': '永久关闭此信息', 'Hide first login help banner': '隐藏首次登录帮助横幅', '×': '×', }, 'innerHTML_regexp': [ ['p.alt.message', /^\s*You don't have anything posted under this name yet\.\s*Would you like to\s*post a new work<\/a>\s*or maybe\s*a new bookmark<\/a>\s*\?\s*$/s, '您还没有以这个笔名发布任何作品。您想要 发布新作品 或者创建 一个新的书签 吗?' ] ], 'regexp': [], 'selector': [] }, 'works_new': { 'static': { 'Post New Work': '发布新作品', 'Import From An Existing URL Instead?': '改为从现有 URL 导入?', '* Required information': '* 处为必填信息', 'Tags are comma separated, 150 characters per tag. Fandom, relationship, character, and additional tags must not add up to more than 75. Archive warning, category, and rating tags do not count toward this limit.': '标签以逗号分隔,每个标签最多 150 字符。同人圈、关系、角色及附加标签总计不得超过 75 字符。Archive 预警、分类及分级标签不计入此限制。', 'Rating*': '分级*', 'Archive Warnings*': 'Archive 预警*', 'Fandoms*': '同人圈*', 'If this is the first work for a fandom, it may not show up in the fandoms page for a day or two.': '如果这是该同人圈的第一篇作品,可能需要一两天才会出现在同人圈页面。', 'Preface': '前言', 'Work Title*': '作品标题*', 'We need a title! (At least 1 character long, please.)': '需要一个标题!(请至少输入 1 个字符)', 'Add co-creators?': '添加共创者?', 'at the beginning': '在开头', 'at the end': '在结尾', 'End Notes': '尾注', 'Associations': '关联', 'Post to Collections / Challenges': '发布到合集/挑战', 'Gift this work to': '将此作品赠送给', 'This work is a remix, a translation, a podfic, or was inspired by another work': '此作品为改编、译作、有声读物或受另一作品启发', 'This work is part of a series': '此作品为一个系列的一部分', 'This work has multiple chapters': '此作品包含多个章节', 'Set a different publication date': '设置一个不同的发布日期', 'Choose a language *': '选择语言*', 'Please select a language': '请选择语言', 'Select work skin': '选择作品界面', 'Basic Formatting': '基本界面', 'Homestuck Skin': 'Homestuck 界面', 'Undertale Work Skin': 'Undertale 界面', 'Only show your work to registered users': '仅向注册用户展示', 'Enable comment moderation': '启用评论审核', 'Registered users and guests can comment': '注册用户及游客可评论', 'Only registered users can comment': '仅注册用户可评论', 'No one can comment': '禁止评论', 'Work Text*': '作品正文*', 'Rich Text': '富文本', 'Plain text with limited HTML': '纯文本,支持有限 HTML', 'Preview': '预览', 'Brevity is the soul of wit, but your content does have to be at least 10 characters long.': '简洁乃智慧之魂,但您的内容长度必须至少 10 个字符。', 'Sorry! We couldn\'t save this work because:': '抱歉!我们无法保存此作品,因为:', 'Language cannot be blank.': '语言不能为空。', 'Please fill in at least one fandom.': '请至少填写一个同人圈。', 'Please select at least one warning.': '请至少选择一个预警。', }, 'innerHTML_regexp': [ ['p.character_counter', /(]*>\d+<\/span>)\s*characters left/s, '剩余 $1 字符'], ['fieldset.work.text p.notice', /Note:<\/strong> Text entered in the posting form is not<\/strong> automatically saved\. Always keep a backup copy of your work\./s, '注意:在发布表单中输入的文本不会自动保存。请务必保留作品的备份。'], [ 'fieldset.create p.notice', /All works you post on AO3 must comply with our (Content Policy|内容政策)<\/a>\. For more information, please refer to our (?:Terms of Service FAQ|服务条款常见问题)<\/a>\./s, '您在 AO3 发布的所有作品均必须遵守我们的 内容政策 。更多信息请参阅我们的 服务条款常见问题 。' ], ], 'regexp': [], 'selector': [ ['dt.permissions.comments', '谁可以评论此作品'] ] }, 'works_import': { 'static': { 'Import New Work': '导入新作品', 'Please note! Fanfiction.net, Wattpad.com, and Quotev.com do not allow imports from their sites.': '请注意!FanFiction.net、Wattpad.com 和 Quotev.com 不允许从其站点导入内容。', 'Post New Work Instead?': '改为发布新作品?', 'Works URLs': '作品 URL', 'Rating*': '分级*', 'Archive Warnings*': 'Archive 预警*', 'Fandoms*': '同人圈*', 'Choose a language*': '选择语言*', 'Please select a language': '请选择语言', 'Set custom encoding': '设置自定义编码', 'Import as': '作为以下内容导入', 'Works (limit of 25)': '作品(限 25 个)', 'Chapters in a single work (limit of 200)': '单部作品的多个章节(限 200 个)', 'Preferences': '偏好设置', 'Post without previewing.': '不预览直接发布。', 'Override tags and notes': '覆盖标签和说明', 'Enable comment moderation': '启用评论审核', 'Registered users and guests can comment': '注册用户及游客可评论', 'Only registered users can comment': '仅注册用户可评论', 'No one can comment': '禁止评论', 'Set the following tags and/or notes on all works, overriding whatever the importer finds in the content.': '对所有导入的作品设置以下标签和/或说明,覆盖导入工具从内容中提取的信息。', 'Use values extracted from the content for blank fields if possible': '如果可能,对空白字段使用从内容中提取的值', 'Do not use values extracted from the content at all; use Archive defaults for blank fields': '完全不使用从内容中提取的值;对空白字段使用 Archive 默认值', 'Only show imported works to registered users': '仅向注册用户展示导入的作品', 'Notes at the beginning': '将注释放在开头', 'Submit': '提交', 'Import': '导入' }, 'innerHTML_regexp': [ ['p.character_counter', /(]*>\d+<\/span>)\s*characters left/s, '剩余 $1 字符'], [ 'div.notice p', /You might find the Import FAQ<\/a> useful\./s, '您可能会想查看 导入常见问题 。' ], [ 'p.footnote#url-field-description', /URLs for existing work\(s\) or for the chapters of a single work; one URL per line\.<\/strong>/s, '现有作品或单部作品各章节的 URL ;每行一个 URL 。' ], [ 'p.note', /Tags are comma separated, 150 characters per tag\. Fandom, relationship, character, and additional tags must not add up to more than 75\. Archive warning, category, and rating tags do not count toward this limit\./s, '标签以逗号分隔,每个标签最多 150 字符。同人圈、关系、角色及附加标签总计不得超过 75 字符。Archive 预警、分类及分级标签不计入此限制。' ], [ 'p.footnote', /If this is the first work for a fandom, it may not show up in the fandoms page for a day or two\./s, '如果这是该同人圈的第一篇作品,可能需要一两天才会出现在同人圈页面。' ], [ 'fieldset p.notice', /All works you post on AO3 must comply with our (Content Policy|内容政策)<\/a>\. For more information, please refer to our (?:Terms of Service FAQ|服务条款常见问题)<\/a>\./s, '您在 AO3 发布的所有作品均必须遵守我们的 内容政策 。更多信息请参阅我们的 服务条款常见问题 。' ], ], 'regexp': [], 'selector': [ ['dt.permissions.comments', '谁可以评论此作品'] ] }, 'works_show_multiple': { 'static': { 'Edit Multiple Works': '编辑多个作品', 'You have no works or drafts to edit.': '您没有可编辑的作品或草稿。' } }, 'users_invitations': { 'flexible': { 'Unsent': '未发送', 'Sent But Unused': '已发送但未使用', 'Used': '已使用', }, 'static': { 'Invite a friend': '邀请好友', 'Invitations': '邀请', 'Manage Invitations': '管理邀请', 'Request Invitations': '获取邀请', 'Your Invitations': '您的邀请', 'Manage:': '管理:', 'All': '全部' }, 'innerHTML_regexp': [ ['div.module p', /Sorry, you have no unsent invitations right now\. Request invitations<\/a>/s, '抱歉,您当前没有未发送的邀请。获取邀请'] ] }, 'users_common': { 'static': { 'Profile': '简介', }, }, 'users_settings': { 'static': { 'Edit My Profile': '编辑简介', 'Edit Profile': '编辑简介', 'Edit Default Pseud and Icon': '编辑笔名和头像', 'Change Username': '更改用户名', 'Change My Username': '更改用户名', 'Change Password': '更改密码', 'Change My Password': '更改密码', 'Change Email': '更改电子邮箱', 'Title': '标题', 'Location': '位置', 'Date of Birth': '出生日期', 'About Me': '关于我', 'Plain text with limited HTML': '纯文本,支持有限 HTML', 'Update': '更新', 'Editing pseud': '编辑笔名', 'Show': '展示', 'Back To Pseuds': '返回笔名列表', 'Name': '名称', 'Make this name default': '将此笔名设为默认', 'Description': '简介', 'Icon': '头像', 'This is your icon.': '这是您的头像。', 'You can have one icon for each pseud.': '每个笔名可设置一个头像。', 'Icons can be in png, jpeg or gif form.': '头像格式支持 PNG、JPEG 和 GIF。', 'Icons should be sized 100x100 pixels for best results.': '建议头像尺寸为 100×100 像素以获得最佳效果。', 'Upload a new icon': '上传新头像', 'Icon alt text': '头像替代文本', 'Icon comment text': '头像注释文本', 'New Pseud': '新建笔名', 'New pseud': '新的笔名', 'Default Pseud': '默认笔名', 'Edit Pseud': '编辑笔名', 'Edit': '编辑', 'Current username': '当前用户名', 'New username': '新用户名', 'Password': '密码', 'New password': '新密码', 'Confirm new password': '确认新密码', 'Old password': '旧密码', 'Current email': '当前邮箱', 'New email': '新邮箱', 'Enter new email again': '再次输入新邮箱', 'Confirm New Email': '确认新邮箱', 'Submit': '提交', 'Create': '创建', }, 'innerHTML_regexp': [ ['p.character_counter', /(]*>\d+<\/span>)\s*characters left/g, '剩余 $1 字符'], ['p#password-field-description', /^\s*6 to 40 characters\s*$/, '6 到 40 字符'], ['p.notice', /Any personal information you post on your public AO3 profile[\s\S]*?(?:Privacy Policy|隐私政策)<\/a>[\s\S]*?\./s, '您在公开 AO3 个人资料中发布的任何个人信息(包括但不限于您的姓名、电子邮箱、年龄、位置、个人关系、性别或性取向认同、种族或族裔背景、宗教或政治观点,以及/或其她网站的账户用户名)都会对公众可见。要了解 AO3 在您使用网站时收集哪些数据以及我们如何使用这些数据,请查看我们的 隐私政策 。'], ['div.caution.notice', /

            \s*Please use this feature with caution\.<\/strong>[\s\S]*?<\/p>/s, '

            请谨慎使用此功能。用户名每 7 天仅能更改一次。

            '], ['div.caution.notice', /For information on how changing your username will affect your account[\s\S]*?contact Support<\/a>\./s, '有关更改用户名如何影响账户的详情,请参阅 账户常见问题 。用户名更改可能需要数天或更长时间才会生效。如果一周后您的作品、书签、系列或合集中仍显示旧用户名,请联系支持团队 。'], ['div.notice', /Changing your email will send a request for confirmation[\s\S]*?will invalidate any pending email change requests<\/strong>\./s, '更改电子邮箱将向您的新邮箱发送确认请求,并向当前邮箱发送通知。
            您必须使用确认邮件中的链接完成邮箱更改。如在 7 天内未确认,请求链接将失效,邮箱不会更改。
            重新提交新邮箱请求将使任何未完成的更改请求失效。'], ['p.footnote', /You cannot change the pseud that matches your username\. However, you can change your username<\/a> instead\./g, '无法修改与用户名相同的笔名。如需修改,请 更改您的用户名 。'], ['h2.heading', /^Pseuds for (.+)$/, '$1 的笔名'], ['div.caution.notice p:last-child', /For information on how changing your username will affect your account.*?contact Support.*?\./s, '要了解更改用户名对账户的影响,请参阅 账户常见问题 。用户名变更可能需要数天或更长时间才会生效。如果一周后您的作品、书签、系列或合集中仍显示旧用户名,请 联系支持团队 。'], ['p.note', /If that is not what you want.*?create a new Pseud.*?instead\./s, '如果您不想更改用户名,也可以 创建一个新的笔名 。'], ['p.footnote', /3 to 40 characters.*?underscore.*?\)/s, '3 至 40 个字符(仅限 A–Z、a–z、_、0–9),禁止使用空格,且不能以下划线开头或结尾'], ], 'regexp': [], }, 'users_block_mute_list': { 'static': { 'Blocked Users': '已屏蔽用户', 'Muted Users': '已静音用户', 'Block a user': '屏蔽用户', 'Mute a user': '静音用户', 'Block': '屏蔽', 'Mute': '静音', 'Unblock': '取消屏蔽', 'Unmute': '取消静音', 'You have not muted any users.': '您尚未静音任何用户。', 'You have not blocked any users.': '您尚未屏蔽任何用户。' }, 'innerHTML_regexp': [ [ 'div.notice', /^\s*

            You can block up to 2,000 users\. Blocking a user prevents them from:<\/p>[\s\S]*?your Muted Users page<\/a>\.<\/p>\s*$/s, `

            您最多可以屏蔽 2,000 位用户。屏蔽用户后,她们将无法:

            • 在您的作品上发表评论或留下点赞
            • 在站点任何地方回复您的评论
            • 在活动分配和认领同人梗之外赠送作品给您

            屏蔽用户不会:

            • 隐藏您所屏蔽用户的作品或书签
            • 删除或隐藏她们之前在您作品上留下的评论;您可以逐条删除
            • 隐藏她们在站点其她地方的评论

            如需隐藏某用户的作品、书签、系列和评论,请访问 已静音用户页面

            ` ], [ 'div.notice', /^\s*

            You can mute up to 2,000 users\. Muting a user:<\/p>[\s\S]*?your Blocked Users page<\/a>\.[\s\S]*?instructions for reverting to the default site skin<\/a>\.\s*<\/p>\s*$/s, `

            您最多可静音 2,000 位用户。静音用户后:

            • 她们的作品、系列、书签和评论将完全对您隐藏;不会留下空白空间、占位文本或其她任何提示

            静音用户不会:

            • 阻止您接收来自该用户的评论或订阅邮件
            • 将她们的内容隐藏给其她任何人

            如需阻止某用户在您的作品上发表评论或在站点其她地方回复您的评论,请访问 已屏蔽用户页面

            请注意,如果您未使用默认站点界面,静音功能可能无法正常工作。要了解有关 如何恢复默认站点界面 的说明,请参阅 界面与 Archive 界面常见问题 。

            ` ] ], 'regexp': [], 'selector': [] }, 'preferences': { 'static': { 'Edit My Preferences': '编辑我的偏好设置', 'Privacy': '隐私设置', 'Interface': '界面设置', 'Work Display': '作品显示', 'Site Skins': '站点界面', 'When I post a work, credit me as:': '当我发布作品时,署名方式:', 'Show': '显示', 'Hide': '隐藏', 'Turn on Creator Styles': '启用创作者界面样式', 'Update': '确定', }, 'regexp': [], 'selector': [] }, 'skins': { 'static': { 'Public Site Skins': '公共站点界面', 'Create Site Skin': '创建新界面', 'Description': '描述', 'Use': '使用', 'Preview': '预览', 'Set For Session': '为本次会话设置', 'Create New Skin': '创建新界面', 'Write Custom CSS': '编写自定义 CSS', 'Use Wizard': '使用向导', '* Required information': '* 处为必填信息', 'Type*': '类型*', 'Title*': '标题*', 'Site Skin': '站点界面', 'Work Skin': '作品界面', 'Upload a preview (png, jpeg or gif)': '上传预览(PNG、JPEG 或 GIF)', 'Apply to make public': '应用并公开', 'Advanced': '高级', 'Show ↓': '显示 ↓', 'Hide ↑': '隐藏 ↑', 'Conditions': '条件', 'What it does:': '作用:', 'add on to archive skin': '添加到 Archive 界面', 'replace archive skin entirely': '完全替换 Archive 界面', 'IE Only:': '仅限 IE:', 'Parent Only:': '仅限母级:', 'Media:': '媒体:', 'Choose @media': '选择 @media', 'Parent Skins': '母级界面', 'Add parent skin': '添加母级界面', 'Actions': '操作', 'Submit': '提交', 'Site Skin Wizard': '站点界面向导', 'Fonts and Whitespace': '字体与留白', 'Font': '字体', 'Colors': '颜色设置', 'Percent of browser font size': '浏览器字体大小百分比', 'Work margin width': '作品页边距宽度', 'Vertical gap between paragraphs': '段落垂直间距', 'Background color': '背景色', 'Text color': '文字颜色', 'Header color': '页眉颜色', 'Accent color': '强调色', 'This form allows you to create a new site or work skin. Select "Work Skin" or "Site Skin" in the Type option list to choose which type of skin you are creating.': '此表单允许您创建新的站点或作品界面。在“类型”选项列表中选择“作品界面”或“站点界面”以指定创建的界面类型。', }, 'innerHTML_regexp': [ ['p.notes', /^\s*This wizard only creates site skins\.\s*You can also create a work skin<\/a> which can be used to add styling to works that you post\.\s*]*>\?<\/span><\/span><\/a>\s*$/, '此向导仅创建站点界面。您也可以 创建作品界面 ,用于为您发布的作品添加样式。?'], ['p.notes', /^\s*You may wish to refer to this handy list of colors<\/a>\.\s*$/, '您可以参考这份 实用的颜色列表 。'], ['p.character_counter', /(]*>\d+<\/span>)\s*characters left/s, '剩余 $1 字符'], ['p.footnote#font-field-notes', /^\s*Comma-separated list of font names\.\s*$/, '以逗号分隔的字体名称列表。'], ['p.footnote#base-em-field-notes', /^\s*Numbers only, treated as a percentage of the browser's default font size\. Default: 100<\/code>\s*$/, '仅限数字,表示相对于浏览器默认字体大小的百分比。默认值:100'], ['p.footnote#margin-field-notes', /^\s*Numbers only, treated as a percentage of the page width\.\s*$/, '仅限数字,表示相对于页面宽度的百分比。'], ['p.footnote#paragraph-margin-field-notes', /^\s*Numbers only, treated as a multipler of the paragraph font size\. Default: 1\.286<\/code>\s*$/, '仅限数字,表示相对于段落字体大小的倍数。默认值:1.286'], ['p.footnote#background-color-field-notes', /^\s*Name or hex code\. Default: #fff<\/code>\s*$/, '名称或十六进制代码。默认值:#fff'], ['p.footnote#foreground-color-field-notes', /^\s*Name or hex code\. Default: #2a2a2a<\/code>\s*$/, '名称或十六进制代码。默认值:#2a2a2a'], ['p.footnote#header-color-field-notes', /^\s*Name or hex code\. Default: #900<\/code>\s*$/, '名称或十六进制代码。默认值:#900'], ['p.footnote#accent-color-field-notes', /^\s*Name or hex code\. Default: #ddd<\/code>\s*$/, '名称或十六进制代码。默认值:#ddd'] ], 'regexp': [ [/^Must be present\.$/, '必须提供'] ], 'selector': [] }, 'users_works_index': { // 用户作品列表页 'static': {}, 'innerHTML_regexp': [], 'regexp': [ [/^\s*(\d+)\s+Work(?:s)?\s+by\s+(.+)\s*$/, '$2 的作品($1)'], ], 'selector': [], }, 'users_drafts_index': { // 用户草稿列表页 'static': {}, 'innerHTML_regexp': [], 'regexp': [ [/^\s*(\d+)\s+Unposted\s+Drafts?\s*$/, '未发布的草稿($1)'], ], 'selector': [], }, 'users_series_index': { // 用户系列列表页 'static': {}, 'innerHTML_regexp': [], 'regexp': [ [/^\s*(\d+)\s+Series\s+by\s+(.+)\s*$/, '$2 的系列($1)'], ], 'selector': [], }, 'users_bookmarks_index': { // 用户书签列表页 'static': {}, 'innerHTML_regexp': [], 'regexp': [ [/^\s*(\d+)\s+Bookmark(?:s)?\s+by\s+(.+)\s*$/, '$2 的书签($1)'], ], 'selector': [], }, 'users_collections_index': { // 用户合集列表页 'static': {}, 'innerHTML_regexp': [], 'regexp': [ [/^\s*(.+)'s\s+Collections\s*$/, '$1 的合集'], [/^\s*(\d+)\s+Collection(?:s)?\s+by\s+(.+)\s*$/, '$2 的合集($1)'], ], 'selector': [], }, 'users_subscriptions_index': { // 用户订阅列表页 'static': {}, 'innerHTML_regexp': [], 'regexp': [ [/^Unsubscribe from (.*)$/, '取消订阅 $1'], ], 'selector': [], }, 'users_related_works_index': { // 用户相关作品列表页 'static': {}, 'innerHTML_regexp': [], 'regexp': [ [/^(.*)'s Related Works$/, ' $1 的相关作品'], ], 'selector': [], }, 'users_gifts_index': { // 用户相关作品列表页 'static': {}, 'innerHTML_regexp': [], 'regexp': [ [/^Gifts for (.*)$/, ' $1 接收的赠文'], ], 'selector': [], }, 'users_signups': { // 用户报名的挑战 'static': { 'Challenge Sign-ups': '挑战活动报名' }, 'innerHTML_regexp': [], 'regexp': [ [/^Challenge Sign-ups for (.*)$/, '$1 参加的挑战'], ], 'selector': [] }, 'works_index': { 'static': { 'Sort and Filter': '排序和筛选', 'Search within results': '在结果中搜索', 'Fandom:': '同人圈:', 'Rating:': '分级:', 'Archive Warning:': '内容预警:', 'Category:': '作品类型:', 'Complete?': '已完结?', 'Word Count:': '字数:', 'Date Updated:': '更新日期:', 'Relationship:': 'CP/关系:', 'Character:': '角色:', 'Additional Tags:': '其她标签:', }, 'innerHTML_regexp': [], 'regexp': [], 'selector': [] }, 'works_show': { 'static': { 'Download': '下载', 'Subscribe': '订阅', 'Unsubscribe': '取消订阅', ' kudos': ' 个赞', 'Comments': '评论', 'Chapter Notes': '章节注释', 'Work Notes': '作品注释', 'End Notes': '章节尾注', 'Inspired by': '灵感来源于', }, 'innerHTML_regexp': [], 'regexp': [ [/^Chapter (\d+) of (\d+)$/, '第 $1 章 / 共 $2 章'], [/^Chapter (\d+)$/, '第 $1 章'], ], 'selector': [ ['#workskin .preface .notes .landmark', '注释'], ] }, 'series_index': { 'static': {}, 'innerHTML_regexp': [], 'regexp': [], 'selector': [] }, 'series_show': { 'static': { 'Works in Series': '系列中的作品', 'Series Begun': '系列开始于', 'Series Updated': '系列更新于', 'Words': '总字数', 'Description': '系列描述', }, 'innerHTML_regexp': [], 'regexp': [], 'selector': [] }, 'tags_index': { 'static': { 'Canonical Tags': '标准标签', 'Uncategorized Tags': '未分类标签', 'Browse Tags': '浏览标签', }, 'innerHTML_regexp': [], 'regexp': [], 'selector': [] }, 'tags_show': { 'static': { 'Works in Tag': '此标签下的作品', 'Filter': '筛选', 'Related Tags': '相关标签', 'Meta Tag': '元标签', 'Sub Tag': '子标签', 'Synonymous Tag': '同义标签', }, 'innerHTML_regexp': [], 'regexp': [], 'selector': [] }, 'tag_sets_index': { 'static': { 'New Tag Set': '新建标签集', 'Nominate': '提名', }, 'innerHTML_regexp': [ ['dl.stats', /(Fandoms:|Characters:|Relationships:|Additional Tags:)/g, (match) => { const translationMap = { 'Fandoms:': '同人圈:', 'Characters:': '角色:', 'Relationships:': '关系:', 'Additional Tags:': '附加标签:' }; return translationMap[match] || match; }] ], 'regexp': [], 'selector': [] }, 'tag_sets_nominations_new': { 'flexible': { 'Relationship': '关系', }, 'static': { // 表单区域标题 'Basic Information': '基本信息', 'Submit': '提交', 'Tag Nominations': '标签提名', 'Nominate Tags Form': '提名标签表单', 'Fandom?': '同人圈?', // 标签与提示 'Nominating For:': '提名对象:', 'Pseud:': '笔名:', // 页面说明文字 'The autocomplete lists canonical tags for you. Please choose the canonical version of your tag if there is one.': '自动补全列表会为您列出规范标签。如存在规范版本,请选择。', 'The tag set moderators might change or leave out your nominations (sometimes just because a different form of your nomination was included).': '标签集管理员可能会更改或忽略您的提名(有时仅因已收录了另一种形式)。', 'Nominations are not forever! Don\'t be confused if you come back in a few months and they are gone: they may have been cleaned up.': '提名并非永久保留!几个月后回来如发现提名消失,请勿感到困惑:可能已被清理。', 'If crossover relationships are allowed, you can enter them under either fandom.': '若允许跨圈关系,可在任一同人圈下输入。', 'Specifying Fandom': '指定同人圈', 'Tagset fandom for child': '子标签集同人圈', 'Close': '关闭' }, 'innerHTML_regexp': [ ['h2.heading', /^Tag Nominations for (.*?)$/, '为 “$1” 提名标签'], ['ul.navigation.actions a[href*="/tag_sets/"]', /^Back To (.*?)$/, '返回 “$1”'], ['#modal .content.userstuff p', /^\s*You only need to specify the fandom if your nomination is new or not in the fandom already -- for instance, if you're\s*submitting a character who has just appeared in the fandom\.\s*This information is just used to help the moderators sort out new tags\.\s*$/s, '仅当您的提名为新标签或尚未存在于该同人圈时才需指定同人圈——例如,您提交的角色刚出现在该同人圈中。此信息仅用于帮助管理员整理新标签。' ] ], 'regexp': [ [/^You can nominate up to .*$/, translateNominationRule], [/^Fandom (\d+)$/, '同人圈 $1'], [/^Additional Tag (\d+)$/, '附加标签 $1'] ], 'selector': [] }, 'owned_tag_sets_show': { 'flexible': { 'Ratings': '分级', 'Additional Tags': '附加标签', 'Categories': '分类', 'Warnings': '预警', 'No Media': '无媒体', 'Unassociated Characters & Relationships': '未关联的角色与关系', }, 'static': { 'Nominate': '提名', 'All Tag Sets': '所有标签集', 'Created on:': '创建日期:', 'Maintainers:': '维护者:', 'Description:': '简介:', 'Status:': '状态:', 'Stats:': '统计数据:', 'Nominations allowed per person:': '每人可提名数量:', 'Expand All': '展开全部', 'Contract All': '收起全部', 'Medium: Fanfiction': '媒介:同人文', 'The following characters and relationships don\'t seem to be associated with any fandom in the tagset. You might need to add the fandom, or set up associations for them.': '以下角色与关系似乎尚未与标签集中的任何同人圈关联。您可能需要添加所属同人圈,或为其建立关联。', 'The moderators have chosen not to make the tags in this set visible to the public (possibly while nominations are underway).': '标签集管理员已选择暂不向公众展示此标签集中的标签(可能是因为提名正在进行中)。', 'Metadata': '元数据', 'Listing Tags': '标签列表', }, 'innerHTML_regexp': [ ['h2.heading', /^About (.*)$/, '关于 “$1”'], ['dd', /Open<\/strong> to the public\./, '对公众开放。'], ['dl.stats', /(Fandoms:|Characters:|Relationships:|Freeforms:)/g, (match) => { const translationMap = { 'Fandoms:': '同人圈:', 'Characters:': '角色:', 'Relationships:': '关系:', 'Freeforms:': '自由形式:' }; return translationMap[match] || match; }], ], 'regexp': [ [/^Medium: Art - Character$/, '媒介:画作-角色'], [/^Medium: Fanvid - Character$/, '媒介:同人视频-角色'], [/^Medium: Other - Character$/, '媒介:其她-角色'], ], 'selector': [] }, 'tag_sets_new': { 'static': { 'Create A Tag Set': '创建标签集', 'Back to Tag Sets': '返回标签集', 'Management': '管理', 'Description': '简介', 'Nomination Limits': '提名限制', 'Tags In Set': '标签集内标签', 'Tags in Set': '标签集内标签', 'Tag Associations': '标签关联', 'Actions': '操作', 'Ratings': '评级', 'Tag sets are used for running a challenge.': '标签集用于举办挑战活动。', '"Visible" tag sets are shown to all users.': '“可见”标签集会向所有用户展示。', '"Usable" tag sets can be used by others in their challenges.': '“可用”标签集可供她人在其挑战中使用。', 'Tag sets that are open to nominations can take nominations from the public.': '开放提名的标签集可接受公众提名。', 'Tag names have to be unique. If necessary the archive may add on the tag type. (For instance, if you entered a character "Firefly", you\'d see "Firefly - Character" in your tag set instead since the tag Firefly is already used for the show.': '标签名称必须唯一。如有必要,Archive 会自动添加标签类型后缀。(例如,若您输入角色名“Firefly”,由于已有同名标签用于剧集,该标签会在您的标签集中显示为“Firefly - Character”。)', 'Current Owners': '当前所有者', 'Add/Remove Owners:': '添加/移除所有者:', 'Current Moderators': '当前管理员', 'Add/Remove Moderators:': '添加/移除管理员:', 'Title* (text only)': '标题*(仅限文本)', 'Brief Description': '简要描述', 'Visible tag list?': '可见标签列表?', 'Usable by others?': '可被她人使用?', 'Currently taking nominations?': '当前接受提名?', 'Fandom nomination limit': '同人圈提名限制', 'Character nomination limit': '角色提名限制', 'Relationship nomination limit': '关系提名限制', 'Freeform nomination limit': '自由标签提名限制', 'Add Fandoms:': '添加同人圈:', 'Add Characters:': '添加角色:', 'Add Relationships:': '添加关系:', 'All': '全选', 'None': '取消勾选', 'Tag Set Associations': '标签集关联', 'Tagset tag associations': '标签集:标签关联 帮助', 'Close': '关闭' }, 'innerHTML_regexp': [ ['h4.heading > label[for*="freeform"]', /Add Additional Tags:/, '添加附加标签:'], ['form > fieldset:nth-of-type(1) > p.notes', /^\s*To add or remove an owner or moderator, enter their name\. If they are already on the list they will be removed; if not, they will be added\.\s*You can't remove the sole owner of a tag set\.\s*$/, '要添加或移除所有者或管理员,请输入其用户名。若已在列表中则移除,否则将被添加。无法移除唯一所有者。'], ['#nomination_limits .notes li:nth-of-type(1)', /If you allow both<\/em> fandoms and characters\/relationships in the same tag set,\s*the number of characters\/relationships is per fandom<\/strong> 。/s, '如果您在同一标签集中同时允许提名同人圈和角色/关系,那么角色/关系的数量是按每个同人圈计算的。'], ['#nomination_limits .notes li:nth-of-type(2)', /If that's not what you want, you\s*can have users nominate fandoms in one tag set, and characters\/relationships in another tag set\. Then use both tag sets in your challenge settings\./s, '如果这不是您想要的效果,您可以让用户在一个标签集中提名同人圈,在另一个标签集中提名角色/关系。然后在您的挑战设置中同时使用这两个标签集。'], ['#modal .content.userstuff p:nth-of-type(1)', /Tag associations let you set up associations between the fandoms, characters, and relationships in your tag set, which then\s+lets your participants pick from only the characters and relationships in a given fandom\./s, '标签关联功能允许您在所选同人圈、角色和关系之间建立关联,从而让参与者仅从指定同人圈中的角色和关系中进行选择。'], ['#modal .content.userstuff p:nth-of-type(2)', /Note: if the wranglers have already set up these associations, then you can just add the additional\s+ones that you would like -- you don't have to \(and in fact aren't allowed\) to create copies of canonical\s+associations\. You can still limit your participants' choices to tags actually in your set\./s, '注意:如果标签管理员已经建立了这些关联,您只需添加想要的关联即可——无需(且实际上也不被允许)复制已有的规范关联。您仍可将参与者的选项限制在标签集中已有的标签范围内。'], ['#modal .content.userstuff p:nth-of-type(3)', /If you're not sure how this might work, try adding a few fandoms and characters and setting up some associations,\s+and then set up your challenge and try out the sign-up form!/s, '如果不确定此功能如何运作,请尝试添加一些同人圈和角色并建立关联,然后创建您的挑战活动并在报名表中进行测试!'] ], 'regexp': [], 'selector': [] }, 'collections_index': { 'flexible': { 'Moderated': '审核制', 'Fandoms': '同人圈', 'Works': '作品', 'Open,': '开放中,', 'Closed,': '已截止,', }, 'static': { 'Sign Up': '报名', }, 'innerHTML_regexp': [ ['h3.heading', /(\d+\s*-\s*\d+)\s+of\s+([\d,]+)\s+Collections/s, '第 $1 个,共 $2 个合集'] ], 'regexp': [ [/^You have applied to join (.*)\.$/, '您已申请加入 $1。'], [/^Removed (\w+) from collection\.$/, '已将 $1 从合集中移除。'] ], 'selector': [] }, 'bookmarks_index': { 'static': { 'My Bookmarks': '我的书签', 'Recs': '推荐', 'Private': '私密', 'Public': '公开', 'Notes & Tags': '笔记和标签', 'Your tags': '您的标签', 'The creator\'s tags are added automatically.': '创建者的标签会自动添加', 'Comma separated, 150 characters per tag': '以逗号分隔,每个标签最多 150 字符', 'Add to collections': '添加到合集', 'Private bookmark': '私人书签', 'Create': '创建', }, 'innerHTML_regexp': [ ['h4.heading', /(\s*