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

Welsh language

Welsh (Cymraeg or y Gymraeg, pronounced [kəmˈrɑːɨɡ, ə ɡəmˈrɑːɨɡ]) is a member of the Brittonic branch of the Celtic languages spoken natively in Wales, by some in England, and in Y Wladfa (the Welsh colony in Chubut Province, Argentina). Historically it has also been known in English as "the British tongue", "Cambrian", "Cambric" and "Cymric".

The 2011 UK Census counted 3.1 million residents of Wales. Of these, 73% (2.2 million) reported having no Welsh language skills. In 2011, 27% (837,000) of the total population of Wales were born outside Wales. Of the residents of Wales aged three and over, 19% (562,000) reported being able to speak Welsh, and 77% of these were able to speak, read and write the language (making 431,000 15% of the total population). This can be compared with the 2001 Census, in which 20.8% of the population (582,000) reported being able to speak Welsh. In surveys carried out between 2004 and 2006, 57% (315,000) of Welsh speakers described themselves as fluent in the written language.

Podcasts:

  • Welsh language - basic phrases and greetings

    Learn basic Welsh phrases useful for getting by in Wales. We have selected some of the most common words and phrases that you might need to start a conversation with a Welsh speaker, including, of course, hello, how are you?, what is your name?, etc. Each word or phrase is repeated 3 times with the written text also on the screen, plus the English translation. There are 26 items in total. The full list is as follows: Hello How are you? How are you? (formal) How are you? (informal) OK Very good Very well thank you Please Thank you Thank you very much Welcome Good morning Good afternoon Good night Happy birthday! Merry Christmas! Happy New Year! I'm sorry I am learning Welsh I don't speak Welsh I like coffee I don't like coffee What is your name? (informal) What is your name? (formal) Wher...

    published: 01 Jun 2022
  • What's Typical Welsh? | Easy Welsh 7

    SUBSCRIBE TO EASY LANGUAGES: http://bit.ly/elsub FACEBOOK: http://www.facebook.com/easylanguagesstreetinterviews BECOME A CO-PRODUCER: https://bit.ly/2kyB9nM OUR OTHER CHANNELS: http://www.youtube.com/easyfrench http://www.youtube.com/easyspanish http://www.youtube.com/easygerman http://www.youtube.com/easyitalian http://www.youtube.com/easyrussianvideos http://www.youtube.com/easypolish http://www.youtube.com/easycatalan http://www.youtube.com/easyenglishvideos http://www.youtube.com/easygreek http://www.youtube.com/easyturkish Easy Languages is an international video project aiming at supporting people worldwide to learn languages through authentic street interviews and expose the street culture of participating partner countries abroad. Episodes are produced in local languages and con...

    published: 29 Apr 2022
  • About the Welsh language

    Want to learn Welsh? Check out the link for 20% off uTalk – a language learning platform with more than 150 languages available: https://uta.lk/julingo "The senior language of men in Britain", according to Tolkien. Welsh is the most widespread language in one of the most scarce language families. A language with Celtic heart, soul, and structure and a minority language that has reversed its decline. Link to my Patreon account: https://www.patreon.com/julingo Music used: The Celtic Flavour and Follow the Sky by Alysha Sheldon Me Ma She Knows by Rune Dale Videos used: S62: Meri Huws - cyfweliad am Gymdeithas yr Iaith Gymraeg https://www.youtube.com/watch?v=7SBVewiDVkg&t=70s Cyfweliad Iwan Rheon https://www.youtube.com/watch?v=TdDYMBG1g3k&t=80s Perffaith/Perfect - Bronwen (Ed Sheeran Wels...

    published: 20 Dec 2020
  • How to Speak WELSH ENGLISH: The Accent the Vocabulary and the History

    All you want to know about Welsh English aka WENGLISH. The expressions, the words the vocabulary. How the Welsh language has influenced the Welsh language. Thanks to Bill Hicks from North Wales and @ImproveYourAccent for taking part in this video. This is part 4 of the series accents of Great Britain check out the others on our playlist. Sign up for the LetThemTalkTV newsletter here. It's full of interesting insights and stories about the English language and it's free! http://eepurl.com/izRKww 00:00 Wenglish 00:30 The History of the Welsh language and Welsh English 06:22 Welsh words and expressions used in Welsh English 07:30 English words and expressions unique to Welsh English 08:46 Grammar unique to Welsh English 09:18 The Welsh accent 13:08 Hwyl nawr! #wenglish CREDITS By M...

    published: 23 Feb 2024
  • ENGLISH & WELSH

    Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 If you are interested to see your native language/dialect be featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!

    published: 14 Feb 2024
  • How has the Welsh language survived?

    Welsh is a Celtic language native to Wales. Even though Wales was annexed by England over 700 years ago, today the Welsh language not only has survived, but remains the second most widely spoken language in the UK. The language boasts upwards of 900,000 speakers, roughly 30% of the Welsh population, and is the only Celtic language not considered endangered, despite Wales being the first territory outside England to fall under English rule. This sparks the question: How has the Welsh language survived? Join the discord server here: https://discord.gg/rkeb78yMSU Sources: https://www.visitwales.com/info/language/poetry-motion-discover-language-wales https://omniglot.com/writing/welsh.htm https://www.historic-uk.com/HistoryUK/HistoryofWales/Welsh-Language/ https://www.gov.wales/welsh-languag...

    published: 16 Jun 2023
  • How the Welsh language was almost lost | Union with David Olusoga - BBC

    "It's not easy to overestimate its evil effects." Did you know this was how the Welsh language was almost lost? #Union with David Olusoga #iPlayer Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of programmes are available to watch live, check the 'Are all programmes that are broadcast available on BBC iPlayer?' FAQ 👉 https://bbc.in/2m8ks6v.

    published: 21 Nov 2023
  • Why Welsh might just be the EASIEST language to speak

    Join me to make more language experiences possible! https://www.youtube.com/channel/UCSbiR1l-cfzk44iTJVSAZVQ/join Music channel: https://youtube.com/@israellai ☕ Support the channel and my journey! 💝 https://www.buymeacoffee.com/rhapsodyinlingo 🗣️ Get $10 for a language lesson on italki: https://www.italki.com/affshare?ref=af1531109 More examples of imagery from English: ar yr awyr - on [the] air tanio - to fire (from a job) 00:00 I've spoken many languages... 01:04 Pronunciation 03:57 Words and expressions - Celtic 06:13 Grammar: you've got options! 07:14 Words and expressions - English 11:23 Code-mixing 11:58 How is it like to speak Welsh with native speakers? ~~~~~~~~~~socials~~~~~~~~~~~ Blog: https://www.rhapsodyinlingo.com Facebook: https://www.facebook.com/rhapsodyinlingo Inst...

    published: 10 Sep 2024
  • Codi Bwganod | Wales' Hauntings with The Welsh Viking

    Ydych chi'n credu mewn ysbrydion? 👀 Mewn chwech lleoliad ledled y wlad, yr hanesydd a'r YouTuber, Jimmy Johnson:https://www.youtube.com/@UCu-drfhNohk9NVuqzgS6Elw sy'n ymchwilio i fyd dychrynllyd llên Gwerin Cymru ⚰️ 📍 Trefdraeth (Newport) 📍 Port Talbot 📍 Llanberis 📍 Ardudwy 📍 Y Drenewydd (Newtown) 📍 Porthmadog Dive into the eerie world of Welsh folklore with historian and YouTuber Jimmy Johnson:https://www.youtube.com/@UCu-drfhNohk9NVuqzgS6Elw 🕯️ He uncovers the spookiest folk tales from six haunted locations across Wales. From spooky encounters to mysterious legends, these tales will send shivers down your spine. Tanysgrifiwch | Subscribe: https://bit.ly/3wWuPsZ Am S4C | About S4C: S4C yw'r unig sianel deledu Gymraeg yn y byd, yn cynnig amrywiaeth eang o raglenni a chynnwys unigryw ...

    published: 01 Oct 2024
  • Liam Dutton nails pronouncing Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch

    It may be a mouthful to say, but Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch in north west Wales was one of the warmest places in the UK today. And, it was no problem for our Welsh weather presenter Liam Dutton to mention it on today’s weather forecast.

    published: 09 Sep 2015
Welsh language - basic phrases and greetings
4:30

Welsh language - basic phrases and greetings

  • Order:
  • Duration: 4:30
  • Uploaded Date: 01 Jun 2022
  • views: 65831
Learn basic Welsh phrases useful for getting by in Wales. We have selected some of the most common words and phrases that you might need to start a conversation with a Welsh speaker, including, of course, hello, how are you?, what is your name?, etc. Each word or phrase is repeated 3 times with the written text also on the screen, plus the English translation. There are 26 items in total. The full list is as follows: Hello How are you? How are you? (formal) How are you? (informal) OK Very good Very well thank you Please Thank you Thank you very much Welcome Good morning Good afternoon Good night Happy birthday! Merry Christmas! Happy New Year! I'm sorry I am learning Welsh I don't speak Welsh I like coffee I don't like coffee What is your name? (informal) What is your name? (formal) Where do you live? Congratulations! As you can see above, we also give you a little insight into the difference between formal and informal greetings. Informal greetings would be those used when speaking to somebody younger than yourself whereas the formal form is used when speaking to elders. When you are ready to learn more Welsh, check out our other videos for learning Welsh @Learn-welshNet
https://wn.com/Welsh_Language_Basic_Phrases_And_Greetings
What's Typical Welsh? | Easy Welsh 7
9:33

What's Typical Welsh? | Easy Welsh 7

  • Order:
  • Duration: 9:33
  • Uploaded Date: 29 Apr 2022
  • views: 394875
SUBSCRIBE TO EASY LANGUAGES: http://bit.ly/elsub FACEBOOK: http://www.facebook.com/easylanguagesstreetinterviews BECOME A CO-PRODUCER: https://bit.ly/2kyB9nM OUR OTHER CHANNELS: http://www.youtube.com/easyfrench http://www.youtube.com/easyspanish http://www.youtube.com/easygerman http://www.youtube.com/easyitalian http://www.youtube.com/easyrussianvideos http://www.youtube.com/easypolish http://www.youtube.com/easycatalan http://www.youtube.com/easyenglishvideos http://www.youtube.com/easygreek http://www.youtube.com/easyturkish Easy Languages is an international video project aiming at supporting people worldwide to learn languages through authentic street interviews and expose the street culture of participating partner countries abroad. Episodes are produced in local languages and contain subtitles in both the original language as well as in English. http://www.easy-languages.org/ http://www.facebook.com/easylanguagesstreetinterviews Host of this episode: Marian Brosschot Camera: Ted Cornish Edit: Ted Cornish Translation: Ted Cornish and Marian Brosschot #learnwelsh #easywelsh #easylanguages
https://wn.com/What's_Typical_Welsh_|_Easy_Welsh_7
About the Welsh language
9:49

About the Welsh language

  • Order:
  • Duration: 9:49
  • Uploaded Date: 20 Dec 2020
  • views: 664003
Want to learn Welsh? Check out the link for 20% off uTalk – a language learning platform with more than 150 languages available: https://uta.lk/julingo "The senior language of men in Britain", according to Tolkien. Welsh is the most widespread language in one of the most scarce language families. A language with Celtic heart, soul, and structure and a minority language that has reversed its decline. Link to my Patreon account: https://www.patreon.com/julingo Music used: The Celtic Flavour and Follow the Sky by Alysha Sheldon Me Ma She Knows by Rune Dale Videos used: S62: Meri Huws - cyfweliad am Gymdeithas yr Iaith Gymraeg https://www.youtube.com/watch?v=7SBVewiDVkg&t=70s Cyfweliad Iwan Rheon https://www.youtube.com/watch?v=TdDYMBG1g3k&t=80s Perffaith/Perfect - Bronwen (Ed Sheeran Welsh Cover) https://www.youtube.com/watch?v=9P_C9YCfGBE #welsh #celtic #linguistics
https://wn.com/About_The_Welsh_Language
How to Speak WELSH ENGLISH: The Accent the Vocabulary and the History
13:25

How to Speak WELSH ENGLISH: The Accent the Vocabulary and the History

  • Order:
  • Duration: 13:25
  • Uploaded Date: 23 Feb 2024
  • views: 71811
All you want to know about Welsh English aka WENGLISH. The expressions, the words the vocabulary. How the Welsh language has influenced the Welsh language. Thanks to Bill Hicks from North Wales and @ImproveYourAccent for taking part in this video. This is part 4 of the series accents of Great Britain check out the others on our playlist. Sign up for the LetThemTalkTV newsletter here. It's full of interesting insights and stories about the English language and it's free! http://eepurl.com/izRKww 00:00 Wenglish 00:30 The History of the Welsh language and Welsh English 06:22 Welsh words and expressions used in Welsh English 07:30 English words and expressions unique to Welsh English 08:46 Grammar unique to Welsh English 09:18 The Welsh accent 13:08 Hwyl nawr! #wenglish CREDITS By Map_Gaels_Brythons_Picts.png: User:Asarlaíderivative work: MarieStockholm (talk) - Map_Gaels_Brythons_Picts.png, CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=7621972 By CelticBrain - Own work, CC BY-SA 4.0, https://commons.wikimedia.org/w/index.php?curid=89264942 By QuartierLatin1968 - Own work. This file was derived from: Celtic Nations.svg(uploaded by OsgoodeLawyer)., CC BY-SA 3.0, https://commons.wikimedia.org/w/index.php?curid=1642359 By Elevatorrailfan - This vector image includes elements that have been taken or adapted from this file:, CC BY-SA 4.0, https://commons.wikimedia.org/w/index.php?curid=54381751
https://wn.com/How_To_Speak_Welsh_English_The_Accent_The_Vocabulary_And_The_History
ENGLISH & WELSH
1:19

ENGLISH & WELSH

  • Order:
  • Duration: 1:19
  • Uploaded Date: 14 Feb 2024
  • views: 10515
Welcome to my channel! This is Andy from I love languages. Let's learn different languages/dialects together. Please feel free to subscribe to see more of this. I hope you have a great day! Stay happy! Please support me on Patreon! https://www.patreon.com/user?u=16809442. Please support me on Ko-fi https://ko-fi.com/otipeps0124 If you are interested to see your native language/dialect be featured here. Submit your recordings to otipeps24@gmail.com. Looking forward to hearing from you!
https://wn.com/English_Welsh
How has the Welsh language survived?
5:52

How has the Welsh language survived?

  • Order:
  • Duration: 5:52
  • Uploaded Date: 16 Jun 2023
  • views: 27152
Welsh is a Celtic language native to Wales. Even though Wales was annexed by England over 700 years ago, today the Welsh language not only has survived, but remains the second most widely spoken language in the UK. The language boasts upwards of 900,000 speakers, roughly 30% of the Welsh population, and is the only Celtic language not considered endangered, despite Wales being the first territory outside England to fall under English rule. This sparks the question: How has the Welsh language survived? Join the discord server here: https://discord.gg/rkeb78yMSU Sources: https://www.visitwales.com/info/language/poetry-motion-discover-language-wales https://omniglot.com/writing/welsh.htm https://www.historic-uk.com/HistoryUK/HistoryofWales/Welsh-Language/ https://www.gov.wales/welsh-language-data-annual-population-survey-2022#:~:text=The%20number%20of%20people%20reporting,(COVID%2D19)%20pandemic https://www.languagesoftheworld.info/student-papers/the-decline-of-the-celtic-languages.html https://www.britannica.com/topic/Celtic-languages https://www.theguardian.com/uk-news/2018/dec/07/teenage-duo-make-first-welsh-song-to-reach-one-million-spotify-hits#:~:text=Two%20teenage%20rock%20musicians%20from,then%20past%20the%20million%20mark. Made with Google Earth.
https://wn.com/How_Has_The_Welsh_Language_Survived
How the Welsh language was almost lost | Union with David Olusoga - BBC
3:49

How the Welsh language was almost lost | Union with David Olusoga - BBC

  • Order:
  • Duration: 3:49
  • Uploaded Date: 21 Nov 2023
  • views: 15581
"It's not easy to overestimate its evil effects." Did you know this was how the Welsh language was almost lost? #Union with David Olusoga #iPlayer Subscribe and 🔔 to the BBC 👉 https://bit.ly/BBCYouTubeSub Watch the BBC first on iPlayer 👉 https://bbc.in/iPlayer-Home All our TV channels and S4C are available to watch live through BBC iPlayer, although some programmes may not be available to stream online due to rights. If you would like to read more on what types of programmes are available to watch live, check the 'Are all programmes that are broadcast available on BBC iPlayer?' FAQ 👉 https://bbc.in/2m8ks6v.
https://wn.com/How_The_Welsh_Language_Was_Almost_Lost_|_Union_With_David_Olusoga_BBC
Why Welsh might just be the EASIEST language to speak
14:41

Why Welsh might just be the EASIEST language to speak

  • Order:
  • Duration: 14:41
  • Uploaded Date: 10 Sep 2024
  • views: 3039
Join me to make more language experiences possible! https://www.youtube.com/channel/UCSbiR1l-cfzk44iTJVSAZVQ/join Music channel: https://youtube.com/@israellai ☕ Support the channel and my journey! 💝 https://www.buymeacoffee.com/rhapsodyinlingo 🗣️ Get $10 for a language lesson on italki: https://www.italki.com/affshare?ref=af1531109 More examples of imagery from English: ar yr awyr - on [the] air tanio - to fire (from a job) 00:00 I've spoken many languages... 01:04 Pronunciation 03:57 Words and expressions - Celtic 06:13 Grammar: you've got options! 07:14 Words and expressions - English 11:23 Code-mixing 11:58 How is it like to speak Welsh with native speakers? ~~~~~~~~~~socials~~~~~~~~~~~ Blog: https://www.rhapsodyinlingo.com Facebook: https://www.facebook.com/rhapsodyinlingo Instagram: https://instagr.am/rhapsodyinlingo Twitter: https://twitter.com/15israellai Learn languages with me: https://rhapsodyinlingo.com/en/learn-with-me/ 收聽語言podcast:https://www.rhapsodyinlingo.com/jyut/收聽/ More videos: A Language is a Dialect with an Army and a Navy: https://youtu.be/XHywFJfh-iE What your accent says about you https://youtu.be/JRFQ5X64dWg How I'm learning 7 languages at the same time https://youtu.be/4SsmDNnkGiU #polyglot #hongkonger #languagelearning #hongkong #languagelearning #languages #wales #welsh #cymru #cymraeg #dysgucymraeg #learnwelsh
https://wn.com/Why_Welsh_Might_Just_Be_The_Easiest_Language_To_Speak
Codi Bwganod | Wales' Hauntings with The Welsh Viking
24:56

Codi Bwganod | Wales' Hauntings with The Welsh Viking

  • Order:
  • Duration: 24:56
  • Uploaded Date: 01 Oct 2024
  • views: 290
Ydych chi'n credu mewn ysbrydion? 👀 Mewn chwech lleoliad ledled y wlad, yr hanesydd a'r YouTuber, Jimmy Johnson:https://www.youtube.com/@UCu-drfhNohk9NVuqzgS6Elw sy'n ymchwilio i fyd dychrynllyd llên Gwerin Cymru ⚰️ 📍 Trefdraeth (Newport) 📍 Port Talbot 📍 Llanberis 📍 Ardudwy 📍 Y Drenewydd (Newtown) 📍 Porthmadog Dive into the eerie world of Welsh folklore with historian and YouTuber Jimmy Johnson:https://www.youtube.com/@UCu-drfhNohk9NVuqzgS6Elw 🕯️ He uncovers the spookiest folk tales from six haunted locations across Wales. From spooky encounters to mysterious legends, these tales will send shivers down your spine. Tanysgrifiwch | Subscribe: https://bit.ly/3wWuPsZ Am S4C | About S4C: S4C yw'r unig sianel deledu Gymraeg yn y byd, yn cynnig amrywiaeth eang o raglenni a chynnwys unigryw ar deledu, arlein ac ar y cyfryngau cymdeithasol. Ar ôl y newyddion diweddaraf? Dramâu gwreiddiol? Hen glasuron? Neu os am raglenni plant, dogfennau ffeithiol neu gerddoriaeth gyfoes – mae popeth yma i chi ar S4C. S4C is the only Welsh language television channel in the world, offering a wide range of unique programmes and content on television, online and social media. The latest news? Original dramas? Old classics? Or if you’re after children's shows, factual documentaries or contemporary music – it’s all here for you on S4C. 📲 Dilynwch ni | Follow us: Facebook: https://facebook.com/s4c Twitter: https://twitter.com/s4c Instagram: https://instagram.com/s4c 📺 Gwyliwch | Watch more: https://s4c.cymru/clic
https://wn.com/Codi_Bwganod_|_Wales'_Hauntings_With_The_Welsh_Viking
Liam Dutton nails pronouncing Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch
0:20

Liam Dutton nails pronouncing Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch

  • Order:
  • Duration: 0:20
  • Uploaded Date: 09 Sep 2015
  • views: 70350980
It may be a mouthful to say, but Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch in north west Wales was one of the warmest places in the UK today. And, it was no problem for our Welsh weather presenter Liam Dutton to mention it on today’s weather forecast.
https://wn.com/Liam_Dutton_Nails_Pronouncing_Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • Welsh language - basic phrases and greetings
    4:30
    Welsh language - basic phrases and greetingsremove from playlist
  • What's Typical Welsh? | Easy Welsh 7
    9:33
    What's Typical Welsh? | Easy Welsh 7remove from playlist
  • About the Welsh language
    9:49
    About the Welsh languageremove from playlist
  • How to Speak WELSH ENGLISH: The Accent the Vocabulary and the History
    13:25
    How to Speak WELSH ENGLISH: The Accent the Vocabulary and the Historyremove from playlist
  • ENGLISH & WELSH
    1:19
    ENGLISH & WELSHremove from playlist
  • How has the Welsh language survived?
    5:52
    How has the Welsh language survived?remove from playlist
  • How the Welsh language was almost lost | Union with David Olusoga - BBC
    3:49
    How the Welsh language was almost lost | Union with David Olusoga - BBCremove from playlist
  • Why Welsh might just be the EASIEST language to speak
    14:41
    Why Welsh might just be the EASIEST language to speakremove from playlist
  • Codi Bwganod | Wales' Hauntings with The Welsh Viking
    24:56
    Codi Bwganod | Wales' Hauntings with The Welsh Vikingremove from playlist
  • Liam Dutton nails pronouncing Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch
    0:20
    Liam Dutton nails pronouncing Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogochremove from playlist
PLAYLIST TIME: 0:00 / 1:28:14

Welsh language - basic phrases and greetings

Learn basic Welsh phrases useful for getting by in Wales. We have selected some of the most common words and phrases that you might need to start a conversation with a Welsh speaker, including, of course, hello, how are you?, what is your name?, etc. Each word or phrase is repeated 3 times with the written text also on the screen, plus the English translation. There are 26 items in total. The full list is as follows: Hello How are you? How are you? (formal) How are you? (informal) OK Very good Very well thank you Please Thank you Thank you very much Welcome Good morning Good afternoon Good night Happy birthday! Merry Christmas! Happy New Year! I'm sorry I am learning Welsh I don't speak Welsh I like coffee I don't like coffee What is your name? (informal) What is your name? (formal) Where do you live? Congratulations! As you can see above, we also give you a little insight into the difference between formal and informal greetings. Informal greetings would be those used when speaking to somebody younger than yourself whereas the formal form is used when speaking to elders. When you are ready to learn more Welsh, check out our other videos for learning Welsh @Learn-welshNet
4:30
Welsh language - basic phrases and greetings
Learn basic Welsh phrases useful for getting by in Wales. We have selected some of the mos...
published: 01 Jun 2022
Play in Full Screen
9:33
What's Typical Welsh? | Easy Welsh 7
SUBSCRIBE TO EASY LANGUAGES: http://bit.ly/elsub FACEBOOK: http://www.facebook.com/easylan...
published: 29 Apr 2022
Play in Full Screen
9:49
About the Welsh language
Want to learn Welsh? Check out the link for 20% off uTalk – a language learning platform w...
published: 20 Dec 2020
Play in Full Screen
13:25
How to Speak WELSH ENGLISH: The Accent the Vocabulary and the History
All you want to know about Welsh English aka WENGLISH. The expressions, the words the voca...
published: 23 Feb 2024
Play in Full Screen
1:19
ENGLISH & WELSH
Welcome to my channel! This is Andy from I love languages. Let's learn different languages...
published: 14 Feb 2024
Play in Full Screen
5:52
How has the Welsh language survived?
Welsh is a Celtic language native to Wales. Even though Wales was annexed by England over ...
published: 16 Jun 2023
Play in Full Screen
3:49
How the Welsh language was almost lost | Union with David Olusoga - BBC
"It's not easy to overestimate its evil effects." Did you know this was how the Welsh lang...
published: 21 Nov 2023
Play in Full Screen
14:41
Why Welsh might just be the EASIEST language to speak
Join me to make more language experiences possible! https://www.youtube.com/channel/UCSbiR...
published: 10 Sep 2024
Play in Full Screen
24:56
Codi Bwganod | Wales' Hauntings with The Welsh Viking
Ydych chi'n credu mewn ysbrydion? 👀 Mewn chwech lleoliad ledled y wlad, yr hanesydd a'r Y...
published: 01 Oct 2024
Play in Full Screen
0:20
Liam Dutton nails pronouncing Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch
It may be a mouthful to say, but Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoc...
published: 09 Sep 2015
Play in Full Screen

Welsh language

Welsh (Cymraeg or y Gymraeg, pronounced [kəmˈrɑːɨɡ, ə ɡəmˈrɑːɨɡ]) is a member of the Brittonic branch of the Celtic languages spoken natively in Wales, by some in England, and in Y Wladfa (the Welsh colony in Chubut Province, Argentina). Historically it has also been known in English as "the British tongue", "Cambrian", "Cambric" and "Cymric".

The 2011 UK Census counted 3.1 million residents of Wales. Of these, 73% (2.2 million) reported having no Welsh language skills. In 2011, 27% (837,000) of the total population of Wales were born outside Wales. Of the residents of Wales aged three and over, 19% (562,000) reported being able to speak Welsh, and 77% of these were able to speak, read and write the language (making 431,000 15% of the total population). This can be compared with the 2001 Census, in which 20.8% of the population (582,000) reported being able to speak Welsh. In surveys carried out between 2004 and 2006, 57% (315,000) of Welsh speakers described themselves as fluent in the written language.

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