User:Ffffnm/DisamAssist.js
外观
注意:保存之后,你必须清除浏览器缓存才能看到做出的更改。Google Chrome、Firefox、Microsoft Edge及Safari:按住⇧ Shift键并单击工具栏的“刷新”按钮。参阅Help:绕过浏览器缓存以获取更多帮助。
//<source lang="javascript">
//DisamAssist
//由[[User:Qwertyytrewqqwerty]]最初設計:[[es:Usuario:Qwertyytrewqqwerty/DisamAssist.js]]
//由[[User:GZWDer]]本地化:[[User:GZWDer/DisamAssist.js]] 2020-08-19
//由[[User:和平奮鬥救地球]] 稍作翻譯 2021-05-15
//預定之後再慢慢翻
window.DisamAssist = jQuery.extend( true, {
cfg: {
/*
* Categories where disambiguation pages are added (usually by a template like {{Disambiguation}}
*/
disamCategories: ['全部消歧義頁面'],
/*
* "Canonical names" of the templates that may appear after ambiguous links
* and which should be removed when fixing those links
*/
disamLinkTemplates: [
'Disambiguation needed',
'Ambiguous link',
'Amblink',
'Dab needed',
'Disamb-link',
'Disambig needed',
'Disambiguate',
'Dn',
'Needdab'
],
/*
* "Canonical names" of the templates that designate intentional links to
* disambiguation pages
*/
disamLinkIgnoreTemplates: [
'R from ambiguous page',
'R to disambiguation page',
'R from incomplete disambiguation'
],
/*
* Format string for "Foo (disambiguation)"-style pages
*/
disamFormat: '',
/*
* Regular expression matching the titles of disambiguation pages (when they are different from
* the titles of the primary topics)
*/
disamRegExp: '',
/*
* Text that will be inserted after the link if the user requests help. If the value is null,
* the option to request help won't be offered
*/
disamNeededText: '{{dn|date={{subst:CURRENTMONTHNAME}} {{subst:CURRENTYEAR}}}}',
/*
* Content of the "Foo (disambiguation)" pages that will be created automatically when using
* DisamAssist from a "Foo" page
*/
redirectToDisam: '',
/*
* Whether intentional links to disambiguation pages can be explicitly marked by adding " (disambiguation)"
*/
intentionalLinkOption: true,
/*
* Namespaces that will be searched for incoming links to the disambiguation page (pages in other
* namespaces will be ignored)
*/
targetNamespaces: [6, 10, 14, 100, 108, 0],
/*
* Number of backlinks that will be downloaded at once
* When using blredirect, the maximum limit is supposedly halved
* (see http://www.mediawiki.org/wiki/API:Backlinks)
*/
backlinkLimit: 250,
/*
* Number of titles we can query for at once
*/
queryTitleLimit: 50,
/*
* Number of characters before and after the incoming link that will be displayed
*/
radius: 300,
/*
* Height of the context box, in lines
*/
numContextLines: 4,
/*
* Number of pages that will be stored before saving, so that changes to them can be
* undone if need be
*/
historySize: 2,
/*
* Minimum time in seconds since the last change was saved before a new edit can be made. A
* negative value or 0 disables the cooldown. Users with the "bot" right won't be affected by
* the cooldown
*/
editCooldown: 0,
/*
* Specify how the watchlist is affected by DisamAssist edits. Possible values: "watch", "unwatch",
* "preferences", "nochange"
*/
watch: 'nochange'
},
txt: {
start: '消除链接歧义',
startMain: '更改链入',
startSame: '消歧义',
close: '关闭',
undo: '>撤销<',
omit: '<===跳过===>',
refresh: '<<刷新>>',
titleAsText: '链其他',
disamNeeded: '加{{dn}}',
intentionalLink: '>>保留<< ',
titleAsTextPrompt: '输入新的链接页面:',
removeLink: ' 移除 ',
optionMarker: '<[链到这里]>',
targetOptionMarker: ' [当前目标]',
redirectOptionMarker: ' [当前目标(重定向)]',
pageTitleLine: '在 <a href="$1">$2</a>:',
noMoreLinks: '没有需要消歧义的链接了。',
pendingEditCounter: '正在保存: $1; 已经保存: $2',
pendingEditBox: 'DisamAssist正在保存您的编辑($1)。',
pendingEditBoxTimeEstimation: '$1; 大概剩余时间: $2',
pendingEditBoxLimited: 'Please don\'t close this tab until all pending changes have been saved. You may keep '
+ 'editing Wikipedia in a different tab, but be advised that using multiple instances of DisamAssist at '
+ 'the same time is discouraged, as a high number of edits over a short time period may be disruptive.',
error: '错误: $1',
fetchRedirectsError: '无法获取重定向: "$1".',
getBacklinksError: '无法下载反向链接: "$1".',
fetchRightsError: '无法获取用户权限: "$1",',
loadPageError: '无法加载 $1: "$2".',
savePageError: '无法保存更改至 $1: "$2".',
dismissError: 'Dismiss',
pending: 'DisamAssist尚有未保存的编辑。如欲保存,请按「关闭」。',
editInProgress: 'DisamAssist正在进行编辑。如果您将本页面关闭,可能会丢失您的编辑。',
ellipsis: '...',
notifyCharacter: '✔',
summary: '使用[[User:和平奮鬥救地球/DisamAssist.js|DisamAssist]]清理[[WP:DAB|消歧義]]連結:[[$1]]($2)。',
summaryChanged: '改連結至[[$1]]',
summaryOmitted: '連結已跳過',
summaryRemoved: '連結已移除',
summaryIntentional: '刻意連至消歧義頁面',
summaryHelpNeeded: '需要幫助',
summarySeparator: '; ',
redirectSummary: '使用[[User:和平奮鬥救地球/DisamAssist.js|DisamAssist]]創建目標為[[$1]]的重定向。'
}
}, window.DisamAssist || {} );
mw.loader.load( '//es.wikipedia.org/w/index.php?title=Usuario:Qwertyytrewqqwerty/DisamAssist-core.js&action=raw&ctype=text/javascript' );
mw.loader.load( '//es.wikipedia.org/w/index.php?title=Usuario:Qwertyytrewqqwerty/DisamAssist.css&action=raw&ctype=text/css', 'text/css' );
//</source>