'+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; })); }); -->

Podcasts:

  • easy malay #learn malay

    published: 27 Sep 2023
  • Indonesian vs Melayu 😂 Same words, VERY different meanings?? With @msqiwiie ! 🇲🇾🇮🇩 #languages

    published: 26 Dec 2024
  • 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
  • Learn to speak SIMPLE MALAY WORDS • language of Malaysia

    Let's learn some basic words in Bahasa Malaysia (or Malay), the national language of Malaysia. I'm not an expert in this language but I have spoken it for my whole life, formally learning it for 12 years–it is my second language while English is my first language. 🇲🇾Watch more Malay language videos: https://www.youtube.com/playlist?list=PLulGYs62aOPaxYYEJQovScjS--Q0qPqSe Note: the letter i is pronounced as e, while the letter a is pronounced as ah. Also, orange is called JINGGA in Malay, I said Oren by mistake 😅 _________ Subscribe to my life ► https://www.youtube.com/channel/UC_If... Instagram ► https://www.instagram.com/kvnching/ Behance ►https://www.behance.net/kevinching _________ Music Credits: Joakim Karud - Milky Way _________ New Here? Hi there! My name is Kevin Ch...

    published: 04 Nov 2020
  • Malay vs Indonesian | What's The Diff?

    Bahasa Melayu and Bahasa Indonesia are two closely related but distinctly different languages. So what's the diff? #sgnews #singapore Have an interesting video idea? Send us an email at video@mothership.sg LET'S CONNECT! -- Facebook: https://www.facebook.com/MothershipSG -- Twitter: https://twitter.com/mothershipsg -- Instagram: http://instagram.com/mothershipsg -- Tiktok: https://www.tiktok.com/@mothershipsg -- Telegram: https://t.me/mothershipsg 🔔 Click on the bell icon to be the first to watch our videos! 🔔

    published: 30 Aug 2024
  • Arabic and its Huge Impact on Indonesian & Malay!

    This video is all about the large impact the Arabic language has had on Malay & Indonesian. 🚩 Become a Langfocus patron at https://patreon.com/langfocus. Current patrons include these awesome people: AmateurTextualCriticism Anton Opanasenko Auguste Fields Bennett Seacrist Bill Walderman Brian King Bruce C CFitz17 Clark Roth Colin Milner Irina Bruce J Choi Jacob Madsen John Moffat Karl-Erik Wångstedt Kenny Kirk Kirkpatrick Marcelo Loureiro Max Tannchen Bomchil Michael Arbagi Michael Cuomo Michael Regal Mody Nobbi Lampe-Strang Paul Falstad Rosalind Resnick Ruben Sanchez Jr ShadowCrossZero Simon Jaglom Sonja Lang Ulf Hermjakob Victoria Goh Vincent David Walter Moore Wolfgang Egon Schroder Yuko Sunda 19jks94 Abdullah Al-Kazaz Adam Powell Adam Vanderpluym Alan Corley Alana Kalinowski Alen ...

    published: 17 Feb 2021
  • numbers malay 1 to 20 malay language

    #kids videos #malaysia #kids malaysia #malaylanguage #kids educational #kidsmalaysia

    published: 08 Feb 2025
  • Speak Conversational Malay in 5 minutes - Learn Malay

    Simple conversational Malay to get you started and feeling comfortable with the pronunciation. The Language House : https://languagehouse.edu.my/main.html Instagram : @thelanguagehousepj Download the pdf lesson : https://drive.google.com/file/d/1VHlLYVX5vCZuX1fCUnNkm4P5ZjMf5iwE/view?usp=sharing

    published: 17 Feb 2022
easy malay #learn malay
0:18

easy malay #learn malay

  • Order:
  • Duration: 0:18
  • Uploaded Date: 27 Sep 2023
  • views: 65325
https://wn.com/Easy_Malay_Learn_Malay
Indonesian vs Melayu 😂 Same words, VERY different meanings?? With @msqiwiie ! 🇲🇾🇮🇩 #languages
0:57

Indonesian vs Melayu 😂 Same words, VERY different meanings?? With @msqiwiie ! 🇲🇾🇮🇩 #languages

  • Order:
  • Duration: 0:57
  • Uploaded Date: 26 Dec 2024
  • views: 1790866
https://wn.com/Indonesian_Vs_Melayu_😂_Same_Words,_Very_Different_Meanings_With_Msqiwiie_🇲🇾🇮🇩_Languages
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
Learn to speak SIMPLE MALAY WORDS • language of Malaysia
4:42

Learn to speak SIMPLE MALAY WORDS • language of Malaysia

  • Order:
  • Duration: 4:42
  • Uploaded Date: 04 Nov 2020
  • views: 199895
Let's learn some basic words in Bahasa Malaysia (or Malay), the national language of Malaysia. I'm not an expert in this language but I have spoken it for my whole life, formally learning it for 12 years–it is my second language while English is my first language. 🇲🇾Watch more Malay language videos: https://www.youtube.com/playlist?list=PLulGYs62aOPaxYYEJQovScjS--Q0qPqSe Note: the letter i is pronounced as e, while the letter a is pronounced as ah. Also, orange is called JINGGA in Malay, I said Oren by mistake 😅 _________ Subscribe to my life ► https://www.youtube.com/channel/UC_If... Instagram ► https://www.instagram.com/kvnching/ Behance ►https://www.behance.net/kevinching _________ Music Credits: Joakim Karud - Milky Way _________ New Here? Hi there! My name is Kevin Ching and I am a based in Kuala Lumpur. I upload weekly vlogs detailing my life as a Graphic Designer entering the fun and chaotic world, as well as topic-focussed videos relevant in my life. Welcome to Kev's World! My Other Music Channel: https://www.youtube.com/channel/UCpNf7L0ExMQVaHzNL5D755Q
https://wn.com/Learn_To_Speak_Simple_Malay_Words_•_Language_Of_Malaysia
Malay vs Indonesian | What's The Diff?
2:07

Malay vs Indonesian | What's The Diff?

  • Order:
  • Duration: 2:07
  • Uploaded Date: 30 Aug 2024
  • views: 11530
Bahasa Melayu and Bahasa Indonesia are two closely related but distinctly different languages. So what's the diff? #sgnews #singapore Have an interesting video idea? Send us an email at video@mothership.sg LET'S CONNECT! -- Facebook: https://www.facebook.com/MothershipSG -- Twitter: https://twitter.com/mothershipsg -- Instagram: http://instagram.com/mothershipsg -- Tiktok: https://www.tiktok.com/@mothershipsg -- Telegram: https://t.me/mothershipsg 🔔 Click on the bell icon to be the first to watch our videos! 🔔
https://wn.com/Malay_Vs_Indonesian_|_What's_The_Diff
Arabic and its Huge Impact on Indonesian & Malay!
13:36

Arabic and its Huge Impact on Indonesian & Malay!

  • Order:
  • Duration: 13:36
  • Uploaded Date: 17 Feb 2021
  • views: 153613
This video is all about the large impact the Arabic language has had on Malay & Indonesian. 🚩 Become a Langfocus patron at https://patreon.com/langfocus. Current patrons include these awesome people: AmateurTextualCriticism Anton Opanasenko Auguste Fields Bennett Seacrist Bill Walderman Brian King Bruce C CFitz17 Clark Roth Colin Milner Irina Bruce J Choi Jacob Madsen John Moffat Karl-Erik Wångstedt Kenny Kirk Kirkpatrick Marcelo Loureiro Max Tannchen Bomchil Michael Arbagi Michael Cuomo Michael Regal Mody Nobbi Lampe-Strang Paul Falstad Rosalind Resnick Ruben Sanchez Jr ShadowCrossZero Simon Jaglom Sonja Lang Ulf Hermjakob Victoria Goh Vincent David Walter Moore Wolfgang Egon Schroder Yuko Sunda 19jks94 Abdullah Al-Kazaz Adam Powell Adam Vanderpluym Alan Corley Alana Kalinowski Alen Alex Hanselka Alex McKenzie Alexandre Smirnov Ali Muhammed Alshehri Alvin Quiñones Andrew Woods Anthony Kinread Anthony Peter Swallow Aous Mansouri Ashley Dierolf Avital Levant Bartosz Czarnotta Ben Benjamin Tipton Brent Warner Brian Begnoche Brian Morton Bruce Stark Cary Todd Chelsea Boudreau chris brown Christian Langreiter Christopher Lowell contumaciousCulimancer Cyrus Shahrivar Daniel Leon Daniel Young Darek David Eggleston David LeCount Dean Cary Debbie deezebee Diana Fulger Diane Young DickyBoa Dieter Raber digitalmobius Dina Trageser divad Divadrax Don Ross Donald Tilley Dulta Tracey Ed B Ed Heard Edward Wilson Elizabeth Evans Eren Parla Eric Loewenthal Fabio Martini fatimahl Fawad Quraishi G Bot Geoffrey Husic Grace Wagner Gregory Garecki Guillaume Brodar Harry Kek Helena Henri Saussure Herr K Howard Clark Hugh AULT Ina Mwanda Jack Jackson James and Amanda Soderling James Lillis JAMES ORR Jay Bernard Jaye Ferrone Jens Aksel Takle Jim McLaughlin JK Nair JL Bumgarner John Gavin John Hyaduck John Lloyd Josh Rotenberg Julie Sriken Jón Elíasson K M Kate MacDonald Kimball Pierce kingvaeonic Kirk Vistain Kit Marcos Konrad Kristian Erickson Krzysztof Dobrzanski KW Kyle James Lance Bedasie Laura Morland Lee Dedmon Leo Coyne Leo Barudi Lincoln Hutton Lissette Talledo Lorraine Inez Lil Louie dela Fuente Luke Jensen M.Aqeel Afzal maiku Margaret Langendorf Margrét Mark Mark Bonneaux Mark Judge Mark Kemp Mark Rogers Markzipan Martin Blackwell Matthew Etter Merrick Bobb Merrick Bobb Michael Sisson Mike Frysinger Mohammed A. Abahussain Naama and Geoff Shang Nadia B. Nicholas Gentry Nicolas Elsishans Nicole Tovar Ninka Niro noxialisrex Oleksandr Ivanov Oto Kohulák Papp Roland Patrick smith Patriot Nurse Paul Flynn Paul Shutler Pauline Pavon Paulla Fetzek Peter Andersson Peter Devlin Peter Nikitin Peter Scollar piero Pudim de Cana Raymond Thomas Renato Paroni de Castro ReysDad Richard Kelly Robert Brockway Robert Williams Robyn Morales Roger Smith Roland Seuhs Ron McKinnon Ronald Brady Saffo Papantonopoulou Sergio Pascalin Shaun Stacey Sheila Perryman Sierra Rooney Sigbjørn Nerland Simon Blanchet sinastral SJWS sofrito Stefan Reichenberger Steven Severance Suzanne Jacobs system_survivor Tara Pride Taz Theophagous Thomas Chapel Thomas Gijsbers Tim Hopmann tommy dahill Tony DeSantis Ty Ovendale Vinicius Marchezini Vitor Warren McKenzie William MacKenzie William O Beeman Yagub Alserkal yasmine jaafar Yeshar Hadi Yuriy Vrublevskiy Yuval Filmus Zachary Root zhangyimo Éric Martin Вайзефакнот Навальный 洋平 木嶋 00:00 Our sponsor 00:11 Influences on Malay and Indonesian 00:51 The history of how Arabic influenced Malay and Indonesian 02:04 Religious words that come from Arabic 03:38 Simple everyday words that come from Arabic 06:18 Arabic roots with Malay affixes 07:07 Transitional words that come from Arabic 09:04 Arabic loanwords in Indonesian news 10:14 Finding Arabic loanwords in Indonesian news headlines 12:18 How many loanwords from Arabic are there? 12:52 The Question of the Day The following images are used under Creative Commons Sharealike license: https://commons.wikimedia.org/wiki/File:Arab_League_member_states_(orthographic_projection).svg. Author: Rob984. https://commons.wikimedia.org/wiki/File:Malacca_Sultanate-pt.svg. Author: Gunawan Kartapranata. Still images incorporating the above images are available for use under the same Creative Commons Sharealike license.
https://wn.com/Arabic_And_Its_Huge_Impact_On_Indonesian_Malay
numbers malay 1 to 20 malay language
1:18

numbers malay 1 to 20 malay language

  • Order:
  • Duration: 1:18
  • Uploaded Date: 08 Feb 2025
  • views: 8
#kids videos #malaysia #kids malaysia #malaylanguage #kids educational #kidsmalaysia
https://wn.com/Numbers_Malay_1_To_20_Malay_Language
Speak Conversational Malay in 5 minutes - Learn Malay
13:05

Speak Conversational Malay in 5 minutes - Learn Malay

  • Order:
  • Duration: 13:05
  • Uploaded Date: 17 Feb 2022
  • views: 68831
Simple conversational Malay to get you started and feeling comfortable with the pronunciation. The Language House : https://languagehouse.edu.my/main.html Instagram : @thelanguagehousepj Download the pdf lesson : https://drive.google.com/file/d/1VHlLYVX5vCZuX1fCUnNkm4P5ZjMf5iwE/view?usp=sharing
https://wn.com/Speak_Conversational_Malay_In_5_Minutes_Learn_Malay
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • How Different Are Indonesian and Malay?!
    18:20
    How Different Are Indonesian and Malay?!remove from playlist
  • Learn to speak SIMPLE MALAY WORDS • language of Malaysia
    4:42
    Learn to speak SIMPLE MALAY WORDS • language of Malaysiaremove from playlist
  • Malay vs Indonesian | What's The Diff?
    2:07
    Malay vs Indonesian | What's The Diff?remove from playlist
  • Arabic and its Huge Impact on Indonesian & Malay!
    13:36
    Arabic and its Huge Impact on Indonesian & Malay!remove from playlist
  • numbers malay 1 to 20 malay language
    1:18
    numbers malay 1 to 20 malay languageremove from playlist
  • Speak Conversational Malay in 5 minutes - Learn Malay
    13:05
    Speak Conversational Malay in 5 minutes - Learn Malayremove from playlist
PLAYLIST TIME:

easy malay #learn malay

0:18
easy malay #learn malay
published: 27 Sep 2023
Play in Full Screen
0:57
Indonesian vs Melayu 😂 Same words, VERY different meanings?? With @msqiwiie ! 🇲🇾🇮🇩 #languages
published: 26 Dec 2024
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
4:42
Learn to speak SIMPLE MALAY WORDS • language of Malaysia
Let's learn some basic words in Bahasa Malaysia (or Malay), the national language of Malay...
published: 04 Nov 2020
Play in Full Screen
2:07
Malay vs Indonesian | What's The Diff?
Bahasa Melayu and Bahasa Indonesia are two closely related but distinctly different langua...
published: 30 Aug 2024
Play in Full Screen
13:36
Arabic and its Huge Impact on Indonesian & Malay!
This video is all about the large impact the Arabic language has had on Malay & Indonesian...
published: 17 Feb 2021
Play in Full Screen
1:18
numbers malay 1 to 20 malay language
#kids videos #malaysia #kids malaysia #malaylanguage #kids educational #kidsmalaysia
published: 08 Feb 2025
Play in Full Screen
13:05
Speak Conversational Malay in 5 minutes - Learn Malay
Simple conversational Malay to get you started and feeling comfortable with the pronunciat...
published: 17 Feb 2022
Play in Full Screen
'); } 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)); } }); }); }); // -->

Latest News for: malay language

Edit

100 years of Afrikaans: A language of diversity and complexity

Independent online (SA) 08 May 2025
“This language, which we celebrate today, is spoken by over 7 million people in South Africa,” he explained ... The language emerged as a mixture of Dutch, Portuguese, Malay, and other European influences—a true ‘melting pot’ of cultures.”.
Edit

Festival empowers Southern California’s diverse Muslim community

LA Daily News 06 May 2025
Muslim residents across the Southland gathered to celebrate and connect over the weekend ... Muslims. (Courtesy of CAIR-Los Angeles) ... Muslims. (Courtesy of CAIR-Los Angeles) ... Attendees spoke languages from Arabic and Pashto, to Malay, Indonesian and Urdu ... .
Edit

PM Anwar Praises New Workers' Anthem 'Solidariti Perjuangan'

Malaysian National News Agency 01 May 2025
Penned by Human Resources Minister Steven Sim Chee Keong and inspired by the classic 1913 union song Solidarity Forever, the Malay-language version struck ...
Edit

Korea to provide tour guide training for marriage immigrants and their children

Korea Times 29 Apr 2025
Marriage immigrants from countries where nine languages are spoken — Thai, Vietnamese, Malay, Indonesian, Arabic, Italian, Russian, Spanish, French and German — along with their children can apply for the KTO’s free training program.
Edit

A new AI app that helps you cheat in conversations is slick, a little creepy, ...

Business Insider 24 Apr 2025
A Ivy Leaguer just released an AI app to feed live answers to users ... The second hallucination came when the app said I had a "working knowledge of Malay." My editor congratulated me on my surprising — including to me — third language skill.
Edit

Roundup: China-Malaysia ties embrace another "50 golden years"

China.dot.org 23 Apr 2025
Meanwhile, Zamri Rambli, editor-in-chief of Sinar Harian, a Malay-language newspaper particularly known for its regional focus, explained that Malaysians are increasingly seeing China as a ...
Edit

China-Malaysia ties embrace another "50 golden years"

People Daily 23 Apr 2025
Meanwhile, Zamri Rambli, editor-in-chief of Sinar Harian, a Malay-language newspaper particularly known for its regional focus, explained that Malaysians are increasingly seeing China as a ...
Edit

Objects, memory and space in conversation

The Times of India 21 Apr 2025
Object in Dialogue, marks the return of artist Malay Saha after a twelve-year gap ... Malay’s approach combines formal experimentation with a tactile language shaped by lived experience.
  • 1
×