From a6d9ec29f1841cc675bc2897175d9920029e4a08 Mon Sep 17 00:00:00 2001 From: Olivier Humbert Date: Fri, 28 Aug 2020 23:07:48 +0200 Subject: Tranlate the AboutTab. --- ABOUT.fr | 5 +++++ AUTHORS.fr | 20 ++++++++++++++++++++ BUGS.fr | 4 ++++ plugin/Makefile.mingw32.in | 3 +++ plugingui/Makefile.am | 3 +++ plugingui/abouttab.cc | 4 ++-- 6 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 ABOUT.fr create mode 100644 AUTHORS.fr create mode 100644 BUGS.fr diff --git a/ABOUT.fr b/ABOUT.fr new file mode 100644 index 0000000..73bd23b --- /dev/null +++ b/ABOUT.fr @@ -0,0 +1,5 @@ +DrumGizmo est un greffon et une application autonome à source ouverte de +batterie, multicanal, multicouches, et multiplateforme. Il vous permet de +composer des pistes de batterie en MIDI et de les mixer avec une approche +multicanal. Il est comparable en cela au mixage d'une vraie batterie enregistrée +avec plusieurs micros. diff --git a/AUTHORS.fr b/AUTHORS.fr new file mode 100644 index 0000000..fecd62a --- /dev/null +++ b/AUTHORS.fr @@ -0,0 +1,20 @@ +Fondateur et développeur principal : + Bent Bisballe Nyeng [deva] (deva@aasimon.org) + +Développeur : + Jonas Suhr Christensen [suhr] (jsc@umbraculum.org) + +Développeur : + André Nusser [chaot4] + +Développeur : + Christian Glöckner [cglocke] + +Développeur, graphisme, conception de l'interface graphique et logo : + Lars Muldjord [muldjord] (muldjordlars@gmail.com) + +Développeur : + Goran Mekić [meka] (meka@tilda.center) + +Rustines : + John Hammen (support multicanal d'échantillons) diff --git a/BUGS.fr b/BUGS.fr new file mode 100644 index 0000000..2ef0a48 --- /dev/null +++ b/BUGS.fr @@ -0,0 +1,4 @@ +Si quelque chose ne fonctionne pas comme prévu, c'est probablement de notre +faute et nous ne le savons pas encore. Donc, si vous trouvez un bogue, veuillez +nous le signaler en écrivant un courriel (en anglais) ou en nous rejoignant sur +IRC : https://webchat.freenode.net/?channels=drumgizmo (en anglais aussi) diff --git a/plugin/Makefile.mingw32.in b/plugin/Makefile.mingw32.in index e58abc4..4e324af 100644 --- a/plugin/Makefile.mingw32.in +++ b/plugin/Makefile.mingw32.in @@ -171,8 +171,11 @@ RES = \ @top_srcdir@/plugingui/resources/vertline.png \ @top_srcdir@/plugingui/resources/widget.png \ @top_srcdir@/plugingui/../ABOUT \ + @top_srcdir@/plugingui/../ABOUT.fr \ @top_srcdir@/plugingui/../AUTHORS \ + @top_srcdir@/plugingui/../AUTHORS.fr \ @top_srcdir@/plugingui/../BUGS \ + @top_srcdir@/plugingui/../BUGS.fr \ @top_srcdir@/plugingui/../COPYING NLS_RES = \ diff --git a/plugingui/Makefile.am b/plugingui/Makefile.am index 4c2afcc..65e7011 100644 --- a/plugingui/Makefile.am +++ b/plugingui/Makefile.am @@ -32,8 +32,11 @@ RES = \ $(top_srcdir)/plugingui/resources/vertline.png \ $(top_srcdir)/plugingui/resources/widget.png \ $(top_srcdir)/plugingui/../ABOUT \ + $(top_srcdir)/plugingui/../ABOUT.fr \ $(top_srcdir)/plugingui/../AUTHORS \ + $(top_srcdir)/plugingui/../AUTHORS.fr \ $(top_srcdir)/plugingui/../BUGS \ + $(top_srcdir)/plugingui/../BUGS.fr \ $(top_srcdir)/plugingui/../COPYING if WITH_NLS diff --git a/plugingui/abouttab.cc b/plugingui/abouttab.cc index 8a8f737..8ffb464 100644 --- a/plugingui/abouttab.cc +++ b/plugingui/abouttab.cc @@ -83,7 +83,7 @@ std::string AboutTab::getAboutText() " About\n" "=============\n" "\n"); - about_text.append(getLocalizedFile(":../ABOUT")); + about_text.append(UTF8().toLatin1(getLocalizedFile(":../ABOUT"))); // Version about_text.append( @@ -101,7 +101,7 @@ std::string AboutTab::getAboutText() " Bugs\n" "=============\n" "\n"); - about_text.append(getLocalizedFile(":../BUGS")); + about_text.append(UTF8().toLatin1(getLocalizedFile(":../BUGS"))); // Authors about_text.append( -- cgit v1.2.3