From 11826e904031f100e82aa376a51e84648cb99a7d Mon Sep 17 00:00:00 2001 From: Maurus Cuelenaere Date: Fri, 21 Aug 2009 15:46:15 +0000 Subject: Rockbox Utility: make chinachippatch translateable + update Dutch translation git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22450 a1c6a512-1295-4272-9138-f99709370657 --- rbutil/chinachippatcher/chinachip.c | 52 +- .../rbutilqt/base/bootloaderinstallchinachip.cpp | 4 +- rbutil/rbutilqt/lang/rbutil_nl.ts | 1012 +++++++++++++------- 3 files changed, 718 insertions(+), 350 deletions(-) diff --git a/rbutil/chinachippatcher/chinachip.c b/rbutil/chinachippatcher/chinachip.c index e7d4095b38..cafb1d189b 100644 --- a/rbutil/chinachippatcher/chinachip.c +++ b/rbutil/chinachippatcher/chinachip.c @@ -27,6 +27,8 @@ #include #include "chinachip.h" +#define tr(x) x /* Qt translation support */ + /* From http://www.rockbox.org/wiki/ChinaChip */ struct header { @@ -89,42 +91,42 @@ int chinachip_patch(const char* firmware, const char* bootloader, fd = fopen(firmware, "rb"); if(!fd) { - ERR("Can't open file %s!", firmware); + ERR(tr("Can't open file %s!"), firmware); goto err; } bd = fopen(bootloader, "rb"); if(!bd) { - ERR("Can't open file %s!", bootloader); + ERR(tr("Can't open file %s!"), bootloader); goto err; } bsize = filesize(bd); - INFO("Bootloader size is %d bytes", bsize); + INFO(tr("Bootloader size is %d bytes"), bsize); FCLOSE(bd); fsize = filesize(fd); - INFO("Firmware size is %d bytes", fsize); + INFO(tr("Firmware size is %d bytes"), fsize); buf = malloc(TOTAL_SIZE); if(buf == NULL) { - ERR("Can't allocate %d bytes!", fsize); + ERR(tr("Can't allocate %d bytes!"), fsize); goto err; } memset(buf, 0, TOTAL_SIZE); - INFO("Reading %s into memory...", firmware); + INFO(tr("Reading %s into memory..."), firmware); if(fread(buf, fsize, 1, fd) != 1) { - ERR("Can't read file %s to memory!", firmware); + ERR(tr("Can't read file %s to memory!"), firmware); goto err; } FCLOSE(fd); if(memcmp(buf, "WADF", 4)) { - ERR("File %s isn't a valid ChinaChip firmware!", firmware); + ERR(tr("File %s isn't a valid ChinaChip firmware!"), firmware); goto err; } @@ -146,30 +148,30 @@ int chinachip_patch(const char* firmware, const char* bootloader, if(i >= fsize) { - ERR("Couldn't find ccpmp.bin in %s!", firmware); + ERR(tr("Couldn't find ccpmp.bin in %s!"), firmware); goto err; } - INFO("Found ccpmp.bin at %d bytes", ccpmp_pos); + INFO(tr("Found ccpmp.bin at %d bytes"), ccpmp_pos); if(ccpmp_backup) { bd = fopen(ccpmp_backup, "wb"); if(!bd) { - ERR("Can't open file %s!", ccpmp_backup); + ERR(tr("Can't open file %s!"), ccpmp_backup); goto err; } - INFO("Writing %d bytes to %s...", ccpmp_size, ccpmp_backup); + INFO(tr("Writing %d bytes to %s..."), ccpmp_size, ccpmp_backup); if(fwrite(&buf[ccpmp_pos], ccpmp_size, 1, bd) != 1) { - ERR("Can't write to file %s!", ccpmp_backup); + ERR(tr("Can't write to file %s!"), ccpmp_backup); goto err; } FCLOSE(bd); } - INFO("Renaming it to ccpmp.old..."); + INFO(tr("Renaming it to ccpmp.old...")); buf[ccpmp_pos + 6] = 'o'; buf[ccpmp_pos + 7] = 'l'; buf[ccpmp_pos + 8] = 'd'; @@ -177,27 +179,27 @@ int chinachip_patch(const char* firmware, const char* bootloader, bd = fopen(bootloader, "rb"); if(!bd) { - ERR("Can't open file %s!", bootloader); + ERR(tr("Can't open file %s!"), bootloader); goto err; } /* Also include path size */ ccpmp_pos -= sizeof(uint32_t); - INFO("Making place for ccpmp.bin..."); + INFO(tr("Making place for ccpmp.bin...")); memmove(&buf[ccpmp_pos + bsize + CCPMPBIN_HEADER_SIZE], &buf[ccpmp_pos], fsize - ccpmp_pos); - INFO("Reading %s into memory...", bootloader); + INFO(tr("Reading %s into memory..."), bootloader); if(fread(&buf[ccpmp_pos + CCPMPBIN_HEADER_SIZE], bsize, 1, bd) != 1) { - ERR("Can't read file %s to memory!", bootloader); + ERR(tr("Can't read file %s to memory!"), bootloader); goto err; } FCLOSE(bd); - INFO("Adding header to %s...", bootloader); + INFO(tr("Adding header to %s..."), bootloader); int2le(&buf[ccpmp_pos ], 9); /* Pathname Size */ memcpy(&buf[ccpmp_pos + 4 ], "ccpmp.bin", 9); /* Pathname */ memset(&buf[ccpmp_pos + 4 + 9 ], 0x20, sizeof(uint8_t)); /* File Type */ @@ -207,7 +209,7 @@ int chinachip_patch(const char* firmware, const char* bootloader, time_info = localtime(&cur_time); if(time_info == NULL) { - ERR("Can't obtain current time!"); + ERR(tr("Can't obtain current time!")); goto err; } @@ -217,11 +219,11 @@ int chinachip_patch(const char* firmware, const char* bootloader, time_info->tm_hour, time_info->tm_min); - INFO("Computing checksum..."); + INFO(tr("Computing checksum...")); for(i = sizeof(struct header); i < TOTAL_SIZE; i+=4) checksum += le2int(&buf[i]); - INFO("Updating main header..."); + INFO(tr("Updating main header...")); memcpy(&buf[offsetof(struct header, timestamp)], header_time, 12); int2le(&buf[offsetof(struct header, size) ], TOTAL_SIZE); int2le(&buf[offsetof(struct header, checksum) ], checksum); @@ -229,14 +231,14 @@ int chinachip_patch(const char* firmware, const char* bootloader, od = fopen(output, "wb"); if(!od) { - ERR("Can't open file %s!", output); + ERR(tr("Can't open file %s!"), output); goto err; } - INFO("Writing output to %s...", output); + INFO(tr("Writing output to %s..."), output); if(fwrite(buf, TOTAL_SIZE, 1, od) != 1) { - ERR("Can't write to file %s!", output); + ERR(tr("Can't write to file %s!"), output); goto err; } fclose(od); diff --git a/rbutil/rbutilqt/base/bootloaderinstallchinachip.cpp b/rbutil/rbutilqt/base/bootloaderinstallchinachip.cpp index dba2ec8c92..bbb5649259 100644 --- a/rbutil/rbutilqt/base/bootloaderinstallchinachip.cpp +++ b/rbutil/rbutilqt/base/bootloaderinstallchinachip.cpp @@ -45,9 +45,9 @@ QString BootloaderInstallChinaChip::ofHint() void BootloaderInstallChinaChip::logString(char* format, va_list args, int type) { - QString buffer; + QString translation = QCoreApplication::translate("", format, NULL, QCoreApplication::UnicodeUTF8); - emit logItem(buffer.vsprintf(format, args), type); + emit logItem(QString().vsprintf(translation.toLocal8Bit(), args), type); QCoreApplication::processEvents(); } diff --git a/rbutil/rbutilqt/lang/rbutil_nl.ts b/rbutil/rbutilqt/lang/rbutil_nl.ts index 509ddc18b1..2bc4dc1be0 100644 --- a/rbutil/rbutilqt/lang/rbutil_nl.ts +++ b/rbutil/rbutilqt/lang/rbutil_nl.ts @@ -1,89 +1,241 @@ + + + + + + + + + Can't open file %s! + Kan bestand %s niet openen! + + + + Bootloader size is %d bytes + Bootloader grootte is %d bytes + + + + Firmware size is %d bytes + Firmware grootte is %d bytes + + + + Can't allocate %d bytes! + Kan geen %d bytes alloceren! + + + + + Reading %s into memory... + Bezig met inlezen van %s... + + + + + Can't read file %s to memory! + Kan %s niet inlezen! + + + + File %s isn't a valid ChinaChip firmware! + %s is geen geldige ChinaChip firmware! + + + + Couldn't find ccpmp.bin in %s! + Kon ccpmp.bin niet vinden in %s! + + + + Found ccpmp.bin at %d bytes + ccpmp.bin gevonden op %d bytes + + + + Writing %d bytes to %s... + Bezig met schrijven van %d bytes naar %s... + + + + + Can't write to file %s! + Kan niet schrijven naar %s! + + + + Renaming it to ccpmp.old... + Bezig met hernoemen naar ccpmp.old... + + + + Making place for ccpmp.bin... + Bezig met ruimte maken voor ccpmp.bin... + + + + Adding header to %s... + Bezig met toevoegen vaan hoofding aan %s... + + + + Can't obtain current time! + Kan de huidige tijd niet bekomen! + + + + Computing checksum... + Bezig met berekenen van controlesom... + + + + Updating main header... + Bezig met updaten van hoofding... + + + + Writing output to %s... + Bezig met uitvoer schrijven naar %s... + + + + BootloaderInstallAms + + + Bootloader installation requires you to provide a firmware file of the original firmware (bin file). You need to download this file yourself due to legal reasons.Press Ok to continue and browse your computer for the firmware file. + Bootloader installatie vereist u om een firmware bestand van de Originele Firmware te voorzien (bin bestand). U moet dit bestand zelf downloaden wegens juridische redenen. Druk op Ok om verder te gaan en uw computer te doorbladeren voor dit bestand. + + + + Downloading bootloader file + Bezig met downloaden van Bootloader + + + + + Could not load %1 + Kon %1 niet laden + + + + Patching Firmware... + Bezig met pachen van firmware... + + + + Could not open %1 for writing + Kon %1 niet openen voor schrijven + + + + Could not write firmware file + Kon het firmware bestand niet beschrijven + + + + Success: modified firmware file created + Succes: gemodificeerde Firmware aangemaakt + + BootloaderInstallBase - + Download error: received HTTP error %1. Download fout: HTTP fout %1. - + Download error: %1 Download fout : %1 - + Download finished (cache used). Download voltooid (cache gebruikt). - + Download finished. Download voltooid. - + Creating backup of original firmware file. Maak een backup van de Originele Firmware. - + Creating backup folder failed Aanmaken van backup map heeft gefaald - + Creating backup copy failed. Aanmaken van backup kopie heeft gefaald. - + Backup created. Backup aangemaakt. - + Creating installation log Bezig met creëren van installatie log - + Bootloader installation is almost complete. Installation <b>requires</b> you to perform the following steps manually: Bootloader installatie is bijna voltooid. De installatie <b>vereist</b> dat u de volgende stappen handmatig uitvoert: - + <li>Safely remove your player.</li> <li>Verwijder veilig uw spaler.</li> - + <li>Reboot your player into the original firmware.</li><li>Perform a firmware upgrade using the update functionality of the original firmware. Please refer to your player's manual on details.</li><li>After the firmware has been updated reboot your player.</li> <li>Herstart uw speler naar de Originele Firmware.</li><li>Voer een Firmware upgrade uit, gebruik makend van de functionaliteit van de Originele Firmware. Gelieve de handleiding van uw speler na te zien voor meer details.</li><li>Nadat de Firmware upgedatete is, herstart uw speler.</li> - + <li>Turn the player off</li><li>Insert the charger</li> <li>Zet de speler uit</li><li>Steek de oplader erin</li> - + <li>Unplug USB and power adaptors</li><li>Hold <i>Power</i> to turn the player off</li><li>Toggle the battery switch on the player</li><li>Hold <i>Power</i> to boot into Rockbox</li> <li>Ontkoppel USB en stroomadapters</li><li>Hou <i>Power</i> ingedrukt om de speler uit te schakelen</li><li>Zet de batterij schakelaar aan en uit op de speler</li><li>Hou <i>Power</i> ingedrukt om in Rockbox op te starten</li> - + <p><b>Note:</b> You can safely install other parts first, but the above steps are <b>required</b> to finish the installation!</p> <p><b>Noot:</b> U kan veilig andere delen eerst installeren, maar de hierboven vermelde stappen zijn <b>verplicht</b> om de installatie te voltooien!</p> - + Installation log created Installatie log aangemaakt + + BootloaderInstallChinaChip + + + Bootloader installation requires you to provide a firmware file of the original firmware (HXF file). You need to download this file yourself due to legal reasons. Please refer to the <a href='http://www.rockbox.org/manual.shtml'>manual</a> and the <a href='http://www.rockbox.org/wiki/OndaVX747#Download_and_extract_a_recent_ve'>OndaVX747</a> wiki page on how to obtain this file.<br/>Press Ok to continue and browse your computer for the firmware file. + De Bootloader installatie vereist u om een firmware bestand van de Originele Firmware te voorzien (HXF bestand). U moet dit bestand zelf downloaden wegens juridische redenen. Wij verwijzen u door naar de <a href='http://www.rockbox.org/manual.shtml'>handleiding</a> en de <a href='http://www.rockbox.org/wiki/OndaVX747#Download_and_extract_a_recent_ve'>OndaVX747</a> wiki pagina voor meer informatie hoe dit bestand te verkrijgen.<br/>Druk op Ok om verder te gaan en te bladeren op uw computer naar dit bestand. + + + + Downloading bootloader file + Bezig met downloaden van Bootloader + + BootloaderInstallFile @@ -366,17 +518,17 @@ Zie http://www.rockbox.org/wiki/IpodConversionToFAT32 Verwijderen van Bootloader faalde. - + Could not open Ipod Kon Ipod niet openen - + Error reading partition table - possibly not an Ipod Fout tijdens lezen van de partitie tabel - mogelijks geen Ipod - + No firmware partition on disk Geen Firmware partitie op de schijf @@ -493,22 +645,22 @@ Zie http://www.rockbox.org/wiki/SansaE200Install Fout tijdens installeren Bootloader - + Can't find Sansa Kan Sansa niet vinden - + Could not open Sansa Kon Sansa niet openen - + Could not read partition table Kon de partitie tabel niet lezen - + Disk is not a Sansa (Error %1), aborting. Schijf is geen Sansa (Error: %1), afbreken. @@ -569,30 +721,44 @@ Zie http://www.rockbox.org/wiki/SansaE200Install Config - + Language changed Taal veranderd - + You need to restart the application for the changed language to take effect. U moet de applicatie herstarten om de veranderde taal in te schakelen. - - + + Detected an unsupported player: +%1 +Sorry, Rockbox doesn't run on your player. + Een niet-ondersteunde speler werd gedetecteerd: +%1 +Sorry, Rockbox werkt niet op uw speler. + + + + Fatal: player incompatible + Fataal: speler incompatibel + + + + Autodetection Autoherkenning - + Could not detect a Mountpoint. Select your Mountpoint manually. Kon geen Mountpunt herkennen. Gelieve uw Mountpunt manueel te selecteren. - + Could not detect a device. Select your device and Mountpoint manually. Kon geen apparaat herkennen. @@ -618,104 +784,151 @@ Selecteer uw apparaat en Mountpunt manueel. The cache path is invalid. Aborting. Het cache pad is ongeldig. Bezig met afbreken. + + + TTS configuration invalid + TTS configuratie ongeldig + + + + TTS configuration invalid. + Please configure TTS engine. + TTS configuratie ongeldig. +Gelieve de TTS engine te configureren. + + + + Could not start TTS engine + Kon de TTS engine niet starten + + + + Could not start TTS engine. + + Kon de TTS engine niet starten. + + + + + + +Please configure TTS engine. + +Gelieve de TTS engine te configureren. + + + + Rockbox Utility Voice Test + Rockbox Utility stemtest + + + + Could not voice test string + Kon de test zin niet inspreken + + + + Could not voice test string. + + Kon de test zin niet inspreken. + + Select your device Selecteer uw apparaat - + Sansa e200 in MTP mode found! You need to change your player to MSC mode for installation. Sansa e200 in MTP modus gevonden! U moet uw speler in MSC modus plaatsen voor installatie. - + H10 20GB in MTP mode found! You need to change your player to UMS mode for installation. H10 20GB in MTP modus gevonden! U moet uw speler in UMS modus plaatsen voor installatie. - + Unless you changed this installation will fail! Tenzij u dit verandert, zal de installatie falen! - + Fatal error Fatale fout - + Current cache size is %L1 kiB. Huidige cache grootte is %L1 kiB. - Detected an unsupported %1 player variant. Sorry, Rockbox doesn't run on your player. - Er is een niet ondersteunde speler %1 herkend. Sorry, Rockbox werkt niet op deze speler. + Er is een niet ondersteunde speler %1 herkend. Sorry, Rockbox werkt niet op deze speler. - Fatal error: incompatible player found - Fatale fout: incompatibele speler gevonden + Fatale fout: incompatibele speler gevonden - - + + Configuration OK Configuratie OK - - + + Configuration INVALID Configuratie ONGELDIG - + The following errors occurred: De volgende fouten traden op: - + No mountpoint given Geen aankoppel punt gegeven - + Mountpoint does not exist Aankoppel punt bestaat niet - + Mountpoint is not a directory. Aankoppel punt is geen map. - + Mountpoint is not writeable Aankoppelpunt is niet beschrijfbaar - + No player selected Geen speler geselecteerd - + Cache path not writeable. Leave path empty to default to systems temporary path. Cache pad is niet schrijfbaar. Laat het pad leeg om het systeemsstandaard tijdelijke pad te gebruiken. - + You need to fix the above errors before you can continue. U moet de bovenstaande fouten herstellen vooraleer verder te gaan. - + Configuration error Configuratie fout @@ -881,17 +1094,22 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat Ge&selecteerde TTS Engine - + + Test TTS + Test TTS + + + Encoder Engine Encoder Engine - + &Ok &OK - + &Cancel &Annuleren @@ -902,7 +1120,7 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat - + Configuration invalid! Configuratie ongeldig! @@ -912,12 +1130,12 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat Configureer &TTS - + Configure &Enc Configureer &Enc - + encoder name encoder naam @@ -944,37 +1162,43 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat Selecteer de taal waarvan u een voicebestand wilt maken: - + + Language + Taal + + + Generation settings Generatie instellingen - + Encoder profile: Encoder profiel: - + TTS profile: TTS profiel: - + Change Veranderen - + &Install &Installeer - + &Cancel &Annuleren - + + Wavtrim Threshold Wavtrim drempel @@ -982,15 +1206,15 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat CreateVoiceWindow - - + + Selected TTS engine: <b>%1</b> Geselecteerde TTS engine: <b>%1</b> - - + + Selected encoder: <b>%1</b> Geselecteerde Encoder: <b>%1</b> @@ -1049,17 +1273,17 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat Annuleren - + Browse Bladeren - + Refresh Vernieuwen - + Select excutable Selecteer uitvoerbaar bestand @@ -1067,72 +1291,72 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat Install - + Mount point is wrong! Mount punt is verkeerd! - + This is the absolute up to the minute Rockbox built. A current build will get updated every time a change is made. Latest version is r%1 (%2). Dit is de meest recente Rockbox build. Een huidige build zal upgedatet worden elke keer een verandering is gemaakt. Laatste versie is r%1 (%2). - + This is the last released version of Rockbox. Dit is de laatst gereleasede versie van Rockbox. - + These are automatically built each day from the current development source code. This generally has more features than the last stable release but may be much less stable. Features may change regularly. Deze worden elke dag automatisch gebouwd van de meest recente broncode. Deze heeft algemeen gezien meer features dan de laatst stabiele release maar kan minder stabiel zijn. Features kunnen regelmatig veranderen. - + <b>Note:</b> archived version is r%1 (%2). <b>Pas op:</b> gearchiveerde versie is r%1(%2). - + Aborted! Afgebroken! - + Beginning Backup... Backup wordt gestart... - + Backup successful Backup is succesvol beëindigd - + Backup failed! Backup mislukt! - + <b>Note:</b> The lastest released version is %1. <b>This is the recommended version.</b> <b>Note:</b> The laatste versie is %1.<b>Dit is de aanbevolen versie.</b> - + Really continue? Wilt u zeker verdergaan? - + Backup to %1 Backup naar %1 - + Select Backup Filename Selecteer backup bestandsnaam - + <b>This is the recommended version.</b> <b>Dit is de aanbevolen versie.</b> @@ -1238,67 +1462,72 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat Selecteer de Map om Talk bestanden voor te genereren. - + + Talkfile Folder + Talk bestanden map + + + &Browse &Bladeren - + Generation settings Generatie instellingen - + Encoder profile: Encoder profiel: - + TTS profile: TTS profiel: - + Generation options Generatie instellingen - + Run recursive Recursief doorlopen - + Strip Extensions Extensies weghalen - + Overwrite Talkfiles Overschrijf Talk bestanden - + &Cancel &Annuleren - + &Install &Installeren - + Change Veranderen - + Generate .talk files for Folders Genereer .talk bestanden voor Mappen - + Generate .talk files for Files Genereer .talk bestand voor Bestanden @@ -1306,20 +1535,20 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat InstallTalkWindow - + The Folder to Talk is wrong! De map naar Talk is verkeerd! - - + + Selected TTS engine: <b>%1</b> Geselecteerde TTS engine: <b>%1</b> - - - + + + Selected encoder: <b>%1</b> Geselecteerde Encoder: <b>%1</b> @@ -1341,7 +1570,12 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat Vooruitgang - + + Save Log + Log opslaan + + + &Abort &Afbreken @@ -1354,12 +1588,17 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat ProgressLoggerGui - + &Ok &OK - + + Save system trace log + Systeem trace log opslaan + + + &Abort &Afbreken @@ -1367,46 +1606,47 @@ Pas op: u moet eerst deze installatie doen met een internet verbinding om ze lat QObject - + Guest Gast - + Admin Hoofdgebruiker - + User Gebruiker - + Error Fout - + + (no description available) (geen beschrijving beschikbaar) - + <li>Permissions insufficient for bootloader installation. Administrator priviledges are necessary.</li> <li>Uw machtigingen zijn niet voldoende om de Bootloader te installeren. Administrator privileges zijn nodig.</li> - + <li>Target mismatch detected. Installed target: %1, selected target: %2.</li> <li>Verkeerd apparaat gevonden. Geïnstalleerd apparaat: %1, geselecteerd apparaat: %2.</li> - + Problem detected: Probleem gevonden: @@ -1414,296 +1654,296 @@ Geïnstalleerd apparaat: %1, geselecteerd apparaat: %2.</li> RbUtilQt - + File Bestand - + Version Versie - + Network error: %1. Please check your network and proxy settings. Netwerk fout:%1. Gelieve uw netwerk en proxy instelling te controleren. - + <b>%1 %2</b> at <b>%3</b> <b>%1 %2</b> op <b>%3</b> - + <a href='%1'>PDF Manual</a> <a href='%1'>PDF Handboek</a> - + <a href='%1'>HTML Manual (opens in browser)</a> <a href='%1'>HTML Handboek (opent in een browser)</a> - + Select a device for a link to the correct manual Selecteer een apparaat voor een link naar het correcte handboek - + <a href='%1'>Manual Overview</a> <a href='%1'>Handboek overzicht</a> - - - - - - + + + + + + Confirm Installation Bevestig Installatie - - + + Mount point is wrong! Mount punt is verkeerd! - + Do you really want to install the Bootloader? Wilt u zeker de Bootloader installeren? - + Do you really want to install the fonts package? Wilt u zeker het lettertypen pakket installeren? - + Do you really want to install the voice file? Wilt u zeker de spraakbestanden? - + Do you really want to install the game addon files? Wilt u zeker de spelletjes addon bestanden installeren? - + Confirm Uninstallation Bevestig Deïnstallatie - + Do you really want to uninstall the Bootloader? Wilt u zeker de Bootloader deïnstalleren? - + Confirm download Bevestig download - + Do you really want to download the manual? The manual will be saved to the root folder of your player. Wilt u zeker het handboek downloaden? Dit handboek zal opgeslagen worden in de hoofdmap van uw speler. - + Confirm installation Bevestig installatie - + Do you really want to install Rockbox Utility to your player? After installation you can run it from the players hard drive. Wilt u zeker Rockbox Utility installeren op uw speler? Na installatie kan u het opstarten vanaf de harde schijf van uw speler. - + Installing Rockbox Utility Bezig met installeren van Rockbox Utility - + Error installing Rockbox Utility Fout tijdens installeren van Rockbox Utility - + Installing user configuration Bezig met installeren van gebruikerconfiguratie - + Error installing user configuration Fout tijdens installeren van gebruikersconfiguratie - + Successfully installed Rockbox Utility. Rockbox Utility is succesvol geïnstalleerd. - - + + Configuration error Configuratie fout - + Error Fout - + Your device doesn't have a doom plugin. Aborting. Uw apparaat heeft de Doom plugin niet. Installatie wordt afgebroken. - + Your configuration is invalid. Please go to the configuration dialog and make sure the selected values are correct. Uw configuratie is ongeldig. Gelieve naar het configuratie scherm te gaan en de juiste instellingen te gebruiken. - + This is a new installation of Rockbox Utility, or a new version. The configuration dialog will now open to allow you to setup the program, or review your settings. Dit is een nieuwe installatie van Rockbox Utility, of een nieuwe versie. Het configuratie scherm zal nu openen, zodat u het programma kan instellen, of uw instellingen nakijken. - + Aborted! Afgebroken! - + Installed Rockbox detected Geïnstalleerde Rockbox herkend - + Rockbox installation detected. Do you want to backup first? Rockbox installatie herkend. Wilt u eerst een backup maken? - + Backup failed! Backup mislukt! - + Warning Waarschuwing - + The Application is still downloading Information about new Builds. Please try again shortly. Deze applicatie is nog steeds bezig met informatie over nieuwe Builds te downloaden. Gelieve binnen een korte periode opnieuw te proberen. - + Starting backup... Backup wordt gestart... - + New installation Nieuwe installatie - + Your configuration is invalid. This is most likely due to a changed device path. The configuration dialog will now open to allow you to correct the problem. Uw configuratie is ongeldig. Dit komt waarschijnlijk door een veranderd apparaat pad. Het configuratie scherm zal nu openen zodat u de fout kan herstellen. - + Backup successful Backup is succesvol beëindigd - + Network error Netwerk fout - + Can't get version information. Kan geen versie informatie ophalen. - + Really continue? Wilt u zeker verdergaan? - + No install method known. Geen installatie methode bekend. - + Bootloader detected Bootloader gevonden - + Bootloader already installed. Do you want to reinstall the bootloader? Bootloader is al geïnstalleerd. Wilt u de Bootloader herinstalleren? - + Create Bootloader backup Maak Bootloader backup - + You can create a backup of the original bootloader file. Press "Yes" to select an output folder on your computer to save the file to. The file will get placed in a new folder "%1" created below the selected folder. Press "No" to skip this step. U kan een backup maken van de Originele Bootloader. Kies "Ja" om de output map op uw computer te selecteren waarin het bestand zal worden opgeslagen. Dit bestand zal geplaatst worden in een nieuwe map "%1" die zal worden aangemaakt onder de geselecteerde map. Kies "Nee" om deze stap over te slaan. - + Browse backup folder Blader naar backup map - + Prerequisites Vereisten - + Select firmware file Selecteer firmware bestand - + Error opening firmware file Fout bij openen van firmware bestand - + Backup error Backup fout - + Could not create backup file. Continue? Kon geen backup maken. Verdergaan? - + Manual steps required Handmatige stappen zijn genoodzaakt - + No uninstall method known. Geen deïnstallatie methode bekend. - + Do you really want to perform a complete installation? This will install Rockbox %1. To install the most recent development build available press "Cancel" and use the "Installation" tab. @@ -1711,7 +1951,7 @@ This will install Rockbox %1. To install the most recent development build avail Dit zal Rockbox %1 installeren. Om de meest recente ontwikkelaars build te installeren, druk op "Annuleren" en gebruik de "Installatie" tab. - + Do you really want to perform a minimal installation? A minimal installation will contain only the absolutely necessary parts to run Rockbox. This will install Rockbox %1. To install the most recent development build available press "Cancel" and use the "Installation" tab. @@ -1720,12 +1960,12 @@ This will install Rockbox %1. To install the most recent development build avail Dit zal Rockbox %1 installeren. Om de meest recente ontwikkelaars build te installeren, druk op "Annuleren" en gebruik de "Installatie" tab. - + Bootloader installation skipped Bootloader installatie overgeslagen - + Bootloader installation aborted Bootloader installatie afgebroken @@ -1738,82 +1978,82 @@ Dit zal Rockbox %1 installeren. Om de meest recente ontwikkelaars build te insta Rockbox Utility - + Device Apparaat - + Selected device: Geselecteerd apparaat: - + &Change &Veranderen - - + + &Quick Start &Snelle start - + Welcome Welkom - - + + &Installation &Installatie - + Basic Rockbox installation Basis Rockbox installatie - + Install Bootloader Installeer de Bootloader - - + + Install Rockbox Installeer Rockbox - - + + &Extras &Extras - + Install extras for Rockbox Installeer de extra's voor Rockbox - + Install Fonts package Installeer het lettertypen pakket - + Install themes Thema's installeren - + Install game files Spelbestanden installeren - + &Accessibility &Toegankelijkheid @@ -1828,199 +2068,209 @@ Dit zal Rockbox %1 installeren. Om de meest recente ontwikkelaars build te insta Installeer de spraakbestanden - + Install Talk files Installeer de Talk bestanden - - + + &Uninstallation &Deïnstallatie - - + + Uninstall Rockbox Deïnstalleer Rockbox - + Uninstall Bootloader Deïnstalleer de Bootloader - + &Manual &Handleiding - + View and download the manual Lees en download de handleiding - + Read the manual Lees de handleiding - + PDF manual PDF handleiding - + HTML manual HTML handleiding - + Download the manual Download de handleiding - + &PDF version &PDF versie - + &HTML version (zip file) &HTML versie (zip bestand) - + Down&load Down&load - + Inf&o Inf&o - + 1 1 - + &File &Bestand - + + &Troubleshoot + &Probleem oplossen + + + &About &Over - + + System &Trace + Systeem &Trace + + + Empty local download cache Ledig de lokale download cache - + Install Rockbox Utility on player Installeer Rockbox utility op uw speler - + &Configure &Configuratie - + E&xit &Verlaten - + Ctrl+Q Ctrl+Q - + About &Qt Over &Qt - + &Help &Help - + Complete Installation Complete installatie - + Action&s Actie&s - + Info Info - + Create &Voice File Creëer een &Voice bestand - + Read PDF manual Lees de PDF handleiding - + Read HTML manual Lees de HTML handleiding - + Download PDF manual Download de PDF handleiding - + Download HTML manual (zip) Download de HTM handleiding (zip) - + Create Voice files Creëer spraakbestanden - + Create Voice File Creëer spraakbestanden - + <b>Complete Installation</b><br/>This installs the bootloader, a current build and the extras package. This is the recommended method for new installations. <b>Complete Installatie</b><br/>Dit installeert de bootloader, een huidige build en het extra's pakket. Dit is aanbevolen voor nieuwe installaties. - + <b>Install the bootloader</b><br/>Before Rockbox can be run on your audio player, you may have to install a bootloader. This is only necessary the first time Rockbox is installed. <b>Installeer de bootloader</b><br/>Voordat Rockbox op uw speler kan gebruikt worden, moet u een bootloader installeren. Dit is enkel de eerste keer dat u Rockbox installeert nodig. - + <b>Install Rockbox</b> on your audio player <b>Installeer Rockbox</b> op uw audio player - + <b>Fonts Package</b><br/>The Fonts Package contains a couple of commonly used fonts. Installation is highly recommended. <b>Lettertypen pakket</b><br/>Het lettertypen pakket bevat een aantal veelgebruikte lettertypen. Installatie is sterk aanbevolen. - + <b>Install Themes</b><br/>Rockbox' look can be customized by themes. You can choose and install several officially distributed themes. <b>Installeer thema's</b><br/>Het uiterlijk van Rockbox kan aangepast worden met behulp van thema's. U kan kiezen uit verschillende officiëel gedistribueerde thema's en deze installeren. @@ -2030,151 +2280,187 @@ Dit zal Rockbox %1 installeren. Om de meest recente ontwikkelaars build te insta <b>Installeer spelbestanden</b><br/>Doom heeft een basis wad bestand nodig om te starten. - + <b>Install Voice file</b><br/>Voice files are needed to make Rockbox speak the user interface. Speaking is enabled by default, so if you installed the voice file Rockbox will speak. <b>Installeer spraakbestanden</b><br/>Spraakbestanden zijn nodig om Rockbox de gebruikersinterface te laten spreken. Dit is standaard ingeschakeld, dus als u dit installeert zal Rockbox spreken. - + <b>Create Talk Files</b><br/>Talkfiles are needed to let Rockbox speak File and Foldernames <b>Creëer Talk bestanden</b><br/>Talk bestanden zijn nodig om Rockbox bestands- en mapnamen te laten spreken - + <b>Create Voice file</b><br/>Voice files are needed to make Rockbox speak the user interface. Speaking is enabled by default, so if you installed the voice file Rockbox will speak. <b>Creëer spraakbestanden</b><br/>Spraakbestanden zijn nodig om Rockbox de gebruikersinterface te laten spreken. Dit is standaard ingeschakeld, dus als u dit installeert zal Rockbox spreken. - + <b>Remove the bootloader</b><br/>After removing the bootloader you won't be able to start Rockbox. <b>Verwijder de bootloader</b><br/>Na het verwijderen van de bootloader zal u Rockbox niet meer kunnen opstarten. - + <b>Uninstall Rockbox from your audio player.</b><br/>This will leave the bootloader in place (you need to remove it manually). <b>Deïnstalleer Rockbox van uw audio player.</b><br/>Dit zal de bootloader onaangetast laten (u zal het manueel moeten verwijderen). - + Currently installed packages.<br/><b>Note:</b> if you manually installed packages this might not be correct! Huidige geïnstalleerde pakketten.<br/><b>Pas op:</b> als u manueel pakketten installeert kan dit niet correct zijn! - + Abou&t &Over - + Install &Bootloader Installeer de &Bootloader - + Install &Rockbox Installeer &Rockbox - + Install &Fonts Package Installeer het &lettertypen pakket - + Install &Themes Installeer &thema's - + Install &Game Files Installeer &spelbestanden - + &Install Voice File &Installeer de spraakbestanden - + Create &Talk Files Creëer &Talk bestanden - + Remove &bootloader Verwijder de &Bootloader - + Uninstall &Rockbox Deïnstalleer &Rockbox - + &System Info &Systeem Info - + &Complete Installation &Complete installatie - + device / mountpoint unknown or invalid apparaat / mountpunt is onbekend of ongeldig - + Minimal Installation Minimale installatie - + <b>Minimal installation</b><br/>This installs bootloader and the current build of Rockbox. If you don't want the extras package, choose this option. <b>Minimale installatie</b><br/>Dit zal de Bootloader en de huidige build van Rockbox installeren. Als u de extra pakketten niet wilt, kies dan deze optie. - + &Minimal Installation &Minimale installatie + + SysTrace + + + Save system trace log + Systeem trace log opslaan + + + + SysTraceFrm + + + System Trace + Systeem trace + + + + System State trace + Systeem trace staat + + + + &Close + &Sluiten + + + + &Save + &Opslaan + + + + &Refresh + &Vernieuwen + + Sysinfo - + <b>OS</b><br/> <b>OS</b><br/> - + <b>Username</b><br/>%1<hr/> <b>Gebruikersnaam</b><br/>%1<hr/> - + <b>Permissions</b><br/>%1<hr/> <b>Machtigingen</b><br/>%1<hr/> - + <b>Attached USB devices</b><br/> <b>Aangesloten USB apparaten</b><br/> - + VID: %1 PID: %2, %3 VID: %1 PID: %2, %3 - + Filesystem Bestandssysteem - + %1, %2 MiB available %1, %2 MiB beschikbaar @@ -2279,81 +2565,136 @@ Dit zal Rockbox %1 installeren. Om de meest recente ontwikkelaars build te insta TalkFileCreator - + Starting Talk file generation Bezig met starten van Talk bestands generatie - Init of TTS engine failed - Initialisatie van de TTS engine is mislukt + Initialisatie van de TTS engine is mislukt - Init of Encoder engine failed - Initialisatie van de Encoder engine is mislukt + Initialisatie van de Encoder engine is mislukt - - - - - + Talk file creation aborted Talk bestand creatie afgebroken - Encoding of %1 failed - Encoderen van %1 mislukt + Encoderen van %1 mislukt - + Finished creating Talk files Klaar met genereren van Talk bestanden - + Reading Filelist... Bezig met inlezen van de bestandslijst... - Voicing entries... - Bezig met inspreken van items... + Bezig met inspreken van items... - Encoding files... - Bezig met encoderen van bestanden... + Bezig met encoderen van bestanden... - Copying Talkfile for Dirs... - Bezig met kopiëren van Talk bestanden voor mappen... + Bezig met kopiëren van Talk bestanden voor mappen... - Copying Talkfile for Files... - Bezig met kopiëren van Talk bestanden voor bestanden... + Bezig met kopiëren van Talk bestanden voor bestanden... + + + + Copying Talkfiles... + Bezig met kopiëren van Talk bestanden... - - + + File copy aborted + Kopiëren afgebroken + + + Copying of %1 to %2 failed Kopiëren van %1 naar %2 mislukt - + Cleaning up.. Bezig met opkuisen.. - - + + Finished + Voltooid + + + Voicing of %1 failed: %2 + Omzetten naar spraak van %1 mislukt: %2 + + + + TalkGenerator + + + Starting TTS Engine + Bezig met starten van de TTS engine + + + + Init of TTS engine failed + Initialisatie van de TTS engine is mislukt + + + + Starting Encoder Engine + Bezig met starten van de Encoder engine + + + + Init of Encoder engine failed + Initialisatie van de Encoder engine is mislukt + + + + Voicing entries... + Bezig met inspreken van items... + + + + Encoding files... + Bezig met encoderen van bestanden... + + + + Voicing aborted + Inspreken afgebroken + + + + Voicing of %1 failed: %2 Omzetten naar spraak van %1 mislukt: %2 + + + Encoding aborted + Encoderen afgebroken + + + + Encoding of %1 failed + Encoderen van %1 mislukt + ThemeInstallFrm @@ -2663,72 +3004,94 @@ HTTP response code: %1 VoiceFileCreator - + Starting Voicefile generation Bezig met starten van spraakbestanden generatie - + + Downloading voice info.. + Bezig met downloaden van spraak informatie.. + + + Download error: received HTTP error %1. Download fout: HTTP fout %1. - + Cached file used. Gecached bestand gebruikt. - + Download error: %1 Download fout : %1 - + Download finished. Download voltooid. - + failed to open downloaded file kon gedownload bestand niet openen - + + Reading strings... + Bezig met inlezen van zinnen... + + + + Creating voicefiles... + Bezig met aanmaken van spraakbestanden... + + + + Cleaning up.. + Bezig met opkuisen.. + + + + Finished + Voltooid + + Init of TTS engine failed - Initialisatie van de TTS engine is mislukt + Initialisatie van de TTS engine is mislukt - Init of Encoder engine failed - Initialisatie van de Encoder engine is mislukt + Initialisatie van de Encoder engine is mislukt - + The downloaded file was empty! Het gedownloadede bestand was leeg! - creating - bezig met creëren + bezig met creëren - + Error opening downloaded file Fout bij openen van gedownload bestand - + Error opening output file Fout bij openen van output bestand - + successfully created. succesvol gecreëerd. - + could not find rockbox-info.txt kon het bestand rockbox-info.txt niet vinden @@ -2867,37 +3230,40 @@ HTTP response code: %1 Over Rockbox Utility - + The Rockbox Utility Rockbox Utility - http://www.rockbox.org - http://www.rockbox.org + http://www.rockbox.org + + + + Installer and housekeeping utility for the Rockbox open source digital audio player firmware.<br/>© 2005 - 2009 The Rockbox Team.<br/>Released under the GNU General Public License v2.<br/>Uses icons by the <a href="http://tango.freedesktop.org/">Tango Project</a>.<br/><center><a href="http://www.rockbox.org">http://www.rockbox.org</a></center> + Installatie en schoonmaak hulpmiddel voor de Rockbox open source digitale audio speler firmware.<br/>© 2005 - 2009 Het Rockbox Team<br/>Vrijgegeven onder GNU General Public License v2.<br/>Gebruikt iconen van het <a href="http://tango.freedesktop.org">Tango Project</a>.<br/><center><a href="http://www.rockbox.org">http://www.rockbox.org</a></center> - + &Credits &Medewerkers - + &License &Licentie - + &Ok &OK - Installer and housekeeping utility for the Rockbox open source digital audio player firmware. © 2005 - 2009 The Rockbox Team. Released under the GNU General Public License v2. - Installatie en schoonmaak hulpmiddel voor de Rockbox open source digitale audio speler firmware. + Installatie en schoonmaak hulpmiddel voor de Rockbox open source digitale audio speler firmware. © 2005 - 2009 Het Rockbox Team. Vrijgegeven onder GNU General Public License v2. -- cgit v1.2.3