summaryrefslogtreecommitdiff
path: root/plugingui/abouttab.cc
diff options
context:
space:
mode:
authorOlivier Humbert <trebmuh@tuxfamily.org>2020-08-30 15:48:50 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2020-08-30 15:59:33 +0200
commit19ac4649f16621430b7d34635410fd67fd8ef49e (patch)
tree5fc388cd090a3c36e68a3d2cb0f5bf66ef63f19c /plugingui/abouttab.cc
parenta6d9ec29f1841cc675bc2897175d9920029e4a08 (diff)
Last translations for the AboutTab.
Diffstat (limited to 'plugingui/abouttab.cc')
-rw-r--r--plugingui/abouttab.cc22
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;
}