diff --git a/client/Makefile b/client/Makefile index 10777cb..b252f16 100644 --- a/client/Makefile +++ b/client/Makefile @@ -17,7 +17,7 @@ INPUT_FILES = ./src OUTPUT_DIR = ./src # Available locales for the app. -LOCALES = en_US fr_FR de es gl ru oc ja sv nl pl sq gd el bn it +LOCALES = en_US fr_FR de es gl ru oc ja sv nl pl sq gd el bn it pt_BR # Name of the generated .po files for each available locale. LOCALE_FILES ?= $(patsubst %,$(OUTPUT_DIR)/locale/%/LC_MESSAGES/app.po,$(LOCALES)) diff --git a/client/src/locale/bn/LC_MESSAGES/app.po b/client/src/locale/bn/LC_MESSAGES/app.po index dea2eaf..d944b59 100644 --- a/client/src/locale/bn/LC_MESSAGES/app.po +++ b/client/src/locale/bn/LC_MESSAGES/app.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "PO-Revision-Date: 2021-06-01 13:15+0000\n" "Last-Translator: Vodoyo Kamal \n" -"Language-Team: Bengali \n" +"Language-Team: Bengali \n" "Language: bn\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/client/src/locale/es/LC_MESSAGES/app.po b/client/src/locale/es/LC_MESSAGES/app.po index ecb9614..7f91c9d 100644 --- a/client/src/locale/es/LC_MESSAGES/app.po +++ b/client/src/locale/es/LC_MESSAGES/app.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "PO-Revision-Date: 2021-05-29 07:15+0000\n" "Last-Translator: Berto Te \n" -"Language-Team: Spanish \n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/client/src/locale/gd/LC_MESSAGES/app.po b/client/src/locale/gd/LC_MESSAGES/app.po index 9bf4418..86fc350 100644 --- a/client/src/locale/gd/LC_MESSAGES/app.po +++ b/client/src/locale/gd/LC_MESSAGES/app.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "PO-Revision-Date: 2021-06-03 18:15+0000\n" "Last-Translator: GunChleoc \n" -"Language-Team: Gaelic \n" +"Language-Team: Gaelic \n" "Language: gd\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/client/src/locale/gl/LC_MESSAGES/app.po b/client/src/locale/gl/LC_MESSAGES/app.po index f447d4f..032184b 100644 --- a/client/src/locale/gl/LC_MESSAGES/app.po +++ b/client/src/locale/gl/LC_MESSAGES/app.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "PO-Revision-Date: 2021-05-29 07:15+0000\n" "Last-Translator: josé m. \n" -"Language-Team: Galician \n" +"Language-Team: Galician \n" "Language: gl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" diff --git a/client/src/locale/pt_BR/LC_MESSAGES/app.po b/client/src/locale/pt_BR/LC_MESSAGES/app.po index f1889f3..21a6e4b 100644 --- a/client/src/locale/pt_BR/LC_MESSAGES/app.po +++ b/client/src/locale/pt_BR/LC_MESSAGES/app.po @@ -30,7 +30,11 @@ msgstr[0] "%{resultsCount} resultado encontrado para" msgstr[1] "%{resultsCount} resultados encontrados para" #: src/components/SearchWarning.vue:4 -msgid "%{indexName} displays videos and channels that match your search but is not the publisher, nor the owner. If you notice any problems with a video, report it to the administrators on the PeerTube website where the video is published." +msgid "" +"%{indexName} displays videos and channels that match your " +"search but is not the publisher, nor the owner. If you notice any problems " +"with a video, report it to the administrators on the PeerTube website where " +"the video is published." msgstr "" #: src/components/Footer.vue:6 @@ -38,7 +42,9 @@ msgid "A free software to take back control of your videos" msgstr "Um software livre para tomar de volta o controle dos seus videos" #: src/components/Header.vue:13 src/components/Header.vue:2 -msgid "A search engine of PeerTube videos and channels" +msgid "" +"A search engine of PeerTube videos and channels" msgstr "" "Um mecanismo de busca de canais e vídeos de PeerTube" @@ -136,10 +142,12 @@ msgid "Deutsch" msgstr "Alemão" #: src/components/Header.vue:15 src/components/Header.vue:4 -msgid "Developed by Framasoft" +msgid "" +"Developed by Framasoft" msgstr "" -"Desenvolvido por Framasoft" +"Desenvolvido por Framasoft" #: src/components/ChannelResult.vue msgid "Discover this channel on %{host}" @@ -390,7 +398,10 @@ msgid "Science & Technology" msgstr "Ciência e Tecnologia" #: src/views/Search.vue:21 -msgid "Search for your favorite videos and channels on %{instancesCount} PeerTube websites indexed by %{indexName}!" +msgid "" +"Search for your favorite videos and channels on %{instancesCount} PeerTube " +"websites indexed by %{indexName}!" msgstr "" "Busque seus canais e vídeos favoritos em %{instancesCount} instâncias de PeerTube indexadas por " diff --git a/client/src/main.ts b/client/src/main.ts index 6db890a..bc1aae1 100644 --- a/client/src/main.ts +++ b/client/src/main.ts @@ -28,12 +28,15 @@ const availableLanguages = { 'nl': 'Nederlands', 'oc': 'Occitan', 'sq': 'Shqip', + 'pt-BR': 'Português (Brasil)', 'bn': 'বাংলা', 'pl': 'Polski' } const aliasesLanguages = { 'en': 'en_US', - 'fr': 'fr_FR' + 'fr': 'fr_FR', + 'br': 'pt_BR', + 'pt': 'pt_BR' } const allLocales = Object.keys(availableLanguages).concat(Object.keys(aliasesLanguages)) diff --git a/client/src/translations/bn.json b/client/src/translations/bn.json index c4b891e..aa69a65 100644 --- a/client/src/translations/bn.json +++ b/client/src/translations/bn.json @@ -1 +1 @@ -{"bn":{">> Check all guides on joinpeertube.org <<":">> joinpeertube.org এ সব নির্দেশিকা দেখো <<","%{ channel.followersCount } follower":["%{ channel.followersCount } অনুসরণকারী","%{channel.followersCount} অনুসরণকারী"],"%{resultsCount} result found for":["%{resultsCount}টি ফলাফল পাওয়া গেছে","%{resultsCount}টি ফলাফল পাওয়া গেছে"],"%{indexName} displays videos and channels that match your search but is not the publisher, nor the owner. If you notice any problems with a video, report it to the administrators on the PeerTube website where the video is published.":"তোমার ভিডিও ও চ্যানেলের অনুসন্ধানের সাথে %{indexName} এর মিল আছে, কিন্তু সে এটার প্রকাশক বা মালিক না। কোনো সমস্যা দেখলে, যে পিয়ারটিউব ওয়েবসাইটটিতে ভিডিওটি দেখেছো তার উপস্থাপক ব্যবস্থাপকের কাছে প্রতিবেদন পাঠাও।","A free software to take back control of your videos":"নিজের ভিডিওর নিয়ন্ত্রণ নাও মুক্ত সফ্‌টওয়্যার দিয়ে","A search engine of PeerTube videos and channels":"পিয়ারটিউব ভিডিও ও চ্যানেলের একটি অনুসন্ধান ইঞ্জিন","Activism":"সক্রিয়তাবাদ","Add tag":"চিরকুট(ট্যাগ) যোগ","All of these tags":"সবগুলো চিরকুট(ট্যাগ","Animals":"পশু-পাখি","Any":"যেকোনো","Apply filters":"ছাঁকনি প্রয়োগ","Art":"শিল্প","Attribution":"কৃতিত্ব","Attribution - No Derivatives":"স্বীকৃতি - অপরিবর্তনীয়","Attribution - Non Commercial":"স্বীকৃতি - অবাণিজ্যিক","Attribution - Non Commercial - No Derivatives":"স্বীকৃতি - অবাণিজ্যিক - অপরিবর্তনীয়","Attribution - Non Commercial - Share Alike":"স্বীকৃতি - অবাণিজ্যিক - একইভাবে বণ্টনযোগ্য","Attribution - Share Alike":"স্বীকৃতি - একইভাবে বণ্টন","Best match":"সর্বোত্তম মিল","Català":"কাটালান","Category":"বিভাগ","Čeština":"সেসটিনা","Change interface language":"ভাষা পরিবর্তন","Comedy":"হাস্যরস","Create an account to take back control of your videos":"নিজের ভিডিওর নিয়ন্ত্রণ নিতে অ্যাকাউন্ট বানাও","Create playlists":"চালুতালিকা তৈরি","Created by":"বানিয়েছে","Deutsch":"জার্মান","Developed by Framasoft":"ফ্রামাসফট বানিয়েছে","Discover this channel on %{host}":"%{host}-এ এই চ্যানেল দেখো","Display all categories":"সব বিভাগ দেখাও","Display all languages":"সব ভাষাই দেখাও","Display all licenses":"সব অনুমতিপত্র দেখাও","Display homepage":"মূলপাতা দেখাও","Display sensitive content":"সংবেদনশীল ফলাফল দেখাও","Duration":"সময়কাল","Education":"শিক্ষামূলক","English":"ইংরেজি","Entertainment":"বিনোদন","Español":"স্পেনীয়","Esperanto":"এস্পেরান্তো","Euskara":"ইউস্কারা","Films":"চলচিত্র","Filters":"ছাঁকনি","Food":"খাদ্য","Français":"ফরাসি","Gàidhlig":"গাইধলিগ","Gaming":"গেমিং","Go on this account page":"এই অ্যাকাউন্টের পাতায় যাও","Go on this channel page":"এই চ্যানেলের পাতায় যাও","Go!":"যাও!","How To":"কিভাবে","In":"ভিতরে","Install PeerTube":"পিয়ারটিউব ইন্সটল করো","Italiano":"ইতালীয়","Keyword, channel, video, etc.":"মূলশব্দ, চ্যানেল, ভিডিও, ইত্যাদি।","Kids":"শিশুতোষ","Language":"ভাষা","Last 30 days":"শেষ ৩০ দিন","Last 365 days":"শেষ ৩৬৫ দিন","Last 7 days":"শেষ ৭ দিন","Least recent":"সবচেয়ে আগের","Legal notices":"আইন বিজ্ঞপ্তি","Licence":"অনুমতিপত্র","Long (> 10 min)":"লম্বা (> ১০ মি.)","Medium (4-10 min)":"মাঝামাঝি (৪-১০ মি.)","Most recent":"সবচেয়ে নতুন","Music":"সংগীত","Nederlands":"নেদারল্যান্ড","News & Politics":"খবর ও রাজনীতি","Next page":"পরের পাতা","No":"না","No results found for":"ফলাফল নেই এই অনুসন্ধানের","Occitan":"অক্সিটান","On":"চালু","on %{instancesCount} indexed PeerTube website":["%{instancesCount}টি বিদ্যমান পিয়ারটিউব ওয়েবসাইটের মধ্যে","%{instancesCount}টি বিদ্যমান পিয়ারটিউব ওয়েবসাইটের মধ্যে"],"One of these tags":"এই চিরকুটগুলোর একটি","Open an account on a PeerTube website":"পিয়ারটিউব ওয়েবসাইটে অ্যাকাউন্ট খুলো","Open your own videos website with PeerTube!":"পিয়ারটিউব দিয়ে নিজের ভিডিও ওয়েবসাইট খুলো!","People":"মানুষ","Polski":"পোলিশ","Português (Portugal)":"পর্তুগিজ (পর্তুগাল)","Previous page":"আগের পাতা","Public Domain Dedication":"জনসাধারণ ক্ষেত্রে উৎসর্গ","Published date":"ছাপানোর তারিখ","Reset":"পরিষ্কার","Science & Technology":"বিজ্ঞান ও প্রযুক্তি","Search for your favorite videos and channels on %{instancesCount} PeerTube websites indexed by %{indexName}!":"%{indexName} ইন্ডেক্সের %{instancesCount}টি পিয়ারটিউব ওয়েবসাইটে তোমার পছন্দের ভিডিও এবং চ্যানেল খুঁজো!","Short (< 4 min)":"ছোটো (< ৪ মি.)","Sort by:":"সাজানোর পদ্ধতি:","Source code":"উৎস কোড","Sports":"খেলাধুলা","suomi":"সুয়োমি","svenska":"স্ভেনস্কা","Tags":"চিরকুট(ট্যাগ)","Today":"আজকে","Travels":"ভ্রমণ","Vehicles":"যানবাহন","Watch the video on %{host}":"%{host}-এ ভিডিও দেখো","Why should I have my own PeerTube website?":"আমি কেনো নিজের পিয়ারটিউব ওয়েবসাইট রাখবো?","with %{activeFilters} active filter":["%{activeFilters}টি সক্রিয় ছাঁকনিসহ","%{activeFilters}টি সক্রিয় ছাঁকনিসহ"],"Yes":"হ্যাঁ","ελληνικά":"গ্রিক","русский":"রুশ","日本語":"জাপানী","简体中文(中国)":"সহজ চীনা ভাষা (চীন)"}} \ No newline at end of file +{"bn":{">> Check all guides on joinpeertube.org <<":">> joinpeertube.org এ সব নির্দেশিকা দেখো <<","%{ channel.followersCount } follower":["%{ channel.followersCount } অনুসরণকারী","%{channel.followersCount} অনুসরণকারী"],"%{resultsCount} result found for":["%{resultsCount}টি ফলাফল পাওয়া গেছে","%{resultsCount}টি ফলাফল পাওয়া গেছে"],"%{indexName} displays videos and channels that match your search but is not the publisher, nor the owner. If you notice any problems with a video, report it to the administrators on the PeerTube website where the video is published.":"তোমার ভিডিও ও চ্যানেলের অনুসন্ধানের সাথে %{indexName} এর মিল আছে, কিন্তু সে এটার প্রকাশক বা মালিক না। কোনো সমস্যা দেখলে, যে পিয়ারটিউব ওয়েবসাইটটিতে ভিডিওটি দেখেছো তার উপস্থাপক ব্যবস্থাপকের কাছে প্রতিবেদন পাঠাও।","A free software to take back control of your videos":"নিজের ভিডিওর নিয়ন্ত্রণ নাও মুক্ত সফ্‌টওয়্যার দিয়ে","A search engine of PeerTube videos and channels":"পিয়ারটিউব ভিডিও ও চ্যানেলের একটি অনুসন্ধান ইঞ্জিন","Activism":"সক্রিয়তাবাদ","Add tag":"চিরকুট(ট্যাগ) যোগ","All of these tags":"সবগুলো চিরকুট(ট্যাগ","Animals":"পশু-পাখি","Any":"যেকোনো","Apply filters":"ছাঁকনি প্রয়োগ","Art":"শিল্প","Attribution":"কৃতিত্ব","Attribution - No Derivatives":"স্বীকৃতি - অপরিবর্তনীয়","Attribution - Non Commercial":"স্বীকৃতি - অবাণিজ্যিক","Attribution - Non Commercial - No Derivatives":"স্বীকৃতি - অবাণিজ্যিক - অপরিবর্তনীয়","Attribution - Non Commercial - Share Alike":"স্বীকৃতি - অবাণিজ্যিক - একইভাবে বণ্টনযোগ্য","Attribution - Share Alike":"স্বীকৃতি - একইভাবে বণ্টন","Best match":"সর্বোত্তম মিল","Català":"কাটালান","Category":"বিভাগ","Čeština":"সেসটিনা","Change interface language":"ভাষা পরিবর্তন","Comedy":"হাস্যরস","Create an account to take back control of your videos":"নিজের ভিডিওর নিয়ন্ত্রণ নিতে অ্যাকাউন্ট বানাও","Create playlists":"চালুতালিকা তৈরি","Created by":"বানিয়েছে","Deutsch":"জার্মান","Developed by Framasoft":"ফ্রামাসফট বানিয়েছে","Discover this channel on %{host}":"%{host}-এ এই চ্যানেল দেখো","Display all categories":"সব বিভাগ দেখাও","Display all languages":"সব ভাষাই দেখাও","Display all licenses":"সব অনুমতিপত্র দেখাও","Display homepage":"মূলপাতা দেখাও","Display only":"শুধু দেখাও","Display sensitive content":"সংবেদনশীল ফলাফল দেখাও","Duration":"সময়কাল","Education":"শিক্ষামূলক","English":"ইংরেজি","Entertainment":"বিনোদন","Español":"স্পেনীয়","Esperanto":"এস্পেরান্তো","Euskara":"ইউস্কারা","Films":"চলচিত্র","Filters":"ছাঁকনি","Food":"খাদ্য","Français":"ফরাসি","Gàidhlig":"গাইধলিগ","Gaming":"গেমিং","Go on this account page":"এই অ্যাকাউন্টের পাতায় যাও","Go on this channel page":"এই চ্যানেলের পাতায় যাও","Go!":"যাও!","How To":"কিভাবে","In":"ভিতরে","Install PeerTube":"পিয়ারটিউব ইন্সটল করো","Italiano":"ইতালীয়","Keyword, channel, video, etc.":"মূলশব্দ, চ্যানেল, ভিডিও, ইত্যাদি।","Kids":"শিশুতোষ","Language":"ভাষা","Last 30 days":"শেষ ৩০ দিন","Last 365 days":"শেষ ৩৬৫ দিন","Last 7 days":"শেষ ৭ দিন","Least recent":"সবচেয়ে আগের","Legal notices":"আইন বিজ্ঞপ্তি","Licence":"অনুমতিপত্র","LIVE":"সরাসরি","Live videos":"সরাসরি ভিডিও","Long (> 10 min)":"লম্বা (> ১০ মি.)","Medium (4-10 min)":"মাঝামাঝি (৪-১০ মি.)","Most recent":"সবচেয়ে নতুন","Music":"সংগীত","Nederlands":"নেদারল্যান্ড","News & Politics":"খবর ও রাজনীতি","Next page":"পরের পাতা","No":"না","No results found for":"ফলাফল নেই এই অনুসন্ধানের","Occitan":"অক্সিটান","On":"চালু","on %{instancesCount} indexed PeerTube website":["%{instancesCount}টি বিদ্যমান পিয়ারটিউব ওয়েবসাইটের মধ্যে","%{instancesCount}টি বিদ্যমান পিয়ারটিউব ওয়েবসাইটের মধ্যে"],"One of these tags":"এই চিরকুটগুলোর একটি","Open an account on a PeerTube website":"পিয়ারটিউব ওয়েবসাইটে অ্যাকাউন্ট খুলো","Open your own videos website with PeerTube!":"পিয়ারটিউব দিয়ে নিজের ভিডিও ওয়েবসাইট খুলো!","People":"মানুষ","Polski":"পোলিশ","Português (Portugal)":"পর্তুগিজ (পর্তুগাল)","Previous page":"আগের পাতা","Public Domain Dedication":"জনসাধারণ ক্ষেত্রে উৎসর্গ","Published date":"ছাপানোর তারিখ","Reset":"পরিষ্কার","Science & Technology":"বিজ্ঞান ও প্রযুক্তি","Search for your favorite videos and channels on %{instancesCount} PeerTube websites indexed by %{indexName}!":"%{indexName} ইন্ডেক্সের %{instancesCount}টি পিয়ারটিউব ওয়েবসাইটে তোমার পছন্দের ভিডিও এবং চ্যানেল খুঁজো!","Short (< 4 min)":"ছোটো (< ৪ মি.)","Sort by:":"সাজানোর পদ্ধতি:","Source code":"উৎস কোড","Sports":"খেলাধুলা","suomi":"সুয়োমি","svenska":"স্ভেনস্কা","Tags":"চিরকুট(ট্যাগ)","Today":"আজকে","Travels":"ভ্রমণ","Vehicles":"যানবাহন","VOD videos":"চাহিদা অনুযায়ী ভিডিও","Watch the video on %{host}":"%{host}-এ ভিডিও দেখো","Why should I have my own PeerTube website?":"আমি কেনো নিজের পিয়ারটিউব ওয়েবসাইট রাখবো?","with %{activeFilters} active filter":["%{activeFilters}টি সক্রিয় ছাঁকনিসহ","%{activeFilters}টি সক্রিয় ছাঁকনিসহ"],"Yes":"হ্যাঁ","ελληνικά":"গ্রিক","русский":"রুশ","日本語":"জাপানী","简体中文(中国)":"সহজ চীনা ভাষা (চীন)"}} \ No newline at end of file diff --git a/client/src/translations/es.json b/client/src/translations/es.json index 221ac2f..9ef1f91 100644 --- a/client/src/translations/es.json +++ b/client/src/translations/es.json @@ -1 +1 @@ -{"es":{">> Check all guides on joinpeertube.org <<":">> Comprueba todas las guías en joinpeertube.org <<","%{ channel.followersCount } follower":["%{ channel.followersCount } seguidor","%{channel.followersCount} seguidores"],"%{resultsCount} result found for":["%{resultsCount} resultado encontrado para","%{resultsCount} resultados encontrados para"],"%{indexName} displays videos and channels that match your search but is not the publisher, nor the owner. If you notice any problems with a video, report it to the administrators on the PeerTube website where the video is published.":"%{indexName} te muestra vídeos y canales que coinciden con tu búsqueda pero no es ni el publicador ni el dueño. Si encuentras algún problema con un vídeo, repórtalo a los administradores de la página de PeerTube donde el vídeo está publicado.","A free software to take back control of your videos":"Un software libre para volver a tomar control sobre tus vídeos","A search engine of PeerTube videos and channels":"Un buscador de vídeos y canales de PeerTube","Activism":"Activismo","Add tag":"Añadir etiqueta","All of these tags":"Todas esas etiquetas","Animals":"Animales","Any":"Cualquiera","Apply filters":"Aplicar filtros","Art":"Arte","Attribution":"Reconocimiento","Attribution - No Derivatives":"Reconocimiento - Sin Obra Derivada","Attribution - Non Commercial":"Reconocimiento - No Comercial","Attribution - Non Commercial - No Derivatives":"Reconocimiento - No Comercial - Sin Obra Derivada","Attribution - Non Commercial - Share Alike":"Reconocimiento - No Comercial - Compartir Igual","Attribution - Share Alike":"Reconocimiento - Compartir Igual","Best match":"Mejor coincidencia","Català":"Catalán - Català","Category":"Categoría","Čeština":"Checo - Čeština","Change interface language":"Cambiar idioma de la interfaz","Comedy":"Comedia","Create an account to take back control of your videos":"Crea una cuenta para volver a tomar control sobre tus vídeos","Create playlists":"Crear listas de reproducción","Created by":"Creado por","Deutsch":"Alemán - Deutsch","Developed by Framasoft":"Desarrollado por Framasoft","Discover this channel on %{host}":"Descubre este canal en %{host}","Display all categories":"Mostrar todas las categorías","Display all languages":"Mostrar todos los idiomas","Display all licenses":"Mostrar todas las licencias","Display homepage":"Mostrar la página principal","Display sensitive content":"Mostrar contenido sensible","Duration":"Duración","Education":"Educación","English":"Inglés - English","Entertainment":"Entretenimiento","Español":"Español","Esperanto":"Esperanto - Esperanto","Euskara":"Vasco - Euskara","Films":"Películas","Filters":"Filtros","Food":"Comida","Français":"Francés - Français","Gàidhlig":"Gaélico - Gàidhlig","Gaming":"Videojuegos","Go on this account page":"Ve a la página de esta cuenta","Go on this channel page":"Ve a la página de este canal","Go!":"¡Ve!","How To":"Cómo hacer","In":"En","Install PeerTube":"Instalar PeerTube","Italiano":"Italiano - Italiano","Keyword, channel, video, etc.":"Palabra clave, canal, vídeo, etc...","Kids":"Infantil","Language":"Idioma","Last 30 days":"Últimos 30 días","Last 365 days":"Últimos 365 días","Last 7 days":"Últimos 7 días","Least recent":"Más antiguo","Legal notices":"Avisos legales","Licence":"Licencia","Long (> 10 min)":"Largo (> 10 min)","Medium (4-10 min)":"Medio (4-10 min)","Most recent":"Más reciente","Music":"Música","Nederlands":"Neerlandés - Nederlands","News & Politics":"Noticias y política","Next page":"Página siguiente","No":"No","No results found for":"Ningún resultado encontrado para","Occitan":"Occitano - Occitan","On":"En","on %{instancesCount} indexed PeerTube website":["en %{instancesCount} página de PeerTube indexada","en %{instancesCount} páginas de PeerTube indexadas"],"One of these tags":"Una de estas etiquetas","Open an account on a PeerTube website":"Registrarse en una instancia de PeerTube","Open your own videos website with PeerTube!":"¡Abre tu propia página de vídeos con PeerTube!","People":"Gente","Polski":"Polaco - Polski","Português (Portugal)":"Portugués (Portugal) - Português (Portugal)","Previous page":"Página anterior","Public Domain Dedication":"Dedicación de Dominio Público","Published date":"Fecha de publicación:","Reset":"Reiniciar","Science & Technology":"Ciencia y Tecnología","Search for your favorite videos and channels on %{instancesCount} PeerTube websites indexed by %{indexName}!":"Busca tus vídeos y canales favoritos en %{instancesCount} instancias de PeerTube indexadas por %{indexName}!","Short (< 4 min)":"Corto (< 4 min)","Sort by:":"Ordenar por:","Source code":"Código fuente","Sports":"Deportes","suomi":"Finés - suomi","svenska":"Sueco - svenska","Tags":"Etiquetas","Today":"Hoy","Travels":"Viajes","Vehicles":"Vehículos","Watch the video on %{host}":"Mira el vídeo en %{host}","Why should I have my own PeerTube website?":"¿Por qué debería tener mi propia instancia de PeerTube?","with %{activeFilters} active filter":["con %{activeFilters} filtro activo","con %{activeFilters} filtros activados"],"Yes":"Sí","ελληνικά":"Griego - ελληνικά","русский":"Ruso - русский","日本語":"Japonés - 日本語","简体中文(中国)":"Chino simplificado (China) - 简体中文(中国)"}} \ No newline at end of file +{"es":{">> Check all guides on joinpeertube.org <<":">> Comprueba todas las guías en joinpeertube.org <<","%{ channel.followersCount } follower":["%{ channel.followersCount } seguidor","%{channel.followersCount} seguidores"],"%{resultsCount} result found for":["%{resultsCount} resultado encontrado para","%{resultsCount} resultados encontrados para"],"%{indexName} displays videos and channels that match your search but is not the publisher, nor the owner. If you notice any problems with a video, report it to the administrators on the PeerTube website where the video is published.":"%{indexName} te muestra vídeos y canales que coinciden con tu búsqueda pero no es ni el publicador ni el dueño. Si encuentras algún problema con un vídeo, repórtalo a los administradores de la página de PeerTube donde el vídeo está publicado.","A free software to take back control of your videos":"Un software libre para volver a tomar control sobre tus vídeos","A search engine of PeerTube videos and channels":"Un buscador de vídeos y canales de PeerTube","Activism":"Activismo","Add tag":"Añadir etiqueta","All of these tags":"Todas esas etiquetas","Animals":"Animales","Any":"Cualquiera","Apply filters":"Aplicar filtros","Art":"Arte","Attribution":"Reconocimiento","Attribution - No Derivatives":"Reconocimiento - Sin Obra Derivada","Attribution - Non Commercial":"Reconocimiento - No Comercial","Attribution - Non Commercial - No Derivatives":"Reconocimiento - No Comercial - Sin Obra Derivada","Attribution - Non Commercial - Share Alike":"Reconocimiento - No Comercial - Compartir Igual","Attribution - Share Alike":"Reconocimiento - Compartir Igual","Best match":"Mejor coincidencia","Català":"Catalán - Català","Category":"Categoría","Čeština":"Checo - Čeština","Change interface language":"Cambiar idioma de la interfaz","Comedy":"Comedia","Create an account to take back control of your videos":"Crea una cuenta para volver a tomar control sobre tus vídeos","Create playlists":"Crear listas de reproducción","Created by":"Creado por","Deutsch":"Alemán - Deutsch","Developed by Framasoft":"Desarrollado por Framasoft","Discover this channel on %{host}":"Descubre este canal en %{host}","Display all categories":"Mostrar todas las categorías","Display all languages":"Mostrar todos los idiomas","Display all licenses":"Mostrar todas las licencias","Display homepage":"Mostrar la página principal","Display only":"Solo mostrar","Display sensitive content":"Mostrar contenido sensible","Duration":"Duración","Education":"Educación","English":"Inglés - English","Entertainment":"Entretenimiento","Español":"Español","Esperanto":"Esperanto - Esperanto","Euskara":"Vasco - Euskara","Films":"Películas","Filters":"Filtros","Food":"Comida","Français":"Francés - Français","Gàidhlig":"Gaélico - Gàidhlig","Gaming":"Videojuegos","Go on this account page":"Ve a la página de esta cuenta","Go on this channel page":"Ve a la página de este canal","Go!":"¡Ve!","How To":"Cómo hacer","In":"En","Install PeerTube":"Instalar PeerTube","Italiano":"Italiano - Italiano","Keyword, channel, video, etc.":"Palabra clave, canal, vídeo, etc...","Kids":"Infantil","Language":"Idioma","Last 30 days":"Últimos 30 días","Last 365 days":"Últimos 365 días","Last 7 days":"Últimos 7 días","Least recent":"Más antiguo","Legal notices":"Avisos legales","Licence":"Licencia","LIVE":"EN VIVO","Live videos":"Videos en vivo","Long (> 10 min)":"Largo (> 10 min)","Medium (4-10 min)":"Medio (4-10 min)","Most recent":"Más reciente","Music":"Música","Nederlands":"Neerlandés - Nederlands","News & Politics":"Noticias y política","Next page":"Página siguiente","No":"No","No results found for":"Ningún resultado encontrado para","Occitan":"Occitano - Occitan","On":"En","on %{instancesCount} indexed PeerTube website":["en %{instancesCount} página de PeerTube indexada","en %{instancesCount} páginas de PeerTube indexadas"],"One of these tags":"Una de estas etiquetas","Open an account on a PeerTube website":"Registrarse en una instancia de PeerTube","Open your own videos website with PeerTube!":"¡Abre tu propia página de vídeos con PeerTube!","People":"Gente","Polski":"Polaco - Polski","Português (Portugal)":"Portugués (Portugal) - Português (Portugal)","Previous page":"Página anterior","Public Domain Dedication":"Dedicación de Dominio Público","Published date":"Fecha de publicación","Reset":"Reiniciar","Science & Technology":"Ciencia y Tecnología","Search for your favorite videos and channels on %{instancesCount} PeerTube websites indexed by %{indexName}!":"Busca tus vídeos y canales favoritos en %{instancesCount} instancias de PeerTube indexadas por %{indexName}!","Short (< 4 min)":"Corto (< 4 min)","Sort by:":"Ordenar por:","Source code":"Código fuente","Sports":"Deportes","suomi":"Finés - suomi","svenska":"Sueco - svenska","Tags":"Etiquetas","Today":"Hoy","Travels":"Viajes","Vehicles":"Vehículos","VOD videos":"videos VOD","Watch the video on %{host}":"Mira el vídeo en %{host}","Why should I have my own PeerTube website?":"¿Por qué debería tener mi propia instancia de PeerTube?","with %{activeFilters} active filter":["con %{activeFilters} filtro activo","con %{activeFilters} filtros activados"],"Yes":"Sí","ελληνικά":"Griego - ελληνικά","русский":"Ruso - русский","日本語":"Japonés - 日本語","简体中文(中国)":"Chino simplificado (China) - 简体中文(中国)"}} \ No newline at end of file diff --git a/client/src/translations/gd.json b/client/src/translations/gd.json index f896e00..ff15bb9 100644 --- a/client/src/translations/gd.json +++ b/client/src/translations/gd.json @@ -1 +1 @@ -{"gd":{">> Check all guides on joinpeertube.org <<":">> Thoir sùil air na treòirichearan slàna air joinpeertube.org <<","%{ channel.followersCount } follower":["%{ channel.followersCount } neach-leantainn","%{ channel.followersCount } luchd-leantainn","%{ channel.followersCount } luchd-leantainn","%{ channel.followersCount } luchd-leantainn"],"%{resultsCount} result found for":["Chaidh %{resultsCount} toradh a lorg air","Chaidh %{resultsCount} thoradh a lorg air","Chaidh %{resultsCount} toraidhean a lorg air","Chaidh %{resultsCount} toradh a lorg air"],"%{indexName} displays videos and channels that match your search but is not the publisher, nor the owner. If you notice any problems with a video, report it to the administrators on the PeerTube website where the video is published.":"Seallaidh %{indexName} na videothan is seanailean a fhreagras ris na lorg thu ach chan eile e ’na fhoillsichear no sealbhadair dhaibh. Ma mhothaicheas tu trioblaid sam bith le video, cuir fios gu rianairean na làraich PeerTube far an deach a’ video fhoillseachadh.","A free software to take back control of your videos":"Bathar-bog saor a bheir smachd dhut air na videothan agad fhèin","A search engine of PeerTube videos and channels":"Einnsean-luirg do videothan is seanailean PeerTube","Activism":"Iomairt","Add tag":"Cuir taga ris","All of these tags":"Na tagaichean seo uile","Animals":"Beathaichean","Any":"Gin sam bith","Apply filters":"Cuir na criathragan an sàs","Art":"Obair-ealain","Attribution":"Attribution","Attribution - No Derivatives":"Attribution – No Derivatives","Attribution - Non Commercial":"Attribution – Non Commercial","Attribution - Non Commercial - No Derivatives":"Attribution – Non Commercial – No Derivatives","Attribution - Non Commercial - Share Alike":"Attribution – Non Commercial – Share Alike","Attribution - Share Alike":"Attribution – Share Alike","Best match":"A’ mhaids as fheàrr","Català":"Català","Category":"Roinn-seòrsa","Čeština":"Čeština","Change interface language":"Atharraich cànan na h-eadar-aghaidh","Comedy":"Èibhinn","Create an account to take back control of your videos":"Cruthaich cunntas a bheir smachd dhut air na videothan agad fhèin","Create playlists":"Cruthaich liostaichean-cluich","Created by":"Air a chruthachadh le","Deutsch":"Deutsch","Developed by Framasoft":"’Ga leasachadh le Framasoft","Discover this channel on %{host}":"Rùraich an t-seanail seo air %{host}","Display all categories":"Seall a h-uile roinn-seòrsa","Display all languages":"Seall a h-uile cànan","Display all licenses":"Seall a h-uile ceadachas","Display homepage":"Seall an duilleag-dhachaigh","Display sensitive content":"Seall susbaint fhrionasach","Duration":"Faide","Education":"Foghlam","English":"English","Entertainment":"Dibhearsan","Español":"Español","Esperanto":"Esperanto","Euskara":"Euskara","Films":"Filmichean","Filters":"Criathragan","Food":"Biadh","Français":"Français","Gàidhlig":"Gàidhlig","Gaming":"Geamaireachd","Go on this account page":"Tadhail air duilleag a’ chunntais seo","Go on this channel page":"Tadhail air duilleag an t-seanail seo","Go!":"Siuthad!","How To":"Mìneachadh","In":"Ann an","Install PeerTube":"Stàlaich PeerTube","Italiano":"Italiano","Keyword, channel, video, etc.":"Facal-luirg, seanail, video is msaa.","Kids":"Clann","Language":"Cànan","Last 30 days":"An 30 latha seo chaidh","Last 365 days":"An 365 latha seo chaidh","Last 7 days":"Na 7 làithean seo chaidh","Least recent":"As sine","Legal notices":"Sanasan laghail","Licence":"Ceadachas","Long (> 10 min)":"Fada (> 10 mion)","Medium (4-10 min)":"Meadhanach (4-10 mion)","Most recent":"As ùire","Music":"Ceòl","Nederlands":"Nederlands","News & Politics":"Naidheachdan ⁊ poileataigs","Next page":"An ath-dhuilleag","No":"Chan eil","No results found for":"Cha deach toradh a lorg airson","Occitan":"Occitan","On":"Air","on %{instancesCount} indexed PeerTube website":["air %{instancesCount} làrach-lìn inneacs PeerTube","air %{instancesCount} làrach-lìn inneacs PeerTube","air %{instancesCount} làraichean-lìn inneacs PeerTube","air %{instancesCount} làrach-lìn inneacs PeerTube"],"One of these tags":"Aonan dhe na tagaichean seo","Open an account on a PeerTube website":"Fosgail cunntas air làrach-lìn PeerTube","Open your own videos website with PeerTube!":"Stèidhich làrach-lìn de videothan agad fhèin le PeerTube!","People":"Daoine","Polski":"Polski","Português (Portugal)":"Português (Portugal)","Previous page":"An duilleag roimhpe","Public Domain Dedication":"Tabhartas Public Domain","Published date":"Ceann-là an fhoillseachaidh","Reset":"Ath-shuidhich","Science & Technology":"Saidheans ⁊ teicneolas","Search for your favorite videos and channels on %{instancesCount} PeerTube websites indexed by %{indexName}!":"Lorg na videothan is seanailean as annsa leat air %{instancesCount} làrach-lìn PeerTube ’ga inneacsadh le %{indexName}!","Short (< 4 min)":"Goirid (< 4 mion)","Sort by:":"Seòrsaich a-rèir:","Source code":"Bun-tùs","Sports":"Spòrs","suomi":"suomi","svenska":"svenska","Tags":"Tagaichean","Today":"An-diugh","Travels":"Siubhal","Vehicles":"Carbadan","Watch the video on %{host}":"Coimhead air a’ video air %{host}","Why should I have my own PeerTube website?":"Carson a bu chòir do làrach-lìn PeerTube a bhith agam fhìn?","with %{activeFilters} active filter":["le %{activeFilters} chriathrag ghnìomhach","le %{activeFilters} chriathrag ghnìomhach","le %{activeFilters} criathragan gnìomhach","le %{activeFilters} chriathrag ghnìomhach"],"Yes":"Tha","ελληνικά":"ελληνικά","русский":"русский","日本語":"日本語","简体中文(中国)":"简体中文(中国)"}} \ No newline at end of file +{"gd":{">> Check all guides on joinpeertube.org <<":">> Thoir sùil air na treòirichearan slàna air joinpeertube.org <<","%{ channel.followersCount } follower":["%{ channel.followersCount } neach-leantainn","%{ channel.followersCount } luchd-leantainn","%{ channel.followersCount } luchd-leantainn","%{ channel.followersCount } luchd-leantainn"],"%{resultsCount} result found for":["Chaidh %{resultsCount} toradh a lorg air","Chaidh %{resultsCount} thoradh a lorg air","Chaidh %{resultsCount} toraidhean a lorg air","Chaidh %{resultsCount} toradh a lorg air"],"%{indexName} displays videos and channels that match your search but is not the publisher, nor the owner. If you notice any problems with a video, report it to the administrators on the PeerTube website where the video is published.":"Seallaidh %{indexName} na videothan is seanailean a fhreagras ris na lorg thu ach chan eile e ’na fhoillsichear no sealbhadair dhaibh. Ma mhothaicheas tu trioblaid sam bith le video, cuir fios gu rianairean na làraich PeerTube far an deach a’ video fhoillseachadh.","A free software to take back control of your videos":"Bathar-bog saor a bheir smachd dhut air na videothan agad fhèin","A search engine of PeerTube videos and channels":"Einnsean-luirg do videothan is seanailean PeerTube","Activism":"Iomairt","Add tag":"Cuir taga ris","All of these tags":"Na tagaichean seo uile","Animals":"Beathaichean","Any":"Gin sam bith","Apply filters":"Cuir na criathragan an sàs","Art":"Obair-ealain","Attribution":"Attribution","Attribution - No Derivatives":"Attribution – No Derivatives","Attribution - Non Commercial":"Attribution – Non Commercial","Attribution - Non Commercial - No Derivatives":"Attribution – Non Commercial – No Derivatives","Attribution - Non Commercial - Share Alike":"Attribution – Non Commercial – Share Alike","Attribution - Share Alike":"Attribution – Share Alike","Best match":"A’ mhaids as fheàrr","Català":"Català","Category":"Roinn-seòrsa","Čeština":"Čeština","Change interface language":"Atharraich cànan na h-eadar-aghaidh","Comedy":"Èibhinn","Create an account to take back control of your videos":"Cruthaich cunntas a bheir smachd dhut air na videothan agad fhèin","Create playlists":"Cruthaich liostaichean-cluich","Created by":"Air a chruthachadh le","Deutsch":"Deutsch","Developed by Framasoft":"’Ga leasachadh le Framasoft","Discover this channel on %{host}":"Rùraich an t-seanail seo air %{host}","Display all categories":"Seall a h-uile roinn-seòrsa","Display all languages":"Seall a h-uile cànan","Display all licenses":"Seall a h-uile ceadachas","Display homepage":"Seall an duilleag-dhachaigh","Display only":"Seall a-mhàin","Display sensitive content":"Seall susbaint fhrionasach","Duration":"Faide","Education":"Foghlam","English":"English","Entertainment":"Dibhearsan","Español":"Español","Esperanto":"Esperanto","Euskara":"Euskara","Films":"Filmichean","Filters":"Criathragan","Food":"Biadh","Français":"Français","Gàidhlig":"Gàidhlig","Gaming":"Geamaireachd","Go on this account page":"Tadhail air duilleag a’ chunntais seo","Go on this channel page":"Tadhail air duilleag an t-seanail seo","Go!":"Siuthad!","How To":"Mìneachadh","In":"Ann an","Install PeerTube":"Stàlaich PeerTube","Italiano":"Italiano","Keyword, channel, video, etc.":"Facal-luirg, seanail, video is msaa.","Kids":"Clann","Language":"Cànan","Last 30 days":"An 30 latha seo chaidh","Last 365 days":"An 365 latha seo chaidh","Last 7 days":"Na 7 làithean seo chaidh","Least recent":"As sine","Legal notices":"Sanasan laghail","Licence":"Ceadachas","LIVE":"BEÒ","Live videos":"Videothan beòtha","Long (> 10 min)":"Fada (> 10 mion)","Medium (4-10 min)":"Meadhanach (4-10 mion)","Most recent":"As ùire","Music":"Ceòl","Nederlands":"Nederlands","News & Politics":"Naidheachdan ⁊ poileataigs","Next page":"An ath-dhuilleag","No":"Chan eil","No results found for":"Cha deach toradh a lorg airson","Occitan":"Occitan","On":"Air","on %{instancesCount} indexed PeerTube website":["air %{instancesCount} làrach-lìn inneacs PeerTube","air %{instancesCount} làrach-lìn inneacs PeerTube","air %{instancesCount} làraichean-lìn inneacs PeerTube","air %{instancesCount} làrach-lìn inneacs PeerTube"],"One of these tags":"Aonan dhe na tagaichean seo","Open an account on a PeerTube website":"Fosgail cunntas air làrach-lìn PeerTube","Open your own videos website with PeerTube!":"Stèidhich làrach-lìn de videothan agad fhèin le PeerTube!","People":"Daoine","Polski":"Polski","Português (Portugal)":"Português (Portugal)","Previous page":"An duilleag roimhpe","Public Domain Dedication":"Tabhartas Public Domain","Published date":"Ceann-là an fhoillseachaidh","Reset":"Ath-shuidhich","Science & Technology":"Saidheans ⁊ teicneolas","Search for your favorite videos and channels on %{instancesCount} PeerTube websites indexed by %{indexName}!":"Lorg na videothan is seanailean as annsa leat air %{instancesCount} làrach-lìn PeerTube ’ga inneacsadh le %{indexName}!","Short (< 4 min)":"Goirid (< 4 mion)","Sort by:":"Seòrsaich a-rèir:","Source code":"Bun-tùs","Sports":"Spòrs","suomi":"suomi","svenska":"svenska","Tags":"Tagaichean","Today":"An-diugh","Travels":"Siubhal","Vehicles":"Carbadan","VOD videos":"Videothan air iarrtas","Watch the video on %{host}":"Coimhead air a’ video air %{host}","Why should I have my own PeerTube website?":"Carson a bu chòir do làrach-lìn PeerTube a bhith agam fhìn?","with %{activeFilters} active filter":["le %{activeFilters} chriathrag ghnìomhach","le %{activeFilters} chriathrag ghnìomhach","le %{activeFilters} criathragan gnìomhach","le %{activeFilters} chriathrag ghnìomhach"],"Yes":"Tha","ελληνικά":"ελληνικά","русский":"русский","日本語":"日本語","简体中文(中国)":"简体中文(中国)"}} \ No newline at end of file diff --git a/client/src/translations/gl.json b/client/src/translations/gl.json index 13d7bb4..5cba188 100644 --- a/client/src/translations/gl.json +++ b/client/src/translations/gl.json @@ -1 +1 @@ -{"gl":{">> Check all guides on joinpeertube.org <<":">> Le os manuais en joinpeertube.org <<","%{ channel.followersCount } follower":["%{ channel.followersCount } seguidora","%{channel.followersCount} seguidoras"],"%{resultsCount} result found for":["atopamos %{resultsCount} resultado para","atopamos %{resultsCount} resultados para"],"%{indexName} displays videos and channels that match your search but is not the publisher, nor the owner. If you notice any problems with a video, report it to the administrators on the PeerTube website where the video is published.":"%{indexName} mostra vídeos e canles que concordan coa túa busca pero non é a autora, nin quen os publica nin a dona deles. Se notas algún problema cun vídeo, informa á administración do sitio web PeerTube onde se publicou o vídeo.","A free software to take back control of your videos":"Software libre para retomar o control dos teus vídeos","A search engine of PeerTube videos and channels":"Un motor de busca para vídeos e canles de PeerTube","Activism":"Activismo","Add tag":"Engadir etiqueta","All of these tags":"Tódalas etiquetas","Animals":"Animais","Any":"Calquera","Apply filters":"Aplicar filtros","Art":"Arte","Attribution":"Atribución","Attribution - No Derivatives":"Atribución - Sen Derivados","Attribution - Non Commercial":"Atribución - Non Comercial","Attribution - Non Commercial - No Derivatives":"Atribución - Non Comercial - Non Derivados","Attribution - Non Commercial - Share Alike":"Atribución - Non Comercial - Compartir Igual","Attribution - Share Alike":"Atribución - Compartir Igual","Best match":"Mellor coincidencia","Català":"Català","Category":"Categoría","Čeština":"Čeština","Change interface language":"Cambiar idioma da interface","Comedy":"Comedia","Create an account to take back control of your videos":"Abre unha conta para retomar o control dos teus vídeos","Create playlists":"Crear listas","Created by":"Creado por","Deutsch":"Deutsch","Developed by Framasoft":"Desenvolto por Framasoft","Discover this channel on %{host}":"Descubre esta canle en %{host}","Display all categories":"Mostra tódalas categorías","Display all languages":"Mostra tódolos idiomas","Display all licenses":"Mostrar todas as licenzas","Display homepage":"Mostrar páxina de inicio","Display sensitive content":"Mostrar contido sensible","Duration":"Duración","Education":"Educación","English":"English","Entertainment":"Entretemento","Español":"Español","Esperanto":"Esperanto","Euskara":"Euskara","Films":"Películas","Filters":"Filtros","Food":"Comida","Français":"Français","Gàidhlig":"Gàidhlig","Gaming":"Xogos","Go on this account page":"Ir á páxina desta conta","Go on this channel page":"Ir á páxina desta canle","Go!":"Busca!","How To":"Manuais","In":"En","Install PeerTube":"Instalar PeerTube","Italiano":"Italiano","Keyword, channel, video, etc.":"Palabra, canle, vídeo, etc.","Kids":"Rapazada","Language":"Idioma","Last 30 days":"Últimos 30 días","Last 365 days":"Últimos 365 días","Last 7 days":"Últimos 7 días","Least recent":"Menos recente","Legal notices":"Aviso legal","Licence":"Licenza","Long (> 10 min)":"Longo (>10min)","Medium (4-10 min)":"Medio (4-10 min)","Most recent":"Máis recente","Music":"Música","Nederlands":"Nederlands","News & Politics":"Novas e Política","Next page":"Páxina seguinte","No":"Non","No results found for":"Non hai resultados para","Occitan":"Occitan","On":"En","on %{instancesCount} indexed PeerTube website":["en %{instancesCount} instancia de PeerTube","en %{instancesCount} instancias de PeerTube"],"One of these tags":"Unha destas etiquetas","Open an account on a PeerTube website":"Abre unha conta nunha instancia PeerTube","Open your own videos website with PeerTube!":"Crea unha instancia propia para os teus vídeos con PeerTube!","People":"Persoas","Polski":"Polski","Português (Portugal)":"Português (Portugal)","Previous page":"Páxina anterior","Public Domain Dedication":"Uso para Dominio Público","Published date":"Data de publicación","Reset":"Restablecer","Science & Technology":"Ciencia e Tecnoloxía","Search for your favorite videos and channels on %{instancesCount} PeerTube websites indexed by %{indexName}!":"Busca os teus vídeos e canles favoritos en %{instancesCount} servidores PeerTube indexados por %{indexName}!","Short (< 4 min)":"Curto (< 4 min)","Sort by:":"Orde por:","Source code":"Código fonte","Sports":"Deportes","suomi":"suomi","svenska":"svenska","Tags":"Etiquetas","Today":"Hoxe","Travels":"Viaxes","Vehicles":"Vehículos","Watch the video on %{host}":"Mira o vídeo en %{host}","Why should I have my own PeerTube website?":"¿Por que debería ter a miña propia web PeerTube?","with %{activeFilters} active filter":["con %{activeFilters} filtro activo","con %{activeFilters} filtros activos"],"Yes":"Si","ελληνικά":"ελληνικά","русский":"русский","日本語":"日本語","简体中文(中国)":"简体中文(中国)"}} \ No newline at end of file +{"gl":{">> Check all guides on joinpeertube.org <<":">> Le os manuais en joinpeertube.org <<","%{ channel.followersCount } follower":["%{ channel.followersCount } seguidora","%{channel.followersCount} seguidoras"],"%{resultsCount} result found for":["atopamos %{resultsCount} resultado para","atopamos %{resultsCount} resultados para"],"%{indexName} displays videos and channels that match your search but is not the publisher, nor the owner. If you notice any problems with a video, report it to the administrators on the PeerTube website where the video is published.":"%{indexName} mostra vídeos e canles que concordan coa túa busca pero non é a autora, nin quen os publica nin a dona deles. Se notas algún problema cun vídeo, informa á administración do sitio web PeerTube onde se publicou o vídeo.","A free software to take back control of your videos":"Software libre para retomar o control dos teus vídeos","A search engine of PeerTube videos and channels":"Un motor de busca para vídeos e canles de PeerTube","Activism":"Activismo","Add tag":"Engadir etiqueta","All of these tags":"Tódalas etiquetas","Animals":"Animais","Any":"Calquera","Apply filters":"Aplicar filtros","Art":"Arte","Attribution":"Atribución","Attribution - No Derivatives":"Atribución - Sen Derivados","Attribution - Non Commercial":"Atribución - Non Comercial","Attribution - Non Commercial - No Derivatives":"Atribución - Non Comercial - Non Derivados","Attribution - Non Commercial - Share Alike":"Atribución - Non Comercial - Compartir Igual","Attribution - Share Alike":"Atribución - Compartir Igual","Best match":"Mellor coincidencia","Català":"Català","Category":"Categoría","Čeština":"Čeština","Change interface language":"Cambiar idioma da interface","Comedy":"Comedia","Create an account to take back control of your videos":"Abre unha conta para retomar o control dos teus vídeos","Create playlists":"Crear listas","Created by":"Creado por","Deutsch":"Deutsch","Developed by Framasoft":"Desenvolto por Framasoft","Discover this channel on %{host}":"Descubre esta canle en %{host}","Display all categories":"Mostra tódalas categorías","Display all languages":"Mostra tódolos idiomas","Display all licenses":"Mostrar todas as licenzas","Display homepage":"Mostrar páxina de inicio","Display only":"Mostrar só","Display sensitive content":"Mostrar contido sensible","Duration":"Duración","Education":"Educación","English":"English","Entertainment":"Entretemento","Español":"Español","Esperanto":"Esperanto","Euskara":"Euskara","Films":"Películas","Filters":"Filtros","Food":"Comida","Français":"Français","Gàidhlig":"Gàidhlig","Gaming":"Xogos","Go on this account page":"Ir á páxina desta conta","Go on this channel page":"Ir á páxina desta canle","Go!":"Busca!","How To":"Manuais","In":"En","Install PeerTube":"Instalar PeerTube","Italiano":"Italiano","Keyword, channel, video, etc.":"Palabra, canle, vídeo, etc.","Kids":"Rapazada","Language":"Idioma","Last 30 days":"Últimos 30 días","Last 365 days":"Últimos 365 días","Last 7 days":"Últimos 7 días","Least recent":"Menos recente","Legal notices":"Aviso legal","Licence":"Licenza","LIVE":"DIRECTO","Live videos":"Vídeos en directo","Long (> 10 min)":"Longo (>10min)","Medium (4-10 min)":"Medio (4-10 min)","Most recent":"Máis recente","Music":"Música","Nederlands":"Nederlands","News & Politics":"Novas e Política","Next page":"Páxina seguinte","No":"Non","No results found for":"Non hai resultados para","Occitan":"Occitan","On":"En","on %{instancesCount} indexed PeerTube website":["en %{instancesCount} instancia de PeerTube","en %{instancesCount} instancias de PeerTube"],"One of these tags":"Unha destas etiquetas","Open an account on a PeerTube website":"Abre unha conta nunha instancia PeerTube","Open your own videos website with PeerTube!":"Crea unha instancia propia para os teus vídeos con PeerTube!","People":"Persoas","Polski":"Polski","Português (Portugal)":"Português (Portugal)","Previous page":"Páxina anterior","Public Domain Dedication":"Uso para Dominio Público","Published date":"Data de publicación","Reset":"Restablecer","Science & Technology":"Ciencia e Tecnoloxía","Search for your favorite videos and channels on %{instancesCount} PeerTube websites indexed by %{indexName}!":"Busca os teus vídeos e canles favoritos en %{instancesCount} servidores PeerTube indexados por %{indexName}!","Short (< 4 min)":"Curto (< 4 min)","Sort by:":"Orde por:","Source code":"Código fonte","Sports":"Deportes","suomi":"suomi","svenska":"svenska","Tags":"Etiquetas","Today":"Hoxe","Travels":"Viaxes","Vehicles":"Vehículos","VOD videos":"Vídeos baixo demanda","Watch the video on %{host}":"Mira o vídeo en %{host}","Why should I have my own PeerTube website?":"¿Por que debería ter a miña propia web PeerTube?","with %{activeFilters} active filter":["con %{activeFilters} filtro activo","con %{activeFilters} filtros activos"],"Yes":"Si","ελληνικά":"ελληνικά","русский":"русский","日本語":"日本語","简体中文(中国)":"简体中文(中国)"}} \ No newline at end of file diff --git a/client/src/translations/pt_BR.json b/client/src/translations/pt_BR.json new file mode 100644 index 0000000..3214a53 --- /dev/null +++ b/client/src/translations/pt_BR.json @@ -0,0 +1 @@ +{"pt_BR":{">> Check all guides on joinpeertube.org <<":">> Visualize todos os guias em joinpeertube.org <<","%{ channel.followersCount } follower":["%{ channel.followersCount } seguidor","%{channel.followersCount} seguidores"],"%{resultsCount} result found for":["%{resultsCount} resultado encontrado para","%{resultsCount} resultados encontrados para"],"A free software to take back control of your videos":"Um software livre para tomar de volta o controle dos seus videos","A search engine of PeerTube videos and channels":"Um mecanismo de busca de canais e vídeos de PeerTube","Activism":"Ativismo","Add tag":"Adicionar tag","All of these tags":"Todas estas tags","Animals":"Animais","Any":"Qualquer","Apply filters":"Aplicar filtros","Art":"Arte","Attribution":"Atribuição","Attribution - No Derivatives":"Atribuição - Sem Derivações","Attribution - Non Commercial":"Atribuição - Não Comercial","Attribution - Non Commercial - No Derivatives":"Atribuição Não Comercial - Sem Derivações","Attribution - Non Commercial - Share Alike":"Atribuição - Não Comercial - Compartilha Igual","Attribution - Share Alike":"Atribuição - Compartilha Igual","Best match":"Mais relevante","Category":"Categoria","Change interface language":"Mudar a língua da interface","Comedy":"Comédia","Create an account to take back control of your videos":"Crie uma conta para recuperar de volta o controle de seus vídeos","Create playlists":"Criar playlists","Created by":"Criado por","Deutsch":"Alemão","Developed by Framasoft":"Desenvolvido por Framasoft","Discover this channel on %{host}":"Descubra esse canal em %{host}","Display all categories":"Exibir todas as categorias","Display all languages":"Exibir todos os idiomas","Display all licenses":"Exibir todas as licenças","Display homepage":"Exibir a página inicial","Display only":"Exibir apenas","Display sensitive content":"Exibir conteúdo sensível","Duration":"Duração","Education":"Educação","English":"Inglês","Entertainment":"Entretenimento","Español":"Espanhol","Esperanto":"Esperanto","Films":"Filmes","Filters":"Filtros","Food":"Comida","Français":"Francês","Gaming":"Gaming","Go on this account page":"Ir para a página desta conta","Go on this channel page":"Ir para a página deste canal","How To":"Como fazer","In":"Em","Install PeerTube":"Instalar PeerTube","Italiano":"Italiano","Keyword, channel, video, etc.":"Palavra chave, canal, video, etc.","Kids":"Infantil","Language":"Idioma","Last 30 days":"Últimos 30 dIas","Last 365 days":"Últimos 365 dIas","Last 7 days":"Últimos 7 dIas","Least recent":"Mais recente","Legal notices":"Avisos legais","Licence":"Licença","LIVE":"AO VIVO","Live videos":"Transmissões ao vivo","Long (> 10 min)":"Grande (> 10 min)","Medium (4-10 min)":"Médio (4-10 min)","Most recent":"Mais recente","Music":"Música","Nederlands":"Países Baixos - Holanda","News & Politics":"Notícias e Política","Next page":"Próxima página","No":"Não","No results found for":"Nenhum resultado encontrado para","On":"Em","on %{instancesCount} indexed PeerTube website":["em %{instancesCount} página de PeerTube indexada","em %{instancesCount} páginas de PeerTube indexadas"],"One of these tags":"Uma destas tags","Open an account on a PeerTube website":"Registrar uma conta em uma instância do PeerTube","Open your own videos website with PeerTube!":"Faça seu próprio site de vídeos com PeerTube!","People":"Pessoas","Português (Portugal)":"Português (Portugal)","Previous page":"Página anterior","Public Domain Dedication":"Dedicado a Domínio Público","Published date":"Data da publicação","Reset":"Reiniciar","Science & Technology":"Ciência e Tecnologia","Search for your favorite videos and channels on %{instancesCount} PeerTube websites indexed by %{indexName}!":"Busque seus canais e vídeos favoritos em %{instancesCount} instâncias de PeerTube indexadas por %{indexName}!","Short (< 4 min)":"Curto (< 4 min)","Sort by:":"Ordenar por:","Source code":"Código fonte","Sports":"Esportes","Tags":"Tags","Today":"Hoje","Travels":"Turismo","Vehicles":"Veículos","VOD videos":"Vídeos sob demanda (VOD)","Watch the video on %{host}":"Assista o vídeo em %{host}","Why should I have my own PeerTube website?":"Por que eu deveria ter minha própria instância no PeerTube?","with %{activeFilters} active filter":["com %{activeFilters} filtro ativado","com %{activeFilters} filtros ativados"],"Yes":"Sim"}} \ No newline at end of file