'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->

Indonesian language

Indonesian (Bahasa Indonesia [baˈhasa indoneˈsia]) is the official language of Indonesia. It is a standardized register of Malay, an Austronesian language that has been used as a lingua franca in the Indonesian archipelago for centuries. Most Indonesians also speak one of more than 700 indigenous languages.

Indonesia is the fourth most populous nation in the world. Of its large population, the majority speak Indonesian, making it one of the most widely spoken languages in the world.

Most Indonesians, aside from speaking the national language, are often fluent in another regional language (examples include Javanese, Sundanese and Madurese), which are commonly used at home and within the local community. Most formal education, and nearly all national media and other forms of communication, are conducted in Indonesian. In East Timor, which was an Indonesian province from 1975 to 1999, Indonesian is recognised by the constitution as one of the two working languages (the other being English), alongside the official languages of Tetum and Portuguese.

Gajah Mada

Gajah Mada (c. 1290 – c. 1364) was, according to Javanese old manuscripts, poems and mythology, a powerful military leader and mahapatih or prime minister of the Majapahit Empire, credited with bringing the empire to its peak of glory. He delivered an oath called Sumpah Palapa, in which he vowed not to eat any food containing spices until he had conquered all of the Southeast Asian archipelago of Nusantara for Majapahit. In modern Indonesia, he serves as an important national hero, a symbol of patriotism and national unity.

Rise to Power

Not much is known about Gajah Mada's early life. Some of the first accounts mention his career as commander of the Bhayangkara, an elite guard for Majapahit kings and their family. When Rakrian Kuti, one of the officials in Majapahit, rebelled against the Majapahit king Jayanegara (ruled 1309–1328) in 1321, Gajah Mada and the then-mahapatih Arya Tadah helped the king and his family to escape the capital city of Trowulan. Later Gajah Mada aided the king to return to the capital and crush the rebellion. Seven years later, Jayanegara was murdered by Rakrian Tanca, the court physician, one of Rakrian Kuti's aides.

Podcasts:

  • Learn Indonesian in 20 Minutes - ALL the Basics You Need

    Learn Indonesian twice as fast with your FREE gifts of the month including PDF lessons, vocabulary lists and much more! Get your gifts now: https://goo.gl/j9st9s ↓Check how below↓ Step 1: Go to https://goo.gl/j9st9s Step 2: Sign up to get your free gifts Step 3: Achieve Your Learning Goal and master Indonesian the fast, fun and easy way! In this video, you’ll get started with Indonesian in only X minutes! You will discover the key points of Indonesian Grammar! This is THE place to start if you want to start learning Indonesian. Follow us here: - Facebook : https://www.facebook.com/IndonesianPod101 - Twitter : https://twitter.com/IndonesianPod101

    published: 16 Feb 2018
  • Learn Indonesian Easily

    If you're looking to learn Indonesian, you've come to the right place. Mondly is designed to help you master the Indonesian language quickly and efficiently. From essential vocabulary and grammar to conversational phrases, we've got you covered. Subscribe now, get Mondly and start your Indonesian learning adventure today! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Follow us: F A C E B O O K ➜ https://www.facebook.com/mondlylanguages I N S T A G R A M ➜ https://www.instagram.com/mondlylanguages/ T W I T T E R ➜ https://twitter.com/mondlylanguages T I K T O K ➜ https://www.tiktok.com/@mondly.app - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Mondy app is available on: • Google Play ►...

    published: 12 Jul 2022
  • The Indonesian Language (Bahasa Indonesia)

    Today's video is all about the Indonesian language (Bahasa Indonesia), its history and development, its features, and its colloquial varieties called Bahasa Gaul. Special thanks to Evan Chandra for his audio samples and help with Bahasa Gaul! Are you learning Indonesian? Click the link to get a free account for IndonesianPod101: http://bit.ly/Indonesianpod101. Support Langfocus on Patreon: http://patreon.com/langfocus Special thanks to: BJ Peter DeLaCruz, Michael Cuomo, Nicholas Shelokov, Sebastian Langshaw, Brandon Gonzalez, Brian Michalowski, Adrian Zhang, Vadim Sobolev, Yixin Alfred Wong, Raymond Thomas, Simon Blanchet, Ryan Marquardt, Sky Vied, Romain Paulus, Panot, Erik Edelmann, Bennet, James Zavaleta, Ulrike Baumann, Ian Martyn, Justin Faist, Jeff Miller, Stephen Lawson, Howard S...

    published: 15 Oct 2016
  • Easy Indonesian 1 - Old Jakarta

    The first ever episode of Easy Indonesian: Andes takes us on a tour through old Jakarta! Easy Languages is an international project aiming at supporting people worldwide to learn languages through authentic street interviews. We also use this format to expose our street culture abroad and create a more diverse image of our countries. Episodes are produced in local languages and contain subtitles in both the original language as well as in English. More information at http://www.easy-languages.org/ http://www.facebook.com/easylanguagestreetinterviews In partnership with The Global Experience: www.theglobalexperience.org Producer of this episode: Andes Surya Atmaja Host of this episode: Andes Surya Atmaja Camera: Ishan Wibowo & Panji Arief Akbar Editing: Andes Surya Atmaja

    published: 18 Sep 2014
  • Indonesian language. Learn numbers. 10 most Important words #study #lesson #shotrs

    published: 19 Jun 2023
  • 🇮🇩 Indonesian is EASY 😫 (but my friends don’t believe me so you should) 🌝 #language

    published: 17 Jun 2024
  • Why Does Indonesia Have So Many Languages?

    if you want to try learning Indonesia, let's click to this ling to get free lessons https://ling-app.onelink.me/Ue3y/in76bysb Indonesia, where over 700 languages are spoken across 17,000 islands, is the focus of this enlightening video. We explore the historical, geographical, and cultural factors contributing to the country's vast linguistic diversity. Learn about the impact of ancient trade routes, the role of language in shaping cultural identity, and how Bahasa Indonesia helps maintain national unity. Whether you're fascinated by linguistic intricacies or curious about Indonesian heritage, this video provides a deep dive into one of the world's most multilingual nations. Join us to explore the rich tapestry of languages that define Indonesia.

    published: 21 Sep 2024
  • Learn Indonesian: 10 Beginner Indonesian Videos You Must Watch

    https://bit.ly/3WmiHy1 Get your Free Lifetime Account to finally get fluent in Indonesian! This is the best video to get started with Indonesian language↓ Check how below ↓ Step 1: Go to https://bit.ly/3WmiHy1 Step 2: Sign up for a Free Lifetime Account - No money, No credit card required Step 3: Start learning Indonesian the fast, fun and easy way! This video is for you because we will help you improving your Indonesian skills! You've decided to start learning Indonesian, so let's get you speaking like a Indonesian native speaker! In this video, you'll discover our most popular lessons ever. If you want to start learning Indonesian, this video is made for you. Our host express themselves in simple Indonesian, with subtitles. This video will challenge different set of skills such as ...

    published: 24 Jan 2023
  • Teaching Bahasa or Indonesian Language for Foreigners

    published: 26 Jan 2025
  • How Different Are Indonesian and Malay?!

    In this video we'll examine the differences between Malay and Indonesian. Are they different enough to be considered different languages? * Are you learning Indonesian? Click the link to get a free account at IndonesianPod101: http://bit.ly/Indonesianpod101 (Note: if you upgrade to a premium plan, Langfocus receives a small referral fee that helps support this channel.!) Well, modern Indonesian and modern Malay (including the Malaysian, Bruneian, and Singaporean varieties) all developed from a slightly older form of Malay. Indonesian was the Malay language until 1928 when Indonesian nationalists gave it the name "Indonesian" so that it could help unify their nation. Since then, Indonesian has developed in one direction, and Malay in other countries has developed in another direction, s...

    published: 15 Apr 2019
developed with YouTube
Learn Indonesian in 20 Minutes - ALL the Basics You Need
24:06

Learn Indonesian in 20 Minutes - ALL the Basics You Need

  • Order:
  • Duration: 24:06
  • Uploaded Date: 16 Feb 2018
  • views: 1329011
Learn Indonesian twice as fast with your FREE gifts of the month including PDF lessons, vocabulary lists and much more! Get your gifts now: https://goo.gl/j9st9s ↓Check how below↓ Step 1: Go to https://goo.gl/j9st9s Step 2: Sign up to get your free gifts Step 3: Achieve Your Learning Goal and master Indonesian the fast, fun and easy way! In this video, you’ll get started with Indonesian in only X minutes! You will discover the key points of Indonesian Grammar! This is THE place to start if you want to start learning Indonesian. Follow us here: - Facebook : https://www.facebook.com/IndonesianPod101 - Twitter : https://twitter.com/IndonesianPod101
https://wn.com/Learn_Indonesian_In_20_Minutes_All_The_Basics_You_Need
Learn Indonesian Easily
0:23

Learn Indonesian Easily

  • Order:
  • Duration: 0:23
  • Uploaded Date: 12 Jul 2022
  • views: 148601
If you're looking to learn Indonesian, you've come to the right place. Mondly is designed to help you master the Indonesian language quickly and efficiently. From essential vocabulary and grammar to conversational phrases, we've got you covered. Subscribe now, get Mondly and start your Indonesian learning adventure today! - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Follow us: F A C E B O O K ➜ https://www.facebook.com/mondlylanguages I N S T A G R A M ➜ https://www.instagram.com/mondlylanguages/ T W I T T E R ➜ https://twitter.com/mondlylanguages T I K T O K ➜ https://www.tiktok.com/@mondly.app - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - The Mondy app is available on: • Google Play ►► http://mond.ly/google-play • App Store ►► http://mond.ly/app-store • Web ►► http://mond.ly/web - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #indonesian #learnindonesian
https://wn.com/Learn_Indonesian_Easily
The Indonesian Language (Bahasa Indonesia)
13:38

The Indonesian Language (Bahasa Indonesia)

  • Order:
  • Duration: 13:38
  • Uploaded Date: 15 Oct 2016
  • views: 1695712
Today's video is all about the Indonesian language (Bahasa Indonesia), its history and development, its features, and its colloquial varieties called Bahasa Gaul. Special thanks to Evan Chandra for his audio samples and help with Bahasa Gaul! Are you learning Indonesian? Click the link to get a free account for IndonesianPod101: http://bit.ly/Indonesianpod101. Support Langfocus on Patreon: http://patreon.com/langfocus Special thanks to: BJ Peter DeLaCruz, Michael Cuomo, Nicholas Shelokov, Sebastian Langshaw, Brandon Gonzalez, Brian Michalowski, Adrian Zhang, Vadim Sobolev, Yixin Alfred Wong, Raymond Thomas, Simon Blanchet, Ryan Marquardt, Sky Vied, Romain Paulus, Panot, Erik Edelmann, Bennet, James Zavaleta, Ulrike Baumann, Ian Martyn, Justin Faist, Jeff Miller, Stephen Lawson, Howard Stratton, George Greene, Panthea Madjidi, Nicholas Gentry, Sergios Tsakatikas, Bruno Filippi, Sergio Tsakatikas, Qarion, Pedro Flores, Raymond Thomas, Marco Antonio Barcellos Junior, David Beitler, Rick Gerritzen, Sailcat, Mark Kemp, Éric Martin, Leo Barudi, Piotr Chmielowski, Suzanne Jacobs, Johann Goergen, Darren Rennels, and Caio Fernandes for their generous Patreon support. http://facebook.com/langfocus http://instagram.com/langfocus http://twitter.com/langfocus http://langfocus.com Music: Main: “Raw Deal” by Gunnar Olsen. Outro: “Circular” by Gunnar Olsen. Intro: Tobu - Roots [NCS Release] https://www.youtube.com/watch?v=7wNb0pHyGuI Tobu • https://soundcloud.com/7obu • https://www.facebook.com/tobuofficial • https://twitter.com/tobuofficial • https://www.youtube.com/c/tobuofficial
https://wn.com/The_Indonesian_Language_(Bahasa_Indonesia)
Easy Indonesian 1 - Old Jakarta
5:48

Easy Indonesian 1 - Old Jakarta

  • Order:
  • Duration: 5:48
  • Uploaded Date: 18 Sep 2014
  • views: 207135
The first ever episode of Easy Indonesian: Andes takes us on a tour through old Jakarta! Easy Languages is an international project aiming at supporting people worldwide to learn languages through authentic street interviews. We also use this format to expose our street culture abroad and create a more diverse image of our countries. Episodes are produced in local languages and contain subtitles in both the original language as well as in English. More information at http://www.easy-languages.org/ http://www.facebook.com/easylanguagestreetinterviews In partnership with The Global Experience: www.theglobalexperience.org Producer of this episode: Andes Surya Atmaja Host of this episode: Andes Surya Atmaja Camera: Ishan Wibowo & Panji Arief Akbar Editing: Andes Surya Atmaja
https://wn.com/Easy_Indonesian_1_Old_Jakarta
Indonesian language. Learn numbers. 10 most Important words #study #lesson #shotrs
0:12

Indonesian language. Learn numbers. 10 most Important words #study #lesson #shotrs

  • Order:
  • Duration: 0:12
  • Uploaded Date: 19 Jun 2023
  • views: 23196
https://wn.com/Indonesian_Language._Learn_Numbers._10_Most_Important_Words_Study_Lesson_Shotrs
🇮🇩 Indonesian is EASY 😫 (but my friends don’t believe me so you should) 🌝 #language
0:47

🇮🇩 Indonesian is EASY 😫 (but my friends don’t believe me so you should) 🌝 #language

  • Order:
  • Duration: 0:47
  • Uploaded Date: 17 Jun 2024
  • views: 3125463
https://wn.com/🇮🇩_Indonesian_Is_Easy_😫_(But_My_Friends_Don’T_Believe_Me_So_You_Should)_🌝_Language
Why Does Indonesia Have So Many Languages?
5:37

Why Does Indonesia Have So Many Languages?

  • Order:
  • Duration: 5:37
  • Uploaded Date: 21 Sep 2024
  • views: 131764
if you want to try learning Indonesia, let's click to this ling to get free lessons https://ling-app.onelink.me/Ue3y/in76bysb Indonesia, where over 700 languages are spoken across 17,000 islands, is the focus of this enlightening video. We explore the historical, geographical, and cultural factors contributing to the country's vast linguistic diversity. Learn about the impact of ancient trade routes, the role of language in shaping cultural identity, and how Bahasa Indonesia helps maintain national unity. Whether you're fascinated by linguistic intricacies or curious about Indonesian heritage, this video provides a deep dive into one of the world's most multilingual nations. Join us to explore the rich tapestry of languages that define Indonesia.
https://wn.com/Why_Does_Indonesia_Have_So_Many_Languages
Learn Indonesian: 10 Beginner Indonesian Videos You Must Watch
43:57

Learn Indonesian: 10 Beginner Indonesian Videos You Must Watch

  • Order:
  • Duration: 43:57
  • Uploaded Date: 24 Jan 2023
  • views: 42572
https://bit.ly/3WmiHy1 Get your Free Lifetime Account to finally get fluent in Indonesian! This is the best video to get started with Indonesian language↓ Check how below ↓ Step 1: Go to https://bit.ly/3WmiHy1 Step 2: Sign up for a Free Lifetime Account - No money, No credit card required Step 3: Start learning Indonesian the fast, fun and easy way! This video is for you because we will help you improving your Indonesian skills! You've decided to start learning Indonesian, so let's get you speaking like a Indonesian native speaker! In this video, you'll discover our most popular lessons ever. If you want to start learning Indonesian, this video is made for you. Our host express themselves in simple Indonesian, with subtitles. This video will challenge different set of skills such as listening or reading, and help you progress in your Indonesian study. This is the fastest, easiest way to pick up basic Indonesian! Click here to get started with the Indonesian language: https://bit.ly/3WmiHy1 Also, please LIKE, SHARE and COMMENT on our videos! We really appreciate it. Thanks! #Indonesian #LearnIndonesian #IndonesianPod101 #Conversations #NativeSpeaker
https://wn.com/Learn_Indonesian_10_Beginner_Indonesian_Videos_You_Must_Watch
Teaching Bahasa or Indonesian Language for Foreigners
2:00

Teaching Bahasa or Indonesian Language for Foreigners

  • Order:
  • Duration: 2:00
  • Uploaded Date: 26 Jan 2025
  • views: 17
https://wn.com/Teaching_Bahasa_Or_Indonesian_Language_For_Foreigners
How Different Are Indonesian and Malay?!
18:20

How Different Are Indonesian and Malay?!

  • Order:
  • Duration: 18:20
  • Uploaded Date: 15 Apr 2019
  • views: 2175274
In this video we'll examine the differences between Malay and Indonesian. Are they different enough to be considered different languages? * Are you learning Indonesian? Click the link to get a free account at IndonesianPod101: http://bit.ly/Indonesianpod101 (Note: if you upgrade to a premium plan, Langfocus receives a small referral fee that helps support this channel.!) Well, modern Indonesian and modern Malay (including the Malaysian, Bruneian, and Singaporean varieties) all developed from a slightly older form of Malay. Indonesian was the Malay language until 1928 when Indonesian nationalists gave it the name "Indonesian" so that it could help unify their nation. Since then, Indonesian has developed in one direction, and Malay in other countries has developed in another direction, so that they are no longer exactly the same. But not so much time has passed, so they are very similar to each other, especially in their standard forms. Whether or not they are a single language is up for debate, and depends partly on whether you focus mainly on the standard languages or spoken dialects. Special thanks to Irfan Radzman for his Malay samples and valuable information, and Enrile Fariz for his Indonesian samples and feedback! 1:13 - 1:19 contains a map image originally from lazardi wong jogya's video: https://www.youtube.com/watch?v=Q7OL0KCcguE Support Langfocus on Patreon: http://patreon.com/langfocus Special thanks to these current patrons: Andres Resendez Borgia, Anjo Barnes, Auguste Fields, Behnam Esfahbod, Bennett Seacrist, Brandon Gonzalez, Brian Michalowski, Clark Roth, Fiona de Visser, Georgina Toland, Guillermo Jimenez, Jacob Madsen, John Moffat, Marcelo Loureiro, Matthew Etter, Michael Arbagi, Michael Cuomo, Nobbi Lampe-Strang, Patrick W., Paul Boychuk, Rosalind Resnick, Ruben Sanchez Jr, Sebastian Langshaw, ShadowCrossZero, Victoria Goh, Vincent David, Yuko Sunda, [APG]RoboCop[CL], Adam Fitch, Adam Powell, Adam Vanderpluym, Alberto del Angel, Alex Hanselka, Ali Muhammed Alshehri, Andrew Hopkins, Andrew Woods, Angeline Biot, Aous Mansouri, Artur Kondrashin, Ashley Dierolf, Atsushi Yoshida, Avital Levant, Bartosz Czarnotta, Brent Warner, Brian Begnoche, Brian Morton, Bron X, Bruce Schultz, Bruce Stark, Bruno Filippi, Carl saloga, Charis T'Rukh, Chelsea Boudreau, Christian Langreiter, Christopher Lowell, David Anglin, David LeCount, Diane Young, divad, Divadrax, Don Ross, Donald Tilley, Duha54rus, Edward Wilson, Elzbieta Koziel, Eric Loewenthal, Erin Robinson Swink, fatimahl, Florian Breitwieser, Gary Walker, Grace Wagner, Gus Polly, Hannes Egli, Harry Kek, Henri Saussure, Ina Mwanda, Jack Jackson, James and Amanda Soderling, James Lillis, Jay Bernard, Jens Aksel Takle, JESUS FERNANDO MIRANDA BARBOSA, JK Nair, JL Bumgarner, John Masucci, Justin Faist, Kevin J. Baron, Klaw117, Konrad, Kristian Erickson, Laura Morland, Leo Barudi, Lincoln Hutton, Lorraine Inez Lil, M.Aqeel Afzal, Mahmoud Hashemi, Margaret Langendorf, Maria Comninou, Mariana Bentancor, Mark, Mark Grigoleit, Mark Kemp, Maurice Chou, Merrick Bobb, Michael Regal, Mike Frysinger, mimichi, Mohammed A. Abahussain, Nicholas Gentry, Nicole Tovar, Oleksandr Ivanov, Oto Kohulák, Panot, Patriot Nurse, Pauline Pavon, Paulla Fetzek, Peter Andersson, Peter Nikitin, Peter Scollar, Pomax, Raymond Thomas, Renato Paroni de Castro, Rick Gerritzen, Rob Hoskins, Robert Sheehan, Robert Williams, Roland Seuhs, Ronald Brady, Saffo Papantonopoulou, Samuel Croes, Scott Irons, Scott Russell, Sergio Pascalin, Shoji AKAO, Sierra Rooney, Simon Blanchet, Spartak Kagramanyan, Steeven Lapointe, Stefan Reichenberger, Suzanne Jacobs, Teodor Bordei, Theophagous, Thomas Chapel, Tomáš Pauliček, Tryggurhavn, veleum, William O Beeman, William Shields, yasmine jaafar. Video chapters: 00:00 Introduction 00:47 The historical connection between Malay and Indonesian 01:58 Historical spelling differences between Malay and Indonesian 02:32 Different colonial loanwords in Malay and Indonesian 05:28 Other differences in everyday vocabulary 10:21 Informal Malay and Indonesian: Sentence 1 breakdown 14:20 Informal Malay and Indonesian: Sentence 2 breakdown 16:10 Final comments 17:18 The Question of the Day Music Main: “Gisele Revisited” By South London Hi-Fi Outro: “Time Illusionist” by Asher Fulero.
https://wn.com/How_Different_Are_Indonesian_And_Malay
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Learn Indonesian in 20 Minutes - ALL the Basics You Need
    24:06
    Learn Indonesian in 20 Minutes - ALL the Basics You Needremove from playlist
  • Learn Indonesian Easily
    0:23
    Learn Indonesian Easilyremove from playlist
  • The Indonesian Language (Bahasa Indonesia)
    13:38
    The Indonesian Language (Bahasa Indonesia)remove from playlist
  • Easy Indonesian 1 - Old Jakarta
    5:48
    Easy Indonesian 1 - Old Jakartaremove from playlist
  • Why Does Indonesia Have So Many Languages?
    5:37
    Why Does Indonesia Have So Many Languages?remove from playlist
  • Learn Indonesian: 10 Beginner Indonesian Videos You Must Watch
    43:57
    Learn Indonesian: 10 Beginner Indonesian Videos You Must Watchremove from playlist
  • How Different Are Indonesian and Malay?!
    18:20
    How Different Are Indonesian and Malay?!remove from playlist
developed with YouTube
PLAYLIST TIME:

Learn Indonesian in 20 Minutes - ALL the Basics You Need

Learn Indonesian twice as fast with your FREE gifts of the month including PDF lessons, vocabulary lists and much more! Get your gifts now: https://goo.gl/j9st9s ↓Check how below↓ Step 1: Go to https://goo.gl/j9st9s Step 2: Sign up to get your free gifts Step 3: Achieve Your Learning Goal and master Indonesian the fast, fun and easy way! In this video, you’ll get started with Indonesian in only X minutes! You will discover the key points of Indonesian Grammar! This is THE place to start if you want to start learning Indonesian. Follow us here: - Facebook : https://www.facebook.com/IndonesianPod101 - Twitter : https://twitter.com/IndonesianPod101
24:06
Learn Indonesian in 20 Minutes - ALL the Basics You Need
Learn Indonesian twice as fast with your FREE gifts of the month including PDF lessons, vo...
published: 16 Feb 2018
Play in Full Screen
0:23
Learn Indonesian Easily
If you're looking to learn Indonesian, you've come to the right place. Mondly is designed ...
published: 12 Jul 2022
Play in Full Screen
13:38
The Indonesian Language (Bahasa Indonesia)
Today's video is all about the Indonesian language (Bahasa Indonesia), its history and dev...
published: 15 Oct 2016
Play in Full Screen
5:48
Easy Indonesian 1 - Old Jakarta
The first ever episode of Easy Indonesian: Andes takes us on a tour through old Jakarta! ...
published: 18 Sep 2014
Play in Full Screen
0:12
Indonesian language. Learn numbers. 10 most Important words #study #lesson #shotrs
published: 19 Jun 2023
Play in Full Screen
0:47
🇮🇩 Indonesian is EASY 😫 (but my friends don’t believe me so you should) 🌝 #language
published: 17 Jun 2024
Play in Full Screen
5:37
Why Does Indonesia Have So Many Languages?
if you want to try learning Indonesia, let's click to this ling to get free lessons https...
published: 21 Sep 2024
Play in Full Screen
43:57
Learn Indonesian: 10 Beginner Indonesian Videos You Must Watch
https://bit.ly/3WmiHy1 Get your Free Lifetime Account to finally get fluent in Indonesian!...
published: 24 Jan 2023
Play in Full Screen
2:00
Teaching Bahasa or Indonesian Language for Foreigners
published: 26 Jan 2025
Play in Full Screen
18:20
How Different Are Indonesian and Malay?!
In this video we'll examine the differences between Malay and Indonesian. Are they differe...
published: 15 Apr 2019
Play in Full Screen

Indonesian language

Indonesian (Bahasa Indonesia [baˈhasa indoneˈsia]) is the official language of Indonesia. It is a standardized register of Malay, an Austronesian language that has been used as a lingua franca in the Indonesian archipelago for centuries. Most Indonesians also speak one of more than 700 indigenous languages.

Indonesia is the fourth most populous nation in the world. Of its large population, the majority speak Indonesian, making it one of the most widely spoken languages in the world.

Most Indonesians, aside from speaking the national language, are often fluent in another regional language (examples include Javanese, Sundanese and Madurese), which are commonly used at home and within the local community. Most formal education, and nearly all national media and other forms of communication, are conducted in Indonesian. In East Timor, which was an Indonesian province from 1975 to 1999, Indonesian is recognised by the constitution as one of the two working languages (the other being English), alongside the official languages of Tetum and Portuguese.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->
×