മീഡിയവിക്കി:Guidedtour-tour-twa7.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 7

( 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: 'Go Back',
                shouldLog: true,
                onclick: function() {
                        window.location.href = window.location.href +
"?veaction=edit";
                }
        } );
}


gt.defineTour( {
        name: 'twa7',
        shouldLog: true,
        steps: [ {

                //1
                title: 'എന്താണ് പുതിയതെന്ന് നോക്കാം! ',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>നമ്മൾ ഭ്രൂമി എന്ന ലേഖനത്തിൽ തന്നെ ആരംഭിക്കുന്നു.<br><br>',
                overlay: true,
                onShow: gt.parseDescription,
                buttons: [ {
                        name: 'ഭ്രൂമിയിലേക്ക് പോവുക*',
                        onclick: function()  {  if(!mw.config.get('wgUserName')){  alert( "Please login." );   return;   } sendMessage( 'User:' + mw.config.get( 'wgUserName' ) + '/TWA/Earth/2', 'Wikipedia:TWA/Earth/4' , mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=2'); }           
                } ],
		        allowAutomaticOkay: false,
 
        },  {
                //2
                title: 'വൗ! എന്ത് ഉഗ്രനായ കൂട്ടിച്ചേർക്കലുകൾ!!',
                description: '<br><div align="left">[[File:TWA_guide_left_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( 'Wikipedia:TWA/1/Start' ) + '?tour=twa7&step=1'          
                } , {
                        name: 'നാൾവഴി പേജിൽ പോയി എങ്ങനെയാണിത് സംഭവിച്ചതെന്ന് കണ്ടെത്താം',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Wikipedia:TWA/Earth/History/2' ) + '?tour=twa7&step=3'
 
                } ],
                allowAutomaticOkay: false,
 
        },  {
                //3
                title: 'ഭൂമിയുടെ നാൾവഴി',
                description: '<br><div align="left">[[File:TWA_guide_left_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( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=2'          
                } , {
                        name: 'സംഗതി കൊള്ളാം, അല്ലേ?',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Wikipedia:TWA/7/Start' ) + '?tour=twa7&step=4'      
                } ],
               
 
        },  {

                //4
                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,
	            allowAutomaticOkay: false,
		        buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Wikipedia:TWA/Earth/History/2' ) + '?tour=twa7&step=3'          
                } , {
                        name: 'പക്ഷെ, എങ്ങനെയാണിത് "പ്രവർത്തിക്കുന്നത്"?',
                        action: 'next'      
                } ],



        },  {
                //5
                title: 'വിക്കിപീഡിയയുടെ പ്രവർത്തനം',
                description: '<br>ഇത്ര തുറന്ന എന്തെങ്കിലും എങ്ങനെയാണ് ഇത്ര വിശ്വസനീയമായി തുടരുന്നത്?<br><br>ബുദ്ധിയുള്ള-കമ്പ്യൂട്ടറിന്റെയും മനുഷ്യ അവലോകനത്തിന്റെയും ഒരു വെർച്വൽ ഫിൽട്ടറിലൂടെ മാറ്റങ്ങൾ കടന്നുപോകുന്നതിനാൽ വിക്കിപീഡിയ പ്രവർത്തിക്കുന്നു.<br><br>യാന്ത്രിക "ബോട്ടുകൾ" സംശയാസ്പദമായ എഡിറ്റുകൾ നിരസിക്കുകയും റാങ്ക് ചെയ്യുകയും ചെയ്യുന്നു. ആയിരക്കണക്കിന് ആളുകൾ നിരന്തരം പുതിയ മാറ്റങ്ങൾ വരുത്തുന്നു, കൂടാതെ ദശലക്ഷക്കണക്കിന് വായനക്കാർ മാറ്റംവരുന്നതെല്ലാം ശ്രദ്ധിക്കുന്നു.<br><br>മിക്ക ആളുകളും സഹായിക്കാൻ ആഗ്രഹിക്കുന്നു, ചീത്തയേക്കാൾ നല്ലത് ചെയ്യാൻ ആഗ്രഹിക്കുന്ന ധാരാളം പേരുണ്ട്.  അങ്ങനെയാണത് പ്രവർത്തിക്കുന്നത്.<br/>',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                 buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Wikipedia:TWA/7/Start' ) + '?tour=twa7&step=4'          
                } , {
                        name: 'ലിനസ് നിയമം?',
                        action: 'next'      
                } ],

        },  {
                //6
                title: 'ലിനസ് നിയമം',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>മറ്റ് എൻ‌സൈക്ലോപീഡിയകളെപ്പോലെ തന്നെ വിക്കിപീഡിയയും കൃത്യമാണെന്ന് ഗവേഷണങ്ങൾ തെളിയിക്കുന്നു, പക്ഷേ അതിന്റെ പിശകുകൾ * വേഗത്തിൽ * പരിഹരിക്കപ്പെടും.<br><br><b>"ആവശ്യത്തിന് കണ്ണുകളുണ്ടെങ്കിൽ ബഗ്ഗുകളെല്ലാം ആഴംകുറഞ്ഞതാണ്"</b><br><br>എന്ന മുദ്രാവാക്യത്തിന്റെ ജീവിക്കുന്ന തെളിവാണ് ഞങ്ങൾ.<br><br>മറ്റൊരുതരത്തിൽ പറഞ്ഞാൽ <i>നമ്മളെല്ലാവരും</i> ചേർന്ന് <i>എന്തും</i> <i>സാദ്ധ്യമാക്കുന്നു</i>.</br><br>',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
	            allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Wikipedia:TWA/7/Start' ) + '?tour=twa7&step=5'          
                } , {
                        name: 'ഭ്രൂമിയെ അടുത്ത തലത്തിലേക്ക് ഉയർത്തുക',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=7'      
                } ],	

},  {
                //7
                title: 'ഭൂമിക്ക് തിളക്കം ആവശ്യമാണ്',
                description: '<br><div align="left">[[File:TWA_guide_left_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( 'Wikipedia:TWA/7/Start' ) + '?tour=twa7&step=6'          
                } , {
                        name: 'ഭ്രൂമിയെ ഭംഗിയാക്കുക',
                        action: 'next'
                } ],	


} , {
                //8
                title: 'ലേഖനങ്ങളും മികച്ചതായി കാണപ്പെടേണ്ടതാണ്..',
                description: '<br><div align="left">[[File:TWA_guide_right_top.png|link=]]</div>ഒരു ലേഖനത്തിന്റെ ദൈർഘ്യമേറുന്നതനുസരിച്ച് ലേഖനത്തിനെ വിഭാഗങ്ങളായി വിഭജിക്കുന്നു. ഇത് ലേഖനം കൂടുതൽ മനോഹരവും വായിക്കാൻ എളുപ്പവുമാക്കി തീർക്കുന്നു. ആവശ്യത്തിന് ഉപവിഭാഗങ്ങളുണ്ടെങ്കിൽ ഉള്ളടക്കങ്ങളുടെ പട്ടിക ഓട്ടോമാറ്റിക്കായി ദൃശ്യമാകും.<br><br>',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=7'          
                } , {
                	    name: 'കുറച്ച് വിഭാഗം ചേർക്കുക!',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
				
} , {

                //9
                title: 'എഡിറ്റ് ഞെക്കുക',
                description: '<br>മൂലരൂപം തിരുത്തുക ഞെക്കുക. അങ്ങനെ നിങ്ങൾക്ക് ഉപവിഭാഗങ്ങൾ എഡിറ്റുചെയ്യാം.<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( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=8'          
                } ],
                shouldSkip: function() {
                        return gt.hasQuery( { action: 'edit' } );
                }

        },  {
                //10
                title: 'ഉപവിഭാഗത്തിന്റെ തലക്കെട്ടുകൾ ചേർക്കുക',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>ആദ്യം, "ആകൃതിയും ഘടനയും" എന്ന വിഭാഗ ശീർഷകം ഹൈലൈറ്റ് ചെയ്യുക.<br><br>HEADING മെനു കാണിക്കുന്നതിന് ടൂൾബാറിലെ ADVANCED ക്ലിക്കുചെയ്യുക. തലക്കെട്ട് ലെവൽ 2 ഉപയോഗിക്കാൻ നിങ്ങൾ ആഗ്രഹിക്കുന്നു<br><br>വിഭാഗ ശീർഷകങ്ങളിൽ ഓരോന്നിനും ഇത് ചെയ്യുക <br>1) ആകൃതിയും ഘടനയും<br>2) ടെക്റ്റോണിക് പ്ലേറ്റുകൾ<br>3) ഉപരിതലം<br>4) അന്തരീക്ഷം<br>5)കാലാവസ്ഥ, ജലചക്രം<br>6) ഭ്രമണപഥവും ഭ്രമണവും<br>7) അവലംബങ്ങൾ<br><br>',
                overlay: false,
                onShow: gt.parseDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomRight',
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=9'          
                } , {
                	    name: 'തലക്കെട്ടുകൾ ചേർക്കുക',
                        action: 'next',
                        } ],

 },  {
                //11
                title: 'ഭാവിയിലേക്കുള്ള ഒരു കുറിപ്പ്',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>ഒരു വിഭാഗത്തിന്റെ തലക്കെട്ടിന്റെ ആദ്യ പദം മാത്രമേ ഞങ്ങൾ വലിയക്ഷരമാക്കൂ, അത് ശരിയായ നാമപദമല്ലെങ്കിൽ.<br><br>കൂടാതെ, ഉയർന്ന തലത്തിലുള്ള തലക്കെട്ട് തിരഞ്ഞെടുക്കുന്നതിലൂടെ നിങ്ങൾക്ക് വിഭാഗങ്ങൾക്കുള്ളിൽ വിഭാഗങ്ങളുണ്ടാകാം( ലെവൽ 3 ലെവൽ 2ന്റെ അകത്ത് വരും)<br><br>',
                overlay: false,
                onShow: gt.parseDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomRight',
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=10&action=edit'          
                } , {
                	    name: 'മനസ്സിലായി',
                        action: 'next',
                        } ],

} , {
                //12
                title: 'തിരുത്തൽ സംഗ്രഹവും പ്രസിദ്ധീകരണവും',
                description: '<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( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=11&action=edit'          
                }],
                shouldSkip: function() {
                        return gt.isPostEdit();
                },
                buttons: postEditButtons

} , {
                //13
                title: 'മുന്നോട്ട് പോവുക',
                description: '<br><div align="left">[[File:TWA_guide_left_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( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=12&action=edit'          
                }, {
                	    name: 'വിക്കിലിങ്ക് ചെയ്യുക',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
				
} , {

                //14
                title: 'തിരുത്തുക ഞെക്കുക',
                description: '<br>മൂലരൂപം തിരുത്തുക ഞെക്കുക. അപ്പോൾ നിങ്ങൾക്ക് വിക്കിലിങ്കുകൾ ചേർക്കാൻ കഴിയും.<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( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=13'          
                }],
                shouldSkip: function() {
                        return gt.hasQuery( { action: 'edit' } );
                }

        },  {
                //15
                title: 'വിക്കിലിങ്കുകൾ ചേർക്കുക',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>ഓരോ വിഭാഗത്തിന്റെയും <i> ഖണ്ഡിക വാചകത്തിനുള്ളിൽ </i> വിക്കിലിങ്ക് ചെയ്യാൻ കഴിയുന്ന ഒരുകൂട്ടം വാക്കുകളുടെ ലിസ്റ്റാണ് ഇവിടെയുള്ളത്.  <br><br>*Shape and structure: <b>circumference</b><br>*Tectonic plates: <b>plate tectonics</b> (just the first mention)<br>*Surface: <b>urbanisation</b><br>*Atmosphere: <b>methane</b><br>*Weather, climate, and water cycle: <b>convection</b><br>*Orbit and rotation: <b>Orion Arm</b> <br><br>ഒരു സമയം ഒരു വാക്ക് ഹൈലൈറ്റ് ചെയ്യുക അതിനുശേഷം ചങ്ങലയുടെ ആകൃതിയിലുള്ള [[File:OOjs UI icon link-ltr.svg]] ബട്ടൺ ഞെക്കുക. അതിനുശേഷം ലിങ്ക് ചേർക്കുക.<br><br>',
                overlay: false,
                onShow: gt.parseDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomRight',
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=14&action=edit'          
                }, {
                	    name: 'വിക്കിലിങ്ക് ചേർത്തു',
                        action: 'next',
                        } ],

 },  {
                //16
                title: 'ഭാവിയിലേക്കുള്ള മറ്റൊരു കുറിപ്പ്',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>ഒരു ലേഖനത്തിലെ പ്രസക്തവും പ്രധാനപ്പെട്ടതുമായ പദങ്ങളിലേക്ക് നമ്മൾ വിക്കിലിങ്കുകൾ ചേർക്കുന്നതിനാൽ ആളുകൾക്ക് ആ പദങ്ങളെക്കുറിച്ച് കൂടുതലറിയാൻ കഴിയും. എന്നാൽ പ്രത്യേകവും പ്രസക്തവും നേരിട്ട് ബന്ധമുള്ളതുമായ ആശയങ്ങൾ മാത്രം വിക്കിലിങ്ക് ചെയ്യുക. *എല്ലാം* ബന്ധിപ്പിക്കേണ്ടതില്ല.<br><br>',
                overlay: false,
                onShow: gt.parseDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomRight',
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=15&action=edit'          
                }, {
                	    name: 'മനസ്സിലായി',
                        action: 'next',
                        } ],

} , {
                //17
                title: 'തിരുത്തൽ സംഗ്രഹവും പ്രസിദ്ധീകരണവും',
                description: '<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( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=16&action=edit'          
                }],
                shouldSkip: function() {
                        return gt.isPostEdit();
                },
                buttons: postEditButtons

} , {
                //18
                title: 'മികച്ച സംഗതി!',
                description: 'പുതിയ ടൂൾ കിട്ടിയിരിക്കുന്നു:  <b>വിക്കിലിങ്കർ ബാഡ്ജ്</b><center>[[File:TWA badge 12.png|250px|link=]]</center><br>ഭൂമിയെക്കുറിച്ചും അതുമായി ബന്ധപ്പെട്ട വിഷയങ്ങളെക്കുറിച്ചും പഠിക്കാനായി ആളുകൾ ദിവസം മുഴുവൻ തിരക്കിലായിരിക്കും.',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=17&action=edit'          
                } , {
                        name : 'ഇനി ഭ്രൂമിക്ക് വേണ്ടത്...*',
                        onclick: function() {sendMessage( 'User:' + mw.config.get( 'wgUserName' ), 'Wikipedia:TWA/Badge/13template2' , mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=19'); } 
                } ],
                allowAutomaticOkay: false

} , { 

                //19
                title: 'ഉം......',
                description: '<br><div align="left">[[File:TWA_guide_left_top.png|link=]]</div>ഇനി ഈ ലേഖനത്തിലില്ലാത്തത് എന്താണെന്ന് നിങ്ങൾക്ക് അറിയാമോ? കുറച്ച് ഭംഗിയുള്ളതും പ്രസക്തവുമായ ചിത്രങ്ങളാണ്. ചിത്രങ്ങൾ വായനക്കാർക്ക് പ്രസക്തവും ഭാവനാത്മകവും ഉജ്വലവുമായ അറിവ് നൽകുന്നു. നമുക്ക് എവിടെനിന്ന് കുറച്ച് ചിത്രങ്ങൾ ലഭിക്കും?<br><br>',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=18'          
                } , {
                	    name: 'സ്വാതന്ത്ര്യം',
                        action: 'next',
                        } ],
                allowAutomaticOkay: false
	

        },  {
                //20
                title: 'കോമൺസിലെന്താണുള്ളത്',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>വിക്കിപീഡിയയുടെ സഹോദരസംരംഭത്തിൽ സംഭരിച്ചിരിക്കുന്ന ചിത്രങ്ങൾ <br>വിക്കിമീഡിയ കോമൺസ്</b>.<br><br>നിങ്ങൾക്കറിയാമോ വിക്കിപീഡിയ <b>വിക്കിമീഡിയ പദ്ധതിയുടെ</b> ഭാഗമാണ്, 18 വ്യത്യസ്ഥ പദ്ധതികളുടെ ഒരു കൂട്ടം, അവ സ്വതന്ത്ര വിജ്ഞാനത്തിനായി വിവിധ രീതിയിൽ പ്രവർത്തിക്കുന്നു. ഇംഗ്ലീഷിൽ മാത്രമല്ല, ലോകത്തിലെ അനേകം ഭാഷകളിലും അവയുണ്ട്!<br><br>സാൻഫ്രാൻസിസ്കോയിലുള്ള <b>വിക്കിമീഡിയ ഫൗണ്ടേഷൻ</b> സാങ്കേതികവിദ്യ, ഫണ്ടുകൾ, വിവിധ സമൂഹങ്ങൾക്കായുള്ള പിൻതുണ എന്നിവ നൽകുന്നു. ഇതിനായി വിവിധ ഗ്രാന്റുകളും പ്രോഗ്രാമുകളും നടത്തുന്നു.<br><br>',
                overlay: true,
                onShow: gt.parseDescription,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=19'          
                } , {
                	    name: 'ഗംഭീരം!',
                        action: 'next',
                        } ],

 },  {
                //21
                title: 'കോമൺസിലെ നിധികൾ',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>കോമൺ‌സിൽ ചിത്രങ്ങൾ, ശബ്ദങ്ങൾ‌, വീഡിയോകൾ‌ എന്നിവയുടെ ഒരു വലിയ ശേഖരം ഉണ്ട്, മാത്രമല്ല ഇത് ഓരോ ദിവസവും വളരുകയാണ് ... 16 ദശലക്ഷത്തിലധികം ഫയലുകൾ‌! <br><br>ആർക്കും വേണമെങ്കിലും ഉപയോഗിക്കാനോ പരിഷ്‌ക്കരിക്കാനോ വിൽക്കാനോ ഈ ചിത്രങ്ങൾ സൗജന്യമാണ്! വിക്കിപീഡിയയുടെ ഉള്ളടക്കം പോലെ :)<br><br>നമുക്ക് ഭ്രൂമിയുടെ സംവാദതാൾ പരിശോധിക്കാം. ആരെങ്കിലും നിങ്ങൾക്ക് ഉപയോഗിക്കാനാവുന്ന ചിത്രങ്ങളുടെ നിർദ്ദേശങ്ങൾ നൽകിയിട്ടുണ്ടായിരിക്കാം.<br><br>',
                overlay: true,
                onShow: gt.parseDescription,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=20'          
                } , {
                        name: 'സംവാദത്താൾ നോക്കുക*',
                        onclick: function()  {  if(!mw.config.get('wgUserName')){  alert( "Please login." );   return;   } sendMessage( 'User talk:' + mw.config.get( 'wgUserName' ) + '/TWA/Earth', 'Wikipedia:TWA/Earth/Talk/5' , mw.util.getUrl( 'Special:MyTalk/TWA/Earth' ) + '?tour=twa7&step=22'); }           
                } ],
                allowAutomaticOkay: false,

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

} , {

                //23
                title: 'തിരുത്തുക ഞെക്കുക',
                description: '<br>മൂലരൂപം തിരുത്തുക അമർത്തുക. അങ്ങനെ ഈ ചിത്രങ്ങൾ ചേർക്കാം..<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( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=22'          
                } ],
                shouldSkip: function() {
                        return gt.hasQuery( { action: 'edit' } );
                }

} , {
                //24
                title: 'ചിത്രങ്ങൾ ചേർക്കുന്നത് എങ്ങനെ? അത് എളുപ്പമാണ്!!',
                description: '<br><div align="left">[[File:TWA_guide_left_top.png|link=]]</div>ആദ്യം ചിത്രത്തിന്റെ പേര് പകർത്തുക:<b>The Blue Marble.jpg</b><br><br> ഇനി ആദ്യ വിഭാഗത്തിന്റെ തലക്കെട്ടിനുതാഴെ(രൂപവും ഘടനയും) മൗസ് ഉപയോഗിച്ച് അമർത്തുക<br><br> ഇനി [[File:OOjs UI icon image-ltr.svg]] എന്ന ബട്ടൺ അമർത്തുക. ഇത് ടൂൾബാറിന്റെ ഇടത് മുകളിലായാണ് ഉള്ളത്. <br><br> അവസാനം ഫയൽ നെയിം എന്ന പെട്ടിയിലേക്ക് ഈ പേര് ഒട്ടിക്കുക. പിന്നീട് ഇൻസർട്ട് ഞെക്കുക.<br><br>',
                overlay: false,
                onShow: gt.parseDescription,
                attachTo: '#wpTextbox1', 
                position: 'bottomRight',
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=23'          
                } , {
                	    name: 'ആദ്യ ചിത്രം ചേർക്കുക',
                        action: 'next',
                        } ],

} , {

                //25
                title: 'കൂടുതൽ ചിത്രങ്ങളുടെ സൗന്ദര്യം',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>GaiaGirl നിർ‍ദ്ദേശിച്ച എല്ലാ ചിത്രങ്ങളും ചേർക്കുക. ഓരോന്നിന്റെയും ഫയൽ നാമം പകർത്തി അവ ലേഖനത്തിലേക്ക് ചിത്രം എന്ന ബട്ടൺ ഉപയോഗിച്ച് ചേർക്കുക. ഓരോ ചിത്രവും ഓരോ വിഭാഗത്തിന്റെ തലക്കെട്ടിന്റെ താഴെയായി ചേർക്കണം. ഒരുസമയം ഒരെണ്ണം.  അവലംബങ്ങൾ എന്ന വിഭാഗത്തിൽ ചിത്രം വേണ്ട. <br><br>Bachalpseeflowers.jpg<br>Sunset in El Porto, California (8074300769).jpg <br>Polarlicht 2.jpg <br>Red eyed tree frog edit2.jpg <br>Schoolgirls in Bamozai.JPG<br><br>',
                overlay: false,
                attachTo: '#wpTextbox1', 
                position: 'bottomRight',
                onShow: gt.parseDescription,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=24&action=edit'          
                } , {
                	    name: 'എല്ലാ ചിത്രങ്ങളും ചേർത്തു!',
                        action: 'next',
                        } ],

} , {
                //26
                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( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=25&action=edit'          
                }],
                shouldSkip: function() {
                        return gt.isPostEdit();
                },
                buttons: postEditButtons

},  {
                //27
                title: 'വൗ',
                description: 'പുതിയ ടൂൾ ലഭിച്ചിരിക്കുന്നു: <b>ചിത്രകാരൻ ബാഡ്ജ്</b><center>[[File:TWA badge 12.png|250px|link=]]</center><br>നിങ്ങൾ എന്താണ് ചെയ്തതെന്ന് നോക്കുക. എത്ര മനോഹരമായ ഭൂമിയാണ് നിങ്ങൾ സൃഷ്ടിച്ചത്.<br>',
                overlay: false,
                onShow: gt.parseDescription,
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=26&action=edit'          
                } , {
                        name: 'അതിൽ മുഴുകുക*',
                        onclick: function()  {  if(!mw.config.get('wgUserName')){  alert( "Please login." );   return;   } sendMessage( 'User:' + mw.config.get( 'wgUserName' ), 'Wikipedia:TWA/Badge/14template2' , mw.util.getUrl( 'Wikipedia:TWA/7/Start' ) + '?tour=twa7&step=28'); } 
                } ],

},  {
                //28
                title: 'നിങ്ങൾ.',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>ഭൂമിയിലെ ക്ഷേത്രത്തിലെ അറിവിന്റെ പിരമിഡിലേക്ക് നിങ്ങൾ ഒരു പുതിയ ലെവൽ ചേർത്തു. സംസ്കാരത്തിന്റെയും നാഗരികതയുടെയും വനത്തിൽ ഒരു റെഡ് വുഡ് മരം. മനുഷ്യരാശിയുടെ കാർണിവലിൽ ഒരു ഫെറിസ് വീൽ ....<br><br>നിങ്ങൾക്ക് പുതിയ ആശയം ലഭിക്കുന്നു ...! ഹേയ്, നിങ്ങൾക്ക് ഒരു പുതിയ സന്ദേശം ഉണ്ട്!<br><br>',
                overlay: true,
                onShow: gt.parseDescription,
                closeOnClickOutside: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Special:MyPage/TWA/Earth/2' ) + '?tour=twa7&step=27'          
                } , {
                        name: 'പുതിയ സന്ദേശങ്ങൾ പരിശോധിക്കുക*',
                        onclick: function()  {  if(!mw.config.get('wgUserName')){  alert( "Please login." );   return;   } sendMessage( 'User talk:' + mw.config.get( 'wgUserName' ) + '/TWA', 'Wikipedia:TWA/MyTalk/8' , mw.util.getUrl( 'Special:MyTalk/TWA' ) + '?tour=twa7&step=29'); }           
                } ],
                allowAutomaticOkay: false,

},  {
                //29
                title: ':-)',
                description: '<br><div align="right">[[File:TWA_guide_right_top.png|link=]]</div>നിങ്ങളുടെ സംഭാവനകളെ ശ്രദ്ധിക്കുകയും അംഗീകരിക്കുകയും ചെയ്യുന്നത് വളരെ നല്ല കാര്യമാണ്. <br><br>ഞങ്ങൾ ഇതിനെ <b>വിക്കിസ്നേഹം</b> എന്ന് വിളിക്കുന്നു. ആരെങ്കിലും മികച്ചത് ചെയ്യുന്നത് കാണുമ്പോൾ നിങ്ങൾ അവരോട് ഇത് പറയണം! ഏതെങ്കിലും ഉപയോക്താവിന്റെ പേജിന്റെ മുകളിലുള്ള ഹൃദയാകൃതിയിലുള്ള ബട്ടണിൽ ക്ലിക്കുചെയ്യുകയാണെങ്കിൽ ഇത് ചെയ്യാൻ വളരെ എളുപ്പമാണ്.<br><br> എനിക്കത് ഇവിടെ ഇഷ്ടമാണ്. നിങ്ങളും ഇവിടെ തുടരുമെന്ന് ഞാൻ പ്രതീക്ഷിക്കുന്നു. ഞാൻ നിങ്ങളെക്കുറിച്ച് അഭിമാനിക്കുന്നു. നിങ്ങൾ തയ്യാറാണെന്ന് ഞാൻ കരുതുന്നു.<br><br>',
                overlay: false,
                onShow: gt.parseDescription,
                attachTo: '#content.mw-body',
                position: 'bottom',
                closeOnClickOutside: false,
                allowAutomaticOkay: false,
                buttons: [ {
                        name: '<big>←</big>',
                        action: 'externalLink',
                        url: mw.util.getUrl( 'Wikipedia:TWA/7/Start' ) + '?tour=twa7&step=28'          
                } , {
                        name: 'കൂടുതൽ കണ്ടെത്തലുകൾ നടത്തുക*',
                        onclick: function()  {  if(!mw.config.get('wgUserName')){  alert( "Please login." );   return;   } sendMessage( 'User:' + mw.config.get( 'wgUserName' ), 'Wikipedia:TWA/Badge/15template2' , mw.util.getUrl( 'Wikipedia:TWA/7/End' ) + '?tour=twa7&step=30'); }           
                } ],

} , {
                //30
                title: 'വിക്കിപീഡിയ സാഹസിക യാത്ര ഇവിടെ ആരംഭിക്കുന്നു.',
                description: '<div align="left">[[File:TWA_guide_left_top.png|link=]]</div>നിങ്ങൾക്ക് ലോകത്തെ മാറ്റാൻ കഴിയും. മെച്ചപ്പെട്ട ഭൂമിയെ നിർമ്മിക്കുക. എന്നാൽ ഇനി നിങ്ങളെ അവിടെ വച്ച് കാണാം!<div align="right">[[File:TWA_guide_right_top.png|link=]]</div>',
                onShow: gt.parseDescription,
                overlay: false,
                closeOnClickOutside: true,
	            buttons: [ {
	        	        name: 'എന്നെ അഭിനന്ദിക്കൂ!!',
                        action: 'end'
                } ],
                allowAutomaticOkay: false
		       
}]

} );
 
} (window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) ) ;
"https://ml.wikipedia.org/w/index.php?title=മീഡിയവിക്കി:Guidedtour-tour-twa7.js&oldid=3402951" എന്ന താളിൽനിന്ന് ശേഖരിച്ചത്