മീഡിയവിക്കി:Guidedtour-tour-twa2.js

വിക്കിപീഡിയ, ഒരു സ്വതന്ത്ര വിജ്ഞാനകോശം.

ശ്രദ്ധിക്കുക: സേവ് ചെയ്തശേഷം മാറ്റങ്ങൾ കാണാനായി താങ്കൾക്ക് ബ്രൗസറിന്റെ കാഷെ ഒഴിവാക്കേണ്ടി വന്നേക്കാം.

  • ഫയർഫോക്സ് / സഫാരി: Reload ബട്ടൺ അമർത്തുമ്പോൾ Shift കീ അമർത്തി പിടിക്കുകയോ, Ctrl-F5 അല്ലെങ്കിൽ Ctrl-R (മാക്കിന്റോഷിൽ ⌘-R ) എന്ന് ഒരുമിച്ച് അമർത്തുകയോ ചെയ്യുക
  • ഗൂഗിൾ ക്രോം: Ctrl-Shift-R (മാക്കിന്റോഷിൽ ⌘-Shift-R ) അമർത്തുക
  • ഇന്റർനെറ്റ് എക്സ്പ്ലോറർ: Refresh ബട്ടൺ അമർത്തുമ്പോൾ Ctrl കീ അമർത്തിപിടിക്കുക. അല്ലെങ്കിൽ Ctrl-F5 അമർത്തുക
  • ഓപ്പറ: Menu → Settings എടുക്കുക (മാക്കിൽ Opera → Preferences) എന്നിട്ട് Privacy & security → Clear browsing data → Cached images and files ചെയ്യുക.
// The Wikipedia Adventure Mission 2

 
( function ( window, document, $, mw, gt ) {

//automatic api:edit function to send yourself messages 
function sendMessage( targetPage, msgPage, linkTo ) {
	var api = new mw.Api();
	api.get( {
		'action' : 'query',
		'titles' : msgPage,
		'prop'   : 'revisions|info',
		'intoken' : 'edit',
		'rvprop' : 'content',
		'indexpageids' : 1
	} ).done( function (result) {
		result = result.query;
		var page = result.pages[result.pageids[0]];
		var text = page.revisions[0]['*'];
		api.post( {
			'action' : 'edit',
			'title' : targetPage,
			'appendtext' : "\n" + text,
			'summary' : 'പുതിയ സന്ദേശം ([[WP:TWA|വിക്കിപീഡിയ സാഹസിക യാത്രയുടെ]] ഭാഗമായി ഓട്ടോമാറ്റിക്കായി സിമുലേറ്റ് ചെയ്തിരിക്കുന്നു)',
			'token' : page.edittoken
		} ).done( function () {
			window.location.href = linkTo;
		} );
	} );
}
 
// Fail gracefully post-save but not postedit
var postEditButtons = [];
if ( mw.config.get( 'wgAction' ) === 'view' && !gt.isPostEdit() ) {
        postEditButtons.push( {
                name: 'ഇവിടെ ഞെക്കിയാൽ തിരികെപോയി തിരുത്തൽ വരുത്താം',
                onclick: function() {
                        window.location.href = new mw.Uri().extend( { action: 'edit' } ).toString();
                }
        } );
}

// Fail gracefully post-save but not postedit for visual editor
var postEditButtonsVisual = [];
if ( mw.config.get( 'wgAction' ) === 'view' && !gt.isPostEdit() ) {
        postEditButtonsVisual.push( {
                name: 'തിരിച്ചുപോവുക',
                onclick: function() {
                        window.location.href = window.location.href +
"&veaction=edit";
                }
        } );
}


gt.defineTour( {
        name: 'twa2',
        shouldLog: true,
        steps: [ {
                //1
                title: 'രണ്ടാം മിഷൻ ആരംഭിക്കുന്നു!',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div> വീണ്ടും കണ്ടുമുട്ടിയതിൽ സന്തോഷം. ഈ മിഷനിൽ നമ്മൾ മറ്റു എഡിറ്റർമാരുമായി ആശയവിനിമയം നടത്തുന്നതെങ്ങനെയെന്ന് അറിയാൻ പോകുന്നു.<br><br>',
                onShow: gt.parseDescription,
                overlay: true,
                closeOnClickOutside: false,
	            buttons: [ {
                        name: 'ഇത് നമുക്ക് തുടങ്ങാം',
                        action: 'next',
                         } ],
                allowAutomaticOkay: false
 
        },  {
                //2
                title: 'സംവാദത്താൾ',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>യൂസർ പേജുപോലെത്തന്നെ എല്ലാ എഡിറ്റർമാർക്കും സ്വന്തമായി സംവാദതാളും ഉണ്ട്. മറ്റുള്ളവർക്ക് ഇവിടെ സന്ദേശം നൽകാവുന്നതാണ്. <br><br> ദേ നോക്കൂ... ആരോ നിങ്ങൾക്ക് ഒരു സന്ദേശമയച്ചിരിക്കുന്നു..<br><br>',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
		        buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'വിക്കിപീഡിയ:TWA/2/തുടങ്ങുക' ) + '?tour=twa2&step=1'          
                } , {
                        name: 'Check your new message*',
                        onclick: function()  {  if(!mw.config.get('wgUserName')){  alert( "ദയവായി ലോഗിൻ ചെയ്യുക" );   return;   } sendMessage( 'User talk:' + mw.config.get( 'wgUserName' ) + '/TWA', 'വിക്കിപീഡിയ:TWA/എന്റെസംവാദം/1' , mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=3'); }
                } ],
                allowAutomaticOkay: false
 
        },  {
                //3
                title: 'യഥാർത്ഥ ആളുകൾ',
                description: '<br><div align="left">[[File:TWA_guide_left_top.png|link=]]</div> വൗ, അതുകൊള്ളാം ഇവിടെ എന്നെപ്പോലെതന്നെ യഥാർത്ഥ ആളുകളും ഉണ്ട്.<br><br>സംവാദതാളിൽ പോയി ഒരു മറുപടി നൽകാം.<br><br>',
                onShow: gt.parseDescription,
                attachTo: '#content.mw-body',
                position: 'bottom',
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'വിക്കിപീഡിയ:TWA/2/തുടങ്ങുക' ) + '?tour=twa2&step=2'          
                } , {
                         name: 'Will-ന് മറുപടി നൽകുക',
                         action: 'externalLink',
                         url: mw.util.getUrl( 'വിക്കിപീഡിയ:TWA/2/Will' ) + '?tour=twa2&step=4'
                } ],
                allowAutomaticOkay: false				
 
        },  {
                //4
                title: 'സ്വയം വെല്ലുവിളിക്കുക ....',
                description: 'സൂചന: ഇത് ശരിയാകുന്നതുവരെ നിങ്ങൾക്കിത് പഠിക്കാവുന്നതാണ്. കൂടാതെ നിങ്ങള്ക്ക് വീണ്ടും ശ്രമിക്കാവുന്നതാണ് !',
                attachTo:'#contentSub',
                position: 'bottom',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                allowAutomaticOkay: false, 
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=3'          
                } ],

        },  {
                //5
                title: 'നിങ്ങളുടെ മറുപടി എഴുതുക',
                description: '<br>Will നു സന്ദേശം അയയ്ക്കാനായി "മൂലരൂപം തിരുത്തുക" ക്ലിക്ക് ചെയ്യുക <br><br>',
                attachTo: '#ca-edit',
                position: 'bottom',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'വിക്കിപീഡിയ:TWA/2/Will' ) + '?tour=twa2&step=4'          
                } ],
                shouldSkip: function() {
                        return gt.hasQuery( { action: 'edit' } );
                }

        },  {
                //6
                title: 'നിങ്ങളുടെ സന്ദേശം പകർത്തുക',
                description: '<br><div align="left">[[File:TWA_guide_left_top.png|link=]]</div>Will ന്റെ സന്ദേശത്തിനു കീഴെയുള്ള എഡിറ്റിങ്ങ് ടെക്സ്റ്റ് ബോക്സിൽ തക്കതായ മറുപടി പകർത്തി ഒട്ടിക്കുക  <br><br>:നിങ്ങളുടെ സൗഹാർദ്ദപരമായ സ്വാഗതത്തിനു നന്ദി<nowiki>[[User:WillKomen]]</nowiki>. തിരുത്തൽ തുടങ്ങുവാൻ എനിക്ക് തിടുക്കമായി ! <nowiki>~~~~</nowiki><br>',
                onShow: gt.parseDescription,
                overlay: false,
                attachTo: '#wpTextbox1', 
                position: 'bottomRight',
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=5'          
                } , {
                        name: 'പകർത്തി',
                        action: 'next',
                         } ],
                allowAutomaticOkay: false

},  {
                //7
                title: 'വേഗത്തിൽ മൂന്നു കാര്യങ്ങൾ',
                description: '<br><b>ഇന്റന്റ്</b> കോളനോടു കൂടിയ മറുപടി <code > : </code> ടെക്സ്റ്റ് ഒരു പൊടിക്ക് വലത്തേക്ക് നീക്കാനും നിങ്ങൾ സന്ദേശത്തോട് പ്രതികരിക്കുന്നതായി കാണിക്കാനും.<br><br>  <b>ഒപ്പ്</b> സന്ദേശങ്ങളോടൊത്ത് <code><nowiki>~~~~</nowiki></code>നിങ്ങളുടെ മറുപടിയിൽ ഉപഭോക്തൃനാമം ചേർക്കാനും--അല്ലെങ്കിൽ [[File:OOUI JS signature icon LTR.png|22px]] ഒപ്പ് ബട്ടൺ ഫയൽ ഉപയോഗിക്കാൻ. നമ്മൾ സംവാദ താളുകളെ മാത്രമേ ഒപ്പു വയ്ക്കാറുള്ളൂ, ലേഖനത്താളുകളെയല്ല.<br><br><b>അറിയിക്കുക</b> നിങ്ങൾ അവരുടെ പേര് മറുപടിയില്ല എവിടെയോ ടൈപ്പ് ചെയ്തതായി <code><nowiki>[[User:WillKomen]]</nowiki></code>.  നിങ്ങൾ Will ന്റെ ഉപഭോക്തൃ സംവാദ താളിലാണെങ്കിൽ, അയാളെ തനിയെ അറിയിക്കും.',
                attachTo: '#wpTextbox1', 
                position: 'bottomRight',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=6&action=edit'          
                } , {
                	    name: 'കിട്ടി',
                        action: 'next'
                } ],
                allowAutomaticOkay: false,
				
} , {
                //8
                title: 'എഡിറ്റുചെയ്തതിന്റെ സംഗ്രഹവും പ്രസിദ്ധീകരണവും',
                description: '<br>"നിങ്ങളുടെ സൗഹാർദ്ദപരമായ സ്വാഗതത്തിനു നന്ദി" എന്ന് തിരുത്തൽ സംഗ്രഹം ചേർക്കുക.<br><br>എന്നിട്ട് നിങ്ങൾ തയ്യാറാകുമ്പോൾ "പ്രസിദ്ധീകരിക്കുക".<br><br>',
                attachTo: '#wpSave',
                position: 'bottomRight',
                autoFocus: 'yes',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
	            allowAutomaticOkay: false,
	            buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=7&action=edit'          
                } ],
	            shouldSkip: function() {
                        return gt.isPostEdit();
                },
                buttons: postEditButtons

} , {
                //9
                title: 'ഇൻഡന്റ് ചെയ്തു, സൈൻ ചെയ്തു, അറിയിച്ചു!',
                description: 'പുതിയ ഉപകരണം നേടി:  <b>കമ്യൂണിക്കേറ്റർ ബാഡ്ജ്</b><center>[[File:TWA badge 3.png|250px|link=]]</center><br>', 
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=8&action=edit'          
                } , {
                        name: 'സംസാരിച്ചുകൊണ്ടേ ഇരിക്കുക*',
                        onclick: function()  {  if(!mw.config.get('wgUserName')){  alert( "ദയവായി ലോഗിൻ ചെയ്യുക" );   return;   } sendMessage( 'User:' + mw.config.get( 'wgUserName' ), 'വിക്കിപീഡിയ:TWA/ബാഡ്ജ്/3ഫലകം2' , mw.util.getUrl( 'വിക്കിപീഡിയ:TWA/2/തുടങ്ങുക' ) + '?tour=twa2&step=10'); } 
                } ],
               allowAutomaticOkay: false
		
} , {
                //10
                title: 'ആശയ സംവേദന ശക്തി!',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>ഹേയ്, നിങ്ങൾക്ക് ഒരുപാട് സംഭാഷണങ്ങൾ ഒരുമിച്ച് വന്നാലോ? അവയെല്ലാം എങ്ങനെ പിന്തുടരാൻ കഴിയും?<br><br>',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=9'          
                } , {
                	    name: 'ഒരു നല്ല പ്രശ്നം...',
                        action: 'next'
               } ],

}, {
                //11
                title: 'ഒരു പരിഹാരം',
                description: '<br>വാച്ച്ലിസ്റ്റ്. നിങ്ങൾ പിന്തുടരുന്ന ലേഖനങ്ങളിലെയും താളുകളിലെയും മാറ്റങ്ങൾ ഉൾപ്പെട്ട ഫീഡ്.<br><br>ഒരു താൾ പിന്തുടരാൻ [[File:MediaWiki Vector skin white star watchlist icon.svg]] മുകളിൽ നടുവിലത്തെ നക്ഷത്രത്തിൽ ക്ലിക്ക് ചെയ്യുക അത് [[File:MediaWiki Vector skin blue star watchlist icon.svg]] നീലയായി മാറുമ്പോൾ, നിങ്ങൾ പിന്തുടരുകയായി! (നിങ്ങൾ പിന്തുടരുന്ന താളിൽ ഈ സജ്ജീകരണങ്ങൾ തനിയെ വരുന്ന രീതിയിൽ ക്രമീകരിക്കാവുന്നതാണ്).<br><br>"വാച്ച്ലിസ്റ്റ്" ക്ലിക്ക് ചെയ്യുക.',
                attachTo: '#pt-watchlist',
                position: 'bottomLeft', 
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=10'          
                } ],
	            shouldSkip: function() {
                        return gt.isPage( 'Special:Watchlist' );
                }
                
 
} , {
                //12
                title: 'വാച്ച്ലിസ്റ്റ് പരിശോധിക്കുക',
                description: '<br><div align="left">[[File:TWA_guide_left_top.png|link=]]</div>വിക്കിപീഡിയയുടെ ഒരു <i>പ്രധാന</i> ഗുണമെന്തെന്നാൽ ഓരോ തിരുത്തും കുറിച്ച് വയ്ക്കുന്നുണ്ട്. ഇത് ആളുകളെ തങ്ങളുടെ പ്രവർത്തികൾ പരസ്പരം പരിശോധിക്കാൻ പ്രാപ്തരാക്കും, കാരണം സഹായം ലഭിക്കുമ്പോൾ നമ്മൾ ഉത്തമരാകും.<br><br>',
                onShow: gt.parseDescription,
                attachTo: '#content.mw-body',
                position: 'bottom',
                overlay: false,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
	            buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=11'          
                } , {
	            	    name: 'ഞങ്ങളുടെ ആദർശം',
                        action: 'next'
               } ],

} , {
                //13
                title: 'ശക്തരായിരിക്കുക',
                description: 'ഇവിടെ കാര്യങ്ങൾ കുഴപ്പത്തിലാവാനുള്ള സാദ്ധ്യത വളരെ കുറവാണ്. കാരണം നിങ്ങൾക്ക് എല്ലായ്പ്പോഴും ഒരു പേജിന്റെ പഴയ പതിപ്പിലേക്ക് മാറാം.<br><br>ആശ്വാസമായി, ശരിയല്ലേ?<br><br>അതുകൊണ്ടാണ് <b>ശക്തരായിരിക്കുക!</b> എന്നത് വിക്കിപീഡിയയുടെ ആദർശമായി സ്വീകരിച്ചിരിക്കുന്നത് .<br><br>',
                onShow: gt.parseDescription,
                overlay: true,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:Watchlist' ) + '?tour=twa2&step=12'          
                } , {
                	    name: 'വാച്ച്ലിസ്റ്റിനപ്പുറത്ത്',
                        action: 'next'
               } ],
 
} , {
                //14
                title: 'നിങ്ങളുടെ സംഭാവനകൾ പിൻതുടരുക',
                description: '<br>നിങ്ങളുടെ വാച്ച് ലിസ്റ്റിൽ നിങ്ങൾ പിന്തുടരുന്ന എല്ലാ പേജുകളിലും മാറ്റങ്ങൾ ട്രാക്കുചെയ്യുന്നതിന് പുറമേ, നിങ്ങളുടെ എഡിറ്റുകളുടെ ട്രാക്ക് സൂക്ഷിക്കാനും നിങ്ങൾക്ക് കഴിയും.<br><br><b>സംഭാവനകൾ</b> ഞെക്കുക.',
                onShow: gt.parseDescription,
                overlay: false,
                attachTo: '#pt-mycontris',
                position: 'bottomLeft',
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:Watchlist' ) + '?tour=twa2&step=13'          
                } ],
                shouldSkip: function() {
                        return gt.isPage( 'Special:Contributions/' + mw.config.get( 'wgUserName' ).replace(/ /g, '_') );
                }
 
} , {
                //15
                title: 'നിങ്ങളുടെ എല്ലാ പ്രവർത്തനങ്ങളും',
                description: '<br>ഇതാണ് നിങ്ങളുടെ ഇതുവരെയുള്ള സംഭാവനകൾ.  ഇവ നിങ്ങളുടെ യൂസർപേജിലും സംവാദതാളിലുമാണ്...<br><br>ശരി ഇതിനെപ്പറ്റി ഇനിയും എന്തെങ്കിലും ചെയ്യാനാവുമോ എന്ന് നോക്കാം..<br><br> ഒന്നു നിൽക്കൂ, നിങ്ങൾക്ക് വീണ്ടും ഒരു പുതിയ സന്ദേശം വന്നിട്ടുണ്ട്.<br><br>',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
	            buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:Watchlist' ) + '?tour=twa2&step=14'          
                } , {
                        name: 'താങ്കളുടെ പുതിയ സന്ദേശം നോക്കുക*',
                        onclick: function()  {  if(!mw.config.get('wgUserName')){  alert( "ദയവായി ലോഗിൻ ചെയ്യുക" );   return;   } sendMessage( 'User talk:' + mw.config.get( 'wgUserName' ) + '/TWA', 'വിക്കിപീഡിയ:TWA/എന്റെസംവാദം/2' , mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=16'); }
                } ],       
                allowAutomaticOkay: false

} , {
                //16
                title: 'ഒരു ക്ഷണക്കത്ത്',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>ശരിക്കും നന്നായി പ്രവർത്തിക്കാനുള്ള എന്തോ ഒന്ന്...<br><br>',
                onShow: gt.parseDescription,
                attachTo: '#content.mw-body',
                position: 'bottom',
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl ('Special:Contributions/' ) + mw.config.get( 'wgUserName' ) + '?tour=twa2&step=15'          
                } , {
                         name: 'GaiaGirl ന് മറുപടി നൽകുക',
                         action: 'externalLink',
                         url: mw.util.getUrl( 'Wikipedia:TWA/2/Gaia' ) + '?tour=twa2&step=17'
                } ],
                allowAutomaticOkay: false				
 
        },  {
                //17
                title: 'സ്വയം വെല്ലുവിളിക്കുക ....',
                description: 'സൂചന: ഇത് ശരിയാകുന്നതുവരെ നിങ്ങൾക്കിത് പഠിക്കാവുന്നതാണ്. കൂടാതെ നിങ്ങൾക്ക് വീണ്ടും ശ്രമിക്കാവുന്നതാണ്!',
                attachTo:'#contentSub',
                position: 'bottom',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                allowAutomaticOkay: false, 
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl ( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=16'          
                } ],
				
        },  {
                //18
                title: 'മറുപടി',
                description: ' <br>മൂലരൂപം തിരുത്തുക ഞെക്കുക. എന്നിട്ട് GaiaGirlക്ക് ഒരു സന്ദേശമയക്കുക.<br><br>',
                attachTo: '#ca-edit',
                position: 'bottom',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl ( 'Wikipedia:TWA/2/Gaia' ) + '?tour=twa2&step=17'          
                } ],
                shouldSkip: function() {
                        return gt.hasQuery( { action: 'edit' } );
                }
				
        },  {
                //19
                title: 'സന്ദേശം എഴുതുക',
                description: ' <br>GaiaGirlയുടെ സന്ദേശത്തിന് ചുവടെയുള്ള ടെക്സ്റ്റ് ബോക്സിലേക്ക് നിങ്ങളുടെ മറുപടി പകർത്തുക.<br><br>:ഗംഭീരം <nowiki>[[User:GaiaGirl86]]</nowiki>, ഇത് എന്റെ ഇഷ്ടഗ്രഹമാണ്! താങ്കൾ എങ്ങനെ ഇവിടെ ഏത്തിപ്പെട്ടു? <nowiki>~~~~</nowiki><br>',
                onShow: gt.parseDescription,
                overlay: false,
                attachTo: '#wpTextbox1', 
                position: 'bottomRight',
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl ( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=18'          
                } , {
                	    name: 'പകർത്തി',
                        action: 'next'
                } ],
                allowAutomaticOkay: false

},  {
                //20
                title: 'എഡിറ്റുചെയ്തതിന്റെ സംഗ്രഹവും പ്രസിദ്ധീകരണവും',
                description: '<br>ഒരു ചെറിയ തിരുത്തൽ സംഗ്രഹം. "എനിക്ക് സഹായിക്കാനാഗ്രഹമുണ്ട്", എന്നായാലോ.<br><br> അതിനുശേഷം നിങ്ങൾ തയ്യാറാവുമ്പോൾ പ്രസിദ്ധീകരിക്കുക ഞെക്കുക.<br><br>',
                onShow: gt.parseDescription,
                overlay: false,
	            attachTo: '#wpSave',
                position:  'bottomRight',
	            autoFocus: 'yes',
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl ( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=19&action=edit'          
                } ],
	            shouldSkip: function() {
                        return gt.isPostEdit();
                },
                buttons: postEditButtons

} , {
                //21
                title: 'ടിക്, ടോക്, ടിക്, ടോക്',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>ഹേയ്, GaiaGirl പ്രതികരിച്ചിട്ടുണ്ടോ എന്നറിയാൻ പേജ് വീണ്ടും ലോഡുചെയ്യുക!',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
	            allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl ( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=20&action=edit'          
                } , {
                         name: 'ഭൂമിക്കുചുറ്റും കറങ്ങുക*',
                         onclick: function()  {  if(!mw.config.get('wgUserName')){  alert( "ദയവായി ലോഗിൻ ചെയ്യുക" );   return;   } sendMessage( 'User talk:' + mw.config.get( 'wgUserName' ) + '/TWA', 'വിക്കിപീഡിയ:TWA/എന്റെസംവാദം/3' , mw.util.getUrl( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=22'); }
                } ],

} , {
                //22
                title: 'ദിശകൾ?',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>ഞാൻ നിങ്ങളെ അവിടേക്ക് കൊണ്ടുപോകും. ഭൂമിയിലേക്ക് എന്നെ പിന്തുടരുക. <br> <br>',
                onShow: gt.parseDescription,
                overlay: false,
                attachTo: '#content.mw-body',
                position: 'bottom',
                closeOnClickOutside: false,
	            allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl ( 'പ്രത്യേകം:എന്റെസംവാദം/TWA' ) + '?tour=twa2&step=21'          
                } , {
                         name: 'ഭൂമിയിലേക്ക് പോവുക',
                         action: 'externalLink',
                         url: mw.util.getUrl( 'വിക്കിപീഡിയ:TWA/2/അവസാനം' ) + '?tour=twa2&step=23'
                } ],

} , {
                //23
                title: 'നിങ്ങൾ രണ്ടാം മിഷന്റെ അവസാനത്തിലെത്തിയിരിക്കുന്നു!',
                description: '<br>[[File:Ringtone (3).ogg]]<br><b>മൂന്നാം മിഷനിലേക്കുള്ള യാത്ര തുടങ്ങുക...</b>',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
	            buttons: [ {
	            	    name: 'എന്നെ അഭിനന്ദിക്കൂ!',
                        action: 'end'
                } ],
 
}]
 
} );
 
} (window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) ) ;
"https://ml.wikipedia.org/w/index.php?title=മീഡിയവിക്കി:Guidedtour-tour-twa2.js&oldid=3404316" എന്ന താളിൽനിന്ന് ശേഖരിച്ചത്