লক্ষ্য করুন: প্রকাশ করার পর, পরিবর্তনগুলো দেখতে আপনাকে আপনার ব্রাউজারের ক্যাশে পরিষ্কার করার প্রয়োজন হতে পারে।

  • ফায়ারফক্স / সাফারি: পুনরায় লোড-এ ক্লিক করার সময় শিফট টিপে ধরে রাখুন, অথবা হয় Ctrl-F5 বা Ctrl-R টিপুন (ম্যাকে ⌘-R টিপুন)
  • গুগল ক্রোম: Ctrl-Shift-R (ম্যাকে ⌘-Shift-R) টিপুন
  • ইন্টারনেট এক্সপ্লোরার / এজ: Ctrl ধরে রাখা অবস্থায় Refresh-এ ক্লিক করুন, অথবা Ctrl-F5 টিপুন
  • অপেরা: Ctrl-F5 টিপুন।
//<source lang="javascript">

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: '$1 (দ্ব্যর্থতা নিরসন)',
		
		/*
		 * 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: '#পুনর্নির্দেশ [[$1]]',
		
		/*
		 * 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: [0, 6, 10, 14, 100, 108],
		
		/*
		 * 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: 5,
		
		/*
		 * Specify how the watchlist is affected by DisamAssist edits. Possible values: "watch", "unwatch",
		 * "preferences", "nochange"
		 */
		watch: 'nochange'
	},

	txt: {
		start: 'দ্ব্যর্থতা নিরসন সংযোগ',
		startMain: 'প্রাথমিক বিষয়বস্তুতে দ্ব্যর্থতা নিরসন সংযোগ',
		startSame: 'DAB তে দ্ব্যর্থতা নিরসন সংযোগ',
		close: 'বন্ধ',
		undo: 'পূর্বাবস্থায় ফেরত',
		omit: 'এড়িয়ে যান',
		refresh: 'শোধন',
		titleAsText: 'ভিন্ন লক্ষ্য',
		disamNeeded: 'ট্যাগ {{দ্ব্যর্থতা নিরসন প্রয়োজন}}',
		intentionalLink: 'DAB তে উদ্দেশ্যমূলক সংযোগ',
		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: 'বাতিল',
		pending: 'There are unsaved changes in DisamAssist. To save them, please press Close',
		editInProgress: 'DisamAssist is currently performing changes. If you close the tab now, they may be lost.',
		ellipsis: '...',
		notifyCharacter: '✔',
		summary: '[[User:Al_Riaz_Uddin_Ripon/DisamAssist|DisamAssist]] ব্যবহার করে সংযোগের দ্ব্যর্থতা নিরসন করা হয়েছে ([[$1]] $2)',
		summaryChanged: 'পরিবর্তন করে [[$1]] দেওয়া হয়েছে',
		summaryOmitted: 'থেকে সংযোগ এড়িয়ে যাওয়া হয়েছে',
		summaryRemoved: 'থেকে সংযোগ অপসারিত হয়েছে',
		summaryIntentional: 'থেকে দ্ব্যর্থতায় উদ্দেশ্যমূলক সংযোগ',
		summaryHelpNeeded: 'সাহায্য প্রয়োজন',
		summarySeparator: '; ',
		redirectSummary: '[[User:Al_Riaz_Uddin_Ripon/DisamAssist|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>