diff options
author | Olivier Humbert <trebmuh@tuxfamily.org> | 2020-08-30 15:48:50 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2020-08-30 15:59:33 +0200 |
commit | 19ac4649f16621430b7d34635410fd67fd8ef49e (patch) | |
tree | 5fc388cd090a3c36e68a3d2cb0f5bf66ef63f19c /plugingui/abouttab.cc | |
parent | a6d9ec29f1841cc675bc2897175d9920029e4a08 (diff) |
Last translations for the AboutTab.
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; } |