diff -Nru minitube-1.5/CHANGES minitube-1.6/CHANGES --- minitube-1.5/CHANGES 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/CHANGES 2011-10-28 20:38:22.000000000 +0000 @@ -1,3 +1,11 @@ +1.6 - Oct 28, 2011 +- Find video parts +- Mac OS X Lion fullscreen +- Menu reorganization +- Social sharing: Twitter, Facebook, Email +- Fixed bug with very short videos not playing +- Enable seekbar on Linux only when the video is fully loaded + 1.5 - Aug 5, 2011 - Works again after YouTube changes - Drag'n'drop YouTube URLs to Minitube window diff -Nru minitube-1.5/debian/changelog minitube-1.6/debian/changelog --- minitube-1.5/debian/changelog 2011-12-04 19:11:40.000000000 +0000 +++ minitube-1.6/debian/changelog 2011-12-05 23:28:51.000000000 +0000 @@ -1,6 +1,13 @@ -minitube (1.5-2~ppa1~natty1) natty; urgency=low +minitube (1.6-0~ppa1~natty1) natty; urgency=low - * Backport to Nattybleed ppa. + * New upstream release. + * Dropped patches (no longer needed). + + -- Nicola Ferralis Mon, 05 Dec 2011 18:25:51 -0500 + +minitube (1.5-2~ppa1~lucid1) lucid; urgency=low + + * Backport to Lucidbleed ppa. -- Nicola Ferralis Sun, 04 Dec 2011 14:09:01 -0500 diff -Nru minitube-1.5/debian/patches/disable-update-check minitube-1.6/debian/patches/disable-update-check --- minitube-1.5/debian/patches/disable-update-check 2011-10-12 19:49:42.000000000 +0000 +++ minitube-1.6/debian/patches/disable-update-check 1970-01-01 00:00:00.000000000 +0000 @@ -1,16 +0,0 @@ -Description: Disable update check as it's useless for a packaged version -Author: Jakob Haufe - -diff --git a/src/SearchView.cpp b/src/SearchView.cpp -index 809537e..9ac18a8 100644 ---- minitube-1.4.1.orig/src/SearchView.cpp -+++ minitube-1.4.1/src/SearchView.cpp -@@ -180,7 +180,7 @@ SearchView::SearchView(QWidget *parent) : QWidget(parent) { - updateChecker = 0; - - #ifndef APP_MAC_STORE -- checkForUpdate(); -+ //checkForUpdate(); - #endif - - } diff -Nru minitube-1.5/debian/patches/proper-tempfiles minitube-1.6/debian/patches/proper-tempfiles --- minitube-1.5/debian/patches/proper-tempfiles 2011-10-12 22:15:58.000000000 +0000 +++ minitube-1.6/debian/patches/proper-tempfiles 1970-01-01 00:00:00.000000000 +0000 @@ -1,61 +0,0 @@ -Description: Do proper temporary file creation - Upstream is using predictable temporary file names. Fix this in Debian - for now by using QTemporaryFile. This additionally ensures removal of - temporary files upon exit. -Author: Jakob Haufe -Bug-Debian: http://bugs.debian.org/644935 - ---- minitube-1.5.orig/src/MediaView.cpp -+++ minitube-1.5/src/MediaView.cpp -@@ -127,6 +127,7 @@ MediaView::MediaView(QWidget *parent) : - connect(demoTimer, SIGNAL(timeout()), SLOT(demoMessage())); - #endif - -+ tempFile = new QTemporaryFile(this); - } - - void MediaView::initialize() { -@@ -346,21 +347,15 @@ void MediaView::gotStreamUrl(QUrl stream - - - QString tempDir = QDesktopServices::storageLocation(QDesktopServices::TempLocation); --#ifdef Q_WS_X11 -- QString tempFile = tempDir + "/minitube-" + getenv("USERNAME") + ".mp4"; --#else -- QString tempFile = tempDir + "/minitube.mp4"; --#endif -- if (QFile::exists(tempFile) && !QFile::remove(tempFile)) { -- qDebug() << "Cannot remove temp file"; -- } -+ if(tempFile->fileName().isNull()) -+ tempFile->open(); - - Video *videoCopy = video->clone(); - if (downloadItem) { - downloadItem->stop(); - delete downloadItem; - } -- downloadItem = new DownloadItem(videoCopy, streamUrl, tempFile, this); -+ downloadItem = new DownloadItem(videoCopy, streamUrl, tempFile->fileName(), this); - connect(downloadItem, SIGNAL(statusChanged()), SLOT(downloadStatusChanged())); - // connect(downloadItem, SIGNAL(progress(int)), SLOT(downloadProgress(int))); - connect(downloadItem, SIGNAL(bufferProgress(int)), loadingWidget, SLOT(bufferStatus(int))); ---- minitube-1.5.orig/src/MediaView.h -+++ minitube-1.5/src/MediaView.h -@@ -3,6 +3,7 @@ - - #include - #include -+#include - #include - #include - #include "View.h" -@@ -130,6 +131,8 @@ private: - DownloadItem *downloadItem; - // QSlider *slider; - -+ QTemporaryFile *tempFile; -+ - }; - - #endif // __MEDIAVIEW_H__ diff -Nru minitube-1.5/debian/patches/series minitube-1.6/debian/patches/series --- minitube-1.5/debian/patches/series 2011-10-12 22:13:48.000000000 +0000 +++ minitube-1.6/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 @@ -1,2 +0,0 @@ -disable-update-check -proper-tempfiles diff -Nru minitube-1.5/empty.ts minitube-1.6/empty.ts --- minitube-1.5/empty.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/empty.ts 2011-10-28 20:38:22.000000000 +0000 @@ -5,67 +5,82 @@ AboutView - + There's life outside the browser! - + Version %1 - + %1 is Free Software but its development takes precious time. - + Please <a href='%1'>donate</a> to support the continued development of %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 - + Icon designed by %1. - + Compact mode contributed by %1. - + HTTP proxy support contributed by %1. - - Translated by %1 - - - - + Released under the <a href='%1'>GNU General Public License</a> - + &Close - + About - + What you always wanted to know about %1 and never dared to ask @@ -73,55 +88,93 @@ ClearButton - + Clear + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes - + KB - + MB - + bytes/sec - + KB/sec - + MB/sec - + seconds - + minutes - + %4 %5 remaining @@ -129,27 +182,27 @@ DownloadManager - + This is just the demo version of %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. - + Continue - + Get the full version - + %n Download(s) @@ -159,27 +212,27 @@ DownloadSettings - + Change location... - + Choose the download location - + Download location changed. - + Current downloads will still go in the previous location. - + Downloading to: %1 @@ -187,8 +240,8 @@ DownloadView - - + + Downloads @@ -196,62 +249,62 @@ GlobalShortcuts - + Play - + Pause - + Play/Pause - + Stop - + Stop playing after current track - + Next track - + Previous track - + Increase volume - + Decrease volume - + Mute - + Seek forward - + Seek backward @@ -259,22 +312,22 @@ ListModel - + Searching... - + Show %1 More - + No videos - + No more videos @@ -282,7 +335,7 @@ LoadingWidget - + Error @@ -290,317 +343,372 @@ MainWindow - + &Stop - + Stop playback and go back to the search view - + S&kip - + Skip to the next video - - + + &Pause - - + + Pause playback - - + &Full Screen - + Go full screen - + &Compact mode - + Hide the playlist and the toolbar - + Open the &YouTube page - + Go to the YouTube video page and pause playback - + Copy the YouTube &link - + Copy the current video YouTube link to the clipboard - + Copy the video stream &URL - + Copy the current video stream URL to the clipboard - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove - + Remove the selected videos from the playlist - + Move &Up - + Move up the selected videos in the playlist - + Move &Down - + Move down the selected videos in the playlist - + &Clear recent searches - + Clear the search history. Cannot be undone. - + &Quit - + Ctrl+Q - + Bye - + &Website - + %1 on the Web - + Make a &donation - + Please support the continued development of %1 - + &About - + Info about %1 - + Search - + Mute volume - + Ctrl+M - - + + &Downloads - + Show details about video downloads - + &Download - + Download the current video - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application - + + &Playback + + + + &Playlist - + &Video - + + &View + + + + + &Share + + + + &Help - + Press %1 to raise the volume, %2 to lower it - - + + Opening %1 - + Do you want to exit %1 with a download in progress? - + If you close %1 now, this download will be cancelled. - + Close and cancel download - + Wait for download to finish - - Fatal error: %1 + + Leave &Full Screen - - Error: %1 + + %1 version %2 is now available. - - &Play + + Remind me later - - Resume playback + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + + Error: %1 + + + + + &Play - - Exit &Full Screen + + Resume playback - + Remaining time: %1 - + Volume at %1% - + Volume is muted - + Volume is unmuted - + Maximum video definition set to %1 - + Your privacy is now safe - + Downloads complete @@ -608,57 +716,80 @@ MediaView - + Most relevant - + Most recent - + Most viewed - + You can now paste the YouTube link into another application - + You can now paste the video stream URL into another application - + The link will be valid only for a limited time. - + This is just the demo version of %1. - + It allows you to test the application and see if it works for you. - + Continue - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version - + Downloading %1 @@ -666,7 +797,7 @@ NetworkAccess - + Network error: %1 @@ -674,52 +805,52 @@ PrettyItemDelegate - + %1 views - + %1 of %2 (%3) — %4 - + Preparing - + Failed - + Completed - + Stopped - + Stop downloading - + Show in %1 - + Open parent folder - + Restart downloading @@ -727,7 +858,7 @@ SearchLineEdit - + Search @@ -735,58 +866,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, - + Get the full version - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - + a keyword - + a channel - + to start watching videos. - + Watch - + Recent keywords - + Recent channels - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - - - - + Make yourself comfortable @@ -794,12 +920,12 @@ Video - + Cannot get video stream for %1 - + Network error: %1 for %2 diff -Nru minitube-1.5/.gitignore minitube-1.6/.gitignore --- minitube-1.5/.gitignore 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/.gitignore 1970-01-01 00:00:00.000000000 +0000 @@ -1,10 +0,0 @@ -build/ -Makefile* -minitube.pro.user -.settings/ -.DS_Store -.cproject -.project -local/ -*.swp - diff -Nru minitube-1.5/INSTALL minitube-1.6/INSTALL --- minitube-1.5/INSTALL 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/INSTALL 2011-10-28 20:38:22.000000000 +0000 @@ -18,7 +18,7 @@ ./build/target/minitube ## A word about Phonon on Linux -To be able to actually listen to music you need a working Phonon setup. +To be able to actually watch videos you need a working Phonon setup. Please don't contact me about this, ask for help on your distribution support channels. ## Installing on Linux @@ -27,7 +27,7 @@ This is for packagers. End users should not install applications in this way. ## Legal Stuff -Copyright (C) 2009-2010 Flavio Tordini +Copyright (C) Flavio Tordini This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff -Nru minitube-1.5/locale/ar.ts minitube-1.6/locale/ar.ts --- minitube-1.5/locale/ar.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/ar.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! هناك حياة خارج المتصفح! - + Version %1 النسخة %1 - + %1 is Free Software but its development takes precious time. %1 هو برنامج مجاني و لكن برمجته تستهلك وقتا ثمينا. - + Please <a href='%1'>donate</a> to support the continued development of %2. ‎الرجاء <a href='%1'>التبرع</a> لمتابعة تطوير %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 ارسل الاخطاء و الاراء الى %1 - + Icon designed by %1. صمم الايقونة %1. - + Compact mode contributed by %1. صمم الواجهة الخفيفة %1. - + HTTP proxy support contributed by %1. صمم بروكسي HTTP %1. - - Translated by %1 - تمت الترجمة بواسطة %1 - - - + Released under the <a href='%1'>GNU General Public License</a> نشر هذا البرنامج تحت رخصة <a href='%1'>GNU General Public License</a> - + &Close &اقفل - + About عن البرنامج - + What you always wanted to know about %1 and never dared to ask ما اردت معرفته عن %1 و لم تستطع ان تسأل @@ -71,55 +86,93 @@ ClearButton - + Clear مسح + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec bytes/sec - + KB/sec KB/sec - + MB/sec MB/sec - + seconds seconds - + minutes minutes - + %4 %5 remaining %4 %5 متبقي @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. هذه ليست سوى النسخة التجريبية من %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. يمكن تحميل الفيديو في أقل من %1 دقيقة بحيث يمكنك اختبار وظيفة التحميل. - + Continue متابعة - + Get the full version احصل على النسخة الكاملة - + %n Download(s) التحميل %nالتحميل %nالتحميل %nالتحميل %nالتحميل %nالتحميل %n @@ -155,27 +208,27 @@ DownloadSettings - + Change location... تغيير الموقع... - + Choose the download location اختر موقع التحميل - + Download location changed. موقع التحميل تغير. - + Current downloads will still go in the previous location. التحميل سيتم في الموقع السابق. - + Downloading to: %1 التحميل الى:%1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads التحميلات @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Play - + Pause Pause - + Play/Pause Play/Pause - + Stop Stop - + Stop playing after current track ايقاف تشغيل المقطع الحالي - + Next track المقطع التالي - + Previous track المقطع السابق - + Increase volume رفع الصوت - + Decrease volume خفض الصوت - + Mute صامت - + Seek forward امام - + Seek backward خلف @@ -255,22 +308,22 @@ ListModel - + Searching... جاري البحث... - + Show %1 More اظهر %1 المزيد - + No videos لا توجد فيديوات - + No more videos لا توجد فيديوات اخرى @@ -278,7 +331,7 @@ LoadingWidget - + Error خطأ @@ -286,317 +339,372 @@ MainWindow - + &Stop &قف - + Stop playback and go back to the search view وقف التشغيل و العودة لوضع البحث - + S&kip &القفز - + Skip to the next video القفز للفيديو التالي - - + + &Pause &ايقاف مؤقت - - + + Pause playback ايقاف التشغيل - - + &Full Screen &شاشة كاملة - + Go full screen تشغيل شاشة كاملة - + &Compact mode &الواجهة الخفيفة - + Hide the playlist and the toolbar اخفاء القائمة و شريط المهام - + Open the &YouTube page فتح &صفحة YouTube - + Go to the YouTube video page and pause playback اذهب الى صفحة فيديو YouTube و وقف التشغيل - + Copy the YouTube &link نسخ &رابط YouTube - + Copy the current video YouTube link to the clipboard نسخ رابط YouTube الى clipboard - + Copy the video stream &URL نسخ الفيديو و &الرابط - + Copy the current video stream URL to the clipboard نسخ رابط الفيديو الى clipboard - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &إزالة - + Remove the selected videos from the playlist إزالة الفيديو من القائمة - + Move &Up الرفع الى &اعلى - + Move up the selected videos in the playlist رفع المقاطع المختارة الى فوق في القائمة - + Move &Down الانزال الى &تحت - + Move down the selected videos in the playlist انزال المقاطع المختارة الى تحت في القائمة - + &Clear recent searches - + - + Clear the search history. Cannot be undone. مسح تاريخ البحث. لا يمكن استعادته. - + &Quit &الانتهاء - + Ctrl+Q Ctrl+Q - + Bye مع السلامة - + &Website &الموقع - + %1 on the Web %1 على الشبكة - + Make a &donation &التبرع - + Please support the continued development of %1 ‎الرجاء التبرع لمتابعة تطوير %1 - + &About &عن البرنامج - + Info about %1 معلومات عن %1 - + Search البحث - + Mute volume كتم الصوت - + Ctrl+M Ctrl+M - - + + &Downloads &التحميلات - + Show details about video downloads عرض تفاصيل عن تحميلات الفيديو - + &Download &التحميلات - + Download the current video تحميل الفيديو الحالي - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &البرنامج - + + &Playback + + + + &Playlist &القائمة - + &Video &الفيديو - + + &View + + + + + &Share + + + + &Help &المساعدة - + Press %1 to raise the volume, %2 to lower it اضغط %1 لرفع الصوت و %2 لخفضه - - + + Opening %1 جاري فتح %1 - + Do you want to exit %1 with a download in progress? هل تريد الخروج %1 رغم وجود تحميل? - + If you close %1 now, this download will be cancelled. عند اغلاق %1 التحميل سيلغى. - + Close and cancel download الاغلاق و الغاء التحميل - + Wait for download to finish انتظار انتهاء التحميل - - Fatal error: %1 - خطأ قاتل: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 خطأ: %1 - + &Play &التشغيل - + Resume playback اكمال التشغيل - - Exit &Full Screen - الخروج من &الشاشة الكاملة - - - + Remaining time: %1 الوقت المتبقي: %1 - + Volume at %1% %1%الصوت عند - + Volume is muted الصوت مكتوم - + Volume is unmuted الصوت غير مكتوم - + Maximum video definition set to %1 الوضوح الاقصى %1 - + Your privacy is now safe خصوصيتك امنة - + Downloads complete التحميل انتهى @@ -604,57 +712,80 @@ MediaView - + Most relevant اقرب النتائج - + Most recent الاقرب زمنا - + Most viewed الاكثر عرضا - + You can now paste the YouTube link into another application يمكنك لصق رابط YouTube في برنامج اخر - + You can now paste the video stream URL into another application يمكنك لصق رابط الفيديو في برنامج اخر - + The link will be valid only for a limited time. الرابط سيكون صالحا لمدة محدودة. - + This is just the demo version of %1. هذه ليست سوى النسخة التجريبية من %1. - + It allows you to test the application and see if it works for you. انها تتيح لك تجربة البرنامج. - + Continue متابعة - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version احصل على النسخة الكاملة - + Downloading %1 جاري تحميل %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 خطأ شبكة:%1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 مشاهدات - + %1 of %2 (%3) — %4 - + - + Preparing تهيئة - + Failed فشل - + Completed تم - + Stopped متوقف - + Stop downloading ايقاف التحميل - + Show in %1 اظهار في %1 - + Open parent folder فتح المجلد الرئيسي - + Restart downloading اعادة التحميل @@ -723,7 +854,7 @@ SearchLineEdit - + Search البحث @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, مرحبا بك في <a href='%1'>%2</a>, - + Get the full version - + - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - + - + a keyword - + - + a channel - + - + to start watching videos. - + - + Watch شاهد - + Recent keywords كلمات بحث سابقة - + Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - تم ايجاد نسخة جديدة من %1 الرجاء <a href='%2'>الترقية الى نسخة %3</a> + - + Make yourself comfortable اجعل نفسك مرتاحا @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 - + - + Network error: %1 for %2 خطأ شبكة:%1 الى %2 diff -Nru minitube-1.5/locale/bg_BG.ts minitube-1.6/locale/bg_BG.ts --- minitube-1.5/locale/bg_BG.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/bg_BG.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Има живот и извън браузера! - - - - Version %1 - Версия %1 - - - - %1 is Free Software but its development takes precious time. - %1 е безплатен софтуер, но разработването му отнема безценно време. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - Моля <a href='%1'>дарете</a> за да подкрепите бъдещите разработки, на %2. - - - - Report bugs and send in your ideas to %1 - Докладвайте за бъгове и изпращайте вашите идей на %1 - - - - Icon designed by %1. - Иконите са изработени от %1. - - - - Compact mode contributed by %1. - Компактният режим е допринесен от %1. - - - - HTTP proxy support contributed by %1. - HTTP proxy поддръжката е допринесена от %1. - - - - Translated by %1 - Преведено е от %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - Издадено е под <a href='%1'>GNU General Public License</a> - - - - &Close - &Затваряне - - - - About - Относно - - - - What you always wanted to know about %1 and never dared to ask - Какво винаги сте искали да знаете за %1 , но никога не сте посмявали да попитате - - - - ClearButton - - - Clear - Изчисти - - - - DownloadItem - - - bytes - - - - - KB - - - - - MB - - - - - bytes/sec - - - - - KB/sec - - - - - MB/sec - - - - - seconds - - - - - minutes - - - - - %4 %5 remaining - - - - - DownloadManager - - - This is just the demo version of %1. - - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - - - - - Continue - - - - - Get the full version - - - - - %n Download(s) - - - - - DownloadSettings - - - Change location... - - - - - Choose the download location - - - - - Download location changed. - - - - - Current downloads will still go in the previous location. - - - - - Downloading to: %1 - - - - - DownloadView - - - - Downloads - - - - - GlobalShortcuts - - - Play - - - - - Pause - - - - - Play/Pause - - - - - Stop - - - - - Stop playing after current track - - - - - Next track - - - - - Previous track - - - - - Increase volume - - - - - Decrease volume - - - - - Mute - - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - Търся... - - - - Show %1 More - Покажи %1 повече - - - - No videos - Няма видеа - - - - No more videos - Няма повече видеа - - - - LoadingWidget - - - Error - Грешка - - - - MainWindow - - - &Stop - &Спри - - - - Stop playback and go back to the search view - Спри изпълнението и се върни в търсачката - - - - S&kip - П&ропусни - - - - Skip to the next video - Следващо видео - - - - - &Pause - &Пауза - - - - - Pause playback - Пауза на възпроизвеждането - - - - - &Full Screen - &Цял екран - - - - Go full screen - Отвори в цял екран - - - - &Compact mode - &Компактен режим - - - - Hide the playlist and the toolbar - Скрии прейлистата и туулбара - - - - Open the &YouTube page - Отвори в &YouTube страницата - - - - Go to the YouTube video page and pause playback - Отиди в YouTube видео страницата и сложи на пауза - - - - Copy the YouTube &link - Копирай YouTube &връзката - - - - Copy the current video YouTube link to the clipboard - Постави връзка към видеото в YouTube в клипборда - - - - Copy the video stream &URL - Копирай &URL на видео излъчването - - - - Copy the current video stream URL to the clipboard - Копирай URL на гледаното видео в клипборда - - - - &Remove - &Премахни - - - - Remove the selected videos from the playlist - Премахни избраните виде от плейлистата - - - - Move &Up - Премести &нагоре - - - - Move up the selected videos in the playlist - Премести избраните видеа в плейлиста - - - - Move &Down - Премести &надолу - - - - Move down the selected videos in the playlist - Премести надолу в плейлиста избраните видеа - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - Изчисти историята на търсене. Не е обратимо. - - - - &Quit - &Изход - - - - Ctrl+Q - Ctrl+Q - - - - Bye - Чао - - - - &Website - &Уебсайт - - - - %1 on the Web - %1 в мрежата - - - - Make a &donation - Направи &дарение - - - - Please support the continued development of %1 - Моля подкрепете, бъдещите разработки на %1 - - - - &About - &Относно - - - - Info about %1 - Информация за %1 - - - - Search - Търси - - - - Mute volume - Заглуши звука - - - - Ctrl+M - Ctrl+M - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - &Апликация - - - - &Playlist - &Плейлиста - - - - &Video - &Видео - - - - &Help - &Помощ - - - - Press %1 to raise the volume, %2 to lower it - Натисни %1 за да увеличите звука, %2 да го намалите - - - - - Opening %1 - Отваряне %1 - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - Фатална грешка: %1 - - - - Error: %1 - Грешка: %1 - - - - &Play - &Възпроизвеждане - - - - Resume playback - Възстанови възпроизвеждането - - - - Exit &Full Screen - Изход от &Цял екран - - - - Remaining time: %1 - Оставащо време: %1 - - - - Volume at %1% - Звук на %1% - - - - Volume is muted - Звука е заглушен - - - - Volume is unmuted - Звука е отглушен - - - - Maximum video definition set to %1 - Максимално качество на видеото зададено на %1 - - - - Your privacy is now safe - Вашата интимност вече е обезопасена - - - - Downloads complete - - - - - MediaView - - - Most relevant - Най-уместни - - - - Most recent - Най-скорошни - - - - Most viewed - Най-гледани - - - - You can now paste the YouTube link into another application - Вече можете да вмъкнете YouTube линка в друго приложение - - - - You can now paste the video stream URL into another application - Вече можете да вмъкнете URL адреса на излъчването в друго приложение - - - - The link will be valid only for a limited time. - Линка ще е валиден само за определено време. - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - Мрежова грешка: %1 - - - - PrettyItemDelegate - - - %1 views - %1 гледания - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - - - - - Stop downloading - - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - Търси - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - Добре дошли в <a href='%1'>%2</a>, - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - Гледай - - - - Recent keywords - Скорошни ключови думи - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Нова версия на %1 е достъпна. Моля <a href='%2'>ъпдейтнете до версия %3</a> - - - - Make yourself comfortable - Отпуснете се - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - Мрежова грешка: %1 за %2 - - - \ No newline at end of file diff -Nru minitube-1.5/locale/bg.ts minitube-1.6/locale/bg.ts --- minitube-1.5/locale/bg.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/bg.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - - - - - Version %1 - - - - - %1 is Free Software but its development takes precious time. - - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - - - - - Report bugs and send in your ideas to %1 - - - - - Icon designed by %1. - - - - - Compact mode contributed by %1. - - - - - HTTP proxy support contributed by %1. - - - - - Translated by %1 - - - - - Released under the <a href='%1'>GNU General Public License</a> - - - - - &Close - - - - - About - - - - - What you always wanted to know about %1 and never dared to ask - - - - - ClearButton - - - Clear - - - - - DownloadItem - - - bytes - - - - - KB - - - - - MB - - - - - bytes/sec - - - - - KB/sec - - - - - MB/sec - - - - - seconds - - - - - minutes - - - - - %4 %5 remaining - - - - - DownloadManager - - - This is just the demo version of %1. - - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - - - - - Continue - - - - - Get the full version - - - - - %n Download(s) - - - - - DownloadSettings - - - Change location... - - - - - Choose the download location - - - - - Download location changed. - - - - - Current downloads will still go in the previous location. - - - - - Downloading to: %1 - - - - - DownloadView - - - - Downloads - - - - - GlobalShortcuts - - - Play - - - - - Pause - - - - - Play/Pause - - - - - Stop - - - - - Stop playing after current track - - - - - Next track - - - - - Previous track - - - - - Increase volume - - - - - Decrease volume - - - - - Mute - - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - - - - - Show %1 More - - - - - No videos - - - - - No more videos - - - - - LoadingWidget - - - Error - - - - - MainWindow - - - &Stop - - - - - Stop playback and go back to the search view - - - - - S&kip - - - - - Skip to the next video - - - - - - &Pause - - - - - - Pause playback - - - - - - &Full Screen - - - - - Go full screen - - - - - &Compact mode - - - - - Hide the playlist and the toolbar - - - - - Open the &YouTube page - - - - - Go to the YouTube video page and pause playback - - - - - Copy the YouTube &link - - - - - Copy the current video YouTube link to the clipboard - - - - - Copy the video stream &URL - - - - - Copy the current video stream URL to the clipboard - - - - - &Remove - - - - - Remove the selected videos from the playlist - - - - - Move &Up - - - - - Move up the selected videos in the playlist - - - - - Move &Down - - - - - Move down the selected videos in the playlist - - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - - - - - &Quit - - - - - Ctrl+Q - - - - - Bye - - - - - &Website - - - - - %1 on the Web - - - - - Make a &donation - - - - - Please support the continued development of %1 - - - - - &About - - - - - Info about %1 - - - - - Search - - - - - Mute volume - - - - - Ctrl+M - - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - - - - - &Playlist - - - - - &Video - - - - - &Help - - - - - Press %1 to raise the volume, %2 to lower it - - - - - - Opening %1 - - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - - - - - Error: %1 - - - - - &Play - - - - - Resume playback - - - - - Exit &Full Screen - - - - - Remaining time: %1 - - - - - Volume at %1% - - - - - Volume is muted - - - - - Volume is unmuted - - - - - Maximum video definition set to %1 - - - - - Your privacy is now safe - - - - - Downloads complete - - - - - MediaView - - - Most relevant - - - - - Most recent - - - - - Most viewed - - - - - You can now paste the YouTube link into another application - - - - - You can now paste the video stream URL into another application - - - - - The link will be valid only for a limited time. - - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - - - - - PrettyItemDelegate - - - %1 views - - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - - - - - Stop downloading - - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - - - - - Recent keywords - - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - - - - - Make yourself comfortable - - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - - - - \ No newline at end of file diff -Nru minitube-1.5/locale/ca_ES.ts minitube-1.6/locale/ca_ES.ts --- minitube-1.5/locale/ca_ES.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/ca_ES.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Hi ha vida fora del navegador! - + Version %1 Versió %1 - + %1 is Free Software but its development takes precious time. %1 és Software Lliure però el seu desenvolupament pren un temps preciós. - + Please <a href='%1'>donate</a> to support the continued development of %2. Siusplau <a href='%1'>dóna</a> per ajudar al desenvolupament continuat del %2. - + + You may want to try my other apps as well: + Potser també voldreu provar les meves altres aplicacions: + + + + %1, a YouTube music player + %1, un reproductor de música del YouTube + + + + %1, a music player + %1, un reproductor de música + + + + Translate %1 to your native language using %2 + Traduïu %1 al vostre idioma natal fent servir %2 + + + Report bugs and send in your ideas to %1 Informeu d'errors i envieu les vostres idees a %1 - + Icon designed by %1. Icona dissenyada per %1. - + Compact mode contributed by %1. Mode compacte aportat per %1. - + HTTP proxy support contributed by %1. Suport de servidor intermediari HTTP aportat per %1. - - Translated by %1 - Traduït per %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Alliberat sota la <a href='%1'>Llicència Pública General de GNU</a> - + &Close &Tanca - + About Quant a - + What you always wanted to know about %1 and never dared to ask El que sempre havíeu volgut saber sobre el %1 i mai us havíeu atrevit a preguntar @@ -71,55 +86,93 @@ ClearButton - + Clear Neteja + DemoStartupView + + + Please license %1 + Siusplau llicencia el %1 + + + + This demo has expired. + Aquesta demo ha expirat. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + La versió completa permet baixar vídeos de més de %1 minuts i veure vídeos sense interrupcions. + + + + This demo will expire in %1 days. + Aquesta demo caduca en %1 dies. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Comprant la versió completa, també donareu suport al dur treball que he posat en la creació del %1. + + + + Use Demo + Utilitza la demo + + + + Get the full version + Aconsegueix la versió completa + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec bytes/seg - + KB/sec KB/seg - + MB/sec MB/seg - + seconds segons - + minutes minuts - + %4 %5 remaining %4 %5 restant @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Aquesta només és la versió de demostració del %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Només pot baixar vídeos de menys de %1 minuts per tal que en pugui provar aquesta funció. - + Continue Continua - + Get the full version Aconsegueix la versió completa - + %n Download(s) %n Baixada%n Baixades @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Canvia la ubicació... - + Choose the download location Escull la ubicació de les baixades - + Download location changed. Ubicació de baixades canviada. - + Current downloads will still go in the previous location. Les baixades actuals encara aniran a la ubicació prèvia. - + Downloading to: %1 Baixant a: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Baixades @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Reprodueix - + Pause Pausa - + Play/Pause Reprodueix/Pausa - + Stop Atura - + Stop playing after current track Atura en acabar la peça actual - + Next track Peça següent - + Previous track Peça prèvia - + Increase volume Augmenta el volum - + Decrease volume Disminuex el volum - + Mute Silenci - + Seek forward Cerca endavant - + Seek backward Cerca enrere @@ -255,22 +308,22 @@ ListModel - + Searching... Buscant... - + Show %1 More Mostra %1 Més - + No videos Cap vídeo - + No more videos Cap més vídeo @@ -278,7 +331,7 @@ LoadingWidget - + Error Error @@ -286,317 +339,372 @@ MainWindow - + &Stop &Atura - + Stop playback and go back to the search view Atura la reproducció i torna a la vista de búsqueda - + S&kip &Salta - + Skip to the next video Salta al vídeo següent - - + + &Pause &Pausa - - + + Pause playback Pausa la reproducció - - + &Full Screen Pantalla &Completa - + Go full screen Passa a pantalla completa - + &Compact mode &Mode compacte - + Hide the playlist and the toolbar Amaga la llista de reproducció i la barra d'eines - + Open the &YouTube page Obre la pàgina de &YouTube - + Go to the YouTube video page and pause playback Ves a la pàgina del vídeo de YouTube i pausa la reproducció - + Copy the YouTube &link Copia l'&enllaç de YouTube - + Copy the current video YouTube link to the clipboard Copia l'enllaç del vídeo actual de YouTube al porta-retalls - + Copy the video stream &URL Copia el &URL del flux de vídeo - + Copy the current video stream URL to the clipboard Copia el URL del flux de vídeo actual al porta-retalls - + + Find video &parts + Troba &parts del vídeo + + + + Find other video parts hopefully in the right order + Troba altres parts del vídeo, amb sort en l'ordre correcte + + + &Remove &Elimina - + Remove the selected videos from the playlist Elimina els vídeos seleccionats de la llista de reproducció - + Move &Up Mou &Amunt - + Move up the selected videos in the playlist Mou amunt en la llista de reproducció els vídeos seleccionats - + Move &Down Mou A&vall - + Move down the selected videos in the playlist Mou avall en la llista de reproducció els vídeos seleccionats - + &Clear recent searches &Neteja búsquedes recents - + Clear the search history. Cannot be undone. Neteja l'historial de búsquedes. No es pot desfer. - + &Quit &Surt - + Ctrl+Q Ctrl+Q - + Bye Adéu - + &Website Pàgina &Web - + %1 on the Web %1 en la Web - + Make a &donation Fer una &donació - + Please support the continued development of %1 Siusplau recolza el desenvolupament continuat del %1 - + &About &Quant a - + Info about %1 Info sobre %1 - + Search Busca - + Mute volume Silencia volum - + Ctrl+M Ctrl+M - - + + &Downloads &Baixades - + Show details about video downloads Mostra detalls de les descàrregues de vídeo - + &Download &Baixa - + Download the current video Baixa el vídeo actual - + + Share the current video using %1 + Comparteix el vídeo actual fent servir %1 + + + + &Email + &Email + + + + Email + Correu electrònic + + + &Application &Aplicació - + + &Playback + &Reproducció + + + &Playlist &Llista de reproducció - + &Video &Vídeo - + + &View + &Vista + + + + &Share + &Compartir + + + &Help A&juda - + Press %1 to raise the volume, %2 to lower it Prem %1 per pujar el volum, %2 per baixar-lo - - + + Opening %1 Obrint %1 - + Do you want to exit %1 with a download in progress? Vol abandonar el %1 amb una baixada en curs? - + If you close %1 now, this download will be cancelled. Si tanca el %1 ara, aquesta baixada es cancel·larà. - + Close and cancel download Tanca i cancel·la la baixada - + Wait for download to finish Espera a acabar la baixada - - Fatal error: %1 - Error fatal: %1 + + Leave &Full Screen + Abandona la Pantalla &Completa + + + + %1 version %2 is now available. + %1 versió %2 ja està disponible. + + + + Remind me later + Recordar-m'ho més tard - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + Per obtenir la versió actualitzada, descarregueu el %1 de nou des de l'enllaç que vau rebre per correu electrònic i torneu-lo a instal·lar. + + + + Update + Actualitza + + + Error: %1 Error: %1 - + &Play &Reprodueix - + Resume playback Continua la reproducció - - Exit &Full Screen - Abandona la Pantalla &Completa - - - + Remaining time: %1 Temps restant: %1 - + Volume at %1% Volum al %1% - + Volume is muted Volum silenciat - + Volume is unmuted Volum de-silenciat - + Maximum video definition set to %1 Resolució màxima de vídeo fixada a %1 - + Your privacy is now safe La seva privacitat està protegida - + Downloads complete Baixades completes @@ -604,57 +712,80 @@ MediaView - + Most relevant Més rellevant - + Most recent Més recent - + Most viewed Més vist - + You can now paste the YouTube link into another application Ja pot enganxar l'enllaç de YouTube en una altra aplicació - + You can now paste the video stream URL into another application Ja pot enganxar el URL del flux de vídeo en una altra aplicació - + The link will be valid only for a limited time. L'enllaç només serà vàlid durant un temps limitat. - + This is just the demo version of %1. Aquesta només és la versió de demostració del %1. - + It allows you to test the application and see if it works for you. Li permet probar l'aplicació i veure si li va bé. - + Continue Continua - + + of + Used in video parts, as in '2 of 3' + de + + + + part + This is for video parts, as in 'Cool video - part 1' + part + + + + episode + This is for video parts, as in 'Cool series - episode 1' + episodi + + + + Sent from %1 + Enviat des de %1 + + + Get the full version Aconsegueix la versió completa - + Downloading %1 Baixant %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Error de xarxa: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 visualitzacions - + %1 of %2 (%3) — %4 %1 de %2 (%3) — %4 - + Preparing Preparant - + Failed Fallit - + Completed Completat - + Stopped Aturat - + Stop downloading Atura la baixada - + Show in %1 Mostra en %1 - + Open parent folder Obre el directori superior - + Restart downloading Recomença la baixada @@ -723,7 +854,7 @@ SearchLineEdit - + Search Busca @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, - Benvingut al <a href='%1'>%2</a>, + Benvinguts al <a href='%1'>%2</a>, - + Get the full version Aconsegueix la versió completa - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Introdueix - + a keyword una paraula - + a channel un canal - + to start watching videos. per comencar a veure vídeos. - + Watch Veure - + Recent keywords Búsquedes recents - + Recent channels Canals recents - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Disponible una nova versió del %1. Siusplau <a href='%2'>actualitza a la versió %3</a> - - - + Make yourself comfortable Posi's còmode @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 No es pot obtenir flux de vídeo per %1 - + Network error: %1 for %2 Error de xarxa: %1 per %2 diff -Nru minitube-1.5/locale/ca.ts minitube-1.6/locale/ca.ts --- minitube-1.5/locale/ca.ts 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/locale/ca.ts 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,929 @@ + +UTF-8 + + AboutView + + + There's life outside the browser! + Hi ha vida fora del navegador! + + + + Version %1 + Versió %1 + + + + %1 is Free Software but its development takes precious time. + %1 és Software Lliure però el seu desenvolupament pren un temps preciós. + + + + Please <a href='%1'>donate</a> to support the continued development of %2. + Siusplau <a href='%1'>dóna</a> per ajudar al desenvolupament continuat del %2. + + + + You may want to try my other apps as well: + És possible que també vulgueu provar altres aplicacions meves: + + + + %1, a YouTube music player + %1, un reproductor de música de YouTube + + + + %1, a music player + %1, un reproductor de música + + + + Translate %1 to your native language using %2 + Traduïu el %1 al vostre idioma natal utilitzant %2 + + + + Report bugs and send in your ideas to %1 + Informeu d'errors i envieu les vostres idees a %1 + + + + Icon designed by %1. + Icona dissenyada per %1. + + + + Compact mode contributed by %1. + Mode compacte aportat per %1. + + + + HTTP proxy support contributed by %1. + Suport de servidor intermediari HTTP aportat per %1. + + + + Released under the <a href='%1'>GNU General Public License</a> + Alliberat sota la <a href='%1'>Llicència Pública General de GNU</a> + + + + &Close + &Tanca + + + + About + Quant a + + + + What you always wanted to know about %1 and never dared to ask + El que sempre havíeu volgut saber sobre el %1 i mai us havíeu atrevit a preguntar + + + + ClearButton + + + Clear + Neteja + + + + DemoStartupView + + + Please license %1 + Si us plau, llicencia el %1 + + + + This demo has expired. + Aquesta demo ha expirat + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + La versió completa permet descarregar vídeos de més de %1 minuts i veure els vídeos sense interrupcions. + + + + This demo will expire in %1 days. + Aquesta demo expira en %1 dies. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Comprant la versió completa, també donareu suport al dur treball que he posat en la creació del %1. + + + + Use Demo + Utilitza la demo + + + + Get the full version + Aconsegueix la versió completa + + + + DownloadItem + + + bytes + bytes + + + + KB + KB + + + + MB + MB + + + + bytes/sec + bytes/seg + + + + KB/sec + KB/seg + + + + MB/sec + MB/seg + + + + seconds + segons + + + + minutes + minuts + + + + %4 %5 remaining + %4 %5 restant + + + + DownloadManager + + + This is just the demo version of %1. + Aquesta només és la versió de demostració del %1. + + + + It can only download videos shorter than %1 minutes so you can test the download functionality. + Només pot baixar vídeos de menys de %1 minuts per tal que en pugui provar aquesta funció. + + + + Continue + Continua + + + + Get the full version + Aconsegueix la versió completa + + + + %n Download(s) + + + + + DownloadSettings + + + Change location... + Canvia la ubicació... + + + + Choose the download location + Escull la ubicació de les baixades + + + + Download location changed. + Ubicació de baixades canviada. + + + + Current downloads will still go in the previous location. + Les baixades actuals encara aniran a la ubicació prèvia. + + + + Downloading to: %1 + Baixant a: %1 + + + + DownloadView + + + + Downloads + Baixades + + + + GlobalShortcuts + + + Play + Reprodueix + + + + Pause + Pausa + + + + Play/Pause + Reprodueix/Pausa + + + + Stop + Atura + + + + Stop playing after current track + Atura en acabar la peça actual + + + + Next track + Peça següent + + + + Previous track + Peça prèvia + + + + Increase volume + Augmenta el volum + + + + Decrease volume + Disminuex el volum + + + + Mute + Silenci + + + + Seek forward + Cerca endavant + + + + Seek backward + Cerca enrere + + + + ListModel + + + Searching... + Buscant... + + + + Show %1 More + Mostra %1 Més + + + + No videos + Cap vídeo + + + + No more videos + Cap més vídeo + + + + LoadingWidget + + + Error + Error + + + + MainWindow + + + &Stop + &Atura + + + + Stop playback and go back to the search view + Atura la reproducció i torna a la vista de búsqueda + + + + S&kip + &Salta + + + + Skip to the next video + Salta al vídeo següent + + + + + &Pause + &Pausa + + + + + Pause playback + Pausa la reproducció + + + + &Full Screen + Pantalla &Completa + + + + Go full screen + Passa a pantalla completa + + + + &Compact mode + &Mode compacte + + + + Hide the playlist and the toolbar + Amaga la llista de reproducció i la barra d'eines + + + + Open the &YouTube page + Obre la pàgina de &YouTube + + + + Go to the YouTube video page and pause playback + Ves a la pàgina del vídeo de YouTube i pausa la reproducció + + + + Copy the YouTube &link + Copia l'&enllaç de YouTube + + + + Copy the current video YouTube link to the clipboard + Copia l'enllaç del vídeo actual de YouTube al porta-retalls + + + + Copy the video stream &URL + Copia el &URL del flux de vídeo + + + + Copy the current video stream URL to the clipboard + Copia el URL del flux de vídeo actual al porta-retalls + + + + Find video &parts + Troba &parts del vídeo + + + + Find other video parts hopefully in the right order + Troba altres parts del vídeo, amb sort en l'ordre correcte + + + + &Remove + &Elimina + + + + Remove the selected videos from the playlist + Elimina els vídeos seleccionats de la llista de reproducció + + + + Move &Up + Mou &Amunt + + + + Move up the selected videos in the playlist + Mou amunt els vídeos seleccionats en la llista de reproducció + + + + Move &Down + Mou A&vall + + + + Move down the selected videos in the playlist + Mou avall els vídeos seleccionats en la llista de reproducció + + + + &Clear recent searches + &Neteja búsquedes recents + + + + Clear the search history. Cannot be undone. + Neteja l'historial de búsquedes. No es pot desfer. + + + + &Quit + &Surt + + + + Ctrl+Q + Ctrl+Q + + + + Bye + Adéu + + + + &Website + Pàgina &Web + + + + %1 on the Web + %1 en la Web + + + + Make a &donation + Fer una &donació + + + + Please support the continued development of %1 + Siusplau ajuda al desenvolupament continuat del %1 + + + + &About + &Quant a + + + + Info about %1 + Info sobre %1 + + + + Search + Busca + + + + Mute volume + Silencia volum + + + + Ctrl+M + Ctrl+M + + + + + &Downloads + &Baixades + + + + Show details about video downloads + Mostra detalls de les descàrregues de vídeo + + + + &Download + &Baixa + + + + Download the current video + Baixa el vídeo actual + + + + Share the current video using %1 + Comparteix el vídeo actual fent servir %1 + + + + &Email + &Email + + + + Email + Correu electrònic + + + + &Application + &Aplicació + + + + &Playback + &Reproducció + + + + &Playlist + &Llista de reproducció + + + + &Video + &Vídeo + + + + &View + &Vista + + + + &Share + &Compartir + + + + &Help + A&juda + + + + Press %1 to raise the volume, %2 to lower it + Prem %1 per pujar el volum, %2 per baixar-lo + + + + + Opening %1 + Obrint %1 + + + + Do you want to exit %1 with a download in progress? + Vol abandonar el %1 amb una baixada en curs? + + + + If you close %1 now, this download will be cancelled. + Si tanca el %1 ara, aquesta baixada es cancel·larà. + + + + Close and cancel download + Tanca i cancel·la la baixada + + + + Wait for download to finish + Espera a acabar la baixada + + + + Leave &Full Screen + Abandona la Pantalla &Completa + + + + %1 version %2 is now available. + %1 versió %2 ja està disponible. + + + + Remind me later + Recorda-m'ho més tard + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + Per obtenir la versió actualitzada, descarregueu el %1 de nou des de l'enllaç que vau rebre per correu electrònic i torneu-lo a instal·lar. + + + + Update + Actualitza + + + + Error: %1 + Error: %1 + + + + &Play + &Reprodueix + + + + Resume playback + Continua la reproducció + + + + Remaining time: %1 + Temps restant: %1 + + + + Volume at %1% + Volum al %1% + + + + Volume is muted + Volum silenciat + + + + Volume is unmuted + Volum de-silenciat + + + + Maximum video definition set to %1 + Resolució màxima de vídeo fixada a %1 + + + + Your privacy is now safe + La seva privacitat ara és segura + + + + Downloads complete + Baixades completes + + + + MediaView + + + Most relevant + Més rellevant + + + + Most recent + Més recent + + + + Most viewed + Més vist + + + + You can now paste the YouTube link into another application + Ja pot enganxar l'enllaç de YouTube en una altra aplicació + + + + You can now paste the video stream URL into another application + Ja pot enganxar el URL del flux de vídeo en una altra aplicació + + + + The link will be valid only for a limited time. + L'enllaç només serà vàlid durant un temps limitat. + + + + This is just the demo version of %1. + Aquesta només és la versió de demostració del %1. + + + + It allows you to test the application and see if it works for you. + Li permet probar l'aplicació i veure si li va bé. + + + + Continue + Continua + + + + of + Used in video parts, as in '2 of 3' + de + + + + part + This is for video parts, as in 'Cool video - part 1' + part + + + + episode + This is for video parts, as in 'Cool series - episode 1' + episodi + + + + Sent from %1 + Enviat des de %1 + + + + Get the full version + Aconsegueix la versió completa + + + + Downloading %1 + Baixant %1 + + + + NetworkAccess + + + Network error: %1 + Error de xarxa: %1 + + + + PrettyItemDelegate + + + %1 views + %1 visualitzacions + + + + %1 of %2 (%3) — %4 + %1 de %2 (%3) — %4 + + + + Preparing + Preparant + + + + Failed + Fallit + + + + Completed + Completat + + + + Stopped + Aturat + + + + Stop downloading + Atura la baixada + + + + Show in %1 + Mostra en %1 + + + + Open parent folder + Obre el directori superior + + + + Restart downloading + Recomença la baixada + + + + SearchLineEdit + + + Search + Busca + + + + SearchView + + + Welcome to <a href='%1'>%2</a>, + Benvinguts al <a href='%1'>%2</a>, + + + + Get the full version + Aconsegueix la versió completa + + + + Enter + "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" + Introdueix + + + + a keyword + una paraula + + + + a channel + un canal + + + + to start watching videos. + per comencar a veure vídeos. + + + + Watch + Veure + + + + Recent keywords + Búsquedes recents + + + + Recent channels + Canals recents + + + + Make yourself comfortable + Posi's còmode + + + + Video + + + Cannot get video stream for %1 + No es pot obtenir flux de vídeo per %1 + + + + Network error: %1 for %2 + Error de xarxa: %1 per %2 + + + \ No newline at end of file diff -Nru minitube-1.5/locale/cs_CZ.ts minitube-1.6/locale/cs_CZ.ts --- minitube-1.5/locale/cs_CZ.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/cs_CZ.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Život existuje i mimo prohlížeč! - + Version %1 Verze %1 - + %1 is Free Software but its development takes precious time. %1 je svobodný software, ale jeho vývoj stojí drahocenný čas. - + Please <a href='%1'>donate</a> to support the continued development of %2. Prosím <a href='%1'>přispějte</a> na další vývoj %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Hlaste chyby a posílejte své nápady na %1 - + Icon designed by %1. Autor ikony: %1. - + Compact mode contributed by %1. Autor kompaktního módu: %1. - + HTTP proxy support contributed by %1. Autor podpory HTTP proxy: %1. - - Translated by %1 - Přeložili: %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Vydáno pod <a href='%1'>licencí GNU General Public License</a> - + &Close &Zavřít - + About O aplikaci - + What you always wanted to know about %1 and never dared to ask Co jste vždy chtěli vědět o aplikaci %1 ale nikdy jste se neodvážili zeptat @@ -71,55 +86,93 @@ ClearButton - + Clear Odstranit vše + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes bajtů - + KB KB - + MB MB - + bytes/sec bajtů/sec - + KB/sec KB - + MB/sec MB/se - + seconds sekund - + minutes minut - + %4 %5 remaining %4 %5 zbývá @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Toto je pouze demoverze %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Umí stahovat pouze videa délky do %1 minut, abyste mohli funkci stahování vyzkoušet - + Continue Pokračovat - + Get the full version Získat plnou verzi - + %n Download(s) %n stahování%n stahování%n stahování @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Změnit složku pro stahování... - + Choose the download location Vyberte složku, do které se bude stahovat - + Download location changed. Nastavení složky pro stahování bylo změněno. - + Current downloads will still go in the previous location. Probíhající stahování budou stále pokračovat v ukládání do dříve nastaveného adresáře - + Downloading to: %1 Stahováno do: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Stahování @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Přehrát - + Pause Pozastavit - + Play/Pause Pustit/Pozastavit - + Stop Zastavit - + Stop playing after current track Zastavit přehrávání po dokončení nyní přehrávaného videa - + Next track Další video - + Previous track Předchozí video - + Increase volume Zvýšit hlasitost - + Decrease volume Snížit hlasitost - + Mute Ztlumit hlasitost - + Seek forward Rychle vpřed - + Seek backward Rychle vzad @@ -255,22 +308,22 @@ ListModel - + Searching... Hledám... - + Show %1 More Zobrazit dalších %1 - + No videos Žádná videa - + No more videos Žádná další videa @@ -278,7 +331,7 @@ LoadingWidget - + Error Chyba @@ -286,317 +339,372 @@ MainWindow - + &Stop &Stop - + Stop playback and go back to the search view Zastaví přehrávání a vrátí se zpět na vyhledávání - + S&kip Př&eskočit - + Skip to the next video Přeskočí na další video - - + + &Pause &Pauza - - + + Pause playback Pozastaví přehrávání - - + &Full Screen &Celá obrazovka - + Go full screen Přepne na celou obrazovku - + &Compact mode &Kompaktní mód - + Hide the playlist and the toolbar Skryje playlist a toolbar - + Open the &YouTube page Otevřít stránku &YouTube - + Go to the YouTube video page and pause playback Otevře video na webu YouTube a pozastaví přehrávání - + Copy the YouTube &link Zkopírovat &odkaz na YouTube - + Copy the current video YouTube link to the clipboard Zkopíruje adresu videa na YouTube do schránky - + Copy the video stream &URL Zkopírovat adresu &video streamu - + Copy the current video stream URL to the clipboard Zkopíruje do schránky adresu video streamu - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Odstranit - + Remove the selected videos from the playlist Odstraní vybraná videa z playlistu - + Move &Up &Nahoru - + Move up the selected videos in the playlist Posune vybraná videa výš v playlistu - + Move &Down &Dolů - + Move down the selected videos in the playlist Posune vybraná videa níž v playlistu - + &Clear recent searches - + - + Clear the search history. Cannot be undone. Vyprázdní historii vyhledávání. Akci nelze vrátit. - + &Quit &Zavřít - + Ctrl+Q Ctrl+Q - + Bye Sbohem - + &Website &Homepage - + %1 on the Web %1 na Webu - + Make a &donation &Podpořit - + Please support the continued development of %1 Prosím přispějte na další vývoj aplikace %1 - + &About &O aplikaci - + Info about %1 Info o aplikaci %1 - + Search Hledat - + Mute volume Ztlumit - + Ctrl+M Ctrl+M - - + + &Downloads &Stahování - + Show details about video downloads Zobrazit podrobnosti o stahování videí - + &Download &Stáhnout - + Download the current video Stáhnout přávě zobrazené video - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Aplikace - + + &Playback + + + + &Playlist &Playlist - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Nápověda - + Press %1 to raise the volume, %2 to lower it Stiskněte %1 pro zvýšení hlasitosti; %2 pro snížení - - + + Opening %1 Otevírám %1 - + Do you want to exit %1 with a download in progress? Chcete ukončit %1, přestože ještě probíhá stahování? - + If you close %1 now, this download will be cancelled. Jestli nyní ukončíte %1, bude nedokončené stahování přerušeno - + Close and cancel download Přerušit stahování a ukončit aplikaci - + Wait for download to finish Počkat na dokončení stahování - - Fatal error: %1 - Chyba: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Chyba: %1 - + &Play &Play - + Resume playback Pokračovat v přehrávání - - Exit &Full Screen - Vypnout &fullscreen - - - + Remaining time: %1 Zbývající čas: %1 - + Volume at %1% Hlasitost na %1% - + Volume is muted Zvuk je ztlumen - + Volume is unmuted Zvuk je zapnut - + Maximum video definition set to %1 Maximální rozlišení videa je %1 - + Your privacy is now safe Vaše soukromí je nyní v bezpečí - + Downloads complete Všechna stahování byla dokončena @@ -604,57 +712,80 @@ MediaView - + Most relevant Nalezená videa - + Most recent Nejnovější - + Most viewed Nejsledovanější - + You can now paste the YouTube link into another application Nyní můžete vložit odkaz na video na YouTube do jiného programu - + You can now paste the video stream URL into another application Nyní můžete vložit odkaz na video stream do jiné aplikace - + The link will be valid only for a limited time. Tento odkaz platí jen po omezenou dobu. - + This is just the demo version of %1. Toto je %1 -- demoverze. - + It allows you to test the application and see if it works for you. Umožňuje vyzkoušet aplikaci, abyste ověřili, jestli pro vás funguje. - + Continue Pokračovat - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Stáhnout plnou verzi - + Downloading %1 Je stahováno %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Chyba připojení: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views Shlédnuto %1x - + %1 of %2 (%3) — %4 - + - + Preparing Připravuje se - + Failed Selhalo - + Completed Dokončeno - + Stopped Zastaveno - + Stop downloading Zastavit stahování - + Show in %1 Ukázat v %1 - + Open parent folder Otevřít příslušný adresář - + Restart downloading Začít stahovat znova @@ -723,7 +854,7 @@ SearchLineEdit - + Search Hledat @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Vítejte v <a href='%1'>%2</a> - + Get the full version - + - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - + - + a keyword - + - + a channel - + - + to start watching videos. - + - + Watch Sledovat - + Recent keywords Poslední klíčová slova - + Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Nová verze aplikace %1 je dostupná. Prosím <a href='%2'>aktualizujte na verzi %3</a> + - + Make yourself comfortable Udělejte si pohodlí @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 - + - + Network error: %1 for %2 Chyba přípojení: %1 pro %2 diff -Nru minitube-1.5/locale/da.ts minitube-1.6/locale/da.ts --- minitube-1.5/locale/da.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/da.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Der findes liv udenfor browseren! - + Version %1 Version %1 - + %1 is Free Software but its development takes precious time. %1 er fri software, men udviklingen tager værdifuld tid. - + Please <a href='%1'>donate</a> to support the continued development of %2. Venligst <a href='%1'>doner</a> for at støtte den forsatte udvikling af %2. - + + You may want to try my other apps as well: + Du ønsker måske også at prøve mine andre apps: + + + + %1, a YouTube music player + %1, en YouTube-musikafspiller + + + + %1, a music player + %1, en musikafspiller + + + + Translate %1 to your native language using %2 + Oversæt %1 til din modersmål ved hjælp af %2 + + + Report bugs and send in your ideas to %1 Reporter fejl og send dine idéer til %1 - + Icon designed by %1. Ikon designet af %1. - + Compact mode contributed by %1. Kompakt tilstand bidraget af %1. - + HTTP proxy support contributed by %1. HTTP proxy-understøttelse bidraget af %1. - - Translated by %1 - Oversat af %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Frigivet under <a href='%1'>GNU General Public License</a> - + &Close &Luk - + About Om - + What you always wanted to know about %1 and never dared to ask Hvad du altid har ønsket at vide om %1 og aldrig turde spørge om @@ -71,55 +86,93 @@ ClearButton - + Clear Fjern + DemoStartupView + + + Please license %1 + Venligst licens %1 + + + + This demo has expired. + Denne demo er udløbet. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + Den fulde version giver dig mulighed for at downloade videoer længere end %1 minutter og for at se videoer uden afbrydelser. + + + + This demo will expire in %1 days. + Denne demo vil udløbe om %1 dage. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Ved at købe den fulde version, vil du også støtte det hårde arbejde, jeg sætter i at udvikle %1. + + + + Use Demo + Benyt demo + + + + Get the full version + Hent den fulde version + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec bytes/sek - + KB/sec KB/sek - + MB/sec MB/sek - + seconds sekunder - + minutes minutter - + %4 %5 remaining %4 %5 mangler @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Dette er kun demoversionen af %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Det kan kun hente videoer kortere end %1 minut, så du kan teste downloadfunktionaliteten. - + Continue Forsæt - + Get the full version Hent den fulde version - + %n Download(s) %n Download(s)%n Download(s) @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Skift placering... - + Choose the download location Vælg placering til downloads - + Download location changed. Downloadplacering ændret. - + Current downloads will still go in the previous location. Nuværende downloads vil stadig blive glemt i forrige placering. - + Downloading to: %1 Downloader til: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Downloads @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Afspil - + Pause Pause - + Play/Pause Afspil/Pause - + Stop Stop - + Stop playing after current track Stop afspilning efter det aktuelle spor - + Next track Næste spor - + Previous track Forrige spor - + Increase volume Skru op - + Decrease volume Skru ned - + Mute Slå lyden fra - + Seek forward Søg fremad - + Seek backward Søg baglæns @@ -255,22 +308,22 @@ ListModel - + Searching... Søger... - + Show %1 More Vis %1 Mere - + No videos Ingen videoer - + No more videos Ikke flere videoer @@ -278,7 +331,7 @@ LoadingWidget - + Error Fejl @@ -286,317 +339,372 @@ MainWindow - + &Stop &Stop - + Stop playback and go back to the search view Stop afspilning og gå tilbage til søgeoversigt - + S&kip S&pring over - + Skip to the next video Spring til næste video - - + + &Pause &Pause - - + + Pause playback Pause afspilning - - + &Full Screen &Fuldskærm - + Go full screen Vis i fuldskærm - + &Compact mode &Kompakt tilstand - + Hide the playlist and the toolbar Skjul afspilningslisten og værktøjslinjen - + Open the &YouTube page Åbn &YouTube-siden - + Go to the YouTube video page and pause playback Gå til YouTube-videosiden og pause afspilningen - + Copy the YouTube &link Kopier YouTube &linket - + Copy the current video YouTube link to the clipboard Kopier det aktuelle YouTube-videolink til udklipsholderen - + Copy the video stream &URL Kopier videostrøm &Adresse - + Copy the current video stream URL to the clipboard Kopier adressen for den aktuelle videostrøm til udklipsholderen - + + Find video &parts + Find videodele + + + + Find other video parts hopefully in the right order + Find andre videodele forhåbentlig i den rigtige rækkefølge + + + &Remove &Fjern - + Remove the selected videos from the playlist Fjern de valgte videoer fra afspilningslisten - + Move &Up Flyt &Op - + Move up the selected videos in the playlist Flyt de valgte videoer i afspilningslisten op - + Move &Down Flyt &Ned - + Move down the selected videos in the playlist Flyt de valgte videoer i afspilningslisten ned - + &Clear recent searches &Slet seneste søgninger - + Clear the search history. Cannot be undone. Ryd søgeoversigt. Kan ikke fortrydes. - + &Quit &Afslut - + Ctrl+Q Ctrl + Q - + Bye Farvel - + &Website &Hjemmeside - + %1 on the Web %1 på nettet - + Make a &donation Lav en &donation - + Please support the continued development of %1 Støt den forsatte udvikling af %1 - + &About &Om - + Info about %1 Info om %1 - + Search Søg - + Mute volume Slå lyden fra - + Ctrl+M Ctrl + M - - + + &Downloads &Downloads - + Show details about video downloads Vis deltaljer om video downloads - + &Download &Download - + Download the current video Download den aktuelle video - + + Share the current video using %1 + Del den aktuelle video ved hjælp af %1 + + + + &Email + &amp; E-mail + + + + Email + E-mail + + + &Application &Program - + + &Playback + &Afspil + + + &Playlist &Afspilningsliste - + &Video &Video - + + &View + &Vis + + + + &Share + &Del + + + &Help &Hjælp - + Press %1 to raise the volume, %2 to lower it Tryk %1 for at skrue op for lyden og %2 for at skrue ned - - + + Opening %1 Åbner %1 - + Do you want to exit %1 with a download in progress? Vil du afslutte %1 selvom et download er i gang? - + If you close %1 now, this download will be cancelled. Hvis du lukker %1 nu vil dette download blive annulleret. - + Close and cancel download Luk og annuller download - + Wait for download to finish Vent til download er færdig - - Fatal error: %1 - Alvorlig fejl: %1 + + Leave &Full Screen + Forlad &Fuld skærm + + + + %1 version %2 is now available. + %1 version %2 er nu tilgængelig. + + + + Remind me later + Påmind mig senere - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + For at få den opdaterede version, kan du downloade %1 igen fra det link du har modtaget via e-mail og geninstallere. + + + + Update + Opdatér + + + Error: %1 Fejl: %1 - + &Play &Afspil - + Resume playback Genoptag afspilning - - Exit &Full Screen - Forlad &Fuldskærm - - - + Remaining time: %1 Tilbageværende tid: %1 - + Volume at %1% Lydniveau på %1% - + Volume is muted Lyden er slået fra - + Volume is unmuted Lyden er slået til - + Maximum video definition set to %1 Maksimal videoopløsning sat til %1 - + Your privacy is now safe Dit privatliv er nu sikret - + Downloads complete Downloads færdig @@ -604,57 +712,80 @@ MediaView - + Most relevant Mest relevante - + Most recent Senest tilføjede - + Most viewed Mest sete - + You can now paste the YouTube link into another application Du kan nu indsætte YouTube-linket i et andet program - + You can now paste the video stream URL into another application Du kan nu indsætte adressen til videostrømmen i et andet program - + The link will be valid only for a limited time. Linket vil kun være gyldigt i en begrænset periode. - + This is just the demo version of %1. Dette er kun demoversionen af %1. - + It allows you to test the application and see if it works for you. Det giver dig mulighed for at teste programmet og se om det virker for dig. - + Continue Forsæt - + + of + Used in video parts, as in '2 of 3' + af + + + + part + This is for video parts, as in 'Cool video - part 1' + del + + + + episode + This is for video parts, as in 'Cool series - episode 1' + episode + + + + Sent from %1 + Sendt fra %1 + + + Get the full version Hent den fulde version - + Downloading %1 Downloader %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Netværksfejl %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 visninger - + %1 of %2 (%3) — %4 %1 af %2 (%3) — %4 - + Preparing Forbereder - + Failed Fejlede - + Completed Fuldført - + Stopped Afbrudt - + Stop downloading Afbryd download - + Show in %1 Vis i %1 - + Open parent folder Åbn overordnet mappe - + Restart downloading Genstart download @@ -723,7 +854,7 @@ SearchLineEdit - + Search Søg @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Velkommen til <a href='%1'>%2</a>, - + Get the full version Hent den fulde version - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Indtast - + a keyword et nøgleord - + a channel en kanal - + to start watching videos. for at begynde at se video. - + Watch Afspil - + Recent keywords Seneste nøgleord - + Recent channels Nyeste kanaler - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - En ny version af %1 er tilgængelig. Venligst <a href='%2'>opdater til version %3</a> - - - + Make yourself comfortable Sæt dig godt til rette @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Kan ikke hente videostrøm for %1 - + Network error: %1 for %2 Netværksfejl: %1 for %2 diff -Nru minitube-1.5/locale/de_DE.ts minitube-1.6/locale/de_DE.ts --- minitube-1.5/locale/de_DE.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/de_DE.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Es gibt ein Leben außerhalb des Browsers! - + Version %1 Version %1 - + %1 is Free Software but its development takes precious time. %1 ist freie Software, aber die Entwicklung kostet wertvolle Zeit. - + Please <a href='%1'>donate</a> to support the continued development of %2. Bitte <a href='%1'>spende</a>, um die ständige Entwicklung von %2 zu unterstützen. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Bitte berichte Fehler und sende Deine Ideen an %1 - + Icon designed by %1. Symbol-Entwurf durch %1. - + Compact mode contributed by %1. Kompakt-Modus beigetragen von %1. - + HTTP proxy support contributed by %1. HTTP Proxy-Unterstützung beigetragen von %1. - - Translated by %1 - Übersetzung durch %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Veröffentlicht unter der <a href='%1'>GNU General Public License</a> - + &Close S&chließen - + About Über - + What you always wanted to know about %1 and never dared to ask Was Du schon immer über %1 wissen wolltest, aber nie zu fragen wagtest @@ -71,55 +86,93 @@ ClearButton - + Clear Säubern + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes Bytes - + KB kB - + MB MB - + bytes/sec Bytes/s - + KB/sec kB/s - + MB/sec MB/s - + seconds Sekunden - + minutes Minuten - + %4 %5 remaining %4 %5 verbleibend @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Dies ist nur die Demoversion von %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Sie kann nur Videos, die kürzer als %1 Minuten sind, herunterladen, damit die Download-Funktionalität getestet werden kann. - + Continue Fortfahren - + Get the full version Die Vollversion holen - + %n Download(s) %n Download%n Downloads @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Speicherort ändern… - + Choose the download location Wähle den Speicherort - + Download location changed. Speicherort wurde verändert. - + Current downloads will still go in the previous location. Aktuelle Downloads werden immernoch im alten Speicherort gespeichert. - + Downloading to: %1 Lade herunter nach: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Downloads @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Abspielen - + Pause Pause - + Play/Pause Abspielen/Pause - + Stop Halt - + Stop playing after current track Nachdem aktueller Titel abgespielt wurde halten - + Next track Nächster Titel - + Previous track Vorheriger Titel - + Increase volume Lautstärke erhöhen - + Decrease volume Lautstärke verringern - + Mute Stummschalten - + Seek forward Vorwärts spulen - + Seek backward Rückwärts spulen @@ -255,22 +308,22 @@ ListModel - + Searching... Suche... - + Show %1 More Weitere %1 zeigen - + No videos Keine Videos - + No more videos Keine weiteren Videos @@ -278,7 +331,7 @@ LoadingWidget - + Error Fehler @@ -286,317 +339,372 @@ MainWindow - + &Stop &Halt - + Stop playback and go back to the search view Wiedergabe anhalten und zur Suchansicht zurückkehren - + S&kip Ü&berspringen - + Skip to the next video Zum nächsten Video springen - - + + &Pause &Pause - - + + Pause playback Wiedergabe pausieren - - + &Full Screen &Vollbildmodus - + Go full screen Vollbildmodus aktivieren - + &Compact mode &Kompakt-Ansicht - + Hide the playlist and the toolbar Verstecke Abspielliste und Werkzeugleiste - + Open the &YouTube page Öffne die &YouTube-Seite - + Go to the YouTube video page and pause playback Gehe zur YouTube-Video-Seite und pausiere die Wiedergabe - + Copy the YouTube &link YouTube-&Link kopieren - + Copy the current video YouTube link to the clipboard YouTube-Link in die Zwischenablage kopieren - + Copy the video stream &URL Video-&URL kopieren - + Copy the current video stream URL to the clipboard Video-URL in die Zwischenablage kopieren - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove Entfe&rnen - + Remove the selected videos from the playlist Entferne das ausgewählte Video aus der Abspielliste - + Move &Up Bewege &hinauf - + Move up the selected videos in the playlist Bewege das ausgewählte Video in der Abspielliste hinauf - + Move &Down Bewege hin&ab - + Move down the selected videos in the playlist Bewege das ausgewählte Video in der Abspielliste hinunter - + &Clear recent searches Kürzlich genutzte S&chlüsselwörter entfernen - + Clear the search history. Cannot be undone. Such-Verlauf leeren. Kann nicht rückgängig gemacht werden. - + &Quit &Verlassen - + Ctrl+Q Strg+Q - + Bye Tschüss - + &Website &Webseite - + %1 on the Web %1 im Web - + Make a &donation Spen&den - + Please support the continued development of %1 Bitte unterstützen Sie die weitere Entwicklung von %1 - + &About &Über - + Info about %1 Informationen über %1 - + Search Suche - + Mute volume Stummschalten - + Ctrl+M Strg+M - - + + &Downloads &Downloads - + Show details about video downloads Details über Video-Downloads anzeigen - + &Download H&erunterladen - + Download the current video Das aktuelle Video herunterladen - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Anwendung - + + &Playback + + + + &Playlist A&bspielliste - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Hilfe - + Press %1 to raise the volume, %2 to lower it %1 drücken, um die Lautstärke zu erhöhen, %2 um sie zu verringern - - + + Opening %1 %1 öffnen - + Do you want to exit %1 with a download in progress? Möchten Sie %1 mit einem aktiven Download beenden? - + If you close %1 now, this download will be cancelled. Wenn Sie %1 jetzt beenden, wird der Download abgebrochen. - + Close and cancel download Beenden und Download abbrechen - + Wait for download to finish Auf Abschluß des Downloads warten - - Fatal error: %1 - Schwerer Fehler: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Fehler: %1 - + &Play &Abspielen - + Resume playback Wiedergabe fortsetzen - - Exit &Full Screen - Vollbildmodus &verlassen - - - + Remaining time: %1 Verbleibende Zeit: %1 - + Volume at %1% Lautstärke %1% - + Volume is muted Ton ist stummgeschaltet - + Volume is unmuted Ton ist angeschaltet - + Maximum video definition set to %1 Maximale Video-Auflösung wurde auf %1 gesetzt - + Your privacy is now safe Ihre Privatsphäre ist nun geschützt - + Downloads complete Downloads heruntergeladen @@ -604,57 +712,80 @@ MediaView - + Most relevant Die Bedeutsamsten - + Most recent Die Neusten - + Most viewed Meist gesehen - + You can now paste the YouTube link into another application Du kannst den YouTube-Link nun in einer anderen Anwendung einfügen - + You can now paste the video stream URL into another application Du kannst die Video-URL nun in einer anderen Anwendung einfügen - + The link will be valid only for a limited time. Der Link wird nur eine beschränkte Zeit gültig sein. - + This is just the demo version of %1. Dies ist nur eine Demoversion von %1. - + It allows you to test the application and see if it works for you. Sie erlaubt Ihnen die Anwendung zu testen und zu schauen ob sie bei Ihnen läuft. - + Continue Fortfahren - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Die Vollversion holen - + Downloading %1 %1 herunterladen @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Netzwerk-Fehler: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 mal betrachtet - + %1 of %2 (%3) — %4 %1 von %2 (%3) – %4 - + Preparing Bereite vor - + Failed Fehlgeschlagen - + Completed Fertiggestellt - + Stopped Gestoppt - + Stop downloading Herunterladen stoppen - + Show in %1 In %1 anzeigen - + Open parent folder Eltern-Ordner öffnen - + Restart downloading Herunterladen neustarten @@ -723,7 +854,7 @@ SearchLineEdit - + Search Suche @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Willkommen bei <a href='%1'>%2</a>, - + Get the full version Die Vollversion holen - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Eingeben - + a keyword ein Schlüsselwort - + a channel ein Kanal - + to start watching videos. um die Wiedergabe zu starten. - + Watch Anschauen - + Recent keywords Aktuelle Schlüsselwörter - + Recent channels Aktuelle Kanäle - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Eine neue Version von %1 ist verfügbar. Bitte <a href='%2'>auf Version %3 aktualisieren</a> - - - + Make yourself comfortable Machen Sie es sich gemütlich @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Videostream für %1 konnte nicht öffnen werden - + Network error: %1 for %2 Netzwerk-Fehler: %1 für %2 diff -Nru minitube-1.5/locale/el_GR.ts minitube-1.6/locale/el_GR.ts --- minitube-1.5/locale/el_GR.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/el_GR.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Υπάρχει ζωή έξω απο τον πλοηγό! - + Version %1 Έκδοση %1 - + %1 is Free Software but its development takes precious time. Το %1 είναι Ελεύθερο Λογισμικό αλλά η ανάπτυξη του παίρνει πολύτιμο χρόνο. - + Please <a href='%1'>donate</a> to support the continued development of %2. Παρακαλούμε <a href='%1%'>δωρίστε</a> για να υποστηρίξετε την συνεχόμενη ανάπτυξη του %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Αναφέρετε προβλήματα και στείλτε τις ιδέες σας στην διεύθυνση %1 - + Icon designed by %1. Σχεδιασμός εικονιδίου από %1. - + Compact mode contributed by %1. Συνεισφορά της συμπαγούς εμφάνισης (Compact Mode) από %1. - + HTTP proxy support contributed by %1. Συνεισφορά υποστήριξης μεσολαβητή HTTP (proxy) από %1. - - Translated by %1 - Μετάφραση από %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Έκδοση κάτω απο τους όρους της <a href='%1'>Γενικής Άδειας Χρήσης GNU</a> - + &Close &Κλείσιμο - + About Σχετικά - + What you always wanted to know about %1 and never dared to ask Ότι θέλατε να μάθετε σχετικά με το %1 και δεν τολμούσατε να ρωτήσετε @@ -71,55 +86,93 @@ ClearButton - + Clear Καθαρισμός + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes - + - + KB - + - + MB - + - + bytes/sec - + - + KB/sec - + - + MB/sec - + - + seconds δευτερόλεπτα - + minutes λεπτά - + %4 %5 remaining απομένουν %4 %5 @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Αυτή είναι απλά η δοκιμαστική έκδοση του %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Μπορεί να κατεβάσει βίντεο μικρότερα από %1 λεπτά ώστε να δοκιμάσετε τη λειτουργία κατεβάσματος. - + Continue Συνέχεια - + Get the full version Αποκτήστε την πλήρη έκδοση - + %n Download(s) %n Λήψη%n Λήψεις @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Αλλάξτε τοποθεσία... - + Choose the download location Επιλέξτε την τοποθεσία λήψης - + Download location changed. Η τοποθεσία λήψης άλλαξε. - + Current downloads will still go in the previous location. Τα ήδη ληφθέντα θα παραμείνουν στην προηγούμενη τοποθεσία. - + Downloading to: %1 Λήψη στο: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Λήψεις @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Αναπαραγωγή - + Pause Παύση - + Play/Pause Αναπαραγωγή/Παύση - + Stop Διακοπή - + Stop playing after current track Διακοπή αναπαραγωγής μετά το τρέχον κομμάτι - + Next track Επόμενο κομμάτι - + Previous track Προηγούμενο κομμάτι - + Increase volume Αύξηση έντασης - + Decrease volume Μείωση έντασης - + Mute Σίγαση - + Seek forward Αναζήτηση μπροστά - + Seek backward Αναζήτηση πίσω @@ -255,22 +308,22 @@ ListModel - + Searching... Αναζήτηση... - + Show %1 More Εμφάνιση %1 ακόμα - + No videos Κανένα βίντεο - + No more videos Δεν υπάρχουν άλλα βίντεο @@ -278,7 +331,7 @@ LoadingWidget - + Error Σφάλμα @@ -286,317 +339,372 @@ MainWindow - + &Stop &Στοπ - + Stop playback and go back to the search view Στοπ αναπαραγωγής και επιστροφή στην όψη αναζήτησης - + S&kip &Παράλειψη - + Skip to the next video Παράλειψη προς το επόμενο βίντεο - - + + &Pause &Διακοπή - - + + Pause playback Διακοπή αναπαραγωγής - - + &Full Screen &Πλήρης Οθόνη - + Go full screen Προβολή σε Πλήρη Οθόνη - + &Compact mode &Συμπαγής εμφάνιση - + Hide the playlist and the toolbar Απόκρυψη λίστας αναπαραγωγής και εργαλειοθήκης - + Open the &YouTube page Ανοίξτε την ιστοσελίδα του &YouTube - + Go to the YouTube video page and pause playback Πλοήγηση στην σελίδα βίντεο του YouTube και παύση αναπαραγωγής - + Copy the YouTube &link Αντιγραφή του YouTube &link - + Copy the current video YouTube link to the clipboard Αντιγραφή του link του τρέχοντος YouTube βίντεο στην μνήμη - + Copy the video stream &URL Αντιγραφή του &URL της ροής βίντεο - + Copy the current video stream URL to the clipboard Αντιγραφή του URL της τρέχουσας ροής βίντεο στην μνήμη - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Αφαίρεση - + Remove the selected videos from the playlist Αφαίρεση επιλεγμένων βίντεο απο την λίστα αναπαραγωγής - + Move &Up Μετακίνηση προς τα &πάνω - + Move up the selected videos in the playlist Μετακίνηση επιλεγμένων βίντεο προς τα πάνω - + Move &Down Μετακίνηση προς τα &κάτω - + Move down the selected videos in the playlist Μετακίνηση επιλεγμένων βίντεο προς τα κάτω - + &Clear recent searches &Καθαρισμός πρόσφατων αναζητήσεων - + Clear the search history. Cannot be undone. Καθαρισμός του ιστορικού αναζήτησης. Δεν μπορεί να γίνει επαναφορά. - + &Quit Έ&ξοδος - + Ctrl+Q Ctrl+Q - + Bye Γεια - + &Website &Ιστοχώρος - + %1 on the Web Το %1 στο διαδίκτυο - + Make a &donation Κάντε μια &δωρεά - + Please support the continued development of %1 Παρακαλούμε υποστηρίξτε την συνεχόμενη ανάπτυξη του %1 - + &About &Σχετικά - + Info about %1 Πληροφορίες για %1 - + Search Αναζήτηση - + Mute volume Σίγαση - + Ctrl+M Ctrl+M - - + + &Downloads &Λήψεις - + Show details about video downloads Εμφάνιση λεπτομερειών για τις λήψεις βίντεο - + &Download &Λήψη - + Download the current video Λήψη του τρέχοντος βίντεο - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Εφαρμογή - + + &Playback + + + + &Playlist Λ&ίστα αναπαραγωγής - + &Video Βίν&τεο - + + &View + + + + + &Share + + + + &Help &Βοήθεια - + Press %1 to raise the volume, %2 to lower it Πατήστε %1 για να αυξήσετε την ένταση, %2 για να την χαμηλώσετε - - + + Opening %1 Άνοιγμα %1 - + Do you want to exit %1 with a download in progress? Θέλετε να κλείσετε το %1 ενώ βρίσκεται μια λήψη σε εξέλιξη; - + If you close %1 now, this download will be cancelled. Αν κλείσετε το %1 τώρα, η λήψη θα ακυρωθεί. - + Close and cancel download Κλείσιμο και ακύρωση λήψης - + Wait for download to finish Αναμονή ολοκλήρωσης λήψης - - Fatal error: %1 - Θανάσιμο σφάλμα : %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Σφάλμα: %1 - + &Play Α&ναπαραγωγή - + Resume playback Συνέχεια αναπαραγωγής - - Exit &Full Screen - Έξο&δος απο Πλήρη Οθόνη - - - + Remaining time: %1 Υπολειπόμενος χρόνος: %1 - + Volume at %1% Ένταση στο %1% - + Volume is muted Σίγαση - + Volume is unmuted Η ένταση αποκαταστάθηκε - + Maximum video definition set to %1 H μέγιστη ανάλυση βίντεο τέθηκε σε %1 - + Your privacy is now safe Η ιδιωτικότητα σας είναι τώρα ασφαλής - + Downloads complete Οι λήψεις ολοκληρώθηκαν @@ -604,57 +712,80 @@ MediaView - + Most relevant Πιο σχετικά - + Most recent Πιο πρόσφατα - + Most viewed Πιο προβεβλημένα - + You can now paste the YouTube link into another application Τώρα μπορείτε να επικολλήσετε το YouTube link σε κάποια άλλη εφαρμογή - + You can now paste the video stream URL into another application Τώρα μπορείτε να επικολλήσετε το URL της ροής βίντεο σε κάποια άλλη εφαρμογή - + The link will be valid only for a limited time. Ο σύνδεμος θα είναι έγκυρος μόνο για περιορισμένο χρονικό διάστημα. - + This is just the demo version of %1. Αυτή είναι απλά μια δοκιμαστική έκδοση του %1. - + It allows you to test the application and see if it works for you. Σαε επιτρέπει να δοκιμάσετε την εφαρμογή και να δείτε αν σας κάνει. - + Continue Συνέχεια - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Αποκτήστε την πλήρη έκδοση - + Downloading %1 Λήψη %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Σφάλμα δικτύου: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views Προβολές %1 - + %1 of %2 (%3) — %4 %1 από %2 (%3) — %4 - + Preparing Προετοιμάζεται - + Failed Απέτυχε - + Completed Ολοκληρώθηκε - + Stopped Διακόπηκε - + Stop downloading Διακοπή λήψης - + Show in %1 Εμφάνιση σε %1 - + Open parent folder Άνοιγμα γονικού φακέλου - + Restart downloading Επανεκκίνηση λήψης @@ -723,7 +854,7 @@ SearchLineEdit - + Search Αναζήτηση @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Καλωσορίσατε στο <a href='%1'>%2</a>, - + Get the full version Αποκτήστε την πλήρη έκδοση - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Πληκτρολογήστε - + a keyword μια λέξη-κλειδί - + a channel ένα κανάλι - + to start watching videos. για να αρχίσετε να βλέπετε βίντεο. - + Watch Δείτε - + Recent keywords Πρόσφατες λέξεις-κλειδιά - + Recent channels Πρόσφατα κανάλια - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Μια νέα έκδοση του %1 είναι διαθέσιμη. Παρακαλούμε<a href='%2'> αναβαθμίστε στην έκδοση %3</a> - - - + Make yourself comfortable Βολευτείτε @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Αδυναμία ανάκτησης ροής βίντεο για %1 - + Network error: %1 for %2 Σφάλμα δικτύου: %1 για %2 diff -Nru minitube-1.5/locale/el.ts minitube-1.6/locale/el.ts --- minitube-1.5/locale/el.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/el.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Υπάρχει ζωή έξω απο τον πλοηγό! - + Version %1 Έκδοση %1 - + %1 is Free Software but its development takes precious time. Το %1 είναι Ελεύθερο Λογισμικό αλλά η ανάπτυξη του παίρνει πολύτιμο χρόνο. - + Please <a href='%1'>donate</a> to support the continued development of %2. Παρακαλούμε <a href='%1%'>δωρίστε</a> για να υποστηρίξετε την συνεχόμενη ανάπτυξη του %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Αναφέρετε προβλήματα και στείλτε τις ιδέες σας στην διεύθυνση %1 - + Icon designed by %1. Σχεδιασμός εικονιδίου από %1. - + Compact mode contributed by %1. Συνεισφορά της συμπαγούς εμφάνισης (Compact Mode) από %1. - + HTTP proxy support contributed by %1. Συνεισφορά υποστήριξης μεσολαβητή HTTP (proxy) από %1. - - Translated by %1 - Μετάφραση από %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Έκδοση κάτω απο τους όρους της <a href='%1'>Γενικής Άδειας Χρήσης GNU</a> - + &Close &Κλείσιμο - + About Σχετικά - + What you always wanted to know about %1 and never dared to ask Ότι θέλατε να μάθετε σχετικά με το %1 και δεν τολμούσατε να ρωτήσετε @@ -71,55 +86,93 @@ ClearButton - + Clear Καθαρισμός + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec bytes/δευτ. - + KB/sec KB/δευτ. - + MB/sec MB/δευτ. - + seconds δευτερόλεπτα - + minutes λεπτά - + %4 %5 remaining απομένουν %4 %5 @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Αυτή είναι απλά η δοκιμαστική έκδοση του %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Μπορεί να κατεβάσει βίντεο μικρότερα από %1 λεπτά ώστε να δοκιμάσετε τη λειτουργία κατεβάσματος. - + Continue Συνέχεια - + Get the full version Αποκτήστε την πλήρη έκδοση - + %n Download(s) %n Λήψη%n Λήψεις @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Αλλάξτε τοποθεσία... - + Choose the download location Επιλέξτε την τοποθεσία λήψης - + Download location changed. Η τοποθεσία λήψης άλλαξε. - + Current downloads will still go in the previous location. Τα ήδη ληφθέντα θα παραμείνουν στην προηγούμενη τοποθεσία. - + Downloading to: %1 Λήψη στο: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Λήψεις @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Αναπαραγωγή - + Pause Παύση - + Play/Pause Αναπαραγωγή/Παύση - + Stop Διακοπή - + Stop playing after current track Διακοπή αναπαραγωγής μετά το τρέχον κομμάτι - + Next track Επόμενο κομμάτι - + Previous track Προηγούμενο κομμάτι - + Increase volume Αύξηση έντασης - + Decrease volume Μείωση έντασης - + Mute Σίγαση - + Seek forward Αναζήτηση μπροστά - + Seek backward Αναζήτηση πίσω @@ -255,22 +308,22 @@ ListModel - + Searching... Αναζήτηση... - + Show %1 More Εμφάνιση %1 ακόμα - + No videos Κανένα βίντεο - + No more videos Δεν υπάρχουν άλλα βίντεο @@ -278,7 +331,7 @@ LoadingWidget - + Error Σφάλμα @@ -286,317 +339,372 @@ MainWindow - + &Stop &Στοπ - + Stop playback and go back to the search view Στοπ αναπαραγωγής και επιστροφή στην όψη αναζήτησης - + S&kip &Παράλειψη - + Skip to the next video Παράλειψη προς το επόμενο βίντεο - - + + &Pause &Διακοπή - - + + Pause playback Διακοπή αναπαραγωγής - - + &Full Screen &Πλήρης Οθόνη - + Go full screen Προβολή σε Πλήρη Οθόνη - + &Compact mode &Συμπαγής εμφάνιση - + Hide the playlist and the toolbar Απόκρυψη λίστας αναπαραγωγής και εργαλειοθήκης - + Open the &YouTube page Ανοίξτε την ιστοσελίδα του &YouTube - + Go to the YouTube video page and pause playback Πλοήγηση στην σελίδα βίντεο του YouTube και παύση αναπαραγωγής - + Copy the YouTube &link Αντιγραφή του YouTube &link - + Copy the current video YouTube link to the clipboard Αντιγραφή του link του τρέχοντος YouTube βίντεο στην μνήμη - + Copy the video stream &URL Αντιγραφή του &URL της ροής βίντεο - + Copy the current video stream URL to the clipboard Αντιγραφή του URL της τρέχουσας ροής βίντεο στην μνήμη - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Αφαίρεση - + Remove the selected videos from the playlist Αφαίρεση επιλεγμένων βίντεο απο την λίστα αναπαραγωγής - + Move &Up Μετακίνηση προς τα &πάνω - + Move up the selected videos in the playlist Μετακίνηση επιλεγμένων βίντεο προς τα πάνω - + Move &Down Μετακίνηση προς τα &κάτω - + Move down the selected videos in the playlist Μετακίνηση επιλεγμένων βίντεο προς τα κάτω - + &Clear recent searches &Καθαρισμός πρόσφατων αναζητήσεων - + Clear the search history. Cannot be undone. Καθαρισμός του ιστορικού αναζήτησης. Δεν μπορεί να γίνει επαναφορά. - + &Quit Έ&ξοδος - + Ctrl+Q Ctrl+Q - + Bye Γεια - + &Website &Ιστοχώρος - + %1 on the Web Το %1 στο διαδίκτυο - + Make a &donation Κάντε μια &δωρεά - + Please support the continued development of %1 Παρακαλούμε υποστηρίξτε την συνεχόμενη ανάπτυξη του %1 - + &About &Σχετικά - + Info about %1 Πληροφορίες για %1 - + Search Αναζήτηση - + Mute volume Σίγαση - + Ctrl+M Ctrl+M - - + + &Downloads &Λήψεις - + Show details about video downloads Εμφάνιση λεπτομερειών για τις λήψεις βίντεο - + &Download &Λήψη - + Download the current video Λήψη του τρέχοντος βίντεο - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Εφαρμογή - + + &Playback + + + + &Playlist Λ&ίστα αναπαραγωγής - + &Video Βίν&τεο - + + &View + + + + + &Share + + + + &Help &Βοήθεια - + Press %1 to raise the volume, %2 to lower it Πατήστε %1 για να αυξήσετε την ένταση, %2 για να την χαμηλώσετε - - + + Opening %1 Άνοιγμα %1 - + Do you want to exit %1 with a download in progress? Θέλετε να κλείσετε το %1 ενώ βρίσκεται μια λήψη σε εξέλιξη; - + If you close %1 now, this download will be cancelled. Αν κλείσετε το %1 τώρα, η λήψη θα ακυρωθεί. - + Close and cancel download Κλείσιμο και ακύρωση λήψης - + Wait for download to finish Αναμονή ολοκλήρωσης λήψης - - Fatal error: %1 - Θανάσιμο σφάλμα : %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Σφάλμα: %1 - + &Play Α&ναπαραγωγή - + Resume playback Συνέχεια αναπαραγωγής - - Exit &Full Screen - Έξο&δος απο Πλήρη Οθόνη - - - + Remaining time: %1 Υπολειπόμενος χρόνος: %1 - + Volume at %1% Ένταση στο %1% - + Volume is muted Σίγαση - + Volume is unmuted Η ένταση αποκαταστάθηκε - + Maximum video definition set to %1 H μέγιστη ανάλυση βίντεο τέθηκε σε %1 - + Your privacy is now safe Η ιδιωτικότητα σας είναι τώρα ασφαλής - + Downloads complete Οι λήψεις ολοκληρώθηκαν @@ -604,57 +712,80 @@ MediaView - + Most relevant Πιο σχετικά - + Most recent Πιο πρόσφατα - + Most viewed Πιο προβεβλημένα - + You can now paste the YouTube link into another application Τώρα μπορείτε να επικολλήσετε το YouTube link σε κάποια άλλη εφαρμογή - + You can now paste the video stream URL into another application Τώρα μπορείτε να επικολλήσετε το URL της ροής βίντεο σε κάποια άλλη εφαρμογή - + The link will be valid only for a limited time. Ο σύνδεμος θα είναι έγκυρος μόνο για περιορισμένο χρονικό διάστημα. - + This is just the demo version of %1. Αυτή είναι απλά μια δοκιμαστική έκδοση του %1. - + It allows you to test the application and see if it works for you. Σαε επιτρέπει να δοκιμάσετε την εφαρμογή και να δείτε αν σας κάνει. - + Continue Συνέχεια - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Αποκτήστε την πλήρη έκδοση - + Downloading %1 Λήψη %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Σφάλμα δικτύου: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views Προβολές %1 - + %1 of %2 (%3) — %4 %1 από %2 (%3) — %4 - + Preparing Προετοιμάζεται - + Failed Απέτυχε - + Completed Ολοκληρώθηκε - + Stopped Διακόπηκε - + Stop downloading Διακοπή λήψης - + Show in %1 Εμφάνιση σε %1 - + Open parent folder Άνοιγμα γονικού φακέλου - + Restart downloading Επανεκκίνηση λήψης @@ -723,7 +854,7 @@ SearchLineEdit - + Search Αναζήτηση @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Καλωσορίσατε στο <a href='%1'>%2</a>, - + Get the full version Αποκτήστε την πλήρη έκδοση - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Πληκτρολογήστε - + a keyword μια λέξη-κλειδί - + a channel ένα κανάλι - + to start watching videos. για να αρχίσετε να βλέπετε βίντεο. - + Watch Δείτε - + Recent keywords Πρόσφατες λέξεις-κλειδιά - + Recent channels Πρόσφατα κανάλια - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Μια νέα έκδοση του %1 είναι διαθέσιμη. Παρακαλούμε<a href='%2'> αναβαθμίστε στην έκδοση %3</a> - - - + Make yourself comfortable Βολευτείτε @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Αδυναμία ανάκτησης ροής βίντεο για %1 - + Network error: %1 for %2 Σφάλμα δικτύου: %1 για %2 diff -Nru minitube-1.5/locale/en_US.ts minitube-1.6/locale/en_US.ts --- minitube-1.5/locale/en_US.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/en_US.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - - - - - Version %1 - - - - - %1 is Free Software but its development takes precious time. - - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - - - - - Report bugs and send in your ideas to %1 - - - - - Icon designed by %1. - - - - - Compact mode contributed by %1. - - - - - HTTP proxy support contributed by %1. - - - - - Translated by %1 - - - - - Released under the <a href='%1'>GNU General Public License</a> - - - - - &Close - - - - - About - - - - - What you always wanted to know about %1 and never dared to ask - - - - - ClearButton - - - Clear - - - - - DownloadItem - - - bytes - - - - - KB - - - - - MB - - - - - bytes/sec - - - - - KB/sec - - - - - MB/sec - - - - - seconds - - - - - minutes - - - - - %4 %5 remaining - - - - - DownloadManager - - - This is just the demo version of %1. - - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - - - - - Continue - - - - - Get the full version - - - - - %n Download(s) - 1 Download%n Downloads - - - - DownloadSettings - - - Change location... - - - - - Choose the download location - - - - - Download location changed. - - - - - Current downloads will still go in the previous location. - - - - - Downloading to: %1 - - - - - DownloadView - - - - Downloads - - - - - GlobalShortcuts - - - Play - - - - - Pause - - - - - Play/Pause - - - - - Stop - - - - - Stop playing after current track - - - - - Next track - - - - - Previous track - - - - - Increase volume - - - - - Decrease volume - - - - - Mute - - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - - - - - Show %1 More - - - - - No videos - - - - - No more videos - - - - - LoadingWidget - - - Error - - - - - MainWindow - - - &Stop - - - - - Stop playback and go back to the search view - - - - - S&kip - - - - - Skip to the next video - - - - - - &Pause - - - - - - Pause playback - - - - - - &Full Screen - - - - - Go full screen - - - - - &Compact mode - - - - - Hide the playlist and the toolbar - - - - - Open the &YouTube page - - - - - Go to the YouTube video page and pause playback - - - - - Copy the YouTube &link - - - - - Copy the current video YouTube link to the clipboard - - - - - Copy the video stream &URL - - - - - Copy the current video stream URL to the clipboard - - - - - &Remove - - - - - Remove the selected videos from the playlist - - - - - Move &Up - - - - - Move up the selected videos in the playlist - - - - - Move &Down - - - - - Move down the selected videos in the playlist - - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - - - - - &Quit - - - - - Ctrl+Q - - - - - Bye - - - - - &Website - - - - - %1 on the Web - - - - - Make a &donation - - - - - Please support the continued development of %1 - - - - - &About - - - - - Info about %1 - - - - - Search - - - - - Mute volume - - - - - Ctrl+M - - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - - - - - &Playlist - - - - - &Video - - - - - &Help - - - - - Press %1 to raise the volume, %2 to lower it - - - - - - Opening %1 - - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - - - - - Error: %1 - - - - - &Play - - - - - Resume playback - - - - - Exit &Full Screen - - - - - Remaining time: %1 - - - - - Volume at %1% - - - - - Volume is muted - - - - - Volume is unmuted - - - - - Maximum video definition set to %1 - - - - - Your privacy is now safe - - - - - Downloads complete - - - - - MediaView - - - Most relevant - - - - - Most recent - - - - - Most viewed - - - - - You can now paste the YouTube link into another application - - - - - You can now paste the video stream URL into another application - - - - - The link will be valid only for a limited time. - - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - - - - - PrettyItemDelegate - - - %1 views - - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - - - - - Stop downloading - - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - - - - - Recent keywords - - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - - - - - Make yourself comfortable - - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - - - - \ No newline at end of file diff -Nru minitube-1.5/locale/es_AR.ts minitube-1.6/locale/es_AR.ts --- minitube-1.5/locale/es_AR.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/es_AR.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Hay vida más allá del navegador! - + Version %1 Versión %1 - + %1 is Free Software but its development takes precious time. %1 es Software Libre pero su desarrollo lleva tiempo. - + Please <a href='%1'>donate</a> to support the continued development of %2. Por favor, <a href='%1'>hacé una donación</a> para apoyar el desarrollo de %2. - + + You may want to try my other apps as well: + Talvez querás probar mis otras aplicaciones como: + + + + %1, a YouTube music player + %1, un reproductor de música de YouTube + + + + %1, a music player + %1, un reproductor de música + + + + Translate %1 to your native language using %2 + Traducí %1 a tu idioma natal usando %2 + + + Report bugs and send in your ideas to %1 Reportá errores y enviá tus idea a %1 - + Icon designed by %1. Iconos diseñados por %1. - + Compact mode contributed by %1. El modo compacto es una contribución de %1. - + HTTP proxy support contributed by %1. El soporte para proxy HTTP es una contribución de %1. - - Translated by %1 - Traducido por %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Desarrollado bajo la <a href='%1'>Licencia Pública General de GNU</a> - + &Close &Cerrar - + About Acerca de - + What you always wanted to know about %1 and never dared to ask Lo que siempre quisiste saber de %1 y nunca te animaste a preguntar @@ -71,55 +86,93 @@ ClearButton - + Clear Limpiar + DemoStartupView + + + Please license %1 + Por favor autoricé %1 + + + + This demo has expired. + Esta prueba ha vencido + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + La versión completa te permite descargar videos mayores a %1 minutos y ver los videos sin interrupciones + + + + This demo will expire in %1 days. + Esta prueba vencerá en %1 días + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Al comprar la versión completa, también apoyas el duro trabajo que he puesto creado %1 + + + + Use Demo + Usar Prueba + + + + Get the full version + Obtené la versión completa + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec bytes/sec - + KB/sec KB/sec - + MB/sec MB/sec - + seconds segundos - + minutes minutos - + %4 %5 remaining %4 %5 restante(s) @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Esta es sólo una versión de demostración de %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Sólo se pueden bajar videos de menos de %1 minutos, para probar la funcionalidad de descarga. - + Continue Continuar - + Get the full version Conseguí la versión completa - + %n Download(s) %n Descarga(s)%n Descarga(s) @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Cambiar destino... - + Choose the download location Elegir el destino de la descarga - + Download location changed. Destino de la descarga cambiado. - + Current downloads will still go in the previous location. Las descargas en curso van a seguir bajándose al destino anterior. - + Downloading to: %1 Bajando a: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Descargas @@ -192,62 +245,62 @@ GlobalShortcuts - + Play - Play + Reproducir - + Pause Pausa - + Play/Pause - Play/Pausa + Reproducir/Pausa - + Stop Detener - + Stop playing after current track Detener luego de la pista actual - + Next track Pista siguiente - + Previous track Pista previa - + Increase volume Subir volumen - + Decrease volume Bajar volumen - + Mute Mudo - + Seek forward Avanzar rápido - + Seek backward Retroceder rápido @@ -255,22 +308,22 @@ ListModel - + Searching... Buscando... - + Show %1 More Mostrar %1 más - + No videos Sin videos - + No more videos No hay más videos @@ -278,7 +331,7 @@ LoadingWidget - + Error Error @@ -286,317 +339,372 @@ MainWindow - + &Stop &Detener - + Stop playback and go back to the search view Detener y volver a la búsqueda - + S&kip &Saltar - + Skip to the next video Siguiente video - - + + &Pause &Pausar - - + + Pause playback Pausar - - + &Full Screen &Pantalla completa - + Go full screen - Pantalla completa + Ir a pantalla completa - + &Compact mode &Modo compacto - + Hide the playlist and the toolbar Esconder la lista de reproducción y la barra de herramientas - + Open the &YouTube page Abrir la página &YouTube - + Go to the YouTube video page and pause playback Ir al video en YouTube y pausar la reproducción - + Copy the YouTube &link - Copiar el &link de YouTube + Copiar el &enlace de YouTube - + Copy the current video YouTube link to the clipboard - Copiar el link de YouTube del video al portapapeles + Copiar el enlace de YouTube del video al portapapeles - + Copy the video stream &URL Copiar la &URL del stream del video - + Copy the current video stream URL to the clipboard Copiar la &URL del stream del video al portapapeles - + + Find video &parts + Encontrá las &partes del video + + + + Find other video parts hopefully in the right order + Encontrá las otras partes del video con suerte en el orden correcto + + + &Remove &Borrar - + Remove the selected videos from the playlist Borrar los videos seleccionados de la lista - + Move &Up - Mover para &arriba + Mover hacia &arriba - + Move up the selected videos in the playlist - Mover para arriba los videos seleccionados + Mover hacia arriba los videos seleccionados - + Move &Down - Mover para &abajo + Mover hacia &abajo - + Move down the selected videos in the playlist - Mover para abajo los videos seleccionados + Mover hacia abajo los videos seleccionados - + &Clear recent searches &Eliminar las búsquedas recientes - + Clear the search history. Cannot be undone. Eliminar el historial de búsqueda. No se puede deshacer. - + &Quit &Salir - + Ctrl+Q Ctrl+Q - + Bye Chau - + &Website &Sitio web - + %1 on the Web %1 en la Web - + Make a &donation Hacer una &donación - + Please support the continued development of %1 - Apoyá el desarrollo de %1 + Apoyar el desarrollo de %1 - + &About &Acerca de - + Info about %1 Información sobre %1 - + Search Buscar - + Mute volume Silenciar volumen - + Ctrl+M Ctrl+M - - + + &Downloads &Descargas - + Show details about video downloads Mostrar detalles sobre la descarga de videos - + &Download &Bajar video - + Download the current video Bajar el video actual - + + Share the current video using %1 + Compartí el video actual usando %1 + + + + &Email + &Correo + + + + Email + Correo + + + &Application &Programa - + + &Playback + &Reproducción + + + &Playlist &Lista de reproducción - + &Video &Video - + + &View + &Ver + + + + &Share + &Compartir + + + &Help &Ayuda - + Press %1 to raise the volume, %2 to lower it Con %1 subís el volumen, con %2 lo bajás - - + + Opening %1 Abriendo %1 - + Do you want to exit %1 with a download in progress? Seguro que querés salir de %1 con una descarga en progreso? - + If you close %1 now, this download will be cancelled. Si cerrás %1 ahora, la descarga se va a cancelar. - + Close and cancel download Cerrar y cancelar descarga - + Wait for download to finish Esperar a que termine la descarga - - Fatal error: %1 - Error fatal: %1 + + Leave &Full Screen + Salir de &Pantalla Completa + + + + %1 version %2 is now available. + %1 versión %2 está ahora disponible + + + + Remind me later + Recordármelo después - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + Para obtener la versión actualizada, descargá %1 de nuevo desde el enlace que recibiste via correo y reinstala + + + + Update + Actualizar + + + Error: %1 Error: %1 - + &Play - &Play + &Reproducir - + Resume playback Continuar reproducción - - Exit &Full Screen - &Salir de pantalla completa - - - + Remaining time: %1 Tiempo restante: %1 - + Volume at %1% Volumen al %1% - + Volume is muted Volumen silenciado - + Volume is unmuted Volumen activo - + Maximum video definition set to %1 Definición máxima de video seteada en %1 - + Your privacy is now safe Tu privacidad ahora está segura - + Downloads complete Descarga completa @@ -604,65 +712,88 @@ MediaView - + Most relevant Más relevantes - + Most recent Más recientes - + Most viewed - Más visitados + Más vistos - + You can now paste the YouTube link into another application - Ahora podés pegar el link de YouTube en otra aplicación + Ahora podés pegar el enlace de YouTube en otra aplicación - + You can now paste the video stream URL into another application Ahora podés pegar la URL del stream en otra aplicación - + The link will be valid only for a limited time. - El link va a ser válido sólo por un tiempo limitado. + El enalce va a ser válido sólo por un tiempo limitado. - + This is just the demo version of %1. Esta es sólo la versión de demostración de %1. - + It allows you to test the application and see if it works for you. Te permite probar la aplicación y ver si te funciona. - + Continue Continuar - + + of + Used in video parts, as in '2 of 3' + de + + + + part + This is for video parts, as in 'Cool video - part 1' + parte + + + + episode + This is for video parts, as in 'Cool series - episode 1' + episodio + + + + Sent from %1 + Enviado desde %1 + + + Get the full version Conseguir la versión completa - + Downloading %1 - Bajando %1 + Descargando %1 NetworkAccess - + Network error: %1 Error de conexión: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 visitas - + %1 of %2 (%3) — %4 %1 de %2 (%3) — %4 - + Preparing Preparando - + Failed Falló - + Completed Completado - + Stopped Detenido - + Stop downloading Detener descarga - + Show in %1 Mostrar en %1 - + Open parent folder - Abrir carpeta padre + Abrir carpeta contenedora - + Restart downloading Reiniciar descarga @@ -723,7 +854,7 @@ SearchLineEdit - + Search Buscar @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Bienvenido a <a href='%1'>%2</a>, - + Get the full version Conseguir la versión completa - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Escribir - + a keyword una palabra clave - + a channel un canal - + to start watching videos. para empezar a ver videos. - + Watch Ver - + Recent keywords Búsquedas recientes - + Recent channels Canales recientes - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Una nueva versión de %1 esta disponible. Por favor <a href='%2'>actualice a la version %3</a> - - - + Make yourself comfortable Personalizar @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 No puedo obtener el stream de video de %1 - + Network error: %1 for %2 Error de conexión: %1 para %2 diff -Nru minitube-1.5/locale/es_ES.ts minitube-1.6/locale/es_ES.ts --- minitube-1.5/locale/es_ES.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/es_ES.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! ¡Hay vida fuera del navegador! - + Version %1 Versión %1 - + %1 is Free Software but its development takes precious time. %1 es Software Libre pero su desarrollo lleva mucho tiempo. - + Please <a href='%1'>donate</a> to support the continued development of %2. Por favor, considere <a href='%1'>donar</a> para apoyar el desarrollo de %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Informe sobre errores y envíe sus ideas a %1 - + Icon designed by %1. Icono diseñado por %1. - + Compact mode contributed by %1. Modo compacto aportado por %1. - + HTTP proxy support contributed by %1. Soporte de proxy HTTP aportado por %1 - - Translated by %1 - Traducido por %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Publicado bajo la <a href='%1'>Licencia Pública General GNU</a> - + &Close &Cerrar - + About Acerca de... - + What you always wanted to know about %1 and never dared to ask Lo que siempre quiso saber sobre el %1 y nunca se atrevió a preguntar @@ -71,55 +86,93 @@ ClearButton - + Clear Limpiar + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec bytes/seg - + KB/sec KB/sec - + MB/sec MB/seg - + seconds segundos - + minutes minutos - + %4 %5 remaining %4 %5 restante @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Esta es sólo la versión demo de %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Sólo se pueden descargar vídeos más cortos de %1 minutos, así puede probar la funcionalidad de descarga. - + Continue Continuar - + Get the full version Obtener la versión completa - + %n Download(s) %n Descarga(s)%n Descarga(s) @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Cambiar ubicación... - + Choose the download location Eligir la ubicación de descarga - + Download location changed. Ubicación de descarga cambiada. - + Current downloads will still go in the previous location. Las descargan actuales irán a parar a la anterior ubicación. - + Downloading to: %1 Descargado: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Descargas @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Reproducir - + Pause Pausar - + Play/Pause Reproducir/Pausar - + Stop Parar - + Stop playing after current track Parar reproducción después esta pista - + Next track Siguiente pista - + Previous track Pista anterior - + Increase volume Subir volumen - + Decrease volume Bajar volumen - + Mute Silenciar - + Seek forward Buscar adelante - + Seek backward Buscar atrás @@ -255,22 +308,22 @@ ListModel - + Searching... Buscando... - + Show %1 More Mostrar %1 más - + No videos No hay vídeos - + No more videos No hay más vídeos @@ -278,7 +331,7 @@ LoadingWidget - + Error Error @@ -286,317 +339,372 @@ MainWindow - + &Stop &Parar - + Stop playback and go back to the search view Parar reproducción y volver a la vista de búsqueda - + S&kip Sa&ltar - + Skip to the next video Saltar al siguiente vídeo - - + + &Pause &Pausar - - + + Pause playback Pausar reproducción - - + &Full Screen &Pantalla completa - + Go full screen Ir a pantalla completa - + &Compact mode &Modo compacto - + Hide the playlist and the toolbar Ocultar la lista de reproducción y la barra de herramientas - + Open the &YouTube page Abir en la pagina de YouTube - + Go to the YouTube video page and pause playback Ir a la página del vídeo en YouTube y pausar la reproducción - + Copy the YouTube &link Copiar enlace del vídeo - + Copy the current video YouTube link to the clipboard Copiar al portapapeles el enlace del vídeo de YouTube actual - + Copy the video stream &URL Copiar la &URL del stream de vídeo - + Copy the current video stream URL to the clipboard Copiar al portapapeles la &URL del stream de vídeo actual - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove Elimina&r - + Remove the selected videos from the playlist Eliminar los vídeos seleccionados de la lista de reproducción - + Move &Up S&ubir - + Move up the selected videos in the playlist Subir en la lista de reproducción los vídeos seleccionados - + Move &Down &Bajar - + Move down the selected videos in the playlist Bajar en la lista de reproducción los vídeos seleccionados - + &Clear recent searches &Limpiar las búsquedas recientes - + Clear the search history. Cannot be undone. Limpiar el historial de búsquedas. Esta acción no puede deshacerse. - + &Quit &Salir - + Ctrl+Q - + - + Bye Adiós - + &Website Sitio &Web - + %1 on the Web %1 en la Web - + Make a &donation Haz una &donación - + Please support the continued development of %1 Por favor, apoye el continuo desarrollo de %1 - + &About &Acerca de - + Info about %1 Información sobre %1 - + Search Búsqueda - + Mute volume - + - + Ctrl+M - + - - + + &Downloads &Descargas - + Show details about video downloads Muestra detalles sobre las descargas de vídeos - + &Download &Descargar - + Download the current video Descarga el vídeo actual - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Aplicación - + + &Playback + + + + &Playlist Lista de Re&producción - + &Video &Vídeo - + + &View + + + + + &Share + + + + &Help &Ayuda - + Press %1 to raise the volume, %2 to lower it Presiona %1 para subir el volumen, %2 para bajarlo - - + + Opening %1 Abriendo %1 - + Do you want to exit %1 with a download in progress? ¿Deseas salir de %1 con una descarga activa? - + If you close %1 now, this download will be cancelled. Si cierras %1, esta descarga se cancelará. - + Close and cancel download Cerrar y cancelar la descarga - + Wait for download to finish Esperar la finalización de la descarga - - Fatal error: %1 - Error fatal: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Error: %1 - + &Play Re&producir - + Resume playback Reiniciar la reproducción - - Exit &Full Screen - Salir de pantalla &completa - - - + Remaining time: %1 Tiempo restante: %1 - + Volume at %1% Volumen al %1% - + Volume is muted El volumen está desactivado - + Volume is unmuted El volumen está activado - + Maximum video definition set to %1 - + - + Your privacy is now safe - + - + Downloads complete Descargas completadas @@ -604,57 +712,80 @@ MediaView - + Most relevant Más relevantes - + Most recent Más recientes - + Most viewed Más vistos - + You can now paste the YouTube link into another application Ahora puedes pegar el enlace de Youtube en otra aplicación - + You can now paste the video stream URL into another application Ahora puedes pegar la URL del stream de vídeo en otra aplicación - + The link will be valid only for a limited time. EL enlace será válido sólo por un plazo de tiempo limitado. - + This is just the demo version of %1. Esta es sólo la versión de demo de %1. - + It allows you to test the application and see if it works for you. - + - + Continue Continuar - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Obtener la versión completa - + Downloading %1 Descargand %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Error de red: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 vistas - + %1 of %2 (%3) — %4 %1 de %2 (%3) -- %4 - + Preparing Preparando - + Failed Falló - + Completed Completo - + Stopped Parado - + Stop downloading Parar descarga - + Show in %1 Mostrar en %1 - + Open parent folder Abrir carpeta padre - + Restart downloading Reiniciar descarga @@ -723,7 +854,7 @@ SearchLineEdit - + Search Buscar @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Bienvenido/a a <a href='%1'>%2</a>, - + Get the full version Obtener la versión completa - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Introducir - + a keyword una palabra clave - + a channel un canal - + to start watching videos. empezar a ver vídeos - + Watch Ver - + Recent keywords Palabras clave recientes - + Recent channels Canales recientes - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - - - - + Make yourself comfortable Siéntete como en casa @@ -790,14 +916,14 @@ Video - + Cannot get video stream for %1 - + - + Network error: %1 for %2 - + \ No newline at end of file diff -Nru minitube-1.5/locale/es.ts minitube-1.6/locale/es.ts --- minitube-1.5/locale/es.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/es.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,123 +3,176 @@ AboutView - + There's life outside the browser! ¡Hay vida más allá del navegador! - + Version %1 Versión %1 - + %1 is Free Software but its development takes precious time. - %1 es Software Libre pero su desarrollo supone un tiempo muy valioso. + %1 es software libre, pero su desarrollo supone un tiempo muy valioso. - + Please <a href='%1'>donate</a> to support the continued development of %2. - Haga una <a href='%1'>donación</a> para ayudar en la continuación del desarrollo de %2. + Haga una <a href='%1'>donación</a> para ayudar a continuar el desarrollo de %2. - + + You may want to try my other apps as well: + Quizá también quiera probar mis otras aplicaciones: + + + + %1, a YouTube music player + %1, un reproductor de música de YouTube + + + + %1, a music player + %1, un reproductor de música + + + + Translate %1 to your native language using %2 + Traduzca %1 a su idioma natal usando %2 + + + Report bugs and send in your ideas to %1 - Envie sus informes de errores o sus ideas a %1 + Informe de fallos y envíe sus ideas a %1 - + Icon designed by %1. Icono diseñado por %1. - + Compact mode contributed by %1. Modo compacto aportado por %1. - + HTTP proxy support contributed by %1. - Compatibilidad con proxy HTTP aportado por %1. + Compatibilidad con proxy HTTP aportada por %1. - - Translated by %1 - Traducido por %1 - - - + Released under the <a href='%1'>GNU General Public License</a> - Publicado bajo la <a href='%1'>Licencia Publica General GNU</a> + Publicado bajo la <a href='%1'>Licencia Pública General de GNU</a> - + &Close &Cerrar - + About Acerca de - + What you always wanted to know about %1 and never dared to ask - Que es lo que siempre quiso saber acerca de %1 y nunca se atrevió a preguntar + Lo que siempre quiso saber acerca de %1 y nunca se atrevió a preguntar ClearButton - + Clear Limpiar + DemoStartupView + + + Please license %1 + Obtenga una licencia de %1 + + + + This demo has expired. + Esta versión de prueba ha caducado. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + La versión completa le permite descargar vídeos con duración mayor a %1 minutos y ver vídeos sin interrupciones. + + + + This demo will expire in %1 days. + Esta versión de prueba caducará en %1 días. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Al comprar la versión completa, también apoya el trabajo realizado en la creación de %1. + + + + Use Demo + Probar + + + + Get the full version + Obtener la versión completa + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec - bytes/segundo + bytes/s - + KB/sec - KB/segundo + KB/s - + MB/sec - MB/segundo + MB/s - + seconds segundos - + minutes minutos - + %4 %5 remaining %4 %5 restante(s) @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Esta es solo la versión de prueba de %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. - Solo puede descargar videos de duración menor que %1 minutos para que pueda probar la función de descarga. + Solo puede descargar vídeos de duración menor que %1 minutos para que pueda probar la función de descarga. - + Continue Continuar - + Get the full version Obtener la versión completa - + %n Download(s) %n Descarga%n Descargas @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Cambiar ubicación... - + Choose the download location Elija la ubicación de las descargas - + Download location changed. Ubicación para descargas modificada. - + Current downloads will still go in the previous location. Las descargas en curso irán a la ubicación anterior. - + Downloading to: %1 Descargando a: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Descargas @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Reproducir - + Pause Pausar - + Play/Pause - Reproducción/Pausa + Reproducir/pausar - + Stop Detener - + Stop playing after current track - Detener la reproducción luego de la pista actual + Detener la reproducción al terminar la pista actual - + Next track Pista siguiente - + Previous track Pista anterior - + Increase volume Aumentar volumen - + Decrease volume Disminuir volumen - + Mute Silenciar - + Seek forward Buscar hacia adelante - + Seek backward Buscar hacia atrás @@ -255,30 +308,30 @@ ListModel - + Searching... Buscando... - + Show %1 More Mostrar %1 más - + No videos - No hay videos + No hay vídeos - + No more videos - No hay más videos + No hay más vídeos LoadingWidget - + Error Error @@ -286,318 +339,373 @@ MainWindow - + &Stop &Detener - + Stop playback and go back to the search view - Detener la reproducción y volver a la vista de busqueda + Detener la reproducción y volver a la búsqueda - + S&kip - &Saltar + &Omitir - + Skip to the next video - Saltar al siguiente video + Omitir vídeo y saltar al siguiente - - + + &Pause &Pausar - - + + Pause playback Pausar la reproducción - - + &Full Screen - &Pantalla completa + Pantalla &completa - + Go full screen Ir a pantalla completa - + &Compact mode Modo &compacto - + Hide the playlist and the toolbar Ocultar la lista de reproducción y la barra de herramientas - + Open the &YouTube page Abrir la página de &YouTube - + Go to the YouTube video page and pause playback - Ir a la página de videos YouTube y pausar la reproducción + Ir a la página del vídeo en YouTube y pausar la reproducción - + Copy the YouTube &link Copiar el en&lace de YouTube - + Copy the current video YouTube link to the clipboard - Copiar el enlace actual de video de YouTube en el portapapeles + Copiar el enlace a YouTube del vídeo actual en el portapapeles - + Copy the video stream &URL - Copiar el &URL de flujo de video + Copiar la &URL de flujo del vídeo - + Copy the current video stream URL to the clipboard - Copiar el URL actual del flujo de video en el portapapeles + Copiar la URL actual del flujo del vídeo al portapapeles + + + + Find video &parts + Encontrar &partes de vídeos + + + + Find other video parts hopefully in the right order + Encontrar otras partes de vídeos, con suerte en el orden correcto - + &Remove &Eliminar - + Remove the selected videos from the playlist - Eliminar los videos seleccionados de la lista de reproducción + Quitar los vídeos seleccionados de la lista de reproducción - + Move &Up - Mover &Arriba + &Subir - + Move up the selected videos in the playlist - Mover hacia arriba en la lista de reproducción los videos seleccionados + Mover hacia arriba en la lista de reproducción los vídeos seleccionados - + Move &Down - Mover &Abajo + &Bajar - + Move down the selected videos in the playlist - Mover hacia abajo en la lista de reproducción los videos seleccionados + Mover hacia abajo en la lista de reproducción los vídeos seleccionados - + &Clear recent searches &Limpiar búsquedas recientes - + Clear the search history. Cannot be undone. Limpiar el historial de búsquedas. No se puede deshacer. - + &Quit &Salir - + Ctrl+Q Ctrl+Q - + Bye Hasta luego - + &Website - &Sitio web + Sitio &web - + %1 on the Web %1 en la web - + Make a &donation Hacer una &donación - + Please support the continued development of %1 - Por favor apoye el desarrollo continuo de %1 + Apoye el desarrollo continuo de %1 - + &About &Acerca de - + Info about %1 Información acerca de %1 - + Search Buscar - + Mute volume Silenciar - + Ctrl+M Ctrl+M - - + + &Downloads &Descargas - + Show details about video downloads - Mostrar detalles sobre las descargas de videos + Mostrar detalles sobre las descargas de vídeos - + &Download - &Descarga + &Descargar - + Download the current video - Descargar el video actual + Descargar el vídeo actual - + + Share the current video using %1 + Compartir el vídeo actual usando %1 + + + + &Email + &Correo-e + + + + Email + Correo-e + + + &Application &Aplicación - + + &Playback + &Reproducción + + + &Playlist - &Lista de reproducción + &Lista de reprod. - + &Video - &Video + &Vídeo + + + + &View + &Ver + + + + &Share + &Compartir - + &Help - &Ayuda + Ay&uda - + Press %1 to raise the volume, %2 to lower it - Presione %1 para aumentar el volumen, %2 para reducirlo + Pulse %1 para aumentar el volumen o %2 para reducirlo - - + + Opening %1 Abriendo %1 - + Do you want to exit %1 with a download in progress? - ¿Desea salir de %1 con una descarga en curso? + ¿Quiere salir de %1 con una descarga en curso? - + If you close %1 now, this download will be cancelled. Si cierra %1 ahora, esta descarga será cancelada. - + Close and cancel download Cerrar y cancelar descarga - + Wait for download to finish - Esperando que finalice la descarga + Esperando a que finalice la descarga + + + + Leave &Full Screen + &Salir de pantalla completa + + + + %1 version %2 is now available. + %1 versión %2 ya está disponible. + + + + Remind me later + Recordarme después + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + Para obtener la versión actualizada, descargue %1 de nuevo desde el enlace que recibió por correo y reinstale. - - Fatal error: %1 - Error fatal:%1 + + Update + Actualizar - + Error: %1 Error: %1 - + &Play &Reproducir - + Resume playback Continuar la reproducción - - Exit &Full Screen - Salir de &pantalla completa - - - + Remaining time: %1 Tiempo restante: %1 - + Volume at %1% Volumen al %1% - + Volume is muted El volumen está silenciado - + Volume is unmuted El volumen no está silenciado - + Maximum video definition set to %1 - Resolución máxima de video fijada en %1 + Resolución máxima de video establecida en %1 - + Your privacy is now safe - Su intimidad ahora está segura + Su privacidad ahora está asegurada - + Downloads complete Descargas completas @@ -605,57 +713,80 @@ MediaView - + Most relevant Más destacados - + Most recent Más recientes - + Most viewed Más vistos - + You can now paste the YouTube link into another application Ahora puede pegar el enlace de YouTube en otra aplicación - + You can now paste the video stream URL into another application - Ahora puede pegar el URl del flujo de video en otra aplicación + Ahora puede pegar la URL del flujo de vídeo en otra aplicación - + The link will be valid only for a limited time. - El enlace es válido sólo por un tiempo limitado. + El enlace es válido solo por un tiempo limitado. - + This is just the demo version of %1. Esto es solo la versión de prueba de %1. - + It allows you to test the application and see if it works for you. Le permite probar la aplicación y ver si le funciona. - + Continue Continuar - + + of + Used in video parts, as in '2 of 3' + de + + + + part + This is for video parts, as in 'Cool video - part 1' + parte + + + + episode + This is for video parts, as in 'Cool series - episode 1' + episodio + + + + Sent from %1 + Enviado desde %1 + + + Get the full version - Obtenga la versión completa + Obtener la versión completa - + Downloading %1 Descargando %1 @@ -663,7 +794,7 @@ NetworkAccess - + Network error: %1 Error de red: %1 @@ -671,52 +802,52 @@ PrettyItemDelegate - + %1 views %1 visualizaciones - + %1 of %2 (%3) — %4 %1 de %2 (%3) — %4 - + Preparing Preparando - + Failed - Fallido + Fallidas - + Completed - Completado + Completadas - + Stopped - Detenido + Detenidas - + Stop downloading Detener la descarga - + Show in %1 Mostrar en %1 - + Open parent folder - Abrir directorio superior + Abrir carpeta superior - + Restart downloading Reiniciar descarga @@ -724,7 +855,7 @@ SearchLineEdit - + Search Buscar @@ -732,58 +863,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, - Bienvenido a <a href='%1'>%2</a> + Bienvenido a <a href='%1'>%2</a>, - + Get the full version Obtener la versión completa - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - Ingrese + Escriba - + a keyword una palabra clave - + a channel un canal - + to start watching videos. - para empezar a visualizar videos. + para empezar a ver vídeos. - + Watch Ver - + Recent keywords - Palabra clave reciente + Palabras clave recientes - + Recent channels Canales recientes - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Está disponible una nueva versión de %1. Por favor <a href='%2'>actualice a la version %3</a> - - - + Make yourself comfortable Póngase cómodo @@ -791,12 +917,12 @@ Video - + Cannot get video stream for %1 - No se puede obtener el stream de video para %1 + No se puede obtener el flujo de vídeo para %1 - + Network error: %1 for %2 Error de red: %1 por %2 diff -Nru minitube-1.5/locale/fa.ts minitube-1.6/locale/fa.ts --- minitube-1.5/locale/fa.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/fa.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - - - - - Version %1 - نسخه %1 - - - - %1 is Free Software but its development takes precious time. - - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - - - - - Report bugs and send in your ideas to %1 - - - - - Icon designed by %1. - شمایل طراحی شده توسط %1. - - - - Compact mode contributed by %1. - - - - - HTTP proxy support contributed by %1. - - - - - Translated by %1 - ترجمه شده توسط %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - - - - - &Close - &بستن - - - - About - درباره - - - - What you always wanted to know about %1 and never dared to ask - - - - - ClearButton - - - Clear - پاکسازی - - - - DownloadItem - - - bytes - بایت - - - - KB - کیلوبایت - - - - MB - مگابایت - - - - bytes/sec - بایت بر ثانیه - - - - KB/sec - کیلوبایت بر ثانیه - - - - MB/sec - مگابایت بر ثانیه - - - - seconds - ثانیه - - - - minutes - دقیقه - - - - %4 %5 remaining - %4 %5 باقی مانده - - - - DownloadManager - - - This is just the demo version of %1. - - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - - - - - Continue - ادامه - - - - Get the full version - دریافت نسخه کامل - - - - %n Download(s) - %n بارگیری - - - - DownloadSettings - - - Change location... - تغییر مسیر... - - - - Choose the download location - انتخاب مسیر بارگیری - - - - Download location changed. - مسیر بارگیری تغییر کرد. - - - - Current downloads will still go in the previous location. - - - - - Downloading to: %1 - در حال بارگیری به: %1 - - - - DownloadView - - - - Downloads - بارگیری‌ها - - - - GlobalShortcuts - - - Play - شروع - - - - Pause - مکث - - - - Play/Pause - شروع/مکث - - - - Stop - توقف - - - - Stop playing after current track - توقف پخش پس از ترک فعلی - - - - Next track - ترک بعدی - - - - Previous track - ترک قبلی - - - - Increase volume - افزایش صدا - - - - Decrease volume - کاهش صدا - - - - Mute - بی‌صدا - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - در حال جستجو... - - - - Show %1 More - نمایش %1 بشتر - - - - No videos - هیچ ویدئویی وجود ندارد - - - - No more videos - ویدئوی بیشتری وجود ندارد - - - - LoadingWidget - - - Error - خطا - - - - MainWindow - - - &Stop - &توقف - - - - Stop playback and go back to the search view - - - - - S&kip - &رد کردن - - - - Skip to the next video - رد کردن و رفتن به ویدئوی بعدی - - - - - &Pause - &مکث - - - - - Pause playback - - - - - - &Full Screen - &تمام صفحه - - - - Go full screen - - - - - &Compact mode - حالت &فشرده - - - - Hide the playlist and the toolbar - - - - - Open the &YouTube page - - - - - Go to the YouTube video page and pause playback - - - - - Copy the YouTube &link - - - - - Copy the current video YouTube link to the clipboard - - - - - Copy the video stream &URL - - - - - Copy the current video stream URL to the clipboard - - - - - &Remove - &حذف - - - - Remove the selected videos from the playlist - - - - - Move &Up - - - - - Move up the selected videos in the playlist - - - - - Move &Down - - - - - Move down the selected videos in the playlist - - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - - - - - &Quit - &خروج - - - - Ctrl+Q - - - - - Bye - خداحافظ - - - - &Website - &درباره - - - - %1 on the Web - - - - - Make a &donation - - - - - Please support the continued development of %1 - - - - - &About - - - - - Info about %1 - - - - - Search - جستجو - - - - Mute volume - - - - - Ctrl+M - - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - - - - - &Playlist - - - - - &Video - - - - - &Help - - - - - Press %1 to raise the volume, %2 to lower it - - - - - - Opening %1 - - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - - - - - Error: %1 - - - - - &Play - - - - - Resume playback - - - - - Exit &Full Screen - - - - - Remaining time: %1 - - - - - Volume at %1% - - - - - Volume is muted - - - - - Volume is unmuted - - - - - Maximum video definition set to %1 - - - - - Your privacy is now safe - - - - - Downloads complete - - - - - MediaView - - - Most relevant - - - - - Most recent - - - - - Most viewed - - - - - You can now paste the YouTube link into another application - - - - - You can now paste the video stream URL into another application - - - - - The link will be valid only for a limited time. - - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - - - - - PrettyItemDelegate - - - %1 views - - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - - - - - Stop downloading - - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - - - - - Recent keywords - - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - - - - - Make yourself comfortable - - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - - - - \ No newline at end of file diff -Nru minitube-1.5/locale/fi_FI.ts minitube-1.6/locale/fi_FI.ts --- minitube-1.5/locale/fi_FI.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/fi_FI.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Selaimen ulkopuolellakin on elämää! - + Version %1 Versionumero: %1 - + %1 is Free Software but its development takes precious time. %1 on ilmainen ohjelma,mutta sen kehittäminen vie kallista aika. - + Please <a href='%1'>donate</a> to support the continued development of %2. Voit tukea %2n kehityksen jatkumista tekemällä <a href='%1'>lahjoituksen</a>. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Ilmoita bugit ja kerro ideasi osoitteeseen %1 - + Icon designed by %1. Kuvakkeen suunnitteli %1. - + Compact mode contributed by %1. Kompaktin tilan teki %1. - + HTTP proxy support contributed by %1. HTTP-välityspalvelintuen teki %1. - - Translated by %1 - Käännöksen teki %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Julkaistu <a href='%1'>GNU General Public License</a> -lisenssillä - + &Close &Sulje - + About Tietoja - + What you always wanted to know about %1 and never dared to ask Mitä olet aina halunnut tietää %1sta, muttet ole koskaan kehdannut kysyä @@ -71,55 +86,93 @@ ClearButton - + Clear Tyhjennä + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes tavua - + KB Kt - + MB Mt - + bytes/sec tavua/sekunnissa - + KB/sec Kt/s - + MB/sec Mt/s - + seconds sekunttia - + minutes minuuttia - + %4 %5 remaining %4 %5 jäljellä @@ -127,55 +180,55 @@ DownloadManager - + This is just the demo version of %1. Tämä on vain kokeilu versio %1sta. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Voit ladata vain videoita jotka ovat lyhyempiä kuin %1 minuuttia, jotta voit testata lataus ominaisuutta. - + Continue Jatka - + Get the full version Hanki täysi versio - + %n Download(s) - %n Lataus(ta) + %n Lataus(ta) DownloadSettings - + Change location... Vaihda sijaintia... - + Choose the download location Valitse latausten sijainti - + Download location changed. Lataus sijaintia on muutettu. - + Current downloads will still go in the previous location. Nykyiset lataukset menevät vanhaan sijaintiin. - + Downloading to: %1 Ladataan kansioon: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Lataukset @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Toista - + Pause Keskeytä - + Play/Pause Toista/Keskeytä - + Stop Pysäytä - + Stop playing after current track Pysäytä toisto nykyisen kappaleen jälkeen - + Next track Seuraava kappale - + Previous track Edellinen kappale - + Increase volume Lisää äänen voimakkuutta - + Decrease volume Vähennä äänen voimakkuutta - + Mute Mykistä - + Seek forward Kelaa eteenpäin - + Seek backward Kelaa taaksepäin @@ -255,22 +308,22 @@ ListModel - + Searching... Etsitään... - + Show %1 More Näytä %1 lisää - + No videos Ei videoita - + No more videos Ei enempää videoita @@ -278,7 +331,7 @@ LoadingWidget - + Error Virhe @@ -286,317 +339,372 @@ MainWindow - + &Stop &Pysäytä - + Stop playback and go back to the search view Pysäytä toisto ja palaa hakuruutuun - + S&kip &Hyppää yli - + Skip to the next video Siirry seuraavaan videoon - - + + &Pause &Keskeytä - - + + Pause playback Keskeytä toisto - - + &Full Screen &Kokoruutu - + Go full screen Siirry kokoruututilaan - + &Compact mode &Kompakti tila - + Hide the playlist and the toolbar Piilota toistolista sekä työkalupalkki - + Open the &YouTube page Avaa &Youtube -sivu - + Go to the YouTube video page and pause playback Keskeytä toisto ja mene videon YouTube -sivulle - + Copy the YouTube &link Kopio YouTube -&linkki - + Copy the current video YouTube link to the clipboard Kopio nykyisen videon YouTube -linkki leikepöydälle - + Copy the video stream &URL Kopioi videovirran osoite (&URL) - + Copy the current video stream URL to the clipboard Kopioi nykyisen videvirran osoite (URL) leikepöydälle - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Poista - + Remove the selected videos from the playlist Poista valitut videot toistolistalta - + Move &Up Siirrä &Ylös - + Move up the selected videos in the playlist Siirrä valitut videot ylemmäksi toistolistalla - + Move &Down Sirrä &Alas - + Move down the selected videos in the playlist Siirrä valitut videot alemmaksi toistolistalla - + &Clear recent searches - + - + Clear the search history. Cannot be undone. Tyhjennä hakuhistoria. Tätä toimintoa ei voi kumota. - + &Quit &Lopeta - + Ctrl+Q Ctrl+Q - + Bye Näkemiin - + &Website &Nettisivusto - + %1 on the Web %1 netissä - + Make a &donation Tee &lahjoitus - + Please support the continued development of %1 Tue %1n jatkokehitystä - + &About &Tietoja - + Info about %1 Tietoja %1sta - + Search Etsi - + Mute volume Mykistä ääni - + Ctrl+M Ctrl+M - - + + &Downloads &Lataukset - + Show details about video downloads Näytä tietoja latauksista - + &Download &Lataa - + Download the current video Lataa nykyinen video - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Sovellus - + + &Playback + + + + &Playlist &Toistolista - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Apua - + Press %1 to raise the volume, %2 to lower it Paina näppäinyhdistelmää %1 nostaaksesi tai %2 laskeaksesi äänenvoimakkuutta - - + + Opening %1 Avataan kohdetta %1 - + Do you want to exit %1 with a download in progress? Tahdotko lopettaa vaikka %1 lataus(ta) on kesken? - + If you close %1 now, this download will be cancelled. Jos suljet %1n nyt niin tämä lataus keskeytetään. - + Close and cancel download Sulje ja keskeytä lataus - + Wait for download to finish Odota latauksen valmistumista - - Fatal error: %1 - Kohtalokas virhe: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Virhe: %1 - + &Play &Toista - + Resume playback Jatka toistoa - - Exit &Full Screen - Poistu &kokoruudun tilasta - - - + Remaining time: %1 Aikaa jäljellä: %1 - + Volume at %1% Äänentaso: %1% - + Volume is muted Ääni on mykistetty - + Volume is unmuted Ääni ei ole mykistetty - + Maximum video definition set to %1 Korkein videonlaatu on rajoitettu tarkkuteen %1 - + Your privacy is now safe Yksityisyytesi on nyt turvattu - + Downloads complete Lataukset ovat valmistuneet @@ -604,57 +712,80 @@ MediaView - + Most relevant Osuvin - + Most recent Viimeisin - + Most viewed Katsotuin - + You can now paste the YouTube link into another application Voit nyt liittää YouTube-linkin johonkin toiseen sovellukseen - + You can now paste the video stream URL into another application Voit nyt liittää videovirran osoitteen (URL) johonkin toiseen sovellukseen - + The link will be valid only for a limited time. Osoite on käytössä vain rajoitetun ajan. - + This is just the demo version of %1. Tämä on vain %1n kokeiluversio. - + It allows you to test the application and see if it works for you. Voit kokeilla ohjelmaa nähdäksesi että toimiiko se. - + Continue Jatka - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Hanki täysi versio - + Downloading %1 Ladataan %1ta/tä @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Verkkovirhe: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views Katsottu %1 kertaa - + %1 of %2 (%3) — %4 - + - + Preparing Valmistellaan - + Failed Epäonnistui - + Completed Valmis - + Stopped Pysäytetty - + Stop downloading Pysäytä lataus - + Show in %1 Avaa %1ssa/ssä - + Open parent folder Avaa yläkansio - + Restart downloading Käynnistä lataus uudelleen @@ -723,7 +854,7 @@ SearchLineEdit - + Search Etsi @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Tervetuloa <a href='%1'>%2en</a> - + Get the full version - + - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - + - + a keyword - + - + a channel - + - + to start watching videos. - + - + Watch Katso - + Recent keywords Viimeisimmät hakusanat - + Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Uusi versio %1sta on saatavilla. <a href='%2'>Päivitäthän versioon %3</a> + - + Make yourself comfortable Tee olosi kotoisaksi @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 - + - + Network error: %1 for %2 Verkkovirhe: "%1" "%2"lle diff -Nru minitube-1.5/locale/fi.ts minitube-1.6/locale/fi.ts --- minitube-1.5/locale/fi.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/fi.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Selaimen ulkopuolellakin on elämää! - - - - Version %1 - Versionumero: %1 - - - - %1 is Free Software but its development takes precious time. - %1 on vapaa ohjelmisto, mutta sen kehitys vie kallisarvoista aikaa. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - Tue %2 :n jatkuvaa kehitystä <a href='%1'>lahjoittamalla</a>. - - - - Report bugs and send in your ideas to %1 - Ilmoita viat ja kerro ehdotukseksi osoitteeseen %1 - - - - Icon designed by %1. - Kuvakkeen suunnitteli %1 - - - - Compact mode contributed by %1. - - - - - HTTP proxy support contributed by %1. - HTTP-välityspalvelintuen teki %1 - - - - Translated by %1 - Käännöksen ovat tehneet %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - Julkaistu <a href='%1'>GNU General Public License</a> lisenssin alaisena - - - - &Close - &Sulje - - - - About - Tietoja - - - - What you always wanted to know about %1 and never dared to ask - Mitä olet aina halunnut tietää %1sta, muttet ole koskaan kehdannut kysyä - - - - ClearButton - - - Clear - Pyyhi - - - - DownloadItem - - - bytes - bittiä - - - - KB - Kt - - - - MB - Mt - - - - bytes/sec - bittiä/sek. - - - - KB/sec - Kt/sek. - - - - MB/sec - Mt/sek. - - - - seconds - sekuntia - - - - minutes - minuuttia - - - - %4 %5 remaining - %4 %5 jäljellä - - - - DownloadManager - - - This is just the demo version of %1. - Tämä on %1-ohjelman kokeiluversio. - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - Voit ladata vain videoita jotka ovat lyhyempiä kuin %1 minuuttia, jotta voit testata latausominaisuutta. - - - - Continue - Jatka - - - - Get the full version - - - - - %n Download(s) - %n lataus%n latausta - - - - DownloadSettings - - - Change location... - Muuta sijainti... - - - - Choose the download location - Valitse latauskansio - - - - Download location changed. - Latauskansio vaihdettu. - - - - Current downloads will still go in the previous location. - Nykyiskäynnissä olevat lataukset ladataan vanhaan latauskansioon. - - - - Downloading to: %1 - Ladataan: %1 - - - - DownloadView - - - - Downloads - Lataukset - - - - GlobalShortcuts - - - Play - Toista - - - - Pause - Keskeytä - - - - Play/Pause - Toista/Keskeytä - - - - Stop - Pysäytä - - - - Stop playing after current track - Pysäytä toisto nykyisen kappaleen jälkeen - - - - Next track - Seuraava kappale - - - - Previous track - Edellinen kappale - - - - Increase volume - Lisää äänenvoimakkuutta - - - - Decrease volume - Vähennä äänenvoimakkuutta - - - - Mute - Mykistä - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - Haetaan... - - - - Show %1 More - - - - - No videos - Ei videoita - - - - No more videos - - - - - LoadingWidget - - - Error - Virhe - - - - MainWindow - - - &Stop - &Pysäytä - - - - Stop playback and go back to the search view - Pysäytä soittolista ja palaa hakuun - - - - S&kip - O&hita - - - - Skip to the next video - Siirry seuraavaan videoon - - - - - &Pause - &Keskeytä - - - - - Pause playback - Keskeytä soittolista - - - - - &Full Screen - &Kokoruututila - - - - Go full screen - Näytä kokoruudulla - - - - &Compact mode - - - - - Hide the playlist and the toolbar - - - - - Open the &YouTube page - - - - - Go to the YouTube video page and pause playback - Mene YouTube-videosivulle ja keskeytä soittolista - - - - Copy the YouTube &link - - - - - Copy the current video YouTube link to the clipboard - - - - - Copy the video stream &URL - - - - - Copy the current video stream URL to the clipboard - - - - - &Remove - - - - - Remove the selected videos from the playlist - - - - - Move &Up - - - - - Move up the selected videos in the playlist - - - - - Move &Down - - - - - Move down the selected videos in the playlist - - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - - - - - &Quit - - - - - Ctrl+Q - Ctrl+Q - - - - Bye - - - - - &Website - &Kotisivu - - - - %1 on the Web - - - - - Make a &donation - - - - - Please support the continued development of %1 - - - - - &About - - - - - Info about %1 - - - - - Search - - - - - Mute volume - - - - - Ctrl+M - - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - - - - - &Playlist - - - - - &Video - - - - - &Help - &Ohje - - - - Press %1 to raise the volume, %2 to lower it - - - - - - Opening %1 - - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - - - - - Error: %1 - - - - - &Play - - - - - Resume playback - - - - - Exit &Full Screen - - - - - Remaining time: %1 - - - - - Volume at %1% - - - - - Volume is muted - - - - - Volume is unmuted - - - - - Maximum video definition set to %1 - - - - - Your privacy is now safe - - - - - Downloads complete - - - - - MediaView - - - Most relevant - - - - - Most recent - - - - - Most viewed - - - - - You can now paste the YouTube link into another application - - - - - You can now paste the video stream URL into another application - - - - - The link will be valid only for a limited time. - - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - - - - - PrettyItemDelegate - - - %1 views - %1 näyttökertaa - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - Pysäytetty - - - - Stop downloading - Pysäytä lataus - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - - - - - Recent keywords - - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - - - - - Make yourself comfortable - - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - - - - \ No newline at end of file diff -Nru minitube-1.5/locale/fr_FR.ts minitube-1.6/locale/fr_FR.ts --- minitube-1.5/locale/fr_FR.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/fr_FR.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Il y a une vie après le navigateur ! - - - - Version %1 - Version %1 - - - - %1 is Free Software but its development takes precious time. - %1 est un Logiciel Libre, mais son développement prend un temps précieux. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - Merci <a href='%1'>d'envoyer vos dons</a> pour aider à poursuivre le développement de %2. - - - - Report bugs and send in your ideas to %1 - Rapportez les bugs et envoyez vos idées à %1 - - - - Icon designed by %1. - Icône dessinée par %1. - - - - Compact mode contributed by %1. - Mode compact développé par %1. - - - - HTTP proxy support contributed by %1. - Support du proxy HTTP apporté par %1. - - - - Translated by %1 - Traduction par %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - Proposé sous licence <a href='%1'>GNU General Public License</a> - - - - &Close - &Fermer - - - - About - A propos - - - - What you always wanted to know about %1 and never dared to ask - Ce que vous avez toujours voulu savoir à propos de %1 et que vous n'avez jamais osé demander - - - - ClearButton - - - Clear - Effacer - - - - DownloadItem - - - bytes - bytes - - - - KB - KB - - - - MB - MB - - - - bytes/sec - bytes/sec - - - - KB/sec - KB/sec - - - - MB/sec - MB/sec - - - - seconds - secondes - - - - minutes - minutes - - - - %4 %5 remaining - %4 %5 remaining - - - - DownloadManager - - - This is just the demo version of %1. - Il s'agit seulement de la version démo de %1. - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - Vous ne pouvez télécharger que des vidéos plus courtes que %1 minutes de sorte que vous pouvez tester la fonctionnalité de téléchargement. - - - - Continue - Continuer - - - - Get the full version - Obtenir la version complète - - - - %n Download(s) - %n Téléchargement%n Téléchargements - - - - DownloadSettings - - - Change location... - Changer d'emplacement... - - - - Choose the download location - Choisissez l'emplacement de téléchargement - - - - Download location changed. - Emplacement de téléchargement changé. - - - - Current downloads will still go in the previous location. - Les téléchargements en cours iront à l'emplacement précédent. - - - - Downloading to: %1 - Téléchargement de : %1 - - - - DownloadView - - - - Downloads - Téléchargements - - - - GlobalShortcuts - - - Play - Lancer - - - - Pause - Pause - - - - Play/Pause - Lance/Pause - - - - Stop - Arrêter - - - - Stop playing after current track - Arrêtez après la plage en cours - - - - Next track - Plage suivante - - - - Previous track - Plage précédente - - - - Increase volume - Augmenter le volume - - - - Decrease volume - Diminuer le volume - - - - Mute - Silence - - - - Seek forward - Avancer - - - - Seek backward - Retour - - - - ListModel - - - Searching... - Recherche... - - - - Show %1 More - Afficher %1 de plus - - - - No videos - Pas de vidéos - - - - No more videos - Plus de vidéos - - - - LoadingWidget - - - Error - Erreur - - - - MainWindow - - - &Stop - &Stop - - - - Stop playback and go back to the search view - Arrêter et aller à la page de recherche - - - - S&kip - &Sauter - - - - Skip to the next video - Passer à la vidéo suivante - - - - - &Pause - &Pause - - - - - Pause playback - Mettre en pause - - - - - &Full Screen - &Plein écran - - - - Go full screen - Mettre en plein écran - - - - &Compact mode - Mode &compact - - - - Hide the playlist and the toolbar - Cacher la playlist - - - - Open the &YouTube page - Ouvrir la page &Youtube - - - - Go to the YouTube video page and pause playback - Aller à la page de la vidéo Youtube et mettre en pause - - - - Copy the YouTube &link - Copier le &lien Youtube - - - - Copy the current video YouTube link to the clipboard - Copier l'adresse de la vidéo YouTube courante dans le presse-papier - - - - Copy the video stream &URL - Copier l'adresse du flux &vidéo - - - - Copy the current video stream URL to the clipboard - Copier l'adresse du flux vidéo courant dans le presse-papier - - - - &Remove - &Supprimer - - - - Remove the selected videos from the playlist - Supprimer la vidéo sélectionnée de la liste de lecture - - - - Move &Up - Déplacer vers les &haut - - - - Move up the selected videos in the playlist - Déplacer la vidéo sélectionnée vers le haut dans la liste de lecture - - - - Move &Down - Déplacer vers les &bas - - - - Move down the selected videos in the playlist - Déplacer la vidéo sélectionnée vers le bas dans la liste de lecture - - - - &Clear recent searches - &Effacer les dernières recherches - - - - Clear the search history. Cannot be undone. - Effacer l'historique de recherche. Opération irréversible. - - - - &Quit - &Quitter - - - - Ctrl+Q - Ctrl+Q - - - - Bye - Au revoir - - - - &Website - Site &Web - - - - %1 on the Web - %1 sur le Web - - - - Make a &donation - Faire un &don - - - - Please support the continued development of %1 - Merci d'aider à poursuivre le développement de %1 - - - - &About - &A propos - - - - Info about %1 - A propos de %1 - - - - Search - Chercher - - - - Mute volume - Couper le son - - - - Ctrl+M - Ctrl+M - - - - - &Downloads - &Téléchargements - - - - Show details about video downloads - Voir les détails à propos des téléchargements de la vidéo - - - - &Download - &Téléchargement - - - - Download the current video - Télécharger la vidéo en cours - - - - &Application - &Application - - - - &Playlist - &Liste de lecture - - - - &Video - &Video - - - - &Help - &Aide - - - - Press %1 to raise the volume, %2 to lower it - Appuyer sur %1 pour augmenter le volume, sur %2 pour le baisser - - - - - Opening %1 - Ouverture de %1 - - - - Do you want to exit %1 with a download in progress? - Voulez-vous vraiment quitter %1 avec un téléchargement en cours ? - - - - If you close %1 now, this download will be cancelled. - Si vous fermez %1 maintenant, ce téléchargement sera annulé. - - - - Close and cancel download - Fermer et annuler le téléchargement - - - - Wait for download to finish - Attendez la fin du téléchargement - - - - Fatal error: %1 - Erreur fatale : %1 - - - - Error: %1 - Erreur : %1 - - - - &Play - &Jouer - - - - Resume playback - Relancer la lecture - - - - Exit &Full Screen - Quitter le &plein écran - - - - Remaining time: %1 - Temps restant : %1 - - - - Volume at %1% - Volume à %1 - - - - Volume is muted - Volume OFF - - - - Volume is unmuted - Volume ON - - - - Maximum video definition set to %1 - Résolution vidéo maximale fixée à %1 - - - - Your privacy is now safe - Votre confidentialité est maintenant respectée - - - - Downloads complete - Téléchargements terminés - - - - MediaView - - - Most relevant - Plus pertinent - - - - Most recent - Plus récent - - - - Most viewed - Plus vus - - - - You can now paste the YouTube link into another application - Vous pouvez maintenant copier l'adresse Youtube dans une autre application - - - - You can now paste the video stream URL into another application - Vous pouvez maintenant coller l'adresse du flux vidéo dans une autre application - - - - The link will be valid only for a limited time. - Le lien ne sera valide que pour un temps limité. - - - - This is just the demo version of %1. - C'est juste la version démo de %1. - - - - It allows you to test the application and see if it works for you. - Cela vous permet de tester l'application et voir si cela fonctionne pour vous. - - - - Continue - Continuer - - - - Get the full version - Obtenir la version complète - - - - Downloading %1 - %1 Téléchargement - - - - NetworkAccess - - - Network error: %1 - Erreur réseau : %1 - - - - PrettyItemDelegate - - - %1 views - %1 vues - - - - %1 of %2 (%3) — %4 - %1 de %2 (%3) — %4 - - - - Preparing - Préparation - - - - Failed - Échec - - - - Completed - Terminé - - - - Stopped - Arrêté - - - - Stop downloading - Arrêter le téléchargement - - - - Show in %1 - Montrer dans %1 - - - - Open parent folder - Ouvrir le dossier parent - - - - Restart downloading - Redémarrer le téléchargement - - - - SearchLineEdit - - - Search - Chercher - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - Bienvenue sur <a href='%1'>%2</a>, - - - - Get the full version - Obtenir la version complète - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - Entrer - - - - a keyword - un mot-clé - - - - a channel - une chaîne - - - - to start watching videos. - pour commencer à regarder des vidéos. - - - - Watch - Regarder - - - - Recent keywords - Derniers mots-clés - - - - Recent channels - Chaînes récentes - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Une nouvelle version de %1 est disponible. Merci <a href='%2'>de mettre à jour pour la version %3</a> - - - - Make yourself comfortable - Installez-vous confortablement - - - - Video - - - Cannot get video stream for %1 - Impossible d'obtenir le flux vidéo de %1 - - - - Network error: %1 for %2 - Erreur réseau : %1 pour %2 - - - \ No newline at end of file diff -Nru minitube-1.5/locale/fr.ts minitube-1.6/locale/fr.ts --- minitube-1.5/locale/fr.ts 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/locale/fr.ts 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,929 @@ + +UTF-8 + + AboutView + + + There's life outside the browser! + Il y a une vie après le navigateur ! + + + + Version %1 + Version %1 + + + + %1 is Free Software but its development takes precious time. + %1 est un Logiciel Libre, mais son développement prend un temps précieux. + + + + Please <a href='%1'>donate</a> to support the continued development of %2. + Merci <a href='%1'>d'envoyer vos dons</a> pour aider à poursuivre le développement de %2. + + + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + + Report bugs and send in your ideas to %1 + Rapportez les bugs et envoyez vos idées à %1 + + + + Icon designed by %1. + Icône dessinée par %1. + + + + Compact mode contributed by %1. + Mode compact développé par %1. + + + + HTTP proxy support contributed by %1. + Support du proxy HTTP apporté par %1. + + + + Released under the <a href='%1'>GNU General Public License</a> + Proposé sous licence <a href='%1'>GNU General Public License</a> + + + + &Close + &Fermer + + + + About + A propos + + + + What you always wanted to know about %1 and never dared to ask + Ce que vous avez toujours voulu savoir à propos de %1 et que vous n'avez jamais osé demander + + + + ClearButton + + + Clear + Effacer + + + + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + + DownloadItem + + + bytes + bytes + + + + KB + KB + + + + MB + MB + + + + bytes/sec + bytes/sec + + + + KB/sec + KB/sec + + + + MB/sec + MB/sec + + + + seconds + secondes + + + + minutes + minutes + + + + %4 %5 remaining + %4 %5 remaining + + + + DownloadManager + + + This is just the demo version of %1. + Il s'agit seulement de la version démo de %1. + + + + It can only download videos shorter than %1 minutes so you can test the download functionality. + Vous ne pouvez télécharger que des vidéos plus courtes que %1 minutes de sorte que vous pouvez tester la fonctionnalité de téléchargement. + + + + Continue + Continuer + + + + Get the full version + Obtenir la version complète + + + + %n Download(s) + %n Téléchargement%n Téléchargements + + + + DownloadSettings + + + Change location... + Changer d'emplacement... + + + + Choose the download location + Choisissez l'emplacement de téléchargement + + + + Download location changed. + Emplacement de téléchargement changé. + + + + Current downloads will still go in the previous location. + Les téléchargements en cours iront à l'emplacement précédent. + + + + Downloading to: %1 + Téléchargement de : %1 + + + + DownloadView + + + + Downloads + Téléchargements + + + + GlobalShortcuts + + + Play + Lancer + + + + Pause + Pause + + + + Play/Pause + Lance/Pause + + + + Stop + Arrêter + + + + Stop playing after current track + Arrêtez après la plage en cours + + + + Next track + Plage suivante + + + + Previous track + Plage précédente + + + + Increase volume + Augmenter le volume + + + + Decrease volume + Diminuer le volume + + + + Mute + Silence + + + + Seek forward + Avancer + + + + Seek backward + Retour + + + + ListModel + + + Searching... + Recherche... + + + + Show %1 More + Afficher %1 de plus + + + + No videos + Pas de vidéos + + + + No more videos + Plus de vidéos + + + + LoadingWidget + + + Error + Erreur + + + + MainWindow + + + &Stop + &Stop + + + + Stop playback and go back to the search view + Arrêter et aller à la page de recherche + + + + S&kip + &Sauter + + + + Skip to the next video + Passer à la vidéo suivante + + + + + &Pause + &Pause + + + + + Pause playback + Mettre en pause + + + + &Full Screen + &Plein écran + + + + Go full screen + Mettre en plein écran + + + + &Compact mode + Mode &compact + + + + Hide the playlist and the toolbar + Cacher la playlist + + + + Open the &YouTube page + Ouvrir la page &Youtube + + + + Go to the YouTube video page and pause playback + Aller à la page de la vidéo Youtube et mettre en pause + + + + Copy the YouTube &link + Copier le &lien Youtube + + + + Copy the current video YouTube link to the clipboard + Copier l'adresse de la vidéo YouTube courante dans le presse-papier + + + + Copy the video stream &URL + Copier l'adresse du flux &vidéo + + + + Copy the current video stream URL to the clipboard + Copier l'adresse du flux vidéo courant dans le presse-papier + + + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + + &Remove + &Supprimer + + + + Remove the selected videos from the playlist + Supprimer la vidéo sélectionnée de la liste de lecture + + + + Move &Up + Déplacer vers les &haut + + + + Move up the selected videos in the playlist + Déplacer la vidéo sélectionnée vers le haut dans la liste de lecture + + + + Move &Down + Déplacer vers les &bas + + + + Move down the selected videos in the playlist + Déplacer la vidéo sélectionnée vers le bas dans la liste de lecture + + + + &Clear recent searches + &Effacer les dernières recherches + + + + Clear the search history. Cannot be undone. + Effacer l'historique de recherche. Opération irréversible. + + + + &Quit + &Quitter + + + + Ctrl+Q + Ctrl+Q + + + + Bye + Au revoir + + + + &Website + Site &Web + + + + %1 on the Web + %1 sur le Web + + + + Make a &donation + Faire un &don + + + + Please support the continued development of %1 + Merci d'aider à poursuivre le développement de %1 + + + + &About + &A propos + + + + Info about %1 + A propos de %1 + + + + Search + Chercher + + + + Mute volume + Couper le son + + + + Ctrl+M + Ctrl+M + + + + + &Downloads + &Téléchargements + + + + Show details about video downloads + Voir les détails à propos des téléchargements de la vidéo + + + + &Download + &Téléchargement + + + + Download the current video + Télécharger la vidéo en cours + + + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + + &Application + &Application + + + + &Playback + + + + + &Playlist + &Liste de lecture + + + + &Video + &Video + + + + &View + + + + + &Share + + + + + &Help + &Aide + + + + Press %1 to raise the volume, %2 to lower it + Appuyer sur %1 pour augmenter le volume, sur %2 pour le baisser + + + + + Opening %1 + Ouverture de %1 + + + + Do you want to exit %1 with a download in progress? + Voulez-vous vraiment quitter %1 avec un téléchargement en cours ? + + + + If you close %1 now, this download will be cancelled. + Si vous fermez %1 maintenant, ce téléchargement sera annulé. + + + + Close and cancel download + Fermer et annuler le téléchargement + + + + Wait for download to finish + Attendez la fin du téléchargement + + + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + + Error: %1 + Erreur : %1 + + + + &Play + &Jouer + + + + Resume playback + Relancer la lecture + + + + Remaining time: %1 + Temps restant : %1 + + + + Volume at %1% + Volume à %1 + + + + Volume is muted + Volume OFF + + + + Volume is unmuted + Volume ON + + + + Maximum video definition set to %1 + Résolution vidéo maximale fixée à %1 + + + + Your privacy is now safe + Votre confidentialité est maintenant respectée + + + + Downloads complete + Téléchargements terminés + + + + MediaView + + + Most relevant + Plus pertinent + + + + Most recent + Plus récent + + + + Most viewed + Plus vus + + + + You can now paste the YouTube link into another application + Vous pouvez maintenant copier l'adresse Youtube dans une autre application + + + + You can now paste the video stream URL into another application + Vous pouvez maintenant coller l'adresse du flux vidéo dans une autre application + + + + The link will be valid only for a limited time. + Le lien ne sera valide que pour un temps limité. + + + + This is just the demo version of %1. + C'est juste la version démo de %1. + + + + It allows you to test the application and see if it works for you. + Cela vous permet de tester l'application et voir si cela fonctionne pour vous. + + + + Continue + Continuer + + + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + + Get the full version + Obtenir la version complète + + + + Downloading %1 + %1 Téléchargement + + + + NetworkAccess + + + Network error: %1 + Erreur réseau : %1 + + + + PrettyItemDelegate + + + %1 views + %1 vues + + + + %1 of %2 (%3) — %4 + %1 de %2 (%3) — %4 + + + + Preparing + Préparation + + + + Failed + Échec + + + + Completed + Terminé + + + + Stopped + Arrêté + + + + Stop downloading + Arrêter le téléchargement + + + + Show in %1 + Montrer dans %1 + + + + Open parent folder + Ouvrir le dossier parent + + + + Restart downloading + Redémarrer le téléchargement + + + + SearchLineEdit + + + Search + Chercher + + + + SearchView + + + Welcome to <a href='%1'>%2</a>, + Bienvenue sur <a href='%1'>%2</a>, + + + + Get the full version + Obtenir la version complète + + + + Enter + "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" + Entrer + + + + a keyword + un mot-clé + + + + a channel + une chaîne + + + + to start watching videos. + pour commencer à regarder des vidéos. + + + + Watch + Regarder + + + + Recent keywords + Derniers mots-clés + + + + Recent channels + Chaînes récentes + + + + Make yourself comfortable + Installez-vous confortablement + + + + Video + + + Cannot get video stream for %1 + Impossible d'obtenir le flux vidéo de %1 + + + + Network error: %1 for %2 + Erreur réseau : %1 pour %2 + + + \ No newline at end of file diff -Nru minitube-1.5/locale/gl.ts minitube-1.6/locale/gl.ts --- minitube-1.5/locale/gl.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/gl.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Existe vida máis aló do navegador! - + Version %1 Versión %1 - + %1 is Free Software but its development takes precious time. %1 é Software libre, mais o seu desenvolvemento leva un tempo precioso. - + Please <a href='%1'>donate</a> to support the continued development of %2. Faga unha <a href='%1'>doazón</a> para axudar na continuación do desenvolvemento de %2. - + + You may want to try my other apps as well: + Pode querer probar tamén outros aplicativos meus: + + + + %1, a YouTube music player + %1, un reprodutor de música de YouTube + + + + %1, a music player + %1, un reprodutor de música + + + + Translate %1 to your native language using %2 + Traducir %1 ao seu idioma empregando %2 + + + Report bugs and send in your ideas to %1 Envie os seus informes de erros ou as súas ideas a %1 - + Icon designed by %1. Icona deseñada por %1. - + Compact mode contributed by %1. Modo compacto aportado por %1. - + HTTP proxy support contributed by %1. Compatibilidade con proxy HTTP aportado por %1. - - Translated by %1 - Traducido por %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Publicado baixo a <a href='%1'>Licenza pública Xeral GNU</a> - + &Close &Pechar - + About Sobre - + What you always wanted to know about %1 and never dared to ask O que vostede sempre quixo saber sobre %1 e nunca se atreveu a preguntar @@ -71,55 +86,93 @@ ClearButton - + Clear Limpar + DemoStartupView + + + Please license %1 + Licenza %1 + + + + This demo has expired. + Esta demo caducou. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + A versión completa permite descargar vídeos con máis de %1 minutos e velos sen interrupcións. + + + + This demo will expire in %1 days. + Esta demo vai caducar en %1 días. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Ao comprar a versión completa, tamén vai apoiar o traballo arreo que puxen en crear %1. + + + + Use Demo + Usar a demostración + + + + Get the full version + Obter a versión completa + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec bytes/seg - + KB/sec KB/seg - + MB/sec MB/seg - + seconds segundos - + minutes minutos - + %4 %5 remaining %4 %5 restantes @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Isto é só a versión demo de %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Só se poden descargar vídeos curtos de menos de %1 minutos para que poida probar a utilidade de descargas. - + Continue Continuar - + Get the full version Obter a versión completa - + %n Download(s) %n Descarga%n Descargas @@ -156,27 +209,27 @@ DownloadSettings - + Change location... Cambiar a localización... - + Choose the download location Escolla a localización da descarga - + Download location changed. Cambiada a localización da descarga. - + Current downloads will still go in the previous location. A descarga actual aínda se fai na localización anterior. - + Downloading to: %1 Descargando en: %1 @@ -184,8 +237,8 @@ DownloadView - - + + Downloads Descargas @@ -193,62 +246,62 @@ GlobalShortcuts - + Play Reproducir - + Pause Deter - + Play/Pause Reproducir/deter - + Stop Parar - + Stop playing after current track Parar a reprodución despois da pista actual - + Next track Seguinte pista - + Previous track Pista anterior - + Increase volume Aumentar volume - + Decrease volume Diminuír volume - + Mute Silenciar - + Seek forward Buscar cara adiante - + Seek backward Buscar cara atrás @@ -256,22 +309,22 @@ ListModel - + Searching... Buscando... - + Show %1 More Mostrar %1 máis - + No videos Non hai vídeos - + No more videos Non hai máis vídeos @@ -279,7 +332,7 @@ LoadingWidget - + Error Erro @@ -287,317 +340,372 @@ MainWindow - + &Stop &Parar - + Stop playback and go back to the search view Parara a reprodución e volver á vista de busca - + S&kip &Saltar - + Skip to the next video Saltar ao seguinte vídeo - - + + &Pause &Deter - - + + Pause playback Deter a reprodución - - + &Full Screen &Pantalla completa - + Go full screen Ir á pantalla completa - + &Compact mode Modo &compacto - + Hide the playlist and the toolbar Agochar a lista de reprodución e a barra de tarefas - + Open the &YouTube page Abrir a páxina de &YouTube - + Go to the YouTube video page and pause playback Ir á páxina de vídeos YouTube e por en pausa a reprodución - + Copy the YouTube &link Copiar a &ligazón de YouTube - + Copy the current video YouTube link to the clipboard Copiar a ligazón actual de vídeo de YouTube no portapapeis - + Copy the video stream &URL Copiar o &URL de fluxo de vídeo - + Copy the current video stream URL to the clipboard Copiar o URL actual do fluxo de vídeo no portapapeis - + + Find video &parts + Buscar vídeos e &pezas + + + + Find other video parts hopefully in the right order + Buscar pezas doutro vídeo agardando sexan na orde correcta + + + &Remove &Retirar - + Remove the selected videos from the playlist Retirar os vídeos seleccionados da lista de reprodución - + Move &Up Mover cara &arriba - + Move up the selected videos in the playlist Mover cara arriba os vídeos seleccionados na lista de reprodución - + Move &Down Mover cara a&baixo - + Move down the selected videos in the playlist Mover cara abaixo os vídeos seleccionados na lista de reprodución - + &Clear recent searches &Limpar as buscas recentes - + Clear the search history. Cannot be undone. Limpar o historial de buscas. Non se pode desfacer. - + &Quit &Saír - + Ctrl+Q Ctrl+Q - + Bye Deica logo - + &Website Sitio &web - + %1 on the Web %1 na web - + Make a &donation Facer unha &doazón - + Please support the continued development of %1 Por favor apoie o desenvolvemento continuo de %1 - + &About &Sobre - + Info about %1 Información acerca de %1 - + Search Buscar - + Mute volume Silenciar o volume - + Ctrl+M Ctrl+M - - + + &Downloads &Descargas - + Show details about video downloads Mostrar os detalles sobre as descargas de vídeo - + &Download &Descarga - + Download the current video Descargando o vídeo actual - + + Share the current video using %1 + Compartir o vídeo actual empregando %1 + + + + &Email + &Correo-e + + + + Email + Correo-e + + + &Application &Aplicativo - + + &Playback + &Reproducir + + + &Playlist &Lista de reprodución - + &Video &Vídeo - + + &View + &Ver + + + + &Share + &Compartir + + + &Help A&xuda - + Press %1 to raise the volume, %2 to lower it Prema %1 para aumentar o volume, %2 para diminuílo - - + + Opening %1 Abrindo %1 - + Do you want to exit %1 with a download in progress? Desexa saír de %1 cunha descarga en proceso? - + If you close %1 now, this download will be cancelled. Se pecha %1 agora, esta descarga vai seren cancelada. - + Close and cancel download Pechar e cancelar a descarga - + Wait for download to finish Agardar a que remate a descarga - - Fatal error: %1 - Produciuse un erro fatal: %1 + + Leave &Full Screen + Abandonar a &pantalla completa + + + + %1 version %2 is now available. + %1 versión %2 xa está dispoñíbel. + + + + Remind me later + Lembrar máis adiante - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + Para obter a versión actualizada, descargue %1 de novo desde a ligazón que recibiu por correo electrónico e reinstale. + + + + Update + Actualizar + + + Error: %1 Produciuse un erro: %1 - + &Play &Reproducir - + Resume playback Continuar a reprodución - - Exit &Full Screen - Saír de &pantalla completa - - - + Remaining time: %1 Tempo restante: %1 - + Volume at %1% Volume ao %1% - + Volume is muted O volume está silenciado - + Volume is unmuted O volume non está silenciado - + Maximum video definition set to %1 Resolución máxima de vídeo fixada en %1 - + Your privacy is now safe A súa intimidade agora está segura - + Downloads complete Descargas completadas @@ -605,57 +713,80 @@ MediaView - + Most relevant Máis destacados - + Most recent Máis recentes - + Most viewed Máis vistos - + You can now paste the YouTube link into another application Agora pode pegar a ligazón de YouTube noutro aplicativo - + You can now paste the video stream URL into another application Agora pode pegar o URL do fluxo de vídeo noutro aplicativo - + The link will be valid only for a limited time. A ligazón ten validez só por un tempo limitado. - + This is just the demo version of %1. Isto é só a versión demo de %1. - + It allows you to test the application and see if it works for you. Permítelle probar o aplicativo e comprobar se vai ao seu xeito. - + Continue Continuar - + + of + Used in video parts, as in '2 of 3' + de + + + + part + This is for video parts, as in 'Cool video - part 1' + peza + + + + episode + This is for video parts, as in 'Cool series - episode 1' + episodio + + + + Sent from %1 + Enviado desde %1 + + + Get the full version Obter a versión completa - + Downloading %1 Descargando %1 @@ -663,7 +794,7 @@ NetworkAccess - + Network error: %1 Produciuse un erro na rede: %1 @@ -671,52 +802,52 @@ PrettyItemDelegate - + %1 views %1 visualizacións - + %1 of %2 (%3) — %4 %1 de %2 (%3) — %4 - + Preparing Preparando - + Failed Produciuse un fallo - + Completed Completada - + Stopped Detida - + Stop downloading Deter a descarga - + Show in %1 Mostrar en %1 - + Open parent folder Abrir o cartafol pai - + Restart downloading Reiniciar a descarga @@ -724,7 +855,7 @@ SearchLineEdit - + Search Buscar @@ -732,58 +863,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Benvido a <a href='%1'>%2</a, - + Get the full version Obter a versión completa - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Introduza - + a keyword unha palabra clave - + a channel - un canle + unha canle - + to start watching videos. para comezar a ver vídeos. - + Watch Ver - + Recent keywords Palabra clave recente - + Recent channels Canles recentes - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Está dispoñíbel unha nova versión de %1. <a href='%2'>Actualice cara a versión %3</a> - - - + Make yourself comfortable Síntase cómodo @@ -791,12 +917,12 @@ Video - + Cannot get video stream for %1 Non é posíbel obter o fluxo de vídeo de %1 - + Network error: %1 for %2 Produciuse un erro na rede: %1 por %2 diff -Nru minitube-1.5/locale/he_IL.ts minitube-1.6/locale/he_IL.ts --- minitube-1.5/locale/he_IL.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/he_IL.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! יש חיים מחוץ לדפדפן! - + Version %1 גרסה %1 - + %1 is Free Software but its development takes precious time. %1 הנה תכנה חופשית אך פיתוחה לוקח המון זמן יקר. - + Please <a href='%1'>donate</a> to support the continued development of %2. אנא <a href='%1'>תרמו</a> כדי לתמוך בהמשך הפיתוח של %2. - + + You may want to try my other apps as well: + מומלץ לנסות להשתמש בשאר היישומים שלי: + + + + %1, a YouTube music player + %1, נגן מוזיקה מיוטיוב + + + + %1, a music player + %1, נגן מוזיקה + + + + Translate %1 to your native language using %2 + ניתן לתרגם את %1 לשפת אמך באמצעות %2 + + + Report bugs and send in your ideas to %1 יש לדווח על באגים ורעיונות אל %1 - + Icon designed by %1. הסמל עוצב על ידי %1. - + Compact mode contributed by %1. המצב החסכוני נתרם על ידי %1. - + HTTP proxy support contributed by %1. התמיכה במתווך HTTP נתרמה על ידי %1. - - Translated by %1 - תורגם על ידי %1. - - - + Released under the <a href='%1'>GNU General Public License</a> התכנה שוחררה תחת תנאי <a href='%1'>הרישיון הציבורי הכללי של GNU</a> - + &Close &סגירה - + About על אודות - + What you always wanted to know about %1 and never dared to ask מה שתמיד רצית לדעת על %1 ולא העזת לשאול @@ -71,55 +86,93 @@ ClearButton - + Clear מחיקה + DemoStartupView + + + Please license %1 + נא לרכוש את %1 + + + + This demo has expired. + גרסת הדגמה זו פגה. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + הגרסה המלאה מאפשרת לך להוריד קובצי וידאו שאורכם מעל מ־%1 דקות ולצפות בקטעי וידאו ללא הפרעות. + + + + This demo will expire in %1 days. + גרסת הדגמה זו תפוג בעוד %1 ימים. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + רכישת הגרסה המלאה מהווה תמיכה בעבודה הקשה שאני משקיע ביצירת %1. + + + + Use Demo + שימוש בהדגמה + + + + Get the full version + קבלת הגרסה המלאה + + + DownloadItem - + bytes בתים - + KB ק״ב - + MB מ״ב - + bytes/sec בתים/שנייה - + KB/sec ק״ב/שנייה - + MB/sec מ״ב/שנייה - + seconds שניות - + minutes דקות - + %4 %5 remaining %4 %5 נותרו @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. זוהי רק גרסת ההדגמה של %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. באמצעות גרסה זו ניתן להוריד קטעי וידאו שאורכם אינו עולה על %1 דקות כדי שתהיה באפשרותך לבחור את אפשרות ההורדה. - + Continue המשך - + Get the full version קבלת הגרסה המלאה - + %n Download(s) הורדה אחת%n הורדות @@ -155,27 +208,27 @@ DownloadSettings - + Change location... שינוי המיקום... - + Choose the download location נא לבחור את מיקום ההורדה - + Download location changed. מיקום ההורדה השתנה. - + Current downloads will still go in the previous location. ההורדה הנוכחית עדיין תישמר במיקום הקודם. - + Downloading to: %1 מתבצעת הורדה אל: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads הורדות @@ -192,62 +245,62 @@ GlobalShortcuts - + Play נגינה - + Pause השהיה - + Play/Pause נגינה/השהיה - + Stop עצירה - + Stop playing after current track עצירת הנגינה לאחר הרצועה הנוכחית - + Next track הרצועה הבאה - + Previous track הרצועה קודמת - + Increase volume הגברת עצמת השמע - + Decrease volume הנמכת עצמת השמע - + Mute השתקה - + Seek forward סריקה קדימה - + Seek backward סריקה אחורה @@ -255,22 +308,22 @@ ListModel - + Searching... בהליכי חיפוש... - + Show %1 More הצגת %1 נוספים - + No videos אין סרטונים - + No more videos אין עוד סרטונים @@ -278,7 +331,7 @@ LoadingWidget - + Error שגיאה @@ -286,317 +339,372 @@ MainWindow - + &Stop &עצירה - + Stop playback and go back to the search view עצירת הנגינה וחזרה אל תצוגת החיפוש - + S&kip &דילוג - + Skip to the next video דילוג אל הסרטון הבא - - + + &Pause ה&שהיה - - + + Pause playback השהיית הנגינה - - + &Full Screen &מסך מלא - + Go full screen מעבר למסך מלא - + &Compact mode מצב &חסכוני - + Hide the playlist and the toolbar הסתרת רשימת ההשמעה וסרגל הכלים - + Open the &YouTube page פthe &תיחת העמוד ב־YouTube - + Go to the YouTube video page and pause playback מעבר לעמוד הווידאו ב־YouTube והשהיית הנגינה. - + Copy the YouTube &link העתקת ה&קישור ל־YouTube - + Copy the current video YouTube link to the clipboard העתקת הקישור אל הווידאו הנוכחי אל לוח הגזירים - + Copy the video stream &URL העתקת כתובת &תזרים הווידאו - + Copy the current video stream URL to the clipboard העתקת כתובת תזרים הווידאו אל לוח הגזירים - + + Find video &parts + חיפוש &חלקי וידאו + + + + Find other video parts hopefully in the right order + חיפוש חלקים אחרים בתקווה שהם בסדר הנכון + + + &Remove ה&סרה - + Remove the selected videos from the playlist הסרת הסרטונים הנבחרים מרשימת ההשמעה - + Move &Up הזזה מ&מעלה - + Move up the selected videos in the playlist הזזת הסרטונים הנבחרים במעלה רשימת ההשמעה - + Move &Down הזזה מ&טה - + Move down the selected videos in the playlist הזזת הסרטונים הנבחרים במורד רשימת ההשמעה - + &Clear recent searches מחיקת החיפושים ה&אחרונים - + Clear the search history. Cannot be undone. מחיקת היסטוריית החיפוש. לא ניתן לבטל - + &Quit י&ציאה - + Ctrl+Q Ctrl+Q - + Bye להתראות - + &Website &אתר האינטרנט - + %1 on the Web %1 באינטרנט - + Make a &donation &מתן תרומה - + Please support the continued development of %1 אנא תמכו בהמשך הפיתוח של %1 - + &About &על אודות - + Info about %1 מידע אודות %1 - + Search חיפוש - + Mute volume השתקת השמע - + Ctrl+M Ctrl+M - - + + &Downloads הו&רדות - + Show details about video downloads הצגת פרטים על אודות הורדות וידאו - + &Download הו&רדה - + Download the current video הורדת סרטון הווידאו הנוכחי - + + Share the current video using %1 + שיתוף הווידאו הנוכחי דרך %1 + + + + &Email + &דוא״ל + + + + Email + דוא״ל + + + &Application &יישום - + + &Playback + נ&גינה + + + &Playlist &רשימת השמעה - + &Video &וידאו - + + &View + &צפייה + + + + &Share + &שיתוף + + + &Help &עזרה - + Press %1 to raise the volume, %2 to lower it ניתן ללחוץ על %1 כדי להגביר את עצמת השמע, %2 כדי להנמיך אותה - - + + Opening %1 %1 נפתח - + Do you want to exit %1 with a download in progress? האם ברצונך לצאת מ־%1 כאשר ישנה הורדה פעילה? - + If you close %1 now, this download will be cancelled. אם %1 ייסגר כעת, הורדה זו תבוטל. - + Close and cancel download סגירה וביטול ההורדה - + Wait for download to finish יש להמתין לסיום ההורדה - - Fatal error: %1 - שגיאה מכרעת: %1 + + Leave &Full Screen + יציאה ממ&סך מלא + + + + %1 version %2 is now available. + %1 בגרסה %2 זמין כעת. + + + + Remind me later + להזכיר לי מאוחר יותר - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + כדי לקבל את הגרסה העדכנית, יש להוריד את %1 פעם נוספת מהקישור שקיבלת בדוא״ל ולהתקין מחדש. + + + + Update + עדכון + + + Error: %1 שגיאה: %1 - + &Play &נגינה - + Resume playback המשך הנגינה - - Exit &Full Screen - יציאה ממ&סך מלא - - - + Remaining time: %1 הזמן הנותר: %1 - + Volume at %1% עצמת השמע היא %1% - + Volume is muted השמע מושתק - + Volume is unmuted השמע אינו מושתק - + Maximum video definition set to %1 איכות הנגינה המירבית מוגדרת ל־%1 - + Your privacy is now safe פרטיותך מוגנת כעת. - + Downloads complete ההורדות הושלמו @@ -604,57 +712,80 @@ MediaView - + Most relevant הרלוונטיים ביותר - + Most recent העדכניים ביותר - + Most viewed הנצפים ביותר - + You can now paste the YouTube link into another application כעת ניתן להדביק את קישור ה־YouTube שלכם ליישום אחר - + You can now paste the video stream URL into another application כעת ניתן להדביק את כתובת תזרים הווידאו ליישום אחר - + The link will be valid only for a limited time. הקישור יהיה תקף לזמן מוגבל בלבד. - + This is just the demo version of %1. זוהי רק גרסת ההדגמה של %1. - + It allows you to test the application and see if it works for you. גרסה זו מאפשרת לך לבחון את היישום ולראות האם הוא מתאים לצרכיך. - + Continue המשך - + + of + Used in video parts, as in '2 of 3' + מתוך + + + + part + This is for video parts, as in 'Cool video - part 1' + חלק + + + + episode + This is for video parts, as in 'Cool series - episode 1' + פרק + + + + Sent from %1 + נשלח דרך %1 + + + Get the full version קבלת הגרסה המלאה - + Downloading %1 %1 מתקבל @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 שגיאת רשת: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 צפיות - + %1 of %2 (%3) — %4 %1 מתוך %2 (%3) — %4 - + Preparing בהכנה - + Failed כשל - + Completed הושלם - + Stopped נעצר - + Stop downloading עצירת ההורדה - + Show in %1 הצגה ב%1 - + Open parent folder פתיחת תיקיית ההורה - + Restart downloading הפעלת ההורדה מחדש @@ -723,7 +854,7 @@ SearchLineEdit - + Search חיפוש @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, ברוך בואך אל <a href='%1'>%2</a>, - + Get the full version קבלת הגרסה המלאה - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" הזנה - + a keyword מילת מפתח - + a channel ערוץ - + to start watching videos. כדי להתחיל לצפות בסרטונים. - + Watch צפייה - + Recent keywords מילות מפתח אחרונות - + Recent channels ערוצים אחרונים - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - גרסה חדשה של %1 זמינה להורדה. אנא <a href='%2'>עדכנו לגרסה %3</a> - - - + Make yourself comfortable שבו בניחותא @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 לא ניתן לקבל את תזרים הווידאו עבור %1 - + Network error: %1 for %2 שגיאת רשת: %1 עבור %2 diff -Nru minitube-1.5/locale/hr_HR.ts minitube-1.6/locale/hr_HR.ts --- minitube-1.5/locale/hr_HR.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/hr_HR.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Postoji život izvan web preglednika! - - - - Version %1 - Verzija %1 - - - - %1 is Free Software but its development takes precious time. - %1 je besplatan program ali njegov razvoj zahtijeva dosta dragocjenog vremena. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - Molimo Vas da <a href='%1'>donirate pomoću PayPala</a> kako biste osigurali kontinuirani razvoj %2 programa. - - - - Report bugs and send in your ideas to %1 - Prijavite greške te šaljite svoje ideje i prijedloge na %1 - - - - Icon designed by %1. - Ikonu je dizajnirao %1. - - - - Compact mode contributed by %1. - Kompaktni način prikaza omogućio je %1. - - - - HTTP proxy support contributed by %1. - HTTP proxy podršku omogućio je %1. - - - - Translated by %1 - Minitube su preveli: %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - Program je objavljen pod <a href='%1'>GNU General Public Licencom</a> - - - - &Close - &Zatvori - - - - About - O programu - - - - What you always wanted to know about %1 and never dared to ask - Sve što ste željeli znati o %1, a niste se usudili pitati - - - - ClearButton - - - Clear - Očisti - - - - DownloadItem - - - bytes - - - - - KB - - - - - MB - - - - - bytes/sec - - - - - KB/sec - - - - - MB/sec - - - - - seconds - - - - - minutes - - - - - %4 %5 remaining - - - - - DownloadManager - - - This is just the demo version of %1. - - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - - - - - Continue - - - - - Get the full version - - - - - %n Download(s) - - - - - DownloadSettings - - - Change location... - - - - - Choose the download location - - - - - Download location changed. - - - - - Current downloads will still go in the previous location. - - - - - Downloading to: %1 - - - - - DownloadView - - - - Downloads - - - - - GlobalShortcuts - - - Play - - - - - Pause - - - - - Play/Pause - - - - - Stop - - - - - Stop playing after current track - - - - - Next track - - - - - Previous track - - - - - Increase volume - - - - - Decrease volume - - - - - Mute - - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - Tražim... - - - - Show %1 More - Prikaži još %1 videa - - - - No videos - Nema videa - - - - No more videos - Nema više videa - - - - LoadingWidget - - - Error - Pogreška - - - - MainWindow - - - &Stop - &Zaustavi - - - - Stop playback and go back to the search view - Zaustavi prikazivanje videa i vrati se na pretraživanje - - - - S&kip - P&reskoči - - - - Skip to the next video - Preskoči na slijedeći video - - - - - &Pause - &Pauza - - - - - Pause playback - Pauziraj izvođenje videa - - - - - &Full Screen - &Cijeli ekran - - - - Go full screen - Gledaj video preko cijelog ekrana - - - - &Compact mode - &Kompaktni način - - - - Hide the playlist and the toolbar - Sakrij listu izvođenja i alatnu traku - - - - Open the &YouTube page - &YouTube web stranica - - - - Go to the YouTube video page and pause playback - Otvori video na YouTube web stranici i pauziraj izvođenje videa - - - - Copy the YouTube &link - Kopiraj &YouTube poveznicu - - - - Copy the current video YouTube link to the clipboard - Kopiraj YouTube poveznicu videa koji se izvodi u međuspremnik - - - - Copy the video stream &URL - Kopiraj web &adresu videa - - - - Copy the current video stream URL to the clipboard - Kopiraj web adresu videa koji se izvodi u međuspremnik - - - - &Remove - &Ukloni - - - - Remove the selected videos from the playlist - Ukloni označene video isječke sa liste izvođenja - - - - Move &Up - Premjesti &gore - - - - Move up the selected videos in the playlist - Premjesti odabrane video isječke prema gore u listi izvođenja - - - - Move &Down - Premjesti &dolje - - - - Move down the selected videos in the playlist - Premjesti odabrane video isječke prema dolje u listi izvođenja - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - Obriši povijest pretraživanja. Ova akcija se ne može poništiti. - - - - &Quit - &Zatvori program - - - - Ctrl+Q - Ctrl+Q - - - - Bye - Doviđenja - - - - &Website - &Web stranica - - - - %1 on the Web - %1 na internetu - - - - Make a &donation - Napravi &donaciju - - - - Please support the continued development of %1 - Molimo Vas da podržite kontinuirani razvoj %1 - - - - &About - &O programu - - - - Info about %1 - Informacije o %1 - - - - Search - Traži - - - - Mute volume - Isključi zvuk - - - - Ctrl+M - Ctrl+M - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - &Program - - - - &Playlist - &Lista izvođenja - - - - &Video - &Video - - - - &Help - &Pomoć - - - - Press %1 to raise the volume, %2 to lower it - Pritisni %1 za pojačavanje zvuka, %2 za stišavanje - - - - - Opening %1 - Otvaram %1 - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - Fatalna pogreška: %1 - - - - Error: %1 - Pogreška: %1 - - - - &Play - &Pokreni - - - - Resume playback - Nastavi izvođenje - - - - Exit &Full Screen - &Prekini prikaz preko cijelog ekrana - - - - Remaining time: %1 - Preostalo vrijeme: %1 - - - - Volume at %1% - Jačina zvuka %1% - - - - Volume is muted - Zvuk je isključen - - - - Volume is unmuted - Zvuk je uključen - - - - Maximum video definition set to %1 - Maksimalna video rezolucija je postavljena na %1 - - - - Your privacy is now safe - Vaša privatnost je sada sigurna - - - - Downloads complete - - - - - MediaView - - - Most relevant - Najznačajniji - - - - Most recent - Najnoviji - - - - Most viewed - Najgledaniji - - - - You can now paste the YouTube link into another application - Možete zalijepiti YouTube poveznicu u drugu aplikaciju - - - - You can now paste the video stream URL into another application - Možete zalijepiti web adresu video isječka u drugu aplikaciju - - - - The link will be valid only for a limited time. - Poveznica će vrijediti samo neko vrijeme. - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - Greška na mreži: %1 - - - - PrettyItemDelegate - - - %1 views - %1 pregleda - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - - - - - Stop downloading - - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - Traži - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - Dobrodošli na <a href='%1'>%2</a>, - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - Gledaj - - - - Recent keywords - Nedavno gledano - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Nova verzija %1 je dostupna. Molimo <a href='%2'>nadogradite na verziju %3</a> - - - - Make yourself comfortable - Udobno se smjestite i opustite se - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - Greška na mreži: %1 za %2 - - - \ No newline at end of file diff -Nru minitube-1.5/locale/hr.ts minitube-1.6/locale/hr.ts --- minitube-1.5/locale/hr.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/hr.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Život postoji i van browsera! - + Version %1 Verzija %1 - + %1 is Free Software but its development takes precious time. %1 je besplatan program ali njegov razvoj zahtjeva dragocjeno vrijeme. - + Please <a href='%1'>donate</a> to support the continued development of %2. Vaša <a href='%1'>donacija</a> će pomoći daljnjem razvoju %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Prijavite greške i pošaljite vaše ideje %1 - + Icon designed by %1. Dizajn ikone %1. - + Compact mode contributed by %1. Kompaktni mod dodao %1. - + HTTP proxy support contributed by %1. Podršku za HTTP proxy dodao %1. - - Translated by %1 - Preveo %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Izdano pod <a href='%1'>GNU General Public License</a> - + &Close &Zatvori - + About O programu - + What you always wanted to know about %1 and never dared to ask Sve što ste željeli znati o %1 a niste se usudili pitati @@ -71,55 +86,93 @@ ClearButton - + Clear Obriši + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes bajtova - + KB KB - + MB MB - + bytes/sec bajtova/sec - + KB/sec KB/sec - + MB/sec MB/sec - + seconds sekundi - + minutes minuta - + %4 %5 remaining %4 %5 preostalo @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Ovo je samo demo verzija %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Može preuzeti samo video kraći od %1 minuta tako da možete testirati mogućnost preuzimanja. - + Continue Nastavi - + Get the full version Preuzmi punu verziju - + %n Download(s) %n preuzimanje%n preuzimanja%n preuzimanja @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Promijeni odredište preuzimanja... - + Choose the download location Odaberi odredište preuzimanja - + Download location changed. Odredište preuzimanja promijenjeno. - + Current downloads will still go in the previous location. Trenutna preuzimanja će i dalje ići u prethodno odredište. - + Downloading to: %1 Preuzimam u: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Preuzimanja @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Pokreni - + Pause Pauza - + Play/Pause Pokreni/Pauza - + Stop Stani - + Stop playing after current track Stani nakon trenutne stvari. - + Next track Slijedeća - + Previous track Prethodna - + Increase volume Pojačaj zvuk - + Decrease volume Stišaj zvuk - + Mute Nijemo - + Seek forward Premotaj naprijed - + Seek backward Premotaj nazad @@ -255,22 +308,22 @@ ListModel - + Searching... Pretraga... - + Show %1 More Prikaži još %1 - + No videos Nema videa - + No more videos Nema više videa @@ -278,7 +331,7 @@ LoadingWidget - + Error Greška @@ -286,317 +339,372 @@ MainWindow - + &Stop &Stop - + Stop playback and go back to the search view Stani i vrati se na pretraživanje - + S&kip &Preskoči - + Skip to the next video Preskoči na slijedeći video - - + + &Pause &Pauza - - + + Pause playback Pauziraj - - + &Full Screen &Cijeli ekran - + Go full screen Prikaži preko cijelog ekrana - + &Compact mode &Kompaktni mod - + Hide the playlist and the toolbar Sakrij play listu i alatnu traku - + Open the &YouTube page Otvori &Youtube stranicu - + Go to the YouTube video page and pause playback Idi na Youtube stranicu sa videom i pauziraj - + Copy the YouTube &link Kopiraj Youtube &link - + Copy the current video YouTube link to the clipboard Kopiraj YouTube link trenutnog videa u clipboard - + Copy the video stream &URL Kopiraj &URL video streama - + Copy the current video stream URL to the clipboard Kopiraj &URL trenutnog video streama u clipboard - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Ukloni - + Remove the selected videos from the playlist Ukloni odabrane video clipove iz play liste - + Move &Up Pomakni &gore - + Move up the selected videos in the playlist Pomakni gore slektirane video clipove u play listi - + Move &Down Pomakni &dolje - + Move down the selected videos in the playlist Pomakni dolje slektirane video clipove u play listi - + &Clear recent searches &Očisti nedavne pretrage - + Clear the search history. Cannot be undone. Očisti povijest pretraga. Ne može se vratiti. - + &Quit &Kraj - + Ctrl+Q Ctrl+Q - + Bye Doviđenja - + &Website &Web stranice - + %1 on the Web %1 na webu - + Make a &donation &Donirajte - + Please support the continued development of %1 Molim Vas da podržite daljnji razvoj %1 - + &About &O programu - + Info about %1 Informacije o %1 - + Search Traži - + Mute volume Utišaj zvuk - + Ctrl+M Ctrl+M - - + + &Downloads &Preuzimanja - + Show details about video downloads Pokaži informacije o preuzimanjima videa - + &Download &Preuzimanje - + Download the current video Preuzmi trenutni video - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Program - + + &Playback + + + + &Playlist &Play lista - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Pomoć - + Press %1 to raise the volume, %2 to lower it Pritisnite %1 za glasnije, %2 za tiše - - + + Opening %1 Otvaram %1 - + Do you want to exit %1 with a download in progress? Da li stvarno želite napustiti %1 dok traje preuzimanje? - + If you close %1 now, this download will be cancelled. Ako sada zatvorite %1, preuzimanje će biti poništeno. - + Close and cancel download Zatvori i poništi preuzimanje - + Wait for download to finish Pričekaj da završi preuzimanje - - Fatal error: %1 - Fatalna greška: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Greška: %1 - + &Play &Sviraj - + Resume playback &Nastavi sviranje - - Exit &Full Screen - Napusti &cijeli ekran - - - + Remaining time: %1 Preostalo vrijeme: %1 - + Volume at %1% Glasnoća na %1% - + Volume is muted Zvuk je ugašen - + Volume is unmuted Zvuk je upaljen - + Maximum video definition set to %1 Maksimalna video rezolucija postavljena na %1 - + Your privacy is now safe Vaša privatnost je sada sigurna - + Downloads complete Preuzimanja završena @@ -604,57 +712,80 @@ MediaView - + Most relevant Najbitnije - + Most recent Najnovije - + Most viewed Najgledanije - + You can now paste the YouTube link into another application Sada možete zalijepiti Youtube link u neki drugi program - + You can now paste the video stream URL into another application Sada možete zalijepiti link video streama u neki drugi program - + The link will be valid only for a limited time. Link će biti valjan samo ograničeno vrijeme. - + This is just the demo version of %1. Ovo je samo demo verzija %1. - + It allows you to test the application and see if it works for you. Omogućava Vam da testirate program i vidite da li Vam odgovara. - + Continue Nastavi - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Preuzmi punu verziju - + Downloading %1 Preuzimam %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Greška mreže: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 pregleda - + %1 of %2 (%3) — %4 %1 od %2 (%3) — %4 - + Preparing Pripremam - + Failed Nije uspjelo - + Completed Završeno - + Stopped Zaustavljeno - + Stop downloading Zaustavi preuzimanje - + Show in %1 Pokaži u %1 - + Open parent folder Otvori mapu iznad - + Restart downloading Ponovo pokreni preuzimanje @@ -723,7 +854,7 @@ SearchLineEdit - + Search Traži @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Dobrodošli u <a href='%1'>%2</a>, - + Get the full version Preuzmi punu verziju - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Unesi - + a keyword ključna riječ - + a channel kanal - + to start watching videos. da počnete gledati video. - + Watch Gledaj - + Recent keywords Nedavne ključne riječi - + Recent channels Nedavni kanali - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Dostupna je nova verzija %1. Molim Vas <a href='%2'>nadograditie na verziju %3</a> - - - + Make yourself comfortable Udobno se smjestite @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Ne mogu naći video stream za %1 - + Network error: %1 for %2 Greška mreže: %1 za %2 diff -Nru minitube-1.5/locale/hu_HU.ts minitube-1.6/locale/hu_HU.ts --- minitube-1.5/locale/hu_HU.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/hu_HU.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Van élet a böngészőn kívül! - + Version %1 %1 verzió - + %1 is Free Software but its development takes precious time. A %1 szabad szoftver, de a fejlesztés időbe telik és az idő pénz. - + Please <a href='%1'>donate</a> to support the continued development of %2. Kérlek <a href='%1'>adakozz</a>, hogy folytathassam a %2 fejlesztését - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Hibabejelentés, ötletek: %1 - + Icon designed by %1. Az ikonokat tervezte: %1. - + Compact mode contributed by %1. Kompakt mód: %1. - + HTTP proxy support contributed by %1. HTTP proxy támogatás: %1. - - Translated by %1 - Fordította: %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Kiadva <a href='%1'>GNU General Public License</a> alatt - + &Close &Bezárás - + About Névjegy - + What you always wanted to know about %1 and never dared to ask Amit mindig is tudni akartál a %1-ról, de sosem merted megkérdezni @@ -71,55 +86,93 @@ ClearButton - + Clear Törlés + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes - + - + KB - + - + MB - + - + bytes/sec - + - + KB/sec - + - + MB/sec - + - + seconds másodperc - + minutes perc - + %4 %5 remaining %4 %5 van hátra @@ -127,55 +180,55 @@ DownloadManager - + This is just the demo version of %1. Ez csak a demo verziója a %1-nak. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Csak rövidebb, mint %1 perces videókat tudsz letölteni a letöltési funkció ellenőrzéséhez. - + Continue Tovább - + Get the full version Szerezd be a teljes verziót - + %n Download(s) - + DownloadSettings - + Change location... Könyvtár módosítása... - + Choose the download location Válaszd ki a letöltési könyvtárat - + Download location changed. Letöltési könyvtár megváltoztatva. - + Current downloads will still go in the previous location. Az aktuális letöltések a régi letöltési könyvárba lesznek mentve. - + Downloading to: %1 Letöltés a következő könyvtárba: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Letöltések @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Lejátszás - + Pause Szünet - + Play/Pause Lejátszás/Szünet - + Stop Megállítás - + Stop playing after current track Lejátszás megállítása a jelenlegi videó után - + Next track Következő videó - + Previous track Előző videó - + Increase volume Hangosítás - + Decrease volume Halkítás - + Mute Némítás - + Seek forward Előre teker - + Seek backward Hátra teker @@ -255,22 +308,22 @@ ListModel - + Searching... Keresés... - + Show %1 More Mutass még %1-et - + No videos Nincsenek videók - + No more videos Nincs több videó @@ -278,7 +331,7 @@ LoadingWidget - + Error Hiba @@ -286,317 +339,372 @@ MainWindow - + &Stop &Állj - + Stop playback and go back to the search view Megáll és visszamegy a keresőbe - + S&kip &Kihagyás - + Skip to the next video Kihagyja a következő videót - - + + &Pause &Szünet - - + + Pause playback Szünetelteti a lejátszást - - + &Full Screen &Teljes képernyő - + Go full screen Teljes képernyőre teszi a videót - + &Compact mode K&ompakt mód - + Hide the playlist and the toolbar Elrejti a lejátszó listát és az eszköztárat - + Open the &YouTube page A YouTube megnyitása - + Go to the YouTube video page and pause playback A YouTube oldalra irányítás és a lejátszás szüneteltetése - + Copy the YouTube &link YouTube link másolása - + Copy the current video YouTube link to the clipboard Az aktuális YouTube video link másolása vágólapra - + Copy the video stream &URL A video stream &URL másolása - + Copy the current video stream URL to the clipboard Az aktuális video stream URL másolása vágólapra - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Törlés - + Remove the selected videos from the playlist Eltávolítja a kijelölt videókat a listából - + Move &Up &Fel - + Move up the selected videos in the playlist Előrehozza a kijelölt videókat a listán - + Move &Down &Le - + Move down the selected videos in the playlist Lejjebb viszi a kijelölt videókat a listán - + &Clear recent searches - + - + Clear the search history. Cannot be undone. Keresési előzmények törlése. Nem visszavonható. - + &Quit &Kilépés - + Ctrl+Q Ctrl+Q - + Bye Viszlát - + &Website &Weboldal - + %1 on the Web %1 a weben - + Make a &donation A&dakozz - + Please support the continued development of %1 Kérlek támogasd a %1 fejlesztését - + &About &Névjegy - + Info about %1 Információk a %1-ról - + Search Keresés - + Mute volume Némítás - + Ctrl+M Ctrl+M - - + + &Downloads &Letöltések - + Show details about video downloads Videó letöltések részletei - + &Download &Letöltés - + Download the current video Aktuális videó letöltése - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Alkalmazás - + + &Playback + + + + &Playlist &Lejátszó lista - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Segítség - + Press %1 to raise the volume, %2 to lower it Nyomd meg a %1 gombot a hangosításhoz, a %2 gombot a halkításhoz - - + + Opening %1 Megnyitás %1 - + Do you want to exit %1 with a download in progress? Letöltés van folyamatban. Biztos, hogy ki akarsz lépni a %1-ból? - + If you close %1 now, this download will be cancelled. Ha bezárod a %1-ot, a letöltés megszakad. - + Close and cancel download Bezárás és a letöltés megszakítása. - + Wait for download to finish Várakozás a letöltés befejezésére - - Fatal error: %1 - Végzetes hiba: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Hiba: %1 - + &Play &Lejátszás - + Resume playback Lejátszás folytatása - - Exit &Full Screen - Kilépés a &Teljes képernyőből - - - + Remaining time: %1 Hátralévő idő: %1 - + Volume at %1% Hangerő: %1% - + Volume is muted Némítás bekapcsolva - + Volume is unmuted Némítás kikapcsolva - + Maximum video definition set to %1 Maximum videó minőség beállítása %1-ra - + Your privacy is now safe Biztonságban vagy - + Downloads complete Letöltés befejezve @@ -604,57 +712,80 @@ MediaView - + Most relevant Kapcsolódó videók - + Most recent Legújabbak - + Most viewed Legnézettebbek - + You can now paste the YouTube link into another application Most már beillesztheted a YouTube linket más alkalmazásba - + You can now paste the video stream URL into another application Most már beillesztheted a video stream URL-t más alkalmazásba - + The link will be valid only for a limited time. A link korlátozott ideig érvényes - + This is just the demo version of %1. Ez csak a demo verziója a %1-nak. - + It allows you to test the application and see if it works for you. Lehetőséget nyújt a program kipróbálására. - + Continue Tovább - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Szerezd be a teljes verziót - + Downloading %1 %1 letöltése @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Hálózati hiba: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1x megtekintve - + %1 of %2 (%3) — %4 - + - + Preparing Előkészítés - + Failed Sikertelen - + Completed Kész - + Stopped Megállítva - + Stop downloading Letöltés megállítása - + Show in %1 Mutasd a %1-ban - + Open parent folder Szülő könyvtár megnyitása - + Restart downloading Letöltés újraindítása @@ -723,7 +854,7 @@ SearchLineEdit - + Search Keresés @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Üdvözöl a <a href='%1'>%2</a>, - + Get the full version - + - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - + - + a keyword - + - + a channel - + - + to start watching videos. - + - + Watch Keresés - + Recent keywords Gyakori kulcsszavak - + Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - A %1 új verziója elérhető. Kérlek <a href='%2'>frissíts erre a verzióra: %3</a> + - + Make yourself comfortable Helyezd magad kényelembe @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 - + - + Network error: %1 for %2 Hálózati hiba: %1 for %2 diff -Nru minitube-1.5/locale/hu.ts minitube-1.6/locale/hu.ts --- minitube-1.5/locale/hu.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/hu.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,151 +3,204 @@ AboutView - + There's life outside the browser! - A böngészőn túl is van élet! + Van élet a böngészőn kívül. - + Version %1 - Verziószám: %1 + Verzió: %1 - + %1 is Free Software but its development takes precious time. - A %1 egy ingyenes szoftver, de a fejlesztése rengeteg időt felemészt és az idő pénz. + A %1 szabad szoftver, de a fejlesztése értékes időt emészt fel. - + Please <a href='%1'>donate</a> to support the continued development of %2. - + <a href='%1'>Adakozással</a> támogassa a %2 program folyamatos fejlesztését. + + + + You may want to try my other apps as well: + Ki szeretne próbálni más alkalmazást is? + + + + %1, a YouTube music player + %1, a YouTube zenelejátszó + + + + %1, a music player + %1, zenelejátszó - + + Translate %1 to your native language using %2 + Fordítsa le a %1 programot az anyanyelvére a következővel: %2 + + + Report bugs and send in your ideas to %1 - Hibajelentéseid, ötleteid a %1 címre küldheted. + Hibajelentés és ötletek küldése a következő címre: %1 - + Icon designed by %1. - Az ikont %1 tervezte. + Ikon tervezője: %1 - + Compact mode contributed by %1. - A kompakt módot %1 tervezte. + A kompakt mód szerzője: %1 - + HTTP proxy support contributed by %1. - A HTTP porxy támogatója: %1 - - - - Translated by %1 - Fordította: %1 + A HTTP proxy támogatás szerzője: %1 - + Released under the <a href='%1'>GNU General Public License</a> - A program <a href='%1'>GNU General Public License</a> alatt lett kiadva + A <a href='%1'>GNU General Public licenccel</a> megjelentetve - + &Close &Bezárás - + About Névjegy - + What you always wanted to know about %1 and never dared to ask - + Amit tudni szeretett volna a %1 programról, de sosem merte megkérdezni ClearButton - + Clear - + Törlés + + + + DemoStartupView + + + Please license %1 + Szerezzen licencet a %1 programhoz + + + + This demo has expired. + A demó változat lejárt. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + A teljes verzió lehetőséget nyújt %1 percnél hosszabb videók letöltésére és a videók megszakítás nélküli lejátszására. + + + + This demo will expire in %1 days. + A demó változat %1 nap múlva lejár. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + A teljes verzió megvásárlásával a %1 programba fektetett munkámat is támogatja. + + + + Use Demo + Demó használata + + + + Get the full version + Teljes verzió beszerzése DownloadItem - + bytes - + bájt - + KB - + KB - + MB - + MB - + bytes/sec - + bájt/mp - + KB/sec - + KB/mp - + MB/sec - + MB/mp - + seconds - + másodperc - + minutes - + perc - + %4 %5 remaining - + Hátralévő idő: %4 %5 DownloadManager - + This is just the demo version of %1. - + Ez csak a demó verziója a %1 programnak. - + It can only download videos shorter than %1 minutes so you can test the download functionality. - + Csak %1 percnél rövidebb videók tölthetők le vele a letöltési funkciók teszteléséhez. - + Continue - + Folytatás - + Get the full version - + Teljes verzió beszerzése - + %n Download(s) @@ -155,649 +208,722 @@ DownloadSettings - + Change location... - + Hely módosítása... - + Choose the download location - + Letöltés helyének kiválasztása - + Download location changed. - + A letöltés helye megváltozott. - + Current downloads will still go in the previous location. - + A folyamatban lévő letöltések még a régebbi helyre kerülnek. - + Downloading to: %1 - + Letöltés ide: %1 DownloadView - - + + Downloads - + Letöltések GlobalShortcuts - + Play - + Lejátszás - + Pause - + Megállítás - + Play/Pause - + Lejátszás/megállítás - + Stop - + Leállítás - + Stop playing after current track - + Lejátszás befejezése az aktuális szám után - + Next track - + Következő szám - + Previous track - + Előző szám - + Increase volume - + Hangerő növelése - + Decrease volume - + Hangerő csökkentése - + Mute - + Némítás - + Seek forward - + Ugrás előre - + Seek backward - + Ugrás vissza ListModel - + Searching... - + Keresés... - + Show %1 More - + További %1 elem megjelenítése - + No videos - + Nem található videó - + No more videos - + Nem található több videó LoadingWidget - + Error - + Hiba MainWindow - + &Stop - + &Leállítás - + Stop playback and go back to the search view - + Lejátszás befejezése és visszatérés a keresés nézetre - + S&kip - + U&grás - + Skip to the next video - + Ugrás a következő videóra - - + + &Pause - + &Megállítás - - + + Pause playback - + Lejátszás megállítása - - + &Full Screen - + &Teljes képernyő - + Go full screen - + Teljes képernyőre váltás - + &Compact mode - + &Kompakt mód - + Hide the playlist and the toolbar - + Lejátszási lista és eszközsor elrejtése - + Open the &YouTube page - + &YouTube lap megnyitása - + Go to the YouTube video page and pause playback - + Ugrás a YouTube videó oldalára és a lejátszás megállítása - + Copy the YouTube &link - + Youtube &hivatkozás másolása - + Copy the current video YouTube link to the clipboard - + Az aktuális videó Youtube &hivatkozásának másolása a vágólapra - + Copy the video stream &URL - + Videó adatfolyam &URL címének másolása - + Copy the current video stream URL to the clipboard - + Az aktuális videó adatfolyam URL címének másolása a vágólapra - + + Find video &parts + Videó&részletek keresése + + + + Find other video parts hopefully in the right order + További videórészletek keresése remélhetőleg helyes sorrendben + + + &Remove - + &Eltávolítás - + Remove the selected videos from the playlist - + Kijelölt videók eltávolítása a lejátszási listáról - + Move &Up - + Mozgatás &felfelé - + Move up the selected videos in the playlist - + Kijelölt videók mozgatása felfelé a lejátszási listában - + Move &Down - + Mozgatás &lefelé - + Move down the selected videos in the playlist - + Kijelölt videók mozgatása lefelé a lejátszási listában - + &Clear recent searches - + &Legutóbbi keresések törlése - + Clear the search history. Cannot be undone. - + Keresési előzmények törlése. Nem vonható vissza. - + &Quit - + &Kilépés - + Ctrl+Q - + Ctrl+Q - + Bye - + Viszlát - + &Website - + &Webhely - + %1 on the Web - + %1 a weben - + Make a &donation - + &Adomány küldése - + Please support the continued development of %1 - + Támogassa a %1 program folyamatos fejlesztését - + &About - + &Névjegy - + Info about %1 - + Információ a %1 programról - + Search - + Keresés - + Mute volume - + Hangerő némítása - + Ctrl+M - + Ctrl+M - - + + &Downloads - + &Letöltések - + Show details about video downloads - + A videóletöltések részleteinek megjelenítése - + &Download - + &Letöltés - + Download the current video - + Aktuális videó letöltése - + + Share the current video using %1 + Aktuális videó megosztása a következővel: %1 + + + + &Email + &Email + + + + Email + Email + + + &Application - + &Alkalmazás + + + + &Playback + &Lejátszás - + &Playlist - + &Lejátszási lista - + &Video - + &Videó + + + + &View + &Megtekintés + + + + &Share + &Megosztás - + &Help - + &Súgó - + Press %1 to raise the volume, %2 to lower it - + Hangerő növelése: %1, hangerő csökkentése: %2 - - + + Opening %1 - + %1 megnyitása - + Do you want to exit %1 with a download in progress? - + Szeretne kilépni a %1 programból letöltés közben? - + If you close %1 now, this download will be cancelled. - + Ha bezárja a %1 programot, a letöltés megszakad. - + Close and cancel download - + Bezárás és letöltés megszakítása - + Wait for download to finish - + A letöltés befejeződésének megvárása - - Fatal error: %1 - + + Leave &Full Screen + Kilépés a &teljes képernyős módból + + + + %1 version %2 is now available. + A %1 program %2 verziója elérhető. - + + Remind me later + Figyelmeztetés később + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + A frissebb verzió beszerzéséhez töltse le újból a %1 programot az emailben lévő hivatkozáson keresztül, és telepítse újra a programot. + + + + Update + Frissítés + + + Error: %1 - + Hiba: %1 - + &Play - + &Lejátszás - + Resume playback - + Lejátszás folytatása - - Exit &Full Screen - - - - + Remaining time: %1 - + Hátralévő idő: %1 - + Volume at %1% - + Hangerő: %1% - + Volume is muted - + Hangerő némítva - + Volume is unmuted - + Hangerő némítása feloldva - + Maximum video definition set to %1 - + Videók maximális felbontásának beállítása: %1 - + Your privacy is now safe - + A személyes adatok most már biztonságban vannak - + Downloads complete - + A letöltések befejeződtek MediaView - + Most relevant - + Leginkább megfelelő - + Most recent - + Legfrissebb - + Most viewed - + Legtöbbször megtekintett - + You can now paste the YouTube link into another application - + A YouTube hivatkozás most már beilleszthető egy másik alkalmazásba - + You can now paste the video stream URL into another application - + Most már beillesztheti a videó adatfolyam URL címét egy másik alkalmazásba - + The link will be valid only for a limited time. - + A hivatkozás csak korlátozott ideig lesz érvényben. - + This is just the demo version of %1. - + Ez csak a demó verziója a %1 programnak. - + It allows you to test the application and see if it works for you. - + Kipróbálhatja az alkalmazást, hogy megfelel-e az igényeinek. - + Continue + Folytatás + + + + of + Used in video parts, as in '2 of 3' - + + part + This is for video parts, as in 'Cool video - part 1' + rész + + + + episode + This is for video parts, as in 'Cool series - episode 1' + epizód + + + + Sent from %1 + A %1 programból küldve + + + Get the full version - + Teljes verzió beszerzése - + Downloading %1 - + Letöltés: %1 NetworkAccess - + Network error: %1 - + Hálózati hiba: %1 PrettyItemDelegate - + %1 views - + %1 megtekintés - + %1 of %2 (%3) — %4 - + %1 %2 közül (%3) — %4 - + Preparing - + Előkészítés - + Failed - + Hiba - + Completed - + Sikeres befejezés - + Stopped - + Leállítva - + Stop downloading - + Letöltés leállítása - + Show in %1 - + Megjelenítés a következőben: %1 - + Open parent folder - + Szülő mappa megnyitása - + Restart downloading - + Letöltés újraindítása SearchLineEdit - + Search - + Keresés SearchView - + Welcome to <a href='%1'>%2</a>, - + Üdvözli a <a href='%1'>%2</a> program, - + Get the full version - + Teljes verzió beszerzése - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - + Írjon be - + a keyword - + egy kulcsszót - + a channel - + egy csatornát - + to start watching videos. - + a videók megtekintéséhez. - + Watch - + Megtekintés - + Recent keywords - + Legutóbbi kucsszavak - + Recent channels - + Legutóbbi csatornák - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - - - - + Make yourself comfortable - + Helyezze kényelembe magát Video - + Cannot get video stream for %1 - + Nem található videó adatfolyam a következőhöz: %1 - + Network error: %1 for %2 - + Hálózati hiba: %1 a követezőhöz: %2 \ No newline at end of file diff -Nru minitube-1.5/locale/ia.ts minitube-1.6/locale/ia.ts --- minitube-1.5/locale/ia.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/ia.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,123 +3,176 @@ AboutView - + There's life outside the browser! - Il ha vita post del navigator! + Il ha vita foras del navigator! - + Version %1 Version %1 - + %1 is Free Software but its development takes precious time. - %1 es Software Libere ma su disveloppamento require tempore preciose. + %1 es software libere ma su developpamento require un tempore preciose. - + Please <a href='%1'>donate</a> to support the continued development of %2. + <a href='%1'>Dona</a>, per favor, pro supportar le developpamento continue de %2. + + + + You may want to try my other apps as well: + Tu pote tamben voler essayar mi altere applicationes + + + + %1, a YouTube music player - - Report bugs and send in your ideas to %1 + + %1, a music player - + + Translate %1 to your native language using %2 + Traduce %1 in tu lingua materne per usar %2 + + + + Report bugs and send in your ideas to %1 + Reporta le errores e invia tu ideas a %1 + + + Icon designed by %1. - Icone designato per %1. + Icone designate per %1. - + Compact mode contributed by %1. - + Modo compacte contribuite per %1. - + HTTP proxy support contributed by %1. - - - - - Translated by %1 - Traducito per %1 + Supporto de proxy HTTP contribuite per %1. - + Released under the <a href='%1'>GNU General Public License</a> - + Liberate sub le <a href='%1'>GNU General Public License</a> - + &Close - &Claude + &Clauder - + About - Circa + Super - + What you always wanted to know about %1 and never dared to ask - + Lo que tu sempre ha volite saper super %1 e nunquam osava demandar lo ClearButton - + Clear - Netta + Mundar + + + + DemoStartupView + + + Please license %1 + Licentia %1, per favor + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Al comprar le version complete, tu va supportar tamben le dur labor que io habeva pro crear %1. + + + + Use Demo + Usar demo + + + + Get the full version + Procura le version complete DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec bytes/sec - + KB/sec KB/sec - + MB/sec MB/sec - + seconds secundas - + minutes minutas - + %4 %5 remaining %4 %5 restante @@ -127,64 +180,64 @@ DownloadManager - + This is just the demo version of %1. Iste es solmente le version demo de %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. - + Il solmente es possibile discargar videos plus curte que %1 minutas pro que assi tu pote testar le functionalitate de discarga. - + Continue Continuar - + Get the full version - Prender le version complete + Obtener le version complete - + %n Download(s) - %n discarga%n discargas + %n discarga(s)%n discarga(s) DownloadSettings - + Change location... - + Cambia le localisation... - + Choose the download location - + Selige le localisation de discarga - + Download location changed. - + Le localisation de discarga esseva cambiate. - + Current downloads will still go in the previous location. - + Le discargas actual va ancora al previe localisation. - + Downloading to: %1 - Discargando a %1 + A discargar a: %1 DownloadView - - + + Downloads Discargas @@ -192,93 +245,93 @@ GlobalShortcuts - + Play Reproducer - + Pause Pausa - + Play/Pause Reproducer/Pausa - + Stop - Stoppar + Stop - + Stop playing after current track Stoppar le reproduction post le pista actual - + Next track - + Proxime pista - + Previous track - + Previe pista - + Increase volume - + Augmentar le sono - + Decrease volume - + Diminuer le sono - + Mute - + Mute - + Seek forward - + Cerca in avante - + Seek backward - + Cerca retro ListModel - + Searching... - + A cercar... - + Show %1 More - + Monstrar %1 plus - + No videos - + Il ha nulle videos - + No more videos - + Il non ha plus de videos LoadingWidget - + Error Error @@ -286,317 +339,372 @@ MainWindow - + &Stop - + &Stop - + Stop playback and go back to the search view - + Stoppar le reproduction e vader retro al vista de cercas - + S&kip - + S&altar - + Skip to the next video - + Saltar al proxime video - - + + &Pause - + &Pausa - - + + Pause playback - + Pausar le reproduction - - + &Full Screen - + &Schermo plen - + Go full screen - + Vader a schermo plen - + &Compact mode - + &Modo compacte - + Hide the playlist and the toolbar - + Celar le lista de reproduction e le barra de utensiles - + Open the &YouTube page - + Aperir le pagina de &YouTube - + Go to the YouTube video page and pause playback - + Vader al pagina de videos de YouTube e pausa le reproduction - + Copy the YouTube &link - + Copiar le &ligamine de YouTube - + Copy the current video YouTube link to the clipboard - + Copiar le actual &ligamine de video YouTube al area de transferentia - + Copy the video stream &URL - + Copiar le &URL de fluxo de video - + Copy the current video stream URL to the clipboard + Copiar le currente URL de fluxo de video al area de transferentia + + + + Find video &parts - - &Remove + + Find other video parts hopefully in the right order - + + &Remove + &Remover + + + Remove the selected videos from the playlist - + Remover le videos seligite del lista de reproduction - + Move &Up - + Mover in &alto - + Move up the selected videos in the playlist - + Mover le videos seligite del lista de reproduction in alto - + Move &Down - + Mover a &basso - + Move down the selected videos in the playlist - + Mover le videos seligite del lista de reproduction a basso - + &Clear recent searches - + &Mundar le recercas recente - + Clear the search history. Cannot be undone. - + Mundar le historia de recerca. Isto non pote ser disfacite. - + &Quit &Quitar - + Ctrl+Q - + Ctrl+Q - + Bye Adeo - + &Website - Sito &Web + Sito &web - + %1 on the Web - + %1 in le web - + Make a &donation - Facer une donation + Face un &donation - + Please support the continued development of %1 - + Supporta le developpamento continue de %1, per favor - + &About - Circ&a + &Super - + Info about %1 - Info re %1 + Info super %1 - + Search Cercar - + Mute volume - + Sin sono - + Ctrl+M Ctrl+M - - + + &Downloads &Discargas - + Show details about video downloads - + Monstrar detalios super le discargas de videos - + &Download &Discarga - + Download the current video Discarga le video actual - + + Share the current video using %1 + + + + + &Email + &E-posta + + + + Email + E-posta + + + &Application + &Application + + + + &Playback - + &Playlist - + Lista de re&production - + &Video + &Video + + + + &View + &Vider + + + + &Share - + &Help &Adjuta - + Press %1 to raise the volume, %2 to lower it - + Preme %1 pro augmentar le sono, %2 pro bassar lo - - + + Opening %1 - + A aperir %1 - + Do you want to exit %1 with a download in progress? - Tu vole sortir de %1 con une discarga in progresso? + Esque tu vole sortir de %1 con un discarga in progresso? - + If you close %1 now, this download will be cancelled. - + Si tu claude %1 ora, le discarga essera cancellate. - + Close and cancel download - Clauder e cancellar le discarga + Claude e cancella le discarga - + Wait for download to finish + Attende que le discarga fini + + + + Leave &Full Screen + Quita le &schermo plen + + + + %1 version %2 is now available. + %1 version %2 es ora disponibile. + + + + Remind me later + Rememora me plus tarde + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. - - Fatal error: %1 - Error fatal: %1 + + Update + Actualisar - + Error: %1 Error: %1 - + &Play Re&producer - + Resume playback - - Exit &Full Screen - - - - + Remaining time: %1 Tempore restante: %1 - + Volume at %1% - + Volumine a %1% - + Volume is muted - + Sin sono - + Volume is unmuted - + Con sono - + Maximum video definition set to %1 - + Definition maxime de video: %1 - + Your privacy is now safe - Tu intimitate is secur ora mesmo + Ora tu intimitate es secur - + Downloads complete Discargas complete @@ -604,65 +712,88 @@ MediaView - + Most relevant Le plus apposite - + Most recent Le plus recente - + Most viewed - + Le plus viste - + You can now paste the YouTube link into another application - Ora tu pote collar le ligamine de YouTube in altere application + Ora tu pote collar le ligamine de YouTube in un in altere application - + You can now paste the video stream URL into another application - Ora tu pote collar le URL del video in fluxo in altere application + Ora tu pote collar le URL de fluxo de video in un altere application - + The link will be valid only for a limited time. - Le ligamine essera valide solmente per un tempore limitate. + Le ligamine essera valide solmente durante un tempore limitate. - + This is just the demo version of %1. - Iste es solmente le version demo de %1. + Isto es solmente le version demo de %1. - + It allows you to test the application and see if it works for you. - + Isto permitte testar le application e vider si illo functiona. - + Continue Continuar - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + Inviate ab %1 + + + Get the full version Procura le version complete - + Downloading %1 - Discargando %1 + A discargar %1 NetworkAccess - + Network error: %1 Error de rete: %1 @@ -670,119 +801,114 @@ PrettyItemDelegate - + %1 views - %1 vistas + %1 visualisationes - + %1 of %2 (%3) — %4 %1 de %2 (%3) — %4 - + Preparing - + A preparar - + Failed - + Fallite - + Completed - + Complete - + Stopped - + Stoppate - + Stop downloading - + Stoppar le discarga - + Show in %1 Monstrar in %1 - + Open parent folder - + Restart downloading - + Recomenciar le discarga SearchLineEdit - + Search - Cerca + Cercar SearchView - + Welcome to <a href='%1'>%2</a>, Benvenite a <a href='%1'>%2</a>, - + Get the full version Procura le version complete - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - Inscriber + Scriber - + a keyword una parola clave - + a channel un canal - + to start watching videos. - + pro comenciar a reguardar le videos. - + Watch - Specta + Reguardar - + Recent keywords - Parolas clave recente + Parolas-clave recente - + Recent channels Canales recente - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Une nove version de %1 es disponibile. Per favor <a href='%2'>renova a le version %3</a> - - - + Make yourself comfortable Face te ipse confortabile @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 - Non pote procurar el fluxo de video pro %1 + Le fluxo de video pro %1 non pote ser obtenite - + Network error: %1 for %2 Error de rete: %1 pro %2 diff -Nru minitube-1.5/locale/id_ID.ts minitube-1.6/locale/id_ID.ts --- minitube-1.5/locale/id_ID.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/id_ID.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Ada kehidupan di luar browser! - + Version %1 Versi %1 - + %1 is Free Software but its development takes precious time. %1 adalah Software kebebasan namun pengembangannya membutuhkan waktu yang berharga. - + Please <a href='%1'>donate</a> to support the continued development of %2. Silakan <a href='%1'>sumbang</a> untuk mendukung pengembangan selanjutnya dari %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Report bugs and send in your ideas to %1 - + Icon designed by %1. Icon designed by %1. - + Compact mode contributed by %1. Kompak mode disumbangkan oleh %1. - + HTTP proxy support contributed by %1. dukungan proxy HTTP disumbangkan oleh %1. - - Translated by %1 - Diterjemahkan oleh %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Dirilis di bawah <a href='%1'>GNU General Public License</a> - + &Close &Tutup - + About Tentang - + What you always wanted to know about %1 and never dared to ask Apa yang Anda selalu ingin tahu tentang %1 dan tidak pernah berani untuk bertanya @@ -71,55 +86,93 @@ ClearButton - + Clear Bersih + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes bit - + KB KB - + MB MB - + bytes/sec bit/detik - + KB/sec KB/detik - + MB/sec MB/detik - + seconds detik - + minutes menit - + %4 %5 remaining %4 %5 remaining @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Ini hanya versi demo dari %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Ini hanya dapat men-download video lebih pendek dari %1 menit sehingga Anda dapat melakukan tes fungsionalitas download. - + Continue Teruskan - + Get the full version Dapatkan versi komplitnya - + %n Download(s) %n Unduhan(s) @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Ganti lokasi... - + Choose the download location Choose the download location - + Download location changed. Merubah lokasi download . - + Current downloads will still go in the previous location. download saat ini masih ingin pergi di lokasi sebelumnya. - + Downloading to: %1 Downloading to: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Unduhan @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Mainkan - + Pause Pause - + Play/Pause Mainkan/Jeda - + Stop Hentikan - + Stop playing after current track Berhenti memainkan setelah trek saat ini - + Next track Trek berikutnya - + Previous track Trek Sebelumnya - + Increase volume Meningkatkan volumenya - + Decrease volume Menurunkan volumenya - + Mute Bisu - + Seek forward Mempercepat kedepan - + Seek backward Mempercepat kebelakang @@ -255,22 +308,22 @@ ListModel - + Searching... Pencarian... - + Show %1 More Tampilkan %1 Lebih - + No videos Tidak ada video - + No more videos Tidak ada lagi video @@ -278,7 +331,7 @@ LoadingWidget - + Error Error @@ -286,317 +339,372 @@ MainWindow - + &Stop &Berhenti - + Stop playback and go back to the search view Stop pemutaran dan kembali ke tampilan pencarian - + S&kip S&kip - + Skip to the next video Lewati ke video berikutnya - - + + &Pause &Jeda - - + + Pause playback Jeda pemutaran - - + &Full Screen &Layar Penuh - + Go full screen Menuju Layar penuh - + &Compact mode &Kompak mode - + Hide the playlist and the toolbar Sembunyikan daftar putar dan toolbar - + Open the &YouTube page Buka the &halaman YouTube - + Go to the YouTube video page and pause playback Pergi ke halaman video YouTube dan jeda pemutaran - + Copy the YouTube &link Salin YouTube &link - + Copy the current video YouTube link to the clipboard Copy link video YouTube saat ini ke clipboard - + Copy the video stream &URL Salin video stream &URL - + Copy the current video stream URL to the clipboard Copy URL video streaming saat ini ke clipboard - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Buang - + Remove the selected videos from the playlist Hapus video yang dipilih dari daftar main - + Move &Up Pindah &Naik - + Move up the selected videos in the playlist Gerakkan ke atas video yang dipilih dalam playlist - + Move &Down Pindah &Turun - + Move down the selected videos in the playlist Gerakkan ke atas video yang dipilih dalam playlist - + &Clear recent searches &Bersihkan pencarian saat ini - + Clear the search history. Cannot be undone. Menghapus sejarah pencarian. Tidak bisa dirampungkan. - + &Quit &Quit - + Ctrl+Q Ctrl+Q - + Bye Bye - + &Website &Website - + %1 on the Web %1 pada Web - + Make a &donation Membuat suatu &sumbangan - + Please support the continued development of %1 Harap mendukung kelanjutan pengembangan dari %1 - + &About &About - + Info about %1 Info about %1 - + Search Pencarian - + Mute volume Volume bisu - + Ctrl+M Ctrl+M - - + + &Downloads &Unduhan2 - + Show details about video downloads Show details about video downloads - + &Download &Download - + Download the current video Download the current video - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Aplikasi - + + &Playback + + + + &Playlist &Daftar putar - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Menolong - + Press %1 to raise the volume, %2 to lower it Press %1 to raise the volume, %2 to lower it - - + + Opening %1 Membuka %1 - + Do you want to exit %1 with a download in progress? Apakah Anda ingin keluar %1 dengan download yang masih berjalan? - + If you close %1 now, this download will be cancelled. Jika Anda menutup %1 sekarang, download ini akan dibatalkan. - + Close and cancel download Tutup dan membatalkan download - + Wait for download to finish Menunggu downloadnya selesai - - Fatal error: %1 - Parah error: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Keliru: %1 - + &Play &Main - + Resume playback Melanjutkan pemutaran - - Exit &Full Screen - Keluar &Layar Penuh - - - + Remaining time: %1 Sisanya waktu: %1 - + Volume at %1% Volume pada %1% - + Volume is muted Volume adalah bisu - + Volume is unmuted Volume adalah tidak bisu - + Maximum video definition set to %1 Maksimumnya definisi video set ke %1 - + Your privacy is now safe Your privacy is now safe - + Downloads complete Downloads komplit @@ -604,57 +712,80 @@ MediaView - + Most relevant Paling relevan - + Most recent Terbanyak saat ini - + Most viewed Most viewed - + You can now paste the YouTube link into another application Sekarang Anda dapat paste link YouTube ke dalam aplikasi lain - + You can now paste the video stream URL into another application Anda sekarang dapat menempelkan video stream URL ke dalam aplikasi lain - + The link will be valid only for a limited time. The link will be valid only for a limited time. - + This is just the demo version of %1. Ini hanya versi demo dari %1. - + It allows you to test the application and see if it works for you. Ini memungkinkan Anda untuk menguji aplikasi dan melihat apakah ia bekerja untuk Anda. - + Continue Berlanjut - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Dapatkan versi komplit - + Downloading %1 Mengunduh %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Jaringannya ada kesalahan: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 views - + %1 of %2 (%3) — %4 %1 of %2 (%3) — %4 - + Preparing Preparing - + Failed Failed - + Completed Komplit - + Stopped Berhenti - + Stop downloading Berhenti mendownload - + Show in %1 Show in %1 - + Open parent folder Buka map induk - + Restart downloading Mengulangi mendownload @@ -723,7 +854,7 @@ SearchLineEdit - + Search Mencari @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Selamat datang ke <a href='%1'>%2</a>, - + Get the full version Dapatkan versi lengkap - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Enter - + a keyword suatu kata kunci - + a channel suatu saluran - + to start watching videos. Untuk memulai menonton video-video. - + Watch Menonton - + Recent keywords Kata kunci saat ini - + Recent channels Saluran - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Suatu versi terbaru dari %1 telah disediakan. Silahkan <a href='%2'>update ke versi %3</a> - - - + Make yourself comfortable Membuat dirimu nyaman @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Tidak dapat mendapatkan video stream untuk %1 - + Network error: %1 for %2 Jaringan sedang error: %1 por %2 diff -Nru minitube-1.5/locale/id.ts minitube-1.6/locale/id.ts --- minitube-1.5/locale/id.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/id.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Hidup diluarnya browser! - + Version %1 Version %1 - + %1 is Free Software but its development takes precious time. %1 is Free Software but its development takes precious time. - + Please <a href='%1'>donate</a> to support the continued development of %2. Silahkan <a href='%1'>donate</a> untuk mendukung kelanjutan pangembangannya dari %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Laporakan bugs dan kirimkan idemu ke %1 - + Icon designed by %1. Desain ikon oleh %1. - + Compact mode contributed by %1. Kompak mode dikonstribusikan oleh %1. - + HTTP proxy support contributed by %1. HTTP dukungan proksi kontribusinya oleh %1. - - Translated by %1 - Diterjemahkan oleh by %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Dirilis dibawah the <a href='%1'>GNU General Public License</a> - + &Close &Tutup - + About Tentang - + What you always wanted to know about %1 and never dared to ask Apa kamu selalu ingin untuk mengetahui tentangnya %1 dan tidak pernah berani untuk bertanya @@ -71,55 +86,93 @@ ClearButton - + Clear Bersih + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes bit - + KB KB - + MB MB - + bytes/sec bit/dtk - + KB/sec KB/detik - + MB/sec MB/sec - + seconds detik - + minutes menit - + %4 %5 remaining %4 %5 sisanya @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Ini adalah hanya versi demo dari %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Itu bisanya hanya download video yang pendek daripada %1 menit sehingga kamu bisa menguji fungsinya downloadnya. - + Continue Teruskan - + Get the full version Dapatkan versi komplitnya - + %n Download(s) %n Mendownload(s) @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Ganti lokasi... - + Choose the download location Pilihlah lokasi unduhan - + Download location changed. Merubah lokasi unduhan. - + Current downloads will still go in the previous location. Unduhan saat ini masih ingin pergi di lokasi sebelumnya. - + Downloading to: %1 Unduhan ke: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Unduhan @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Play - + Pause Pause - + Play/Pause Mainkan/Jeda - + Stop Stop - + Stop playing after current track Stop playing after current track - + Next track Next track - + Previous track Previous track - + Increase volume Increase volume - + Decrease volume Decrease volume - + Mute Mute - + Seek forward Seek forward - + Seek backward Seek backward @@ -255,22 +308,22 @@ ListModel - + Searching... Pencarian... - + Show %1 More Tampilkan %1 More - + No videos No videos - + No more videos No more videos @@ -278,7 +331,7 @@ LoadingWidget - + Error Gangguan @@ -286,317 +339,372 @@ MainWindow - + &Stop &Stop - + Stop playback and go back to the search view Stop playback and go back to the search view - + S&kip S&kip - + Skip to the next video Skip to the next video - - + + &Pause &Pause - - + + Pause playback Pause playback - - + &Full Screen &Full Screen - + Go full screen Go full screen - + &Compact mode &Compact mode - + Hide the playlist and the toolbar Hide the playlist and the toolbar - + Open the &YouTube page Buka the &halaman YouTube - + Go to the YouTube video page and pause playback Pergi ke halaman video YouTube dan jeda pemutaran - + Copy the YouTube &link Copy the YouTube &link - + Copy the current video YouTube link to the clipboard Copy the current video YouTube link to the clipboard - + Copy the video stream &URL Copy the video stream &URL - + Copy the current video stream URL to the clipboard Copy the current video stream URL to the clipboard - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Remove - + Remove the selected videos from the playlist Remove the selected videos from the playlist - + Move &Up Move &Up - + Move up the selected videos in the playlist Gerakkan ke atas video yang dipilih dalam daftar-main - + Move &Down Move &Down - + Move down the selected videos in the playlist Gerakkan ke bawah video yang dipilih dalam daftar-main - + &Clear recent searches &Clear recent searches - + Clear the search history. Cannot be undone. Menghapus sejarah pencarian. Tidak bisa dikembalikan. - + &Quit &Cabut - + Ctrl+Q Ctrl+Q - + Bye Selamat tinggal - + &Website &Situs web - + %1 on the Web %1 pada Web - + Make a &donation Make a &donation - + Please support the continued development of %1 Please support the continued development of %1 - + &About &Tentang - + Info about %1 Info Tentang %1 - + Search Search - + Mute volume Bisukan volume - + Ctrl+M Ctrl+M - - + + &Downloads &Unduhan-unduhan - + Show details about video downloads Tampilkan detail tentang unduhan-unduhan video - + &Download &Unduhan - + Download the current video Unduhan-unduhan video saat ini - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Application - + + &Playback + + + + &Playlist &Daftar-Main - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Help - + Press %1 to raise the volume, %2 to lower it Tekan %1 untuk menambahkan volume, %2 untuk merendahkan itu - - + + Opening %1 Membuka %1 - + Do you want to exit %1 with a download in progress? Do you want to exit %1 with a download in progress? - + If you close %1 now, this download will be cancelled. Jika Anda menutup %1 sekarang, unduhan ini akan dibatalkan. - + Close and cancel download Tutup dan membatalkan unduhan - + Wait for download to finish Menunggu unduhannya selesai - - Fatal error: %1 - Kesalahan parah: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Error: %1 - + &Play &Play - + Resume playback Resume playback - - Exit &Full Screen - Keluar &Layar Penuh - - - + Remaining time: %1 Sisanya waktu: %1 - + Volume at %1% Volume at %1% - + Volume is muted Volumenya adalah bisu - + Volume is unmuted Volumenya tidak bisu - + Maximum video definition set to %1 Maksimumnya definisi video set ke %1 - + Your privacy is now safe Privasimu adalah aman sekarang - + Downloads complete Unduhan-unduhan komplit @@ -604,57 +712,80 @@ MediaView - + Most relevant Yang paling relevan - + Most recent Most recent - + Most viewed Yang paling banyak ditonton - + You can now paste the YouTube link into another application Sekarang Anda dapat paste link YouTube ke dalam aplikasi yang lain - + You can now paste the video stream URL into another application You can now paste the video stream URL into another application - + The link will be valid only for a limited time. Link akan berlaku hanya untuk waktu yang terbatas. - + This is just the demo version of %1. This is just the demo version of %1. - + It allows you to test the application and see if it works for you. Ini memungkinkan Anda untuk menguji aplikasi dan melihat apakah ia bekerja untuk Anda. - + Continue Continue - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Get the full version - + Downloading %1 Downloading %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Network error: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 lihat-lihat - + %1 of %2 (%3) — %4 %1 of %2 (%3) — %4 - + Preparing Persiapan - + Failed Kesalahan - + Completed Completed - + Stopped Stopped - + Stop downloading Berhenti mengunduh - + Show in %1 Tampilkan di %1 - + Open parent folder Open parent folder - + Restart downloading Mengulangi mengunduh @@ -723,7 +854,7 @@ SearchLineEdit - + Search Search @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Selamat datang ke <a href='%1'>%2</a>, - + Get the full version Get the full version - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Masukkan - + a keyword sebuah kata kunci - + a channel a channel - + to start watching videos. to start watching videos. - + Watch Watch - + Recent keywords Recent keywords - + Recent channels Saluran-saluran saat ini - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Suatu versi terbaru dari %1 is available. Please <a href='%2'>update to version %3</a> - - - + Make yourself comfortable Make yourself comfortable @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Cannot get video stream for %1 - + Network error: %1 for %2 Jaringan sedang error: %1 untuk %2 diff -Nru minitube-1.5/locale/it_IT.ts minitube-1.6/locale/it_IT.ts --- minitube-1.5/locale/it_IT.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/it_IT.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - C'è vita fuori del browser! - - - - Version %1 - Versione %1 - - - - %1 is Free Software but its development takes precious time. - %1 è Software Libero ma il suo sviluppo richiede tempo prezioso. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - <a href="%1">Fai una donazione</a> per aiutare lo sviluppo di %2. - - - - Report bugs and send in your ideas to %1 - Segnala problemi e manda le tue idee a %1 - - - - Icon designed by %1. - Icona disegnata da %1. - - - - Compact mode contributed by %1. - Modalità compatta sviluppata da %1. - - - - HTTP proxy support contributed by %1. - Supporto per i proxy HTTP svilupparo da %1. - - - - Translated by %1 - Tradotto da %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - Rilasciato sotto licenza <a href="%1">GNU General Public License</a> - - - - &Close - &Chiudi - - - - About - Informazioni - - - - What you always wanted to know about %1 and never dared to ask - Quello che hai sempre voluto sapere su %1 e non hai mai osato chiedere - - - - ClearButton - - - Clear - Cancella - - - - DownloadItem - - - bytes - bytes - - - - KB - KB - - - - MB - MB - - - - bytes/sec - bytes/sec - - - - KB/sec - KB/sec - - - - MB/sec - MB/sec - - - - seconds - secondi - - - - minutes - minuti - - - - %4 %5 remaining - %4 %5 al termine - - - - DownloadManager - - - This is just the demo version of %1. - Questa è solo la versione demo di %1. - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - Puoi scaricare solo video più corti di %1 minuti, così puoi testare la funzionalità dei download. - - - - Continue - Continua - - - - Get the full version - Compra la versione completa - - - - %n Download(s) - 1 download%n download - - - - DownloadSettings - - - Change location... - Cambia destinazione... - - - - Choose the download location - Scegli la destinazione dei download - - - - Download location changed. - La destinazione dei download è cambiata. - - - - Current downloads will still go in the previous location. - I download già in corso andranno comunque nella destinazione precedente. - - - - Downloading to: %1 - Scarica in: %1 - - - - DownloadView - - - - Downloads - Download - - - - GlobalShortcuts - - - Play - Play - - - - Pause - Pausa - - - - Play/Pause - Play/Pausa - - - - Stop - Stop - - - - Stop playing after current track - Ferma al termine del video corrente - - - - Next track - Prossima traccia - - - - Previous track - Traccia precedente - - - - Increase volume - Aumenta il volume - - - - Decrease volume - Diminuisci il volume - - - - Mute - Senza audio - - - - Seek forward - Salta in avanti - - - - Seek backward - Salta indietro - - - - ListModel - - - Searching... - Ricerca... - - - - Show %1 More - Mostra altri %1 - - - - No videos - Nessun video - - - - No more videos - Nessun altro video - - - - LoadingWidget - - - Error - Errore - - - - MainWindow - - - &Stop - &Ferma - - - - Stop playback and go back to the search view - Ferma il video e torna alla ricerca - - - - S&kip - &Salta - - - - Skip to the next video - Salta al prossimo video - - - - - &Pause - &Pausa - - - - - Pause playback - Metti in pausa - - - - - &Full Screen - &Schermo intero - - - - Go full screen - Vai in modalità schermo intero - - - - &Compact mode - Modalità &compatta - - - - Hide the playlist and the toolbar - Nascondi la playlist e la barra degli strumenti - - - - Open the &YouTube page - Apri su &YouTube - - - - Go to the YouTube video page and pause playback - Vai su YouTube e metti in pausa - - - - Copy the YouTube &link - Copia il &link a YouTube - - - - Copy the current video YouTube link to the clipboard - Copia negli appunti il link a YouTube per il video corrente - - - - Copy the video stream &URL - Copia la &URL dello stream video - - - - Copy the current video stream URL to the clipboard - Copia negli appunti la URL dello stream per il video corrente - - - - &Remove - &Elimina - - - - Remove the selected videos from the playlist - Elimina i video selezionati dalla playlist - - - - Move &Up - Sposta &sopra - - - - Move up the selected videos in the playlist - Sposta video selezionati verso l'alto - - - - Move &Down - Sposta so&tto - - - - Move down the selected videos in the playlist - Sposta i video selezionati verso il basso - - - - &Clear recent searches - &Cancella le ultime ricerche - - - - Clear the search history. Cannot be undone. - Cancella le ultime ricerche. L'azione non potrà essere annullata. - - - - &Quit - &Esci - - - - Ctrl+Q - - - - - Bye - Ciao - - - - &Website - Sito &web - - - - %1 on the Web - %1 sul Web - - - - Make a &donation - Fai una &donazione - - - - Please support the continued development of %1 - Supporta lo sviluppo di %1 - - - - &About - &Informazioni - - - - Info about %1 - Informazioni su %1 - - - - Search - Cerca - - - - Mute volume - Disattiva l'audio - - - - Ctrl+M - Ctrl+M - - - - - &Downloads - &Download - - - - Show details about video downloads - Mostra informazioni sui download - - - - &Download - &Download - - - - Download the current video - Scarica il video corrente - - - - &Application - &Applicazione - - - - &Playlist - - - - - &Video - - - - - &Help - &Aiuto - - - - Press %1 to raise the volume, %2 to lower it - Premi %1 per alzare il volume, %2 per abbassarlo - - - - - Opening %1 - Apertura di %1 - - - - Do you want to exit %1 with a download in progress? - Vuoi uscire da %1 con un download in corso? - - - - If you close %1 now, this download will be cancelled. - Se chiudi %1 adesso, i download verranno annullati. - - - - Close and cancel download - Chiudi e annulla i download - - - - Wait for download to finish - Aspetta che i download siano completi - - - - Fatal error: %1 - Errore fatale: %1 - - - - Error: %1 - Errore: %1 - - - - &Play - - - - - Resume playback - Continua - - - - Exit &Full Screen - &Esci dallo schermo intero - - - - Remaining time: %1 - Tempo rimanente: %1 - - - - Volume at %1% - Volume al %1% - - - - Volume is muted - Audio disattivato - - - - Volume is unmuted - Audio attivato - - - - Maximum video definition set to %1 - La definizione video massima è impostata a %1 - - - - Your privacy is now safe - La tua privacy è al sicuro - - - - Downloads complete - I download sono completi - - - - MediaView - - - Most relevant - Più rilevanti - - - - Most recent - Più recenti - - - - Most viewed - Più visti - - - - You can now paste the YouTube link into another application - Ora puoi incollare il link a YouTube in un'altra applicazione - - - - You can now paste the video stream URL into another application - Ora puoi incollare la URL dello stream in un'altra applicazione - - - - The link will be valid only for a limited time. - Il link rimarrà valido per un periodo di tempo limitato. - - - - This is just the demo version of %1. - Questa è solo la versione demo di %1. - - - - It allows you to test the application and see if it works for you. - Ti permette di testare l'applicazione e verificare che funzioni sul tuo computer. - - - - Continue - Continua - - - - Get the full version - Compra la versione completa - - - - Downloading %1 - Scarica in: %1 - - - - NetworkAccess - - - Network error: %1 - Errore di rete: %1 - - - - PrettyItemDelegate - - - %1 views - %1 visualizzazioni - - - - %1 of %2 (%3) — %4 - %1 di %2 (%3) — %4 - - - - Preparing - In preparazione - - - - Failed - Fallito - - - - Completed - Completato - - - - Stopped - Fermo - - - - Stop downloading - Interrompi il download - - - - Show in %1 - Mostra nel %1 - - - - Open parent folder - Mostra nella cartella - - - - Restart downloading - Prova a scaricare di nuovo - - - - SearchLineEdit - - - Search - Cerca - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - Benvenuto su <a href="%1">%2</a>, - - - - Get the full version - Compra la versione completa - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - Scrivi - - - - a keyword - una parola chiave - - - - a channel - un canale - - - - to start watching videos. - per iniziare a guardare i video. - - - - Watch - Guarda - - - - Recent keywords - Ultime ricerche - - - - Recent channels - Ultimi canali - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - È disponibile una nuova versione di %1. <a href='%2'>Aggiorna alla versione %3</a> - - - - Make yourself comfortable - Mettiti comodo - - - - Video - - - Cannot get video stream for %1 - Impossibile ottenere il flusso video per %1 - - - - Network error: %1 for %2 - Errore di rete: %1 per %2 - - - \ No newline at end of file diff -Nru minitube-1.5/locale/it.ts minitube-1.6/locale/it.ts --- minitube-1.5/locale/it.ts 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/locale/it.ts 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,929 @@ + +UTF-8 + + AboutView + + + There's life outside the browser! + C'è vita fuori del browser! + + + + Version %1 + Versione %1 + + + + %1 is Free Software but its development takes precious time. + %1 è Software Libero ma il suo sviluppo richiede tempo prezioso. + + + + Please <a href='%1'>donate</a> to support the continued development of %2. + <a href="%1">Fai una donazione</a> per aiutare lo sviluppo di %2. + + + + You may want to try my other apps as well: + Prova anche le mie altre applicazioni: + + + + %1, a YouTube music player + %1, un player musicale per YouTube + + + + %1, a music player + %1, un player musicale + + + + Translate %1 to your native language using %2 + Traduci %1 nella tua lingua usando %2 + + + + Report bugs and send in your ideas to %1 + Segnala problemi e manda le tue idee a %1 + + + + Icon designed by %1. + Icona disegnata da %1. + + + + Compact mode contributed by %1. + Modalità compatta sviluppata da %1. + + + + HTTP proxy support contributed by %1. + Supporto per i proxy HTTP svilupparo da %1. + + + + Released under the <a href='%1'>GNU General Public License</a> + Rilasciato sotto licenza <a href="%1">GNU General Public License</a> + + + + &Close + &Chiudi + + + + About + Informazioni + + + + What you always wanted to know about %1 and never dared to ask + Quello che hai sempre voluto sapere su %1 e non hai mai osato chiedere + + + + ClearButton + + + Clear + Cancella + + + + DemoStartupView + + + Please license %1 + Compra %1 + + + + This demo has expired. + Questa demo è scaduta. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + La versione completa ti permette di scaricare video più lunghi di %1 minuti e di guardare i video senza interruzioni. + + + + This demo will expire in %1 days. + Questa demo scadrà in %1 giorni. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Acquistando la versione completa, supporterai anche il lavoro che ho fatto per creare %1. + + + + Use Demo + Usa la demo + + + + Get the full version + Compra la versione completa + + + + DownloadItem + + + bytes + bytes + + + + KB + KB + + + + MB + MB + + + + bytes/sec + bytes/sec + + + + KB/sec + KB/sec + + + + MB/sec + MB/sec + + + + seconds + secondi + + + + minutes + minuti + + + + %4 %5 remaining + %4 %5 al termine + + + + DownloadManager + + + This is just the demo version of %1. + Questa è solo la versione demo di %1. + + + + It can only download videos shorter than %1 minutes so you can test the download functionality. + Puoi scaricare solo video più corti di %1 minuti, così puoi testare la funzionalità dei download. + + + + Continue + Continua + + + + Get the full version + Compra la versione completa + + + + %n Download(s) + 1 download%n download + + + + DownloadSettings + + + Change location... + Cambia destinazione... + + + + Choose the download location + Scegli la destinazione dei download + + + + Download location changed. + La destinazione dei download è cambiata. + + + + Current downloads will still go in the previous location. + I download già in corso andranno comunque nella destinazione precedente. + + + + Downloading to: %1 + Scarica in: %1 + + + + DownloadView + + + + Downloads + Download + + + + GlobalShortcuts + + + Play + Play + + + + Pause + Pausa + + + + Play/Pause + Play/Pausa + + + + Stop + Stop + + + + Stop playing after current track + Ferma al termine del video corrente + + + + Next track + Prossima traccia + + + + Previous track + Traccia precedente + + + + Increase volume + Aumenta il volume + + + + Decrease volume + Diminuisci il volume + + + + Mute + Senza audio + + + + Seek forward + Salta in avanti + + + + Seek backward + Salta indietro + + + + ListModel + + + Searching... + Ricerca... + + + + Show %1 More + Mostra altri %1 + + + + No videos + Nessun video + + + + No more videos + Nessun altro video + + + + LoadingWidget + + + Error + Errore + + + + MainWindow + + + &Stop + &Ferma + + + + Stop playback and go back to the search view + Ferma il video e torna alla ricerca + + + + S&kip + &Salta + + + + Skip to the next video + Salta al prossimo video + + + + + &Pause + &Pausa + + + + + Pause playback + Metti in pausa + + + + &Full Screen + &Schermo intero + + + + Go full screen + Vai in modalità schermo intero + + + + &Compact mode + Modalità &compatta + + + + Hide the playlist and the toolbar + Nascondi la playlist e la barra degli strumenti + + + + Open the &YouTube page + Apri su &YouTube + + + + Go to the YouTube video page and pause playback + Vai su YouTube e metti in pausa + + + + Copy the YouTube &link + Copia il &link a YouTube + + + + Copy the current video YouTube link to the clipboard + Copia negli appunti il link a YouTube per il video corrente + + + + Copy the video stream &URL + Copia la &URL dello stream video + + + + Copy the current video stream URL to the clipboard + Copia negli appunti la URL dello stream per il video corrente + + + + Find video &parts + Trova le &parti del video + + + + Find other video parts hopefully in the right order + Trova le parti mancanti di questo video + + + + &Remove + &Elimina + + + + Remove the selected videos from the playlist + Elimina i video selezionati dalla playlist + + + + Move &Up + Sposta &sopra + + + + Move up the selected videos in the playlist + Sposta video selezionati verso l'alto + + + + Move &Down + Sposta so&tto + + + + Move down the selected videos in the playlist + Sposta i video selezionati verso il basso + + + + &Clear recent searches + &Cancella le ultime ricerche + + + + Clear the search history. Cannot be undone. + Cancella le ultime ricerche. L'azione non potrà essere annullata. + + + + &Quit + &Esci + + + + Ctrl+Q + Ctrl+Q + + + + Bye + Ciao + + + + &Website + Sito &web + + + + %1 on the Web + %1 sul Web + + + + Make a &donation + Fai una &donazione + + + + Please support the continued development of %1 + Supporta lo sviluppo di %1 + + + + &About + &Informazioni + + + + Info about %1 + Informazioni su %1 + + + + Search + Cerca + + + + Mute volume + Disattiva l'audio + + + + Ctrl+M + Ctrl+M + + + + + &Downloads + &Download + + + + Show details about video downloads + Mostra informazioni sui download + + + + &Download + &Download + + + + Download the current video + Scarica il video corrente + + + + Share the current video using %1 + Condividi il video corrente usando %1 + + + + &Email + &Email + + + + Email + Email + + + + &Application + &Applicazione + + + + &Playback + &Riproduzione + + + + &Playlist + &Playlist + + + + &Video + &Video + + + + &View + &Visualizza + + + + &Share + &Condividi + + + + &Help + &Aiuto + + + + Press %1 to raise the volume, %2 to lower it + Premi %1 per alzare il volume, %2 per abbassarlo + + + + + Opening %1 + Apertura di %1 + + + + Do you want to exit %1 with a download in progress? + Vuoi uscire da %1 con un download in corso? + + + + If you close %1 now, this download will be cancelled. + Se chiudi %1 adesso, i download verranno annullati. + + + + Close and cancel download + Chiudi e annulla i download + + + + Wait for download to finish + Aspetta che i download siano completi + + + + Leave &Full Screen + Lascia lo &schermo intero + + + + %1 version %2 is now available. + E' disponibile %1 versione %2 + + + + Remind me later + Ricordamelo più tardi + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + Per aggiornare, scarica di nuovo %1 dal link che hai ricevuto per email e installa. + + + + Update + Aggiorna + + + + Error: %1 + Errore: %1 + + + + &Play + &Play + + + + Resume playback + Continua + + + + Remaining time: %1 + Tempo rimanente: %1 + + + + Volume at %1% + Volume al %1% + + + + Volume is muted + Audio disattivato + + + + Volume is unmuted + Audio attivato + + + + Maximum video definition set to %1 + La definizione video massima è impostata a %1 + + + + Your privacy is now safe + La tua privacy è al sicuro + + + + Downloads complete + I download sono completi + + + + MediaView + + + Most relevant + Più rilevanti + + + + Most recent + Più recenti + + + + Most viewed + Più visti + + + + You can now paste the YouTube link into another application + Ora puoi incollare il link a YouTube in un'altra applicazione + + + + You can now paste the video stream URL into another application + Ora puoi incollare la URL dello stream in un'altra applicazione + + + + The link will be valid only for a limited time. + Il link rimarrà valido per un periodo di tempo limitato. + + + + This is just the demo version of %1. + Questa è solo la versione demo di %1. + + + + It allows you to test the application and see if it works for you. + Ti permette di testare l'applicazione e verificare che funzioni sul tuo computer. + + + + Continue + Continua + + + + of + Used in video parts, as in '2 of 3' + di + + + + part + This is for video parts, as in 'Cool video - part 1' + parte + + + + episode + This is for video parts, as in 'Cool series - episode 1' + episodio + + + + Sent from %1 + Inviato da %1 + + + + Get the full version + Compra la versione completa + + + + Downloading %1 + Scarica in: %1 + + + + NetworkAccess + + + Network error: %1 + Errore di rete: %1 + + + + PrettyItemDelegate + + + %1 views + %1 visualizzazioni + + + + %1 of %2 (%3) — %4 + %1 di %2 (%3) — %4 + + + + Preparing + In preparazione + + + + Failed + Fallito + + + + Completed + Completato + + + + Stopped + Fermo + + + + Stop downloading + Interrompi il download + + + + Show in %1 + Mostra nel %1 + + + + Open parent folder + Mostra nella cartella + + + + Restart downloading + Prova a scaricare di nuovo + + + + SearchLineEdit + + + Search + Cerca + + + + SearchView + + + Welcome to <a href='%1'>%2</a>, + Benvenuto su <a href="%1">%2</a>, + + + + Get the full version + Compra la versione completa + + + + Enter + "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" + Scrivi + + + + a keyword + una parola chiave + + + + a channel + un canale + + + + to start watching videos. + per iniziare a guardare i video. + + + + Watch + Guarda + + + + Recent keywords + Ultime ricerche + + + + Recent channels + Ultimi canali + + + + Make yourself comfortable + Mettiti comodo + + + + Video + + + Cannot get video stream for %1 + Impossibile ottenere il flusso video per %1 + + + + Network error: %1 for %2 + Errore di rete: %1 per %2 + + + \ No newline at end of file diff -Nru minitube-1.5/locale/ja_JP.ts minitube-1.6/locale/ja_JP.ts --- minitube-1.5/locale/ja_JP.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/ja_JP.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Webブラウザなしでも大丈夫! - - - - Version %1 - バージョン %1 - - - - %1 is Free Software but its development takes precious time. - %1はフリーソフトウェアですが、開発には貴重な時間が費やされています。 - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - - - - - Report bugs and send in your ideas to %1 - バグレポートやアイデアは%1までお願いします - - - - Icon designed by %1. - アイコンは%1さんのデザインです。 - - - - Compact mode contributed by %1. - コンパクトモードは%1さんの貢献です。 - - - - HTTP proxy support contributed by %1. - - - - - Translated by %1 - 翻訳は%1さん達の協力です - - - - Released under the <a href='%1'>GNU General Public License</a> - <a href='%1'>GNU General Public License</a>で配布されます - - - - &Close - 閉じる(&C) - - - - About - プログラムについて - - - - What you always wanted to know about %1 and never dared to ask - %1について知りたいことがあったら、思いきって連絡をください - - - - ClearButton - - - Clear - クリア - - - - DownloadItem - - - bytes - - - - - KB - - - - - MB - - - - - bytes/sec - - - - - KB/sec - - - - - MB/sec - - - - - seconds - - - - - minutes - - - - - %4 %5 remaining - - - - - DownloadManager - - - This is just the demo version of %1. - - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - - - - - Continue - - - - - Get the full version - - - - - %n Download(s) - - - - - DownloadSettings - - - Change location... - - - - - Choose the download location - - - - - Download location changed. - - - - - Current downloads will still go in the previous location. - - - - - Downloading to: %1 - - - - - DownloadView - - - - Downloads - - - - - GlobalShortcuts - - - Play - - - - - Pause - - - - - Play/Pause - - - - - Stop - - - - - Stop playing after current track - - - - - Next track - - - - - Previous track - - - - - Increase volume - - - - - Decrease volume - - - - - Mute - - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - 検索中... - - - - Show %1 More - さらに%1エントリ観る - - - - No videos - 見つかりませんでした - - - - No more videos - 見つかりませんでした - - - - LoadingWidget - - - Error - エラー - - - - MainWindow - - - &Stop - ストップ(&S) - - - - Stop playback and go back to the search view - 再生を停止させて、検索ビューに戻ります - - - - S&kip - スキップ(&k) - - - - Skip to the next video - 次の動画へ - - - - - &Pause - 一時停止(&P) - - - - - Pause playback - 再生を一時停止します - - - - - &Full Screen - フルスクリーン(&F) - - - - Go full screen - フルスクリーン - - - - &Compact mode - コンパクトモード(&C) - - - - Hide the playlist and the toolbar - プレイリストとツールバーを隠す - - - - Open the &YouTube page - - - - - Go to the YouTube video page and pause playback - - - - - Copy the YouTube &link - - - - - Copy the current video YouTube link to the clipboard - - - - - Copy the video stream &URL - - - - - Copy the current video stream URL to the clipboard - - - - - &Remove - 削除(&R) - - - - Remove the selected videos from the playlist - プレイリストから選択した動画を削除 - - - - Move &Up - 上へ(&U) - - - - Move up the selected videos in the playlist - 選択した動画をプレイリスト内で上へ移動させます - - - - Move &Down - 下へ(&D) - - - - Move down the selected videos in the playlist - 選択した動画をプレイリスト内で下へ移動させます - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - - - - - &Quit - 終了(&Q) - - - - Ctrl+Q - Ctrl+Q - - - - Bye - プログラムを終了 - - - - &Website - Webページへ(&W) - - - - %1 on the Web - %1のWebページを開きます - - - - Make a &donation - - - - - Please support the continued development of %1 - %1の開発をサポートしてください! - - - - &About - プログラムについて(&A) - - - - Info about %1 - %1について - - - - Search - - - - - Mute volume - - - - - Ctrl+M - Ctrl-M - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - - - - - &Playlist - プレイリスト(&P) - - - - &Video - 動画(&V) - - - - &Help - ヘルプ(&H) - - - - Press %1 to raise the volume, %2 to lower it - - - - - - Opening %1 - %1を開いています - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - 致命的なエラー: %1 - - - - Error: %1 - エラー: %1 - - - - &Play - 再生(&P) - - - - Resume playback - 再生再開します - - - - Exit &Full Screen - フルスクリーンから戻る(&F) - - - - Remaining time: %1 - - - - - Volume at %1% - ボリューム%1% - - - - Volume is muted - 音量OFFにしました - - - - Volume is unmuted - 音量ONにしました - - - - Maximum video definition set to %1 - - - - - Your privacy is now safe - - - - - Downloads complete - - - - - MediaView - - - Most relevant - 関連度 - - - - Most recent - 新着 - - - - Most viewed - 閲覧回数 - - - - You can now paste the YouTube link into another application - - - - - You can now paste the video stream URL into another application - - - - - The link will be valid only for a limited time. - - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - ネットワークエラー: %1 - - - - PrettyItemDelegate - - - %1 views - %1回 閲覧 - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - - - - - Stop downloading - - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - 検索 - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - ようこそ<a href='%1'>%2</a>へ! - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - 検索 - - - - Recent keywords - 最近検索したキーワード - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - 新しい%1があります。<a href='%2'>バージョン%3へバージョンアップ</a>しましょう - - - - Make yourself comfortable - さあリラックスしましょう - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - ネットワークエラー: %1 (%2へのアクセスにて) - - - \ No newline at end of file diff -Nru minitube-1.5/locale/jv.ts minitube-1.6/locale/jv.ts --- minitube-1.5/locale/jv.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/jv.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Ningkene yoiku urip ning njobone browser! - + Version %1 Versi %1 - + %1 is Free Software but its development takes precious time. %1 yoiku Software bebas tapi pangembangane iku mbutuhake wektu sing berhargo. - + Please <a href='%1'>donate</a> to support the continued development of %2. Sumonggo <a href='%1'>Nyumbang</a> kanggo ndukung kelanjutane pangembangane seko %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Laporake bugs lan kirimno idemu ring %1 - + Icon designed by %1. Ndesain ikon oleh %1. - + Compact mode contributed by %1. Kompak mode konstribusine oleh %1. - + HTTP proxy support contributed by %1. HTTP dukungan proksi kontribusine oleh %1. - - Translated by %1 - Diterjemahno oleh %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Dirilis nok ngisore the <a href='%1'>GNU Pusate Lisensine Publik</a> - + &Close &Tutup - + About Seputarane - + What you always wanted to know about %1 and never dared to ask Opo sing kowe slalu kepingin kanggo ngreteni sekitarane %1 lan oratau wani kanggo takon @@ -71,55 +86,93 @@ ClearButton - + Clear Resik + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes bit - + KB KB - + MB MB - + bytes/sec bit/detik - + KB/sec KB/detik - + MB/sec MB/detik - + seconds detik - + minutes menit - + %4 %5 remaining %4 %5 sisone @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Iki yoiku mung versi demo seko %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Iku isone mung ngunduh video sing cekak sekokaro %1 menit sahinggo kowe iso ngetest fungsinane unduhane. - + Continue Terusno - + Get the full version Enthukno versi komplite - + %n Download(s) %n Ngunduh-unduh(s)%n Ngunduh(s) @@ -155,27 +208,27 @@ DownloadSettings - + Change location... ngGanti lokasi... - + Choose the download location Mileho lokasine unduhan - + Download location changed. Lokasi ngunduhe diganti. - + Current downloads will still go in the previous location. Downloadte sing sakiki iseh arep mlebu ning lokasi sakdurunge. - + Downloading to: %1 Ngunduhi reng: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Ngunduh-unduh @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Nyetel - + Pause Lheren sedelhok - + Play/Pause Nyetel/Lheren - + Stop Mandhek - + Stop playing after current track Mandhek nyetele sakwise trek saat iki - + Next track Trek saklanjute - + Previous track Trek sakdurunge - + Increase volume Nambahake volume - + Decrease volume Ngurangi volume - + Mute Mbisu - + Seek forward Nyepetno mengarep - + Seek backward Nyepetno memburi @@ -255,22 +308,22 @@ ListModel - + Searching... ngGoleki... - + Show %1 More Kethok %1 Luwih - + No videos Ogak video - + No more videos Gakono video m'eneh @@ -278,7 +331,7 @@ LoadingWidget - + Error Error @@ -286,317 +339,372 @@ MainWindow - + &Stop &Mandheg - + Stop playback and go back to the search view Mandheg playback lan mbalik ning tampilan ngGo ngGoleki - + S&kip S&kip - + Skip to the next video Lewati reng video saklanjute - - + + &Pause &Lheren - - + + Pause playback Lheren sedhelok pemutarane - - + &Full Screen &Layar Kebak - + Go full screen Ing Layar Kebak - + &Compact mode &Kompak mode - + Hide the playlist and the toolbar Ndhelikno playlist lan toolbar - + Open the &YouTube page Mbukak the &halaman YouTube - + Go to the YouTube video page and pause playback Lungo Ing halamane video YouTube land nglereni penyetelan - + Copy the YouTube &link Njiplak YouTube &link - + Copy the current video YouTube link to the clipboard Njiplak link-nge video YouTube sing sakiki ning clipboard - + Copy the video stream &URL Nyalin video stream &URL - + Copy the current video stream URL to the clipboard Njiplak video stream URL sing sakiki ning clipboard - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &ngGuwak - + Remove the selected videos from the playlist ngGuwak video sing diseleksi seko playlist - + Move &Up Mindah &Unggah - + Move up the selected videos in the playlist Mindahno menduwur video sing diseleksi ning playlistt - + Move &Down Mindah &Mudhun - + Move down the selected videos in the playlist Mindahno mengisor video sing diseleksi ning daftar-nyetel - + &Clear recent searches &Resik penelusurane saat iki - + Clear the search history. Cannot be undone. Ngresiki riwayate penelusuran. Ora iso di balikake. - + &Quit &Medhal - + Ctrl+Q Ctrl+Q - + Bye Bye - + &Website &Website - + %1 on the Web %1 nok the Web - + Make a &donation Gawe sakwiji &nyumbango - + Please support the continued development of %1 Sumonggo ndukungo kelanjutane pangembangane seko %1 - + &About &Tentange - + Info about %1 Info sakitarane %1 - + Search Nelusuri - + Mute volume mBisukno volumene - + Ctrl+M Ctrl+M - - + + &Downloads &nDownloads - + Show details about video downloads Tampilno detaile sak kitarane unduhan-unduhane video - + &Download &nDownload - + Download the current video Ngunduhi video sing saat iki - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Applikasi - + + &Playback + + + + &Playlist &Daftar-nyetel - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Nulung - + Press %1 to raise the volume, %2 to lower it Pejhet %1 kanggo ningkatno volume, %2 kanggo ngrendahno iku - - + + Opening %1 Mbukak'i %1 - + Do you want to exit %1 with a download in progress? Opo kowe pingin metu %1 karo sakwijine unduhan sing isih mlaku prosese? - + If you close %1 now, this download will be cancelled. Tek kowe nutup %1 sakiki, ngunduhane iki arep dibatalake. - + Close and cancel download Tutup lan mbatalake ngunduhine - + Wait for download to finish Nunggu kanggo unduhane rampung - - Fatal error: %1 - Parah error: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Error: %1 - + &Play &Nyetel - + Resume playback Nglanjutno nyetel-ulang - - Exit &Full Screen - Metu &Layare Kebak - - - + Remaining time: %1 Sisone wektune: %1 - + Volume at %1% Volume nok %1% - + Volume is muted Volume yo Mbisu - + Volume is unmuted Volume yo orak mbisu - + Maximum video definition set to %1 Maksimale video definisine diset ning %1 - + Your privacy is now safe Privasimu yoiku sakiki aman - + Downloads complete Unduhane komplit @@ -604,57 +712,80 @@ MediaView - + Most relevant Sing paling sesuai - + Most recent Sing paling lagek - + Most viewed Sing paling dideloki - + You can now paste the YouTube link into another application Kowe iso paste YouTube link sakiki ninggone aplikasi liyane - + You can now paste the video stream URL into another application Kowe sakiki iso paste video stream URL ninggone aplikasi liyane - + The link will be valid only for a limited time. Link-nge kepingin diaslikake mung kanggo sak terbatase wektu. - + This is just the demo version of %1. Iki yoiku mung demo version of %1. - + It allows you to test the application and see if it works for you. Iki diolehno kowe kanggo ngetest aplikasine lan ndeloki tek iku fungsi kanggo kowe. - + Continue Nglanjutke - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Entukno versi komplite - + Downloading %1 Ngunduhi %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Jaringane error: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 Ndeloki - + %1 of %2 (%3) — %4 %1 of %2 (%3) — %4 - + Preparing Nyiapake - + Failed Gagal - + Completed Komplit - + Stopped Mandhekake - + Stop downloading Ngendhekno ngunduhe - + Show in %1 Tampilno ing %1 - + Open parent folder Mbukak map induk - + Restart downloading Ngengulang ngunduhane @@ -723,7 +854,7 @@ SearchLineEdit - + Search Nelusuri @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Sugengrawuh kanggo <a href='%1'>%2</a>, - + Get the full version Enthukno versi komplite - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Lebokno - + a keyword sakwiji kata-kunci - + a channel sakwiji saluran - + to start watching videos. kanggo ngawiti nyeksikake video. - + Watch Nonton - + Recent keywords Kata-kunci saat iki - + Recent channels Saluran lagekwae - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Sakwiji versi anyar seko %1 yoiku disediakno. Sumonggo <a href='%2'>update ring versi %3</a> - - - + Make yourself comfortable ngGawe awakmu nyaman @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Rak iso ngenthukno video stream kanggo %1 - + Network error: %1 for %2 Jaringane error: %1 por %2 diff -Nru minitube-1.5/locale/km.ts minitube-1.6/locale/km.ts --- minitube-1.5/locale/km.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/km.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - - - - - Version %1 - - - - - %1 is Free Software but its development takes precious time. - - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - - - - - Report bugs and send in your ideas to %1 - - - - - Icon designed by %1. - - - - - Compact mode contributed by %1. - - - - - HTTP proxy support contributed by %1. - - - - - Translated by %1 - - - - - Released under the <a href='%1'>GNU General Public License</a> - - - - - &Close - - - - - About - - - - - What you always wanted to know about %1 and never dared to ask - - - - - ClearButton - - - Clear - - - - - DownloadItem - - - bytes - - - - - KB - - - - - MB - - - - - bytes/sec - - - - - KB/sec - - - - - MB/sec - - - - - seconds - - - - - minutes - - - - - %4 %5 remaining - - - - - DownloadManager - - - This is just the demo version of %1. - - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - - - - - Continue - - - - - Get the full version - - - - - %n Download(s) - - - - - DownloadSettings - - - Change location... - - - - - Choose the download location - - - - - Download location changed. - - - - - Current downloads will still go in the previous location. - - - - - Downloading to: %1 - - - - - DownloadView - - - - Downloads - - - - - GlobalShortcuts - - - Play - - - - - Pause - - - - - Play/Pause - - - - - Stop - - - - - Stop playing after current track - - - - - Next track - - - - - Previous track - - - - - Increase volume - - - - - Decrease volume - - - - - Mute - - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - - - - - Show %1 More - - - - - No videos - - - - - No more videos - - - - - LoadingWidget - - - Error - - - - - MainWindow - - - &Stop - - - - - Stop playback and go back to the search view - - - - - S&kip - - - - - Skip to the next video - - - - - - &Pause - - - - - - Pause playback - - - - - - &Full Screen - - - - - Go full screen - - - - - &Compact mode - - - - - Hide the playlist and the toolbar - - - - - Open the &YouTube page - - - - - Go to the YouTube video page and pause playback - - - - - Copy the YouTube &link - - - - - Copy the current video YouTube link to the clipboard - - - - - Copy the video stream &URL - - - - - Copy the current video stream URL to the clipboard - - - - - &Remove - - - - - Remove the selected videos from the playlist - - - - - Move &Up - - - - - Move up the selected videos in the playlist - - - - - Move &Down - - - - - Move down the selected videos in the playlist - - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - - - - - &Quit - - - - - Ctrl+Q - - - - - Bye - - - - - &Website - - - - - %1 on the Web - - - - - Make a &donation - - - - - Please support the continued development of %1 - - - - - &About - - - - - Info about %1 - - - - - Search - - - - - Mute volume - - - - - Ctrl+M - - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - - - - - &Playlist - - - - - &Video - - - - - &Help - - - - - Press %1 to raise the volume, %2 to lower it - - - - - - Opening %1 - - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - - - - - Error: %1 - - - - - &Play - - - - - Resume playback - - - - - Exit &Full Screen - - - - - Remaining time: %1 - - - - - Volume at %1% - - - - - Volume is muted - - - - - Volume is unmuted - - - - - Maximum video definition set to %1 - - - - - Your privacy is now safe - - - - - Downloads complete - - - - - MediaView - - - Most relevant - - - - - Most recent - - - - - Most viewed - - - - - You can now paste the YouTube link into another application - - - - - You can now paste the video stream URL into another application - - - - - The link will be valid only for a limited time. - - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - - - - - PrettyItemDelegate - - - %1 views - - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - - - - - Stop downloading - - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - - - - - Recent keywords - - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - - - - - Make yourself comfortable - - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - - - - \ No newline at end of file diff -Nru minitube-1.5/locale/locale.pri minitube-1.6/locale/locale.pri --- minitube-1.5/locale/locale.pri 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/locale.pri 2011-10-28 20:38:22.000000000 +0000 @@ -4,7 +4,7 @@ DEPENDPATH += $$PWD # ls -1 *.ts | tr '\n' ' ' -TRANSLATIONS += ar.ts bg.ts bg_BG.ts ca_ES.ts cs_CZ.ts da.ts de_DE.ts el.ts el_GR.ts en_US.ts es.ts es_AR.ts es_ES.ts fa.ts fi.ts fi_FI.ts fr_FR.ts gl.ts he_IL.ts hr.ts hr_HR.ts hu.ts hu_HU.ts ia.ts id.ts id_ID.ts it_IT.ts ja_JP.ts jv.ts km.ts lv.ts nb_NO.ts nl.ts nl_NL.ts pl_PL.ts pt_BR.ts pt_PT.ts ro.ts ro_RO.ts ru_RU.ts sl.ts sq.ts sr.ts sv_SE.ts th.ts tr_TR.ts uk.ts uk_UA.ts zh_CN.ts +TRANSLATIONS += ar.ts ca.ts ca_ES.ts cs_CZ.ts da.ts de_DE.ts el.ts el_GR.ts es.ts es_AR.ts es_ES.ts fi_FI.ts fr.ts gl.ts he_IL.ts hr.ts hu.ts hu_HU.ts ia.ts id.ts id_ID.ts it.ts jv.ts lv.ts nb.ts nl.ts pl.ts pl_PL.ts pt.ts pt_BR.ts ro.ts ru.ts sl.ts sq.ts sr.ts sv_SE.ts te.ts tr.ts uk.ts uk_UA.ts zh_CN.ts isEmpty(QMAKE_LRELEASE) { win32:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]\lrelease.exe else:QMAKE_LRELEASE = $$[QT_INSTALL_BINS]/lrelease diff -Nru minitube-1.5/locale/lv.ts minitube-1.6/locale/lv.ts --- minitube-1.5/locale/lv.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/lv.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Arī ārpus web pārlūka ir dzīve! - + Version %1 Versija %1 - + %1 is Free Software but its development takes precious time. %1 ir Bezmaksas Programma, taču tās izstrāde prasa dārgu laiku. - + Please <a href='%1'>donate</a> to support the continued development of %2. Lūdzu, <a href='%1'>ziedojiet</a>, lai atbalstītu %2 turpmāku izstrādi. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Ziņojiet par kļūdām un iesūtiet idejas: %1 - + Icon designed by %1. Ikonu izveidoja %1. - + Compact mode contributed by %1. Kompakto režīmu iespējoja %1. - + HTTP proxy support contributed by %1. HTTP proxy atbalstu iespējoja by %1. - - Translated by %1 - Pārtulkoja %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Licencēts pēc <a href='%1'>GNU Vispārējās Publiskās Licences</a> - + &Close &Aizvērt - + About Par - + What you always wanted to know about %1 and never dared to ask Ko jūs vienmēr vēlējāties zināt par %1, taču neuzdrošinājāties pajautāt @@ -71,55 +86,93 @@ ClearButton - + Clear Dzēst + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes baiti - + KB KB - + MB MB - + bytes/sec baiti sekundē - + KB/sec KB/s - + MB/sec MB/s - + seconds sekundes - + minutes minūtes - + %4 %5 remaining %4 %5 paliek @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Šī ir %1 demo versija. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Tā spēj lejuplādēt tikai par %1 minūtēm īsākus klipus lai notestētu lejupielādes funkcionālitāti. - + Continue Turpināt - + Get the full version Novilkt pilnu versiju - + %n Download(s) %n Lejupielāde(s)%n Lejupielāde(s)%n Lejupielāde(s) @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Mainīt mērķa mapi... - + Choose the download location Izvēlieties mērķa mapi - + Download location changed. Mērķa mape ir mainīta. - + Current downloads will still go in the previous location. Esošās lejupielādes tiks saglabātas iepriekšējā mapē. - + Downloading to: %1 Lejuplādēju iekš: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Lejupielādes @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Atskaņot - + Pause Apturēt - + Play/Pause Atskaņot / Apturēt - + Stop Pārtraukt - + Stop playing after current track Pārtraukt atskaņošanu pēc šī klipa - + Next track Nākošais klips - + Previous track Iepriekšējais klips - + Increase volume Skaļāk - + Decrease volume Klusāk - + Mute Izslēgt skaņu - + Seek forward Pārtīt uz priekšu - + Seek backward Pārtīt atpakaļ @@ -255,22 +308,22 @@ ListModel - + Searching... Meklē... - + Show %1 More Parādīt vairāk no %1 - + No videos Nav klipu - + No more videos Vairs nav klipu @@ -278,7 +331,7 @@ LoadingWidget - + Error Kļūda @@ -286,317 +339,372 @@ MainWindow - + &Stop Apturēt - + Stop playback and go back to the search view Apturēt atskaņošanu un atgriezties meklēšanas logā - + S&kip Izlaist - + Skip to the next video Pārlēkt uz nākamo klipu - - + + &Pause Pauze - - + + Pause playback Apturēt - - + &Full Screen Pilnekrāna režīms - + Go full screen Ieslēgt pilnekrāna režīmu - + &Compact mode Kompaktais režīms - + Hide the playlist and the toolbar Paslēpt klipu sarakstu un rīkjoslu - + Open the &YouTube page Atvērt &YouTube vietni - + Go to the YouTube video page and pause playback Doties uz YouTube video vietni un apturēt atskaņošanu - + Copy the YouTube &link Nokopēt YouTube norādi - + Copy the current video YouTube link to the clipboard Nokopēt esošā klipa YouTube norādi starpliktuvē - + Copy the video stream &URL Nokopēt video plūsmas &URL - + Copy the current video stream URL to the clipboard Nokopēt esošās video plūsmas URL starpliktuvē - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove Izņemt - + Remove the selected videos from the playlist Izņemt atzīmētos klipus - + Move &Up Pārcelt augšup - + Move up the selected videos in the playlist Pārcelt atzīmētos klipus augšup - + Move &Down Pārcelt lejup - + Move down the selected videos in the playlist Pārcelt atzīmētos klipus lejup - + &Clear recent searches - + - + Clear the search history. Cannot be undone. Dzēst meklēšanas vēsturi. Šī rīcība būs neatgriezeniska. - + &Quit Beigt darbu - + Ctrl+Q Ctrl+Q - + Bye Visu labu - + &Website Tīmekļa vietne - + %1 on the Web %1 tīmeklī - + Make a &donation Ziedot - + Please support the continued development of %1 Lūdzu, atbalstiet %1 turpmāku izstrādi - + &About Par - + Info about %1 Ziņas par %1 - + Search Meklēt - + Mute volume Izslēgt skaņu - + Ctrl+M Ctrl+M - - + + &Downloads Lejupielādes - + Show details about video downloads Rādīt klipu lejupielāžu detaļas - + &Download Lejuplādēt - + Download the current video Lejuplādēt šo klipu - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application Programma - + + &Playback + + + + &Playlist Klipu saraksts - + &Video Klips - + + &View + + + + + &Share + + + + &Help Palīdzība - + Press %1 to raise the volume, %2 to lower it Nospiediet %1 lai palielinātu skaļumu, %2 lai to samazinātu - - + + Opening %1 Atvēru %1 - + Do you want to exit %1 with a download in progress? Vai vēlaties iziet no %1 neskatoties uz notiekošo lejupielādi? - + If you close %1 now, this download will be cancelled. Ja aizvērsit %1 tagad, šī lejupielāde tiks atcelta. - + Close and cancel download Aizvērt un atcelt lejupielādi - + Wait for download to finish Pagaidīt līdz lejupielādes beigām - - Fatal error: %1 - Nenovēršama kļūda: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Kļūda: %1 - + &Play Atskaņot - + Resume playback Turpināt atskaņošanu - - Exit &Full Screen - Pārslēgties pilnekrāna režīmā - - - + Remaining time: %1 Atlikušais laiks: %1 - + Volume at %1% Skaļuma līmenis: %1% - + Volume is muted Skaņa ir atslēgta - + Volume is unmuted Skaņa ir ieslēgta - + Maximum video definition set to %1 Klipa maksimālā izšķirtspēja ir %1 - + Your privacy is now safe Jūsu privātums tagad ir drošībā - + Downloads complete Lejupielādes pabeigtas @@ -604,57 +712,80 @@ MediaView - + Most relevant Atbilstošākie - + Most recent Jaunākie - + Most viewed Apmeklētākie - + You can now paste the YouTube link into another application Tagad varat ielīmēt YouTube norādi citā programmā - + You can now paste the video stream URL into another application Tagad varat ielīmēt video plūsmas URL citā programmā - + The link will be valid only for a limited time. Norāde būs derīga tikai ierobežotu laiku - + This is just the demo version of %1. Šī ir %1 demo versija. - + It allows you to test the application and see if it works for you. Tā ļauj notestēt programmu un noskaidrot vai tā jums der. - + Continue Turpināt - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Novilkt pilnu versiju - + Downloading %1 Lejuplādēju %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Tīkla kļūda: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 skatījumi - + %1 of %2 (%3) — %4 - + - + Preparing Topošās - + Failed Neizdevušās - + Completed Pabeigtas - + Stopped Apturētas - + Stop downloading Pārtraukt lejupielādi - + Show in %1 Rādīt %1 - + Open parent folder Atvērt mapi līmeni augstāk - + Restart downloading Atsākt lejupielādi @@ -723,7 +854,7 @@ SearchLineEdit - + Search Meklēt @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Laipni lūdzam <a href='%1'>%2</a>, - + Get the full version - + - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - + - + a keyword - + - + a channel - + - + to start watching videos. - + - + Watch Skatīties - + Recent keywords Iepriekšējie atslēgvārdi - + Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - %1 jaunā versija ir pieejama. Lūdzu, <a href='%2'>atjauniniet pret %3 versiju</a> + - + Make yourself comfortable Jūsu ērtībai @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 - + - + Network error: %1 for %2 Tīkla kļūda: %1 ar %2 diff -Nru minitube-1.5/locale/nb_NO.ts minitube-1.6/locale/nb_NO.ts --- minitube-1.5/locale/nb_NO.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/nb_NO.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Det finnes et liv utenfor nettleseren! - - - - Version %1 - Versjon %1 - - - - %1 is Free Software but its development takes precious time. - %1 er gratis programvare, men utviklingen bruker dyrebar tid. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - Vennligst <a href='%1'>doner</a> for og støtte videre utvikling av %2. - - - - Report bugs and send in your ideas to %1 - Rapporter feil og send inn dine ideer til %1 - - - - Icon designed by %1. - Ikonet er designet av %1. - - - - Compact mode contributed by %1. - Kompaktmodus er utviklet av %1. - - - - HTTP proxy support contributed by %1. - HTTP proxy support utviklet av %1. - - - - Translated by %1 - Oversatt av %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - Utgitt under <a href='%1'>GNU General Public License</a> - - - - &Close - &Steng - - - - About - Om - - - - What you always wanted to know about %1 and never dared to ask - Hva du alltid har ønsket å vite om %1, men aldri turte spørre om - - - - ClearButton - - - Clear - Nullstill - - - - DownloadItem - - - bytes - bytes - - - - KB - KB - - - - MB - MB - - - - bytes/sec - bytes/sek - - - - KB/sec - KB/sek - - - - MB/sec - MB/sek - - - - seconds - sekunder - - - - minutes - minutter - - - - %4 %5 remaining - %4 %5 gjenstår - - - - DownloadManager - - - This is just the demo version of %1. - Dette er kun demo-versjonen av %1. - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - Den kan kun laste ned videoer på under %1 minutter, for at du skal kunne prøve ut nedlastingsfunksjonen. - - - - Continue - Fortsett - - - - Get the full version - Kjøp fullversjonen - - - - %n Download(s) - %n nedlasting%n nedlastinger - - - - DownloadSettings - - - Change location... - Endre sted ... - - - - Choose the download location - Velg nedlastingsmappe - - - - Download location changed. - Nedlastingsmappe endret. - - - - Current downloads will still go in the previous location. - Pågående nedlastinger vil bli lagret i den forrige mappen. - - - - Downloading to: %1 - Laster ned til: %1 - - - - DownloadView - - - - Downloads - Nedlastinger - - - - GlobalShortcuts - - - Play - Spill av - - - - Pause - Pause - - - - Play/Pause - Spill av/Pause - - - - Stop - Stopp - - - - Stop playing after current track - Stopp avspilling etter denne videoen. - - - - Next track - Neste video - - - - Previous track - Forrige video - - - - Increase volume - Øk lydvolumet - - - - Decrease volume - Senk lydvolumet - - - - Mute - Lydløs - - - - Seek forward - Søk forover - - - - Seek backward - Søk bakover - - - - ListModel - - - Searching... - Søker... - - - - Show %1 More - Vis %1 flere - - - - No videos - Ingen videoer - - - - No more videos - Ingen flere videoer - - - - LoadingWidget - - - Error - Feil - - - - MainWindow - - - &Stop - &Stopp - - - - Stop playback and go back to the search view - Stopp avspilling og gå tilbake til søkevisningen - - - - S&kip - &Hopp over - - - - Skip to the next video - Hopp til neste video - - - - - &Pause - &Pause - - - - - Pause playback - Sett avspilling på pause - - - - - &Full Screen - &Fullskjerm - - - - Go full screen - Fullskjermsvisning - - - - &Compact mode - &Kompaktvisning - - - - Hide the playlist and the toolbar - Gjem spillelista og verktøylinja - - - - Open the &YouTube page - Åpne &YouTube side - - - - Go to the YouTube video page and pause playback - Gå til YouTube video siden og pause avspillingen - - - - Copy the YouTube &link - Kopier YouTube &link - - - - Copy the current video YouTube link to the clipboard - Kopier denne YouTube video linken til utklippstavle - - - - Copy the video stream &URL - Kopier video stream &URL - - - - Copy the current video stream URL to the clipboard - Kopier denne video stream URL til utklippstavle - - - - &Remove - &Fjern - - - - Remove the selected videos from the playlist - Fjern valgte videoer fra spillelista - - - - Move &Up - Flytt &opp - - - - Move up the selected videos in the playlist - Flytt opp valgte videoer i spillelista - - - - Move &Down - Flytt &Ned - - - - Move down the selected videos in the playlist - Flytt ned valgte videoer i spillelista - - - - &Clear recent searches - &fjern seneste søkehistorie - - - - Clear the search history. Cannot be undone. - Fjern all søkehistorie. Kan ikke angres. - - - - &Quit - &Avslutt - - - - Ctrl+Q - Ctrl+Q - - - - Bye - Farvel - - - - &Website - &Nettsted - - - - %1 on the Web - %1 på internett - - - - Make a &donation - &donér - - - - Please support the continued development of %1 - Vi håper du kan bidra til å fortsette arbeidet med utvikling av %1 - - - - &About - &Om - - - - Info about %1 - Informasjon om %1 - - - - Search - Søk - - - - Mute volume - Lydløs - - - - Ctrl+M - Ctrl+M - - - - - &Downloads - &Nedlastinger - - - - Show details about video downloads - Vis detaljer om nedlasting av video - - - - &Download - &Nedlasting - - - - Download the current video - Last ned denne videoen - - - - &Application - Applikasjon - - - - &Playlist - &Spilleliste - - - - &Video - &Video - - - - &Help - &Hjelp - - - - Press %1 to raise the volume, %2 to lower it - Trykk på %1 for å øke lydvolumet, %2 for å senke - - - - - Opening %1 - Åpner %1 - - - - Do you want to exit %1 with a download in progress? - Vil du avslutte %1 mens nedlastinger pågår? - - - - If you close %1 now, this download will be cancelled. - Vis du stenger %1 nå, vil nedlastingen bli avbrutt - - - - Close and cancel download - Steng og avbryt nedlastingen - - - - Wait for download to finish - Vent mens nedlastingen fullføres - - - - Fatal error: %1 - Kritisk feil: %1 - - - - Error: %1 - Feil: %1 - - - - &Play - &Spill av - - - - Resume playback - Gjenoppta avspilling - - - - Exit &Full Screen - Avslutt &Fullskjerm - - - - Remaining time: %1 - Gjenstående tid: %1 - - - - Volume at %1% - Volum %1% - - - - Volume is muted - Lydløst er på - - - - Volume is unmuted - Lydløst er av - - - - Maximum video definition set to %1 - Maksimum video definisjon innstilling til %1 - - - - Your privacy is now safe - Ditt privatliv er nå sikkert - - - - Downloads complete - Nedlastinger fullført - - - - MediaView - - - Most relevant - Mest relevant - - - - Most recent - Nyeste - - - - Most viewed - Mest sett - - - - You can now paste the YouTube link into another application - Du kan nå lime inn YouTube linken i et annet program - - - - You can now paste the video stream URL into another application - Du kan nå lime inn video stream URL i et annet applikasjon - - - - The link will be valid only for a limited time. - Denne linken vil kun være gyldig i en begrenset tid. - - - - This is just the demo version of %1. - Dette er kun demoversjonen av %1. - - - - It allows you to test the application and see if it works for you. - Dette gir deg muligheten til å prøve ut applikasjonen og se om du den er noe for deg. - - - - Continue - Fortsett - - - - Get the full version - Kjøp fullversjonen - - - - Downloading %1 - Nedlasting %1 - - - - NetworkAccess - - - Network error: %1 - Feil på nettverk: %1 - - - - PrettyItemDelegate - - - %1 views - %1 visninger - - - - %1 of %2 (%3) — %4 - %1 av %2 (%3) — %4 - - - - Preparing - Forbereder - - - - Failed - Feilet - - - - Completed - Fullført - - - - Stopped - Stoppet - - - - Stop downloading - Stop nedlasting - - - - Show in %1 - Vis i %1 - - - - Open parent folder - Åpne vertsmappen - - - - Restart downloading - Start nedlastingen på nytt - - - - SearchLineEdit - - - Search - Søk - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - Velkommen til <a href='%1'>%2</a>, - - - - Get the full version - Kjøpfullversjon - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - Skriv - - - - a keyword - ett nøkkelord - - - - a channel - en kanal - - - - to start watching videos. - for å begynne avspilling av video - - - - Watch - Se - - - - Recent keywords - Seneste søkeord - - - - Recent channels - Seneste kanaler - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - En ny versjon av %1 er tilgjengelig. Vennligst <a href='%2'>oppdater til versjon %3</a> - - - - Make yourself comfortable - Finn deg til rette - - - - Video - - - Cannot get video stream for %1 - Kan ikke hente mediastrøm for %1 - - - - Network error: %1 for %2 - Feil på nettverk: %1 for %2 - - - \ No newline at end of file diff -Nru minitube-1.5/locale/nb.ts minitube-1.6/locale/nb.ts --- minitube-1.5/locale/nb.ts 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/locale/nb.ts 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,929 @@ + +UTF-8 + + AboutView + + + There's life outside the browser! + Det finnes et liv utenfor nettleseren! + + + + Version %1 + Versjon %1 + + + + %1 is Free Software but its development takes precious time. + %1 er gratis programvare, men utviklingen bruker dyrebar tid. + + + + Please <a href='%1'>donate</a> to support the continued development of %2. + Vennligst <a href='%1'>doner</a> for og støtte videre utvikling av %2. + + + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + + Report bugs and send in your ideas to %1 + Rapporter feil og send inn dine ideer til %1 + + + + Icon designed by %1. + Ikonet er designet av %1. + + + + Compact mode contributed by %1. + Kompaktmodus er utviklet av %1. + + + + HTTP proxy support contributed by %1. + HTTP proxy support utviklet av %1. + + + + Released under the <a href='%1'>GNU General Public License</a> + Utgitt under <a href='%1'>GNU General Public License</a> + + + + &Close + &Steng + + + + About + Om + + + + What you always wanted to know about %1 and never dared to ask + Hva du alltid har ønsket å vite om %1, men aldri turte spørre om + + + + ClearButton + + + Clear + Nullstill + + + + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + + DownloadItem + + + bytes + bytes + + + + KB + KB + + + + MB + MB + + + + bytes/sec + bytes/sek + + + + KB/sec + KB/sek + + + + MB/sec + MB/sek + + + + seconds + sekunder + + + + minutes + minutter + + + + %4 %5 remaining + %4 %5 gjenstår + + + + DownloadManager + + + This is just the demo version of %1. + Dette er kun demo-versjonen av %1. + + + + It can only download videos shorter than %1 minutes so you can test the download functionality. + Den kan kun laste ned videoer på under %1 minutter, for at du skal kunne prøve ut nedlastingsfunksjonen. + + + + Continue + Fortsett + + + + Get the full version + Kjøp fullversjonen + + + + %n Download(s) + %n nedlasting%n nedlastinger + + + + DownloadSettings + + + Change location... + Endre sted ... + + + + Choose the download location + Velg nedlastingsmappe + + + + Download location changed. + Nedlastingsmappe endret. + + + + Current downloads will still go in the previous location. + Pågående nedlastinger vil bli lagret i den forrige mappen. + + + + Downloading to: %1 + Laster ned til: %1 + + + + DownloadView + + + + Downloads + Nedlastinger + + + + GlobalShortcuts + + + Play + Spill av + + + + Pause + Pause + + + + Play/Pause + Spill av/Pause + + + + Stop + Stopp + + + + Stop playing after current track + Stopp avspilling etter denne videoen. + + + + Next track + Neste video + + + + Previous track + Forrige video + + + + Increase volume + Øk lydvolumet + + + + Decrease volume + Senk lydvolumet + + + + Mute + Lydløs + + + + Seek forward + Søk forover + + + + Seek backward + Søk bakover + + + + ListModel + + + Searching... + Søker... + + + + Show %1 More + Vis %1 flere + + + + No videos + Ingen videoer + + + + No more videos + Ingen flere videoer + + + + LoadingWidget + + + Error + Feil + + + + MainWindow + + + &Stop + &Stopp + + + + Stop playback and go back to the search view + Stopp avspilling og gå tilbake til søkevisningen + + + + S&kip + &Hopp over + + + + Skip to the next video + Hopp til neste video + + + + + &Pause + &Pause + + + + + Pause playback + Sett avspilling på pause + + + + &Full Screen + &Fullskjerm + + + + Go full screen + Fullskjermsvisning + + + + &Compact mode + &Kompaktvisning + + + + Hide the playlist and the toolbar + Gjem spillelista og verktøylinja + + + + Open the &YouTube page + Åpne &YouTube side + + + + Go to the YouTube video page and pause playback + Gå til YouTube video siden og pause avspillingen + + + + Copy the YouTube &link + Kopier YouTube &link + + + + Copy the current video YouTube link to the clipboard + Kopier denne YouTube video linken til utklippstavle + + + + Copy the video stream &URL + Kopier video stream &URL + + + + Copy the current video stream URL to the clipboard + Kopier denne video stream URL til utklippstavle + + + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + + &Remove + &Fjern + + + + Remove the selected videos from the playlist + Fjern valgte videoer fra spillelista + + + + Move &Up + Flytt &opp + + + + Move up the selected videos in the playlist + Flytt opp valgte videoer i spillelista + + + + Move &Down + Flytt &Ned + + + + Move down the selected videos in the playlist + Flytt ned valgte videoer i spillelista + + + + &Clear recent searches + &fjern seneste søkehistorie + + + + Clear the search history. Cannot be undone. + Fjern all søkehistorie. Kan ikke angres. + + + + &Quit + &Avslutt + + + + Ctrl+Q + Ctrl+Q + + + + Bye + Farvel + + + + &Website + &Nettsted + + + + %1 on the Web + %1 på internett + + + + Make a &donation + &donér + + + + Please support the continued development of %1 + Vi håper du kan bidra til å fortsette arbeidet med utvikling av %1 + + + + &About + &Om + + + + Info about %1 + Informasjon om %1 + + + + Search + Søk + + + + Mute volume + Lydløs + + + + Ctrl+M + Ctrl+M + + + + + &Downloads + &Nedlastinger + + + + Show details about video downloads + Vis detaljer om nedlasting av video + + + + &Download + &Nedlasting + + + + Download the current video + Last ned denne videoen + + + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + + &Application + Applikasjon + + + + &Playback + + + + + &Playlist + &Spilleliste + + + + &Video + &Video + + + + &View + + + + + &Share + + + + + &Help + &Hjelp + + + + Press %1 to raise the volume, %2 to lower it + Trykk på %1 for å øke lydvolumet, %2 for å senke + + + + + Opening %1 + Åpner %1 + + + + Do you want to exit %1 with a download in progress? + Vil du avslutte %1 mens nedlastinger pågår? + + + + If you close %1 now, this download will be cancelled. + Vis du stenger %1 nå, vil nedlastingen bli avbrutt + + + + Close and cancel download + Steng og avbryt nedlastingen + + + + Wait for download to finish + Vent mens nedlastingen fullføres + + + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + + Error: %1 + Feil: %1 + + + + &Play + &Spill av + + + + Resume playback + Gjenoppta avspilling + + + + Remaining time: %1 + Gjenstående tid: %1 + + + + Volume at %1% + Volum %1% + + + + Volume is muted + Lydløst er på + + + + Volume is unmuted + Lydløst er av + + + + Maximum video definition set to %1 + Maksimum video definisjon innstilling til %1 + + + + Your privacy is now safe + Ditt privatliv er nå sikkert + + + + Downloads complete + Nedlastinger fullført + + + + MediaView + + + Most relevant + Mest relevant + + + + Most recent + Nyeste + + + + Most viewed + Mest sett + + + + You can now paste the YouTube link into another application + Du kan nå lime inn YouTube linken i et annet program + + + + You can now paste the video stream URL into another application + Du kan nå lime inn video stream URL i et annet applikasjon + + + + The link will be valid only for a limited time. + Denne linken vil kun være gyldig i en begrenset tid. + + + + This is just the demo version of %1. + Dette er kun demoversjonen av %1. + + + + It allows you to test the application and see if it works for you. + Dette gir deg muligheten til å prøve ut applikasjonen og se om du den er noe for deg. + + + + Continue + Fortsett + + + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + + Get the full version + Kjøp fullversjonen + + + + Downloading %1 + Nedlasting %1 + + + + NetworkAccess + + + Network error: %1 + Feil på nettverk: %1 + + + + PrettyItemDelegate + + + %1 views + %1 visninger + + + + %1 of %2 (%3) — %4 + %1 av %2 (%3) — %4 + + + + Preparing + Forbereder + + + + Failed + Feilet + + + + Completed + Fullført + + + + Stopped + Stoppet + + + + Stop downloading + Stop nedlasting + + + + Show in %1 + Vis i %1 + + + + Open parent folder + Åpne vertsmappen + + + + Restart downloading + Start nedlastingen på nytt + + + + SearchLineEdit + + + Search + Søk + + + + SearchView + + + Welcome to <a href='%1'>%2</a>, + Velkommen til <a href='%1'>%2</a>, + + + + Get the full version + Kjøpfullversjon + + + + Enter + "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" + Skriv + + + + a keyword + ett nøkkelord + + + + a channel + en kanal + + + + to start watching videos. + for å begynne avspilling av video + + + + Watch + Se + + + + Recent keywords + Seneste søkeord + + + + Recent channels + Seneste kanaler + + + + Make yourself comfortable + Finn deg til rette + + + + Video + + + Cannot get video stream for %1 + Kan ikke hente mediastrøm for %1 + + + + Network error: %1 for %2 + Feil på nettverk: %1 for %2 + + + \ No newline at end of file diff -Nru minitube-1.5/locale/nl_NL.ts minitube-1.6/locale/nl_NL.ts --- minitube-1.5/locale/nl_NL.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/nl_NL.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Er is leven buiten de browser! - - - - Version %1 - Versie %1 - - - - %1 is Free Software but its development takes precious time. - %1 is Gratis Software maar de ontwikkeling is kostbare tijd. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - <a href='%1'>Doneer</a> om bij te dragen aan de ontwikkeling van %2. - - - - Report bugs and send in your ideas to %1 - Raporteer fouten en stuur je ideën naar %1 - - - - Icon designed by %1. - Icon ontworpen door %1. - - - - Compact mode contributed by %1. - Compact mode aangedragen door %1. - - - - HTTP proxy support contributed by %1. - HTTP proxy ondersteuning aangedragen door %1. - - - - Translated by %1 - Vertaald door %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - Uitgebracht onder de <a href='%1'>GNU General Public License</a> - - - - &Close - &Sluiten - - - - About - Over - - - - What you always wanted to know about %1 and never dared to ask - Wat u altijd al had willen weten over %1 maar nooit heeft durven vragen - - - - ClearButton - - - Clear - Wis - - - - DownloadItem - - - bytes - - - - - KB - - - - - MB - - - - - bytes/sec - - - - - KB/sec - - - - - MB/sec - - - - - seconds - - - - - minutes - - - - - %4 %5 remaining - - - - - DownloadManager - - - This is just the demo version of %1. - - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - - - - - Continue - - - - - Get the full version - - - - - %n Download(s) - - - - - DownloadSettings - - - Change location... - - - - - Choose the download location - - - - - Download location changed. - - - - - Current downloads will still go in the previous location. - - - - - Downloading to: %1 - - - - - DownloadView - - - - Downloads - - - - - GlobalShortcuts - - - Play - - - - - Pause - - - - - Play/Pause - - - - - Stop - - - - - Stop playing after current track - - - - - Next track - - - - - Previous track - - - - - Increase volume - - - - - Decrease volume - - - - - Mute - - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - Bezig met Zoeken... - - - - Show %1 More - Laat %1 meer zien - - - - No videos - Geen video's - - - - No more videos - Geen video's meer - - - - LoadingWidget - - - Error - Fout - - - - MainWindow - - - &Stop - &Stop - - - - Stop playback and go back to the search view - Stop het afspelen en ga terug naar het zoek overzicht - - - - S&kip - &Overslaan - - - - Skip to the next video - Overslaan en naar de volgende video - - - - - &Pause - &Pauzeer - - - - - Pause playback - Pauzeer afspelen - - - - - &Full Screen - &Volledig scherm - - - - Go full screen - Ga naar volledig scherm - - - - &Compact mode - &Compacte modus - - - - Hide the playlist and the toolbar - Verberg de overzichtslijst en de werkbalk - - - - Open the &YouTube page - Open de &YouTube pagina - - - - Go to the YouTube video page and pause playback - Ga naar de YouTube video pagina en pauzeer het afspelen - - - - Copy the YouTube &link - Kopieer de YouTube &link - - - - Copy the current video YouTube link to the clipboard - Kopieer de huidige YouTube link naar het klembord - - - - Copy the video stream &URL - Kopieer de video stream &URL - - - - Copy the current video stream URL to the clipboard - Kopieer de huidige video stream URL naar het klembord - - - - &Remove - &Verwijder - - - - Remove the selected videos from the playlist - Verwijder de geselecteerde video's van de afspeellijst - - - - Move &Up - Verplaats &Omhoog - - - - Move up the selected videos in the playlist - Verplaats de geselecteerde video's in de afspeellijst naar boven - - - - Move &Down - Verplaats &Omlaag - - - - Move down the selected videos in the playlist - Verplaats de geselecteerde video's in de afspeelijst naar beneden - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - Wis de zoek geschiedenis. Dit kan niet ongedaan worden gemaakt. - - - - &Quit - &Afsluiten - - - - Ctrl+Q - Ctrl+Q - - - - Bye - Tot ziens - - - - &Website - &Website - - - - %1 on the Web - %1 op het internet - - - - Make a &donation - Maak een &donatie - - - - Please support the continued development of %1 - Ondersteun de ontwikkeling van %1 - - - - &About - &Over - - - - Info about %1 - Informatie over %1 - - - - Search - Zoek - - - - Mute volume - Geen volume - - - - Ctrl+M - Ctrl+M - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - &Applicatie - - - - &Playlist - &Afspeellijst - - - - &Video - &Video - - - - &Help - &Help - - - - Press %1 to raise the volume, %2 to lower it - Druk op %1 voor meer volume en op %2 voor minder - - - - - Opening %1 - Openen van %1 - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - Fatale fout: %1 - - - - Error: %1 - Fout: %1 - - - - &Play - &Afspelen - - - - Resume playback - Afspelen hervatten - - - - Exit &Full Screen - Sluit &Volledig Scherm - - - - Remaining time: %1 - Overige tijd: %1 - - - - Volume at %1% - Volume op %1% - - - - Volume is muted - Volume is uit - - - - Volume is unmuted - Volume is aan - - - - Maximum video definition set to %1 - Maximale video defititie staat op %1 - - - - Your privacy is now safe - Uw privacy is nu veilig - - - - Downloads complete - - - - - MediaView - - - Most relevant - Meest relevant - - - - Most recent - Meest recent - - - - Most viewed - Meest bekeken - - - - You can now paste the YouTube link into another application - U kunt nu uw YouTube link kopieeren naar een andere applicatie - - - - You can now paste the video stream URL into another application - U kunt nu uw video stream URL kopieeren naar een andere applicatie - - - - The link will be valid only for a limited time. - De link zal maar een beperkte tijd geldig zijn. - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - Netwerk fout %1 - - - - PrettyItemDelegate - - - %1 views - %1 bekeken - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - - - - - Stop downloading - - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - Zoek - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - Welkom bij <a href='%1'>%2</a>, - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - Bekijk - - - - Recent keywords - Recente zoekopdrachten - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Een nieuwere versie van %1 is beschikbaar.<a href='%2'>Update naar versie %3</a> - - - - Make yourself comfortable - Ga er lekker voor zitten - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - Netwerk fout %1 voor %2 - - - \ No newline at end of file diff -Nru minitube-1.5/locale/nl.ts minitube-1.6/locale/nl.ts --- minitube-1.5/locale/nl.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/nl.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Er is leven buiten de browser! - + Version %1 Versie %1 - + %1 is Free Software but its development takes precious time. %1 is Gratis Software maar de ontwikkeling is kostbare tijd. - + Please <a href='%1'>donate</a> to support the continued development of %2. <a href='%1'>Doneer</a> om bij te dragen aan de ontwikkeling van %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Raporteer fouten en stuur je ideën naar %1 - + Icon designed by %1. Icon ontworpen door %1. - + Compact mode contributed by %1. Compact mode aangedragen door %1. - + HTTP proxy support contributed by %1. HTTP proxy ondersteuning aangedragen door %1. - - Translated by %1 - Vertaald door %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Uitgebracht onder de <a href='%1'>GNU General Public License</a> - + &Close &Sluiten - + About Over - + What you always wanted to know about %1 and never dared to ask Wat u altijd al had willen weten over %1 maar nooit heeft durven vragen @@ -71,55 +86,93 @@ ClearButton - + Clear Wis + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec bytes/sec - + KB/sec KB/sec - + MB/sec MB/sec - + seconds seconden - + minutes minuten - + %4 %5 remaining %4 %5 over @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Dit is alleen maar de demo versie van %1 - + It can only download videos shorter than %1 minutes so you can test the download functionality. Het kan alleen maar videos downloaden korter dan %1 minuten zodat je de download functionaliteit kan testen. - + Continue Doorgaan - + Get the full version Haal de volledige versie - + %n Download(s) %n Download%n Downloads @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Verander locatie... - + Choose the download location Kies de download locatie - + Download location changed. Download locatie aangepast. - + Current downloads will still go in the previous location. Huidige downloads zullen verwijzen naar de vorige locatie. - + Downloading to: %1 Downloaden naar:%1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Downloads @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Afspelen - + Pause Pauzeren - + Play/Pause Afspelen/Pauzeren - + Stop Stop - + Stop playing after current track Stop afspelen na huidige nummer - + Next track Volgende nummer - + Previous track Vorige nummer - + Increase volume Volume harder - + Decrease volume Volume zachter - + Mute Stilte - + Seek forward Spoel naar voren - + Seek backward Spoel naar achteren @@ -255,22 +308,22 @@ ListModel - + Searching... Bezig met Zoeken... - + Show %1 More Laat %1 meer zien - + No videos Geen video's - + No more videos Geen video's meer @@ -278,7 +331,7 @@ LoadingWidget - + Error Fout @@ -286,317 +339,372 @@ MainWindow - + &Stop &Stop - + Stop playback and go back to the search view Stop het afspelen en ga terug naar het zoek overzicht - + S&kip &Overslaan - + Skip to the next video Overslaan en naar de volgende video - - + + &Pause &Pauzeer - - + + Pause playback Pauzeer afspelen - - + &Full Screen &Volledig scherm - + Go full screen Ga naar volledig scherm - + &Compact mode &Compacte modus - + Hide the playlist and the toolbar Verberg de overzichtslijst en de werkbalk - + Open the &YouTube page Open de &YouTube pagina - + Go to the YouTube video page and pause playback Ga naar de YouTube video pagina en pauzeer het afspelen - + Copy the YouTube &link Kopieer de YouTube &link - + Copy the current video YouTube link to the clipboard Kopieer de huidige YouTube link naar het klembord - + Copy the video stream &URL Kopieer de video stream &URL - + Copy the current video stream URL to the clipboard Kopieer de huidige video stream URL naar het klembord - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Verwijder - + Remove the selected videos from the playlist Verwijder de geselecteerde video's van de afspeellijst - + Move &Up Verplaats &Omhoog - + Move up the selected videos in the playlist Verplaats de geselecteerde video's in de afspeellijst naar boven - + Move &Down Verplaats &Omlaag - + Move down the selected videos in the playlist Verplaats de geselecteerde video's in de afspeelijst naar beneden - + &Clear recent searches &Verwijder recente zoek opdrachten - + Clear the search history. Cannot be undone. Wis de zoek geschiedenis. Dit kan niet ongedaan worden gemaakt. - + &Quit &Afsluiten - + Ctrl+Q Ctrl+Q - + Bye Tot ziens - + &Website &Website - + %1 on the Web %1 op het internet - + Make a &donation Maak een &donatie - + Please support the continued development of %1 Ondersteun de ontwikkeling van %1 - + &About &Over - + Info about %1 Informatie over %1 - + Search Zoek - + Mute volume Geen volume - + Ctrl+M Ctrl+M - - + + &Downloads &Downloads - + Show details about video downloads Laat details zien over video downloads - + &Download &Download - + Download the current video Download de huidige video - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Applicatie - + + &Playback + + + + &Playlist &Afspeellijst - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Help - + Press %1 to raise the volume, %2 to lower it Druk op %1 voor meer volume en op %2 voor minder - - + + Opening %1 Openen van %1 - + Do you want to exit %1 with a download in progress? Wil je %1 afsluiten terwijl er een download in gang is? - + If you close %1 now, this download will be cancelled. Als u nu %1 afsluit, zal de download worden beëindigd. - + Close and cancel download Sluit af en beëindigd het downloaden - + Wait for download to finish Wachten tot het downloaden is voltooid - - Fatal error: %1 - Fatale fout: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Fout: %1 - + &Play &Afspelen - + Resume playback Afspelen hervatten - - Exit &Full Screen - Sluit &Volledig Scherm - - - + Remaining time: %1 Overige tijd: %1 - + Volume at %1% Volume op %1% - + Volume is muted Volume is uit - + Volume is unmuted Volume is aan - + Maximum video definition set to %1 Maximale video defititie staat op %1 - + Your privacy is now safe Uw privacy is nu veilig - + Downloads complete Downloads afgerond @@ -604,57 +712,80 @@ MediaView - + Most relevant Meest relevant - + Most recent Meest recent - + Most viewed Meest bekeken - + You can now paste the YouTube link into another application U kunt nu uw YouTube link kopieeren naar een andere applicatie - + You can now paste the video stream URL into another application U kunt nu uw video stream URL kopieeren naar een andere applicatie - + The link will be valid only for a limited time. De link zal maar een beperkte tijd geldig zijn. - + This is just the demo version of %1. This is allen maar de demo versie van %1. - + It allows you to test the application and see if it works for you. Het bied de mogelijkheid de applicatie te testen en te zien of het wat voor je is. - + Continue Doorgaan - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Haal de volledige versie - + Downloading %1 Downloaden van %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Netwerk fout %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 bekeken - + %1 of %2 (%3) — %4 %1 van %2 (%3) — %4 - + Preparing Aan het voorbereiden - + Failed Mislukt - + Completed Afgerond - + Stopped Gestopt - + Stop downloading Stop het downloaden - + Show in %1 Laat zien in %1 - + Open parent folder Open initiële map - + Restart downloading Herstart download @@ -723,7 +854,7 @@ SearchLineEdit - + Search Zoek @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Welkom bij <a href='%1'>%2</a>, - + Get the full version Haal de volledige versie - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Vul - + a keyword een zoekwoord in - + a channel een kanaal in - + to start watching videos. om te starten met het bekijken van de videos - + Watch Bekijk - + Recent keywords Recente zoekopdrachten - + Recent channels Recente kanalen - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Een nieuwere versie van %1 is beschikbaar.<a href='%2'>Update naar versie %3</a> - - - + Make yourself comfortable Ga er lekker voor zitten @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Kan de video stream niet openen voor %1 - + Network error: %1 for %2 Netwerk fout %1 voor %2 diff -Nru minitube-1.5/locale/pl_PL.ts minitube-1.6/locale/pl_PL.ts --- minitube-1.5/locale/pl_PL.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/pl_PL.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,179 +3,232 @@ AboutView - + There's life outside the browser! - Istnieje życie poza przeglądarką! + Życie istnieje też poza przeglądarką! - + Version %1 Wersja %1 - + %1 is Free Software but its development takes precious time. - %1 jest wolnym oprogramowaniem, ale jego rozwój pochłania cenney czas. + %1 jest darmowym oprogramowaniem, ale jego stworzenie też wymaga cennego czasu. - + Please <a href='%1'>donate</a> to support the continued development of %2. - Proszę <a href='%1'>wesprzyj nas darowizną</a> żybyśmy mogli ciągle rozwijać %2. + Proszę o <a href='%1'>dotacje</a> dla dalszego rozwoju %2. - + + You may want to try my other apps as well: + Może chcesz wypróbować inne moje aplikacje: + + + + %1, a YouTube music player + %1, odtwarzacz muzyki z YouTube'a + + + + %1, a music player + %1, odtwarzacz muzyki + + + + Translate %1 to your native language using %2 + Przetłumacz %1 na swój język używając %2 + + + Report bugs and send in your ideas to %1 - Zgłaszaj błędy i dziel się z nami pomysłami na adres%1 + Zauważone błędy oraz pomysły wysyłaj do %1 - + Icon designed by %1. Ikony zaprojektowane przez %1. - + Compact mode contributed by %1. Do wprowadzenia Trybu kompaktowego przyczynił się %1. - + HTTP proxy support contributed by %1. Do wsparcia dla serwera proxy przyczynił sie %1. - - Translated by %1 - Przetłumaczył %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Wydane na licencji<a href='%1'>GNU General Public License</a> - + &Close &Zamknij - + About - O programie Minitube + O programie - + What you always wanted to know about %1 and never dared to ask - To co zawsze chcieliście wiedzieć o %1 ale nigdy się nie odważyliście zapytać + Wszystko, co chcieliście wiedzieć o %1, ale baliście się zapytać ClearButton - + Clear Wyczyść + DemoStartupView + + + Please license %1 + Proszę zalicencjonować %1 + + + + This demo has expired. + Ta wersja demo wygasła. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + Pełna wersja pozwala na pobieranie filmów dłuższych niż %1 min. oraz oglądać filmy bez przeszkód. + + + + This demo will expire in %1 days. + To demo wygaśnie za %1 dni. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Kupując pełną wersję, wspierasz także moją ciężką pracę którą wkładam w tworzenie %1. + + + + Use Demo + Dawaj Demo! + + + + Get the full version + Pobierz pełną wersję + + + DownloadItem - + bytes - bajty + B - + KB KB - + MB MB - + bytes/sec - bajtów/sekundę + B/s - + KB/sec - KB/sek + KB/s - + MB/sec - MB/sek + MB/s - + seconds - sekund + sek. - + minutes - minut + min. - + %4 %5 remaining - %4 %5 pozostało do końca + pozostało %4 %5 DownloadManager - + This is just the demo version of %1. - To jest tylko wersja demo%1. + To jest tylko wersja demo %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. - Może jedynie pobierać filmy krótsze niż%1 minut, więc można przetestować funkcje pobierania. + Może pobierać jedynie filmy krótsze niż %1 minut, dla przetestowania funkcji pobierania. - + Continue - Kontynuuj + Dalej - + Get the full version Pobierz pełną wersję - + %n Download(s) - %n Pobieranie%n Pobieranie%n Pobieranie + DownloadSettings - + Change location... Zmień katalog pobierania... - + Choose the download location Wybierz katalog pobierania - + Download location changed. Katalog pobierania został zmieniony. - + Current downloads will still go in the previous location. Aktualnie pobierane pliki zostaną we wcześniejszym katalogu pobierania. - + Downloading to: %1 Pobierane do: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Pobrane pliki @@ -192,85 +245,85 @@ GlobalShortcuts - + Play - Odtwarzaj + Graj - + Pause - Pauza + Wstrzymaj - + Play/Pause - Odtwarzaj/Wstrzymaj + Graj/Wstrzymaj - + Stop - Zatrzymaj + Stop (przerwij) - + Stop playing after current track Zatrzymaj odtwarzanie po tej ścieżce - + Next track - Następny + Następna ścieżka - + Previous track - Poprzedni + Poprzednia ścieżka - + Increase volume Głośniej - + Decrease volume Ciszej - + Mute Wycisz - + Seek forward Przewiń w przód - + Seek backward - Przewiń w tył + Przewiń do tyłu ListModel - + Searching... Szukam... - + Show %1 More Pokaż kolejne %1 - + No videos Brak plików - + No more videos Nie ma więcej plików @@ -278,7 +331,7 @@ LoadingWidget - + Error Błąd @@ -286,317 +339,372 @@ MainWindow - + &Stop &Zatrzymaj - + Stop playback and go back to the search view - Zatrzymaj odtwarzanie i wróć do wyszukiwania + Przerwij odtwarzanie i wróć do wyszukiwania - + S&kip Prze&skocz dalej - + Skip to the next video - Skocz do następnego pliku wideo + Przejdź do następnego pliku wideo - - + + &Pause &Pauza - - + + Pause playback Wstrzymaj odtwarzanie - - + &Full Screen - Pełny ekran (&F) + &Pełny ekran - + Go full screen Przełącz na pełny ekran - + &Compact mode - Tryb kompaktowy(&C) + Tryb kompaktowy (&C) - + Hide the playlist and the toolbar Ukryj listę odtwarzania i pasek narzędzi - + Open the &YouTube page - Otwórz na stronie &Youtube + Otwórz stronę &YouTube - + Go to the YouTube video page and pause playback - Otwórz na stronie Youtube i wstrzymaj odtwarzanie + Przejdź do strony YouTube i wstrzymaj odtwarzanie - + Copy the YouTube &link - Kopiuj &link do pliku na Youtube + Skopiuj &link YouTube - + Copy the current video YouTube link to the clipboard - Kopiuj link aktualnie odtwarzanego video do schowka + Skopiuj link YouTube odtwarzanego filmu do schowka - + Copy the video stream &URL Kopiuj adres &URL odtwarzanego wideo - + Copy the current video stream URL to the clipboard Kopiuj adres URL odtwarzanego wideo do schowka - + + Find video &parts + Zn&ajdź części wideo + + + + Find other video parts hopefully in the right order + Znajdź pozostałe części filmu w, miejmy nadzieję, dobrej kolejności + + + &Remove - Usuń (&D) + &Usuń - + Remove the selected videos from the playlist Usuń wybrane pliki z listy odtwarzania - + Move &Up - Przenieś &Wyżej + Przesuń w &Górę - + Move up the selected videos in the playlist - Przenieś wyżej zaznaczony plik w liście odtwarzania + Przesuń wyżej zaznaczone pliki - + Move &Down - Przenieś &Niżej + Przesuń w &Dół - + Move down the selected videos in the playlist - Przenieś niżej zaznaczony plik w liście odtwarzania + Przesuń niżej zaznaczone pliki - + &Clear recent searches - Wy&czyść ostatnie wyszukiwania + &Czyść historię wyszukiwania - + Clear the search history. Cannot be undone. - Wyczyść historię wyszukiwania. NIEODWRACALNIE. + Czyści historię wyszukiwania. Nieodwracalnie. - + &Quit - Wyjdź (&Q) + &Weź to wyłącz - + Ctrl+Q Ctrl+Q - + Bye - Żegnaj + Narciarz - + &Website - Strona domowa projektu (&W) + &Wyświetl stronę - + %1 on the Web - %1 w sieci + %1 on the Web - + Make a &donation - Przekaż &darowiznę + Złóż &dotację - + Please support the continued development of %1 - Prosimy o wsparcie dla dalszego rozwoju %1 + Wesprzyj dalszy rozwój %1 - + &About - O programie (&A) + O &Programie - + Info about %1 Informacje o %1 - + Search Szukaj - + Mute volume Wycisz - + Ctrl+M Ctrl+M - - + + &Downloads &Pobrane - + Show details about video downloads Pokaż szczegóły o pobranych plikach - + &Download &Pobierz - + Download the current video Pobierz aktualny plik - + + Share the current video using %1 + Podziel się tym filmem przez %1 + + + + &Email + &E-mail + + + + Email + e-mail + + + &Application - &Aplikacje + &Aplikacja - + + &Playback + &Odtwarzanie + + + &Playlist &Lista odtwarzania - + &Video &Wideo - + + &View + &Widok + + + + &Share + &Podziel się + + + &Help - &Pomoc + &Halp znaczy pomoc - + Press %1 to raise the volume, %2 to lower it - Wciścnij %1 żeby zwiększyć głośność, %2 żeby zmiejszyć głośność + Naciśnij %1 aby podgłośnić, %2 aby przyciszyć - - + + Opening %1 Otwieranie %1 - + Do you want to exit %1 with a download in progress? Czy na pewno chcesz zamknąć %1 w trakcie pobierania??? - + If you close %1 now, this download will be cancelled. Jeśli zamkniesz %1 teraz, To pobieranie będzie anulowane. - + Close and cancel download Zamnij i anuluj pobieranie - + Wait for download to finish Poczekaj na zakończenie pobierania - - Fatal error: %1 - Fatalny błąd %1 + + Leave &Full Screen + Opuść pełny ekran (&F) + + + + %1 version %2 is now available. + Wersja %1 %2 jest dostępna + + + + Remind me later + Przypomnij później + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + Aby pobrać zaktualizowaną wersję, pobierz na nowo %1 używając linka otrzymanego na e-mail, i zainstaluj ponownie. + + + + Update + Zaktualizuj - + Error: %1 Błąd %1 - + &Play - &Odtwarzaj + &Graj - + Resume playback - Kontynuuj odtwarzanie + Przywróć odtwarzanie - - Exit &Full Screen - Opuść pełny ekran (&F) - - - + Remaining time: %1 - Pozostały czas %1 + Pozostały czas: %1 - + Volume at %1% - Głośność na %1% + Głośność: %1% - + Volume is muted - Dźwięk jest wyciszony + Dźwięk wyciszony - + Volume is unmuted - Przywrócono dźwięk + Dźwięk przywrócony - + Maximum video definition set to %1 Maksymalna rozdzielczość wideo ustawiona na %1 - + Your privacy is now safe - Twoja prywatność jest teraz bezpieczna + Twoja prywatność jest już bezpieczna - + Downloads complete Pobieranie ukończone @@ -604,57 +712,80 @@ MediaView - + Most relevant Najlepiej pasujące - + Most recent Ostatnie - + Most viewed Najczęściej odtwarzane - + You can now paste the YouTube link into another application - Teraz możesz wkleić link Youtube do innej aplikacji + Teraz można wkleić link YouTube do innej aplikacji - + You can now paste the video stream URL into another application Teraz możesz wkleić URL do innej aplikacji - + The link will be valid only for a limited time. Link będzie ważny tylko przez ograniczony czas. - + This is just the demo version of %1. To jest tylko wersja demo %1. - + It allows you to test the application and see if it works for you. - Pozwala Ci to na testowanie i sprawdzenie działania aplikacji. + Pozwala przetestować aplikację, i zobaczyć czy Ci odpowiada. - + Continue - Kontynuuj + Dalej + + + + of + Used in video parts, as in '2 of 3' + z - + + part + This is for video parts, as in 'Cool video - part 1' + część + + + + episode + This is for video parts, as in 'Cool series - episode 1' + odcinek + + + + Sent from %1 + Przesłane od %1 + + + Get the full version - Pobierz pełną wersję + Zdobądź pełną wersję - + Downloading %1 Pobieranie %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Błąd sieci %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views - %1 widziane + %1 odtworzeń - + %1 of %2 (%3) — %4 - %1 of %2 (%3) — %4 + %1 z %2 (%3) — %4 - + Preparing - Przegotowuję + Przygotowuję - + Failed Nieudane - + Completed Zakończone - + Stopped Zatrzymane - + Stop downloading Zatrzymaj pobieranie - + Show in %1 Pokaż w %1 - + Open parent folder - Otwórz katalog macierzysty + Otwórz katalog główny - + Restart downloading Pobierz od nowa @@ -723,7 +854,7 @@ SearchLineEdit - + Search Szukaj @@ -731,73 +862,68 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Witaj w <a href='%1'>%2</a>, - + Get the full version Pobierz pełną wersję - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Zatwierdź - + a keyword słowo kluczowe - + a channel kanał - + to start watching videos. aby rozpocząć oglądanie - + Watch Oglądaj - + Recent keywords - Ostatnio szukane + Ostatnie wyszukiwania - + Recent channels - Odwiedzone kanały - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Nowa wersja %1 jest dostępna. Prosze <a href='%2'>aktualizuj do wersji %3</a> + Ostatnie kanały - + Make yourself comfortable - Czuj sie komfortowo + Rozgość się Video - + Cannot get video stream for %1 - Nie można uzyskać dostępu do %1 + Strumieniowanie %1 nie powiodło się - + Network error: %1 for %2 - Błąd sieci: %1 for %2 + Błąd sieci: %1 dla %2 \ No newline at end of file diff -Nru minitube-1.5/locale/pl.ts minitube-1.6/locale/pl.ts --- minitube-1.5/locale/pl.ts 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/locale/pl.ts 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,929 @@ + +UTF-8 + + AboutView + + + There's life outside the browser! + Istnieje życie poza przeglądarką! + + + + Version %1 + Wersja %1 + + + + %1 is Free Software but its development takes precious time. + %1 jest wolnym oprogramowaniem, ale jego rozwój pochłania cenney czas. + + + + Please <a href='%1'>donate</a> to support the continued development of %2. + Proszę <a href='%1'>wesprzyj nas darowizną</a> żybyśmy mogli ciągle rozwijać %2. + + + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + + Report bugs and send in your ideas to %1 + Zgłaszaj błędy i dziel się z nami pomysłami na adres%1 + + + + Icon designed by %1. + Ikony zaprojektowane przez %1. + + + + Compact mode contributed by %1. + Do wprowadzenia Trybu kompaktowego przyczynił się %1. + + + + HTTP proxy support contributed by %1. + Do wsparcia dla serwera proxy przyczynił sie %1. + + + + Released under the <a href='%1'>GNU General Public License</a> + Wydane na licencji<a href='%1'>GNU General Public License</a> + + + + &Close + &Zamknij + + + + About + O programie Minitube + + + + What you always wanted to know about %1 and never dared to ask + To co zawsze chcieliście wiedzieć o %1 ale nigdy się nie odważyliście zapytać + + + + ClearButton + + + Clear + Wyczyść + + + + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + + DownloadItem + + + bytes + bajty + + + + KB + KB + + + + MB + MB + + + + bytes/sec + bajtów/sekundę + + + + KB/sec + KB/sek + + + + MB/sec + MB/sek + + + + seconds + sekund + + + + minutes + minut + + + + %4 %5 remaining + %4 %5 pozostało do końca + + + + DownloadManager + + + This is just the demo version of %1. + To jest tylko wersja demo%1. + + + + It can only download videos shorter than %1 minutes so you can test the download functionality. + Może jedynie pobierać filmy krótsze niż%1 minut, więc można przetestować funkcje pobierania. + + + + Continue + Kontynuuj + + + + Get the full version + Pobierz pełną wersję + + + + %n Download(s) + %n Pobieranie%n Pobieranie%n Pobieranie + + + + DownloadSettings + + + Change location... + Zmień katalog pobierania... + + + + Choose the download location + Wybierz katalog pobierania + + + + Download location changed. + Katalog pobierania został zmieniony. + + + + Current downloads will still go in the previous location. + Aktualnie pobierane pliki zostaną we wcześniejszym katalogu pobierania. + + + + Downloading to: %1 + Pobierane do: %1 + + + + DownloadView + + + + Downloads + Pobrane pliki + + + + GlobalShortcuts + + + Play + Odtwarzaj + + + + Pause + Pauza + + + + Play/Pause + Odtwarzaj/Wstrzymaj + + + + Stop + Zatrzymaj + + + + Stop playing after current track + Zatrzymaj odtwarzanie po tej ścieżce + + + + Next track + Następny + + + + Previous track + Poprzedni + + + + Increase volume + Głośniej + + + + Decrease volume + Ciszej + + + + Mute + Wycisz + + + + Seek forward + Przewiń w przód + + + + Seek backward + Przewiń w tył + + + + ListModel + + + Searching... + Szukam... + + + + Show %1 More + Pokaż kolejne %1 + + + + No videos + Brak plików + + + + No more videos + Nie ma więcej plików + + + + LoadingWidget + + + Error + Błąd + + + + MainWindow + + + &Stop + &Zatrzymaj + + + + Stop playback and go back to the search view + Zatrzymaj odtwarzanie i wróć do wyszukiwania + + + + S&kip + Prze&skocz dalej + + + + Skip to the next video + Skocz do następnego pliku wideo + + + + + &Pause + &Pauza + + + + + Pause playback + Wstrzymaj odtwarzanie + + + + &Full Screen + Pełny ekran (&F) + + + + Go full screen + Przełącz na pełny ekran + + + + &Compact mode + Tryb kompaktowy(&C) + + + + Hide the playlist and the toolbar + Ukryj listę odtwarzania i pasek narzędzi + + + + Open the &YouTube page + Otwórz na stronie &Youtube + + + + Go to the YouTube video page and pause playback + Otwórz na stronie Youtube i wstrzymaj odtwarzanie + + + + Copy the YouTube &link + Kopiuj &link do pliku na Youtube + + + + Copy the current video YouTube link to the clipboard + Kopiuj link aktualnie odtwarzanego video do schowka + + + + Copy the video stream &URL + Kopiuj adres &URL odtwarzanego wideo + + + + Copy the current video stream URL to the clipboard + Kopiuj adres URL odtwarzanego wideo do schowka + + + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + + &Remove + Usuń (&D) + + + + Remove the selected videos from the playlist + Usuń wybrane pliki z listy odtwarzania + + + + Move &Up + Przenieś &Wyżej + + + + Move up the selected videos in the playlist + Przenieś wyżej zaznaczony plik w liście odtwarzania + + + + Move &Down + Przenieś &Niżej + + + + Move down the selected videos in the playlist + Przenieś niżej zaznaczony plik w liście odtwarzania + + + + &Clear recent searches + Wy&czyść ostatnie wyszukiwania + + + + Clear the search history. Cannot be undone. + Wyczyść historię wyszukiwania. NIEODWRACALNIE. + + + + &Quit + Wyjdź (&Q) + + + + Ctrl+Q + Ctrl+Q + + + + Bye + Żegnaj + + + + &Website + Strona domowa projektu (&W) + + + + %1 on the Web + %1 w sieci + + + + Make a &donation + Przekaż &darowiznę + + + + Please support the continued development of %1 + Prosimy o wsparcie dla dalszego rozwoju %1 + + + + &About + O programie (&A) + + + + Info about %1 + Informacje o %1 + + + + Search + Szukaj + + + + Mute volume + Wycisz + + + + Ctrl+M + Ctrl+M + + + + + &Downloads + &Pobrane + + + + Show details about video downloads + Pokaż szczegóły o pobranych plikach + + + + &Download + &Pobierz + + + + Download the current video + Pobierz aktualny plik + + + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + + &Application + &Aplikacje + + + + &Playback + + + + + &Playlist + &Lista odtwarzania + + + + &Video + &Wideo + + + + &View + + + + + &Share + + + + + &Help + &Pomoc + + + + Press %1 to raise the volume, %2 to lower it + Wciścnij %1 żeby zwiększyć głośność, %2 żeby zmiejszyć głośność + + + + + Opening %1 + Otwieranie %1 + + + + Do you want to exit %1 with a download in progress? + Czy na pewno chcesz zamknąć %1 w trakcie pobierania??? + + + + If you close %1 now, this download will be cancelled. + Jeśli zamkniesz %1 teraz, To pobieranie będzie anulowane. + + + + Close and cancel download + Zamnij i anuluj pobieranie + + + + Wait for download to finish + Poczekaj na zakończenie pobierania + + + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + + Error: %1 + Błąd %1 + + + + &Play + &Odtwarzaj + + + + Resume playback + Kontynuuj odtwarzanie + + + + Remaining time: %1 + Pozostały czas %1 + + + + Volume at %1% + Głośność na %1% + + + + Volume is muted + Dźwięk jest wyciszony + + + + Volume is unmuted + Przywrócono dźwięk + + + + Maximum video definition set to %1 + Maksymalna rozdzielczość wideo ustawiona na %1 + + + + Your privacy is now safe + Twoja prywatność jest teraz bezpieczna + + + + Downloads complete + Pobieranie ukończone + + + + MediaView + + + Most relevant + Najlepiej pasujące + + + + Most recent + Ostatnie + + + + Most viewed + Najczęściej odtwarzane + + + + You can now paste the YouTube link into another application + Teraz możesz wkleić link Youtube do innej aplikacji + + + + You can now paste the video stream URL into another application + Teraz możesz wkleić URL do innej aplikacji + + + + The link will be valid only for a limited time. + Link będzie ważny tylko przez ograniczony czas. + + + + This is just the demo version of %1. + To jest tylko wersja demo %1. + + + + It allows you to test the application and see if it works for you. + Pozwala Ci to na testowanie i sprawdzenie działania aplikacji. + + + + Continue + Kontynuuj + + + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + + Get the full version + Pobierz pełną wersję + + + + Downloading %1 + Pobieranie %1 + + + + NetworkAccess + + + Network error: %1 + Błąd sieci %1 + + + + PrettyItemDelegate + + + %1 views + %1 widziane + + + + %1 of %2 (%3) — %4 + %1 of %2 (%3) — %4 + + + + Preparing + Przegotowuję + + + + Failed + Nieudane + + + + Completed + Zakończone + + + + Stopped + Zatrzymane + + + + Stop downloading + Zatrzymaj pobieranie + + + + Show in %1 + Pokaż w %1 + + + + Open parent folder + Otwórz katalog macierzysty + + + + Restart downloading + Pobierz od nowa + + + + SearchLineEdit + + + Search + Szukaj + + + + SearchView + + + Welcome to <a href='%1'>%2</a>, + Witaj w <a href='%1'>%2</a>, + + + + Get the full version + Pobierz pełną wersję + + + + Enter + "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" + Zatwierdź + + + + a keyword + słowo kluczowe + + + + a channel + kanał + + + + to start watching videos. + aby rozpocząć oglądanie + + + + Watch + Oglądaj + + + + Recent keywords + Ostatnio szukane + + + + Recent channels + Odwiedzone kanały + + + + Make yourself comfortable + Czuj sie komfortowo + + + + Video + + + Cannot get video stream for %1 + Nie można uzyskać dostępu do %1 + + + + Network error: %1 for %2 + Błąd sieci: %1 for %2 + + + \ No newline at end of file diff -Nru minitube-1.5/locale/pt_BR.ts minitube-1.6/locale/pt_BR.ts --- minitube-1.5/locale/pt_BR.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/pt_BR.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Há vida fora do navegador! - + Version %1 Versão %1 - + %1 is Free Software but its development takes precious time. %1 é um Software livre, mas seu desenvolvimento toma um tempo precioso. - + Please <a href='%1'>donate</a> to support the continued development of %2. Por favor <a href='%1'>doe</a> para apoiar o desenvolvimento continuado de %2. - + + You may want to try my other apps as well: + Você pode querer tentar os meus outros aplicativos também: + + + + %1, a YouTube music player + %1, um tocador de música para YouTube + + + + %1, a music player + %1, um tocador de música + + + + Translate %1 to your native language using %2 + Traduza %1 para seu idioma nativo usando %2 + + + Report bugs and send in your ideas to %1 Relate as falhas e envie suas ideias para %1 - + Icon designed by %1. Ícone desenhado por %1. - + Compact mode contributed by %1. Modo compacto contribuído por %1. - + HTTP proxy support contributed by %1. Suporte a proxy HTTP contribuído por %1. - - Translated by %1 - Traduzido por %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Lançado sob a <a href='%1'>Licença Pública Geral GNU</a> - + &Close &Fechar - + About Sobre - + What you always wanted to know about %1 and never dared to ask O que você sempre quis saber sobre %1 e nunca se atreveu a perguntar @@ -71,55 +86,93 @@ ClearButton - + Clear Limpar + DemoStartupView + + + Please license %1 + Por favor, licença %1 + + + + This demo has expired. + Esta demonstração expirou. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + A versão completa permite que você baixe vídeos com mais de %1 minutos e assista-os sem interrupções. + + + + This demo will expire in %1 days. + Esta demonstração irá expirar em %1 dias. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Ao comprar a versão completa, você também vai apoiar o trabalho duro eu dediquei em criar %1. + + + + Use Demo + Usar Demonstração + + + + Get the full version + Obter a versão completa + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec bytes/seg - + KB/sec KB/seg - + MB/sec MB/seg - + seconds segundos - + minutes minutos - + %4 %5 remaining %4 %5 restantes @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Esta é apenas a versão demonstração de %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Só pode fazer download de vídeos menores que %1 minutos para que você possa testar a funcionalidade de download. - + Continue Continuar - + Get the full version Obter a versão completa - + %n Download(s) %n Download%n Downloads @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Alterar local... - + Choose the download location Escolha um local para o download - + Download location changed. Local de download alterado. - + Current downloads will still go in the previous location. Downloads atuais ainda irão para o local anterior. - + Downloading to: %1 Baixando para: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Downloads @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Reproduzir - + Pause Pausar - + Play/Pause Reproduzir/Pausar - + Stop Parar - + Stop playing after current track Parar reprodução após a faixa atual - + Next track Próxima faixa - + Previous track Faixa anterior - + Increase volume Aumentar volume - + Decrease volume Diminuir volume - + Mute Mudo - + Seek forward Avançar - + Seek backward Voltar @@ -255,22 +308,22 @@ ListModel - + Searching... Pesquisando... - + Show %1 More Mostrar mais %1 - + No videos Não há vídeos - + No more videos Não há mais vídeos @@ -278,7 +331,7 @@ LoadingWidget - + Error Erro @@ -286,317 +339,372 @@ MainWindow - + &Stop &Parar - + Stop playback and go back to the search view Parar a reprodução e voltar à visualização da pesquisa - + S&kip Pu&lar - + Skip to the next video Pular para o próximo vídeo - - + + &Pause &Pausar - - + + Pause playback Pausar a reprodução - - + &Full Screen &Tela Cheia - + Go full screen Ir para a tela cheia - + &Compact mode Modo &compacto - + Hide the playlist and the toolbar Ocultar a playlist e a barra de ferramentas - + Open the &YouTube page Abrir a página do &YouTube - + Go to the YouTube video page and pause playback Ir à página de vídeo do YouTube e pausar a reprodução - + Copy the YouTube &link Copiar o &link do YouTube - + Copy the current video YouTube link to the clipboard Copiar o link do vídeo atual do YouTube para a área de transferência - + Copy the video stream &URL Copiar a &URL do stream do vídeo - + Copy the current video stream URL to the clipboard Copiar a URL do stream do vídeo atual para a área de transferência - + + Find video &parts + Localizar &partes de vídeo + + + + Find other video parts hopefully in the right order + Localizar partes de outro vídeo esperando na ordem certa + + + &Remove &Remover - + Remove the selected videos from the playlist Remover os vídeos selecionados da playlist - + Move &Up Mover para &cima - + Move up the selected videos in the playlist Mover para cima os vídeos selecionados na playlist - + Move &Down Mover para &baixo - + Move down the selected videos in the playlist Mover para baixo os vídeos selecionados na playlist - + &Clear recent searches &Limpar pesquisas recentes - + Clear the search history. Cannot be undone. Apagar o histórico de pesquisa. Não pode ser desfeito. - + &Quit &Sair - + Ctrl+Q Ctrl+Q - + Bye Tchau - + &Website Si&te - + %1 on the Web %1 na Web - + Make a &donation Faça uma &doação - + Please support the continued development of %1 Por favor, apoie o desenvolvimento continuado de %1 - + &About &Sobre - + Info about %1 Informações sobre %1 - + Search Pesquisar - + Mute volume Volume mudo - + Ctrl+M Ctrl+M - - + + &Downloads &Downloads - + Show details about video downloads Mostrar detalhes sobre os downloads de vídeo - + &Download &Download - + Download the current video Baixar o vídeo atual - + + Share the current video using %1 + Compartilhar o vídeo atual usando %1 + + + + &Email + &E-mail + + + + Email + E-mail + + + &Application &Aplicação - + + &Playback + &Reprodução + + + &Playlist &Playlist - + &Video &Vídeo - + + &View + &Visualizar + + + + &Share + &Compartilhar + + + &Help &Ajuda - + Press %1 to raise the volume, %2 to lower it Pressione %1 para aumentar o volume, %2 para diminui-lo - - + + Opening %1 Abrindo %1 - + Do you want to exit %1 with a download in progress? Você deseja sair de "%1" com uma transferência em curso? - + If you close %1 now, this download will be cancelled. Se você fechar %1 agora, este download será cancelado. - + Close and cancel download Fechar e cancelar download - + Wait for download to finish Aguardar o download terminar - - Fatal error: %1 - Erro fatal: %1 + + Leave &Full Screen + Deixar Em &Tela Cheia + + + + %1 version %2 is now available. + %1 versão %2 está agora disponível. + + + + Remind me later + Lembrar mais tarde - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + Para obter a versão atualizada, baixe %1 novamente do link que você recebeu via e-mail e reinstale-o. + + + + Update + Atualizar + + + Error: %1 Erro: %1 - + &Play &Reproduzir - + Resume playback Continuar reprodução - - Exit &Full Screen - Sair de &Tela Cheia - - - + Remaining time: %1 Tempo restante: %1 - + Volume at %1% Volume a %1% - + Volume is muted Volume está mudo - + Volume is unmuted Volume não está mudo - + Maximum video definition set to %1 Máxima definição de vídeo definida para %1 - + Your privacy is now safe Sua privacidade está agora segura - + Downloads complete Downloads finalizados @@ -604,57 +712,80 @@ MediaView - + Most relevant Mais relevantes - + Most recent Mais recentes - + Most viewed Mais vistos - + You can now paste the YouTube link into another application Agora você pode colar o link do YouTube em outro programa - + You can now paste the video stream URL into another application Agora você pode colar a URL do stream de vídeo em outro programa - + The link will be valid only for a limited time. O link só será válido por um tempo limitado. - + This is just the demo version of %1. Esta é apenas a versão demonstação de %1. - + It allows you to test the application and see if it works for you. Ele permite que você teste o aplicativo e veja se ele funciona para você. - + Continue Continuar - + + of + Used in video parts, as in '2 of 3' + de + + + + part + This is for video parts, as in 'Cool video - part 1' + parte + + + + episode + This is for video parts, as in 'Cool series - episode 1' + epsódio + + + + Sent from %1 + Envido de %1 + + + Get the full version Obter a versão completa - + Downloading %1 Baixando %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Erro na rede: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 exibições - + %1 of %2 (%3) — %4 %1 de %2 (%3) — %4 - + Preparing Preparando - + Failed Falhou - + Completed Finalizado - + Stopped Parado - + Stop downloading Parar download - + Show in %1 Mostrar em %1 - + Open parent folder Abrir pasta pai - + Restart downloading Reiniciar download @@ -723,7 +854,7 @@ SearchLineEdit - + Search Pesquisar @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Bem-vindo ao <a href='%1'>%2</a>, - + Get the full version Obter a versão completa - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Digite - + a keyword uma palavra chave - + a channel um canal - + to start watching videos. para começar a assistir vídeos. - + Watch Assistir - + Recent keywords Palavra-chave recente - + Recent channels Canais recentes - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Um nova versão de %1 está disponível. Por favor, <a href='%2'>atualize para a versão %3</a> - - - + Make yourself comfortable Sinta-se confortável @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Não foi possível obter stream de vídeo de %1 - + Network error: %1 for %2 Erro na rede: %1 para %2 diff -Nru minitube-1.5/locale/pt_PT.ts minitube-1.6/locale/pt_PT.ts --- minitube-1.5/locale/pt_PT.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/pt_PT.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Existe vida para além do navegador! - - - - Version %1 - Versão %1 - - - - %1 is Free Software but its development takes precious time. - %1 é Software Livre mas o seu desenvolvimento leva tempo precioso. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - Por favor <a href='%1'>Faça um donativo</a> para suportar o desenvolvimento continuado do%2. - - - - Report bugs and send in your ideas to %1 - Reporte erros e envie as suas ideias para%1 - - - - Icon designed by %1. - Icon criado por %1. - - - - Compact mode contributed by %1. - Modo compacto contribuído por%1. - - - - HTTP proxy support contributed by %1. - Suporte a proxy HTTP contribuído por%1. - - - - Translated by %1 - Traduzido por %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - Lançado nos termos da <a href='"%1'>GNU General Public License</a> - - - - &Close - &Fechar - - - - About - Sobre - - - - What you always wanted to know about %1 and never dared to ask - Tudo o que sempre quis saber sobre o %1 e nunca se atreveu a perguntar - - - - ClearButton - - - Clear - Limpar - - - - DownloadItem - - - bytes - bytes - - - - KB - KB - - - - MB - MB - - - - bytes/sec - bytes/seg - - - - KB/sec - KB/sec - - - - MB/sec - MB/seg - - - - seconds - segundos - - - - minutes - minutos - - - - %4 %5 remaining - %4 %5 restante - - - - DownloadManager - - - This is just the demo version of %1. - Isto é apenas uma versão de demonstração de %1. - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - Apenas pode transferir vídeos mais curtos que %1 minuto(s) de forma a testar a funcionalidade de transferência. - - - - Continue - Continuar - - - - Get the full version - Transfira a versão completa - - - - %n Download(s) - %n Transferência%n Transferências - - - - DownloadSettings - - - Change location... - Mudar pasta de destino... - - - - Choose the download location - Escolha a pasta de destino da transferência - - - - Download location changed. - A pasta de destino da transferência foi actualizada. - - - - Current downloads will still go in the previous location. - A pasta de transferência actual irá manter-se na mesma pasta. - - - - Downloading to: %1 - A transferir para: %1 - - - - DownloadView - - - - Downloads - Transferências - - - - GlobalShortcuts - - - Play - Iniciar - - - - Pause - Pausa - - - - Play/Pause - Iniciar/Pausar - - - - Stop - Parar - - - - Stop playing after current track - Parar assim que terminar o vídeo ou música corrente - - - - Next track - Próximo vídeo/música - - - - Previous track - Vídeo/música anterior - - - - Increase volume - Aumentar volume - - - - Decrease volume - Diminuir volume - - - - Mute - Silêncio - - - - Seek forward - Avançar - - - - Seek backward - Retroceder - - - - ListModel - - - Searching... - A pesquisar... - - - - Show %1 More - Mostrar mais %1 - - - - No videos - Sem vídeos - - - - No more videos - Sem mais vídeos - - - - LoadingWidget - - - Error - Erro - - - - MainWindow - - - &Stop - &Parar - - - - Stop playback and go back to the search view - Para a reprodução e voltar à vista de pesquisa - - - - S&kip - S&altar - - - - Skip to the next video - Saltar para o próximo vídeo - - - - - &Pause - &Pausar - - - - - Pause playback - Pausar reprodução - - - - - &Full Screen - Ecrã &Completo - - - - Go full screen - Ir para ecrã completo - - - - &Compact mode - Modo &Compacto - - - - Hide the playlist and the toolbar - Esconder a lista de reprodução e a barra de ferramentas - - - - Open the &YouTube page - Abrir a página do &Youtube - - - - Go to the YouTube video page and pause playback - Ir para a página do Youtube do vídeo e parar a reprodução - - - - Copy the YouTube &link - Copiar o &link do Youtube - - - - Copy the current video YouTube link to the clipboard - Copiar o link do Youtube do vídeo actual para a área de transferência - - - - Copy the video stream &URL - Copiar o &URL da emissão de vídeo - - - - Copy the current video stream URL to the clipboard - Copiar o URL da emissão de vídeo actual para a área de transferência - - - - &Remove - &Remover - - - - Remove the selected videos from the playlist - Remover os vídeos seleccionados da lista de reprodução - - - - Move &Up - Mover para &Cima - - - - Move up the selected videos in the playlist - Mover para cima os vídeos seleccionados na lista de reprodução - - - - Move &Down - Mover para &Baixo - - - - Move down the selected videos in the playlist - Mover para baixo os vídeos seleccionados na lista de reprodução - - - - &Clear recent searches - &Limpar pesquisas recentes - - - - Clear the search history. Cannot be undone. - Limpar o histório de pesquisa. Não pode ser desfeito. - - - - &Quit - &Sair - - - - Ctrl+Q - Ctrl+Q - - - - Bye - Adeus - - - - &Website - Sítio &Web - - - - %1 on the Web - %1 na Internet - - - - Make a &donation - Fazer uma &doação - - - - Please support the continued development of %1 - Por favor suporte o desenvolvimento continuado do %1 - - - - &About - &Sobre - - - - Info about %1 - Informação sobre %1 - - - - Search - Pesquisar - - - - Mute volume - Silenciar o volume - - - - Ctrl+M - Ctrl+M - - - - - &Downloads - &Transferências - - - - Show details about video downloads - Mostar detalhes sobre a transferência de vídeos - - - - &Download - &Transferência - - - - Download the current video - Transferir o vídeo actual - - - - &Application - &Aplicação - - - - &Playlist - &Lista de reprodução - - - - &Video - &Vídeo - - - - &Help - &Ajuda - - - - Press %1 to raise the volume, %2 to lower it - Prima %1 para aumentar o volume, %2 para reduzi-lo - - - - - Opening %1 - A abrir %1 - - - - Do you want to exit %1 with a download in progress? - Deseja sair %1 com uma transferência activa? - - - - If you close %1 now, this download will be cancelled. - Se fechar %1, a transferência irá ser cancelada. - - - - Close and cancel download - Fechar e cancelar a transferência - - - - Wait for download to finish - Espere que a transferência termine - - - - Fatal error: %1 - Erro fatal:%1 - - - - Error: %1 - Erro:%1 - - - - &Play - &Reproduzir - - - - Resume playback - Retomar a reprodução - - - - Exit &Full Screen - Sair do Ecrã &Completo - - - - Remaining time: %1 - Tempo restante:%1 - - - - Volume at %1% - Volume a :%1% - - - - Volume is muted - O volume está silenciado - - - - Volume is unmuted - O volume não está silenciado - - - - Maximum video definition set to %1 - Definição de vídeo máxima estabelecida em %1 - - - - Your privacy is now safe - A sua privacidade está agora assegurada - - - - Downloads complete - Transferência completa - - - - MediaView - - - Most relevant - Mais relevantes - - - - Most recent - Mais recentes - - - - Most viewed - Mais vistos - - - - You can now paste the YouTube link into another application - Pode agora colar o link do Youtube noutra aplicação - - - - You can now paste the video stream URL into another application - Pode agora colar o URL da emissão de vídeo noutra aplicação - - - - The link will be valid only for a limited time. - O link será válido apenas por algum tempo. - - - - This is just the demo version of %1. - Isto é apenas uma versão de demonstração de %1. - - - - It allows you to test the application and see if it works for you. - Permite testes a aplicacção e verificar como funciona. - - - - Continue - Continuar - - - - Get the full version - Transfira a versão completa - - - - Downloading %1 - Transferir: %1 - - - - NetworkAccess - - - Network error: %1 - Erro de rede: %1 - - - - PrettyItemDelegate - - - %1 views - %1 visualizações - - - - %1 of %2 (%3) — %4 - %1 de %2 (%3) — %4 - - - - Preparing - A preparar - - - - Failed - Falhou - - - - Completed - Completo - - - - Stopped - Parado - - - - Stop downloading - Parar a transferência - - - - Show in %1 - Mostrar em %1 - - - - Open parent folder - Abrir pasta anterior - - - - Restart downloading - Recomeçar a transferência - - - - SearchLineEdit - - - Search - Pesquisar - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - Bem-vindo ao <a href='%1'>%2</a> - - - - Get the full version - Obter a versão completa - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - Digite - - - - a keyword - uma palavra-chave - - - - a channel - um canal - - - - to start watching videos. - para começar a assistir vídeos. - - - - Watch - Assistir - - - - Recent keywords - Pesquisas recentes - - - - Recent channels - Canais recentes - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Uma nova versão do %1 está disponível. Por favor <a href='%2'>actualize para a versão %3</a> - - - - Make yourself comfortable - Acomode-se confortavelmente - - - - Video - - - Cannot get video stream for %1 - Não é possível obter o video stream para %1 - - - - Network error: %1 for %2 - Erro de rede: %1 para %2 - - - \ No newline at end of file diff -Nru minitube-1.5/locale/pt.ts minitube-1.6/locale/pt.ts --- minitube-1.5/locale/pt.ts 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/locale/pt.ts 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,929 @@ + +UTF-8 + + AboutView + + + There's life outside the browser! + Existe vida para além do navegador! + + + + Version %1 + Versão %1 + + + + %1 is Free Software but its development takes precious time. + %1 é Software Livre mas o seu desenvolvimento leva tempo precioso. + + + + Please <a href='%1'>donate</a> to support the continued development of %2. + Por favor <a href='%1'>Faça um donativo</a> para suportar o desenvolvimento continuado do%2. + + + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + + Report bugs and send in your ideas to %1 + Reporte erros e envie as suas ideias para%1 + + + + Icon designed by %1. + Icon criado por %1. + + + + Compact mode contributed by %1. + Modo compacto contribuído por%1. + + + + HTTP proxy support contributed by %1. + Suporte a proxy HTTP contribuído por%1. + + + + Released under the <a href='%1'>GNU General Public License</a> + Lançado nos termos da <a href='"%1'>GNU General Public License</a> + + + + &Close + &Fechar + + + + About + Sobre + + + + What you always wanted to know about %1 and never dared to ask + Tudo o que sempre quis saber sobre o %1 e nunca se atreveu a perguntar + + + + ClearButton + + + Clear + Limpar + + + + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + + DownloadItem + + + bytes + bytes + + + + KB + KB + + + + MB + MB + + + + bytes/sec + bytes/seg + + + + KB/sec + KB/sec + + + + MB/sec + MB/seg + + + + seconds + segundos + + + + minutes + minutos + + + + %4 %5 remaining + %4 %5 restante + + + + DownloadManager + + + This is just the demo version of %1. + Isto é apenas uma versão de demonstração de %1. + + + + It can only download videos shorter than %1 minutes so you can test the download functionality. + Apenas pode transferir vídeos mais curtos que %1 minuto(s) de forma a testar a funcionalidade de transferência. + + + + Continue + Continuar + + + + Get the full version + Transfira a versão completa + + + + %n Download(s) + %n Transferência%n Transferências + + + + DownloadSettings + + + Change location... + Mudar pasta de destino... + + + + Choose the download location + Escolha a pasta de destino da transferência + + + + Download location changed. + A pasta de destino da transferência foi actualizada. + + + + Current downloads will still go in the previous location. + A pasta de transferência actual irá manter-se na mesma pasta. + + + + Downloading to: %1 + A transferir para: %1 + + + + DownloadView + + + + Downloads + Transferências + + + + GlobalShortcuts + + + Play + Iniciar + + + + Pause + Pausa + + + + Play/Pause + Iniciar/Pausar + + + + Stop + Parar + + + + Stop playing after current track + Parar assim que terminar o vídeo ou música corrente + + + + Next track + Próximo vídeo/música + + + + Previous track + Vídeo/música anterior + + + + Increase volume + Aumentar volume + + + + Decrease volume + Diminuir volume + + + + Mute + Silêncio + + + + Seek forward + Avançar + + + + Seek backward + Retroceder + + + + ListModel + + + Searching... + A pesquisar... + + + + Show %1 More + Mostrar mais %1 + + + + No videos + Sem vídeos + + + + No more videos + Sem mais vídeos + + + + LoadingWidget + + + Error + Erro + + + + MainWindow + + + &Stop + &Parar + + + + Stop playback and go back to the search view + Para a reprodução e voltar à vista de pesquisa + + + + S&kip + S&altar + + + + Skip to the next video + Saltar para o próximo vídeo + + + + + &Pause + &Pausar + + + + + Pause playback + Pausar reprodução + + + + &Full Screen + Ecrã &Completo + + + + Go full screen + Ir para ecrã completo + + + + &Compact mode + Modo &Compacto + + + + Hide the playlist and the toolbar + Esconder a lista de reprodução e a barra de ferramentas + + + + Open the &YouTube page + Abrir a página do &Youtube + + + + Go to the YouTube video page and pause playback + Ir para a página do Youtube do vídeo e parar a reprodução + + + + Copy the YouTube &link + Copiar o &link do Youtube + + + + Copy the current video YouTube link to the clipboard + Copiar o link do Youtube do vídeo actual para a área de transferência + + + + Copy the video stream &URL + Copiar o &URL da emissão de vídeo + + + + Copy the current video stream URL to the clipboard + Copiar o URL da emissão de vídeo actual para a área de transferência + + + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + + &Remove + &Remover + + + + Remove the selected videos from the playlist + Remover os vídeos seleccionados da lista de reprodução + + + + Move &Up + Mover para &Cima + + + + Move up the selected videos in the playlist + Mover para cima os vídeos seleccionados na lista de reprodução + + + + Move &Down + Mover para &Baixo + + + + Move down the selected videos in the playlist + Mover para baixo os vídeos seleccionados na lista de reprodução + + + + &Clear recent searches + &Limpar pesquisas recentes + + + + Clear the search history. Cannot be undone. + Limpar o histório de pesquisa. Não pode ser desfeito. + + + + &Quit + &Sair + + + + Ctrl+Q + Ctrl+Q + + + + Bye + Adeus + + + + &Website + Sítio &Web + + + + %1 on the Web + %1 na Internet + + + + Make a &donation + Fazer uma &doação + + + + Please support the continued development of %1 + Por favor suporte o desenvolvimento continuado do %1 + + + + &About + &Sobre + + + + Info about %1 + Informação sobre %1 + + + + Search + Pesquisar + + + + Mute volume + Silenciar o volume + + + + Ctrl+M + Ctrl+M + + + + + &Downloads + &Transferências + + + + Show details about video downloads + Mostar detalhes sobre a transferência de vídeos + + + + &Download + &Transferência + + + + Download the current video + Transferir o vídeo actual + + + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + + &Application + &Aplicação + + + + &Playback + + + + + &Playlist + &Lista de reprodução + + + + &Video + &Vídeo + + + + &View + + + + + &Share + + + + + &Help + &Ajuda + + + + Press %1 to raise the volume, %2 to lower it + Prima %1 para aumentar o volume, %2 para reduzi-lo + + + + + Opening %1 + A abrir %1 + + + + Do you want to exit %1 with a download in progress? + Deseja sair %1 com uma transferência activa? + + + + If you close %1 now, this download will be cancelled. + Se fechar %1, a transferência irá ser cancelada. + + + + Close and cancel download + Fechar e cancelar a transferência + + + + Wait for download to finish + Espere que a transferência termine + + + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + + Error: %1 + Erro:%1 + + + + &Play + &Reproduzir + + + + Resume playback + Retomar a reprodução + + + + Remaining time: %1 + Tempo restante:%1 + + + + Volume at %1% + Volume a :%1% + + + + Volume is muted + O volume está silenciado + + + + Volume is unmuted + O volume não está silenciado + + + + Maximum video definition set to %1 + Definição de vídeo máxima estabelecida em %1 + + + + Your privacy is now safe + A sua privacidade está agora assegurada + + + + Downloads complete + Transferência completa + + + + MediaView + + + Most relevant + Mais relevantes + + + + Most recent + Mais recentes + + + + Most viewed + Mais vistos + + + + You can now paste the YouTube link into another application + Pode agora colar o link do Youtube noutra aplicação + + + + You can now paste the video stream URL into another application + Pode agora colar o URL da emissão de vídeo noutra aplicação + + + + The link will be valid only for a limited time. + O link será válido apenas por algum tempo. + + + + This is just the demo version of %1. + Isto é apenas uma versão de demonstração de %1. + + + + It allows you to test the application and see if it works for you. + Permite testes a aplicacção e verificar como funciona. + + + + Continue + Continuar + + + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + + Get the full version + Transfira a versão completa + + + + Downloading %1 + Transferir: %1 + + + + NetworkAccess + + + Network error: %1 + Erro de rede: %1 + + + + PrettyItemDelegate + + + %1 views + %1 visualizações + + + + %1 of %2 (%3) — %4 + %1 de %2 (%3) — %4 + + + + Preparing + A preparar + + + + Failed + Falhou + + + + Completed + Completo + + + + Stopped + Parado + + + + Stop downloading + Parar a transferência + + + + Show in %1 + Mostrar em %1 + + + + Open parent folder + Abrir pasta anterior + + + + Restart downloading + Recomeçar a transferência + + + + SearchLineEdit + + + Search + Pesquisar + + + + SearchView + + + Welcome to <a href='%1'>%2</a>, + Bem-vindo ao <a href='%1'>%2</a> + + + + Get the full version + Obter a versão completa + + + + Enter + "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" + Digite + + + + a keyword + uma palavra-chave + + + + a channel + um canal + + + + to start watching videos. + para começar a assistir vídeos. + + + + Watch + Assistir + + + + Recent keywords + Pesquisas recentes + + + + Recent channels + Canais recentes + + + + Make yourself comfortable + Acomode-se confortavelmente + + + + Video + + + Cannot get video stream for %1 + Não é possível obter o video stream para %1 + + + + Network error: %1 for %2 + Erro de rede: %1 para %2 + + + \ No newline at end of file diff -Nru minitube-1.5/locale/ro_RO.ts minitube-1.6/locale/ro_RO.ts --- minitube-1.5/locale/ro_RO.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/ro_RO.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Există viaţă dincolo de browser! - - - - Version %1 - Versiunea %1 - - - - %1 is Free Software but its development takes precious time. - %1 este un program gratuit, dar dezvoltarea acestuia necesită timp preţios. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - Vă rugăm să <a href='%1'>donaţi</a> pentru a ajuta la continuarea dezvoltării %2. - - - - Report bugs and send in your ideas to %1 - Raportează erori şi trimite ideile tale la %1 - - - - Icon designed by %1. - Iconul a fost conceput de %1. - - - - Compact mode contributed by %1. - Modul compact a fost dezvoltat de %1. - - - - HTTP proxy support contributed by %1. - Suportul pentru proxy-uri HTTP a fost dezvoltat de %1. - - - - Translated by %1 - Tradus de %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - Oferit sub <a href='%1'>Licenţa Publică Generală GNU</a> - - - - &Close - În&chide - - - - About - Despre - - - - What you always wanted to know about %1 and never dared to ask - Tot ce ai vrut să ştii despre %1 dar n-ai vrut să îndrăzneşti a întreba - - - - ClearButton - - - Clear - Şterge - - - - DownloadItem - - - bytes - - - - - KB - - - - - MB - - - - - bytes/sec - - - - - KB/sec - - - - - MB/sec - - - - - seconds - - - - - minutes - - - - - %4 %5 remaining - - - - - DownloadManager - - - This is just the demo version of %1. - - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - - - - - Continue - - - - - Get the full version - - - - - %n Download(s) - - - - - DownloadSettings - - - Change location... - - - - - Choose the download location - - - - - Download location changed. - - - - - Current downloads will still go in the previous location. - - - - - Downloading to: %1 - - - - - DownloadView - - - - Downloads - - - - - GlobalShortcuts - - - Play - - - - - Pause - - - - - Play/Pause - - - - - Stop - - - - - Stop playing after current track - - - - - Next track - - - - - Previous track - - - - - Increase volume - - - - - Decrease volume - - - - - Mute - - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - Căutare... - - - - Show %1 More - Afişează încă %1 - - - - No videos - Nu sunt videoclipuri - - - - No more videos - Nu mai sunt videoclipuri - - - - LoadingWidget - - - Error - Eroare - - - - MainWindow - - - &Stop - &Stop - - - - Stop playback and go back to the search view - Opreşte redarea şi întoarce-te la căsuţa de căutare - - - - S&kip - O&mite - - - - Skip to the next video - Treci la videoclipul următor - - - - - &Pause - &Pauză - - - - - Pause playback - Pune redarea pe pauză - - - - - &Full Screen - Ec&ran complet - - - - Go full screen - Schimbă modul de vizualizare pe tot ecranul - - - - &Compact mode - Mod &compact - - - - Hide the playlist and the toolbar - Ascunde lista de redare şi bara de unelte - - - - Open the &YouTube page - Deschide pagina &YouTube - - - - Go to the YouTube video page and pause playback - Deschide pagina de pe YouTube si pune pauză - - - - Copy the YouTube &link - Copiază &link-ul de YouTube - - - - Copy the current video YouTube link to the clipboard - Copiază link-ul videoclipului curent în clipboard - - - - Copy the video stream &URL - Copiază adresa streamul&ui - - - - Copy the current video stream URL to the clipboard - Copiază adresa stream-ului în clipboard - - - - &Remove - Ş&terge - - - - Remove the selected videos from the playlist - Şterge clipul selectat din lista de redare - - - - Move &Up - Mută în &sus - - - - Move up the selected videos in the playlist - Mută în sus videoclipul selectat - - - - Move &Down - Mută în &jos - - - - Move down the selected videos in the playlist - Mută în jos videoclipul selectat - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - Curăţă istoricul de căutări. Această acţiune nu poate fi anulată. - - - - &Quit - &Ieşire - - - - Ctrl+Q - Ctrl+Q - - - - Bye - La revedere - - - - &Website - Site &Web - - - - %1 on the Web - %1 pe Web - - - - Make a &donation - &Donează - - - - Please support the continued development of %1 - Te rog să susţii dezvoltarea aplicaţiei %1 - - - - &About - &Despre - - - - Info about %1 - Informaţii despre %1 - - - - Search - Căutare - - - - Mute volume - Oprire sunet - - - - Ctrl+M - Ctrl+M - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - &Aplicaţie - - - - &Playlist - &Listă de redare - - - - &Video - &Video - - - - &Help - &Ajutor - - - - Press %1 to raise the volume, %2 to lower it - Apasă pe %1 pentru a da volumul mai tare sau pe %2 pentru a-l da mai încet - - - - - Opening %1 - Deschidere %1 - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - Eroare fatală : %1 - - - - Error: %1 - Eroare: %1 - - - - &Play - &Redare - - - - Resume playback - Rezumă redarea videoclipului - - - - Exit &Full Screen - Părăseşte modul "Ec&ran complet" - - - - Remaining time: %1 - Timp rămas : %1 - - - - Volume at %1% - Volum %1 - - - - Volume is muted - Sunetul este oprit - - - - Volume is unmuted - Sunetul este pornit - - - - Maximum video definition set to %1 - Rezoluţia maxima a videoclipului este setată la %1 - - - - Your privacy is now safe - Intimitatea dumneavoastră este acum în siguranţă - - - - Downloads complete - - - - - MediaView - - - Most relevant - Cele mai relevante - - - - Most recent - Cele mai recente - - - - Most viewed - Cele mai vizualizate - - - - You can now paste the YouTube link into another application - Acum poţi lipi link-ul într-o altă aplicaţie - - - - You can now paste the video stream URL into another application - Acum poţi lipi link-ul stream-ului într-o altă aplicaţie - - - - The link will be valid only for a limited time. - Link-ul va fi valid doar pentru o perioadă limitată de timp. - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - Eroare de reţea : %1 - - - - PrettyItemDelegate - - - %1 views - %1 vizualizări - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - - - - - Stop downloading - - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - Căutare - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - Bine aţi venit la <a href='%1'>%2</a>, - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - Urmăreşte - - - - Recent keywords - Căutări recente - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Este disponibilă o nouă versiune a %1. Te rog <a href='%2'>să actualizezi</a> aplicaţia la versiunea %3 - - - - Make yourself comfortable - Faceţi-vă confortabil - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - Eroare reţea: %1 pentru %2 - - - \ No newline at end of file diff -Nru minitube-1.5/locale/ro.ts minitube-1.6/locale/ro.ts --- minitube-1.5/locale/ro.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/ro.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Există viaţă dincolo de browser! - + Version %1 Versiunea %1 - + %1 is Free Software but its development takes precious time. %1 este un program gratuit, dar dezvoltarea acestuia necesită timp preţios. - + Please <a href='%1'>donate</a> to support the continued development of %2. Vă rugăm să <a href='%1'>donaţi</a> pentru a ajuta la continuarea dezvoltării %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Raportează erori şi trimite ideile tale la %1 - + Icon designed by %1. Iconul a fost conceput de %1. - + Compact mode contributed by %1. Modul compact a fost dezvoltat de %1. - + HTTP proxy support contributed by %1. Suportul pentru proxy-uri HTTP a fost dezvoltat de %1. - - Translated by %1 - Tradus de %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Oferit sub <a href='%1'>Licenţa Publică Generală GNU</a> - + &Close În&chide - + About Despre - + What you always wanted to know about %1 and never dared to ask Tot ce ai vrut să ştii despre %1 dar n-ai vrut să îndrăzneşti a întreba @@ -71,55 +86,93 @@ ClearButton - + Clear Şterge + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes octeţi - + KB kiloocteţi - + MB megaocteţi - + bytes/sec octeţi/secundă - + KB/sec kiloocteţi/secundă - + MB/sec megaocteţi/secundă - + seconds secunde - + minutes minute - + %4 %5 remaining %4 %5 rămase @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Acesta este doar o versiune demo a %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Poate doar să descarce clipuri mai mici de %1 minute în aşa fel încât să puteţi testa funcţionalitatea de descărcare. - + Continue Continuă - + Get the full version Ia versiunea completă - + %n Download(s) %n Descărcare (descărcări)%n Descărcare (descărcări)%n Descărcare (descărcări) @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Schimbare locaţie... - + Choose the download location Alege locaţia de descărcare - + Download location changed. Locaţia de descărcare a fost schimbată. - + Current downloads will still go in the previous location. Fişierele în curs de descărcare vor fi salvate în locaţia anterioară. - + Downloading to: %1 Descărcare în: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Descărcări @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Redare - + Pause Pauză - + Play/Pause Redare/Pauză - + Stop Stop - + Stop playing after current track Opreşte redarea după piesa curentă - + Next track Piesa următoare - + Previous track Piesa anterioară - + Increase volume Creştere volum - + Decrease volume Descreştere volum - + Mute Mut - + Seek forward Căutare înainte - + Seek backward Căutare înapoi @@ -255,22 +308,22 @@ ListModel - + Searching... Căutare... - + Show %1 More Afişează încă %1 - + No videos Nu sunt videoclipuri - + No more videos Nu mai sunt videoclipuri @@ -278,7 +331,7 @@ LoadingWidget - + Error Eroare @@ -286,317 +339,372 @@ MainWindow - + &Stop &Stop - + Stop playback and go back to the search view Opreşte redarea şi întoarce-te la căsuţa de căutare - + S&kip O&mite - + Skip to the next video Treci la videoclipul următor - - + + &Pause &Pauză - - + + Pause playback Pune redarea pe pauză - - + &Full Screen Ec&ran complet - + Go full screen Schimbă modul de vizualizare pe tot ecranul - + &Compact mode Mod &compact - + Hide the playlist and the toolbar Ascunde lista de redare şi bara de unelte - + Open the &YouTube page Deschide pagina &YouTube - + Go to the YouTube video page and pause playback Deschide pagina de pe YouTube si pune pauză - + Copy the YouTube &link Copiază &link-ul de YouTube - + Copy the current video YouTube link to the clipboard Copiază link-ul videoclipului curent în clipboard - + Copy the video stream &URL Copiază adresa streamul&ui - + Copy the current video stream URL to the clipboard Copiază adresa stream-ului în clipboard - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove Ş&terge - + Remove the selected videos from the playlist Şterge clipul selectat din lista de redare - + Move &Up Mută în &sus - + Move up the selected videos in the playlist Mută în sus videoclipul selectat - + Move &Down Mută în &jos - + Move down the selected videos in the playlist Mută în jos videoclipul selectat - + &Clear recent searches Ş&terge căutările recente - + Clear the search history. Cannot be undone. Curăţă istoricul de căutări. Această acţiune nu poate fi anulată. - + &Quit &Ieşire - + Ctrl+Q Ctrl+Q - + Bye La revedere - + &Website Site &Web - + %1 on the Web %1 pe Web - + Make a &donation &Donează - + Please support the continued development of %1 Te rog să susţii dezvoltarea aplicaţiei %1 - + &About &Despre - + Info about %1 Informaţii despre %1 - + Search Căutare - + Mute volume Oprire sunet - + Ctrl+M Ctrl+M - - + + &Downloads &Descărcări - + Show details about video downloads Arată detalii despre descărcările video - + &Download &Descărcare - + Download the current video Descarcă clipul curent - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Aplicaţie - + + &Playback + + + + &Playlist &Listă de redare - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Ajutor - + Press %1 to raise the volume, %2 to lower it Apasă pe %1 pentru a da volumul mai tare sau pe %2 pentru a-l da mai încet - - + + Opening %1 Deschidere %1 - + Do you want to exit %1 with a download in progress? Doriţi să ieşiţi din %1 cu o descărcare în progres? - + If you close %1 now, this download will be cancelled. Dacă ieşiţi acum din %1, procesul de descărcare va fi anulat. - + Close and cancel download Închide şi anulează descărcarea - + Wait for download to finish Aşteaptă ca descărcarea să se încheie - - Fatal error: %1 - Eroare fatală : %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Eroare: %1 - + &Play &Redare - + Resume playback Rezumă redarea videoclipului - - Exit &Full Screen - Părăseşte modul "Ec&ran complet" - - - + Remaining time: %1 Timp rămas : %1 - + Volume at %1% Volum %1 - + Volume is muted Sunetul este oprit - + Volume is unmuted Sunetul este pornit - + Maximum video definition set to %1 Rezoluţia maxima a videoclipului este setată la %1 - + Your privacy is now safe Intimitatea dumneavoastră este acum în siguranţă - + Downloads complete Descărcări complete @@ -604,57 +712,80 @@ MediaView - + Most relevant Cele mai relevante - + Most recent Cele mai recente - + Most viewed Cele mai vizualizate - + You can now paste the YouTube link into another application Acum poţi lipi link-ul într-o altă aplicaţie - + You can now paste the video stream URL into another application Acum poţi lipi link-ul stream-ului într-o altă aplicaţie - + The link will be valid only for a limited time. Link-ul va fi valid doar pentru o perioadă limitată de timp. - + This is just the demo version of %1. Aceasta este doar o versiune demonstrativă a %1. - + It allows you to test the application and see if it works for you. Vă permite să testaţi aplicaţia şi să vedeţi dacă funcţionează. - + Continue Continuă - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Ia versiunea completă - + Downloading %1 Descărcare %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Eroare de reţea : %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 vizualizări - + %1 of %2 (%3) — %4 %1 din %2 (%3) — %4 - + Preparing Pregătire - + Failed Eşuat - + Completed Terminat - + Stopped Oprit - + Stop downloading Opreşte descărcarea - + Show in %1 Arată în %1 - + Open parent folder Deschide folder-ul părinte - + Restart downloading Repornire descărcare @@ -723,7 +854,7 @@ SearchLineEdit - + Search Căutare @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Bine aţi venit la <a href='%1'>%2</a>, - + Get the full version Ia versiunea completă - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Introduceţi - + a keyword un cuvânt cheie - + a channel un canal - + to start watching videos. pentru a începe să vizionaţi videoclipuri. - + Watch Urmăreşte - + Recent keywords Căutări recente - + Recent channels Canale recente - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Este disponibilă o nouă versiune a %1. Te rog <a href='%2'>să actualizezi</a> aplicaţia la versiunea %3 - - - + Make yourself comfortable Faceţi-vă confortabil @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Nu pot prelua streamul video pentru %1 - + Network error: %1 for %2 Eroare reţea: %1 pentru %2 diff -Nru minitube-1.5/locale/ru_RU.ts minitube-1.6/locale/ru_RU.ts --- minitube-1.5/locale/ru_RU.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/ru_RU.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Жизнь вне браузера! - - - - Version %1 - Версия %1 - - - - %1 is Free Software but its development takes precious time. - %1 - свободное ПО, но его разработка отнимает драгоценное время. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - Пожалуйста, <a href='%1'>поддержите</a> дальнейшую разработку %2. - - - - Report bugs and send in your ideas to %1 - Отзывы и сообщения об ошибках следует отправлять на %1 - - - - Icon designed by %1. - Автор значка %1. - - - - Compact mode contributed by %1. - Облегчённый режим предоставлен %1. - - - - HTTP proxy support contributed by %1. - Поддержка HTTP-прокси предоставлена %1. - - - - Translated by %1 - Перевод выполнили: %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - Выпущено на условиях <a href='%1'>GNU General Public License</a> - - - - &Close - &Закрыть - - - - About - О программе - - - - What you always wanted to know about %1 and never dared to ask - Все что Вы всегда хотели узнать о %1 и никогда бы не спросили - - - - ClearButton - - - Clear - Очистить - - - - DownloadItem - - - bytes - байт - - - - KB - Кбайт - - - - MB - Мбайт - - - - bytes/sec - байт/сек - - - - KB/sec - Кбайт/сек - - - - MB/sec - Мбайт/сек - - - - seconds - секунд - - - - minutes - минут - - - - %4 %5 remaining - осталось %4 %5 - - - - DownloadManager - - - This is just the demo version of %1. - Это всего лишь демо-версия %1. - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - Можно загружать только видео не длиннее %1 минут, для проверки функциональности загрузчика. - - - - Continue - Продолжить - - - - Get the full version - Получить полную версию - - - - %n Download(s) - Загружается %n файлЗагружаются %n файлаЗагружаются %n файлов - - - - DownloadSettings - - - Change location... - Изменить путь... - - - - Choose the download location - Выбрать путь загрузки - - - - Download location changed. - Путь для загружаемых файлов изменён. - - - - Current downloads will still go in the previous location. - Файлы, загружаемые в данный момент будут сохранены по прежнему адресу. - - - - Downloading to: %1 - Файлы загружаются в %1 - - - - DownloadView - - - - Downloads - Загрузки - - - - GlobalShortcuts - - - Play - Воспроизведение - - - - Pause - Пауза - - - - Play/Pause - Воспр./Пауза - - - - Stop - Стоп - - - - Stop playing after current track - Стоп после этого клипа - - - - Next track - След. клип - - - - Previous track - Пред. клип - - - - Increase volume - Громче - - - - Decrease volume - Тише - - - - Mute - Заглушить - - - - Seek forward - Перемотать вперед - - - - Seek backward - Перемотать назад - - - - ListModel - - - Searching... - Поиск... - - - - Show %1 More - Показать ещё %1 - - - - No videos - Клипы не найдены - - - - No more videos - Больше нет клипов - - - - LoadingWidget - - - Error - Ошибка - - - - MainWindow - - - &Stop - &Остановить - - - - Stop playback and go back to the search view - Остановить воспроизведение и вернуться к поиску - - - - S&kip - П&ропустить - - - - Skip to the next video - Перейти к следующему клипу - - - - - &Pause - &Пауза - - - - - Pause playback - Приостановить воспроизведение - - - - - &Full Screen - &На весь экран - - - - Go full screen - Полноэкранное воспроизведение - - - - &Compact mode - &Компактный режим - - - - Hide the playlist and the toolbar - Скрыть список воспроизведения и панель инструментов - - - - Open the &YouTube page - Открыть страницу &YouTube - - - - Go to the YouTube video page and pause playback - Приостановить воспроизведение и перейти на страницу видео в YouTube - - - - Copy the YouTube &link - Копировать &ссылку YouTube - - - - Copy the current video YouTube link to the clipboard - Скопировать ссылку текущего клипа YouTube в буфер обмена - - - - Copy the video stream &URL - Копировать &адрес видео потока - - - - Copy the current video stream URL to the clipboard - Скопировать адрес текущего видео потока в буфер обмена - - - - &Remove - &Удалить - - - - Remove the selected videos from the playlist - Удалить выбранные клипы из списка воспроизведения - - - - Move &Up - В&верх - - - - Move up the selected videos in the playlist - Переместить выбранные видеоклипы вверх в списке воспроизведения - - - - Move &Down - В&низ - - - - Move down the selected videos in the playlist - Переместить выбранные видеоклипы вниз в списке воспроизведения - - - - &Clear recent searches - Очистить список последних запросов - - - - Clear the search history. Cannot be undone. - Очистить историю запросов. Изменения необратимы. - - - - &Quit - &Выход - - - - Ctrl+Q - Ctrl+Q - - - - Bye - Пока - - - - &Website - &Домашняя страница - - - - %1 on the Web - %1 в интернете - - - - Make a &donation - Сделать &пожертвование - - - - Please support the continued development of %1 - Поддержите дальнейшую разработку %1 - - - - &About - &О программе - - - - Info about %1 - Сведения о %1 - - - - Search - Поиск - - - - Mute volume - Выключить звук - - - - Ctrl+M - Ctrl+M - - - - - &Downloads - Загрузки - - - - Show details about video downloads - Показать подробности о загрузках видео - - - - &Download - Загрузить - - - - Download the current video - Загрузить проигрываемый файл - - - - &Application - Пр&иложение - - - - &Playlist - &Список воспроизведения - - - - &Video - &Видео - - - - &Help - Спр&авка - - - - Press %1 to raise the volume, %2 to lower it - Нажмите %1 для увеличения громкости и %2 для уменьшения - - - - - Opening %1 - Открытие %1 - - - - Do you want to exit %1 with a download in progress? - Вы действительно хотите закрыть %1 в то время, как загружаются файлы? - - - - If you close %1 now, this download will be cancelled. - Если вы закроете %1 прямо сейчас, текущие загрузки будут отменены. - - - - Close and cancel download - Выйти отменив загрузки - - - - Wait for download to finish - Подождать завершения загрузок - - - - Fatal error: %1 - Фатальная ошибка: %1 - - - - Error: %1 - Ошибка: %1 - - - - &Play - Пр&оиграть - - - - Resume playback - Продолжить воспроизведение - - - - Exit &Full Screen - В&ыйти из полноэкранного воспроизведения - - - - Remaining time: %1 - Осталось: %1 - - - - Volume at %1% - Громкость %1% - - - - Volume is muted - Звук выключен - - - - Volume is unmuted - Звук включен - - - - Maximum video definition set to %1 - Максимальное разрешение видео: %1 - - - - Your privacy is now safe - Конфиденциальность обеспечена - - - - Downloads complete - Загрузка завершена - - - - MediaView - - - Most relevant - Самые релевантные - - - - Most recent - Самые новые - - - - Most viewed - Самые популярные - - - - You can now paste the YouTube link into another application - Теперь можно вставить адрес YouTube в другое приложение - - - - You can now paste the video stream URL into another application - Теперь можно вставить адрес видео потока в другое приложение - - - - The link will be valid only for a limited time. - Адрес будет существовать ограниченное время. - - - - This is just the demo version of %1. - Данная программа является демо-версией %1. - - - - It allows you to test the application and see if it works for you. - Она позволяет вам оценить приложение. - - - - Continue - Продолжить - - - - Get the full version - Купить полную версию - - - - Downloading %1 - Загружаю %1 - - - - NetworkAccess - - - Network error: %1 - Ошибка сети: %1 - - - - PrettyItemDelegate - - - %1 views - %1 просмотров - - - - %1 of %2 (%3) — %4 - Загружено %1 из %2 (%3) — %4 - - - - Preparing - Подготовка - - - - Failed - Ошибка - - - - Completed - Завершено - - - - Stopped - Остановлено - - - - Stop downloading - Остановить загрузку - - - - Show in %1 - Показать в %1 - - - - Open parent folder - Открыть каталог - - - - Restart downloading - Продолжить загрузку - - - - SearchLineEdit - - - Search - Поиск - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - Добро пожаловать в <a href='%1'>%2</a>, - - - - Get the full version - Купить полную версию - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - Введите - - - - a keyword - запрос - - - - a channel - канал - - - - to start watching videos. - чтобы начать просмотр. - - - - Watch - Смотреть - - - - Recent keywords - Последние запросы - - - - Recent channels - Последние каналы - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Доступна новая версия %1. <a href='%2'>Обновите до %3</a> - - - - Make yourself comfortable - Чувствуйте себя как дома - - - - Video - - - Cannot get video stream for %1 - Не удалось получить видео поток для %1 - - - - Network error: %1 for %2 - Ошибка сети: %1 на %2 - - - \ No newline at end of file diff -Nru minitube-1.5/locale/ru.ts minitube-1.6/locale/ru.ts --- minitube-1.5/locale/ru.ts 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/locale/ru.ts 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,929 @@ + +UTF-8 + + AboutView + + + There's life outside the browser! + Жизнь вне браузера! + + + + Version %1 + Версия %1 + + + + %1 is Free Software but its development takes precious time. + %1 - свободное ПО, но его разработка отнимает драгоценное время. + + + + Please <a href='%1'>donate</a> to support the continued development of %2. + Пожалуйста, <a href='%1'>поддержите</a> дальнейшую разработку %2. + + + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + %1, плеер музыки c YouTube + + + + %1, a music player + %1, музыкальный плеер + + + + Translate %1 to your native language using %2 + Перевести %1 на ваш родной язык с помощью %2 + + + + Report bugs and send in your ideas to %1 + Отзывы и сообщения об ошибках следует отправлять на %1 + + + + Icon designed by %1. + Автор значка %1. + + + + Compact mode contributed by %1. + Облегчённый режим предоставлен %1. + + + + HTTP proxy support contributed by %1. + Поддержка HTTP-прокси предоставлена %1. + + + + Released under the <a href='%1'>GNU General Public License</a> + Выпущено на условиях <a href='%1'>GNU General Public License</a> + + + + &Close + &Закрыть + + + + About + О программе + + + + What you always wanted to know about %1 and never dared to ask + Все что Вы всегда хотели узнать о %1 и никогда бы не спросили + + + + ClearButton + + + Clear + Очистить + + + + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + + DownloadItem + + + bytes + байт + + + + KB + Кбайт + + + + MB + Мбайт + + + + bytes/sec + байт/сек + + + + KB/sec + Кбайт/сек + + + + MB/sec + Мбайт/сек + + + + seconds + секунд + + + + minutes + минут + + + + %4 %5 remaining + осталось %4 %5 + + + + DownloadManager + + + This is just the demo version of %1. + Это всего лишь демо-версия %1. + + + + It can only download videos shorter than %1 minutes so you can test the download functionality. + Можно загружать только видео не длиннее %1 минут, для проверки функциональности загрузчика. + + + + Continue + Продолжить + + + + Get the full version + Получить полную версию + + + + %n Download(s) + Загружается %n файлЗагружаются %n файлаЗагружаются %n файлов + + + + DownloadSettings + + + Change location... + Изменить путь... + + + + Choose the download location + Выбрать путь загрузки + + + + Download location changed. + Путь для загружаемых файлов изменён. + + + + Current downloads will still go in the previous location. + Файлы, загружаемые в данный момент будут сохранены по прежнему адресу. + + + + Downloading to: %1 + Файлы загружаются в %1 + + + + DownloadView + + + + Downloads + Загрузки + + + + GlobalShortcuts + + + Play + Воспроизведение + + + + Pause + Пауза + + + + Play/Pause + Воспр./Пауза + + + + Stop + Стоп + + + + Stop playing after current track + Стоп после этого клипа + + + + Next track + След. клип + + + + Previous track + Пред. клип + + + + Increase volume + Громче + + + + Decrease volume + Тише + + + + Mute + Заглушить + + + + Seek forward + Перемотать вперед + + + + Seek backward + Перемотать назад + + + + ListModel + + + Searching... + Поиск... + + + + Show %1 More + Показать ещё %1 + + + + No videos + Клипы не найдены + + + + No more videos + Больше нет клипов + + + + LoadingWidget + + + Error + Ошибка + + + + MainWindow + + + &Stop + &Остановить + + + + Stop playback and go back to the search view + Остановить воспроизведение и вернуться к поиску + + + + S&kip + П&ропустить + + + + Skip to the next video + Перейти к следующему клипу + + + + + &Pause + &Пауза + + + + + Pause playback + Приостановить воспроизведение + + + + &Full Screen + &На весь экран + + + + Go full screen + Полноэкранное воспроизведение + + + + &Compact mode + &Компактный режим + + + + Hide the playlist and the toolbar + Скрыть список воспроизведения и панель инструментов + + + + Open the &YouTube page + Открыть страницу &YouTube + + + + Go to the YouTube video page and pause playback + Приостановить воспроизведение и перейти на страницу видео в YouTube + + + + Copy the YouTube &link + Копировать &ссылку YouTube + + + + Copy the current video YouTube link to the clipboard + Скопировать ссылку текущего клипа YouTube в буфер обмена + + + + Copy the video stream &URL + Копировать &адрес видео потока + + + + Copy the current video stream URL to the clipboard + Скопировать адрес текущего видео потока в буфер обмена + + + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + + &Remove + &Удалить + + + + Remove the selected videos from the playlist + Удалить выбранные клипы из списка воспроизведения + + + + Move &Up + В&верх + + + + Move up the selected videos in the playlist + Переместить выбранные видеоклипы вверх в списке воспроизведения + + + + Move &Down + В&низ + + + + Move down the selected videos in the playlist + Переместить выбранные видеоклипы вниз в списке воспроизведения + + + + &Clear recent searches + Очистить список последних запросов + + + + Clear the search history. Cannot be undone. + Очистить историю запросов. Изменения необратимы. + + + + &Quit + &Выход + + + + Ctrl+Q + Ctrl+Q + + + + Bye + Пока + + + + &Website + &Домашняя страница + + + + %1 on the Web + %1 в интернете + + + + Make a &donation + Сделать &пожертвование + + + + Please support the continued development of %1 + Поддержите дальнейшую разработку %1 + + + + &About + &О программе + + + + Info about %1 + Сведения о %1 + + + + Search + Поиск + + + + Mute volume + Выключить звук + + + + Ctrl+M + Ctrl+M + + + + + &Downloads + Загрузки + + + + Show details about video downloads + Показать подробности о загрузках видео + + + + &Download + Загрузить + + + + Download the current video + Загрузить проигрываемый файл + + + + Share the current video using %1 + + + + + &Email + &Email + + + + Email + Email + + + + &Application + Пр&иложение + + + + &Playback + &Воспроизведение + + + + &Playlist + &Список воспроизведения + + + + &Video + &Видео + + + + &View + &Просмотр + + + + &Share + &Поделиться + + + + &Help + Спр&авка + + + + Press %1 to raise the volume, %2 to lower it + Нажмите %1 для увеличения громкости и %2 для уменьшения + + + + + Opening %1 + Открытие %1 + + + + Do you want to exit %1 with a download in progress? + Вы действительно хотите закрыть %1 в то время, как загружаются файлы? + + + + If you close %1 now, this download will be cancelled. + Если вы закроете %1 прямо сейчас, текущие загрузки будут отменены. + + + + Close and cancel download + Выйти отменив загрузки + + + + Wait for download to finish + Подождать завершения загрузок + + + + Leave &Full Screen + Покинуть п&олноэкранный режим + + + + %1 version %2 is now available. + + + + + Remind me later + + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + Обновление + + + + Error: %1 + Ошибка: %1 + + + + &Play + Пр&оиграть + + + + Resume playback + Продолжить воспроизведение + + + + Remaining time: %1 + Осталось: %1 + + + + Volume at %1% + Громкость %1% + + + + Volume is muted + Звук выключен + + + + Volume is unmuted + Звук включен + + + + Maximum video definition set to %1 + Максимальное разрешение видео: %1 + + + + Your privacy is now safe + Конфиденциальность обеспечена + + + + Downloads complete + Загрузка завершена + + + + MediaView + + + Most relevant + Самые релевантные + + + + Most recent + Самые новые + + + + Most viewed + Самые популярные + + + + You can now paste the YouTube link into another application + Теперь можно вставить адрес YouTube в другое приложение + + + + You can now paste the video stream URL into another application + Теперь можно вставить адрес видео потока в другое приложение + + + + The link will be valid only for a limited time. + Адрес будет существовать ограниченное время. + + + + This is just the demo version of %1. + Данная программа является демо-версией %1. + + + + It allows you to test the application and see if it works for you. + Она позволяет вам оценить приложение. + + + + Continue + Продолжить + + + + of + Used in video parts, as in '2 of 3' + из + + + + part + This is for video parts, as in 'Cool video - part 1' + часть + + + + episode + This is for video parts, as in 'Cool series - episode 1' + эпизод + + + + Sent from %1 + + + + + Get the full version + Купить полную версию + + + + Downloading %1 + Загружаю %1 + + + + NetworkAccess + + + Network error: %1 + Ошибка сети: %1 + + + + PrettyItemDelegate + + + %1 views + %1 просмотров + + + + %1 of %2 (%3) — %4 + Загружено %1 из %2 (%3) — %4 + + + + Preparing + Подготовка + + + + Failed + Ошибка + + + + Completed + Завершено + + + + Stopped + Остановлено + + + + Stop downloading + Остановить загрузку + + + + Show in %1 + Показать в %1 + + + + Open parent folder + Открыть каталог + + + + Restart downloading + Продолжить загрузку + + + + SearchLineEdit + + + Search + Поиск + + + + SearchView + + + Welcome to <a href='%1'>%2</a>, + Добро пожаловать в <a href='%1'>%2</a>, + + + + Get the full version + Купить полную версию + + + + Enter + "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" + Введите + + + + a keyword + запрос + + + + a channel + канал + + + + to start watching videos. + чтобы начать просмотр. + + + + Watch + Смотреть + + + + Recent keywords + Последние запросы + + + + Recent channels + Последние каналы + + + + Make yourself comfortable + Чувствуйте себя как дома + + + + Video + + + Cannot get video stream for %1 + Не удалось получить видео поток для %1 + + + + Network error: %1 for %2 + Ошибка сети: %1 на %2 + + + \ No newline at end of file diff -Nru minitube-1.5/locale/sl.ts minitube-1.6/locale/sl.ts --- minitube-1.5/locale/sl.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/sl.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Zunaj brskalnika je življenje! - + Version %1 Različica %1 - + %1 is Free Software but its development takes precious time. %1 je Prosta Programska Oprema, a njen razvoj zahteva dragocen čas. - + Please <a href='%1'>donate</a> to support the continued development of %2. <a href='%1'>Darujte prosim</a> za podporo stalnemu razvoju %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Javite napake in pošljite svoje ideje %1 - + Icon designed by %1. Ikone je izrisal %1. - + Compact mode contributed by %1. Strnjeni način je prispeval %1. - + HTTP proxy support contributed by %1. Podporo za posredniški strežnik HTTP je prispeval %1. - - Translated by %1 - Prevod: %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Izdano na podlagi licence <a href='%1'>GNU General Public License</a> - + &Close &Zapri - + About O programu - + What you always wanted to know about %1 and never dared to ask Kar ste vedno želeli vedeti o %1 a si niste nikoli upali vprašati @@ -71,55 +86,93 @@ ClearButton - + Clear Počisti + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes byteov - + KB KB - + MB MB - + bytes/sec byteov/sek - + KB/sec KB/sek - + MB/sec MB/sek - + seconds sekund - + minutes minut - + %4 %5 remaining %4 %5 ostaja @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. To je samo preizkusna različica programa %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Prenese lahko samo posnetke krajše od %1 minut, da lahko preverite delvanje funkcije prenosa. - + Continue Nadaljuj - + Get the full version Pridobi popolno različico - + %n Download(s) %n Prenos%n Prenosa%n Prenosi%n Prenosov @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Sprememba mesta ... - + Choose the download location Izberite mesto prenosa - + Download location changed. Spremenili ste mesto prenosa. - + Current downloads will still go in the previous location. Trenutni prenosi bodo še vedno šli v prejšnje mesto. - + Downloading to: %1 Prenos v: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Prenosi @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Predvajaj - + Pause Pavza - + Play/Pause Predvajaj/Pavza - + Stop Ustavi - + Stop playing after current track Ustavi predvajanje po trenutnem posnetku - + Next track Naslednji posnetek - + Previous track Prejšnji posnetek - + Increase volume Povečaj glasnost - + Decrease volume Zmanjšaj glasnost - + Mute Nemo - + Seek forward Išči naprej - + Seek backward Išči nazaj @@ -255,22 +308,22 @@ ListModel - + Searching... Iskanje ... - + Show %1 More Pokaži %1 več - + No videos Nobenega videa - + No more videos Nobenega videa več @@ -278,7 +331,7 @@ LoadingWidget - + Error Napaka @@ -286,317 +339,372 @@ MainWindow - + &Stop &Ustavi - + Stop playback and go back to the search view Ustavi predvajanje in se vrni v iskalni pogled - + S&kip Pres%koči - + Skip to the next video Skoči na naslednji video - - + + &Pause &Pavza - - + + Pause playback Premor v predvajanju - - + &Full Screen &Celozaslonski način - + Go full screen Gre v celozaslonski način - + &Compact mode &Strnjeni način - + Hide the playlist and the toolbar Skrije predvajalni seznam in orodno vrstico - + Open the &YouTube page Odpre stran &YouTube - + Go to the YouTube video page and pause playback Gre na stran posnetka na YouTube in ustavi predvajanje - + Copy the YouTube &link Kopiraj &povezavo YouTube - + Copy the current video YouTube link to the clipboard Kopira povezavo YouTube trenutnega posnetka v odložišče - + Copy the video stream &URL Kopiraj &URL video pretoka - + Copy the current video stream URL to the clipboard Kopira URL trenutnega video pretoka v odložišče - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove Odst&rani - + Remove the selected videos from the playlist Odstrani izbrani video iz predvajalnega seznama - + Move &Up Premakni &gor - + Move up the selected videos in the playlist Izbrani video premakne mesto više v predvajalnem seznamu - + Move &Down Premakni &dol - + Move down the selected videos in the playlist Izbrani video premakne mesto niže v predvajalnem seznamu - + &Clear recent searches I&zbriši nedavno iskanje - + Clear the search history. Cannot be undone. Izbriše zgodovino iskanje. Tega dejanja ni mogoče rayveljaviti. - + &Quit &Zapri - + Ctrl+Q Ctrl+Z - + Bye Nasvidenje - + &Website &Spletno mesto - + %1 on the Web %1 na spletu - + Make a &donation &Darujte - + Please support the continued development of %1 Podprite prosim nadaljni razvoj programa %1 - + &About &O programu - + Info about %1 Informacije o %1 - + Search Išči - + Mute volume Nemo - + Ctrl+M Ctrl+M - - + + &Downloads Pre&nosi - + Show details about video downloads Pokaže podrobnosti o prenosih posnetkov - + &Download Pre&nesi - + Download the current video Prenesi trenutni posnetek - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Aplikacija - + + &Playback + + + + &Playlist &Predvajalni seznam - + &Video &Video - + + &View + + + + + &Share + + + + &Help P&omoč - + Press %1 to raise the volume, %2 to lower it Pritisnite %1, da povišate glasnost in %2, da jo nižate - - + + Opening %1 Odpiranje %1 - + Do you want to exit %1 with a download in progress? Ali res želite zapustiti %1 medtem, ko jeaktiven prenos? - + If you close %1 now, this download will be cancelled. V primeru, da zdaj zaprete %1 bo ta prenos prekinjen. - + Close and cancel download Zapri in prekliči prenose - + Wait for download to finish Počakaj, da konča prenos. - - Fatal error: %1 - Usodna napaka: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Napaka: %1 - + &Play &Predvajaj - + Resume playback Nadaljuj s predvajanjem - - Exit &Full Screen - Izhod iz &celozaslonskega načina - - - + Remaining time: %1 Preostali čas: %1 - + Volume at %1% Glasnost %1% - + Volume is muted Glasnost je utišana - + Volume is unmuted Glasnost je povrnjena - + Maximum video definition set to %1 Najvišja ločljivost posnetkov je nastavljena na %1 - + Your privacy is now safe Vaša zasebnost je zdaj varna - + Downloads complete Prenosi so končani @@ -604,57 +712,80 @@ MediaView - + Most relevant Najbolj ustrezni - + Most recent Najbolj novi - + Most viewed Najbolj gledani - + You can now paste the YouTube link into another application Zdaj lahko prilepite povezavo na YouTube v drugo aplikacijo - + You can now paste the video stream URL into another application Zdaj lahko prilepite URL video pretoka v drugo aplikacijo - + The link will be valid only for a limited time. Povezava bo delovala le za omejen čas. - + This is just the demo version of %1. To je samo demo različica programa %1. - + It allows you to test the application and see if it works for you. Dovoli vam testiranje aplikcaije in preverjanje delovanja, - + Continue Nadaljuj - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Pridobi celotno različico - + Downloading %1 Prenašanje %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Napak omrežja: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 predvajanj - + %1 of %2 (%3) — %4 %1 od %2 (%3) — %4 - + Preparing Pripravljanje - + Failed Neuspešno - + Completed Dokončano - + Stopped Ustavljeno - + Stop downloading Ustavi prenos - + Show in %1 Pokaži v %1 - + Open parent folder Odpri nadrejeno mapo - + Restart downloading Ponovno prenesi @@ -723,7 +854,7 @@ SearchLineEdit - + Search Išči @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Pozdravljeni v <a href='%1'>%2</a>, - + Get the full version Pridobi celotno različico - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Vnesite - + a keyword ključno besedo - + a channel kanal - + to start watching videos. in začnite gledati posnetke. - + Watch Glej - + Recent keywords Nedavne ključne besede - + Recent channels Nedavni kanali - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Na razpolago je nova različica %1. Prosim <a href='%2'>posodobite na različico %3</a> - - - + Make yourself comfortable Namestite se udobno @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Za %1 ni mogoče pridobiti video pretoka - + Network error: %1 for %2 Napaka omrežja: %1 od %2 diff -Nru minitube-1.5/locale/sq.ts minitube-1.6/locale/sq.ts --- minitube-1.5/locale/sq.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/sq.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,68 +3,83 @@ AboutView - + There's life outside the browser! Ka jete edhe jashte Shfletuesit te Internetit - + Version %1 Version %1 - + %1 is Free Software but its development takes precious time. %1 Eshte Program i Lire por Programuesit te tij i merr kohe te qmueshme - + Please <a href='%1'>donate</a> to support the continued development of %2. Ju lutem <a href="%1"> dhuroni</a> qe te perkrahni vazhdimin e ndertimit te %2. - + + You may want to try my other apps as well: + Do te deshironit qe te provoni edhe programet e tjera te mia + + + + %1, a YouTube music player + %1 , Luajtes i muzikes per YouTube + + + + %1, a music player + %1 , Luajtes i muzikes + + + + Translate %1 to your native language using %2 + Perkthe %1 ne gjuhen e tuaj ame duke perdorur %2 + + + Report bugs and send in your ideas to %1 Raportoni gabimet si dhe dergoni idet e juaja per %1 - + Icon designed by %1. Dizajnimi i ikones u be nga %1 - + Compact mode contributed by %1. Per modelin kompakt kontribuan %1 - + HTTP proxy support contributed by %1. Ndihmen per HTTP autorizimin kontriboi %1 - - Translated by %1 - U perkthye nga %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Leshuar nen <a href="%1"> GNU Licanca Publike Gjenerale</a> - + &Close Afer - + About Afersisht - + What you always wanted to know about %1 and never dared to ask Qfar keni dashur gjithmon te dini per %1 por asnjeher nuk keni guzuar te pyetni @@ -72,55 +87,93 @@ ClearButton - + Clear Paster + DemoStartupView + + + Please license %1 + Ju lutem licencen %1 + + + + This demo has expired. + Versioni demostrativ ka skaduar + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + Versioni i plote ju lejon qe te shkarkoni video me te gjata se %1 minuta dhe gjithashtu te shikoni video pa pengesa. + + + + This demo will expire in %1 days. + Versioni demostrativ do te skadoj ne %1 dit. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Duke bere blerjen e versionit te plot , ju gjithashtu do te perkrahni punen per krijimin e %1. + + + + Use Demo + Perdor versionin demostrativ + + + + Get the full version + Merrni versionin e plote + + + DownloadItem - + bytes Bajts - + KB KB - + MB MB - + bytes/sec Bajts/Sekond - + KB/sec KB/Sekond - + MB/sec MB/Sekond - + seconds Sekonda - + minutes Minuta - + %4 %5 remaining %4 %5 Mbetet @@ -128,27 +181,27 @@ DownloadManager - + This is just the demo version of %1. Ky eshte vetem version per demonstrim i %1 - + It can only download videos shorter than %1 minutes so you can test the download functionality. Mund te shkarkoj vetem video me te shkurta se %1 minut ne menyr qe te testoni funksionimin e shkarkuesit. - + Continue Vazhdon - + Get the full version Merrni versionin e plote - + %n Download(s) %n Shkarkim%n Shkarkime @@ -156,27 +209,27 @@ DownloadSettings - + Change location... Ndrysho lokacionin - + Choose the download location Zghidhni lokacionin e shkarkimeve - + Download location changed. Lokacioni i shkarkimeve u ndryshua. - + Current downloads will still go in the previous location. Shkarkimet e tanishme ende do te ruhen ne lokacionin e meparshem te shkarkimeve. - + Downloading to: %1 Duke shkarkuar ne : %1 @@ -184,8 +237,8 @@ DownloadView - - + + Downloads Shkarkimet @@ -193,62 +246,62 @@ GlobalShortcuts - + Play Luaje - + Pause Pushim - + Play/Pause Luaje/Pushim - + Stop Ndaloje - + Stop playing after current track Ndaloje se luajturi pas kenges aktuale - + Next track Kenga e ardhshme - + Previous track Kenga e meparshme - + Increase volume Rrite zerin - + Decrease volume Ule zerin - + Mute Pa ze - + Seek forward Kerko perpara - + Seek backward Kerko prapa @@ -256,22 +309,22 @@ ListModel - + Searching... Duke kerkuar - + Show %1 More Shfaq %1 me shume - + No videos Nuk ka video - + No more videos Nuk ka me video @@ -279,7 +332,7 @@ LoadingWidget - + Error Gabim @@ -287,317 +340,372 @@ MainWindow - + &Stop Ndaloje - + Stop playback and go back to the search view Ndaloje rishikimin dhe kthehu prapa te pamje e kerkimit - + S&kip Kaperce - + Skip to the next video Kaperce te video e ardhshme - - + + &Pause Pushoje - - + + Pause playback Pushoje rishikimin - - + &Full Screen Ekran te plote - + Go full screen Kalo ne ekran te plot - + &Compact mode Menyre kompakte - + Hide the playlist and the toolbar Fshih listen e videove dhe shiritin e veglave - + Open the &YouTube page Hap faqen e YouTube - + Go to the YouTube video page and pause playback Kalo ne faqen e videove te YouTube dhe pushoje rishikimin - + Copy the YouTube &link Kopjoje linkun e YouTube - + Copy the current video YouTube link to the clipboard Kopjoje linkun e videos se tanishme ne tabelen e ngjitjes - + Copy the video stream &URL Kopjoje URL e rrjedhes se videos - + Copy the current video stream URL to the clipboard Kopjoje URL e rrjedhes se videos aktuale ne tabelen e ngjitjes - + + Find video &parts + Gjeni video % pjes + + + + Find other video parts hopefully in the right order + Gjeni pjes te tjera te videove ne rednin e duhur + + + &Remove Largo - + Remove the selected videos from the playlist Largoje videon e zgjedhur nga lista e luajtjes - + Move &Up Leviz lart - + Move up the selected videos in the playlist Levize lart videon e zgjedhur ne listen e luajtjes - + Move &Down Leviz posht - + Move down the selected videos in the playlist Levize posht videon e zghedhur ne listen e luajtjes - + &Clear recent searches Pastro kerkimet e tanishme - + Clear the search history. Cannot be undone. Pastro historin e kerkimeve . Nuk mund te zhbehet - + &Quit Lëre - + Ctrl+Q Ctrl=+Q - + Bye Mireupafshim - + &Website Adrese interneti - + %1 on the Web %1 ne Web - + Make a &donation Beni nje kontribut - + Please support the continued development of %1 Ju lutem perkrahni vazhdimin e ndertimit te %1 - + &About Rreth - + Info about %1 Informata rreth %1 - + Search Kerkim - + Mute volume Hesht zerin - + Ctrl+M Ctrl+M - - + + &Downloads Shkarkimet - + Show details about video downloads Trego detajet rreth videove te shkarkuara - + &Download Shkarko - + Download the current video Shkarko videon e tanishme - + + Share the current video using %1 + Shperndaj videon aktuale duke perdorur %1 + + + + &Email + % Email + + + + Email + Email + + + &Application Aplikacion - + + &Playback + &Ridegjim + + + &Playlist Lista e luajtjes - + &Video Video - + + &View + &Shiko + + + + &Share + &Shperndaje + + + &Help Ndihma - + Press %1 to raise the volume, %2 to lower it Shtyp %1 qe te rrisni zerin , shtyp %2 qe ta ulni zerin - - + + Opening %1 Duke hapur %1 - + Do you want to exit %1 with a download in progress? Deshironi te dilni %1 me nje shkarkim ne prapavij? - + If you close %1 now, this download will be cancelled. Nese e mbyllni %1 tani , ky shkarkim do te nderpritet. - + Close and cancel download Mbyll dhe ndalo shkarkimin - + Wait for download to finish Prisni per shkarkimin qe te mbaroj - - Fatal error: %1 - Gabim fatal:%1 + + Leave &Full Screen + Largohu & Ekran te plote + + + + %1 version %2 is now available. + %1 versioni %2 eshte i gatshem + + + + Remind me later + Me rikujto me von - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + Per te marr version e arrnuar , shkarko %1 prap nga linku te cilin e keni marr permes email dhe instalone prap + + + + Update + Arrnim + + + Error: %1 Gabim:%1 - + &Play Luaj - + Resume playback Rinis rishikimin - - Exit &Full Screen - Dil nga ekrani i plote - - - + Remaining time: %1 Koha e mbetur:%1 - + Volume at %1% Zeri ne %1% - + Volume is muted Zeri eshte heshtur - + Volume is unmuted Zeri eshte leshuar - + Maximum video definition set to %1 Maksimumi i definicionit te videos eshte vendosur ne %1 - + Your privacy is now safe Privatsia juaj tani eshte e sigurt - + Downloads complete Shkarkimet jan kompletuar @@ -605,57 +713,80 @@ MediaView - + Most relevant Me i pershtatshem - + Most recent Me i fresket - + Most viewed Me e shikuara - + You can now paste the YouTube link into another application Tani ju mund te ngjitni YouTube linqe ne nje tjeter program - + You can now paste the video stream URL into another application Tani ju mund te ngjitni rrdhjedhen e YouTube URL ne nje tjeter program - + The link will be valid only for a limited time. Linku do te jet i vlefshem per nje kohe te kufizuar - + This is just the demo version of %1. Ky eshte version vetem per demonstrim i %1. - + It allows you to test the application and see if it works for you. Ju lejon qe te provoni programin dhe te shifni se a funksionon per ju . - + Continue Vazhdim - + + of + Used in video parts, as in '2 of 3' + I + + + + part + This is for video parts, as in 'Cool video - part 1' + Pjas + + + + episode + This is for video parts, as in 'Cool series - episode 1' + Episode + + + + Sent from %1 + Derguar nga %1 + + + Get the full version Merrni versionin e plote - + Downloading %1 Duke shkarkuar %1 @@ -663,7 +794,7 @@ NetworkAccess - + Network error: %1 Gabim ne rrjet:%1 @@ -671,52 +802,52 @@ PrettyItemDelegate - + %1 views %1 Shikime - + %1 of %2 (%3) — %4 %1 i %2(%3)-%4 - + Preparing Duke e pergaditur - + Failed Ka deshtuar - + Completed Ka perfunduar - + Stopped Ka ndaluar - + Stop downloading Ndalo shkarkimin - + Show in %1 Trego ne %1 - + Open parent folder Hap dosjen kryesor - + Restart downloading Rifilloni shkarkimin @@ -724,7 +855,7 @@ SearchLineEdit - + Search Kerkim @@ -732,58 +863,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Mire se erdhet ne <h href="%1">%2</a>, - + Get the full version Merrni versionin e plote - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Hyr - + a keyword Nje fjal kyqe - + a channel Nje kanal - + to start watching videos. Per te filluar shikimin e videove. - + Watch Shiko - + Recent keywords Fjalit kyqe te fundit - + Recent channels Kanali i fundit - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Nje version i ri eshte %1 i gatshem. Ju lutem<a href+"%2"> perditesoni tek versioni i ri%3</a> - - - + Make yourself comfortable Relaksohuni @@ -791,12 +917,12 @@ Video - + Cannot get video stream for %1 Nuk mund te merr rrjedhen e videos per %1 - + Network error: %1 for %2 Gabim rrjeti:%1 per %2 diff -Nru minitube-1.5/locale/sr.ts minitube-1.6/locale/sr.ts --- minitube-1.5/locale/sr.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/sr.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Може и без веб прегледача! - + Version %1 Верзија %1 - + %1 is Free Software but its development takes precious time. %1 је слободан софтвер, али његов развој одузма драгоцено време. - + Please <a href='%1'>donate</a> to support the continued development of %2. Молимо да <a href='%1'>донацијама</a> подржите развој програма %2. - + + You may want to try my other apps as well: + Можда би сте желели да пробате и моје друге програме: + + + + %1, a YouTube music player + %1, музички плејер за Јутјуб + + + + %1, a music player + %1, музички плејер + + + + Translate %1 to your native language using %2 + Преведите %1 на ваш матерњи језик помоћу %2 + + + Report bugs and send in your ideas to %1 Пријавите грешке и пошаљите ваше идеје на %1 - + Icon designed by %1. Иконицу дизајниро %1. - + Compact mode contributed by %1. Компактни режим допринео %1. - + HTTP proxy support contributed by %1. Подршку за ХТТП прокси допринео %1. - - Translated by %1 - Превoдиоци %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Под <a href='%1'>Гнуовом Општом Јавном Лиценцом - + &Close &Затвори - + About О програму - + What you always wanted to know about %1 and never dared to ask Све што сте одувек желели да знате о програму %1 али се нисте усудили а питате @@ -71,55 +86,93 @@ ClearButton - + Clear Очисти + DemoStartupView + + + Please license %1 + Молимо да купите %1 + + + + This demo has expired. + Показна верзија је истекла. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + Пуна верзија вам омогућава да преузмете записе дуже од %1 минута и гледате видео без прекида. + + + + This demo will expire in %1 days. + Верзија ће истећи за %1 дана. + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + Куповином пуне верзије ћете уједно и подржати мој рад на програму %1. + + + + Use Demo + Користи показну верзију + + + + Get the full version + Набави пуну верзију + + + DownloadItem - + bytes бајтова - + KB KB - + MB MB - + bytes/sec b/s - + KB/sec KB/s - + MB/sec MB/s - + seconds секунди - + minutes минута - + %4 %5 remaining %4 %5 преостаје @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Ово је тек демо верзија %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Може преузети само снимке краће од %1 минута тако да можете испробати употребљивост преузимања. - + Continue Настави - + Get the full version Преузмите пуну верзију - + %n Download(s) %n прузимање%n прузимања%n прузимања @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Промените локацију... - + Choose the download location Изаберите локацију преузимања - + Download location changed. Локација преузимања је промењена. - + Current downloads will still go in the previous location. Тренутна преузимања ће се наставити са претходне локације. - + Downloading to: %1 Преузимам у: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Преузимања @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Пусти - + Pause Паузирај - + Play/Pause Пусти или паузирај - + Stop Заустави - + Stop playing after current track Заустави пуштање након тренутне стазе - + Next track Следећа стаза - + Previous track Претходна стаза - + Increase volume Појачај - + Decrease volume Утишај - + Mute Искључи тон - + Seek forward Премотај унапред - + Seek backward Премотај уназад @@ -255,22 +308,22 @@ ListModel - + Searching... Тражим... - + Show %1 More Прикажи још %1 - + No videos Нема снимака - + No more videos Нема других снимака @@ -278,7 +331,7 @@ LoadingWidget - + Error Грешка @@ -286,317 +339,372 @@ MainWindow - + &Stop &Заустави - + Stop playback and go back to the search view Зауставља пуштање и враћа се на приказ претраге - + S&kip Прес&кочи - + Skip to the next video Пушта следећи снимак - - + + &Pause &Паузирај - - + + Pause playback Паузира пуштање - - + &Full Screen &Целоекрански приказ - + Go full screen Прелази у целоекрански приказ - + &Compact mode &Компактан режим - + Hide the playlist and the toolbar Скрива плејлисту и траке алатки - + Open the &YouTube page Отвори страницу на &Јутјубу - + Go to the YouTube video page and pause playback Паузира пуштање и одлази на страницу на Јутјубу - + Copy the YouTube &link Копирај ве&зу са Јутјуба - + Copy the current video YouTube link to the clipboard Копира Јутјуб везу тренутног видеау у клипборд - + Copy the video stream &URL Копирај &УРЛ видео тока - + Copy the current video stream URL to the clipboard Копирај УРЛ тренутног видео тока у клипборд - + + Find video &parts + Нађи делове &видеа + + + + Find other video parts hopefully in the right order + Нађи остале делове видеа, можда и у исправном редоследу + + + &Remove &Уклони - + Remove the selected videos from the playlist Уклања изабране снимке из плејлисте - + Move &Up Помери на&више - + Move up the selected videos in the playlist Помера изабране снимке навише у плејлисти - + Move &Down Помери на&ниже - + Move down the selected videos in the playlist Помера изабаране снимке наниже у плејлити - + &Clear recent searches &Уклони недавне претраге - + Clear the search history. Cannot be undone. Уклања историјат претраге. Не може се опозвати. - + &Quit &Напусти - + Ctrl+Q Ctrl+Q - + Bye Ћао - + &Website &Веб сајт - + %1 on the Web %1 на вебу - + Make a &donation Дајте &донацију - + Please support the continued development of %1 Молимо да подржите даљи развој програма %1 - + &About &О програму - + Info about %1 Подаци о програму %1 - + Search Претрага - + Mute volume Искључи тон - + Ctrl+M Ctrl + M - - + + &Downloads &Преузимања - + Show details about video downloads Приказује детаље о преузетим видео снимцима - + &Download &Преузми - + Download the current video Преузима тренутни видео - + + Share the current video using %1 + Дели тренутни видео путем %1 + + + + &Email + &Е-пошта + + + + Email + Е-пошта + + + &Application &Програм - + + &Playback + &Пуштање + + + &Playlist &Плејлиста - + &Video &Видео - + + &View + &Приказ + + + + &Share + &Дељење + + + &Help &Помоћ - + Press %1 to raise the volume, %2 to lower it Притисните %1 да би појачали, односно %2 да би утишали тон - - + + Opening %1 Отварам %1 - + Do you want to exit %1 with a download in progress? Желите ли а напустите %1 током активног преузимања? - + If you close %1 now, this download will be cancelled. Уколико затворите %1 сада ово преузимање ћњ бити отказано. - + Close and cancel download Затвори и откажи преузимање - + Wait for download to finish Сачекајте да се преузимање заврши - - Fatal error: %1 - Фтална грешка: %1 + + Leave &Full Screen + Напусти &цео екран + + + + %1 version %2 is now available. + Доступан је %1 верзије %2. + + + + Remind me later + Подести ме касније - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + Да би ажирирали верзију преузмите %1 поново путем везе коју сте добили е.поштом и поново га инсталирајте. + + + + Update + Ажурирај + + + Error: %1 Грешка:%1 - + &Play &Пусти - + Resume playback Настави пуштање - - Exit &Full Screen - Напусти &целоекрански режим - - - + Remaining time: %1 Преостало време: %1 - + Volume at %1% Јачина тона %1% - + Volume is muted Тон је искључен - + Volume is unmuted Тон је поново укључен - + Maximum video definition set to %1 Максимална дефиниција видеа је постављена на %1 - + Your privacy is now safe Ваша приватност је сада осигурана - + Downloads complete Преузимања су завршена @@ -604,57 +712,80 @@ MediaView - + Most relevant Најрелевантнији - + Most recent Најновији - + Most viewed Најгледанији - + You can now paste the YouTube link into another application Сад можете налепити везу са Јутјуба у други програм - + You can now paste the video stream URL into another application Сад можете УРЛ видео тока налепити у други програм - + The link will be valid only for a limited time. Веза је исправна само одређено време. - + This is just the demo version of %1. Ово је тек демо верзија %1. - + It allows you to test the application and see if it works for you. Омогућава вам да испробате програм и увидите да ли вам одговара. - + Continue Настави - + + of + Used in video parts, as in '2 of 3' + од + + + + part + This is for video parts, as in 'Cool video - part 1' + део + + + + episode + This is for video parts, as in 'Cool series - episode 1' + епизода + + + + Sent from %1 + Послато са %1 + + + Get the full version Преузмите пуну верзију - + Downloading %1 преузимам %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Мрежна грешка: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 прегледа - + %1 of %2 (%3) — %4 %1 од %2 (%3) — %4 - + Preparing Припремам - + Failed Неуспех - + Completed Завршено - + Stopped Заустављено - + Stop downloading Заустави преузимање - + Show in %1 Прикажи у %1 - + Open parent folder Отвори родитељску фасциклу - + Restart downloading Поново покрени преузимање @@ -723,7 +854,7 @@ SearchLineEdit - + Search Претрага @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Добродошли у <a href='%1'>%2</a>, - + Get the full version Преузмите пуну верзију - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" унесите - + a keyword кључну реч - + a channel канал - + to start watching videos. да би започели преглед видео снимака. - + Watch Гледај - + Recent keywords Недавни кључне речи - + Recent channels Недавни канали - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Доступна је новија верзија програма %1. <a href='%2'>Надоградите на верзију %3</a> - - - + Make yourself comfortable Раскомотите се @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 не могу да добавим видео ток за %1 - + Network error: %1 for %2 Мрежна грешка: %1 за %2 diff -Nru minitube-1.5/locale/sv_SE.ts minitube-1.6/locale/sv_SE.ts --- minitube-1.5/locale/sv_SE.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/sv_SE.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! Det finns ett liv utanför webläsaren! - + Version %1 Version %1 - + %1 is Free Software but its development takes precious time. %1 är fri programvara men utveklingen tar värdefull tid. - + Please <a href='%1'>donate</a> to support the continued development of %2. Vänligen <a href='%1'> donera</a> för att stöda den fortsatta utveklingen utav %2 - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Rapportera fel och skicka in dina idéer till %1 - + Icon designed by %1. Ikon designad av %1 - + Compact mode contributed by %1. Kompakt läge bidragit av %1. - + HTTP proxy support contributed by %1. HTTP-proxy stöd bidragit av %1. - - Translated by %1 - Översatt av %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Släppt under <a href='%1'>GNU General Public License</a> - + &Close &Stäng - + About Om - + What you always wanted to know about %1 and never dared to ask Vad du alltid velat veta om %1 och aldrig vågat fråga om @@ -71,55 +86,93 @@ ClearButton - + Clear Rensa + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes bytes - + KB KB - + MB MB - + bytes/sec byte / sekund - + KB/sec KB / sekund - + MB/sec MB / sekund - + seconds sekunder - + minutes minuter - + %4 %5 remaining %4 %5 återstår @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Detta är bara en demo version av %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. Det kan bara ladda ner filmer kortare än %1 minuter så att du kan testa ladda ner funktionen. - + Continue Fortsätt - + Get the full version Få den fullständiga versionen - + %n Download(s) %n Nedladning (ar)%n Nedladning (ar) @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Byt plats ... - + Choose the download location Välj hämtningsplats - + Download location changed. Hämtningsplatsen har ändrats. - + Current downloads will still go in the previous location. Aktuella nedladdningar kommer fortfarande att hamna i den tidigare hämtningsplatsen. - + Downloading to: %1 Hämtar till: %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Nedladdningar @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Spela - + Pause Pausa - + Play/Pause Spela / Pausa - + Stop Stoppa - + Stop playing after current track Sluta spela efter nuvarande spår - + Next track Nästa spår - + Previous track Föregående spår - + Increase volume Öka volymen - + Decrease volume Minska volymen - + Mute Mute - + Seek forward Sök framåt - + Seek backward Sök bakåt @@ -255,22 +308,22 @@ ListModel - + Searching... Söker... - + Show %1 More Visa %1 Fler - + No videos Inga videos - + No more videos Inga fler videos @@ -278,7 +331,7 @@ LoadingWidget - + Error Fel @@ -286,317 +339,372 @@ MainWindow - + &Stop &Stop - + Stop playback and go back to the search view Stoppa uppspelningen och gå tillbaka till Sök vyn - + S&kip H&oppa - + Skip to the next video Hoppa till nästa video - - + + &Pause &Pausa - - + + Pause playback Pausa uppspelning - - + &Full Screen &Helskärm - + Go full screen Använd helskärm - + &Compact mode &Kompakt läge - + Hide the playlist and the toolbar Dölj spellistan och verktygsfältet - + Open the &YouTube page Öppna &YouTube-sidan - + Go to the YouTube video page and pause playback Gå till YouTube-video-sidan och pausa uppspelning - + Copy the YouTube &link Kopiera YouTube &länken - + Copy the current video YouTube link to the clipboard Kopiera den aktuella YouTube-video-länken till urklipp - + Copy the video stream &URL Kopiera videoströmmens &URL - + Copy the current video stream URL to the clipboard Kopiera den nuvarande videoströmmen URL till urklipp - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Ta bort - + Remove the selected videos from the playlist Ta bort markerade videoklippen från spellistan - + Move &Up Flytta &upp - + Move up the selected videos in the playlist Flytta upp de markerade videoklippen i spellistan - + Move &Down Flytta &nedåt - + Move down the selected videos in the playlist Flytta ner markerade videoklippen i spellistan - + &Clear recent searches &Rensa senaste sökningar - + Clear the search history. Cannot be undone. Rensa sökhistorik. Kan inte ångras. - + &Quit &Avsluta - + Ctrl+Q Ctrl+Q - + Bye Hej då - + &Website &Webbsida - + %1 on the Web %1 på webben - + Make a &donation Gör en &donation - + Please support the continued development of %1 Vänligen stöd den fortsatta utvecklingen av %1 - + &About &Om - + Info about %1 Info om %1 - + Search Sök - + Mute volume Volym av - + Ctrl+M Ctrl + M - - + + &Downloads &Nedladdningar - + Show details about video downloads Visa detaljer om video nedladdningar - + &Download &Ladda ner - + Download the current video Ladda ner den aktuella videon - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Applikation - + + &Playback + + + + &Playlist &Spellista - + &Video &Video - + + &View + + + + + &Share + + + + &Help &Hjälp - + Press %1 to raise the volume, %2 to lower it Tryck på %1 för att öka volymen, %2 för att sänka den - - + + Opening %1 Öppnar %1 - + Do you want to exit %1 with a download in progress? Vill du avsluta %1 med en nedladdning igång? - + If you close %1 now, this download will be cancelled. Om du stänger %1 nu, avbryts nedladdningen. - + Close and cancel download Stäng och avbryt nedladdning - + Wait for download to finish Vänta på att nedladdning blir klar - - Fatal error: %1 - Ödesdigert fel: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Fel: %1 - + &Play &Spela - + Resume playback Återuppta uppspelning - - Exit &Full Screen - Stäng &Helskärm - - - + Remaining time: %1 Återstående tid: %1 - + Volume at %1% Volym %1% - + Volume is muted Ljudet är avstängt - + Volume is unmuted Volymen är på - + Maximum video definition set to %1 Högsta video upplösning är satt till %1 - + Your privacy is now safe Din integritet är nu säker - + Downloads complete Nedladdningar klar @@ -604,57 +712,80 @@ MediaView - + Most relevant Mest relevanta - + Most recent Senaste - + Most viewed Mest sedda - + You can now paste the YouTube link into another application Nu kan du klistra in YouTube-länken i ett annat program - + You can now paste the video stream URL into another application Du kan nu klistra in videoströmmens webbadress i ett annat program - + The link will be valid only for a limited time. Länken kommer att gälla endast under en begränsad tid. - + This is just the demo version of %1. Detta är bara en demo version av %1. - + It allows you to test the application and see if it works for you. Det tillåter dig att testa programmet och se om det fungerar för dig. - + Continue Fortsätt - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Skaffa den fullständiga versionen - + Downloading %1 Hämtar %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Nätverks fel:%1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 visningar - + %1 of %2 (%3) — %4 %1 av %2 (%3) -%4 - + Preparing Förbereder - + Failed Misslyckades - + Completed Färdig - + Stopped Stoppad - + Stop downloading Stoppa nedladdning - + Show in %1 Visa i %1 - + Open parent folder Äppna föregående folder - + Restart downloading Omstarta nedladdning @@ -723,7 +854,7 @@ SearchLineEdit - + Search Sök @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Välkommen till <a href='%1'>%2</a>, - + Get the full version Skaffa den kompletta versionen - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Ange - + a keyword ett sökord - + a channel en kanal - + to start watching videos. för att börja titta på video. - + Watch Titta - + Recent keywords Senaste sökord - + Recent channels Senaste kanaler - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - En ny version av %1 finns tillgänglig. Vänligen <a href='%2'>uppdatera till version %3</a> - - - + Make yourself comfortable Gör dig själv bekväm @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Kan inte få videoström för %1 - + Network error: %1 for %2 Nätverks fel: %1 för %2 diff -Nru minitube-1.5/locale/te.ts minitube-1.6/locale/te.ts --- minitube-1.5/locale/te.ts 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/locale/te.ts 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,929 @@ + +UTF-8 + + AboutView + + + There's life outside the browser! + + + + + Version %1 + రూపాంతరం %1 + + + + %1 is Free Software but its development takes precious time. + + + + + Please <a href='%1'>donate</a> to support the continued development of %2. + %2 నిరంతర అభివృద్ధికి సహకరించుటకు దయచేసి <a href='%1'>విరాలమివ్వండి</a>. + + + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + %1, ఒక యూట్యూబ్ సంగీత ప్రదర్శకం + + + + %1, a music player + %1, ఒక సంగీత ప్రదర్శకం + + + + Translate %1 to your native language using %2 + + + + + Report bugs and send in your ideas to %1 + బగ్ లను మరియు మీ సలహాలను %1కి నివేదించండి + + + + Icon designed by %1. + + + + + Compact mode contributed by %1. + + + + + HTTP proxy support contributed by %1. + + + + + Released under the <a href='%1'>GNU General Public License</a> + + + + + &Close + మూసివేయి (&C) + + + + About + గురించి + + + + What you always wanted to know about %1 and never dared to ask + + + + + ClearButton + + + Clear + తుడిచివేయి + + + + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + డెమో కాలంచెల్లినది. + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + డెమో వాడు + + + + Get the full version + పూర్తి సంస్కరణను పొందు + + + + DownloadItem + + + bytes + బైట్లు + + + + KB + కిబై + + + + MB + మెబై + + + + bytes/sec + బైట్స్/సెకను + + + + KB/sec + కిబై/సెకను + + + + MB/sec + మెబై/సెకను + + + + seconds + సెకన్లు + + + + minutes + నిమిషాలు + + + + %4 %5 remaining + %4 %5 మిగిలివుంది + + + + DownloadManager + + + This is just the demo version of %1. + + + + + It can only download videos shorter than %1 minutes so you can test the download functionality. + + + + + Continue + కొనసాగు + + + + Get the full version + పూర్తి రూపాంతరాన్ని పొందండి + + + + %n Download(s) + + + + + DownloadSettings + + + Change location... + స్థానాన్ని మార్చండి... + + + + Choose the download location + దించుకోవాల్సిన ప్రదేశాన్ని ఎంచుకొను + + + + Download location changed. + దించుకొను ప్రదేశం మార్చబడింది. + + + + Current downloads will still go in the previous location. + + + + + Downloading to: %1 + + + + + DownloadView + + + + Downloads + దిగుమతులు + + + + GlobalShortcuts + + + Play + ఆడించు + + + + Pause + నిలిపివేయి + + + + Play/Pause + ఆడించు/నిలిపివేయి + + + + Stop + ఆపివేయి + + + + Stop playing after current track + ప్రస్తుత ట్రాక్ తరువాత ఆడటం ఆపివేయి + + + + Next track + తరువాతి ట్రాక్ + + + + Previous track + మునుపటి ట్రాక్ + + + + Increase volume + శబ్దాన్ని పెంచు + + + + Decrease volume + శబ్దాన్ని తగ్గించు + + + + Mute + నిశబ్దం + + + + Seek forward + ముందుకు లాగు + + + + Seek backward + వెనుకకు లాగు + + + + ListModel + + + Searching... + వెతుకుతున్నది... + + + + Show %1 More + ఇంకో %1 చూపించు + + + + No videos + వీడియోలు లేవు + + + + No more videos + ఇక ఏ వీడియోలు లేవు + + + + LoadingWidget + + + Error + దోషము + + + + MainWindow + + + &Stop + ఆపివేయి (&S) + + + + Stop playback and go back to the search view + + + + + S&kip + దాటవేయి (&k) + + + + Skip to the next video + తరువాతి వీడియోకి దాటవేయి + + + + + &Pause + నిలిపివేయి (&P) + + + + + Pause playback + ప్లేబాక్ నిలిపివేయి + + + + &Full Screen + పూర్తి తెర (&F) + + + + Go full screen + పూర్తి తెరకు మారు + + + + &Compact mode + కాంపాక్టు మోడ్ (&C) + + + + Hide the playlist and the toolbar + ఆటజాబితాను మరియు సాధనపట్టీని దాయి + + + + Open the &YouTube page + యూట్యూబ్ పేజీని తెరువు (&Y) + + + + Go to the YouTube video page and pause playback + యూట్యూబ్ వీడియో పేజీకి వెళ్ళి మరియు ప్లేబ్యాక్ నిలిపివేయి + + + + Copy the YouTube &link + యూట్యూబ్ లింకుని నకలుతీయి (&l) + + + + Copy the current video YouTube link to the clipboard + ప్రస్తుత యూట్యూబ్ వీడియో లింకును క్లిప్ బోర్డునకు నకలుతీయి + + + + Copy the video stream &URL + వీడియో ప్రవాహ URL నకలుతీయి (&U) + + + + Copy the current video stream URL to the clipboard + ప్రస్తుత వీడియో ప్రవాహ URL క్లిప్ బోర్డుకి నకలుతీయి + + + + Find video &parts + వీడియో భాగాలను చూపించు (&p) + + + + Find other video parts hopefully in the right order + + + + + &Remove + తీసివేయి (&R) + + + + Remove the selected videos from the playlist + ఎంచుకున్న వీడియాలను ఆటజాబితా నుండి తీసివేయి + + + + Move &Up + పైకి జరుపు (&U) + + + + Move up the selected videos in the playlist + + + + + Move &Down + కిందికి జరుపు (&D) + + + + Move down the selected videos in the playlist + + + + + &Clear recent searches + ఇటీవలి శోధనలను తుడిచివేయి (&C) + + + + Clear the search history. Cannot be undone. + + + + + &Quit + నిష్క్రమించు (&Q) + + + + Ctrl+Q + Ctrl+Q + + + + Bye + సెలవు + + + + &Website + వెబ్‌సైటు (&W) + + + + %1 on the Web + జాలం నందు %1 + + + + Make a &donation + విరాలం ఇవ్వండి (&d) + + + + Please support the continued development of %1 + దయచేసి %1 యొక్క నిరంతర అభివృద్ధికి సహకరించండి + + + + &About + గురించి (&A) + + + + Info about %1 + %1 గురించిన సమాచారం + + + + Search + వెతుకు + + + + Mute volume + వాల్యూమ్ మ్యూట్ చేయి + + + + Ctrl+M + Ctrl+M + + + + + &Downloads + దింపుకోళ్ళు (&D) + + + + Show details about video downloads + వీడియో దింపుకోల్ల గురించిన వివరాలను చూపించు + + + + &Download + దింపుకోళ్ళు (&D) + + + + Download the current video + ప్రస్తుత వీడియోని దింపుకొను + + + + Share the current video using %1 + %1 వాడి ప్రస్తుత వీడియోని పంచుకొను + + + + &Email + ఈమెయిల్ (&E) + + + + Email + ఈమెయిల్ + + + + &Application + అనువర్తనం (&A) + + + + &Playback + ప్లేబ్యాక్ (&P) + + + + &Playlist + ఆటజాబితా (&P) + + + + &Video + వీడియా (&V) + + + + &View + వీక్షణం (&V) + + + + &Share + పంచుకొను (&S) + + + + &Help + సహాయం (&H) + + + + Press %1 to raise the volume, %2 to lower it + + + + + + Opening %1 + %1 తెరుస్తున్నది + + + + Do you want to exit %1 with a download in progress? + + + + + If you close %1 now, this download will be cancelled. + + + + + Close and cancel download + దింపుకోలును రద్దుచేసి, మూసివేయి + + + + Wait for download to finish + దింపుకోలు పూర్తిచేయుటకు నిరీక్షించండి + + + + Leave &Full Screen + పూర్తితెరను వదిలివెళ్ళు (&F) + + + + %1 version %2 is now available. + %1 సంస్కరణ %2 అందుబాటులో ఉన్నది. + + + + Remind me later + నాకు తరువాత గుర్తుచేయి + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + నవీకరించిన సంస్కరణ పొందుటకు, మీరు ఈమెయిల్ నందు పొందిన లింకు ద్వారా మరలా %1 దింపుకోండి. + + + + Update + నవీకరించు + + + + Error: %1 + దోషము: %1 + + + + &Play + ఆడించు (&P) + + + + Resume playback + ప్లేబాక్ మళ్ళీ ప్రారంభించు + + + + Remaining time: %1 + మిగిలిన సమయం: %1 + + + + Volume at %1% + + + + + Volume is muted + వాల్యూమ్ మ్యూట్ చేయబడింది + + + + Volume is unmuted + వాల్యూమ్ మ్యూట్ చేయబడలేదు + + + + Maximum video definition set to %1 + అత్యధిక వీడియో నిర్వచనం %1కి అమర్చబడింది + + + + Your privacy is now safe + మీ గోప్యత ఇపుడు సురక్షితం + + + + Downloads complete + దింపుకోళ్లు పూర్తయినవి + + + + MediaView + + + Most relevant + + + + + Most recent + కొత్తగా వచ్చినవి + + + + Most viewed + ఎక్కువగా వీక్షించినవి + + + + You can now paste the YouTube link into another application + మీరిపుడు యూట్యూబ్ లింకుని వేరొక అనువర్తనము నందు అతికించవచ్చు + + + + You can now paste the video stream URL into another application + మీరిపుడు వీడియో ప్రవాహ లింకుని వేరొక అనువర్తనము నందు అతికించవచ్చు + + + + The link will be valid only for a limited time. + లింకు కేవలం పరిమిత సమయం వరకే చెల్లుతుంది. + + + + This is just the demo version of %1. + ఇది %1 రూపాంతరం యొక్క డెమో మాత్రమే. + + + + It allows you to test the application and see if it works for you. + ఒకవేళ అది మీకు పనిచేస్తే, ఇది అనువర్తనాన్ని పరీక్షించుటకు మిమ్మల్ని అనుమతిస్తుంది. + + + + Continue + కొనసాగు + + + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + భాగం + + + + episode + This is for video parts, as in 'Cool series - episode 1' + భాగం + + + + Sent from %1 + + + + + Get the full version + పూర్తి రూపాంతరాన్ని పొందండి + + + + Downloading %1 + %1 దింపుతున్నది + + + + NetworkAccess + + + Network error: %1 + నెట్వర్కు దోషము: %1 + + + + PrettyItemDelegate + + + %1 views + %1 వీక్షణలు + + + + %1 of %2 (%3) — %4 + %1 of %2 (%3) — %4 + + + + Preparing + సిద్ధంచేస్తున్నది + + + + Failed + విఫలమైంది + + + + Completed + పూర్తిచేయబడింది + + + + Stopped + ఆపివేయబడింది + + + + Stop downloading + దింపుకోలుని ఆపివేయి + + + + Show in %1 + %1 లో చూపిస్తుంది + + + + Open parent folder + మూల సంచయాన్ని తెరువు + + + + Restart downloading + దింపుకోలుని పునఃప్రారంభించు + + + + SearchLineEdit + + + Search + వెతుకు + + + + SearchView + + + Welcome to <a href='%1'>%2</a>, + <a href='%1'>%2</a> కి స్వాగతం, + + + + Get the full version + పూర్తి రూపాంతరాన్ని పొందండి + + + + Enter + "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" + + + + + a keyword + ఒక కీలకపదం + + + + a channel + ఒక ఛానల్ + + + + to start watching videos. + + + + + Watch + వీక్షించు + + + + Recent keywords + ఇటీవలి కీలకపదాలు + + + + Recent channels + ఇటీవలి ఛానళ్ళు + + + + Make yourself comfortable + + + + + Video + + + Cannot get video stream for %1 + %1 కొరకు వీడియో ప్రవాహాన్ని పొందలేకపోతున్నది + + + + Network error: %1 for %2 + నెట్వర్కు దోషం: %1 for %2 + + + \ No newline at end of file diff -Nru minitube-1.5/locale/th.ts minitube-1.6/locale/th.ts --- minitube-1.5/locale/th.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/th.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - - - - - Version %1 - - - - - %1 is Free Software but its development takes precious time. - - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - - - - - Report bugs and send in your ideas to %1 - - - - - Icon designed by %1. - - - - - Compact mode contributed by %1. - - - - - HTTP proxy support contributed by %1. - - - - - Translated by %1 - - - - - Released under the <a href='%1'>GNU General Public License</a> - - - - - &Close - - - - - About - - - - - What you always wanted to know about %1 and never dared to ask - - - - - ClearButton - - - Clear - - - - - DownloadItem - - - bytes - - - - - KB - - - - - MB - - - - - bytes/sec - - - - - KB/sec - - - - - MB/sec - - - - - seconds - - - - - minutes - - - - - %4 %5 remaining - - - - - DownloadManager - - - This is just the demo version of %1. - - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - - - - - Continue - - - - - Get the full version - - - - - %n Download(s) - - - - - DownloadSettings - - - Change location... - - - - - Choose the download location - - - - - Download location changed. - - - - - Current downloads will still go in the previous location. - - - - - Downloading to: %1 - - - - - DownloadView - - - - Downloads - - - - - GlobalShortcuts - - - Play - - - - - Pause - - - - - Play/Pause - - - - - Stop - - - - - Stop playing after current track - - - - - Next track - - - - - Previous track - - - - - Increase volume - - - - - Decrease volume - - - - - Mute - - - - - Seek forward - - - - - Seek backward - - - - - ListModel - - - Searching... - - - - - Show %1 More - - - - - No videos - - - - - No more videos - - - - - LoadingWidget - - - Error - - - - - MainWindow - - - &Stop - - - - - Stop playback and go back to the search view - - - - - S&kip - - - - - Skip to the next video - - - - - - &Pause - - - - - - Pause playback - - - - - - &Full Screen - - - - - Go full screen - - - - - &Compact mode - - - - - Hide the playlist and the toolbar - - - - - Open the &YouTube page - - - - - Go to the YouTube video page and pause playback - - - - - Copy the YouTube &link - - - - - Copy the current video YouTube link to the clipboard - - - - - Copy the video stream &URL - - - - - Copy the current video stream URL to the clipboard - - - - - &Remove - - - - - Remove the selected videos from the playlist - - - - - Move &Up - - - - - Move up the selected videos in the playlist - - - - - Move &Down - - - - - Move down the selected videos in the playlist - - - - - &Clear recent searches - - - - - Clear the search history. Cannot be undone. - - - - - &Quit - - - - - Ctrl+Q - - - - - Bye - - - - - &Website - - - - - %1 on the Web - - - - - Make a &donation - - - - - Please support the continued development of %1 - - - - - &About - - - - - Info about %1 - - - - - Search - - - - - Mute volume - - - - - Ctrl+M - - - - - - &Downloads - - - - - Show details about video downloads - - - - - &Download - - - - - Download the current video - - - - - &Application - - - - - &Playlist - - - - - &Video - - - - - &Help - - - - - Press %1 to raise the volume, %2 to lower it - - - - - - Opening %1 - - - - - Do you want to exit %1 with a download in progress? - - - - - If you close %1 now, this download will be cancelled. - - - - - Close and cancel download - - - - - Wait for download to finish - - - - - Fatal error: %1 - - - - - Error: %1 - - - - - &Play - - - - - Resume playback - - - - - Exit &Full Screen - - - - - Remaining time: %1 - - - - - Volume at %1% - - - - - Volume is muted - - - - - Volume is unmuted - - - - - Maximum video definition set to %1 - - - - - Your privacy is now safe - - - - - Downloads complete - - - - - MediaView - - - Most relevant - - - - - Most recent - - - - - Most viewed - - - - - You can now paste the YouTube link into another application - - - - - You can now paste the video stream URL into another application - - - - - The link will be valid only for a limited time. - - - - - This is just the demo version of %1. - - - - - It allows you to test the application and see if it works for you. - - - - - Continue - - - - - Get the full version - - - - - Downloading %1 - - - - - NetworkAccess - - - Network error: %1 - - - - - PrettyItemDelegate - - - %1 views - - - - - %1 of %2 (%3) — %4 - - - - - Preparing - - - - - Failed - - - - - Completed - - - - - Stopped - - - - - Stop downloading - - - - - Show in %1 - - - - - Open parent folder - - - - - Restart downloading - - - - - SearchLineEdit - - - Search - - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - - - - - Get the full version - - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - - - - - a keyword - - - - - a channel - - - - - to start watching videos. - - - - - Watch - - - - - Recent keywords - - - - - Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - - - - - Make yourself comfortable - - - - - Video - - - Cannot get video stream for %1 - - - - - Network error: %1 for %2 - - - - \ No newline at end of file diff -Nru minitube-1.5/locale/tr_TR.ts minitube-1.6/locale/tr_TR.ts --- minitube-1.5/locale/tr_TR.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/tr_TR.ts 1970-01-01 00:00:00.000000000 +0000 @@ -1,803 +0,0 @@ - -UTF-8 - - AboutView - - - There's life outside the browser! - Tarayıcının dışındaki yaşam! - - - - Version %1 - Version %1 - - - - %1 is Free Software but its development takes precious time. - %1 özgür yazılımdır ama geliştirmek değerli zaman alır. - - - - Please <a href='%1'>donate</a> to support the continued development of %2. - Lütfen %2 geliştirilmesinin devam etmesi için <a href='%1'>bağış</a> yapın. - - - - Report bugs and send in your ideas to %1 - Hataları ve yeni fikirlerinizi %1 adresine gönderin - - - - Icon designed by %1. - Simge %1 tarafından tasarlandı. - - - - Compact mode contributed by %1. - Pencereye sığdırmada %1'ün katkısı var. - - - - HTTP proxy support contributed by %1. - HTTP Vekil desteğinde %1'nin katkısı var. - - - - Translated by %1 - Çevirenler %1 - - - - Released under the <a href='%1'>GNU General Public License</a> - <a href='%1'>GNU Genel Kamu Lisansı</a> ile yayınlanmıştır - - - - &Close - &Kapat - - - - About - Hakkında - - - - What you always wanted to know about %1 and never dared to ask - - - - - ClearButton - - - Clear - Temizle - - - - DownloadItem - - - bytes - byte - - - - KB - KB - - - - MB - MB - - - - bytes/sec - byte/san - - - - KB/sec - KB/san - - - - MB/sec - MB/san - - - - seconds - saniye - - - - minutes - dakika - - - - %4 %5 remaining - %4 %5 kaldı - - - - DownloadManager - - - This is just the demo version of %1. - Bu sadece %'in demo sürümüdür. - - - - It can only download videos shorter than %1 minutes so you can test the download functionality. - Bu sadece %1 dakikadan kısa videoları indirebilir, indirme özelliğini böylece test edebilirsiniz. - - - - Continue - Devam - - - - Get the full version - Tam sürüme geç - - - - %n Download(s) - %n İndirme - - - - DownloadSettings - - - Change location... - Konumu değiştir... - - - - Choose the download location - İndirme konumunu seçin - - - - Download location changed. - İndirme konumu değişti - - - - Current downloads will still go in the previous location. - Mevcut indirmeler önceki konumda devam edecek - - - - Downloading to: %1 - İndiriliyor: %1 - - - - DownloadView - - - - Downloads - İndirmeler - - - - GlobalShortcuts - - - Play - Oynat - - - - Pause - Bekle - - - - Play/Pause - Oynat/Bekle - - - - Stop - Dur - - - - Stop playing after current track - Şimdiki videodan sonra oynatmayı durdur - - - - Next track - Sonraki video - - - - Previous track - Önceki video - - - - Increase volume - Sesi arttır - - - - Decrease volume - Sesi azalt - - - - Mute - Sesi kes - - - - Seek forward - İleri sar - - - - Seek backward - Geri sar - - - - ListModel - - - Searching... - Aranıyor... - - - - Show %1 More - %1 Tane daha - - - - No videos - Video yok - - - - No more videos - Daha fazla yok - - - - LoadingWidget - - - Error - Hata - - - - MainWindow - - - &Stop - &Dur - - - - Stop playback and go back to the search view - Oynatmayı durdur ve aramaya geri dön - - - - S&kip - &Atla - - - - Skip to the next video - Sonraki videoya atla - - - - - &Pause - &Bekle - - - - - Pause playback - Oynatmayı beklet - - - - - &Full Screen - &Tam ekran - - - - Go full screen - Tam ekran görünümü - - - - &Compact mode - &Pencereye sığdır - - - - Hide the playlist and the toolbar - Listeyi ve araç çubuğunu gizle - - - - Open the &YouTube page - &YouTube sayfasını aç - - - - Go to the YouTube video page and pause playback - Oynatmayı beklet ve YouTube sayfasına git - - - - Copy the YouTube &link - YouTube bağlantısını &kopyala - - - - Copy the current video YouTube link to the clipboard - Geçerli videonun YouTube bağlantısını panoya kopyala - - - - Copy the video stream &URL - Video akışı &URL adresini kopyala - - - - Copy the current video stream URL to the clipboard - Geçerli video akışının URL adresini panoya kopyala - - - - &Remove - &Kaldır - - - - Remove the selected videos from the playlist - Seçilen videoları listeden kaldır - - - - Move &Up - Y&ukarı taşı - - - - Move up the selected videos in the playlist - Seçilen videoları listede yukarı taşı - - - - Move &Down - A&şağı taşı - - - - Move down the selected videos in the playlist - Seçilen videoları listede aşağı taşı - - - - &Clear recent searches - Arama geçmişini &temizle - - - - Clear the search history. Cannot be undone. - Arama geçmişini sil. Bu geri alınamaz. - - - - &Quit - &Çık - - - - Ctrl+Q - Ctrl+Ç - - - - Bye - Gülegüle - - - - &Website - &Website - - - - %1 on the Web - %1 İnternette - - - - Make a &donation - &Bağış yap - - - - Please support the continued development of %1 - Lütfen %1 gelişiminin sürekliliği için destekleyin - - - - &About - &Hakkında - - - - Info about %1 - %1 Hakkında - - - - Search - Ara - - - - Mute volume - Sesi kes - - - - Ctrl+M - Ctrl+M - - - - - &Downloads - &İndirmeler - - - - Show details about video downloads - Video indirmelerinin ayrıntılarını göster - - - - &Download - &İndir - - - - Download the current video - Geçerli videoyu indir - - - - &Application - &Uygulama - - - - &Playlist - Oynatma &listesi - - - - &Video - &Video - - - - &Help - Yardı&m - - - - Press %1 to raise the volume, %2 to lower it - %1 Sesi arttır, %2 sesi azalt - - - - - Opening %1 - %1 Açılıyor - - - - Do you want to exit %1 with a download in progress? - %1 İndiriliyor, çıkmak istiyor musunuz? - - - - If you close %1 now, this download will be cancelled. - Eğer %1'İ şimdi kapatırsanız, bu indirme iptal edilecek. - - - - Close and cancel download - Kapat ve indirmeyi iptal et - - - - Wait for download to finish - İndirmenin bitmesini bekle - - - - Fatal error: %1 - İç hata: %1 - - - - Error: %1 - Hata: %1 - - - - &Play - &Oynat - - - - Resume playback - Oynatmaya devam et - - - - Exit &Full Screen - &Tam ekrandan çık - - - - Remaining time: %1 - Kalan zaman: %1 - - - - Volume at %1% - Ses %1% - - - - Volume is muted - Ses kapandı - - - - Volume is unmuted - Ses açık - - - - Maximum video definition set to %1 - En yüksek video tanımı %1 olarak ayarlı - - - - Your privacy is now safe - Şimdi gizliliğiniz güvende - - - - Downloads complete - İndirme tamamlandı - - - - MediaView - - - Most relevant - En ilgili - - - - Most recent - En yeni - - - - Most viewed - Çok izlenen - - - - You can now paste the YouTube link into another application - Şimdi YouTube bağlantısını başka bir uygulamaya yapıştırabilirsiniz - - - - You can now paste the video stream URL into another application - Şimdi video akışı URL adresini başka bir uygulamaya yapıştırabilirsiniz - - - - The link will be valid only for a limited time. - Bağlantı kısıtlı bir süre için geçerli olacak. - - - - This is just the demo version of %1. - Bu sadece %1'in demo sürümüdür. - - - - It allows you to test the application and see if it works for you. - Bu, uygulamayı test etmenizi ve çalışıp çalışmadığını görmenizi sağlar. - - - - Continue - Devam - - - - Get the full version - Tam sürüme geç - - - - Downloading %1 - İndiriliyor %1 - - - - NetworkAccess - - - Network error: %1 - Ağ hatası: %1 - - - - PrettyItemDelegate - - - %1 views - %1 görüntüleme - - - - %1 of %2 (%3) — %4 - - - - - Preparing - Hazırlanıyor - - - - Failed - Başarısız oldu - - - - Completed - Tamamlandı - - - - Stopped - Durdu - - - - Stop downloading - İndirmeyi durdur - - - - Show in %1 - %1 içinde göster - - - - Open parent folder - Üst dizini aç - - - - Restart downloading - İndirmeyi tekrar başlat - - - - SearchLineEdit - - - Search - Ara - - - - SearchView - - - Welcome to <a href='%1'>%2</a>, - <a href='%1'>%2</a>'a Hoşgeldiniz - - - - Get the full version - Tam sürüme geç - - - - Enter - "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - Giriş yapın - - - - a keyword - bir anahtar kelime - - - - a channel - bir kanal - - - - to start watching videos. - ve videoları izlemeye başlayın. - - - - Watch - İzle - - - - Recent keywords - Son arananlar - - - - Recent channels - Önceki kanallar - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - %1'un yeni sürümü mevcut. Lütfen buradan <a href='%2'> %3 sürümüne yükseltin</a> - - - - Make yourself comfortable - Kendinize konfor sunun - - - - Video - - - Cannot get video stream for %1 - %1 için video akışı alınamıyor. - - - - Network error: %1 for %2 - Ağ hatası: %2 için %1 - - - \ No newline at end of file diff -Nru minitube-1.5/locale/tr.ts minitube-1.6/locale/tr.ts --- minitube-1.5/locale/tr.ts 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/locale/tr.ts 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,929 @@ + +UTF-8 + + AboutView + + + There's life outside the browser! + Tarayıcının dışındaki yaşam! + + + + Version %1 + Version %1 + + + + %1 is Free Software but its development takes precious time. + %1 özgür yazılımdır ama geliştirmek değerli zaman alır. + + + + Please <a href='%1'>donate</a> to support the continued development of %2. + Lütfen %2 geliştirilmesinin devam etmesi için <a href='%1'>bağış</a> yapın. + + + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + + Report bugs and send in your ideas to %1 + Hataları ve yeni fikirlerinizi %1 adresine gönderin + + + + Icon designed by %1. + Simge %1 tarafından tasarlandı. + + + + Compact mode contributed by %1. + Pencereye sığdırmada %1'ün katkısı var. + + + + HTTP proxy support contributed by %1. + HTTP Vekil desteğinde %1'nin katkısı var. + + + + Released under the <a href='%1'>GNU General Public License</a> + <a href='%1'>GNU Genel Kamu Lisansı</a> ile yayınlanmıştır + + + + &Close + &Kapat + + + + About + Hakkında + + + + What you always wanted to know about %1 and never dared to ask + %1 hakkında her zaman bilmek isteyip de soramadıklarınız + + + + ClearButton + + + Clear + Temizle + + + + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + + DownloadItem + + + bytes + byte + + + + KB + KB + + + + MB + MB + + + + bytes/sec + byte/san + + + + KB/sec + KB/san + + + + MB/sec + MB/san + + + + seconds + saniye + + + + minutes + dakika + + + + %4 %5 remaining + %4 %5 kaldı + + + + DownloadManager + + + This is just the demo version of %1. + Bu sadece %'in demo sürümüdür. + + + + It can only download videos shorter than %1 minutes so you can test the download functionality. + Bu sadece %1 dakikadan kısa videoları indirebilir, indirme özelliğini böylece test edebilirsiniz. + + + + Continue + Devam + + + + Get the full version + Tam sürüme geç + + + + %n Download(s) + %n İndirme + + + + DownloadSettings + + + Change location... + Konumu değiştir... + + + + Choose the download location + İndirme konumunu seçin + + + + Download location changed. + İndirme konumu değişti + + + + Current downloads will still go in the previous location. + Mevcut indirmeler önceki konumda devam edecek + + + + Downloading to: %1 + İndiriliyor: %1 + + + + DownloadView + + + + Downloads + İndirmeler + + + + GlobalShortcuts + + + Play + Oynat + + + + Pause + Bekle + + + + Play/Pause + Oynat/Bekle + + + + Stop + Dur + + + + Stop playing after current track + Şimdiki videodan sonra oynatmayı durdur + + + + Next track + Sonraki video + + + + Previous track + Önceki video + + + + Increase volume + Sesi arttır + + + + Decrease volume + Sesi azalt + + + + Mute + Sesi kes + + + + Seek forward + İleri sar + + + + Seek backward + Geri sar + + + + ListModel + + + Searching... + Aranıyor... + + + + Show %1 More + %1 Tane daha + + + + No videos + Video yok + + + + No more videos + Daha fazla yok + + + + LoadingWidget + + + Error + Hata + + + + MainWindow + + + &Stop + &Dur + + + + Stop playback and go back to the search view + Oynatmayı durdur ve aramaya geri dön + + + + S&kip + &Atla + + + + Skip to the next video + Sonraki videoya atla + + + + + &Pause + &Bekle + + + + + Pause playback + Oynatmayı beklet + + + + &Full Screen + &Tam ekran + + + + Go full screen + Tam ekran görünümü + + + + &Compact mode + &Pencereye sığdır + + + + Hide the playlist and the toolbar + Listeyi ve araç çubuğunu gizle + + + + Open the &YouTube page + &YouTube sayfasını aç + + + + Go to the YouTube video page and pause playback + Oynatmayı beklet ve YouTube sayfasına git + + + + Copy the YouTube &link + YouTube bağlantısını &kopyala + + + + Copy the current video YouTube link to the clipboard + Geçerli videonun YouTube bağlantısını panoya kopyala + + + + Copy the video stream &URL + Video akışı &URL adresini kopyala + + + + Copy the current video stream URL to the clipboard + Geçerli video akışının URL adresini panoya kopyala + + + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + + &Remove + &Kaldır + + + + Remove the selected videos from the playlist + Seçilen videoları listeden kaldır + + + + Move &Up + Y&ukarı taşı + + + + Move up the selected videos in the playlist + Seçilen videoları listede yukarı taşı + + + + Move &Down + A&şağı taşı + + + + Move down the selected videos in the playlist + Seçilen videoları listede aşağı taşı + + + + &Clear recent searches + Arama geçmişini &temizle + + + + Clear the search history. Cannot be undone. + Arama geçmişini sil. Bu geri alınamaz. + + + + &Quit + &Çık + + + + Ctrl+Q + Ctrl+Ç + + + + Bye + Gülegüle + + + + &Website + &Website + + + + %1 on the Web + %1 İnternette + + + + Make a &donation + &Bağış yap + + + + Please support the continued development of %1 + Lütfen %1 gelişiminin sürekliliği için destekleyin + + + + &About + &Hakkında + + + + Info about %1 + %1 Hakkında + + + + Search + Ara + + + + Mute volume + Sesi kes + + + + Ctrl+M + Ctrl+M + + + + + &Downloads + &İndirmeler + + + + Show details about video downloads + Video indirmelerinin ayrıntılarını göster + + + + &Download + &İndir + + + + Download the current video + Geçerli videoyu indir + + + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + + &Application + &Uygulama + + + + &Playback + + + + + &Playlist + Oynatma &listesi + + + + &Video + &Video + + + + &View + + + + + &Share + + + + + &Help + Yardı&m + + + + Press %1 to raise the volume, %2 to lower it + %1 Sesi arttır, %2 sesi azalt + + + + + Opening %1 + %1 Açılıyor + + + + Do you want to exit %1 with a download in progress? + %1 İndiriliyor, çıkmak istiyor musunuz? + + + + If you close %1 now, this download will be cancelled. + Eğer %1'İ şimdi kapatırsanız, bu indirme iptal edilecek. + + + + Close and cancel download + Kapat ve indirmeyi iptal et + + + + Wait for download to finish + İndirmenin bitmesini bekle + + + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + + + + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + + Error: %1 + Hata: %1 + + + + &Play + &Oynat + + + + Resume playback + Oynatmaya devam et + + + + Remaining time: %1 + Kalan zaman: %1 + + + + Volume at %1% + Ses %1% + + + + Volume is muted + Ses kapandı + + + + Volume is unmuted + Ses açık + + + + Maximum video definition set to %1 + En yüksek video tanımı %1 olarak ayarlı + + + + Your privacy is now safe + Şimdi gizliliğiniz güvende + + + + Downloads complete + İndirme tamamlandı + + + + MediaView + + + Most relevant + En ilgili + + + + Most recent + En yeni + + + + Most viewed + Çok izlenen + + + + You can now paste the YouTube link into another application + Şimdi YouTube bağlantısını başka bir uygulamaya yapıştırabilirsiniz + + + + You can now paste the video stream URL into another application + Şimdi video akışı URL adresini başka bir uygulamaya yapıştırabilirsiniz + + + + The link will be valid only for a limited time. + Bağlantı kısıtlı bir süre için geçerli olacak. + + + + This is just the demo version of %1. + Bu sadece %1'in demo sürümüdür. + + + + It allows you to test the application and see if it works for you. + Bu, uygulamayı test etmenizi ve çalışıp çalışmadığını görmenizi sağlar. + + + + Continue + Devam + + + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + + Get the full version + Tam sürüme geç + + + + Downloading %1 + İndiriliyor %1 + + + + NetworkAccess + + + Network error: %1 + Ağ hatası: %1 + + + + PrettyItemDelegate + + + %1 views + %1 görüntüleme + + + + %1 of %2 (%3) — %4 + + + + + Preparing + Hazırlanıyor + + + + Failed + Başarısız oldu + + + + Completed + Tamamlandı + + + + Stopped + Durdu + + + + Stop downloading + İndirmeyi durdur + + + + Show in %1 + %1 içinde göster + + + + Open parent folder + Üst dizini aç + + + + Restart downloading + İndirmeyi tekrar başlat + + + + SearchLineEdit + + + Search + Ara + + + + SearchView + + + Welcome to <a href='%1'>%2</a>, + <a href='%1'>%2</a>'a Hoşgeldiniz + + + + Get the full version + Tam sürüme geç + + + + Enter + "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" + Giriş yapın + + + + a keyword + bir anahtar kelime + + + + a channel + bir kanal + + + + to start watching videos. + ve videoları izlemeye başlayın. + + + + Watch + İzle + + + + Recent keywords + Son arananlar + + + + Recent channels + Önceki kanallar + + + + Make yourself comfortable + Kendinize konfor sunun + + + + Video + + + Cannot get video stream for %1 + %1 için video akışı alınamıyor. + + + + Network error: %1 for %2 + Ağ hatası: %2 için %1 + + + \ No newline at end of file diff -Nru minitube-1.5/locale/uk.ts minitube-1.6/locale/uk.ts --- minitube-1.5/locale/uk.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/uk.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! За межами веб-переглядача також є життя! - + Version %1 Версія %1 - + %1 is Free Software but its development takes precious time. %1 — вільне програмне забезпечення, але на його розробку було затрачено коштовний час. - + Please <a href='%1'>donate</a> to support the continued development of %2. Будь ласка <a href='%1'>внесіть пожертву</a> щоб підтримати подальший розвиток %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Повідомляйте про несправності та висилайте ваші ідеї на %1 - + Icon designed by %1. Розробник піктограм %1. - + Compact mode contributed by %1. Розробка компактного режиму %1. - + HTTP proxy support contributed by %1. Реалізація підтримки HTTP проксі %1. - - Translated by %1 - Перекладено %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Випущено за <a href='%1'>Загальною громадською ліцензією GNU</a> - + &Close &Закрити - + About Про програму - + What you always wanted to know about %1 and never dared to ask Все що ви завжди хотіли знати про %1, але не наважувались запитати @@ -71,55 +86,93 @@ ClearButton - + Clear Очистити + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes байт - + KB КБ - + MB МБ - + bytes/sec байт/сек - + KB/sec КБ/сек - + MB/sec МБ/сек - + seconds сек - + minutes хв - + %4 %5 remaining до завершення %4 %5 @@ -127,55 +180,55 @@ DownloadManager - + This is just the demo version of %1. Це демонстраційна версія %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. З метою тестування ви можете завантажити відео тривалістю до %1 хв. - + Continue Продовжити - + Get the full version Отримати повнофункціональну версію - + %n Download(s) - + DownloadSettings - + Change location... Змінити теку для завантаження... - + Choose the download location Оберіть теку для завантаження - + Download location changed. Теку завантаження змінено. - + Current downloads will still go in the previous location. Поточні завантаження все ще буде збережено в попередньому місці. - + Downloading to: %1 Завантажується в %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Завантаження @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Грати - + Pause Призупинити - + Play/Pause Грати/Призупинити - + Stop Зупинити - + Stop playing after current track Зупинити по завершенні поточного - + Next track Наступний - + Previous track Попередній - + Increase volume Підвищити гучність - + Decrease volume Знизити гучність - + Mute Приглушити - + Seek forward Шукати наступне - + Seek backward Шукати попереднє @@ -255,22 +308,22 @@ ListModel - + Searching... Пошук... - + Show %1 More Наступні %1 - + No videos Нічого не знайдено - + No more videos Більше немає @@ -278,7 +331,7 @@ LoadingWidget - + Error Помилка @@ -286,317 +339,372 @@ MainWindow - + &Stop &Зупинити - + Stop playback and go back to the search view Зупинити відтворення і перейти до вікна пошуку - + S&kip П&ропустити - + Skip to the next video Перейти до наступного відео - - + + &Pause &Призупинити - - + + Pause playback Призупинити відтворення - - + &Full Screen Н&а весь экран - + Go full screen Перехід у повноекранний режим - + &Compact mode &Компактний режим - + Hide the playlist and the toolbar Сховати список і панель інструментів - + Open the &YouTube page &Відкрити сторінку YouTube - + Go to the YouTube video page and pause playback Відкрити сторінку YouTube і призупини відтворення відео - + Copy the YouTube &link Скопіювати YouTube &посилання в буфер - + Copy the current video YouTube link to the clipboard Скопіювати YouTube посилання поточного відео в буфер - + Copy the video stream &URL Скопіювати &посилання в буфер - + Copy the current video stream URL to the clipboard Скопіювати посилання поточного відео в буфер - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Вилучити - + Remove the selected videos from the playlist Вилучити вибрані відео зі списку - + Move &Up Зсув в&гору - + Move up the selected videos in the playlist Зсунути вибране відео вгору по списку - + Move &Down Зсув вни&з - + Move down the selected videos in the playlist Зсунути вибране відео вниз по списку - + &Clear recent searches - + - + Clear the search history. Cannot be undone. Очистити історію пошуку (зміни незвороні). - + &Quit Ви&хід - + Ctrl+Q Ctrl+Q - + Bye На все добре - + &Website &Сайт - + %1 on the Web %1 в мережі - + Make a &donation Підтрима&йте проект - + Please support the continued development of %1 Будь ласка підтримайте подальший розвиток %1 - + &About &Про програму - + Info about %1 Інформація про %1 - + Search Пошук - + Mute volume Приглушити гучність - + Ctrl+M Ctrl+M - - + + &Downloads &Завантаження - + Show details about video downloads Показати деталі про завантажувані відео - + &Download &Завантажити - + Download the current video Завантажити поточне відео - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Програма - + + &Playback + + + + &Playlist &Список - + &Video В&ідео - + + &View + + + + + &Share + + + + &Help &Довідка - + Press %1 to raise the volume, %2 to lower it Натисніть %1, щоб приглушити гучність, та %2 щоб відновити її - - + + Opening %1 Відкриття %1 - + Do you want to exit %1 with a download in progress? Триває завантаження, бажаете закрити %1? - + If you close %1 now, this download will be cancelled. Якщо закрити %1 негайно, всі завантаження буде скасовано. - + Close and cancel download Скасувати та закрити - + Wait for download to finish Дочекатися завершення - - Fatal error: %1 - Невиправна помилка: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Помилка: %1 - + &Play Гр&ати - + Resume playback Відновити відтворення - - Exit &Full Screen - Вийти з повноекр&анного режиму - - - + Remaining time: %1 Залишилось часу: %1 - + Volume at %1% Гучність %1% - + Volume is muted Гучність приглушено - + Volume is unmuted Гучність відновлено - + Maximum video definition set to %1 Режим чіткості відео %1 - + Your privacy is now safe Ваша приватність застережена - + Downloads complete Завантаження завершено @@ -604,57 +712,80 @@ MediaView - + Most relevant Подібні - + Most recent Недавні - + Most viewed Популярні - + You can now paste the YouTube link into another application Ви можете використовувати YouTube посилання на відео в завнішній програмі - + You can now paste the video stream URL into another application Ви можете використовувати посилання на відео в завнішній програмі - + The link will be valid only for a limited time. Посилання буде дійсне тільки протягом обмеженого часу. - + This is just the demo version of %1. Це демонстраційна версія %1. - + It allows you to test the application and see if it works for you. Ми маєте змогу протестувати програму та перевірити працездатність. - + Continue Продовжити - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Отримати повнофункціональну версію - + Downloading %1 Завантаження %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Помилка мережі %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 переглядів - + %1 of %2 (%3) — %4 - + - + Preparing Готується - + Failed Невдача - + Completed Завершено - + Stopped Зупинено - + Stop downloading Зупинити завантаження - + Show in %1 Відтворити в %1 - + Open parent folder Перейти до теки з відео - + Restart downloading Завантажити заново @@ -723,7 +854,7 @@ SearchLineEdit - + Search Пошук @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Ласкаво просимо до <a href='%1'>%2</a>, - + Get the full version - + - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" - + - + a keyword - + - + a channel - + - + to start watching videos. - + - + Watch Перегляд - + Recent keywords Недавній пошук - + Recent channels - - - - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Випущено нову версію %1. Будь ласка, <a href='%2'> оновіть програму до версії %3</a> + - + Make yourself comfortable Влаштовуйтеся якнайзручніше @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 - + - + Network error: %1 for %2 Помилка мережі: %1 для %2 diff -Nru minitube-1.5/locale/uk_UA.ts minitube-1.6/locale/uk_UA.ts --- minitube-1.5/locale/uk_UA.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/uk_UA.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! За межами браузеру існує життя! - + Version %1 Версія %1 - + %1 is Free Software but its development takes precious time. %1 — це вільне програмне забезпечення, але його розробка займає дорогоцінний час. - + Please <a href='%1'>donate</a> to support the continued development of %2. Будь ласка, <a href='%1'>внесіть пожертву</a>, щоб підтримати подальший розвиток %2. - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 Повідомляйте про помилки та пропонуйте свої ідеї на %1 - + Icon designed by %1. Піктограму намалював %1. - + Compact mode contributed by %1. Компактний режим розробив %1. - + HTTP proxy support contributed by %1. Підтримку HTTP-проксі розробив %1. - - Translated by %1 - Перекладали %1 - - - + Released under the <a href='%1'>GNU General Public License</a> Ліцензовано <a href='%1'>Загальною громадською ліцензією GNU</a> - + &Close &Закрити - + About Про програму - + What you always wanted to know about %1 and never dared to ask Все те, про %1, що ви завжди хотіли дізнатись, але не наважувалися спитати @@ -71,55 +86,93 @@ ClearButton - + Clear Очистити + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes байт - + KB КБ - + MB МБ - + bytes/sec байт/сек - + KB/sec КБ/сек - + MB/sec МБ/сек - + seconds секунд - + minutes хвилин - + %4 %5 remaining залишилось %4 %5 @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. Це всього лише демо-версія %1. - + It can only download videos shorter than %1 minutes so you can test the download functionality. З метою тестування можливо завантажувати відео лише з тривалістю до %1 хв. - + Continue Продовжити - + Get the full version Отримати повнофункціональну версію - + %n Download(s) %n Завантаження%n Завантаження%n Завантажень @@ -155,27 +208,27 @@ DownloadSettings - + Change location... Змінити теку… - + Choose the download location Оберіть теку для завантаження - + Download location changed. Теку завантаження змінено. - + Current downloads will still go in the previous location. Поточні завантаження все ще будуть збережені у попередньому місці. - + Downloading to: %1 Завантажуеться в %1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads Завантаження @@ -192,62 +245,62 @@ GlobalShortcuts - + Play Грати - + Pause Пауза - + Play/Pause Грати/Пауза - + Stop Зупинити - + Stop playing after current track Зупинити програвання по завершенні треку - + Next track Наступний трек - + Previous track Попередній трек - + Increase volume Збільшити гучність - + Decrease volume Зменшити гучність - + Mute Приглушити - + Seek forward Шукати наступне - + Seek backward Шукати попереднє @@ -255,22 +308,22 @@ ListModel - + Searching... Йде пошук… - + Show %1 More Показати ще %1 - + No videos Нема відео - + No more videos Більше немає відео @@ -278,7 +331,7 @@ LoadingWidget - + Error Помилка @@ -286,317 +339,372 @@ MainWindow - + &Stop &Зупинити - + Stop playback and go back to the search view Зупинити відтворення та повернутися до вікна пошуку - + S&kip П&ропустити - + Skip to the next video Перейти до наступного відео - - + + &Pause &Пауза - - + + Pause playback Призупинити відтворення - - + &Full Screen Н&а весь екран - + Go full screen Переключити на повноекранний режим - + &Compact mode &Компактний режим - + Hide the playlist and the toolbar Сховати плейлист і панель інструментів - + Open the &YouTube page Відкрити сторінку на &YouTube - + Go to the YouTube video page and pause playback Відкрити сторінку на YouTube та призупинити відтворення - + Copy the YouTube &link Скопіювати YouTube-по&силання - + Copy the current video YouTube link to the clipboard Скопіювати YouTube-посилання поточного відео в буфер - + Copy the video stream &URL Скопіювати URL ві&деопотоку - + Copy the current video stream URL to the clipboard Скопіювати URL поточного відеопотоку в буфер - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove &Вилучити - + Remove the selected videos from the playlist Вилучити вибрані відео з плейлисту - + Move &Up Зсув в&гору - + Move up the selected videos in the playlist Зсунути вибрані в плейлисті відео вгору - + Move &Down Зсунути вни&з - + Move down the selected videos in the playlist Зсунути вибрані в плейлисті відео вниз - + &Clear recent searches &Очистити історію недавніх пошуків - + Clear the search history. Cannot be undone. Очистити історію пошуку. Зміни необоротні. - + &Quit Ви&хід - + Ctrl+Q Ctrl+Q - + Bye До побачення - + &Website Са&йт - + %1 on the Web %1 в вебі - + Make a &donation Підтримати про&ект - + Please support the continued development of %1 Будь ласка, підтримайте подальший розвиток %1 - + &About &Про програму - + Info about %1 Інформація про %1 - + Search Пошук - + Mute volume Приглушити гучність - + Ctrl+M Ctrl+M - - + + &Downloads &Завантаження - + Show details about video downloads Показати подробиці про завантажувані відео - + &Download &Завантажити - + Download the current video Завантажити поточне відео - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application &Програма - + + &Playback + + + + &Playlist &Плейлист - + &Video В&ідео - + + &View + + + + + &Share + + + + &Help &Довідка - + Press %1 to raise the volume, %2 to lower it Натисніть %1, щоб збільшити гучність, а %2 — щоб знизити - - + + Opening %1 Відкриття %1 - + Do you want to exit %1 with a download in progress? Триває завантаження відео. Ви бажаєте закрити %1? - + If you close %1 now, this download will be cancelled. Якщо ви закриєте %1 прямо зараз, ці завантаження будуть скасовані. - + Close and cancel download Закрити та скасувати завантаження - + Wait for download to finish Дочекатися завершення завантаження - - Fatal error: %1 - Невиправна помилка: %1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 Помилка: %1 - + &Play Гр&ати - + Resume playback Відновити відтворення - - Exit &Full Screen - Вийти з поноекр&анного режиму - - - + Remaining time: %1 Залишилось часу: %1 - + Volume at %1% Гучність %1% - + Volume is muted Гучність приглушено - + Volume is unmuted Гучність відновлено - + Maximum video definition set to %1 Максимальна чіткість відео встановлена на %1 - + Your privacy is now safe Ваша конфіденційність зараз у безпеці - + Downloads complete Завантаження завершено @@ -604,57 +712,80 @@ MediaView - + Most relevant Подібні - + Most recent Недавні - + Most viewed Популярні - + You can now paste the YouTube link into another application Тепер ви можете вставити це посилання до іншої програми - + You can now paste the video stream URL into another application Тепер ви можете вставити URL відеопотоку до іншої програми - + The link will be valid only for a limited time. Посилання буде дійсне тільки протягом обмеженого часу. - + This is just the demo version of %1. Це всього лише демо-версія %1. - + It allows you to test the application and see if it works for you. Ви маете змогу протеступати програму та перевірити її працездатність. - + Continue Продовжити - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version Отримати повнофункціональну версію - + Downloading %1 Завантаження %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 Помилка мережі: %1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 переглядів - + %1 of %2 (%3) — %4 %1 з %2 (%3) — %4 - + Preparing Готується - + Failed Не вдалося - + Completed Завершено - + Stopped Зупинено - + Stop downloading Зупинити завантаження - + Show in %1 Показати у %1 - + Open parent folder Перейти до теки з відео - + Restart downloading Завантажити заново @@ -723,7 +854,7 @@ SearchLineEdit - + Search Пошук @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, Ласкаво просимо до <a href='%1'>%2</a>, - + Get the full version Отримати повнофункціональну версію - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" Введіть - + a keyword ключове слово - + a channel канал - + to start watching videos. , щоб почати дивитися відео. - + Watch Перегляд - + Recent keywords Останні ключові слова - + Recent channels Останні канали - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - Доступна нова версія %1. Будь ласка, <a href='%2'>оновіться до версії %3</a> - - - + Make yourself comfortable Влаштовуйтеся зручніше @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 Неможливо отримати відеопоток для %1 - + Network error: %1 for %2 Помилка мережі: %1 для %2 diff -Nru minitube-1.5/locale/zh_CN.ts minitube-1.6/locale/zh_CN.ts --- minitube-1.5/locale/zh_CN.ts 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/locale/zh_CN.ts 2011-10-28 20:38:22.000000000 +0000 @@ -3,67 +3,82 @@ AboutView - + There's life outside the browser! 浏览器之外,生活亦精彩! - + Version %1 版本:%1 - + %1 is Free Software but its development takes precious time. %1 是自由软件。其开发也同样要耗用宝贵时间的。 - + Please <a href='%1'>donate</a> to support the continued development of %2. 恭迎您慷慨<a href='%1'>捐赠</a>,支持我们继续开发 %2 。 - + + You may want to try my other apps as well: + + + + + %1, a YouTube music player + + + + + %1, a music player + + + + + Translate %1 to your native language using %2 + + + + Report bugs and send in your ideas to %1 软件错误和建议敬请发送到:%1 - + Icon designed by %1. 图标设计:%1。 - + Compact mode contributed by %1. 简洁模式贡献者:%1。 - + HTTP proxy support contributed by %1. HTTP代理支持贡献者:%1。 - - Translated by %1 - 翻译:%1 。 - - - + Released under the <a href='%1'>GNU General Public License</a> 本软件遵循<a href='%1'>GNU通用公共许可证</a>予以发布。 - + &Close 关闭(&C) - + About 关于 - + What you always wanted to know about %1 and never dared to ask 您对 %1 的期望都有什么,还请不吝赐教。 @@ -71,55 +86,93 @@ ClearButton - + Clear 清除 + DemoStartupView + + + Please license %1 + + + + + This demo has expired. + + + + + The full version allows you to download videos longer than %1 minutes and to watch videos without interruptions. + + + + + This demo will expire in %1 days. + + + + + By purchasing the full version, you will also support the hard work I put into creating %1. + + + + + Use Demo + + + + + Get the full version + + + + DownloadItem - + bytes 字节 - + KB 千字节 - + MB 兆字节 - + bytes/sec 字节/秒 - + KB/sec 千字节/秒 - + MB/sec 兆字节/秒 - + seconds - + minutes - + %4 %5 remaining %4 %5 剩余 @@ -127,27 +180,27 @@ DownloadManager - + This is just the demo version of %1. 这只是 %1 的演示版。 - + It can only download videos shorter than %1 minutes so you can test the download functionality. 本版本只能下载 %1 分钟以下的视频,仅用于测试下载功能。 - + Continue 继续 - + Get the full version 获取完整版 - + %n Download(s) 下载数:%n @@ -155,27 +208,27 @@ DownloadSettings - + Change location... 更改存储位置…… - + Choose the download location 选择下载存储位置 - + Download location changed. 下载存储位置已修改。 - + Current downloads will still go in the previous location. 当前下载仍然保持前一个存储位置。 - + Downloading to: %1 当前下载存储位置:%1 @@ -183,8 +236,8 @@ DownloadView - - + + Downloads 下载情况 @@ -192,62 +245,62 @@ GlobalShortcuts - + Play 播放 - + Pause 暂停 - + Play/Pause 播放/暂停 - + Stop 停止 - + Stop playing after current track 当前轨道后停止播放 - + Next track 下一轨道 - + Previous track 上一轨道 - + Increase volume 调高音量 - + Decrease volume 调低音量 - + Mute 静音 - + Seek forward 向前搜索 - + Seek backward 向后搜索 @@ -255,22 +308,22 @@ ListModel - + Searching... 搜索中…… - + Show %1 More 再多显示 %1 - + No videos 没有视频 - + No more videos 没有更多视频 @@ -278,7 +331,7 @@ LoadingWidget - + Error 错误 @@ -286,317 +339,372 @@ MainWindow - + &Stop 停止(&S) - + Stop playback and go back to the search view 停止回放并返回搜索视图 - + S&kip 跳过(&k) - + Skip to the next video 跳至下一视频 - - + + &Pause 暂停(&P) - - + + Pause playback 暂停回放 - - + &Full Screen 全屏(&F) - + Go full screen 全屏播放 - + &Compact mode 简洁模式(&C) - + Hide the playlist and the toolbar 隐藏播放列表和工具栏 - + Open the &YouTube page 打开YouTube页面(&Y) - + Go to the YouTube video page and pause playback 打开YouTube视频页面并暂停回放 - + Copy the YouTube &link 复制YouTube链接(&l) - + Copy the current video YouTube link to the clipboard 复制当前视频的YouTube链接到剪贴板中 - + Copy the video stream &URL 复制视频流的URL链接(&U) - + Copy the current video stream URL to the clipboard 复制当前视频流的URL到剪贴板中 - + + Find video &parts + + + + + Find other video parts hopefully in the right order + + + + &Remove 移除(&R) - + Remove the selected videos from the playlist 从播放列表中移除选定的视频 - + Move &Up 上移(&U) - + Move up the selected videos in the playlist 在播放列表中向上移动选定的视频 - + Move &Down 下移(&D) - + Move down the selected videos in the playlist 在播放列表中向下移动选定的视频 - + &Clear recent searches 清除最近的检索(&C) - + Clear the search history. Cannot be undone. 清除搜索历史。注意:清除的历史不可恢复。 - + &Quit 退出(&Q) - + Ctrl+Q - + - + Bye 再会 - + &Website 网站(&W) - + %1 on the Web %1在网站上 - + Make a &donation 敬请捐赠(&d) - + Please support the continued development of %1 请您支持 %1 的可持续发展。 - + &About 关于(&A) - + Info about %1 关于 %1 的信息 - + Search 搜索 - + Mute volume 静音 - + Ctrl+M - + - - + + &Downloads 下载(&D) - + Show details about video downloads 显示视频下载详情 - + &Download 下载(&D) - + Download the current video 下载当前视频 - + + Share the current video using %1 + + + + + &Email + + + + + Email + + + + &Application 应用程序(&A) - + + &Playback + + + + &Playlist 播放列表(&P) - + &Video 视频(&V) - + + &View + + + + + &Share + + + + &Help 帮助(&H) - + Press %1 to raise the volume, %2 to lower it 按住 %1 提高音量,%2 降低音量 - - + + Opening %1 正在打开 %1 - + Do you want to exit %1 with a download in progress? 当前还有尚未完成的下载。您确定要退出 %1 吗? - + If you close %1 now, this download will be cancelled. 如果您现在关闭 %1 ,那么本下载将被取消。 - + Close and cancel download 关闭并取消下载 - + Wait for download to finish 等待下载完成 - - Fatal error: %1 - 严重错误:%1 + + Leave &Full Screen + + + + + %1 version %2 is now available. + + + + + Remind me later + - + + + To get the updated version, download %1 again from the link you received via email and reinstall. + + + + + Update + + + + Error: %1 错误:%1 - + &Play 播放(&P) - + Resume playback 继续回放 - - Exit &Full Screen - 退出全屏(&F) - - - + Remaining time: %1 剩余时间:%1 - + Volume at %1% 音量:%1% - + Volume is muted 已设为静音 - + Volume is unmuted 静音已解除 - + Maximum video definition set to %1 最大视频定义设置为%1 - + Your privacy is now safe 您的隐私已受保护 - + Downloads complete 下载完成 @@ -604,57 +712,80 @@ MediaView - + Most relevant 相关最多 - + Most recent 最近 - + Most viewed 观看最多 - + You can now paste the YouTube link into another application 您现在可以把YouTube的链接粘贴到其他应用了 - + You can now paste the video stream URL into another application 您现在可以把视频流的链接粘贴到其他应用了 - + The link will be valid only for a limited time. 此链接仅能保持短时间的有效性。 - + This is just the demo version of %1. 这仅是 %1 的演示版。 - + It allows you to test the application and see if it works for you. 本版本允许您测试,以确认本应用是否适合您。 - + Continue 继续 - + + of + Used in video parts, as in '2 of 3' + + + + + part + This is for video parts, as in 'Cool video - part 1' + + + + + episode + This is for video parts, as in 'Cool series - episode 1' + + + + + Sent from %1 + + + + Get the full version 获取完整版 - + Downloading %1 正在下载 %1 @@ -662,7 +793,7 @@ NetworkAccess - + Network error: %1 网络错误:%1 @@ -670,52 +801,52 @@ PrettyItemDelegate - + %1 views %1 人次观看 - + %1 of %2 (%3) — %4 %1 之 %2 (%3) — %4 - + Preparing 准备中 - + Failed 已失败 - + Completed 已完成 - + Stopped 已停止 - + Stop downloading 停止下载 - + Show in %1 显示到 %1 - + Open parent folder 打开上层目录 - + Restart downloading 重新下载 @@ -723,7 +854,7 @@ SearchLineEdit - + Search 搜索 @@ -731,58 +862,53 @@ SearchView - + Welcome to <a href='%1'>%2</a>, 欢迎使用<a href='%1'>%2</a>! - + Get the full version 获取完整版 - + Enter "Enter", as in "type". The whole frase says: "Enter a keyword to start watching videos" 输入 - + a keyword 关键字 - + a channel 频道名称 - + to start watching videos. 开始观看视频。 - + Watch 观看 - + Recent keywords 最近关键字词 - + Recent channels 最近频道 - - A new version of %1 is available. Please <a href='%2'>update to version %3</a> - %1 已有新版本。敬请<a href='%2'>更新到版本 %3</a>。 - - - + Make yourself comfortable 请您尽情享受吧! @@ -790,12 +916,12 @@ Video - + Cannot get video stream for %1 无法获得视频流。可能原因:%1 - + Network error: %1 for %2 网络错误:%1。可能原因:%2 diff -Nru minitube-1.5/minitube.pro minitube-1.6/minitube.pro --- minitube-1.5/minitube.pro 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/minitube.pro 2011-10-28 20:38:22.000000000 +0000 @@ -1,9 +1,18 @@ CONFIG += release TEMPLATE = app -VERSION = 1.5 +VERSION = 1.6 DEFINES += APP_VERSION="$$VERSION" INCLUDEPATH += /usr/include/phonon +APP_NAME = Minitube +DEFINES += APP_NAME="$$APP_NAME" + +APP_UNIX_NAME = minitube +DEFINES += APP_UNIX_NAME="$$APP_UNIX_NAME" + +DEFINES += QT_USE_FAST_CONCATENATION +DEFINES += QT_USE_FAST_OPERATOR_PLUS + # TODO Saner string behaviour # DEFINES += QT_NO_CAST_FROM_ASCII QT_NO_CAST_TO_ASCII QT_STRICT_ITERATORS TARGET = minitube @@ -24,7 +33,6 @@ src/spacer.h \ src/constants.h \ src/iconloader/qticonloader.h \ - src/faderwidget/FaderWidget.h \ src/ListModel.h \ src/playlist/PrettyItemDelegate.h \ src/networkaccess.h \ @@ -51,7 +59,8 @@ src/downloadsettings.h \ src/youtubesuggest.h \ src/suggester.h \ - src/channelsuggest.h + src/channelsuggest.h \ + src/temporary.h SOURCES += src/main.cpp \ src/MainWindow.cpp \ src/SearchView.cpp \ @@ -64,7 +73,6 @@ src/spacer.cpp \ src/video.cpp \ src/iconloader/qticonloader.cpp \ - src/faderwidget/FaderWidget.cpp \ src/ListModel.cpp \ src/playlist/PrettyItemDelegate.cpp \ src/videomimedata.cpp \ @@ -90,7 +98,8 @@ src/downloadlistview.cpp \ src/downloadsettings.cpp \ src/youtubesuggest.cpp \ - src/channelsuggest.cpp + src/channelsuggest.cpp \ + src/temporary.cpp RESOURCES += resources.qrc DESTDIR = build/target/ OBJECTS_DIR = build/obj/ @@ -152,4 +161,4 @@ icon512.files += data/512x512/minitube.png } mac|win32:include(local/local.pri) -include(local/meego/meego.pri) + diff -Nru minitube-1.5/src/AboutView.cpp minitube-1.6/src/AboutView.cpp --- minitube-1.5/src/AboutView.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/AboutView.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -17,34 +17,44 @@ layout->setSpacing(30); aboutlayout->addLayout(layout); - QString info = "

" + QString(Constants::APP_NAME) + "

" - "

" + tr("There's life outside the browser!") + "

" - "

" + tr("Version %1").arg(Constants::VERSION) + "

" - + QString("

%1

").arg(Constants::WEBSITE) + -#if !defined(APP_MAC) && !defined(APP_WIN) - "

" + tr("%1 is Free Software but its development takes precious time.").arg(Constants::APP_NAME) + "
" - + tr("Please donate to support the continued development of %2.") - .arg(QString(Constants::WEBSITE).append("#donate"), Constants::APP_NAME) + "

" -#endif - "

" + tr("Report bugs and send in your ideas to %1") - .arg(QString("%1").arg(Constants::EMAIL)) + "

" - - "

" - + tr("Icon designed by %1.").arg("David Nel") - + "
" + tr("Compact mode contributed by %1.").arg("Stefan Brück") - + "
" + tr("HTTP proxy support contributed by %1.").arg("Kiwamu Okabe") - + "

" - - "

" + tr("Translated by the cool people at %1") - .arg("Transifex") - + "

" - -#if !defined(APP_MAC) && !defined(APP_WIN) - "

" + tr("Released under the GNU General Public License") - .arg("http://www.gnu.org/licenses/gpl.html") + "

" -#endif - "

© 2009-2011 " + Constants::ORG_NAME + "

" - "";; + QString info = "

" + QString(Constants::NAME) + "

" + "

" + tr("There's life outside the browser!") + "

" + "

" + tr("Version %1").arg(Constants::VERSION) + "

" + + QString("

%1

").arg(Constants::WEBSITE) + + + #if !defined(APP_MAC) && !defined(APP_WIN) + "

" + tr("%1 is Free Software but its development takes precious time.").arg(Constants::NAME) + "
" + + tr("Please donate to support the continued development of %2.") + .arg(QString(Constants::WEBSITE).append("#donate"), Constants::NAME) + "

" + #endif + + "

" + tr("You may want to try my other apps as well:") + "

" + + "
    " + + + "
  • " + tr("%1, a YouTube music player") + .arg("Musictube") + + "
  • " + + + "
  • " + tr("%1, a music player") + .arg("Musique") + + "
  • " + + + "
" + + "

" + tr("Translate %1 to your native language using %2").arg(Constants::NAME) + .arg("Transifex") + + "

" + + "

" + + tr("Icon designed by %1.").arg("David Nel") + + "

" + + #if !defined(APP_MAC) && !defined(APP_WIN) + "

" + tr("Released under the GNU General Public License") + .arg("http://www.gnu.org/licenses/gpl.html") + "

" + #endif + "

© 2009-2011 " + Constants::ORG_NAME + "

" + ""; QLabel *infoLabel = new QLabel(info, this); infoLabel->setOpenExternalLinks(true); infoLabel->setWordWrap(true); diff -Nru minitube-1.5/src/AboutView.h minitube-1.6/src/AboutView.h --- minitube-1.5/src/AboutView.h 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/AboutView.h 2011-10-28 20:38:22.000000000 +0000 @@ -18,7 +18,7 @@ metadata.insert("title", tr("About")); metadata.insert("description", tr("What you always wanted to know about %1 and never dared to ask") - .arg(Constants::APP_NAME)); + .arg(Constants::NAME)); return metadata; } diff -Nru minitube-1.5/src/constants.cpp minitube-1.6/src/constants.cpp --- minitube-1.5/src/constants.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/constants.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -4,7 +4,8 @@ #define STRINGIFY(x) STR(x) const char *Constants::VERSION = STRINGIFY(APP_VERSION); -const char *Constants::APP_NAME = "Minitube"; +const char *Constants::NAME = STRINGIFY(APP_NAME); +const char *Constants::UNIX_NAME = STRINGIFY(APP_UNIX_NAME); const char *Constants::ORG_NAME = "Flavio Tordini"; const char *Constants::ORG_DOMAIN = "flavio.tordini.org"; const char *Constants::WEBSITE = "http://flavio.tordini.org/minitube"; diff -Nru minitube-1.5/src/constants.h minitube-1.6/src/constants.h --- minitube-1.5/src/constants.h 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/constants.h 2011-10-28 20:38:22.000000000 +0000 @@ -8,7 +8,8 @@ public: static const char *VERSION; - static const char *APP_NAME; + static const char *NAME; + static const char *UNIX_NAME; static const char *ORG_NAME; static const char *ORG_DOMAIN; static const char *WEBSITE; diff -Nru minitube-1.5/src/downloaditem.cpp minitube-1.6/src/downloaditem.cpp --- minitube-1.5/src/downloaditem.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/downloaditem.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -3,6 +3,7 @@ #include "video.h" #include +#include namespace The { NetworkAccess* http(); @@ -131,12 +132,8 @@ void DownloadItem::error(QNetworkReply::NetworkError) { -#ifdef DOWNLOADMANAGER_DEBUG - qDebug() << "DownloadItem::" << __FUNCTION__ << m_reply->errorString() << m_url; -#endif - if (m_reply) { - qDebug() << m_reply->errorString(); + qWarning() << m_reply->errorString() << m_reply->url().toEncoded(); m_errorMessage = m_reply->errorString(); } @@ -181,6 +178,8 @@ void DownloadItem::downloadProgress(qint64 bytesReceived, qint64 bytesTotal) { + // qDebug() << bytesReceived << bytesTotal << m_downloadTime.elapsed(); + if (m_lastProgressTime.elapsed() < 150) return; m_lastProgressTime.start(); @@ -193,7 +192,7 @@ int bufferSize = initialBufferSize(); if (bytesReceived > bufferSize && bytesReceived > neededBytes - && m_downloadTime.elapsed() > 1000 ) { + && (m_downloadTime.elapsed() > 1000)) { emit bufferProgress(100); m_status = Downloading; emit statusChanged(); @@ -279,6 +278,10 @@ qDebug() << "Request finished but never started saving"; return; } + if (m_status == Starting) { + m_status = Downloading; + emit statusChanged(); + } m_file.close(); m_status = Finished; emit statusChanged(); diff -Nru minitube-1.5/src/downloadmanager.cpp minitube-1.6/src/downloadmanager.cpp --- minitube-1.5/src/downloadmanager.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/downloadmanager.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -44,7 +44,7 @@ if (video->duration() >= 60*4) { QMessageBox msgBox(dynamic_cast(parent())->window()); msgBox.setIconPixmap(QPixmap(":/images/app.png").scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - msgBox.setText(tr("This is just the demo version of %1.").arg(Constants::APP_NAME)); + msgBox.setText(tr("This is just the demo version of %1.").arg(Constants::NAME)); msgBox.setInformativeText( tr("It can only download videos shorter than %1 minutes so you can test the download functionality.") .arg(4)); @@ -52,13 +52,13 @@ // make it a "sheet" on the Mac msgBox.setWindowModality(Qt::WindowModal); - QPushButton *quitButton = msgBox.addButton(tr("Continue"), QMessageBox::RejectRole); + msgBox.addButton(tr("Continue"), QMessageBox::RejectRole); QPushButton *buyButton = msgBox.addButton(tr("Get the full version"), QMessageBox::ActionRole); msgBox.exec(); if (msgBox.clickedButton() == buyButton) { - QDesktopServices::openUrl(QString(Constants::WEBSITE) + "#download"); + QDesktopServices::openUrl(QUrl(QString(Constants::WEBSITE) + "#download")); } return; diff -Nru minitube-1.5/src/faderwidget/FaderWidget.cpp minitube-1.6/src/faderwidget/FaderWidget.cpp --- minitube-1.5/src/faderwidget/FaderWidget.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/faderwidget/FaderWidget.cpp 1970-01-01 00:00:00.000000000 +0000 @@ -1,29 +0,0 @@ -#include "FaderWidget.h" - -// http://labs.trolltech.com/blogs/2007/08/21/fade-effects-a-blast-from-the-past/ - -FaderWidget::FaderWidget(QWidget *parent) : QWidget(parent) { - timeLine = new QTimeLine(250, this); - timeLine->setFrameRange(1000, 0); - connect(timeLine, SIGNAL(frameChanged(int)), this, SLOT(update())); - setAttribute(Qt::WA_DeleteOnClose); - resize(parent->size()); -} - -void FaderWidget::start(QPixmap frozenView) { - this->frozenView = frozenView; - timeLine->start(); - show(); -} - -void FaderWidget::paintEvent(QPaintEvent *) { - const qreal opacity = timeLine->currentFrame() / 1000.; - QPainter painter(this); - painter.setOpacity(opacity); - painter.drawPixmap(0, 0, frozenView); - // qDebug() << opacity; - - if (opacity <= 0.) - close(); - -} diff -Nru minitube-1.5/src/faderwidget/FaderWidget.h minitube-1.6/src/faderwidget/FaderWidget.h --- minitube-1.5/src/faderwidget/FaderWidget.h 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/faderwidget/FaderWidget.h 1970-01-01 00:00:00.000000000 +0000 @@ -1,32 +0,0 @@ -#ifndef FADERWIDGET_H -#define FADERWIDGET_H - -#include - -class FaderWidget : public QWidget { - - Q_OBJECT - Q_PROPERTY(int fadeDuration READ fadeDuration WRITE setFadeDuration) - -public: - - FaderWidget(QWidget *parent); - - int fadeDuration() const { - return timeLine->duration(); - } - void setFadeDuration(int milliseconds) { - timeLine->setDuration(milliseconds); - } - void start(QPixmap frozenView); - -protected: - void paintEvent(QPaintEvent *event); - -private: - QTimeLine *timeLine; - QPixmap frozenView; - -}; - -#endif diff -Nru minitube-1.5/src/global.h minitube-1.6/src/global.h --- minitube-1.5/src/global.h 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/global.h 2011-10-28 20:38:22.000000000 +0000 @@ -76,10 +76,10 @@ QStringList http_proxy_list = http_proxy.split(QChar('@')); QStringList http_proxy_user_pass = http_proxy_list[0].split(QChar(':')); if (http_proxy_user_pass.size() > 0) { - proxy_user = http_proxy_user_pass[0]; + proxy_user = QUrl::fromPercentEncoding(http_proxy_user_pass[0].toUtf8()); } if (http_proxy_user_pass.size() == 2) { - proxy_pass = http_proxy_user_pass[1]; + proxy_pass = QUrl::fromPercentEncoding(http_proxy_user_pass[1].toUtf8()); } if (http_proxy_list.size() > 1) { http_proxy = http_proxy_list[1]; diff -Nru minitube-1.5/src/iconloader/qticonloader.cpp minitube-1.6/src/iconloader/qticonloader.cpp --- minitube-1.5/src/iconloader/qticonloader.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/iconloader/qticonloader.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -48,6 +48,9 @@ #include #include #include +#ifndef Q_WS_X11 +#include "extra.h" +#endif #ifdef Q_WS_X11 @@ -115,11 +118,7 @@ icon = QIcon::fromTheme(name); #endif #else - icon = QIcon(QString(":/images/%1.png").arg(name)); - if (!icon.isNull()) { - icon.addPixmap(QString(":/images/%1_active.png").arg(name), QIcon::Active); - icon.addPixmap(QString(":/images/%1_selected.png").arg(name), QIcon::Selected); - } + icon = Extra::getIcon(name); #endif return icon; diff -Nru minitube-1.5/src/ListModel.cpp minitube-1.6/src/ListModel.cpp --- minitube-1.5/src/ListModel.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/ListModel.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -203,7 +203,7 @@ // save keyword QString query = searchParams->keywords(); - if (!query.isEmpty()) { + if (!query.isEmpty() && !searchParams->isTransient()) { if (query.startsWith("http://")) { // Save the video title query += "|" + videos.first()->title(); @@ -219,7 +219,7 @@ // save channel QString channel = searchParams->author(); - if (!channel.isEmpty()) { + if (!channel.isEmpty() && !searchParams->isTransient()) { QSettings settings; QStringList channels = settings.value(recentChannelsKey).toStringList(); channels.removeAll(channel); diff -Nru minitube-1.5/src/main.cpp minitube-1.6/src/main.cpp --- minitube-1.5/src/main.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/main.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -3,16 +3,18 @@ #include "constants.h" #include "MainWindow.h" #include "searchparams.h" -#ifdef APP_MAC_STORE -#include "local/mac/mac_startup.h" +#ifdef Q_WS_MAC +#include "mac_startup.h" +#include "macfullscreen.h" #endif #ifdef APP_WIN #include "local/win/qtwin.h" #endif +#include "iconloader/qticonloader.h" int main(int argc, char **argv) { -#ifdef APP_MAC_STORE +#ifdef Q_WS_MAC mac::MacMain(); #endif @@ -20,13 +22,25 @@ if (app.sendMessage("Wake up!")) return 0; - app.setApplicationName(Constants::APP_NAME); + app.setApplicationName(Constants::NAME); app.setOrganizationName(Constants::ORG_NAME); app.setOrganizationDomain(Constants::ORG_DOMAIN); #ifndef APP_MAC app.setWheelScrollLines(1); #endif +#ifdef APP_MAC + QFile file(":/mac.css"); + file.open(QFile::ReadOnly); + app.setStyleSheet(QLatin1String(file.readAll())); +#endif + +#ifdef APP_WIN + QFile file(":/win.css"); + file.open(QFile::ReadOnly); + app.setStyleSheet(QLatin1String(file.readAll())); +#endif + const QString locale = QLocale::system().name(); // qt translations @@ -42,7 +56,7 @@ QString dataDir = ""; #endif QString localeDir = qApp->applicationDirPath() + QDir::separator() + "locale"; - if (!QFile::exists(localeDir)) { + if (!QDir(localeDir).exists()) { localeDir = dataDir + QDir::separator() + "locale"; } // qDebug() << "Using locale dir" << localeDir << locale; @@ -52,20 +66,28 @@ QTextCodec::setCodecForTr(QTextCodec::codecForName("utf8")); MainWindow mainWin; - mainWin.setWindowTitle(Constants::APP_NAME); + mainWin.setWindowTitle(Constants::NAME); + +#ifdef Q_WS_MAC + mac::SetupFullScreenWindow(mainWin.winId()); +#endif // no window icon on Mac #ifndef APP_MAC - if (!QFile::exists(dataDir)) { + QIcon appIcon; + if (QDir(dataDir).exists()) { + appIcon = QtIconLoader::icon(Constants::UNIX_NAME); + } else { dataDir = qApp->applicationDirPath() + "/data"; + const int iconSizes [] = { 16, 22, 32, 48, 64, 128, 256, 512 }; + for (int i = 0; i < 8; i++) { + QString size = QString::number(iconSizes[i]); + QString png = dataDir + "/" + size + "x" + size + "/" + Constants::UNIX_NAME + ".png"; + appIcon.addFile(png, QSize(iconSizes[i], iconSizes[i])); + } } - const int iconSizes [] = { 16, 22, 24, 32, 48, 64, 128, 256 }; - QIcon appIcon; - for (int i = 0; i < 8; i++) { - QString size = QString::number(iconSizes[i]); - QString png = dataDir + "/" + size + "x" + size + "/minitube.png"; - // qDebug() << png; - appIcon.addFile(png, QSize(iconSizes[i], iconSizes[i])); + if (appIcon.isNull()) { + appIcon.addFile(":/images/app.png"); } mainWin.setWindowIcon(appIcon); #endif @@ -92,5 +114,8 @@ mainWin.showMedia(searchParams); } + // Seed random number generator + qsrand(QDateTime::currentDateTime().toTime_t()); + return app.exec(); } diff -Nru minitube-1.5/src/MainWindow.cpp minitube-1.6/src/MainWindow.cpp --- minitube-1.5/src/MainWindow.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/MainWindow.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -9,18 +9,29 @@ #ifdef Q_WS_X11 #include "gnomeglobalshortcutbackend.h" #endif -#ifdef APP_MAC_STORE -#include "local/mac/mac_startup.h" +#ifdef Q_WS_MAC +#include "mac_startup.h" +#include "macfullscreen.h" +#include "macsupport.h" +#endif +#ifndef Q_WS_X11 +#include "extra.h" #endif #include "downloadmanager.h" #include "youtubesuggest.h" +#include "updatechecker.h" +#ifdef APP_DEMO +#include "demostartupview.h" +#endif +#include "temporary.h" MainWindow::MainWindow() : aboutView(0), downloadView(0), mediaObject(0), audioOutput(0), - m_fullscreen(false) { + m_fullscreen(false), + updateChecker(0) { // views mechanism history = new QStack(); @@ -63,7 +74,13 @@ readSettings(); // show the initial view - showWidget(searchView); +#ifdef APP_DEMO + QWidget *demoStartupView = new DemoStartupView(this); + views->addWidget(demoStartupView); + showWidget(demoStartupView); +#else + showSearch(); +#endif // Global shortcuts GlobalShortcuts &shortcuts = GlobalShortcuts::instance(); @@ -71,8 +88,8 @@ if (GnomeGlobalShortcutBackend::IsGsdAvailable()) shortcuts.setBackend(new GnomeGlobalShortcutBackend(&shortcuts)); #endif -#ifdef APP_MAC - // mac::MacSetup(); +#ifdef Q_WS_MAC + mac::MacSetup(); #endif connect(&shortcuts, SIGNAL(PlayPause()), pauseAct, SLOT(trigger())); connect(&shortcuts, SIGNAL(Stop()), this, SLOT(stop())); @@ -84,6 +101,9 @@ SLOT(downloadsFinished())); setAcceptDrops(true); + + QTimer::singleShot(0, this, SLOT(checkForUpdate())); + } MainWindow::~MainWindow() { @@ -91,6 +111,7 @@ } bool MainWindow::eventFilter(QObject *obj, QEvent *event) { +#ifdef Q_WS_X11 if (event->type() == QEvent::MouseMove && this->m_fullscreen) { QMouseEvent *mouseEvent = static_cast (event); int x = mouseEvent->pos().x(); @@ -101,6 +122,7 @@ if (x < 0) this->mediaView->setPlaylistVisible(false); } +#endif if (event->type() == QEvent::ToolTip) { // kill tooltips @@ -137,7 +159,13 @@ fullscreenAct = new QAction(QtIconLoader::icon("view-fullscreen"), tr("&Full Screen"), this); fullscreenAct->setStatusTip(tr("Go full screen")); - fullscreenAct->setShortcut(QKeySequence(Qt::ALT + Qt::Key_Return)); + QList fsShortcuts; +#ifdef APP_MAC + fsShortcuts << QKeySequence(Qt::CTRL + Qt::META + Qt::Key_F); +#else + fsShortcuts << QKeySequence(Qt::Key_F11); +#endif + fullscreenAct->setShortcuts(fsShortcuts); fullscreenAct->setShortcutContext(Qt::ApplicationShortcut); #if QT_VERSION >= 0x040600 fullscreenAct->setPriority(QAction::LowPriority); @@ -147,7 +175,11 @@ compactViewAct = new QAction(tr("&Compact mode"), this); compactViewAct->setStatusTip(tr("Hide the playlist and the toolbar")); - compactViewAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_Return)); +#ifdef APP_MAC + compactViewAct->setShortcut(QKeySequence(Qt::CTRL + Qt::META + Qt::Key_C)); +#else + compactViewAct->setShortcut(QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_C)); +#endif compactViewAct->setCheckable(true); compactViewAct->setChecked(false); compactViewAct->setEnabled(false); @@ -175,6 +207,13 @@ actions->insert("videolink", copyLinkAct); connect(copyLinkAct, SIGNAL(triggered()), mediaView, SLOT(copyVideoLink())); + findVideoPartsAct = new QAction(tr("Find video &parts"), this); + findVideoPartsAct->setStatusTip(tr("Find other video parts hopefully in the right order")); + findVideoPartsAct->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_P)); + findVideoPartsAct->setEnabled(false); + connect(findVideoPartsAct, SIGNAL(triggered()), mediaView, SLOT(findVideoParts())); + actions->insert("findVideoParts", findVideoPartsAct); + removeAct = new QAction(tr("&Remove"), this); removeAct->setStatusTip(tr("Remove the selected videos from the playlist")); removeAct->setShortcuts(QList() << QKeySequence("Del") << QKeySequence("Backspace")); @@ -215,20 +254,20 @@ siteAct = new QAction(tr("&Website"), this); siteAct->setShortcut(QKeySequence::HelpContents); - siteAct->setStatusTip(tr("%1 on the Web").arg(Constants::APP_NAME)); + siteAct->setStatusTip(tr("%1 on the Web").arg(Constants::NAME)); actions->insert("site", siteAct); connect(siteAct, SIGNAL(triggered()), this, SLOT(visitSite())); #if !defined(APP_MAC) && !defined(APP_WIN) donateAct = new QAction(tr("Make a &donation"), this); - donateAct->setStatusTip(tr("Please support the continued development of %1").arg(Constants::APP_NAME)); + donateAct->setStatusTip(tr("Please support the continued development of %1").arg(Constants::NAME)); actions->insert("donate", donateAct); connect(donateAct, SIGNAL(triggered()), this, SLOT(donate())); #endif aboutAct = new QAction(tr("&About"), this); aboutAct->setMenuRole(QAction::AboutRole); - aboutAct->setStatusTip(tr("Info about %1").arg(Constants::APP_NAME)); + aboutAct->setStatusTip(tr("Info about %1").arg(Constants::NAME)); actions->insert("about", aboutAct); connect(aboutAct, SIGNAL(triggered()), this, SLOT(about())); @@ -310,6 +349,23 @@ connect(action, SIGNAL(triggered()), mediaView, SLOT(downloadVideo())); actions->insert("download", action); + QString shareTip = tr("Share the current video using %1"); + + action = new QAction("&Twitter", this); + action->setStatusTip(shareTip.arg("Twitter")); + actions->insert("twitter", action); + connect(action, SIGNAL(triggered()), mediaView, SLOT(shareViaTwitter())); + + action = new QAction("&Facebook", this); + action->setStatusTip(shareTip.arg("Facebook")); + actions->insert("facebook", action); + connect(action, SIGNAL(triggered()), mediaView, SLOT(shareViaFacebook())); + + action = new QAction(tr("&Email"), this); + action->setStatusTip(shareTip.arg(tr("Email"))); + actions->insert("email", action); + connect(action, SIGNAL(triggered()), mediaView, SLOT(shareViaEmail())); + // common action properties foreach (QAction *action, actions->values()) { @@ -349,6 +405,15 @@ #endif fileMenu->addAction(quitAct); + QMenu* playbackMenu = menuBar()->addMenu(tr("&Playback")); + menus->insert("playback", playbackMenu); + playbackMenu->addAction(stopAct); + playbackMenu->addAction(pauseAct); + playbackMenu->addAction(skipAct); +#ifdef APP_MAC + MacSupport::dockMenu(playbackMenu); +#endif + playlistMenu = menuBar()->addMenu(tr("&Playlist")); menus->insert("playlist", playlistMenu); playlistMenu->addAction(removeAct); @@ -356,28 +421,29 @@ playlistMenu->addAction(moveUpAct); playlistMenu->addAction(moveDownAct); - viewMenu = menuBar()->addMenu(tr("&Video")); - menus->insert("video", viewMenu); - viewMenu->addAction(stopAct); - viewMenu->addAction(pauseAct); - viewMenu->addAction(skipAct); -#ifndef APP_NO_DOWNLOADS - viewMenu->addSeparator(); - viewMenu->addAction(The::globalActions()->value("download")); -#endif - viewMenu->addSeparator(); - viewMenu->addAction(webPageAct); - viewMenu->addAction(copyPageAct); + QMenu* videoMenu = menuBar()->addMenu(tr("&Video")); + menus->insert("video", videoMenu); + videoMenu->addAction(findVideoPartsAct); + videoMenu->addSeparator(); + videoMenu->addAction(webPageAct); #ifndef APP_NO_DOWNLOADS - viewMenu->addAction(copyLinkAct); + videoMenu->addSeparator(); + videoMenu->addAction(The::globalActions()->value("download")); + videoMenu->addAction(copyLinkAct); #endif - viewMenu->addSeparator(); - viewMenu->addAction(compactViewAct); + + QMenu* viewMenu = menuBar()->addMenu(tr("&View")); + menus->insert("view", viewMenu); viewMenu->addAction(fullscreenAct); -#ifdef APP_MAC - extern void qt_mac_set_dock_menu(QMenu *); - qt_mac_set_dock_menu(viewMenu); -#endif + viewMenu->addAction(compactViewAct); + + QMenu* shareMenu = menuBar()->addMenu(tr("&Share")); + menus->insert("share", shareMenu); + shareMenu->addAction(copyPageAct); + shareMenu->addSeparator(); + shareMenu->addAction(The::globalActions()->value("twitter")); + shareMenu->addAction(The::globalActions()->value("facebook")); + shareMenu->addAction(The::globalActions()->value("email")); helpMenu = menuBar()->addMenu(tr("&Help")); helpMenu->addAction(siteAct); @@ -394,14 +460,6 @@ mainToolBar = new QToolBar(this); #if QT_VERSION < 0x040600 | defined(APP_MAC) mainToolBar->setToolButtonStyle(Qt::ToolButtonIconOnly); -#elif defined(APP_WIN) - mainToolBar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); - mainToolBar->setStyleSheet( - "QToolBar {" - "background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #fafcfd, stop:.5 #e6f0fa, stop:.51 #dde9f7, stop:1 #dde9f7);" - "border: 0;" - "border-bottom: 1px solid #a0afc3;" - "}"); #else mainToolBar->setToolButtonStyle(Qt::ToolButtonFollowStyle); #endif @@ -415,7 +473,13 @@ mainToolBar->addAction(stopAct); mainToolBar->addAction(pauseAct); mainToolBar->addAction(skipAct); - mainToolBar->addAction(fullscreenAct); + + bool addFullScreenAct = true; +#ifdef Q_WS_MAC + addFullScreenAct = !mac::CanGoFullScreen(winId()); +#endif + if (addFullScreenAct) mainToolBar->addAction(fullscreenAct); + #ifndef APP_NO_DOWNLOADS mainToolBar->addAction(The::globalActions()->value("download")); #endif @@ -475,11 +539,6 @@ } void MainWindow::createStatusBar() { - - // remove ugly borders on OSX - // also remove excessive spacing - statusBar()->setStyleSheet("::item{border:0 solid} QToolBar {padding:0;spacing:0;margin:0;border:0}"); - QToolBar *toolBar = new QToolBar(this); toolBar->setToolButtonStyle(Qt::ToolButtonTextBesideIcon); toolBar->setIconSize(QSize(16, 16)); @@ -487,7 +546,6 @@ // toolBar->addAction(The::globalActions()->value("autoplay")); toolBar->addAction(The::globalActions()->value("definition")); statusBar()->addPermanentWidget(toolBar); - statusBar()->show(); } @@ -495,12 +553,7 @@ QSettings settings; restoreGeometry(settings.value("geometry").toByteArray()); #ifdef APP_MAC - if (!isMaximized()) -#ifdef QT_MAC_USE_COCOA - move(x(), y() + 10); -#else - move(x(), y() + mainToolBar->height() + 8); -#endif + MacSupport::fixGeometry(this); #endif setDefinitionMode(settings.value("definition", VideoDefinition::getDefinitionNames().first()).toString()); audioOutput->setVolume(settings.value("volume", 1).toDouble()); @@ -547,16 +600,22 @@ QString windowTitle = metadata.value("title").toString(); if (windowTitle.length()) windowTitle += " - "; - setWindowTitle(windowTitle + Constants::APP_NAME); + setWindowTitle(windowTitle + Constants::NAME); statusBar()->showMessage((metadata.value("description").toString())); } stopAct->setEnabled(widget == mediaView); - fullscreenAct->setEnabled(widget == mediaView); compactViewAct->setEnabled(widget == mediaView); webPageAct->setEnabled(widget == mediaView); copyPageAct->setEnabled(widget == mediaView); copyLinkAct->setEnabled(widget == mediaView); + findVideoPartsAct->setEnabled(widget == mediaView); + toolbarSearch->setEnabled(widget == searchView || widget == mediaView || widget == downloadView); + + The::globalActions()->value("twitter")->setEnabled(widget == mediaView); + The::globalActions()->value("facebook")->setEnabled(widget == mediaView); + The::globalActions()->value("email")->setEnabled(widget == mediaView); + aboutAct->setEnabled(widget != aboutView); The::globalActions()->value("download")->setEnabled(widget == mediaView); The::globalActions()->value("downloads")->setChecked(widget == downloadView); @@ -572,25 +631,13 @@ QWidget *oldWidget = views->currentWidget(); views->setCurrentWidget(widget); -#if defined(APP_MAC) || defined(APP_WIN) - // crossfade only on OSX - // where we can be sure of video performance - fadeInWidget(oldWidget, widget); +#ifndef Q_WS_X11 + Extra::fadeInWidget(oldWidget, widget); #endif history->push(widget); } -void MainWindow::fadeInWidget(QWidget *oldWidget, QWidget *newWidget) { - if (faderWidget) faderWidget->close(); - if (!oldWidget || !newWidget) { - // qDebug() << "no widgets"; - return; - } - faderWidget = new FaderWidget(newWidget); - faderWidget->start(QPixmap::grabWidget(oldWidget)); -} - void MainWindow::about() { if (!aboutView) { aboutView = new AboutView(this); @@ -613,6 +660,7 @@ void MainWindow::quit() { writeSettings(); + Temporary::deleteAll(); qApp->quit(); } @@ -620,8 +668,8 @@ if (DownloadManager::instance()->activeItems() > 0) { QMessageBox msgBox; msgBox.setIconPixmap(QPixmap(":/images/app.png").scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - msgBox.setText(tr("Do you want to exit %1 with a download in progress?").arg(Constants::APP_NAME)); - msgBox.setInformativeText(tr("If you close %1 now, this download will be cancelled.").arg(Constants::APP_NAME)); + msgBox.setText(tr("Do you want to exit %1 with a download in progress?").arg(Constants::NAME)); + msgBox.setInformativeText(tr("If you close %1 now, this download will be cancelled.").arg(Constants::NAME)); msgBox.setModal(true); msgBox.addButton(tr("Close and cancel download"), QMessageBox::RejectRole); @@ -712,59 +760,51 @@ showSearch(); } +void MainWindow::resizeEvent(QResizeEvent*) { +#ifdef Q_WS_MAC + if (mac::CanGoFullScreen(winId())) { + bool isFullscreen = mac::IsFullScreen(winId()); + if (isFullscreen != m_fullscreen) { + m_fullscreen = isFullscreen; + updateUIForFullscreen(); + } + } +#endif +} + void MainWindow::fullscreen() { - // No compact view action when in full screen - compactViewAct->setVisible(m_fullscreen); - compactViewAct->setChecked(false); +#ifdef Q_WS_MAC + WId handle = winId(); + if (mac::CanGoFullScreen(handle)) { + mac::ToggleFullScreen(handle); + return; + } +#endif - // Also no Youtube action since it opens a new window - webPageAct->setVisible(m_fullscreen); - copyPageAct->setVisible(m_fullscreen); - copyLinkAct->setVisible(m_fullscreen); - - stopAct->setVisible(m_fullscreen); - - // workaround: prevent focus on the search bar - // it steals the Space key needed for Play/Pause - toolbarSearch->setVisible(m_fullscreen); - toolbarSearch->setEnabled(m_fullscreen); + m_fullscreen = !m_fullscreen; - // Hide anything but the video - mediaView->setPlaylistVisible(m_fullscreen); - statusBar()->setVisible(m_fullscreen); + if (m_fullscreen) { + // Enter full screen -#ifndef APP_MAC - menuBar()->setVisible(m_fullscreen); -#endif + m_maximized = isMaximized(); -#ifdef APP_MAC - // make the actions work when video is fullscreen (on the Mac) - QMap *actions = The::globalActions(); - foreach (QAction *action, actions->values()) { - if (m_fullscreen) { - action->setShortcutContext(Qt::WindowShortcut); - } else { - action->setShortcutContext(Qt::ApplicationShortcut); - } - } -#endif + // save geometry now, if the user quits when in full screen + // geometry won't be saved + writeSettings(); - if (m_fullscreen) { +#ifdef Q_WS_MAC + MacSupport::enterFullScreen(this, views); +#else + mainToolBar->hide(); + showFullScreen(); +#endif + } else { // Exit full screen - // use setShortcuts instead of setShortcut - // the latter seems not to work - fullscreenAct->setShortcuts(QList() << QKeySequence(Qt::ALT + Qt::Key_Return)); - fullscreenAct->setText(tr("&Full Screen")); - stopAct->setShortcuts(QList() << QKeySequence(Qt::Key_Escape) << QKeySequence(Qt::Key_MediaStop)); - -#ifdef APP_MAC - setCentralWidget(views); - views->showNormal(); - show(); - mediaView->setFocus(); +#ifdef Q_WS_MAC + MacSupport::exitFullScreen(this, views); #else mainToolBar->show(); if (m_maximized) showMaximized(); @@ -774,65 +814,104 @@ // Make sure the window has focus activateWindow(); - } else { + } - // Enter full screen + updateUIForFullscreen(); - stopAct->setShortcuts(QList() << QKeySequence(Qt::Key_MediaStop)); - fullscreenAct->setShortcuts(QList() << QKeySequence(Qt::Key_Escape) << QKeySequence(Qt::ALT + Qt::Key_Return)); - fullscreenAct->setText(tr("Exit &Full Screen")); - m_maximized = isMaximized(); +} - // save geometry now, if the user quits when in full screen - // geometry won't be saved - writeSettings(); +void MainWindow::updateUIForFullscreen() { + static QList fsShortcuts; + static QString fsText; -#ifdef APP_MAC - hide(); - views->setParent(0); - QTimer::singleShot(0, views, SLOT(showFullScreen())); -#else - mainToolBar->hide(); - showFullScreen(); + if (m_fullscreen) { + fsShortcuts = fullscreenAct->shortcuts(); + fsText = fullscreenAct->text(); + fullscreenAct->setShortcuts(QList(fsShortcuts) + << QKeySequence(Qt::Key_Escape)); + fullscreenAct->setText(tr("Leave &Full Screen")); + } else { + fullscreenAct->setShortcuts(fsShortcuts); + fullscreenAct->setText(fsText); + } + + // No compact view action when in full screen + compactViewAct->setVisible(!m_fullscreen); + compactViewAct->setChecked(false); + + // Hide anything but the video + mediaView->setPlaylistVisible(!m_fullscreen); + statusBar()->setVisible(!m_fullscreen); + +#ifndef APP_MAC + menuBar()->setVisible(!m_fullscreen); #endif + if (m_fullscreen) { + stopAct->setShortcuts(QList() << QKeySequence(Qt::Key_MediaStop)); + } else { + stopAct->setShortcuts(QList() << QKeySequence(Qt::Key_Escape) << QKeySequence(Qt::Key_MediaStop)); } - m_fullscreen = !m_fullscreen; +#ifdef Q_WS_MAC + MacSupport::fullScreenActions(The::globalActions()->values(), m_fullscreen); +#endif + if (views->currentWidget() == mediaView) + mediaView->setFocus(); } void MainWindow::compactView(bool enable) { - mediaView->setPlaylistVisible(!enable); - statusBar()->setVisible(!enable); + static QList compactShortcuts; + static QList stopShortcuts; + + /* + const static QString key = "compactGeometry"; + QSettings settings; + */ #ifndef APP_MAC menuBar()->setVisible(!enable); #endif if (enable) { - stopAct->setShortcuts(QList() << QKeySequence(Qt::Key_MediaStop)); - compactViewAct->setShortcuts( - QList() << QKeySequence(Qt::CTRL + Qt::Key_Return) - << QKeySequence(Qt::Key_Escape)); + /* + writeSettings(); + restoreGeometry(settings.value(key).toByteArray()); + */ + + compactShortcuts = compactViewAct->shortcuts(); + stopShortcuts = stopAct->shortcuts(); + + QList newStopShortcuts(stopShortcuts); + newStopShortcuts.removeAll(QKeySequence(Qt::Key_Escape)); + stopAct->setShortcuts(newStopShortcuts); + compactViewAct->setShortcuts(QList(compactShortcuts) << QKeySequence(Qt::Key_Escape)); // ensure focus does not end up to the search box // as it would steal the Space shortcut mediaView->setFocus(); } else { - compactViewAct->setShortcuts(QList() << QKeySequence(Qt::CTRL + Qt::Key_Return)); - stopAct->setShortcuts(QList() << QKeySequence(Qt::Key_Escape) << QKeySequence(Qt::Key_MediaStop)); + /* + settings.setValue(key, saveGeometry()); + readSettings(); + */ + + compactViewAct->setShortcuts(compactShortcuts); + stopAct->setShortcuts(stopShortcuts); } + mainToolBar->setVisible(!enable); + mediaView->setPlaylistVisible(!enable); + statusBar()->setVisible(!enable); + } void MainWindow::searchFocus() { QWidget *view = views->currentWidget(); - if (view == mediaView) { - toolbarSearch->selectAll(); - toolbarSearch->setFocus(); - } + toolbarSearch->selectAll(); + toolbarSearch->setFocus(); } void MainWindow::initPhonon() { @@ -855,7 +934,9 @@ void MainWindow::tick(qint64 time) { if (time <= 0) { - currentTime->clear(); + // the "if" is important because tick is continually called + // and we don't want to paint the toolbar every 100ms + if (!currentTime->text().isEmpty()) currentTime->clear(); return; } @@ -960,8 +1041,6 @@ void MainWindow::showFullscreenToolbar(bool show) { if (!m_fullscreen) return; mainToolBar->setVisible(show); - toolbarSearch->setVisible(show); - toolbarSearch->setEnabled(show); } void MainWindow::showFullscreenPlaylist(bool show) { @@ -1056,3 +1135,73 @@ showMedia(searchParams); } } + +void MainWindow::checkForUpdate() { + static const QString updateCheckKey = "updateCheck"; + + // check every 24h + QSettings settings; + uint unixTime = QDateTime::currentDateTime().toTime_t(); + int lastCheck = settings.value(updateCheckKey).toInt(); + int secondsSinceLastCheck = unixTime - lastCheck; + // qDebug() << "secondsSinceLastCheck" << unixTime << lastCheck << secondsSinceLastCheck; + if (secondsSinceLastCheck < 86400) return; + + // check it out + if (updateChecker) delete updateChecker; + updateChecker = new UpdateChecker(); + connect(updateChecker, SIGNAL(newVersion(QString)), + this, SLOT(gotNewVersion(QString))); + updateChecker->checkForUpdate(); + settings.setValue(updateCheckKey, unixTime); + +} + +void MainWindow::gotNewVersion(QString version) { + if (updateChecker) { + delete updateChecker; + updateChecker = 0; + } + +#if defined(APP_DEMO) || defined(APP_MAC_STORE) + return; +#endif + + QSettings settings; + QString checkedVersion = settings.value("checkedVersion").toString(); + if (checkedVersion == version) return; + + QMessageBox msgBox(this); + msgBox.setIconPixmap(QPixmap(":/images/app.png").scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); + msgBox.setText(tr("%1 version %2 is now available.").arg(Constants::NAME, version)); + + msgBox.setModal(true); + // make it a "sheet" on the Mac + msgBox.setWindowModality(Qt::WindowModal); + + QPushButton* laterButton = 0; + QPushButton* updateButton = 0; + +#if defined(APP_MAC) || defined(APP_WIN) + msgBox.setInformativeText( + tr("To get the updated version, download %1 again from the link you received via email and reinstall.") + .arg(Constants::NAME) + ); + laterButton = msgBox.addButton(tr("Remind me later"), QMessageBox::RejectRole); + msgBox.addButton(QMessageBox::Ok); +#else + msgBox.addButton(QMessageBox::Close); + updateButton = msgBox.addButton(tr("Update"), QMessageBox::AcceptRole); +#endif + + msgBox.exec(); + + if (msgBox.clickedButton() != laterButton) { + settings.setValue("checkedVersion", version); + } + + if (updateButton && msgBox.clickedButton() == updateButton) { + QDesktopServices::openUrl(QUrl(QLatin1String(Constants::WEBSITE) + "#download")); + } + +} diff -Nru minitube-1.5/src/MainWindow.h minitube-1.6/src/MainWindow.h --- minitube-1.5/src/MainWindow.h 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/MainWindow.h 2011-10-28 20:38:22.000000000 +0000 @@ -2,7 +2,6 @@ #define MAINWINDOW_H #include -#include "faderwidget/FaderWidget.h" #include "searchlineedit.h" #include #include @@ -14,6 +13,8 @@ #include "AboutView.h" #include "downloadview.h" +class UpdateChecker; + class MainWindow : public QMainWindow { Q_OBJECT @@ -31,9 +32,11 @@ bool eventFilter(QObject *obj, QEvent *event); void dragEnterEvent(QDragEnterEvent *event); void dropEvent(QDropEvent *event); + void resizeEvent(QResizeEvent *); private slots: - void fadeInWidget(QWidget *oldWidget, QWidget *newWidget); + void checkForUpdate(); + void gotNewVersion(QString version); void goBack(); void showSearch(); void visitSite(); @@ -41,6 +44,7 @@ void about(); void quit(); void fullscreen(); + void updateUIForFullscreen(); void compactView(bool enable); void stop(); void stateChanged(Phonon::State newState, Phonon::State oldState); @@ -80,8 +84,9 @@ void showWidget(QWidget*); static QString formatTime(qint64 time); + UpdateChecker *updateChecker; + // view mechanism - QPointer faderWidget; QStackedWidget *views; QStack *history; @@ -112,6 +117,7 @@ QAction *volumeUpAct; QAction *volumeDownAct; QAction *volumeMuteAct; + QAction *findVideoPartsAct; // playlist actions QAction *removeAct; @@ -132,7 +138,6 @@ // phonon Phonon::SeekSlider *seekSlider; - // QSlider *slider; Phonon::VolumeSlider *volumeSlider; Phonon::MediaObject *mediaObject; Phonon::AudioOutput *audioOutput; diff -Nru minitube-1.5/src/MediaView.cpp minitube-1.6/src/MediaView.cpp --- minitube-1.5/src/MediaView.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/MediaView.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -7,15 +7,16 @@ #include "downloadmanager.h" #include "downloaditem.h" #include "MainWindow.h" +#include "temporary.h" namespace The { - NetworkAccess* http(); +NetworkAccess* http(); } namespace The { - QMap* globalActions(); - QMap* globalMenus(); - QNetworkAccessManager* networkAccessManager(); +QMap* globalActions(); +QMap* globalMenus(); +QNetworkAccessManager* networkAccessManager(); } MediaView::MediaView(QWidget *parent) : QWidget(parent) { @@ -89,7 +90,7 @@ videoAreaWidget = new VideoAreaWidget(this); videoAreaWidget->setMinimumSize(320,240); -#ifdef APP_MAC +#ifdef APP_MAC_NO // mouse autohide does not work on the Mac (no mouseMoveEvent) videoWidget = new Phonon::VideoWidget(this); #else @@ -107,6 +108,9 @@ layout->addWidget(splitter); setLayout(layout); + splitter->setStretchFactor(0, 1); + splitter->setStretchFactor(1, 6); + // restore splitter state QSettings settings; splitter->restoreState(settings.value("splitter").toByteArray()); @@ -131,9 +135,12 @@ void MediaView::initialize() { connect(videoAreaWidget, SIGNAL(doubleClicked()), The::globalActions()->value("fullscreen"), SLOT(trigger())); + + /* videoAreaWidget->setContextMenuPolicy(Qt::CustomContextMenu); connect(videoAreaWidget, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(showVideoContextMenu(QPoint))); + */ } void MediaView::setMediaObject(Phonon::MediaObject *mediaObject) { @@ -184,8 +191,8 @@ } // also hide sidebar - playlistWidget->hide(); - } else playlistWidget->show(); + // playlistWidget->hide(); + } // tr("You're watching \"%1\"").arg(searchParams->keywords()) } @@ -194,11 +201,9 @@ timerPlayFlag = true; } -void MediaView::handleError(QString message) { - // if (message.indexOf("movie atom") != -1 || message.indexOf("Could not open") != -1) { - QTimer::singleShot(1000, this, SLOT(startPlaying())); - return; - // } +void MediaView::handleError(QString /* message */) { + + QTimer::singleShot(100, this, SLOT(startPlaying())); /* videoAreaWidget->showError(message); @@ -242,25 +247,26 @@ break; - case Phonon::PausedState: + case Phonon::PausedState: qDebug("paused"); break; - case Phonon::BufferingState: + case Phonon::BufferingState: qDebug("buffering"); break; - case Phonon::LoadingState: + case Phonon::LoadingState: qDebug("loading"); break; - default: + default: ; } } void MediaView::pause() { // qDebug() << "pause() called" << mediaObject->state(); + switch( mediaObject->state() ) { case Phonon::PlayingState: mediaObject->pause(); @@ -269,6 +275,11 @@ mediaObject->play(); break; } + +} + +QRegExp MediaView::wordRE(QString s) { + return QRegExp("\\W" + s + "\\W?", Qt::CaseInsensitive); } void MediaView::stop() { @@ -308,9 +319,9 @@ // immediately show the loading widget videoAreaWidget->showLoading(video); - connect(video, SIGNAL(gotStreamUrl(QUrl)), SLOT(gotStreamUrl(QUrl))); + connect(video, SIGNAL(gotStreamUrl(QUrl)), SLOT(gotStreamUrl(QUrl)), Qt::UniqueConnection); // TODO handle signal in a proper slot and impl item error status - connect(video, SIGNAL(errorStreamUrl(QString)), SLOT(handleError(QString))); + connect(video, SIGNAL(errorStreamUrl(QString)), SLOT(handleError(QString)), Qt::UniqueConnection); video->loadStreamUrl(); @@ -344,16 +355,7 @@ } video->disconnect(this); - - QString tempDir = QDesktopServices::storageLocation(QDesktopServices::TempLocation); -#ifdef Q_WS_X11 - QString tempFile = tempDir + "/minitube-" + getenv("USERNAME") + ".mp4"; -#else - QString tempFile = tempDir + "/minitube.mp4"; -#endif - if (QFile::exists(tempFile) && !QFile::remove(tempFile)) { - qDebug() << "Cannot remove temp file"; - } + QString tempFile = Temporary::filename(); Video *videoCopy = video->clone(); if (downloadItem) { @@ -361,12 +363,12 @@ delete downloadItem; } downloadItem = new DownloadItem(videoCopy, streamUrl, tempFile, this); - connect(downloadItem, SIGNAL(statusChanged()), SLOT(downloadStatusChanged())); + connect(downloadItem, SIGNAL(statusChanged()), SLOT(downloadStatusChanged()), Qt::UniqueConnection); // connect(downloadItem, SIGNAL(progress(int)), SLOT(downloadProgress(int))); - connect(downloadItem, SIGNAL(bufferProgress(int)), loadingWidget, SLOT(bufferStatus(int))); + connect(downloadItem, SIGNAL(bufferProgress(int)), loadingWidget, SLOT(bufferStatus(int)), Qt::UniqueConnection); // connect(downloadItem, SIGNAL(finished()), SLOT(itemFinished())); - connect(video, SIGNAL(errorStreamUrl(QString)), SLOT(handleError(QString))); - connect(downloadItem, SIGNAL(error(QString)), SLOT(handleError(QString))); + connect(video, SIGNAL(errorStreamUrl(QString)), SLOT(handleError(QString)), Qt::UniqueConnection); + connect(downloadItem, SIGNAL(error(QString)), SLOT(handleError(QString)), Qt::UniqueConnection); downloadItem->start(); } @@ -427,8 +429,9 @@ } // go! - qDebug() << "Playing" << downloadItem->currentFilename(); - mediaObject->setCurrentSource(downloadItem->currentFilename()); + QString source = downloadItem->currentFilename(); + qDebug() << "Playing" << source; + mediaObject->setCurrentSource(source); mediaObject->play(); // ensure we always have 10 videos ahead @@ -442,7 +445,7 @@ } #ifdef APP_DEMO - demoTimer->start(30000); + demoTimer->start(60000); #endif } @@ -505,7 +508,6 @@ Video* video = listModel->activeVideo(); if (!video) return; QString address = video->webpage().toString(); - address.remove("&feature=youtube_gdata"); QApplication::clipboard()->setText(address); QMainWindow* mainWindow = dynamic_cast(window()); QString message = tr("You can now paste the YouTube link into another application"); @@ -517,7 +519,7 @@ if (!video) return; QApplication::clipboard()->setText(video->getStreamUrl().toEncoded()); QString message = tr("You can now paste the video stream URL into another application") - + ". " + tr("The link will be valid only for a limited time."); + + ". " + tr("The link will be valid only for a limited time."); QMainWindow* mainWindow = dynamic_cast(window()); if (mainWindow) mainWindow->statusBar()->showMessage(message); } @@ -607,30 +609,53 @@ } #ifdef APP_DEMO + +static QPushButton *continueButton; + void MediaView::demoMessage() { if (mediaObject->state() != Phonon::PlayingState) return; mediaObject->pause(); QMessageBox msgBox(this); msgBox.setIconPixmap(QPixmap(":/images/app.png").scaled(64, 64, Qt::KeepAspectRatio, Qt::SmoothTransformation)); - msgBox.setText(tr("This is just the demo version of %1.").arg(Constants::APP_NAME)); + msgBox.setText(tr("This is just the demo version of %1.").arg(Constants::NAME)); msgBox.setInformativeText(tr("It allows you to test the application and see if it works for you.")); msgBox.setModal(true); // make it a "sheet" on the Mac msgBox.setWindowModality(Qt::WindowModal); - QPushButton *quitButton = msgBox.addButton(tr("Continue"), QMessageBox::RejectRole); + continueButton = msgBox.addButton("5", QMessageBox::RejectRole); + continueButton->setEnabled(false); QPushButton *buyButton = msgBox.addButton(tr("Get the full version"), QMessageBox::ActionRole); + QTimeLine *timeLine = new QTimeLine(6000, this); + timeLine->setCurveShape(QTimeLine::LinearCurve); + timeLine->setFrameRange(5, 0); + connect(timeLine, SIGNAL(frameChanged(int)), SLOT(updateContinueButton(int))); + timeLine->start(); + msgBox.exec(); if (msgBox.clickedButton() == buyButton) { - QDesktopServices::openUrl(QString(Constants::WEBSITE) + "#download"); + QDesktopServices::openUrl(QUrl(QString(Constants::WEBSITE) + "#download")); } else { mediaObject->play(); - demoTimer->start(300000); + demoTimer->start(600000); + } + + delete timeLine; + +} + +void MediaView::updateContinueButton(int value) { + if (value == 0) { + continueButton->setText(tr("Continue")); + continueButton->setEnabled(true); + } else { + continueButton->setText(QString::number(value)); } } + #endif void MediaView::downloadVideo() { @@ -701,3 +726,92 @@ } */ + +void MediaView::findVideoParts() { + + // parts + Video* video = listModel->activeVideo(); + if (!video) return; + + QString query = video->title(); + + static QString optionalSpace = "\\s*"; + static QString staticCounterSeparators = "[\\/\\-]"; + QString counterSeparators = "( of | " + + tr("of", "Used in video parts, as in '2 of 3'") + + " |" + staticCounterSeparators + ")"; + + // numbers from 1 to 15 + static QString counterNumber = "([1-9]|1[0-5])"; + + // query.remove(QRegExp(counterSeparators + optionalSpace + counterNumber)); + query.remove(QRegExp(counterNumber + optionalSpace + counterSeparators + optionalSpace + counterNumber)); + query.remove(wordRE("pr?t\\.?" + optionalSpace + counterNumber)); + query.remove(wordRE("ep\\.?" + optionalSpace + counterNumber)); + query.remove(wordRE("part" + optionalSpace + counterNumber)); + query.remove(wordRE("episode" + optionalSpace + counterNumber)); + query.remove(wordRE(tr("part", "This is for video parts, as in 'Cool video - part 1'") + + optionalSpace + counterNumber)); + query.remove(wordRE(tr("episode", "This is for video parts, as in 'Cool series - episode 1'") + + optionalSpace + counterNumber)); + query.remove(QRegExp("[\\(\\)\\[\\]]")); + +#define NUMBERS "one|two|three|four|five|six|seven|eight|nine|ten" + + QRegExp englishNumberRE = QRegExp(QLatin1String(".*(") + NUMBERS + ").*", Qt::CaseInsensitive); + // bool numberAsWords = englishNumberRE.exactMatch(query); + query.remove(englishNumberRE); + + QRegExp localizedNumberRE = QRegExp(QLatin1String(".*(") + tr(NUMBERS) + ").*", Qt::CaseInsensitive); + // if (!numberAsWords) numberAsWords = localizedNumberRE.exactMatch(query); + query.remove(localizedNumberRE); + + SearchParams *searchParams = new SearchParams(); + searchParams->setTransient(true); + searchParams->setKeywords(query); + searchParams->setAuthor(video->author()); + + /* + if (!numberAsWords) { + qDebug() << "We don't have number as words"; + // searchParams->setSortBy(SearchParams::SortByNewest); + // TODO searchParams->setReverseOrder(true); + // TODO searchParams->setMax(50); + } + */ + + search(searchParams); + +} + +void MediaView::shareViaTwitter() { + Video* video = listModel->activeVideo(); + if (!video) return; + QUrl url("https://twitter.com/intent/tweet"); + url.addQueryItem("via", "minitubeapp"); + url.addQueryItem("text", video->title()); + url.addQueryItem("url", video->webpage().toString()); + QDesktopServices::openUrl(url); +} + +void MediaView::shareViaFacebook() { + Video* video = listModel->activeVideo(); + if (!video) return; + QUrl url("https://www.facebook.com/sharer.php"); + url.addQueryItem("t", video->title()); + url.addQueryItem("u", video->webpage().toString()); + QDesktopServices::openUrl(url); +} + +void MediaView::shareViaEmail() { + Video* video = listModel->activeVideo(); + if (!video) return; + QUrl url("mailto:"); + url.addQueryItem("subject", video->title()); + QString body = video->title() + "\n" + + video->webpage().toString() + "\n\n" + + tr("Sent from %1").arg(Constants::NAME) + "\n" + + Constants::WEBSITE; + url.addQueryItem("body", body); + QDesktopServices::openUrl(url); +} diff -Nru minitube-1.5/src/MediaView.h minitube-1.6/src/MediaView.h --- minitube-1.5/src/MediaView.h 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/MediaView.h 2011-10-28 20:38:22.000000000 +0000 @@ -52,6 +52,9 @@ void openWebPage(); void copyWebPage(); void copyVideoLink(); + void shareViaTwitter(); + void shareViaFacebook(); + void shareViaEmail(); void removeSelected(); void moveUpSelected(); void moveDownSelected(); @@ -59,6 +62,7 @@ void saveSplitterState(); void downloadVideo(); void fullscreen(); + void findVideoParts(); private slots: // list/model @@ -80,6 +84,7 @@ void timerPlay(); #ifdef APP_DEMO void demoMessage(); + void updateContinueButton(int); #endif void startPlaying(); void downloadStatusChanged(); @@ -93,6 +98,7 @@ */ private: + static QRegExp wordRE(QString s); SearchParams *searchParams; diff -Nru minitube-1.5/src/networkaccess.cpp minitube-1.6/src/networkaccess.cpp --- minitube-1.5/src/networkaccess.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/networkaccess.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -7,19 +7,19 @@ } /* -const QString USER_AGENT = QString(Constants::APP_NAME) +const QString USER_AGENT = QString(Constants::NAME) + " " + Constants::VERSION + " (" + Constants::WEBSITE + ")"; */ -const QString USER_AGENT = "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_6; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10"; +const QString USER_AGENT = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_2) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1"; NetworkReply::NetworkReply(QNetworkReply *networkReply) : QObject(networkReply) { this->networkReply = networkReply; // monitor downloadProgress to impl timeout connect(networkReply, SIGNAL(downloadProgress(qint64,qint64)), - SLOT(downloadProgress(qint64,qint64)), Qt::AutoConnection); + SLOT(downloadProgress(qint64,qint64)), Qt::UniqueConnection); readTimeoutTimer = new QTimer(this); readTimeoutTimer->setInterval(5000); @@ -29,6 +29,7 @@ } void NetworkReply::finished() { + // qDebug() << "Finished" << networkReply->url(); QUrl redirection = networkReply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); if (redirection.isValid()) { @@ -42,27 +43,31 @@ networkReply = redirectReply; // when the request is finished we'll invoke the target method - connect(networkReply, SIGNAL(finished()), this, SLOT(finished()), Qt::AutoConnection); + connect(networkReply, SIGNAL(finished()), this, SLOT(finished()), Qt::UniqueConnection); // monitor downloadProgress to impl timeout connect(networkReply, SIGNAL(downloadProgress(qint64,qint64)), - SLOT(downloadProgress(qint64,qint64)), Qt::AutoConnection); + SLOT(downloadProgress(qint64,qint64)), Qt::UniqueConnection); readTimeoutTimer->start(); // error signal connect(networkReply, SIGNAL(error(QNetworkReply::NetworkError)), - SLOT(requestError(QNetworkReply::NetworkError))); + SLOT(requestError(QNetworkReply::NetworkError)), Qt::UniqueConnection); + + connect(readTimeoutTimer, SIGNAL(timeout()), SLOT(readTimeout()), Qt::UniqueConnection); + readTimeoutTimer->start(); return; } - + emit data(networkReply->readAll()); emit finished(networkReply); - // get the HTTP response body - QByteArray bytes = networkReply->readAll(); - - emit data(bytes); +#ifndef QT_NO_DEBUG_OUTPUT + if (!networkReply->attribute(QNetworkRequest::SourceIsFromCacheAttribute).toBool()) { + qDebug() << networkReply->url().toEncoded(); + } +#endif // bye bye my reply // this will also delete this NetworkReply as the QNetworkReply is its parent @@ -73,8 +78,8 @@ emit error(networkReply); } -void NetworkReply::downloadProgress(qint64 bytesReceived, qint64 /* bytesTotal */) { - // qDebug() << "Downloading" << bytesReceived << bytesTotal; +void NetworkReply::downloadProgress(qint64 bytesReceived, qint64 bytesTotal) { + // qDebug() << "Downloading" << bytesReceived << bytesTotal << networkReply->url(); if (bytesReceived > 0) { readTimeoutTimer->stop(); disconnect(networkReply, SIGNAL(downloadProgress(qint64,qint64)), @@ -94,11 +99,11 @@ networkReply = retryReply; // when the request is finished we'll invoke the target method - connect(networkReply, SIGNAL(finished()), this, SLOT(finished()), Qt::AutoConnection); + connect(networkReply, SIGNAL(finished()), this, SLOT(finished()), Qt::UniqueConnection); // monitor downloadProgress to impl timeout connect(networkReply, SIGNAL(downloadProgress(qint64,qint64)), - SLOT(downloadProgress(qint64,qint64)), Qt::AutoConnection); + SLOT(downloadProgress(qint64,qint64)), Qt::UniqueConnection); readTimeoutTimer->start(); // error signal @@ -121,12 +126,12 @@ switch (operation) { case QNetworkAccessManager::GetOperation: - qDebug() << "GET" << request.url().toEncoded(); + // qDebug() << "GET" << request.url().toEncoded(); networkReply = manager->get(request); break; case QNetworkAccessManager::HeadOperation: - qDebug() << "HEAD" << request.url().toEncoded(); + // qDebug() << "HEAD" << request.url().toEncoded(); networkReply = manager->head(request); break; @@ -143,16 +148,18 @@ return networkReply; } -QNetworkReply* NetworkAccess::simpleGet(QUrl url, int operation) { - +QNetworkRequest NetworkAccess::buildRequest(QUrl url) { QNetworkRequest request(url); request.setRawHeader("User-Agent", USER_AGENT.toUtf8()); request.setRawHeader("Accept-Charset", "ISO-8859-1,utf-8;q=0.7,*;q=0.7"); request.setRawHeader("Accept", "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"); request.setRawHeader("Accept-Language", "en-us,en;q=0.5"); request.setRawHeader("Connection", "Keep-Alive"); + return request; +} - return manualGet(request, operation); +QNetworkReply* NetworkAccess::simpleGet(QUrl url, int operation) { + return manualGet(buildRequest(url), operation); } NetworkReply* NetworkAccess::get(const QUrl url) { @@ -165,7 +172,7 @@ reply, SLOT(requestError(QNetworkReply::NetworkError))); // when the request is finished we'll invoke the target method - connect(networkReply, SIGNAL(finished()), reply, SLOT(finished()), Qt::AutoConnection); + connect(networkReply, SIGNAL(finished()), reply, SLOT(finished()), Qt::UniqueConnection); return reply; @@ -181,65 +188,12 @@ reply, SLOT(requestError(QNetworkReply::NetworkError))); // when the request is finished we'll invoke the target method - connect(networkReply, SIGNAL(finished()), reply, SLOT(finished()), Qt::AutoConnection); + connect(networkReply, SIGNAL(finished()), reply, SLOT(finished()), Qt::UniqueConnection); return reply; } -/*** sync ***/ - - -QNetworkReply* NetworkAccess::syncGet(QUrl url) { - - working = true; - - networkReply = simpleGet(url); - connect(networkReply, SIGNAL(metaDataChanged()), - this, SLOT(syncMetaDataChanged()), Qt::AutoConnection); - connect(networkReply, SIGNAL(finished()), - this, SLOT(syncFinished()), Qt::AutoConnection); - connect(networkReply, SIGNAL(error(QNetworkReply::NetworkError)), - this, SLOT(error(QNetworkReply::NetworkError))); - - // A little trick to make this function blocking - while (working) { - // Do something else, maybe even network processing events - qApp->processEvents(); - } - - networkReply->deleteLater(); - return networkReply; - -} - -void NetworkAccess::syncMetaDataChanged() { - - QUrl redirection = networkReply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); - if (redirection.isValid()) { - - qDebug() << "Redirect" << redirection; - networkReply->deleteLater(); - syncGet(redirection); - - /* - QNetworkAccessManager *manager = The::networkAccessManager(); - networkReply->deleteLater(); - networkReply = manager->get(QNetworkRequest(redirection)); - connect(networkReply, SIGNAL(metaDataChanged()), - this, SLOT(metaDataChanged()), Qt::AutoConnection); - connect(networkReply, SIGNAL(finished()), - this, SLOT(finished()), Qt::AutoConnection); - */ - } - -} - -void NetworkAccess::syncFinished() { - // got it! - working = false; -} - void NetworkAccess::error(QNetworkReply::NetworkError code) { // get the QNetworkReply that sent the signal QNetworkReply *networkReply = static_cast(sender()); @@ -248,6 +202,8 @@ return; } + networkReply->deleteLater(); + // Ignore HEADs if (networkReply->operation() == QNetworkAccessManager::HeadOperation) return; @@ -258,14 +214,4 @@ tr("Network error: %1").arg(networkReply->errorString())); qDebug() << "Network error:" << networkReply->errorString() << code; - - networkReply->deleteLater(); -} - -QByteArray NetworkAccess::syncGetBytes(QUrl url) { - return syncGet(url)->readAll(); -} - -QString NetworkAccess::syncGetString(QUrl url) { - return QString::fromUtf8(syncGetBytes(url)); } diff -Nru minitube-1.5/src/networkaccess.h minitube-1.6/src/networkaccess.h --- minitube-1.5/src/networkaccess.h 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/networkaccess.h 2011-10-28 20:38:22.000000000 +0000 @@ -32,7 +32,6 @@ }; - class NetworkAccess : public QObject { Q_OBJECT @@ -40,25 +39,14 @@ public: NetworkAccess( QObject* parent=0); QNetworkReply* manualGet(QNetworkRequest request, int operation = QNetworkAccessManager::GetOperation); + QNetworkRequest buildRequest(QUrl url); QNetworkReply* simpleGet(QUrl url, int operation = QNetworkAccessManager::GetOperation); NetworkReply* get(QUrl url); NetworkReply* head(QUrl url); - QNetworkReply* syncGet(QUrl url); - QByteArray syncGetBytes(QUrl url); - QString syncGetString(QUrl url); private slots: void error(QNetworkReply::NetworkError); - void syncMetaDataChanged(); - void syncFinished(); - -private: - QNetworkReply *networkReply; - bool working; }; -typedef QPointer ObjectPointer; -Q_DECLARE_METATYPE(ObjectPointer) - #endif // NETWORKACCESS_H diff -Nru minitube-1.5/src/playlist/PrettyItemDelegate.cpp minitube-1.6/src/playlist/PrettyItemDelegate.cpp --- minitube-1.5/src/playlist/PrettyItemDelegate.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/playlist/PrettyItemDelegate.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -58,8 +58,11 @@ int itemType = index.data(ItemTypeRole).toInt(); if (itemType == ItemTypeVideo) { - QApplication::style()->drawPrimitive( QStyle::PE_PanelItemViewItem, &option, painter ); - paintBody( painter, option, index ); + QStyleOptionViewItemV4 opt = QStyleOptionViewItemV4(option); + initStyleOption(&opt, index); + opt.text = ""; + opt.widget->style()->drawControl(QStyle::CE_ItemViewItem, &opt, painter, opt.widget); + paintBody(painter, opt, index); } else QStyledItemDelegate::paint( painter, option, index ); @@ -85,12 +88,6 @@ paintActiveOverlay(painter, line.x(), line.y(), line.width(), line.height()); } -#if defined(APP_MAC) | defined(APP_WIN) - if (isSelected) { - paintSelectedOverlay(painter, line.x(), line.y(), line.width(), line.height()); - } -#endif - // get the video metadata const VideoPointer videoPointer = index.data( VideoRole ).value(); const Video *video = videoPointer.data(); @@ -217,20 +214,6 @@ painter->restore(); } -void PrettyItemDelegate::paintSelectedOverlay( QPainter *painter, qreal x, qreal y, qreal w, qreal h ) const { - QColor color1 = QColor::fromRgb(0x69, 0xa6, 0xd9); - QColor color2 = QColor::fromRgb(0x14, 0x6b, 0xd4); - QRect rect((int) x, (int) y, (int) w, (int) h); - painter->save(); - painter->setPen(Qt::NoPen); - QLinearGradient linearGradient(0, 0, 0, rect.height()); - linearGradient.setColorAt(0.0, color1); - linearGradient.setColorAt(1.0, color2); - painter->setBrush(linearGradient); - painter->drawRect(rect); - painter->restore(); -} - void PrettyItemDelegate::paintPlayIcon(QPainter *painter) const { painter->save(); painter->setOpacity(.5); diff -Nru minitube-1.5/src/playlist/PrettyItemDelegate.h minitube-1.6/src/playlist/PrettyItemDelegate.h --- minitube-1.5/src/playlist/PrettyItemDelegate.h 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/playlist/PrettyItemDelegate.h 2011-10-28 20:38:22.000000000 +0000 @@ -27,7 +27,6 @@ const QModelIndex& index ) const; // active track painting - void paintSelectedOverlay( QPainter *painter, qreal x, qreal y, qreal w, qreal h ) const; void paintActiveOverlay( QPainter *painter, qreal x, qreal y, qreal w, qreal h ) const; void paintPlayIcon(QPainter *painter) const; diff -Nru minitube-1.5/src/qtsingleapplication/qtlocalpeer.cpp minitube-1.6/src/qtsingleapplication/qtlocalpeer.cpp --- minitube-1.5/src/qtsingleapplication/qtlocalpeer.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/qtsingleapplication/qtlocalpeer.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -48,6 +48,7 @@ #include "qtlocalpeer.h" #include #include +#include #if defined(Q_OS_WIN) #include diff -Nru minitube-1.5/src/searchlineedit.cpp minitube-1.6/src/searchlineedit.cpp --- minitube-1.5/src/searchlineedit.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/searchlineedit.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -56,7 +56,6 @@ setToolTip(tr("Clear")); setVisible(false); setFocusPolicy(Qt::NoFocus); - setShortcut(QKeySequence(Qt::Key_Escape)); } void ClearButton::paintEvent(QPaintEvent *event) diff -Nru minitube-1.5/src/searchparams.cpp minitube-1.6/src/searchparams.cpp --- minitube-1.5/src/searchparams.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/searchparams.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -2,4 +2,5 @@ SearchParams::SearchParams() { m_sortBy = SortByRelevance; + m_transient = false; } diff -Nru minitube-1.5/src/searchparams.h minitube-1.6/src/searchparams.h --- minitube-1.5/src/searchparams.h 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/searchparams.h 2011-10-28 20:38:22.000000000 +0000 @@ -19,6 +19,9 @@ int sortBy() const { return m_sortBy; } void setSortBy( int sortBy ) { m_sortBy = sortBy; } + int isTransient() const { return m_transient; } + void setTransient( int transient ) { m_transient = transient; } + enum SortBy { SortByRelevance = 1, SortByNewest, @@ -29,6 +32,7 @@ QString m_keywords; QString m_author; int m_sortBy; + bool m_transient; }; diff -Nru minitube-1.5/src/SearchView.cpp minitube-1.6/src/SearchView.cpp --- minitube-1.5/src/SearchView.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/SearchView.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -74,7 +74,7 @@ tr("Welcome to %2,") // .replace("", this); welcomeLabel->setOpenExternalLinks(true); layout->addWidget(welcomeLabel); @@ -178,12 +178,6 @@ setLayout(mainLayout); - updateChecker = 0; - -#ifndef APP_MAC_STORE - checkForUpdate(); -#endif - } void SearchView::updateRecentKeywords() { @@ -211,15 +205,22 @@ display = keyword.mid(separator+1); } } + bool needStatusTip = false; + if (display.length() > 24) { + display.truncate(24); + display.append("..."); + needStatusTip = true; + } QLabel *itemLabel = new QLabel("" + display + "", this); - + itemLabel->setAttribute(Qt::WA_DeleteOnClose); itemLabel->setMaximumWidth(queryEdit->width() + watchButton->width()); // itemLabel->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); // Make links navigable with the keyboard too itemLabel->setTextInteractionFlags(Qt::LinksAccessibleByKeyboard | Qt::LinksAccessibleByMouse); - + if (needStatusTip) + itemLabel->setStatusTip(link); connect(itemLabel, SIGNAL(linkActivated(QString)), this, SLOT(watchKeywords(QString))); recentKeywordsLayout->addWidget(itemLabel); } @@ -254,7 +255,7 @@ QLabel *itemLabel = new QLabel("" + display + "", this); - + itemLabel->setAttribute(Qt::WA_DeleteOnClose); itemLabel->setMaximumWidth(queryEdit->width() + watchButton->width()); // itemLabel->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed); // Make links navigable with the keyboard too @@ -337,47 +338,6 @@ emit search(searchParams); } -void SearchView::checkForUpdate() { - static const QString updateCheckKey = "updateCheck"; - - // check every 24h - QSettings settings; - uint unixTime = QDateTime::currentDateTime().toTime_t(); - int lastCheck = settings.value(updateCheckKey).toInt(); - int secondsSinceLastCheck = unixTime - lastCheck; - // qDebug() << "secondsSinceLastCheck" << unixTime << lastCheck << secondsSinceLastCheck; - if (secondsSinceLastCheck < 86400) return; - - // check it out - if (updateChecker) delete updateChecker; - updateChecker = new UpdateChecker(); - connect(updateChecker, SIGNAL(newVersion(QString)), - this, SLOT(gotNewVersion(QString))); - updateChecker->checkForUpdate(); - settings.setValue(updateCheckKey, unixTime); - -} - -void SearchView::gotNewVersion(QString version) { - message->setText( - tr("A new version of %1 is available. Please update to version %3") - .replace("setOpenExternalLinks(true); - message->setMargin(10); - message->setAlignment(Qt::AlignCenter); - // message->setBackgroundRole(QPalette::ToolTipBase); - // message->setForegroundRole(QPalette::ToolTipText); - // message->setAutoFillBackground(true); - message->setStyleSheet("QLabel { border-bottom: 1px solid palette(mid); }"); - message->show(); - if (updateChecker) delete updateChecker; -} - void SearchView::paintEvent(QPaintEvent * /*event*/) { #if defined(APP_MAC) | defined(APP_WIN) QBrush brush; diff -Nru minitube-1.5/src/SearchView.h minitube-1.6/src/SearchView.h --- minitube-1.5/src/SearchView.h 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/SearchView.h 2011-10-28 20:38:22.000000000 +0000 @@ -4,7 +4,6 @@ #include #include "View.h" #include "searchlineedit.h" -#include "updatechecker.h" class SearchParams; class YouTubeSuggest; @@ -23,8 +22,8 @@ updateRecentKeywords(); updateRecentChannels(); queryEdit->clear(); - queryEdit->setFocus(Qt::OtherFocusReason); queryEdit->enableSuggest(); + QTimer::singleShot(0, queryEdit, SLOT(setFocus())); } void disappear() {} @@ -40,7 +39,6 @@ void watch(QString query); void watchChannel(QString channel); void watchKeywords(QString query); - void gotNewVersion(QString version); signals: void search(SearchParams*); @@ -54,8 +52,6 @@ void searchTypeChanged(int index); private: - void checkForUpdate(); - YouTubeSuggest *youtubeSuggest; ChannelSuggest *channelSuggest; @@ -68,8 +64,6 @@ QLabel *message; QPushButton *watchButton; - UpdateChecker *updateChecker; - }; #endif // __SEARCHVIEW_H__ diff -Nru minitube-1.5/src/temporary.cpp minitube-1.6/src/temporary.cpp --- minitube-1.5/src/temporary.cpp 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/src/temporary.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,50 @@ +#include "temporary.h" +#include "constants.h" + +static QList paths; +#ifdef Q_WS_X11 +static QString userName; +#endif + +Temporary::Temporary() { } + +QString Temporary::filename() { + + static const QString tempDir = QDesktopServices::storageLocation(QDesktopServices::TempLocation); + + QString tempFile = tempDir + "/" + Constants::UNIX_NAME + "-" + QString::number(qrand()); + +#ifdef Q_WS_X11 + if (userName.isNull()) { + userName = QString(getenv("USERNAME")); + if (userName.isEmpty()) + userName = QString(getenv("USER")); + } + if (!userName.isEmpty()) + tempFile += "-" + userName; +#endif + + if (QFile::exists(tempFile) && !QFile::remove(tempFile)) { + qDebug() << "Cannot remove temp file" << tempFile; + } + + paths << tempFile; + + if (paths.size() > 1) { + QString removedFile = paths.takeFirst(); + if (QFile::exists(removedFile) && !QFile::remove(removedFile)) { + qDebug() << "Cannot remove temp file" << removedFile; + } + } + + return tempFile; + +} + +void Temporary::deleteAll() { + foreach(QString path, paths) { + if (QFile::exists(path) && !QFile::remove(path)) { + qDebug() << "Cannot remove temp file" << path; + } + } +} diff -Nru minitube-1.5/src/temporary.h minitube-1.6/src/temporary.h --- minitube-1.5/src/temporary.h 1970-01-01 00:00:00.000000000 +0000 +++ minitube-1.6/src/temporary.h 2011-10-28 20:38:22.000000000 +0000 @@ -0,0 +1,18 @@ +#ifndef TEMPORARY_H +#define TEMPORARY_H + +#include +#include + +class Temporary { + +public: + static QString filename(); + static void deleteAll(); + +private: + Temporary(); + +}; + +#endif // TEMPORARY_H diff -Nru minitube-1.5/src/updatechecker.cpp minitube-1.6/src/updatechecker.cpp --- minitube-1.5/src/updatechecker.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/updatechecker.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -23,6 +23,9 @@ #ifdef APP_DEMO updateUrl.addQueryItem("t", "demo"); #endif +#ifdef APP_MAC_STORE + updateUrl.addQueryItem("store", "mac"); +#endif QObject *reply = The::http()->get(updateUrl); connect(reply, SIGNAL(data(QByteArray)), SLOT(requestFinished(QByteArray))); diff -Nru minitube-1.5/src/urllineedit.cpp minitube-1.6/src/urllineedit.cpp --- minitube-1.5/src/urllineedit.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/urllineedit.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -76,6 +76,7 @@ m_lineEdit->setFrame(false); m_lineEdit->setFocusProxy(this); m_lineEdit->setAttribute(Qt::WA_MacShowFocusRect, false); + m_lineEdit->setStyleSheet("background:transparent"); QPalette clearPalette = m_lineEdit->palette(); clearPalette.setBrush(QPalette::Base, QBrush(Qt::transparent)); m_lineEdit->setPalette(clearPalette); @@ -178,6 +179,9 @@ void ExLineEdit::keyPressEvent(QKeyEvent *event) { + if (event->key() == Qt::Key_Escape && !m_lineEdit->text().isEmpty()) { + m_lineEdit->clear(); + } m_lineEdit->event(event); QWidget::keyPressEvent(event); } diff -Nru minitube-1.5/src/videoareawidget.cpp minitube-1.6/src/videoareawidget.cpp --- minitube-1.5/src/videoareawidget.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/videoareawidget.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -11,6 +11,7 @@ p.setBrush(QPalette::Window, Qt::black); setPalette(p); setAutoFillBackground(true); + setStyleSheet("background:black"); #endif // hidden message widget @@ -106,6 +107,7 @@ void VideoAreaWidget::mouseMoveEvent(QMouseEvent *event) { QWidget::mouseMoveEvent(event); +#ifdef Q_WS_X11 QWidget* mainWindow = window(); if (!mainWindow->isFullScreen()) return; @@ -121,11 +123,13 @@ visible = x <= 10; ret = QMetaObject::invokeMethod(mainWindow, "showFullscreenPlaylist", Qt::DirectConnection, Q_ARG(bool, visible)); if (!ret) qDebug() << "showFullscreenPlaylist invokeMethod failed"; +#endif } void VideoAreaWidget::leaveEvent(QMouseEvent *event) { QWidget::leaveEvent(event); +#ifdef Q_WS_X11 QWidget* mainWindow = window(); if (!mainWindow->isFullScreen()) return; @@ -135,4 +139,5 @@ ret = QMetaObject::invokeMethod(mainWindow, "showFullscreenPlaylist", Qt::DirectConnection, Q_ARG(bool, visible)); if (!ret) qDebug() << "showFullscreenPlaylist invokeMethod failed"; +#endif } diff -Nru minitube-1.5/src/youtubesearch.cpp minitube-1.6/src/youtubesearch.cpp --- minitube-1.5/src/youtubesearch.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/youtubesearch.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -12,7 +12,7 @@ void YouTubeSearch::search(SearchParams *searchParams, int max, int skip) { this->abortFlag = false; - QUrl url("http://gdata.youtube.com/feeds/api/videos"); + QUrl url("http://gdata.youtube.com/feeds/api/videos/"); url.addQueryItem("max-results", QString::number(max)); url.addQueryItem("start-index", QString::number(skip)); if (!searchParams->keywords().isEmpty()) { diff -Nru minitube-1.5/src/youtubestreamreader.cpp minitube-1.6/src/youtubestreamreader.cpp --- minitube-1.5/src/youtubestreamreader.cpp 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/src/youtubestreamreader.cpp 2011-10-28 20:38:22.000000000 +0000 @@ -52,6 +52,7 @@ && attributes().value("type").toString() == "text/html" ) { QString webpage = attributes().value("href").toString(); + webpage.remove("&feature=youtube_gdata"); // qDebug() << "Webpage: " << webpage; video->setWebpage(QUrl(webpage)); } else if (name() == "author") { diff -Nru minitube-1.5/TODO minitube-1.6/TODO --- minitube-1.5/TODO 2011-08-05 19:26:28.000000000 +0000 +++ minitube-1.6/TODO 2011-10-28 20:38:22.000000000 +0000 @@ -2,6 +2,12 @@ ## Major features +- Twitter https://twitter.com/intent/tweet +- Facebook https://www.facebook.com/sharer.php?u=&t= +- Email mailto:?subject=&body= + +- Snapshots + - Features for logged in users: * Channel subscriptions (r/w) * Favorite videos (r/w)