From 19ac4649f16621430b7d34635410fd67fd8ef49e Mon Sep 17 00:00:00 2001 From: Olivier Humbert Date: Sun, 30 Aug 2020 15:48:50 +0200 Subject: Last translations for the AboutTab. --- plugingui/abouttab.cc | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'plugingui/abouttab.cc') 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; } -- cgit v1.2.3