summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/talkfile.cpp
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2008-09-07 22:21:06 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2008-09-07 22:21:06 +0000
commitb82449a5131e49427c0604d4481cfedcc9a6ba63 (patch)
tree56820475a6ac252eaebcd468cf85d3c4f0eac958 /rbutil/rbutilqt/talkfile.cpp
parent9228a38168e99c4e69511f8326fd64e6f78a839c (diff)
downloadrockbox-b82449a5131e49427c0604d4481cfedcc9a6ba63.tar.gz
rockbox-b82449a5131e49427c0604d4481cfedcc9a6ba63.zip
RButility:
* Update Dutch translation * Fix error in English * lupdate other translations git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18445 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/talkfile.cpp')
-rw-r--r--rbutil/rbutilqt/talkfile.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/rbutil/rbutilqt/talkfile.cpp b/rbutil/rbutilqt/talkfile.cpp
index 0c826e82aa..7980e7cbd0 100644
--- a/rbutil/rbutilqt/talkfile.cpp
+++ b/rbutil/rbutilqt/talkfile.cpp
@@ -82,7 +82,7 @@ bool TalkFileCreator::createTalkFiles(ProgressloggerInterface* logger)
82 while (dirIt.hasNext()) 82 while (dirIt.hasNext())
83 { 83 {
84 dirIt.next(); 84 dirIt.next();
85 // insert only non dublicate dir entrys into list 85 // insert only non dublicate dir entries into list
86 if(!toSpeakList.contains(dirIt.value())) 86 if(!toSpeakList.contains(dirIt.value()))
87 { 87 {
88 qDebug() << "toSpeaklist dir:" << dirIt.value(); 88 qDebug() << "toSpeaklist dir:" << dirIt.value();
@@ -93,7 +93,7 @@ bool TalkFileCreator::createTalkFiles(ProgressloggerInterface* logger)
93 while (fileIt.hasNext()) 93 while (fileIt.hasNext())
94 { 94 {
95 fileIt.next(); 95 fileIt.next();
96 // insert only non- dublictae file entrys into list 96 // insert only non- dublictae file entries into list
97 if(!toSpeakList.contains(fileIt.value())) 97 if(!toSpeakList.contains(fileIt.value()))
98 { 98 {
99 if(m_stripExtensions) 99 if(m_stripExtensions)
@@ -103,8 +103,8 @@ bool TalkFileCreator::createTalkFiles(ProgressloggerInterface* logger)
103 } 103 }
104 } 104 }
105 105
106 // Voice entrys 106 // Voice entryies
107 m_logger->addItem(tr("Voicing entrys..."),LOGINFO); 107 m_logger->addItem(tr("Voicing entries..."),LOGINFO);
108 if(voiceList(toSpeakList,&errStr) == false) 108 if(voiceList(toSpeakList,&errStr) == false)
109 { 109 {
110 m_logger->addItem(errStr,LOGERROR); 110 m_logger->addItem(errStr,LOGERROR);
@@ -112,7 +112,7 @@ bool TalkFileCreator::createTalkFiles(ProgressloggerInterface* logger)
112 return false; 112 return false;
113 } 113 }
114 114
115 // Encoding Entrys 115 // Encoding Entries
116 m_logger->addItem(tr("Encoding files..."),LOGINFO); 116 m_logger->addItem(tr("Encoding files..."),LOGINFO);
117 if(encodeList(toSpeakList,&errStr) == false) 117 if(encodeList(toSpeakList,&errStr) == false)
118 { 118 {
@@ -244,7 +244,7 @@ bool TalkFileCreator::createDirAndFileMaps(QDir startDir,QMultiMap<QString,QStri
244 244
245//! \brief Voices a List of string to the temp dir. Progress is handled inside. 245//! \brief Voices a List of string to the temp dir. Progress is handled inside.
246//! 246//!
247//! \param toSpeak QStringList with the Entrys to voice. 247//! \param toSpeak QStringList with the Entries to voice.
248//! \param errString pointer to where the Error cause is written 248//! \param errString pointer to where the Error cause is written
249//! \returns true on success, false on error or user abort 249//! \returns true on success, false on error or user abort
250bool TalkFileCreator::voiceList(QStringList toSpeak,QString* errString) 250bool TalkFileCreator::voiceList(QStringList toSpeak,QString* errString)
@@ -276,7 +276,7 @@ bool TalkFileCreator::voiceList(QStringList toSpeak,QString* errString)
276//! \brief Encodes a List of strings from/to the temp dir. Progress is handled inside. 276//! \brief Encodes a List of strings from/to the temp dir. Progress is handled inside.
277//! It expects the inputfile in the temp dir with the name in the List appended with ".wav" 277//! It expects the inputfile in the temp dir with the name in the List appended with ".wav"
278//! 278//!
279//! \param toSpeak QStringList with the Entrys to encode. 279//! \param toSpeak QStringList with the Entries to encode.
280//! \param errString pointer to where the Error cause is written 280//! \param errString pointer to where the Error cause is written
281//! \returns true on success, false on error or user abort 281//! \returns true on success, false on error or user abort
282bool TalkFileCreator::encodeList(QStringList toEncode,QString* errString) 282bool TalkFileCreator::encodeList(QStringList toEncode,QString* errString)