Clean up a few source strings.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22833 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2009-09-25 15:51:17 +00:00
parent cf19ba5599
commit 1644cd8741
3 changed files with 5 additions and 5 deletions

View file

@ -78,7 +78,7 @@ bool VoiceFileCreator::createVoiceFile()
connect(getter, SIGNAL(done(bool)), this, SLOT(downloadDone(bool)));
connect(getter, SIGNAL(dataReadProgress(int, int)), this, SIGNAL(logProgress(int, int)));
connect(this, SIGNAL(aborted()), getter, SLOT(abort()));
emit logItem(tr("Downloading voice info.."),LOGINFO);
emit logItem(tr("Downloading voice info..."),LOGINFO);
getter->getFile(genlangUrl);
return true;
}
@ -229,7 +229,7 @@ void VoiceFileCreator::downloadDone(bool error)
//!
void VoiceFileCreator::cleanup()
{
emit logItem(tr("Cleaning up.."),LOGINFO);
emit logItem(tr("Cleaning up..."),LOGINFO);
for(int i=0; i < m_talkList.size(); i++)
{

View file

@ -674,7 +674,7 @@ void Config::testTts()
if(!tts->start(&errstr))
{
QMessageBox::warning(this,tr("Could not start TTS engine"),
QMessageBox::warning(this,tr("Could not start TTS engine."),
tr("Could not start TTS engine.\n") + errstr
+ tr("\nPlease configure TTS engine."));
return;
@ -688,7 +688,7 @@ void Config::testTts()
if(tts->voice(tr("Rockbox Utility Voice Test"),filename,&errstr) == FatalError)
{
tts->stop();
QMessageBox::warning(this,tr("Could not voice test string"),
QMessageBox::warning(this,tr("Could not voice test string."),
tr("Could not voice test string.\n") + errstr
+ tr("\nPlease configure TTS engine."));
return;

View file

@ -28,7 +28,7 @@ EncTtsCfgGui::EncTtsCfgGui(QDialog* parent,EncTtsSettingInterface* interface,QSt
m_busyCnt=0;
// create a busy Dialog
m_busyDlg= new QProgressDialog(tr(""), tr(""), 0, 0,this);
m_busyDlg= new QProgressDialog("", "", 0, 0,this);
m_busyDlg->setWindowTitle(tr("Waiting for engine..."));
m_busyDlg->setModal(true);
m_busyDlg->setLabel(0);