மீடியாவிக்கி:Gadget-WSexport.js

விக்கிமூலம் இலிருந்து

குறிப்பு - சேமித்த பின்னர், நீங்கள் செய்த மாற்றங்களைக் காண்பதற்கு உங்கள் உலவியின் இடைமாற்று அகற்றப்பட வேண்டும்.

  • மொஸில்லா பயர்பாக்ஸ் / சபாரி: Shift+Reload, அல்லது Ctrl-F5 அல்லது Ctrl-R (⌘-R Mac ல்)
  • கூகிள் குரோம் Ctrl-Shift-R அழுத்தவும். (⌘-Shift-R Mac ல்) ;
  • இண்டர்நெட் எக்ஸ்ப்ளோரர்: Ctrl-Refresh அல்லது Ctrl-F5 ஐ அழுத்தவும்.
  • ஒபேரா: Tools → Preferences இல் இடைமாற்றை அகற்றவும்;
/**
 * Adds a "Download as EPUB" link to the sidebar
 *
 * Generates and starts a download of the current page as an EPUB file.
 * Subpages of the current page (if any) are included as well.
 *
 * Uses the WSExport tool on Wikimedia Labs:
 * http://wsexport.wmflabs.org/tool/book.php
 *
 * See Oldwikisource:Wikisource:WSexport for more information
 * Bug reports should go to fr:Wikisource:Wsexport
 * Tool source code at https://github.com/wsexport
 */
/*global mw, $ */
if ( $.inArray( mw.config.get( 'wgNamespaceNumber' ), [ 0 , 114 ] ) !== -1 ) {
	$( function () {
		mw.util.addPortletLink(
			'p-coll-print_export',
			'//tools.wmflabs.org/wsexport/tool/book.php?' + $.param( {
				lang: 'ta',
				format: 'epub-3',
				fonts:'linuxlibertine',
				page: mw.config.get( 'wgPageName' )
			} ),
			'EPUBஆக பதிவிறக்குக',
			'n-epubExport',
			'EPUB வடிவத்தில் இப்பக்கத்தினை பதிவிற்றக்கம் செய்க',
			'',
			'#t-print'
		);
		mw.util.addPortletLink(
			'p-coll-print_export',
			'//tools.wmflabs.org/wsexport/tool/book.php?' + $.param( {
				lang: 'ta',
				format: 'mobi',
				fonts:'linuxlibertine',
				page: mw.config.get( 'wgPageName' )
			} ),
			'MOBIஆக பதிவிறக்குக',
			'n-mobiExport',
			'MOBI வடிவத்தில் இப்பக்கத்தினை பதிவிற்றக்கம் செய்க',
			'',
			'#t-print'
		);
		mw.util.addPortletLink(
			'p-coll-print_export',
			'//tools.wmflabs.org/wsexport/tool/book.php?'+ $.param( {
			    lang: 'ta',
			    page: mw.config.get( 'wgPageName' ),
			    fonts:'none',
				format:''
				} ),
			'வேறு வடிவத்தில் பதிவிறக்க',
			'n-toolExport',
			'வேறு வடிவத்தில் இப்பக்கத்தினை பதிவிற்றக்கம் செய்க',
			'',
			'#t-print'
		);
	} );
}
"https://ta.wikisource.org/w/index.php?title=மீடியாவிக்கி:Gadget-WSexport.js&oldid=719353" இலிருந்து மீள்விக்கப்பட்டது