diff options
Diffstat (limited to 'plugingui/abouttab.cc')
-rw-r--r-- | plugingui/abouttab.cc | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/plugingui/abouttab.cc b/plugingui/abouttab.cc index 8ffb464..384c815 100644 --- a/plugingui/abouttab.cc +++ b/plugingui/abouttab.cc @@ -78,48 +78,48 @@ std::string AboutTab::getAboutText() std::string about_text; // About - about_text.append( + about_text.append(_( "=============\n" " About\n" "=============\n" - "\n"); + "\n")); about_text.append(UTF8().toLatin1(getLocalizedFile(":../ABOUT"))); // Version - about_text.append( + about_text.append(_( "\n" "=============\n" " Version\n" "=============\n" - "\n"); + "\n")); about_text.append(std::string(VERSION) + "\n"); // Bugs - about_text.append( + about_text.append(_( "\n" "=============\n" " Bugs\n" "=============\n" - "\n"); + "\n")); about_text.append(UTF8().toLatin1(getLocalizedFile(":../BUGS"))); // Authors - about_text.append( + about_text.append(_( "\n" "=============\n" " Authors\n" "=============\n" - "\n"); + "\n")); about_text.append(UTF8().toLatin1(getLocalizedFile(":../AUTHORS"))); // GPL - about_text.append( + about_text.append(_( "\n" "=============\n" " License\n" "=============\n" - "\n"); - about_text.append(getLocalizedFile(":../COPYING")); + "\n")); + about_text.append(UTF8().toLatin1(getLocalizedFile(":../COPYING"))); return about_text; } |