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

Vietnamese language

Vietnamese i/ˌviɛtnəˈmz/ (tiếng Việt) is an Austroasiatic language that originated in the north of Vietnam and is the national and official language of the country. It is the native language of the Vietnamese (Kinh) people, as well as a first or second language for the many ethnic minorities of Vietnam. As the result of Vietnamese emigration and cultural influence, Vietnamese speakers are found throughout the world, notably in East and Southeast Asia, North America, Australia and Western Europe. Vietnamese has also been officially recognized as a minority language in the Czech Republic.

It is part of the Austroasiatic language family of which it has by far the most speakers (several times as many as the other Austroasiatic languages combined). Vietnamese vocabulary has borrowings from Chinese, and it formerly used a modified set of Chinese characters called chữ nôm given vernacular pronunciation. The Vietnamese alphabet (quốc ngữ) in use today is a Latin alphabet with additional diacritics for tones, and certain letters.

Tây Bồi Pidgin French

Tây Bồi, or Vietnamese Pidgin French, was a pidgin spoken by non-French-educated Vietnamese, typically those who worked as servants in French households or milieux during the colonial era. Literally, it means "French (Tây) [of- or spoken by] male servants (Bồi)". During the French colonization period, the majority of household servants for the French were male. The term is used by Vietnamese themselves to indicate that the spoken French language is poor, incorrect, and ungrammatical.

Tây Bồi may be related to "Français Tirailleur" - a pidgin language spoken by West African soldiers in the French colonial army approximately 1850-1960. This has not been investigated to a sufficient degree and therefore cannot be confirmed.

"Bồi" is not the Vietnamese phonetisation of the English word "boy", as customarily accredited to the word. It originated from the Sino-Vietnamese word "Bồi" (陪) which means "to serve" or "servant". As "Tây" (西) meant "West." Therefore, the compound Tây Bồi is a pure Sino-Vietnamese word (陪西-French servant) and not a mix of French and Vietnamese.

Podcasts:

  • Basic Vietnamese Words & Phrases You Need to Know

    Check out LTL language school in Ho Chi Minh city here: 1-on-1 Classes in Saigon || https://ltl-school.com/learn-vietnamese-in-saigon/ Group Classes in Saigon || https://ltl-school.com/learn-vietnamese-in-vietnam/ Live with a Homestay Family in Saigon || https://ltl-school.com/homestay-in-saigon/ 📘 Ultimate Vietnam Travel E-book https://phovnlover.gumroad.com/l/UltimateVietnamGuidebook 🧳Wanna customize your Vietnam trip? https://whatthephovn.com/customize-trip/ 🚗Book a tour https://whatthephovn.com/list-tour/ ✈️Health insurance https://bit.ly/3tFPXrp 💗Want to support my channel? Buy me a coffee: https://www.buymeacoffee.com/whatthepho 📱 Connect with me to learn more about Vietnam: - Website: https://whatthephovn.com/ - Instagram: https://www.instagram.com/vanvufromvietnam/ - Faceb...

    published: 12 Apr 2024
  • Learn Vietnamese easily

    If you're looking to learn Vietnamese, you've come to the right place. Mondly is designed to help you master the Vietnamese language quickly and efficiently. From essential vocabulary and grammar to conversational phrases, we've got you covered. Subscribe now, get Mondly and start your Vietnamese 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: 30 Aug 2022
  • Easy Vietnamese 1 - What's typical Vietnamese?

    We were visiting our friends and partners in Vietnam and we were able to go out and speak to the people on the streets of the Hồ Chí Minh City. Thanks to all our friends in Vietnam and especially to Leo who talked to the people and Scott who edited this video.

    published: 23 Nov 2011
  • The Vietnamese Language

    This video is all about the Vietnamese language! Special thanks to Nguyễn Văn Phi for his Northern Vietnamese samples, and Tô Lê Nam for his additional Southern Vietnamese samples. ► Watch my video about VIETNAM (the country): https://youtu.be/pEjId4gJ8iY ► Support Langfocus on Patreon: https://patreon.com/langfocus. Special thanks to the following patrons: AmateurTextualCriticism Auguste Fields Bennett Seacrist Bill Walderman Brian King Bruce C CFitz17 Clark Roth Colin Milner Irina Bruce Italy Made Easy J Choi Jacob Madsen John Moffat Karl-Erik Wångstedt Kenny Kirk Kirkpatrick Michael Arbagi Michael Cuomo Mody Neil Sills Nobbi Lampe-Strang Paul Falstad Rosalind Resnick Ruben Sanchez Jr ShadowCrossZero Ulf Hermjakob Victoria Goh Vincent David Walter Moore Wolfgang Egon Schroder Yuko ...

    published: 25 Jun 2021
  • 13 Basic Vietnamese words and phrases for beginners| Learn Vietnamese easily

    In this video, I will teach you 13 Vietnamese basic words and phrases. These 13 Vietnamese words are definitely helpful and necessary for beginners. you will learn how to say Hello, thank you, nice to meet you, sorry etc in Vietnamese. You will also learn how to answer basic questions in Vietnamese in the shortest but still polite way.

    published: 16 Nov 2022
  • The Vietnamese Alphabet

    Vietnamese for beginners - part of a series for Vietnamese beginners Instagram: https://www.instagram.com/vietlanguage Facebook: https://www.facebook.com/vietlanguage.edu

    published: 26 May 2020
  • Four Vietnamese basic expressions: hello, thank you, sorry, goodbye

    Thanks to all our friends in Ho Chi Minh city in Vietnam.

    published: 22 Dec 2011
  • Speaking Vietnamese. Shocked so hard she LITERALLY FELL to the floor

    ► Instagram: peterviet1 Hey everyone! I'm just a guy from Europe - Poland, to be more precise - who loves speaking Vietnamese. I spent a few years living in Hanoi, Vietnam, and during that time, I fell in love with the language and the culture. I think there's something truly special about learning languages and being able to communicate with people in their native tongue. I record these videos just for fun, hoping to put a smile on people's faces. I hope you enjoy them! 🇻🇳 #polyglot #languagelearning #language #vietnam #vietnamese #foreigner #polyglot #languages #shorts #short #shortvideo

    published: 01 May 2023
  • Improve your Vietnamese through extensive listening #Vietnamese #Vietnamese #languages #asian

    published: 28 Jan 2025
  • 20 Vietnamese Words for Everyday Life - Basic Vocabulary #1

    This is the best video to start building your Vietnamese vocabulary. https://bit.ly/3dOTNEv Click here to learn Vietnamese twice as fast with FREE PDF ↓Check how below↓ Step 1: Go to https://bit.ly/3dOTNEv Step 2: Sign up for a Free Lifetime Account - No money, No credit card required Step 3: Achieve Your Learning Goal and master Vietnamese the fast, fun and easy way! In this series, we will teach you the core 800 Vietnamese words that you must know if you're a an absolute beginner. With each new episodes in this series, we’ll include the previous lessons at the end. So after you’ve learned the new words and phrases, stick around and review what you learned in previous lessons. Reviewing is one of the most important parts of learning a language! This is THE place to start if you want t...

    published: 26 Feb 2021
Basic Vietnamese Words & Phrases You Need to Know
16:03

Basic Vietnamese Words & Phrases You Need to Know

  • Order:
  • Duration: 16:03
  • Uploaded Date: 12 Apr 2024
  • views: 219022
Check out LTL language school in Ho Chi Minh city here: 1-on-1 Classes in Saigon || https://ltl-school.com/learn-vietnamese-in-saigon/ Group Classes in Saigon || https://ltl-school.com/learn-vietnamese-in-vietnam/ Live with a Homestay Family in Saigon || https://ltl-school.com/homestay-in-saigon/ 📘 Ultimate Vietnam Travel E-book https://phovnlover.gumroad.com/l/UltimateVietnamGuidebook 🧳Wanna customize your Vietnam trip? https://whatthephovn.com/customize-trip/ 🚗Book a tour https://whatthephovn.com/list-tour/ ✈️Health insurance https://bit.ly/3tFPXrp 💗Want to support my channel? Buy me a coffee: https://www.buymeacoffee.com/whatthepho 📱 Connect with me to learn more about Vietnam: - Website: https://whatthephovn.com/ - Instagram: https://www.instagram.com/vanvufromvietnam/ - Facebook: https://www.facebook.com/vanvufromvietnam - Tiktok: https://www.tiktok.com/@vanvufromvietnam - Subscribe to my Youtube here: https://bit.ly/38n4622 ☀️About me: Hey, I’m Van Vu from Vietnam! I’m gonna show you a BUN CHA good food besides PHO (Hope you like the puns :)) I love sharing Vietnamese unique food, hidden gems, and especially our culture. I strongly believe that the world will be a better place if we know each other’s culture. Learn more about me here: https://whatthephovn.com/about/ For business inquiries - vanvu@whatthephovn.com
https://wn.com/Basic_Vietnamese_Words_Phrases_You_Need_To_Know
Learn Vietnamese easily
0:23

Learn Vietnamese easily

  • Order:
  • Duration: 0:23
  • Uploaded Date: 30 Aug 2022
  • views: 322423
If you're looking to learn Vietnamese, you've come to the right place. Mondly is designed to help you master the Vietnamese language quickly and efficiently. From essential vocabulary and grammar to conversational phrases, we've got you covered. Subscribe now, get Mondly and start your Vietnamese 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 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #vietnamese #learnvietnamese
https://wn.com/Learn_Vietnamese_Easily
Easy Vietnamese 1 - What's typical Vietnamese?
4:31

Easy Vietnamese 1 - What's typical Vietnamese?

  • Order:
  • Duration: 4:31
  • Uploaded Date: 23 Nov 2011
  • views: 770049
We were visiting our friends and partners in Vietnam and we were able to go out and speak to the people on the streets of the Hồ Chí Minh City. Thanks to all our friends in Vietnam and especially to Leo who talked to the people and Scott who edited this video.
https://wn.com/Easy_Vietnamese_1_What's_Typical_Vietnamese
The Vietnamese Language
15:59

The Vietnamese Language

  • Order:
  • Duration: 15:59
  • Uploaded Date: 25 Jun 2021
  • views: 1488358
This video is all about the Vietnamese language! Special thanks to Nguyễn Văn Phi for his Northern Vietnamese samples, and Tô Lê Nam for his additional Southern Vietnamese samples. ► Watch my video about VIETNAM (the country): https://youtu.be/pEjId4gJ8iY ► Support Langfocus on Patreon: https://patreon.com/langfocus. Special thanks to the following patrons: AmateurTextualCriticism Auguste Fields Bennett Seacrist Bill Walderman Brian King Bruce C CFitz17 Clark Roth Colin Milner Irina Bruce Italy Made Easy J Choi Jacob Madsen John Moffat Karl-Erik Wångstedt Kenny Kirk Kirkpatrick Michael Arbagi Michael Cuomo Mody Neil Sills Nobbi Lampe-Strang Paul Falstad Rosalind Resnick Ruben Sanchez Jr ShadowCrossZero Ulf Hermjakob Victoria Goh Vincent David Walter Moore Wolfgang Egon Schroder Yuko Sunda 19jks94 Abdullah Al-Kazaz Adam Powell Adam Vanderpluym Al Fung Alan Corley Alana Kalinowski Aleksei Alen Alex McKenzie Ali Muhammed Alshehri Alvin Quiñones Andrew Woods Anthony Kinread Anthony Peter Swallow Aous Mansouri Arnoud Hoorn Ashley Dierolf Avital Levant Bartosz Czarnotta Ben Benjamin Tipton Brent Warner Brian Begnoche Bruce Stark Chelsea Boudreau chris brown Christian Langreiter Christopher Lowell Connor Burns contumaciousCulimancer Cyrus Shahrivar Daniel Young Darek David Eggleston David LeCount Dean Cary Debbie Diana Fulger Diane Young DickyBoa Dieter Raber digitalmobius Dina Trageser divad Divadrax Don Ross Donald Tilley Drew Gatewood Dulta Tracey Ed B Ed Heard Edward Wilson Elaine Salmon Eren Parla Eric Loewenthal Fabio Martini fatimahl Fawad Quraishi G Bot Grace Wagner Gregory Garecki Guillaume Brodar Harry Kek Helena Henri Saussure Henrik Flyvbjerg 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 Jesús Horacio Báez Ávila Jim McLaughlin JL Bumgarner Joe Dubya Johannes John E. McLaughlin John Flanagan John Gavin John Hyaduck John Lloyd Josh Rotenberg Julie Sriken Jón Elíasson Kate MacDonald Kimball Pierce kingvaeonic Kirk Vistain Kit Marcos Konrad Krzysztof Dobrzanski KW Lance Bedasie Laura Morland Lee Dedmon Leo Barudi Lincoln Hutton Lissette Talledo Louie dela Fuente Luke Jensen m maiku Manuel Rosales Margaret Langendorf Margrét Mark Mark Bonneaux Mark Judge Mark Kemp Mark Rogers Markzipan Martin Blackwell Matthew Etter Merrick Bobb Merrick Bobb Michael Regal Mike Frysinger Mohammed A. Abahussain Montassar Ghrairi Mário Pegado Naama and Geoff Shang Nadia B. Nicholas Gentry Nicholas Paul Nicolas Elsishans Nicole Tovar Niro noxialisrex Oleksandr Ivanov Ondra Oto Kohulák Patrick smith Patriot Nurse Paul Flynn Paul Shutler Pauline Pavon Paulla Fetzek Peter Andersson Peter Nikitin Peter Scollar piero Pudim de Cana Raymond Thomas Renato Paroni de Castro RetroSteamKnight Richard Kelly Robert Brockway Robert Williams Roger Smith Roland Seuhs Ron McKinnon Ronald Brady Saffo Papantonopoulou Sergio Pascalin Sheila Perryman Sierra Rooney Sigbjørn Nerland Simon Blanchet Simon Jaglom sinastral SJWS Stefan Reichenberger Steven Severance Suzanne Jacobs Tara Pride Theophagous Thomas Chapel Thomas Gijsbers Tim Hopmann tommy dahill Tony DeSantis Ty Ovendale Vinicius Marchezini Vitor Waltraud Seemann Warren McKenzie William MacKenzie William O Beeman Yagub Alserkal yasmine jaafar Yeshar Hadi Yuriy Vrublevskiy Yuval Filmus Zachary Root zhangyimo Éric Martin Вайзефакнот 洋平 木嶋 The following images are used under Creative Commons Share-Alike license: https://commons.wikimedia.org/wiki/File:Chu_nom.svg. Author: Tomchen 1989. https://commons.wikimedia.org/wiki/File:Ph%C6%B0%C6%A1ng_ng%E1%BB%AF_ti%E1%BA%BFng_Vi%E1%BB%87t.png. Author: Hoangfinter123. https://commons.wikimedia.org/wiki/File:%E6%B1%89%E6%9C%9D%E8%A1%8C%E6%94%BF%E5%8C%BA%E5%88%92(%E7%B9%81).png. Author: 玖巧仔. https://commons.wikimedia.org/wiki/File:Map_of_French_Indochina_expansion.svg. Author: Milenioscuro. https://commons.wikimedia.org/wiki/File:Map_of_T%C4%A9nh_H%E1%BA%A3i_qu%C3%A2n_and_early_years_of_Ng%C3%B4_dynasty.png. Author: TRMC. Still images which incorporate the above images are available for use under the same CC SA license. 00:00 General info about Vietnamese 00:46 History of Vietnamese 03:41 French loanwords in Vietnamese 04:26 Vietnamese phonology - general 05:27 Vietnamese phonology - tones 06:26 Vietnamese grammar 12:24 Differences between northern and southern Vietnamese 14:43 Closing comments 15:09 The Question of the Day
https://wn.com/The_Vietnamese_Language
13 Basic Vietnamese words and phrases for beginners| Learn Vietnamese easily
11:12

13 Basic Vietnamese words and phrases for beginners| Learn Vietnamese easily

  • Order:
  • Duration: 11:12
  • Uploaded Date: 16 Nov 2022
  • views: 44850
In this video, I will teach you 13 Vietnamese basic words and phrases. These 13 Vietnamese words are definitely helpful and necessary for beginners. you will learn how to say Hello, thank you, nice to meet you, sorry etc in Vietnamese. You will also learn how to answer basic questions in Vietnamese in the shortest but still polite way.
https://wn.com/13_Basic_Vietnamese_Words_And_Phrases_For_Beginners|_Learn_Vietnamese_Easily
The Vietnamese Alphabet
3:46

The Vietnamese Alphabet

  • Order:
  • Duration: 3:46
  • Uploaded Date: 26 May 2020
  • views: 290790
Vietnamese for beginners - part of a series for Vietnamese beginners Instagram: https://www.instagram.com/vietlanguage Facebook: https://www.facebook.com/vietlanguage.edu
https://wn.com/The_Vietnamese_Alphabet
Four Vietnamese basic expressions: hello, thank you, sorry, goodbye
0:54

Four Vietnamese basic expressions: hello, thank you, sorry, goodbye

  • Order:
  • Duration: 0:54
  • Uploaded Date: 22 Dec 2011
  • views: 152021
Thanks to all our friends in Ho Chi Minh city in Vietnam.
https://wn.com/Four_Vietnamese_Basic_Expressions_Hello,_Thank_You,_Sorry,_Goodbye
Speaking Vietnamese. Shocked so hard she LITERALLY FELL to the floor
0:43

Speaking Vietnamese. Shocked so hard she LITERALLY FELL to the floor

  • Order:
  • Duration: 0:43
  • Uploaded Date: 01 May 2023
  • views: 72828554
► Instagram: peterviet1 Hey everyone! I'm just a guy from Europe - Poland, to be more precise - who loves speaking Vietnamese. I spent a few years living in Hanoi, Vietnam, and during that time, I fell in love with the language and the culture. I think there's something truly special about learning languages and being able to communicate with people in their native tongue. I record these videos just for fun, hoping to put a smile on people's faces. I hope you enjoy them! 🇻🇳 #polyglot #languagelearning #language #vietnam #vietnamese #foreigner #polyglot #languages #shorts #short #shortvideo
https://wn.com/Speaking_Vietnamese._Shocked_So_Hard_She_Literally_Fell_To_The_Floor
Improve your Vietnamese through extensive listening #Vietnamese #Vietnamese #languages #asian
1:00

Improve your Vietnamese through extensive listening #Vietnamese #Vietnamese #languages #asian

  • Order:
  • Duration: 1:00
  • Uploaded Date: 28 Jan 2025
  • views: 8
https://wn.com/Improve_Your_Vietnamese_Through_Extensive_Listening_Vietnamese_Vietnamese_Languages_Asian
20 Vietnamese Words for Everyday Life - Basic Vocabulary #1
18:05

20 Vietnamese Words for Everyday Life - Basic Vocabulary #1

  • Order:
  • Duration: 18:05
  • Uploaded Date: 26 Feb 2021
  • views: 153506
This is the best video to start building your Vietnamese vocabulary. https://bit.ly/3dOTNEv Click here to learn Vietnamese twice as fast with FREE PDF ↓Check how below↓ Step 1: Go to https://bit.ly/3dOTNEv Step 2: Sign up for a Free Lifetime Account - No money, No credit card required Step 3: Achieve Your Learning Goal and master Vietnamese the fast, fun and easy way! In this series, we will teach you the core 800 Vietnamese words that you must know if you're a an absolute beginner. With each new episodes in this series, we’ll include the previous lessons at the end. So after you’ve learned the new words and phrases, stick around and review what you learned in previous lessons. Reviewing is one of the most important parts of learning a language! This is THE place to start if you want to learn Vietnamese, and improve both your listening and speaking skills. Get started with Vietnamese language now! https://bit.ly/3dOTNEv Follow us here: ■ Facebook: https://www.facebook.com/VietnamesePod101 ■ Instagram: https://www.instagram.com/VietnamesePod101 ■ Twitter: https://twitter.com/VietnamesePod101 Also, please LIKE, SHARE and COMMENT on our videos! We really appreciate it. Thanks! #Basic #Vocabulary #Vietnamese #LearnVietnamese #VietnameseLanguage #VietnamesePod101
https://wn.com/20_Vietnamese_Words_For_Everyday_Life_Basic_Vocabulary_1
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Basic Vietnamese Words & Phrases You Need to Know
    16:03
    Basic Vietnamese Words & Phrases You Need to Knowremove from playlist
  • Learn Vietnamese easily
    0:23
    Learn Vietnamese easilyremove from playlist
  • Easy Vietnamese 1 - What's typical Vietnamese?
    4:31
    Easy Vietnamese 1 - What's typical Vietnamese?remove from playlist
  • The Vietnamese Language
    15:59
    The Vietnamese Languageremove from playlist
  • 13 Basic Vietnamese words and phrases for beginners| Learn Vietnamese easily
    11:12
    13 Basic Vietnamese words and phrases for beginners| Learn Vietnamese easilyremove from playlist
  • The Vietnamese Alphabet
    3:46
    The Vietnamese Alphabetremove from playlist
  • Speaking Vietnamese. Shocked so hard she LITERALLY FELL to the floor
    0:43
    Speaking Vietnamese. Shocked so hard she LITERALLY FELL to the floorremove from playlist
  • 20 Vietnamese Words for Everyday Life - Basic Vocabulary #1
    18:05
    20 Vietnamese Words for Everyday Life - Basic Vocabulary #1remove from playlist
PLAYLIST TIME:

Basic Vietnamese Words & Phrases You Need to Know

Check out LTL language school in Ho Chi Minh city here: 1-on-1 Classes in Saigon || https://ltl-school.com/learn-vietnamese-in-saigon/ Group Classes in Saigon || https://ltl-school.com/learn-vietnamese-in-vietnam/ Live with a Homestay Family in Saigon || https://ltl-school.com/homestay-in-saigon/ 📘 Ultimate Vietnam Travel E-book https://phovnlover.gumroad.com/l/UltimateVietnamGuidebook 🧳Wanna customize your Vietnam trip? https://whatthephovn.com/customize-trip/ 🚗Book a tour https://whatthephovn.com/list-tour/ ✈️Health insurance https://bit.ly/3tFPXrp 💗Want to support my channel? Buy me a coffee: https://www.buymeacoffee.com/whatthepho 📱 Connect with me to learn more about Vietnam: - Website: https://whatthephovn.com/ - Instagram: https://www.instagram.com/vanvufromvietnam/ - Facebook: https://www.facebook.com/vanvufromvietnam - Tiktok: https://www.tiktok.com/@vanvufromvietnam - Subscribe to my Youtube here: https://bit.ly/38n4622 ☀️About me: Hey, I’m Van Vu from Vietnam! I’m gonna show you a BUN CHA good food besides PHO (Hope you like the puns :)) I love sharing Vietnamese unique food, hidden gems, and especially our culture. I strongly believe that the world will be a better place if we know each other’s culture. Learn more about me here: https://whatthephovn.com/about/ For business inquiries - vanvu@whatthephovn.com
16:03
Basic Vietnamese Words & Phrases You Need to Know
Check out LTL language school in Ho Chi Minh city here: 1-on-1 Classes in Saigon || https:...
published: 12 Apr 2024
Play in Full Screen
0:23
Learn Vietnamese easily
If you're looking to learn Vietnamese, you've come to the right place. Mondly is designed ...
published: 30 Aug 2022
Play in Full Screen
4:31
Easy Vietnamese 1 - What's typical Vietnamese?
We were visiting our friends and partners in Vietnam and we were able to go out and speak ...
published: 23 Nov 2011
Play in Full Screen
15:59
The Vietnamese Language
This video is all about the Vietnamese language! Special thanks to Nguyễn Văn Phi for his ...
published: 25 Jun 2021
Play in Full Screen
11:12
13 Basic Vietnamese words and phrases for beginners| Learn Vietnamese easily
In this video, I will teach you 13 Vietnamese basic words and phrases. These 13 Vietnamese...
published: 16 Nov 2022
Play in Full Screen
3:46
The Vietnamese Alphabet
Vietnamese for beginners - part of a series for Vietnamese beginners Instagram: https://w...
published: 26 May 2020
Play in Full Screen
0:54
Four Vietnamese basic expressions: hello, thank you, sorry, goodbye
Thanks to all our friends in Ho Chi Minh city in Vietnam.
published: 22 Dec 2011
Play in Full Screen
0:43
Speaking Vietnamese. Shocked so hard she LITERALLY FELL to the floor
► Instagram: peterviet1 Hey everyone! I'm just a guy from Europe - Poland, to be more pre...
published: 01 May 2023
Play in Full Screen
1:00
Improve your Vietnamese through extensive listening #Vietnamese #Vietnamese #languages #asian
published: 28 Jan 2025
Play in Full Screen
18:05
20 Vietnamese Words for Everyday Life - Basic Vocabulary #1
This is the best video to start building your Vietnamese vocabulary. https://bit.ly/3dOTNE...
published: 26 Feb 2021
Play in Full Screen

Vietnamese language

Vietnamese i/ˌviɛtnəˈmz/ (tiếng Việt) is an Austroasiatic language that originated in the north of Vietnam and is the national and official language of the country. It is the native language of the Vietnamese (Kinh) people, as well as a first or second language for the many ethnic minorities of Vietnam. As the result of Vietnamese emigration and cultural influence, Vietnamese speakers are found throughout the world, notably in East and Southeast Asia, North America, Australia and Western Europe. Vietnamese has also been officially recognized as a minority language in the Czech Republic.

It is part of the Austroasiatic language family of which it has by far the most speakers (several times as many as the other Austroasiatic languages combined). Vietnamese vocabulary has borrowings from Chinese, and it formerly used a modified set of Chinese characters called chữ nôm given vernacular pronunciation. The Vietnamese alphabet (quốc ngữ) in use today is a Latin alphabet with additional diacritics for tones, and certain letters.

'); } 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: vietnamese language

Edit

Vietnamese children's books honoured at Brussels library

Vietnam News 10 Apr 2025
Gifted by the General Association of Vietnamese in Belgium (UGVB), the Vietnamese-language book collection features folktales such as The Hundred-Knot Bamboo Tree, along with poetry and picture books aimed at children aged under 7.
Edit

National Weather Service alerts will no longer be translated for non-English speakers

Usatoday 10 Apr 2025
The NWS announced the partnership in October 2023, revealing the AI technology would translate alerts from English to several other languages including Spanish, French, Vietnamese, simplified Chinese and Samoan.
Edit

Vietnam envoy, PAL chief discuss cooperation

The News International 09 Apr 2025
... poetry of famous Pakistani poets into Vietnamese ... Later, the Vietnamese ambassador visited Academy's Hall of Fame and Literary Museum of Pakistani languages showing keen interest in their collections.
Edit

Learn a new language at the Mills International Center language circles

Daily Emerald 09 Apr 2025
Twelve different languages will be spoken each week during the three-hour circles, starting with Korean and then Vietnamese, Russian, Japanese, Portuguese, Arabic, English, German, Italian, Spanish, French and finally, Thai.
Edit

National Weather Service halts translation services for non-English speakers

Baltimore Sun 09 Apr 2025
The National Weather Service will no longer provide language translations of its products “due to a contract lapse.” ... Eventually, it went on to offer translations in Vietnamese, French and Samoan.
Edit

Tale of Kiều translation published in England

Vietnam News 08 Apr 2025
Truyện Kiều is one of the most translated works of Vietnamese literature, ... Among these, Nguyễn Bình's version has received special attention for preserving the most 'Vietnamese' aspects of the language.
Edit

Universities in central city to boost Japanese language studies

Vietnam News 08 Apr 2025
... Language University – to encourage Japanese language study ... More than 162,000 Vietnamese students currently study the Japanese language, while 40,000 students have joined training courses in Japan.
Edit

Việt Nam and Spain poised to open a new chapter in bilateral cooperation

Vietnam News 08 Apr 2025
Việt Nam is becoming an increasingly popular destination for Spanish tourists, who feel welcomed and inspired by Vietnamese culture. At the same time, interest in the Spanish language is rising in Việt ...
Edit

AB Crosses the Singularity: Building a New Generation of Secure and Scalable Infrastructure for Decentralized Applications and Assets

Crypto News 08 Apr 2025
“It wasn’t just a technical recovery ... AB Core ... ATGL) ... AB Wallet ... The User Explosion ... Today, AB’s global community spans more than 100 countries with active language hubs in English, Chinese, Vietnamese, Thai, Indonesian, and Filipino ... .
Edit

Top Vietnamese legislator visits Tashkent State University of Oriental Studies

Vietnam News 07 Apr 2025
The top legislator expressed his hope that after graduation, many students studying the Vietnamese language at the Tashkent State University of Oriental ... Notably, it runs a Vietnamese language faculty.
Edit

Vietnamese community in Germany pledges further support to Trường Sa

Vietnam News 07 Apr 2025
It has also co-hosted seminars, art exhibitions, and writing and drawing contests on the theme of the sea and islands, while incorporating island-related contents into Vietnamese language classes in Berlin.
Edit

AI chatbot now ready to help answer questions from Saline County residents

Salina Journal 07 Apr 2025
... languages. "Ask Sal greets visitors in English, Spanish, Japanese and Vietnamese and can provide answers in 75 different languages," said Melissa McCoy, Saline County public information officer.
Edit

'Australia doesn't care about me': women international students suffering alarming rates of sexual violence

Beijing News 03 Apr 2025
The survey was offered in five languages other than English (Mandarin, Hindi, Portuguese, Vietnamese and Nepali) ... Most (82%) had a first language other than English ... delivered in-language, is important.
Edit

The art journey "Rejoice and Refuse" makes its debut in Hà Nội

Vietnam News 03 Apr 2025
The artists will perform songs in multiple languages, including Vietnamese, English, French&nbsp;and Italian, and will also present contemporary dance performances adding artistic depth to each segment ... The programme is offered for free ... — VNS. .
×