|
|
@ -106,11 +106,11 @@ void AboutDialog::addAboutData( const TQString &title, const TQString &icon,
|
|
|
|
|
|
|
|
|
|
|
|
text = "";
|
|
|
|
text = "";
|
|
|
|
|
|
|
|
|
|
|
|
const TQValueList<KAboutPerson> authors = about->authors();
|
|
|
|
const TQValueList<TDEAboutPerson> authors = about->authors();
|
|
|
|
if ( !authors.isEmpty() ) {
|
|
|
|
if ( !authors.isEmpty() ) {
|
|
|
|
text += i18n( "<p><b>Authors:</b></p>" );
|
|
|
|
text += i18n( "<p><b>Authors:</b></p>" );
|
|
|
|
|
|
|
|
|
|
|
|
TQValueList<KAboutPerson>::ConstIterator it;
|
|
|
|
TQValueList<TDEAboutPerson>::ConstIterator it;
|
|
|
|
for ( it = authors.begin(); it != authors.end(); ++it ) {
|
|
|
|
for ( it = authors.begin(); it != authors.end(); ++it ) {
|
|
|
|
text += formatPerson( (*it).name(), (*it).emailAddress() );
|
|
|
|
text += formatPerson( (*it).name(), (*it).emailAddress() );
|
|
|
|
if ( !(*it).task().isEmpty() )
|
|
|
|
if ( !(*it).task().isEmpty() )
|
|
|
@ -118,11 +118,11 @@ void AboutDialog::addAboutData( const TQString &title, const TQString &icon,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const TQValueList<KAboutPerson> credits = about->credits();
|
|
|
|
const TQValueList<TDEAboutPerson> credits = about->credits();
|
|
|
|
if ( !credits.isEmpty() ) {
|
|
|
|
if ( !credits.isEmpty() ) {
|
|
|
|
text += i18n( "<p><b>Thanks to:</b></p>" );
|
|
|
|
text += i18n( "<p><b>Thanks to:</b></p>" );
|
|
|
|
|
|
|
|
|
|
|
|
TQValueList<KAboutPerson>::ConstIterator it;
|
|
|
|
TQValueList<TDEAboutPerson>::ConstIterator it;
|
|
|
|
for ( it = credits.begin(); it != credits.end(); ++it ) {
|
|
|
|
for ( it = credits.begin(); it != credits.end(); ++it ) {
|
|
|
|
text += formatPerson( (*it).name(), (*it).emailAddress() );
|
|
|
|
text += formatPerson( (*it).name(), (*it).emailAddress() );
|
|
|
|
if ( !(*it).task().isEmpty() )
|
|
|
|
if ( !(*it).task().isEmpty() )
|
|
|
@ -130,11 +130,11 @@ void AboutDialog::addAboutData( const TQString &title, const TQString &icon,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const TQValueList<KAboutTranslator> translators = about->translators();
|
|
|
|
const TQValueList<TDEAboutTranslator> translators = about->translators();
|
|
|
|
if ( !translators.isEmpty() ) {
|
|
|
|
if ( !translators.isEmpty() ) {
|
|
|
|
text += i18n("<p><b>Translators:</b></p>");
|
|
|
|
text += i18n("<p><b>Translators:</b></p>");
|
|
|
|
|
|
|
|
|
|
|
|
TQValueList<KAboutTranslator>::ConstIterator it;
|
|
|
|
TQValueList<TDEAboutTranslator>::ConstIterator it;
|
|
|
|
for ( it = translators.begin(); it != translators.end(); ++it ) {
|
|
|
|
for ( it = translators.begin(); it != translators.end(); ++it ) {
|
|
|
|
text += formatPerson( (*it).name(), (*it).emailAddress() );
|
|
|
|
text += formatPerson( (*it).name(), (*it).emailAddress() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|