diff --git a/src/Gui/Splashscreen.cpp b/src/Gui/Splashscreen.cpp
index f15d8e88e4..2f8f1e2e2d 100644
--- a/src/Gui/Splashscreen.cpp
+++ b/src/Gui/Splashscreen.cpp
@@ -568,14 +568,25 @@ void AboutDialog::showCredits()
textField->setOpenLinks(false);
hlayout->addWidget(textField);
- QString creditsHTML = QString::fromLatin1("
Credits
FreeCAD would not be possible without the contributions of:
");
+ QString creditsHTML = QString::fromLatin1("");
+ //: Header for the Credits tab of the About screen
+ creditsHTML += tr("Credits");
+ creditsHTML += QString::fromLatin1("
");
+ creditsHTML += tr("FreeCAD would not be possible without the contributions of");
+ creditsHTML += QString::fromLatin1(":
");
+ //: Header for the list of individual people in the Credits list.
+ creditsHTML += tr("Individuals");
+ creditsHTML += QString::fromLatin1("
");
QTextStream stream(&creditsFile);
QString line;
while (stream.readLineInto(&line)) {
if (!line.isEmpty()) {
if (line == QString::fromLatin1("Firms")) {
- creditsHTML += QString::fromLatin1("
Firms
");
+ creditsHTML += QString::fromLatin1("
");
+ //: Header for the list of companies/organizations in the Credits list.
+ creditsHTML += tr("Organizations");
+ creditsHTML += QString::fromLatin1("
");
}
else {
creditsHTML += QString::fromLatin1("- ") + line + QString::fromLatin1("
");