Index: gc_lang/fr/config.ini
==================================================================
--- gc_lang/fr/config.ini
+++ gc_lang/fr/config.ini
@@ -51,11 +51,13 @@
 rules.grx = fr-rules.txt
 oxt/addons.xcu = addons.xcu
 oxt/package-description.txt = package-description.txt
 # images
 oxt/_img/logo100.png = img/logo100.png
+oxt/_img/logo120_text.png = img/logo120_text.png
 oxt/_img/LaMouette_small.png = img/LaMouette_small.png
+oxt/_img/Algoo_logo.png = img/Algoo_logo.png
 oxt/_img/grammalecte_16.bmp = img/grammalecte_16.bmp
 oxt/_img/french_flag_16.bmp = img/french_flag_16.bmp
 # AppLauncher
 oxt/AppLauncher.py = AppLauncher.py
 oxt/helpers.py = pythonpath/helpers.py

Index: gc_lang/fr/oxt/About/About.py
==================================================================
--- gc_lang/fr/oxt/About/About.py
+++ gc_lang/fr/oxt/About/About.py
@@ -39,22 +39,18 @@
             dUI = ab_strings.getUI(sLang)
 
             # dialog
             self.xDialog = self.xSvMgr.createInstanceWithContext('com.sun.star.awt.UnoControlDialogModel', self.ctx)
             self.xDialog.Width = 160
-            self.xDialog.Height = 175
+            self.xDialog.Height = 320
             self.xDialog.Title = dUI.get('windowtitle', "#err")
             xWindowSize = helpers.getWindowSize()
             self.xDialog.PositionX = int((xWindowSize.Width / 2) - (self.xDialog.Width / 2))
             self.xDialog.PositionY = int((xWindowSize.Height / 2) - (self.xDialog.Height / 2))
             
             # xWidgets
-            hspace = 60
             nLblWidth = 140
-            nLblHeight = 20
-            nDescWidth = 140
-            nDescHeight = 40
             nURLcolor = 0x4444FF
             
             xFD0 = uno.createUnoStruct("com.sun.star.awt.FontDescriptor")
             xFD0.Height = 20
             #xFD0.Weight = uno.getConstantByName("com.sun.star.awt.FontWeight.BOLD")
@@ -72,36 +68,41 @@
             xFD3 = uno.createUnoStruct("com.sun.star.awt.FontDescriptor")
             xFD3.Height = 12
             xFD3.Weight = uno.getConstantByName("com.sun.star.awt.FontWeight.BOLD")
             xFD3.Name = "Verdana"
             
-            # Infos
-            lblTitle = self._addWidget('lblTitle', 'FixedText', 60, 5, 100, 20, Label = dUI.get('title', "#err"), Align = 0, FontDescriptor = xFD0)
-            lblVersion = self._addWidget('lblVersion', 'FixedText', 62, 25, 80, 10, Label = dUI.get('version', "#err"), Align = 0, FontDescriptor = xFD2)
-            lblLicense = self._addWidget('lblLicense', 'FixedText', 62, 35, 80, 10, Label = dUI.get('license', "#err"), Align = 0, FontDescriptor = xFD2)
-            lblWebsite = self._addWidget('lblWebsite', 'FixedHyperlink', 62, 45, 60, 10, Label = dUI.get('website', "#err"), Align = 0, \
-                                         URL="http://www.dicollecte.org/grammalecte", FontDescriptor = xFD1, TextColor = nURLcolor)
-
             # logo
             xDefaultContext = self.ctx.ServiceManager.DefaultContext
             xPackageInfoProvider = xDefaultContext.getValueByName("/singletons/com.sun.star.deployment.PackageInformationProvider")
             sExtPath = xPackageInfoProvider.getPackageLocation("French.linguistic.resources.from.Dicollecte.by.OlivierR")
-            imgLogo = self._addWidget('imgLogo', 'ImageControl', 5, 5, 50, 50, ImageURL = sExtPath+"/img/logo100.png", Border = 0, ScaleMode = 1)
+            #imgLogo = self._addWidget('imgLogo', 'ImageControl', 5, 5, 50, 50, ImageURL = sExtPath+"/img/logo100.png", Border = 0, ScaleMode = 1)
+            imgMainLogo = self._addWidget('imgMainLogo', 'ImageControl', 5, 5, 150, 80, ImageURL = sExtPath+"/img/logo120_text.png", Border = 0, ScaleMode = 1)
+
+            # Infos
+            #lblTitle = self._addWidget('lblTitle', 'FixedText', 60, 5, 100, 20, Label = dUI.get('title', "#err"), Align = 0, FontDescriptor = xFD0)            
+            lblVersion = self._addWidget('lblVersion', 'FixedText', 5, 90, nLblWidth, 10, Label = dUI.get('version', "#err"), Align = 1, FontDescriptor = xFD2)
+            lblLicense = self._addWidget('lblLicense', 'FixedText', 5, 100, nLblWidth, 10, Label = dUI.get('license', "#err"), Align = 1, FontDescriptor = xFD2)
+            lblWebsite = self._addWidget('lblWebsite', 'FixedHyperlink', 5, 110, nLblWidth, 10, Label = dUI.get('website', "#err"), Align = 1, \
+                                         URL="http://www.dicollecte.org/", FontDescriptor = xFD1, TextColor = nURLcolor)
 
             # Python version
-            self._addWidget('lblpython', 'FixedText', 10, 60, 140, 10, Align = 1, TextColor = 0x888888, FontDescriptor = xFD2, \
+            self._addWidget('lblpython', 'FixedText', 10, 125, nLblWidth, 10, Align = 1, TextColor = 0x888888, FontDescriptor = xFD2, \
                             Label = dUI.get('pythonver', "#err") + "{0[0]}.{0[1]}.{0[2]}".format(sys.version_info))
 
             # other
-            line = self._addWidget('line', 'FixedLine', 10, 73, nDescWidth, 10)
-
-            lblMsg = self._addWidget('lblMsg', 'FixedText', 10, 85, nDescWidth, 10, Label = dUI.get('message', "#err"), FontDescriptor = xFD2, Align = 1)
-            lblURL1 = self._addWidget('lblURL1', 'FixedHyperlink', 10, 95, nDescWidth, 10, Label = dUI.get('sponsor', "#err"), \
-                                      Align = 1, URL="http://www.lamouette.org/", FontDescriptor = xFD3, TextColor = nURLcolor)
-            imgSponsor = self._addWidget('imgSponsor', 'ImageControl', 5, 107, 150, 50, ImageURL = sExtPath+"/img/LaMouette_small.png", Border = 0, ScaleMode = 1)
-            lblURL2 = self._addWidget('lblURL2', 'FixedHyperlink', 10, 160, nDescWidth, 10, Label = dUI.get('link', "#err"), \
-                                      Align = 1, URL="http://www.dicollecte.org/grammalecte/soutiens.php", FontDescriptor = xFD1, TextColor = nURLcolor)
+            line = self._addWidget('line', 'FixedLine', 10, 140, nLblWidth, 10)
+
+            # sponsors
+            lblMsg = self._addWidget('lblMsg', 'FixedText', 10, 155, nLblWidth, 10, Label = dUI.get('message', "#err"), FontDescriptor = xFD2, Align = 1)
+            lblURL1 = self._addWidget('lblURL1', 'FixedHyperlink', 10, 170, nLblWidth, 10, Label = dUI.get('sponsor', "#err"), \
+                                      Align = 1, URL="http://lamouette.org/", FontDescriptor = xFD3, TextColor = nURLcolor)
+            imgSponsor = self._addWidget('imgSponsor', 'ImageControl', 5, 180, 150, 50, ImageURL = sExtPath+"/img/LaMouette_small.png", Border = 0, ScaleMode = 1)
+            lblURL2 = self._addWidget('lblURL2', 'FixedHyperlink', 10, 235, nLblWidth, 10, Label = dUI.get('sponsor2', "#err"), \
+                                      Align = 1, URL="https://www.algoo.fr/", FontDescriptor = xFD3, TextColor = nURLcolor)
+            imgSponsor2 = self._addWidget('imgSponsor2', 'ImageControl', 5, 245, 150, 50, ImageURL = sExtPath+"/img/Algoo_logo.png", Border = 0, ScaleMode = 1)
+            lblURL3 = self._addWidget('lblURL3', 'FixedHyperlink', 10, 300, nLblWidth, 10, Label = dUI.get('link', "#err"), \
+                                      Align = 1, URL="http://www.dicollecte.org/#thanks", FontDescriptor = xFD1, TextColor = nURLcolor)
             # button            
             #button = self._addWidget('close', 'Button', self.xDialog.Width - 25, self.xDialog.Height - 20, 20, 14, \
             #                         Label = dUI.get('close', "#err"), FontDescriptor = xFD1, TextColor = 0x004400)
             
             # container

Index: gc_lang/fr/oxt/About/ab_strings.py
==================================================================
--- gc_lang/fr/oxt/About/ab_strings.py
+++ gc_lang/fr/oxt/About/ab_strings.py
@@ -15,10 +15,11 @@
 
             "pythonver": "Machine virtuelle Python : v",
 
             "message": "Avec le soutien de",
             "sponsor": "La Mouette…",
+            "sponsor2": "Algoo…",
             "link": "… et de nombreux contributeurs.",
 
             "close": "~OK"
           },
     "en": {
@@ -30,10 +31,11 @@
 
             "pythonver": "Python virtual machine: v",
 
             "message": "With the support of",
             "sponsor": "La Mouette…",
+            "sponsor2": "Algoo…",
             "link": "… and many contributors.",
 
             "close": "~OK"
           }
 }