Added option to filter the log entries on the "processing" dialog (see context menu)
Added "Up One Level" button to the output folder tab
Updated Qt runtime libraries to v4.8.4 (2012-11-29), compiled with MSVC 11.0
-
Updated Opus encoder/decoder libraries to v1.1.x and Opus-Tools to v0.1.6 (2012-12-07)
+
Updated Opus encoder/decoder libraries to v1.1.x and Opus-Tools to v0.1.6 (2013-01-17)
Fixed handling of certain characters when passing meta tags on the command-line
diff --git a/etc/Patches/OpusTools-Git20130117-Progress+NoResample.diff b/etc/Patches/OpusTools-Git20130117-Progress+NoResample.diff
new file mode 100644
index 00000000..1f154082
--- /dev/null
+++ b/etc/Patches/OpusTools-Git20130117-Progress+NoResample.diff
@@ -0,0 +1,129 @@
+ src/opusdec.c | 24 +++++++++++++++++++++---
+ src/opusenc.c | 17 +++++++----------
+ 2 files changed, 134 insertions(+), 71 deletions(-)
+
+diff --git a/src/opusdec.c b/src/opusdec.c
+index 397ecb5..ade69fc 100644
+--- a/src/opusdec.c
++++ b/src/opusdec.c
+@@ -57,6 +57,7 @@
+ # include
+ # include
+ # define I64FORMAT "I64d"
++# define ftello64(_x) _ftelli64((_x))
+ #else
+ # define I64FORMAT "lld"
+ # define fopen_utf8(_x,_y) fopen((_x),(_y))
+@@ -658,6 +659,7 @@ int main(int argc, char **argv)
+ {"force-wav", no_argument, NULL, 0},
+ {"packet-loss", required_argument, NULL, 0},
+ {"save-range", required_argument, NULL, 0},
++ {"no-resample", no_argument, NULL, 0},
+ {0, 0, 0, 0}
+ };
+ ogg_sync_state oy;
+@@ -667,6 +669,7 @@ int main(int argc, char **argv)
+ int close_in=0;
+ int eos=0;
+ ogg_int64_t audio_size=0;
++ ogg_int64_t input_size=0;
+ double last_coded_seconds=0;
+ float loss_percent=-1;
+ float manual_gain=0;
+@@ -681,6 +684,7 @@ int main(int argc, char **argv)
+ int dither=1;
+ shapestate shapemem;
+ SpeexResamplerState *resampler=NULL;
++ int no_resample = 0;
+ float gain=1;
+ int streams=0;
+ size_t last_spin=0;
+@@ -743,6 +747,9 @@ int main(int argc, char **argv)
+ } else if (strcmp(long_options[option_index].name,"rate")==0)
+ {
+ rate=atoi (optarg);
++ } else if (strcmp(long_options[option_index].name,"no-resample")==0)
++ {
++ no_resample=1;
+ } else if (strcmp(long_options[option_index].name,"gain")==0)
+ {
+ manual_gain=atof (optarg);
+@@ -824,6 +831,16 @@ int main(int argc, char **argv)
+ close_in=1;
+ }
+
++ /*detect input size*/
++ if(fin != stdin)
++ {
++ struct _stat64 info;
++ if(_fstati64(_fileno(fin), &info) == 0)
++ {
++ input_size = info.st_size;
++ }
++ }
++
+ /* .opus files use the Ogg container to provide framing and timekeeping.
+ * http://tools.ietf.org/html/draft-terriberry-oggopus
+ * The easiest way to decode the Ogg container is to use libogg, so
+@@ -914,7 +931,7 @@ int main(int argc, char **argv)
+ as described in the OggOpus spec. But for commandline tools
+ like opusdec it can be desirable to exactly preserve the original
+ sampling rate and duration, so we have a resampler here.*/
+- if (rate != 48000)
++ if ((rate != 48000) && (!no_resample))
+ {
+ int err;
+ resampler = speex_resampler_init(channels, 48000, rate, 5, &err);
+@@ -971,10 +988,11 @@ int main(int argc, char **argv)
+ /*Display a progress spinner while decoding.*/
+ static const char spinner[]="|/-\\";
+ double coded_seconds = (double)audio_size/(channels*rate*sizeof(short));
++ double percent = (input_size>0) ? ((double)ftello64(fin))/((double)input_size) : 0.0;
+ if(coded_seconds>=last_coded_seconds+1){
+- fprintf(stderr,"\r[%c] %02d:%02d:%02d", spinner[last_spin&3],
++ fprintf(stderr,"\r[%c] %02d:%02d:%02d (%.f%%)", spinner[last_spin&3],
+ (int)(coded_seconds/3600),(int)(coded_seconds/60)%60,
+- (int)(coded_seconds)%60);
++ (int)(coded_seconds)%60,percent*100.0);
+ fflush(stderr);
+ last_spin++;
+ last_coded_seconds=coded_seconds;
+diff --git a/src/opusenc.c b/src/opusenc.c
+index 749760a..2b472b0 100644
+--- a/src/opusenc.c
++++ b/src/opusenc.c
+@@ -954,6 +954,7 @@ int main(int argc, char **argv)
+ double estbitrate;
+ double coded_seconds=nb_encoded/(double)coding_rate;
+ double wall_time=(stop_time-start_time)+1e-6;
++ double percent = 0.0;
+ char sbuf[55];
+ static const char spinner[]="|/-\\";
+ if(!with_hard_cbr){
+@@ -961,20 +962,16 @@ int main(int argc, char **argv)
+ estbitrate=(total_bytes*8.0/coded_seconds)*tweight+
+ bitrate*(1.-tweight);
+ }else estbitrate=nbBytes*8*((double)coding_rate/frame_size);
++ if(inopt.total_samples_per_channel>0){
++ percent = ((double)nb_encoded) / ((double)inopt.total_samples_per_channel);
++ }
+ fprintf(stderr,"\r");
+ for(i=0;i0 && inopt.total_samples_per_channel
-
-
+
+ Note: This demo (pre-release) version of LameXP will expire at %1. Still %2 days left.
-
+ Note: LameXP is free software. Do <b>not</b> pay money to obtain or use LameXP! If some third-party website tries to make you pay for downloading LameXP, you should <b>not</b> respond to the offer !!!
-
+ The following people have contributed to LameXP:
-
+ Programmers:
-
+ Project Leader
-
+ Translators:
-
+ Special thanks to:
-
+ Doom9's Forum
-
+ Gleitz | German Doom9
-
+ Hydrogenaudio Forums
-
+ RareWares
-
+ GitHub
-
+ SourceForge
-
+ Qt Developer Network
-
+ Marius Hudea
-
+ If you are willing to contribute a LameXP translation, feel free to contact us!
-
+ The following third-party software is used in LameXP:
-
+ LAME - OpenSource mp3 Encoder
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ Released under the terms of the GNU Lesser General Public License.
-
+ OggEnc - Ogg Vorbis Encoder
-
+ Completely open and patent-free audio encoding technology.
-
+ Nero AAC Reference MPEG-4 Encoder
-
+ Freeware state-of-the-art HE-AAC encoder with 2-Pass support.
-
+ Available from vendor web-site as free download:
-
+ Aften - A/52 audio encoder
-
+ FLAC - Free Lossless Audio Codec
-
+ Open and patent-free lossless audio compression technology.
-
+ Opus Audio Codec
-
+ Totally open, royalty-free, highly versatile audio codec.
-
+ mpg123 - Fast Console MPEG Audio Player/Decoder
-
+ FAAD - OpenSource MPEG-4 and MPEG-2 AAC Decoder
-
+ Released under the terms of the GNU General Public License.
-
+ AC3Filter Tools - AC3/DTS Decoder
-
+ WavPack - Hybrid Lossless Compression
-
+ Completely open audio compression format.
-
+ Musepack - Living Audio Compression
-
+ Monkey's Audio - Lossless Audio Compressor
-
+ Freely available source code, simple SDK and non-restrictive licensing.
-
+ Shorten - Lossless Audio Compressor
-
+ Speex - Free Codec For Free Speech
-
+ Open Source patent-free audio format designed for speech.
-
+ The True Audio - Lossless Audio Codec
-
+ refalac - Win32 command line ALAC encoder/decoder
-
+ The ALAC reference implementation by Apple is available under the Apache license.
-
+ wma2wav - Dump WMA files to Wave Audio
-
+ Copyright (c) 2011 LoRd_MuldeR <mulder2@gmx.de>. Some rights reserved.
-
+ avs2wav - Avisynth to Wave Audio converter
-
+ By Jory Stone <jcsston@toughguy.net> and LoRd_MuldeR <mulder2@gmx.de>.
-
+ dcaenc
-
+ Copyright (c) 2008-2011 Alexander E. Patrakov. Distributed under the LGPL.
-
+ MediaInfo - Media File Analysis Tool
-
+ SoX - Sound eXchange
-
+ GnuPG - The GNU Privacy Guard
-
+ GNU Wget - Software for retrieving files using HTTP
-
+ UPX - The Ultimate Packer for eXecutables
-
+ Silk Icons - Over 700 icons in PNG format
-
+ By Mark James, released under the Creative Commons 'by' License.
-
+ The copyright of LameXP as a whole belongs to LoRd_MuldeR. The copyright of third-party software used in LameXP belongs to the individual authors.
-
+ n/a
@@ -816,12 +816,12 @@
-
+ Log File
-
+ The log file shows detailed information about the selected job.
@@ -856,7 +856,7 @@
-
+ Show Details
@@ -1589,9 +1589,9 @@
-
-
-
+
+
+ Check for Updates
@@ -1632,13 +1632,13 @@
-
+ Disable Update Reminder
-
+ Disable Sound Effects
@@ -1718,861 +1718,861 @@
-
+ Adding file(s), please wait...
-
-
+
+ Access Denied
-
+ %1 file(s) have been rejected, because read access was not granted!
-
+ This usually means the file is locked by another process.
-
+ CDDA Files
-
+ %1 file(s) have been rejected, because they are dummy CDDA files!
-
+ Sorry, LameXP cannot extract audio tracks from an Audio-CD at present.
-
+ We recommend using %1 for that purpose.
-
+ Cue Sheet
-
+ %1 file(s) have been rejected, because they appear to be Cue Sheet images!
-
+ Please use LameXP's Cue Sheet wizard for importing Cue Sheet files.
-
+ Files Rejected
-
+ %1 file(s) have been rejected, because the file format could not be recognized!
-
+ This usually means the file is damaged or the file format is not supported.
-
+ Scanning folder(s) for files, please wait...
-
+ DEMO VERSION
-
+ You can drop in audio files here!
-
+ Initializing directory outline, please be patient...
-
+ Open File in External Application
-
+ Browse File Location
-
+ Browse Selected Folder
-
+ Refresh Directory Outline
-
+ Go To Parent Directory
-
+ Bookmark Current Output Folder
-
+ Export Meta Tags to CSV File
-
+ Import Meta Tags from CSV File
-
+ License Declined
-
+ You have declined the license. Consequently the application will exit now!
-
+ Goodbye!
-
+ LameXP - Expired
-
+ This demo (pre-release) version of LameXP has expired at %1.
-
+ LameXP is free software and release versions won't expire.
-
-
+
+ Exit Program
-
+ It seems that a bogus anti-virus software is slowing down the startup of LameXP.
-
+ Please refer to the %1 document for details and solutions!
-
+ Slow Startup
-
-
-
-
-
+
+
+
+
+ Discard
-
-
+
+ Don't Show Again
-
+ Urgent Update
-
+ Your version of LameXP is more than a year old. Time for an update!
-
-
+
+ Ignore
-
+ Skipping update check this time, please be patient...
-
-
-
+
+
+ Update Reminder
-
+ Your last update check was more than 14 days ago. Check for updates now?
-
+ Your did not check for LameXP updates yet. Check for updates now?
-
+ Postpone
-
+ LameXP detected that your version of the Nero AAC encoder is outdated!
-
+ The current version available is %1 (or later), but you still have version %2 installed.
-
+ n/a
-
+ You can download the latest version of the Nero AAC encoder from the Nero website at:
-
+ (Hint: Please ignore the name of the downloaded ZIP file and check the included 'changelog.txt' instead!)
-
+ AAC Encoder Outdated
-
+ The Nero AAC encoder could not be found. AAC encoding support will be disabled.
-
+ Please put 'neroAacEnc.exe', 'neroAacDec.exe' and 'neroAacTag.exe' into the LameXP directory!
-
+ Your LameXP directory is located here:
-
+ You can download the Nero AAC encoder for free from the official Nero website at:
-
+ AAC Support Disabled
-
-
-
+
+
+ LameXP
-
+ You must add at least one file to the list before proceeding!
-
+ Not Found
-
+ Your currently selected TEMP folder does not exist anymore:
-
+ Restore Default
-
+ Cancel
-
+ There are less than %1 GB of free diskspace available on your system's TEMP folder.
-
+ It is highly recommend to free up more diskspace before proceeding with the encode!
-
+ Your TEMP folder is located at:
-
+ Low Diskspace Warning
-
+ Abort Encoding Process
-
+ Clean Disk Now
-
+ Low Diskspace
-
+ You are proceeding with low diskspace. Problems might occur!
-
+ Sorry, an unsupported encoder has been chosen!
-
+ Cannot write to the selected output directory.
-
+ Please choose a different directory!
-
+ Load Translation
-
+ Translation Files
-
+ Do you really want to disable the update reminder?
-
-
-
-
-
-
-
+
+
+
+
+
+
+ Yes
-
-
-
-
-
-
-
+
+
+
+
+
+
+ No
-
+ The update reminder has been disabled.
-
+ Please remember to check for updates at regular intervals!
-
+ The update reminder has been re-enabled.
-
+ Do you really want to disable all sound effects?
-
-
+
+ Sound Effects
-
+ All sound effects have been disabled.
-
+ The sound effects have been re-enabled.
-
-
-
+
+
+ Nero AAC Notifications
-
+ Do you really want to disable all Nero AAC Encoder notifications?
-
+ All Nero AAC Encoder notifications have been disabled.
-
+ The Nero AAC Encoder notifications have been re-enabled.
-
-
-
+
+
+ Slow Startup Notifications
-
+ Do you really want to disable the slow startup notifications?
-
+ The slow startup notifications have been disabled.
-
+ The slow startup notifications have been re-enabled.
-
-
+
+ Open Cue Sheet
-
-
+
+ Cue Sheet File
-
-
+
+ Beta Updates
-
+ Do you really want LameXP to check for Beta (pre-release) updates?
-
+ LameXP will check for Beta (pre-release) updates from now on.
-
+ Check Now
-
+ LameXP will <i>not</i> check for Beta (pre-release) updates from now on.
-
-
-
+
+
+ Hibernate Computer
-
+ Do you really want the computer to be hibernated on shutdown?
-
+ LameXP will hibernate the computer on shutdown from now on.
-
+ LameXP will <i>not</i> hibernate the computer on shutdown from now on.
-
-
-
+
+
+ Shell Integration
-
+ Do you really want to disable the LameXP shell integration?
-
+ The LameXP shell integration has been disabled.
-
+ The LameXP shell integration has been re-enabled.
-
-
+
+ Add file(s)
-
-
+
+ Add Folder
-
-
+
+ Save CSV file
-
-
-
-
+
+
+
+ CSV File
-
-
-
-
+
+
+
+ CSV Export
-
+ Sorry, there are no meta tags that can be exported!
-
+ Sorry, failed to open CSV file for writing!
-
+ Sorry, failed to write to the CSV file!
-
+ The CSV files was created successfully!
-
-
+
+ Open CSV file
-
-
-
-
-
+
+
+
+
+ CSV Import
-
+ Sorry, failed to open CSV file for reading!
-
+ Sorry, failed to read from the CSV file!
-
+ Sorry, the CSV file does not contain any known fields!
-
+ CSV file is incomplete. Not all files were updated!
-
+ The CSV files was imported successfully!
-
-
+
+ New Folder
-
+ Enter the name of the new folder:
-
+ Failed to create folder
-
+ The new folder could not be created:
-
+ Drive is read-only or insufficient access rights!
-
+ QAAC (Apple)
-
+ FHG AAC (Winamp)
-
+ Nero AAC
-
+ Not available!
-
+ Current AAC Encoder: %1
-
-
-
-
+
+
+
+ Quality Level %1
-
-
-
+
+
+ Compression %1
-
-
-
+
+
+ Uncompressed
-
+ Best Quality (Very Slow)
-
+ High Quality (Recommended)
-
+ Average Quality (Default)
-
+ Low Quality (Fast)
-
+ Poor Quality (Very Fast)
-
+ File name without extension
-
+ Track number with leading zero
-
+ Track title
-
+ Artist name
-
+ Album name
-
+ Year with (at least) four digits
-
+ Comment
-
+ Characters forbidden in file names:
-
+ Rename Macros
-
+ %1 Instance(s)
-
+ Cannot write to the selected directory. Please choose another directory!
-
+ Overwrite Mode
-
+ Warning: This mode may overwrite existing files with no way to revert!
-
+ Continue
-
+ Revert
-
+ Already Running
-
+ LameXP is already running, please use the running instance!
@@ -3253,23 +3253,23 @@
QApplication
-
+ Executable '%1' doesn't support Windows compatibility mode.
-
+ Executable '%1' requires Qt v%2, but found Qt v%3.
-
+ Executable '%1' was built for Qt '%2', but found Qt '%3'.
-
-
+
+ Executable '%1' requires Windows 2000 or later.
diff --git a/etc/Translation/LameXP_PL.ts b/etc/Translation/LameXP_PL.ts
index e5e5a092..808e11e0 100644
--- a/etc/Translation/LameXP_PL.ts
+++ b/etc/Translation/LameXP_PL.ts
@@ -14,13 +14,13 @@
Odwiedź %1 aby zobaczyć nowości i aktualizacje!
-
-
+
+ Note: This demo (pre-release) version of LameXP will expire at %1. Still %2 days left.Uwaga: To jest wersja próbna LameXP, która wygaśnie %1. Pozostało jeszcze %2 dni.
-
+ Note: LameXP is free software. Do <b>not</b> pay money to obtain or use LameXP! If some third-party website tries to make you pay for downloading LameXP, you should <b>not</b> respond to the offer !!!Uwaga: LameXP jest darmowym oprogramowaniem. <b>Nie</b> płać nikomu za ten program! Jeśli ktoś oferuje Ci LameXP za pieniądze <b>nie</b> kupuj od niego!!!
@@ -75,298 +75,298 @@
Zamknij
-
+ The following people have contributed to LameXP:Osoby które pomogły w rozwoju LameXP:
-
+ Programmers:Programiści:
-
+ Project LeaderLider projektu
-
+ Translators:Tłumacze:
-
+ Special thanks to:Specjalne podziękowania dla:
-
+ Doom9's ForumForum Doom9
-
+ Gleitz | German Doom9Gleitz | Niemieckiego Doom9
-
+ Hydrogenaudio ForumsForum Hydrogenaudio
-
+ RareWaresRareWares
-
+ GitHubGitHub
-
+ SourceForgeSourceForge
-
+ Qt Developer NetworkQt Developer Network
-
+ Marius HudeaMarius Hudea
-
+ If you are willing to contribute a LameXP translation, feel free to contact us!Jeśli chcesz wspomóc LameXP w obsłudze większej ilości języków, nie wahaj skontaktować się z nami!
-
+ The following third-party software is used in LameXP:Następujące programy firm trzecich zostały użyte w LameXP:
-
+ LAME - OpenSource mp3 EncoderLAME - Otwartoźródłowy koder mp3
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ Released under the terms of the GNU Lesser General Public License.Wydane na warunkach licencji GNU Lesser General Public License.
-
+ OggEnc - Ogg Vorbis EncoderOggEnc - Koder Ogg Vorbis
-
+ Completely open and patent-free audio encoding technology.Całkowicie otwarta i wolna od patentów technologia kompresji dźwięku.
-
+ Nero AAC Reference MPEG-4 EncoderNero AAC Reference MPEG-4 Encoder
-
+ Freeware state-of-the-art HE-AAC encoder with 2-Pass support.Darmowy, jedyny w swoim rodzaju koder HE-AAC z wsparciem dla dwóch przebiegów.
-
+ Available from vendor web-site as free download:Darmowy pakiet dostępny ze strony wydawcy:
-
+ Aften - A/52 audio encoderAften - Koder dźwięku A/52
-
+ FLAC - Free Lossless Audio CodecFLAC - Darmowy i bezstartny kodek dźwięku
-
+ Open and patent-free lossless audio compression technology.Otwarta i wolna od patentów technologia bezstratnej kompresji dźwięku.
-
+ Opus Audio CodecOpus Audio Codec
-
+ Totally open, royalty-free, highly versatile audio codec.Otwartoźródłowy, wolny od patentów, wielozadaniowy kodek dźwięku.
-
+ mpg123 - Fast Console MPEG Audio Player/Decodermpg123 - Szybki dekoder/odtwarzacz MPEG Audio
-
+ FAAD - OpenSource MPEG-4 and MPEG-2 AAC DecoderFAAD - Otwartoźródłowy dekoder MPEG-4 oraz MPEG-2 AAC
-
+ Released under the terms of the GNU General Public License.Wydane na warunkach licencji GNU General Public License.
-
+ AC3Filter Tools - AC3/DTS DecoderAC3Filter Tools - Dekoder AC3/DTS
-
+ WavPack - Hybrid Lossless CompressionWavpack - Bezstratny hybrydowy kodek dźwięku
-
+ Completely open audio compression format.Całkowicie otwarty format kompresji dźwięku.
-
+ Musepack - Living Audio CompressionMusepack - Koder dźwięku
-
+ Monkey's Audio - Lossless Audio CompressorMonkey's Audio - Koder bezstratnego formatu dźwięku
-
+ Freely available source code, simple SDK and non-restrictive licensing.Szeroko dostępny kod źródłowy, prosty SDK i bezrestrykcyjna licencja.
-
+ Shorten - Lossless Audio CompressorShorten - Bezstratny kodek dźwięku
-
+ Speex - Free Codec For Free SpeechSpeex - Darmowy kodek dla mowy ludzkiej
-
+ Open Source patent-free audio format designed for speech.Otwartoźródłowy, wolny od patentów format dźwięku przeznaczony dla mowy ludzkiej.
-
+ The True Audio - Lossless Audio CodecThe True Audio - Bezstratny kodek dźwięku
-
+ refalac - Win32 command line ALAC encoder/decoder
-
+ The ALAC reference implementation by Apple is available under the Apache license.
-
+ wma2wav - Dump WMA files to Wave Audiowma2wav - Dekoder plików WMA do Wave
-
+ Copyright (c) 2011 LoRd_MuldeR <mulder2@gmx.de>. Some rights reserved.Prawa autorskie: 2011 LoRd_MuldeR <mulder2@gmx.de>. Pewne prawa zastrzeżone.
-
+ avs2wav - Avisynth to Wave Audio converteravs2wav - Konwerter dźwięku z Avisynth do Wave
-
+ By Jory Stone <jcsston@toughguy.net> and LoRd_MuldeR <mulder2@gmx.de>.Autorami programu są Jory Stone <jcsston@toughguy.net> i LoRd_MuldeR <mulder2@gmx.de>.
-
+ dcaencdcaenc
-
+ Copyright (c) 2008-2011 Alexander E. Patrakov. Distributed under the LGPL.Prawa autorskie: 2008-2011 Alexander E. Patrakov. Rozpowszechniane na licencji LGPL.
-
+ MediaInfo - Media File Analysis ToolMediaInfo - Narzędzie do analizy plików multimedialnych
-
+ SoX - Sound eXchangeSoX - Sound eXchange
-
+ GnuPG - The GNU Privacy GuardGnuPG - GNU Privacy Guard
-
+ GNU Wget - Software for retrieving files using HTTPGNU Wget - Oprogramowanie służące do pobierania plików za pomocą protokołu HTTP
-
+ UPX - The Ultimate Packer for eXecutablesUPX - The Ultimate Packer for eXecutables
-
+ Silk Icons - Over 700 icons in PNG formatSilk Icons - Ponad 700 ikon w formacie PNG
-
+ By Mark James, released under the Creative Commons 'by' License.Autorstwa Mark James, wydane na licencji Creative Commons.
-
+ The copyright of LameXP as a whole belongs to LoRd_MuldeR. The copyright of third-party software used in LameXP belongs to the individual authors.Do programu LameXP jako całości, prawa autorskie posiada LoRd_MuldeR. Prawa autorskie oprogramowania firm trzecich należą do autorów poszczególnych programów.
-
+ n/an/d
@@ -816,12 +816,12 @@
Kopiuj do schowka
-
+ Log FilePlik dziennika zdarzeń
-
+ The log file shows detailed information about the selected job.Plik dziennika zdarzeń pokazuje szczegółowe informacje na temat wybranego zadania.
@@ -856,7 +856,7 @@
-
+ Show DetailsPokaż szczegóły
@@ -1590,9 +1590,9 @@
-
-
-
+
+
+ Check for UpdatesSprawdź aktualizacje
@@ -1633,13 +1633,13 @@
-
+ Disable Update ReminderWyłącz przypominanie o aktualizacji
-
+ Disable Sound EffectsWyłącz efekty dźwiękowe
@@ -1719,861 +1719,861 @@
Hibernuj zamiast zamykać
-
+ Adding file(s), please wait...Dodawanie plików, prosze czekać...
-
-
+
+ Access DeniedDostęp zablokowany
-
+ %1 file(s) have been rejected, because read access was not granted!%1 plik(ów) zostało odrzuconych z powodu braku dostępu do pliku!
-
+ This usually means the file is locked by another process.To przeważnie oznacza, że plik jest zablokowany przez inny proces.
-
+ CDDA FilesPliki CDDA
-
+ %1 file(s) have been rejected, because they are dummy CDDA files!%1 plik(ów) zostało odrzuconych ponieważ to nie są właściwe pliki CDDA!
-
+ Sorry, LameXP cannot extract audio tracks from an Audio-CD at present.LameXP nie może teraz wyekstrachować ścieżki z płyty Audio-CD.
-
+ We recommend using %1 for that purpose.Zaleca się użycie w tym celu %1.
-
+ Cue SheetCue Sheet
-
+ %1 file(s) have been rejected, because they appear to be Cue Sheet images!%1 plik(ów) zostało odrzuconych, ponieważ to nie są pliki obrazów Cue Sheet!
-
+ Please use LameXP's Cue Sheet wizard for importing Cue Sheet files.Prosze użyć przewodnika Cue Sheet w LameXP w celu importowania tych plików.
-
+ Files RejectedPliki odrzucone
-
+ %1 file(s) have been rejected, because the file format could not be recognized!%1 plik(ów) zostało odrzuconych, ponieważ ich format nie został rozpoznany!
-
+ This usually means the file is damaged or the file format is not supported.To przeważnie oznacza że plik jest uszkodzony lub format pliku nie jest wspierany.
-
+ Scanning folder(s) for files, please wait...Skanowanie folderu/ów, prosze czekać...
-
+ You can drop in audio files here!Tutaj możesz upuścić pliki dźwiękowe!
-
+ Open File in External ApplicationOtwórz plik w zewnętrznym programie
-
+ Browse File LocationOtwórz lokalizację pliku
-
+ Browse Selected FolderOtwórz wybrany folder
-
+ Bookmark Current Output FolderZapamiętaj wybrany folder
-
+ License DeclinedLicencja odrzucona
-
+ You have declined the license. Consequently the application will exit now!Odrzuciłeś licencję. W takim razie program zostanie teraz zamknięty!
-
+ Goodbye!Naraska!
-
+ LameXP - ExpiredLameXP - Termin wygasł
-
+ This demo (pre-release) version of LameXP has expired at %1.Ta wersja próbna LameXP wygasła %1.
-
+ LameXP is free software and release versions won't expire.LameXP jest darmowym oprogramowaniem i pełna wersja nie wygasa.
-
-
+
+ Exit ProgramWyjdź z programu
-
+ It seems that a bogus anti-virus software is slowing down the startup of LameXP.Najwyraźniej twoje oprogramowanie antywirusowe spowalnia uruchamianie się LameXP.
-
+ Please refer to the %1 document for details and solutions!Prosze sprawdzić dokument %1 w celu dalszych szcegółów i rozwiązań!
-
+ Slow StartupPowolny start
-
-
-
-
-
+
+
+
+
+ DiscardZamknij
-
-
+
+ Don't Show AgainNie pokazuj ponownie
-
+ Urgent UpdateWażna aktualizacja
-
+ Your version of LameXP is more than a year old. Time for an update!Twoja wersja LameXP jest starsza niż rok! Czas na aktualizację!
-
-
-
+
+
+ Update ReminderPowiadomienie aktualizacji
-
+ Your last update check was more than 14 days ago. Check for updates now?Ostatnie sprawdzenie aktualizacji było ponad 14 dni temu. Sprawdzić teraz aktualizacje?
-
+ Your did not check for LameXP updates yet. Check for updates now?Nie sprawdzałeś jeszcze aktualizacji LameXP. Sprawdzić teraz aktualizacje?
-
+ PostponePrzełóż
-
+ LameXP detected that your version of the Nero AAC encoder is outdated!LameXP wykrył że Twoja wersja kodera Nero AAC jest nieaktualna!
-
+ The current version available is %1 (or later), but you still have version %2 installed.Wersją dostępną obecnie jest %1, Twoja wersja to %2.
-
+ n/an/d
-
+ You can download the latest version of the Nero AAC encoder from the Nero website at:Możesz pobrać najnowszą wersję kodera Nero AAC ze strony Nero:
-
+ AAC Encoder OutdatedKoder AAC jest nieaktualny
-
+ The Nero AAC encoder could not be found. AAC encoding support will be disabled.Nie można odnaleźć kodera Nero AAC. Kompresja formatu AAC zostanie wyłączona.
-
+ Please put 'neroAacEnc.exe', 'neroAacDec.exe' and 'neroAacTag.exe' into the LameXP directory!Prosze skopiować 'neroAacEnc.exe', 'neroAacDec.exe', oraz 'neroAacTag.exe' do folderu LameXP!
-
+ Your LameXP directory is located here:Folder aplikacji LameXP znajduje się tutaj:
-
+ You can download the Nero AAC encoder for free from the official Nero website at:Możesz pobrać koder Nero AAC za darmo z oficjalnej strony Nero:
-
+ AAC Support DisabledWsparcie dla AAC wyłączone
-
-
-
+
+
+ LameXPLameXP
-
+ You must add at least one file to the list before proceeding!Powinienieś dodać przynajmniej jeden plik do listy aby zacząć działać!
-
+ Not FoundNie znaleziono
-
+ Your currently selected TEMP folder does not exist anymore:Wybrany przez Ciebie folder tymczasowy TEMP już nie istnieje:
-
+ Restore DefaultPrzywróć domyślne
-
+ CancelAnuluj
-
+ Low Diskspace WarningOstrzeżenie o małej ilości miejsca na dysku
-
+ There are less than %1 GB of free diskspace available on your system's TEMP folder.Jest mniej niż %1 GB dostępnego miejsca w systemowym folderze TEMP.
-
+ DEMO VERSIONWERSJA PRÓBNA
-
+ (Hint: Please ignore the name of the downloaded ZIP file and check the included 'changelog.txt' instead!)(Podpowiedź: Zignoruj nazwę pobranego pliku ZIP, w zamian sprawdż załączony w archiwum plik "changelog.txt"!)
-
+ It is highly recommend to free up more diskspace before proceeding with the encode!Jest wysoce zalecane zwolnić miejsce na dysku zanim zaczniesz kompresję!
-
+ Your TEMP folder is located at:Twój folder TEMP znajduję się:
-
+ Abort Encoding ProcessPrzerwij proces kompresji
-
+ Clean Disk NowWykonaj oczyszczanie dysku
-
-
+
+ IgnoreIgnoruj
-
+ Initializing directory outline, please be patient...Ładowanie zestawu folderów, prosze czekać...
-
+ Refresh Directory OutlineOdśwież foldery
-
+ Go To Parent Directory
-
+ Export Meta Tags to CSV FileEksportuj Tagi do pliku CVS
-
+ Import Meta Tags from CSV FileImportuj Tagi do pliku CVS
-
+ Skipping update check this time, please be patient...Pomijanie sprawdzania aktualizacji, prosze czekać...
-
+ Low DiskspaceMało miejsca na dysku
-
+ You are proceeding with low diskspace. Problems might occur!Chcesz zacząć działać z małą ilością miejsca na dysku. Mogą wystąpić problemy!
-
+ Sorry, an unsupported encoder has been chosen!Został wybrany koder, który nie jest wspierany!
-
+ Cannot write to the selected output directory.Nie można zapisać do wybranej lokalizacji.
-
+ Please choose a different directory!Prosze wybrać inną lokalizację!
-
+ Load TranslationZaladuj plik językowy
-
+ Translation FilesPliki językowe
-
+ Do you really want to disable the update reminder?Czy na pewno chcesz wyłączyć przypominanie o aktualizacjach?
-
-
-
-
-
-
-
+
+
+
+
+
+
+ YesTak
-
-
-
-
-
-
-
+
+
+
+
+
+
+ NoNie
-
+ The update reminder has been disabled.Przypominanie o aktualizacjach wyłączone.
-
+ Please remember to check for updates at regular intervals!Prosze pamiętać o okresowym sprawdzaniu aktualizacji!
-
+ The update reminder has been re-enabled.Przypominanie o aktualizacjach ponownie włączone.
-
+ Do you really want to disable all sound effects?Czy na pewno chcesz wyłączyć wszystkie dźwiękowe?
-
-
+
+ Sound EffectsEfekty dźwiękowe
-
+ All sound effects have been disabled.Wszystkie efekty dźwiękowe zostały wyłączone.
-
+ The sound effects have been re-enabled.Efekty dźwiękowe zostały ponownie włączone.
-
-
-
+
+
+ Nero AAC NotificationsPowiadomienia Nero AAC
-
+ Do you really want to disable all Nero AAC Encoder notifications?Czy na pewno chcesz wyłączyć wszystkie powiadomienia Nero AAC?
-
+ All Nero AAC Encoder notifications have been disabled.Wszystkie powiadomienia kodera Nero AAC zostały wyłączone.
-
+ The Nero AAC Encoder notifications have been re-enabled.Powiadomienia Nero AAC zostały ponownie włączone.
-
-
-
+
+
+ Slow Startup NotificationsPowiadomienia o powolnym starcie
-
+ Do you really want to disable the slow startup notifications?Czy na pewno chcesz wyłączyć powiadomienia o powolnym starcie?
-
+ The slow startup notifications have been disabled.Powiadomienia o powolnym starcie zostały wyłączone.
-
+ The slow startup notifications have been re-enabled.Powiadomienia o powolnym starcie zostały ponownie włączone.
-
-
+
+ Open Cue SheetOtwórz plik Cue Sheet
-
-
+
+ Cue Sheet FilePlik Cue Sheet
-
-
+
+ Beta UpdatesAktualizacje Beta
-
+ Do you really want LameXP to check for Beta (pre-release) updates?Czy na pewno chcesz aby LameXP sprawdzał aktualizacje Beta?
-
+ LameXP will check for Beta (pre-release) updates from now on.Od teraz LameXP będzie sprawdzał aktualizacje Beta.
-
+ Check NowSprawdź teraz
-
+ LameXP will <i>not</i> check for Beta (pre-release) updates from now on.LameXP od teraz <i>nie będzie</i> sprawdzał aktualizacji Beta.
-
-
-
+
+
+ Hibernate ComputerHibernuj komputer
-
+ Do you really want the computer to be hibernated on shutdown?Czy na pewno chcesz aby komputer był hibernowany zamiast zamykany?
-
+ LameXP will hibernate the computer on shutdown from now on.Od teraz LameXP będzie hibernował komputer zamiast zamykać.
-
+ LameXP will <i>not</i> hibernate the computer on shutdown from now on.LameXP od teraz <i>nie</i> będzie hibernował komputera tylko zamykał.
-
-
-
+
+
+ Shell IntegrationIntegracja z systemem
-
+ Do you really want to disable the LameXP shell integration?Czy na pewno chcesz wyłączyć integrację LameXP z systemem?
-
+ The LameXP shell integration has been disabled.Integracja LameXP z systemem zostałą wyłączona.
-
+ The LameXP shell integration has been re-enabled.Integracja LameXP z systemem została ponownie włączona.
-
-
+
+ Add file(s)Dodaj plik(i)
-
-
+
+ Add FolderDodaj folder
-
-
+
+ Save CSV fileZapisz plik CSV
-
-
-
-
+
+
+
+ CSV FilePlik CSV
-
-
-
-
+
+
+
+ CSV ExportEksportowanie CSV
-
+ Sorry, there are no meta tags that can be exported!Nie ma żadnych tagów, które można eksportować!
-
+ Sorry, failed to open CSV file for writing!Nie można otworzyć pliku CSV aby go zapisać!
-
+ Sorry, failed to write to the CSV file!Nie można zapisać do pliku CSV!
-
+ The CSV files was created successfully!Pliki CSV utworzone pomyślnie!
-
-
+
+ Open CSV fileOtwórz plik CSV
-
+ Sorry, failed to open CSV file for reading!Nie można otworzyć pliku CSV aby go wczytać!
-
-
-
-
-
+
+
+
+
+ CSV ImportImportowanie CSV
-
+ Sorry, failed to read from the CSV file!Próba odczytania pliku CSV zakończona niepowodzeniem!
-
+ Sorry, the CSV file does not contain any known fields!Plik CSV nie zawiera żadnych znanych pól!
-
+ CSV file is incomplete. Not all files were updated!Plik CSV nie jest kompletny. Nie wszystkie pliki zostały zaktualizowane!
-
+ The CSV files was imported successfully!Pliki CSV zaimportowano pomyślnie!
-
-
+
+ New FolderNowy folder
-
+ Enter the name of the new folder:Wprowadź nazwę nowego folderu:
-
+ Failed to create folderUtworzenie folderu zakończone niepowodzeniem
-
+ The new folder could not be created:Nowy folder nie mógł zostać stworzony:
-
+ Drive is read-only or insufficient access rights!Dysk tylko do odczytu lub brak praw dostępu!
-
+ QAAC (Apple)QAAC (Apple)
-
+ FHG AAC (Winamp)FHG AAC (Winamp)
-
+ Nero AACNero AAC
-
+ Not available!Niedostępny!
-
+ Current AAC Encoder: %1Obecny koder AAC: %1
-
-
-
-
+
+
+
+ Quality Level %1Poziom jakości %1
-
-
-
+
+
+ Compression %1Kompresja %1
-
-
-
+
+
+ UncompressedNieskompresowany
-
+ Best Quality (Very Slow)Najlepsza jakość (Bardzo wolno)
-
+ High Quality (Recommended)Wysoka jakość (Zalecane)
-
+ Average Quality (Default)Średnia jakość (Domyślnie)
-
+ Low Quality (Fast)Niska jakość (Szybko)
-
+ Poor Quality (Very Fast)Najniższa jakość (Bardzo szybko)
-
+ File name without extensionNazwa pliku bez rozszerzenia
-
+ Track number with leading zeroNumer ścieżki z zerem na początku
-
+ Track titleNazwa ścieżki
-
+ Artist nameNazwa Artysty
-
+ Album nameNazwa Albumu
-
+ Year with (at least) four digitsRok z (przynajmniej) czterema cyframi
-
+ CommentKomentarz
-
+ Characters forbidden in file names:Zabronione znaki w nazwach plików:
-
+ Rename MacrosZmień nazwy makr
-
+ %1 Instance(s)%1 wątek/ki
-
+ Cannot write to the selected directory. Please choose another directory!Nie można zapisać do wybranej lokalizacji. Prosze wybierz inną lokalizację!
-
+ Overwrite Mode
-
+ Warning: This mode may overwrite existing files with no way to revert!
-
+ Continue
-
+ Revert
-
+ Already RunningJuż działa
-
+ LameXP is already running, please use the running instance!LameXP już działa, przejdź do działającego programu!
@@ -3254,23 +3254,23 @@
QApplication
-
+ Executable '%1' doesn't support Windows compatibility mode.Plik wykonywalny '%1' nie działa w trybie kompatybilności z Windows.
-
+ Executable '%1' requires Qt v%2, but found Qt v%3.Plik wykonywalny '%1' wymaga Qt v%2, znaleziono jednak Qt v%3.
-
+ Executable '%1' was built for Qt '%2', but found Qt '%3'.Plik wykonywalny "%1" został skompilowany dla Qt "%2", znaleziono "%3".
-
-
+
+ Executable '%1' requires Windows 2000 or later.Plik wykonywalny '%1' wymaga do uruchomienia Windows 2000 lub nowszego.
diff --git a/etc/Translation/LameXP_SV.ts b/etc/Translation/LameXP_SV.ts
index a8ab5bbf..981100d5 100644
--- a/etc/Translation/LameXP_SV.ts
+++ b/etc/Translation/LameXP_SV.ts
@@ -14,13 +14,13 @@
Besök %1 för nyheter och uppdateringar!
-
-
+
+ Note: This demo (pre-release) version of LameXP will expire at %1. Still %2 days left.OBS! Denna testversion av LameXP kommer att upphöra %1. %2 dagar kvar.
-
+ Note: LameXP is free software. Do <b>not</b> pay money to obtain or use LameXP! If some third-party website tries to make you pay for downloading LameXP, you should <b>not</b> respond to the offer !!!OBS! LameXP är gratis mjukvara. Betala <b>inte</b> för att ladda ner eller använda LameXP! Om någon webbsida försöker ta betalt för LameXP, bör du lämna sidan <b>utan</b> att ladda ner något!
@@ -75,298 +75,298 @@
Stäng
-
+ The following people have contributed to LameXP:Följande har medverkat i LameXP:
-
+ Programmers:Programmerare:
-
+ Project LeaderProjektledare
-
+ Translators:Översättare:
-
+ Special thanks to:Speciellt tack till:
-
+ Doom9's ForumDoom9's Forum
-
+ Gleitz | German Doom9Gleitz | German Doom9
-
+ Hydrogenaudio ForumsHydrogenaudio Forums
-
+ RareWaresRareWares
-
+ GitHubGitHub
-
+ SourceForgeSourceForge
-
+ Qt Developer NetworkQt Developer Network
-
+ Marius HudeaMarius Hudea
-
+ If you are willing to contribute a LameXP translation, feel free to contact us!Kontakta oss gärna om du vill medverka il LameXP, med en översättning!
-
+ The following third-party software is used in LameXP:Följande 3:e-parts mjukvara används i LameXP:
-
+ LAME - OpenSource mp3 EncoderLAME - OpenSource mp3 Encoder
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ Released under the terms of the GNU Lesser General Public License.Släppt under Gnu Lesser General Public License.
-
+ OggEnc - Ogg Vorbis EncoderOggEnc - Ogg Vorbis Encoder
-
+ Completely open and patent-free audio encoding technology.Helt öppen och patentfri ljudkodningsteknologi.
-
+ Nero AAC Reference MPEG-4 EncoderNero AAC Reference MPEG-4 Encoder
-
+ Freeware state-of-the-art HE-AAC encoder with 2-Pass support.Freeware state-of-the-art HE-AAC-kodare med stöd för 2-Pass.
-
+ Available from vendor web-site as free download:Tillgänglig som gratis nedladdning, från utvecklarens webbsida:
-
+ Aften - A/52 audio encoderAften - A/52 audio encoder
-
+ FLAC - Free Lossless Audio CodecFLAC - Free Lossless Audio Codec
-
+ Open and patent-free lossless audio compression technology.Öppen och patentfri, förlustfri ljudkomprimeringsteknik.
-
+ Opus Audio CodecOpus Audio Codec
-
+ Totally open, royalty-free, highly versatile audio codec.Helt öppen, avgiftsfri, mycket mångsidig ljud-codec
-
+ mpg123 - Fast Console MPEG Audio Player/Decodermpg123 - Fast Console MPEG Audio Player/Decoder
-
+ FAAD - OpenSource MPEG-4 and MPEG-2 AAC DecoderFAAD - OpenSource MPEG-4 and MPEG-2 AAC Decoder
-
+ Released under the terms of the GNU General Public License.Släppt under GNU Generel Public License (GPL).
-
+ AC3Filter Tools - AC3/DTS DecoderAC3Filter Tools - AC3/DTS Decoder
-
+ WavPack - Hybrid Lossless CompressionWavPack - Hybrid Lossless Compression
-
+ Completely open audio compression format.Helt öppet ljudkomprimeringsformat.
-
+ Musepack - Living Audio CompressionMusepack - Living Audio Compression
-
+ Monkey's Audio - Lossless Audio CompressorMonkey's Audio - Lossless Audio Compressor
-
+ Freely available source code, simple SDK and non-restrictive licensing.Fritt tillgänglig källkod, enkel SDK och icke-restriktiv licensiering.
-
+ Shorten - Lossless Audio CompressorShorten - Lossless Audio Compressor
-
+ Speex - Free Codec For Free SpeechSpeex - Free Codec For Free Speech
-
+ Open Source patent-free audio format designed for speech.Öppen källkod, patentfritt ljudformat designat för tal.
-
+ The True Audio - Lossless Audio CodecThe True Audio - Lossless Audio Codec
-
+ refalac - Win32 command line ALAC encoder/decoder
-
+ The ALAC reference implementation by Apple is available under the Apache license.
-
+ wma2wav - Dump WMA files to Wave Audiowma2wav - Dump WMA files to Wave Audio
-
+ Copyright (c) 2011 LoRd_MuldeR <mulder2@gmx.de>. Some rights reserved.Copyright (c) 2011 LoRd_MuldeR <mulder2@gmx.de>. Some rights reserved.
-
+ avs2wav - Avisynth to Wave Audio converteravs2wav - Avisynth to Wave Audio converter
-
+ By Jory Stone <jcsston@toughguy.net> and LoRd_MuldeR <mulder2@gmx.de>.By Jory Stone <jcsston@toughguy.net> and LoRd_MuldeR <mulder2@gmx.de>.
-
+ dcaencdcaenc
-
+ Copyright (c) 2008-2011 Alexander E. Patrakov. Distributed under the LGPL.Copyright (c) 2008-2011 Alexander E. Patrakov. Distributed under the LGPL.
-
+ MediaInfo - Media File Analysis ToolMediaInfo - Analysverktyg för mediafiler
-
+ SoX - Sound eXchangeSoX - Sound eXchange
-
+ GnuPG - The GNU Privacy GuardGnuPG - The GNU Privacy Guard
-
+ GNU Wget - Software for retrieving files using HTTPGNU Wget - Mjukvara för att ta emot filer via HTTP
-
+ UPX - The Ultimate Packer for eXecutablesUPX - Den ultimata paketeraren för exekverbara filer
-
+ Silk Icons - Over 700 icons in PNG formatSilk Icons - Över 700 iconer i PNG-format
-
+ By Mark James, released under the Creative Commons 'by' License.Av Mark James, publicerad under Creative Commons 'by' Licens.
-
+ The copyright of LameXP as a whole belongs to LoRd_MuldeR. The copyright of third-party software used in LameXP belongs to the individual authors.The copyright of LameXP as a whole belongs to LoRd_MuldeR. The copyright of third-party software used in LameXP belongs to the individual authors.
-
+ n/an/a
@@ -817,12 +817,12 @@
Kopiera till Urklipp
-
+ Log FileLoggfil
-
+ The log file shows detailed information about the selected job.Loggfilen visar detaljerad information om markerad aktivitet.
@@ -857,7 +857,7 @@
-
+ Show DetailsVisa detaljer
@@ -1590,9 +1590,9 @@
-
-
-
+
+
+ Check for UpdatesSök efter uppdateringar
@@ -1633,13 +1633,13 @@
-
+ Disable Update ReminderInaktivera uppdateringsmeddelande
-
+ Disable Sound EffectsInaktivera ljudeffekter
@@ -1719,861 +1719,861 @@
Försätt datorn i viloläge vid avslut
-
+ Adding file(s), please wait...Lägger till fil(er), vänta...
-
-
+
+ Access DeniedÅtkomst nekad
-
+ %1 file(s) have been rejected, because read access was not granted!%1 fil(er) har undantagits, på grund av att åtkomst nekades!
-
+ This usually means the file is locked by another process.Det innebär oftast att filen är låst av någon annan process.
-
+ CDDA FilesCDDA-filer
-
+ %1 file(s) have been rejected, because they are dummy CDDA files!%1 fil(er) har undantagits, på grund av att det är fejkade CDDA-filer!
-
+ Sorry, LameXP cannot extract audio tracks from an Audio-CD at present.LameXP kan för närvarande inte extrahera ljudspår från en ljud-CD.
-
+ We recommend using %1 for that purpose.Vi rekommenderar att du använder %1 för det ändamålet.
-
+ Cue SheetCue-fil
-
+ %1 file(s) have been rejected, because they appear to be Cue Sheet images!%1 fil(er) har undantagits, på grund av att de verkar vara cue-filer!
-
+ Please use LameXP's Cue Sheet wizard for importing Cue Sheet files.Använd LameXPs cue-guide för att importera cue-filer.
-
+ Files RejectedUndantagna filer
-
+ %1 file(s) have been rejected, because the file format could not be recognized!%1 fil(er) har undantagits, på grund av att filformatet inte känns igen!
-
+ This usually means the file is damaged or the file format is not supported.Det innebär oftast att filen är skadad eller att filformatet inte stöds.
-
+ Scanning folder(s) for files, please wait...Genomsöker mapp(ar) efter fil(er), vänta...
-
+ DEMO VERSIONDEMOVERSION
-
+ You can drop in audio files here!Du kan dra och släppa filer här!
-
+ Initializing directory outline, please be patient...Initierar mappdisposition, vänta...
-
+ Open File in External ApplicationÖppna fil i externt program
-
+ Browse File LocationÖppna målmappen
-
+ Browse Selected FolderÖppna markerad mapp
-
+ Refresh Directory OutlineUppdatera mappdisposition
-
+ Go To Parent Directory
-
+ Bookmark Current Output FolderLägg till aktuell utdatamapp i favoriter
-
+ Export Meta Tags to CSV FileExportera metadata till CSV-fil
-
+ Import Meta Tags from CSV FileImportera metadata från CSV-fil
-
+ License DeclinedLicensavtal avvisat
-
+ You have declined the license. Consequently the application will exit now!Du har nekat att godkänna licensavtalet. Programmet kommer nu att avslutas!
-
+ Goodbye!Hej då!
-
+ LameXP - ExpiredLameXP - Upphört
-
+ This demo (pre-release) version of LameXP has expired at %1.Denna demoversion av LameXP har upphört att gälla från %1.
-
+ LameXP is free software and release versions won't expire.LameXP är kostnadsfritt och release-versionerna upphör inte att gälla.
-
-
+
+ Exit ProgramAvsluta programmet
-
+ It seems that a bogus anti-virus software is slowing down the startup of LameXP.Det verkar som ett antivirusprogram orsakar långsammare uppstart av LameXP.
-
+ Please refer to the %1 document for details and solutions!Läs gärna %1 för detaljer och lösningar!
-
+ Slow StartupLångsam uppstart
-
-
-
-
-
+
+
+
+
+ DiscardStäng
-
-
+
+ Don't Show AgainVisa inte igen
-
+ Urgent UpdateViktig uppdatering
-
+ Your version of LameXP is more than a year old. Time for an update!Din version av LameXP är mer än ett år gammal. Dags att uppdatera!
-
-
+
+ IgnoreIgnorera
-
+ Skipping update check this time, please be patient...Hoppar över uppdateringskontrollen den här gången, vänta...
-
-
-
+
+
+ Update ReminderUppdateringspåminnelse
-
+ Your last update check was more than 14 days ago. Check for updates now?Din senaste uppdateringskontroll var för mer än 14 dagar sedan. Vill du söka efter uppdateringar nu?
-
+ Your did not check for LameXP updates yet. Check for updates now?Du har inte genomfört uppdateringskontroll ännu. Vill du söka efter uppdateringar nu?
-
+ PostponeSkjut upp
-
+ LameXP detected that your version of the Nero AAC encoder is outdated!LameXP har uptäckt att din version av Nero AAC-kodare är utdaterad!
-
+ The current version available is %1 (or later), but you still have version %2 installed.Aktuell version är %1 (eller senare), men du har fortfarande version %2.
-
+ n/an/a
-
+ You can download the latest version of the Nero AAC encoder from the Nero website at:Du kan ladda ner senaste versionen av Nero AAC-kodare från Neros webbsida:
-
+ (Hint: Please ignore the name of the downloaded ZIP file and check the included 'changelog.txt' instead!)(Tips: Bortse från den nedladde zipfilens namn, och kontrollera istället den inkluderade textfilen 'changelog.txt'!)
-
+ AAC Encoder OutdatedAAC-kodare utdaterad
-
+ The Nero AAC encoder could not be found. AAC encoding support will be disabled.Neros AAC-kodare kan inte hittas. Stödet för AAC-kodning kommer att inaktiveras.
-
+ Please put 'neroAacEnc.exe', 'neroAacDec.exe' and 'neroAacTag.exe' into the LameXP directory!Placera 'neroAacEnc.exe', 'neroAacDec.exe' och 'neroAacTag.exe' i LameXPs programmmapp!
-
+ Your LameXP directory is located here:Din LameXP programmapp finns här:
-
+ You can download the Nero AAC encoder for free from the official Nero website at:Du kan ladda ner Nero AAC-kodare gratis från den officiella webbsidan:
-
+ AAC Support DisabledAAC-stödet är inaktiverat
-
-
-
+
+
+ LameXPLameXP
-
+ You must add at least one file to the list before proceeding!Du måste lägga till minst en fil till listan innan du fortsätter!
-
+ Not FoundKan inte hittas
-
+ Your currently selected TEMP folder does not exist anymore:Din aktuella TEMP-mapp finns inte längre:
-
+ Restore DefaultÅterställ standard
-
+ CancelAvbryt
-
+ There are less than %1 GB of free diskspace available on your system's TEMP folder.Det finns mindre än %1 GB ledigt diskutrymme i systemets temp-mapp.
-
+ It is highly recommend to free up more diskspace before proceeding with the encode!Du behöver frigöra mer diskutrymme innan du fortsätter med omkodningen!
-
+ Your TEMP folder is located at:Temp-mappens placering:
-
+ Low Diskspace WarningVarning för dåligt diskutrymme
-
+ Abort Encoding ProcessAvbryt omkodningsprocessen
-
+ Clean Disk NowRensa disken nu
-
+ Low DiskspaceDåligt diskutrymme
-
+ You are proceeding with low diskspace. Problems might occur!Du fortsätter med dåligt diskutrymme. Problem kan uppstå!
-
+ Sorry, an unsupported encoder has been chosen!En kodare som saknar stöd har valts!
-
+ Cannot write to the selected output directory.Kan inte skriva till den valda utdatamappen.
-
+ Please choose a different directory!Välj en annan målmapp!
-
+ Load TranslationLäs in översättning
-
+ Translation FilesÖversättningsfiler
-
+ Do you really want to disable the update reminder?Vill du verkligen inaktivera uppdateringspåminnelsen?
-
-
-
-
-
-
-
+
+
+
+
+
+
+ YesJa
-
-
-
-
-
-
-
+
+
+
+
+
+
+ NoNej
-
+ The update reminder has been disabled.Uppdateringspåminnelsen har inaktiverats.
-
+ Please remember to check for updates at regular intervals!Glöm inte att söka efter uppdateringar med jämna mellanrum!
-
+ The update reminder has been re-enabled.Uppdateringspåminnelsen har återaktiverats.
-
+ Do you really want to disable all sound effects?Vill du verkligen inaktivera alla ljudeffekter?
-
-
+
+ Sound EffectsLjudeffekter
-
+ All sound effects have been disabled.Alla ljudeffekter har inaktiverats.
-
+ The sound effects have been re-enabled.Ljudeffekterna har återaktiverats.
-
-
-
+
+
+ Nero AAC NotificationsNero AAC-meddelanden
-
+ Do you really want to disable all Nero AAC Encoder notifications?Vill du verkligen inaktivera alla Nero AAC-meddelanden?
-
+ All Nero AAC Encoder notifications have been disabled.Alla Nero AAC-meddelanden har inaktiverats.
-
+ The Nero AAC Encoder notifications have been re-enabled.Nero AAC-meddelanden har återaktiverats.
-
-
-
+
+
+ Slow Startup NotificationsMeddelande om långsam uppstart
-
+ Do you really want to disable the slow startup notifications?Vill du verkligen inaktivera meddelanden om långsam uppstart?
-
+ The slow startup notifications have been disabled.Meddelanden om långsam uppstart har inaktiverats.
-
+ The slow startup notifications have been re-enabled.Meddelanden om långsam uppstart har återaktiverats.
-
-
+
+ Open Cue SheetÖppna cue-fil
-
-
+
+ Cue Sheet FileCue-fil
-
-
+
+ Beta UpdatesBeta-uppdateringar
-
+ Do you really want LameXP to check for Beta (pre-release) updates?Vill du verkligen att LameXP skall söka efter beta-uppdateringar?
-
+ LameXP will check for Beta (pre-release) updates from now on.LameXP kommer i fortsättningen att söka efter beta-uppdatyeringar.
-
+ Check NowSök nu
-
+ LameXP will <i>not</i> check for Beta (pre-release) updates from now on.LameXP kommer i fortsättningen <i>inte</i> att söka efter beta-uppdateringar.
-
-
-
+
+
+ Hibernate ComputerViloläge
-
+ Do you really want the computer to be hibernated on shutdown?Vill du verkligen att datorn skall försättas i viloläge vid avslut?
-
+ LameXP will hibernate the computer on shutdown from now on.LameXP kommer i fortsättningen att försätta datorn i viloläge vid avslut.
-
+ LameXP will <i>not</i> hibernate the computer on shutdown from now on.LameXP kommer i fortsättningen <i>inte</i> att försätta datorn i viloläge vid avslut.
-
-
-
+
+
+ Shell IntegrationUtforskarintegrering
-
+ Do you really want to disable the LameXP shell integration?Vill du verkligen inaktivera LameXPs utforskarintegration?
-
+ The LameXP shell integration has been disabled.LameXPs utforskarintegration har inaktiverats.
-
+ The LameXP shell integration has been re-enabled.LameXPs utforskarintegration har återaktiverats.
-
-
+
+ Add file(s)Lägg till fil(er)
-
-
+
+ Add FolderLägg till mapp
-
-
+
+ Save CSV fileSpara CSV-fil
-
-
-
-
+
+
+
+ CSV FileCSV-fil
-
-
-
-
+
+
+
+ CSV ExportCSV-export
-
+ Sorry, there are no meta tags that can be exported!Det finns ingen meta-data som kan exporteras!
-
+ Sorry, failed to open CSV file for writing!Kunde inte öppna CSV-filen för skrivning!
-
+ Sorry, failed to write to the CSV file!Kunde inte skriva till CSV-filen!
-
+ The CSV files was created successfully!CSV-filen skapades korrekt!
-
-
+
+ Open CSV fileÖppna CSV-fil
-
-
-
-
-
+
+
+
+
+ CSV ImportCSV-import
-
+ Sorry, failed to open CSV file for reading!Kunde inte öppna CSV-filen för läsning!
-
+ Sorry, failed to read from the CSV file!Kunde inte läsa från CSV-filen!
-
+ Sorry, the CSV file does not contain any known fields!CSV-filen innehåller inga kända fält!
-
+ CSV file is incomplete. Not all files were updated!CSV-filen är inte komplett. Alla filer uppdaterades inte!
-
+ The CSV files was imported successfully!CSV-filen importerades korrekt!
-
-
+
+ New FolderNy mapp
-
+ Enter the name of the new folder:Namn på den nya mappen:
-
+ Failed to create folderKunde inte skapa någon mapp
-
+ The new folder could not be created:Den nya mappen kunde inte skapas:
-
+ Drive is read-only or insufficient access rights!Diskenheten är skrivskyddad eller åtkomsträttigheter saknas!
-
+ QAAC (Apple)QAAC (Apple)
-
+ FHG AAC (Winamp)FHG AAC (Winamp)
-
+ Nero AACNero AAC
-
+ Not available!Ej tillgänglig!
-
+ Current AAC Encoder: %1Aktuell AAC-kodare: %1
-
-
-
-
+
+
+
+ Quality Level %1Kvallitetsnivå %1
-
-
-
+
+
+ Compression %1Kompression %1
-
-
-
+
+
+ UncompressedOkomprimerad
-
+ Best Quality (Very Slow)Bäst kvallitet (långsam)
-
+ High Quality (Recommended)Hög kvallitet (rekommenderas)
-
+ Average Quality (Default)Medelkvallitet (standard)
-
+ Low Quality (Fast)Låg kvallitet (snabb)
-
+ Poor Quality (Very Fast)Dålig kvallitet (mycket snabb)
-
+ File name without extensionFilnamn utan filtillägg
-
+ Track number with leading zeroSpårnummer med inledande nolla
-
+ Track titleSpårtitel
-
+ Artist nameArtistnamn
-
+ Album nameAlbumnamn
-
+ Year with (at least) four digitsÅrtal med (minst) fyra siffror
-
+ CommentKommentar
-
+ Characters forbidden in file names:Förbjudna tecken i filnamn:
-
+ Rename MacrosNamnändra macron
-
+ %1 Instance(s)%1 instans(er)
-
+ Cannot write to the selected directory. Please choose another directory!Kan inte skriva till den specificerade mappen. Välj en annan destination!
-
+ Overwrite Mode
-
+ Warning: This mode may overwrite existing files with no way to revert!
-
+ Continue
-
+ Revert
-
+ Already RunningKörs redan
-
+ LameXP is already running, please use the running instance!LameXP körs redan, använd den redan startade instansen!
@@ -3255,23 +3255,23 @@
QApplication
-
+ Executable '%1' doesn't support Windows compatibility mode.EXE-filen '%1' stöder inte Windows kompatibilitetsläge.
-
+ Executable '%1' requires Qt v%2, but found Qt v%3.EXE-filen '%1' kräver Qt v%2, du har Qt v%3.
-
+ Executable '%1' was built for Qt '%2', but found Qt '%3'.EXE-filen '%1' är byggd för Qt '%2', du har Qt '%3'.
-
-
+
+ Executable '%1' requires Windows 2000 or later.EXE-filen '%1' kräver Windows 2000 eller senare.
diff --git a/res/localization/LameXP_UK.qm b/res/localization/LameXP_UK.qm
index bf28614b..bfb0cc5d 100644
Binary files a/res/localization/LameXP_UK.qm and b/res/localization/LameXP_UK.qm differ
diff --git a/res/tools/opusdec.exe b/res/tools/opusdec.exe
index be952f59..5db92a52 100644
Binary files a/res/tools/opusdec.exe and b/res/tools/opusdec.exe differ
diff --git a/res/tools/opusenc.exe b/res/tools/opusenc.exe
index 29420199..990be0f3 100644
Binary files a/res/tools/opusenc.exe and b/res/tools/opusenc.exe differ
diff --git a/src/Config.h b/src/Config.h
index 2c652c25..b77f75fc 100644
--- a/src/Config.h
+++ b/src/Config.h
@@ -28,9 +28,9 @@
#define VER_LAMEXP_MAJOR 4
#define VER_LAMEXP_MINOR_HI 0
#define VER_LAMEXP_MINOR_LO 7
-#define VER_LAMEXP_TYPE Alpha
-#define VER_LAMEXP_PATCH 7
-#define VER_LAMEXP_BUILD 1224
+#define VER_LAMEXP_TYPE Beta
+#define VER_LAMEXP_PATCH 1
+#define VER_LAMEXP_BUILD 1226
///////////////////////////////////////////////////////////////////////////////
// Tool versions (minimum expected versions!)
diff --git a/src/Global.cpp b/src/Global.cpp
index ac06a52a..3605ce3c 100644
--- a/src/Global.cpp
+++ b/src/Global.cpp
@@ -2391,8 +2391,8 @@ void lamexp_fatal_exit(const wchar_t* exitMessage, const wchar_t* errorBoxMessag
}
}
- Sleep(30000);
- TerminateProcess(GetCurrentProcess(), -1);
+ TerminateThread(GetCurrentThread(), -1);
+ Sleep(INFINITE);
}
/*
diff --git a/src/Tools.h b/src/Tools.h
index 29deabc9..ab8c1473 100644
--- a/src/Tools.h
+++ b/src/Tools.h
@@ -72,8 +72,8 @@ g_lamexp_tools[] =
{"8b68461f38410421be30cc895e94e63184daa6f2cb20eb110b66b376b48141838a09bc920efeb1c49de79dd0770ce41b", CPU_TYPE_X86_GEN, "oggenc2.i386.exe", 287603},
{"20648f83cc637cada481143d48c437ced8423e9a0aae01dbce860cd97fb1ce4000e314f3a5395d1eafd8e154a8e74d08", CPU_TYPE_X86_SSE, "oggenc2.sse2.exe", 287603},
{"e1da48055a57bae41d6a1a0dc08b86831c121e85c07aa60aae4196997b166a08cfb7265d9f0f289f445ad73bce28d81f", CPU_TYPE_X64_ALL, "oggenc2.x64.exe", 287603},
- {"76e99a444e9720c83cca4c38d0aa2670c3bb2b0200b751ad3a71e79148291183b99c9506a51d1222dc115ac6f222f3d2", CPU_TYPE_ALL_ALL, "opusdec.exe", 20121207},
- {"9e2896d1663349dd9fa434ab722f5449fb7d46d5af66611225d9b1f5beca0bd08effc59b7adc175525d0f776b2d4fc83", CPU_TYPE_ALL_ALL, "opusenc.exe", 20121207},
+ {"7cff3801328ecae545d5e8c64bae5fd55fd0dca17117b47910779d06991fd3eb920d72c00599aa05d9709c03983d1d7b", CPU_TYPE_ALL_ALL, "opusdec.exe", 20130117},
+ {"b427f7f078bd54b97ff73b71244e0060ce59dcfae7d7e4f25c7a653f5b7dc42325b7e7edd9ec3c4cdae2407f47272884", CPU_TYPE_ALL_ALL, "opusenc.exe", 20130117},
{"bdfa8dec142b6327a33af6bb314d7beb924588d1b73f2ef3f46b31fa6046fe2f4e64ca78b025b7eb9290a78320e2aa57", CPU_TYPE_ALL_ALL, "refalac.exe", 56},
{"d041b60de6c5c6e77cbad84440db57bbeb021af59dd0f7bebd3ede047d9e2ddc2a0c14179472687ba91063743d23e337", CPU_TYPE_ALL_ALL, "shorten.exe", 361},
{"81633b4808ff13e25249aac038ed97570aaeea2bbffacf0f3905514064d1b82d141a6b04f63f1a913e4d09b2d892aea0", CPU_TYPE_ALL_ALL, "sox.exe", 1440},