diff --git a/ChangeLog b/ChangeLog
index a5b8e442b9ebfdc7020c42aa4d53a3983894ca22..52840dd2cc265689833a8620306cf98d8bc47270 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -53,6 +53,7 @@ New experimental modules:
 - Fix: No images into product description lines as PDF generation does
   not work with this.
 - Fix: Errors weren't being shown in customer's & supplier's orders
+- Fix: Lastname wasn't being recorded in xinputuser emailing module
 
 For developers:
 - New: Add webservice for thirdparty creation and list.
diff --git a/htdocs/comm/mailing/cibles.php b/htdocs/comm/mailing/cibles.php
index fc9894caf6d98f8b4c7eaa7525bde85861a40479..2081bda8cbb2ce60e8bf607feb77d5539dbf6c24 100644
--- a/htdocs/comm/mailing/cibles.php
+++ b/htdocs/comm/mailing/cibles.php
@@ -178,7 +178,7 @@ if ($object->fetch($id) >= 0)
 
 	print '<table class="border" width="100%">';
 
-	$linkback = '<a href="'.DOL_URL_ROOT.'/projet/liste.php">'.$langs->trans("BackToList").'</a>';
+	$linkback = '<a href="'.DOL_URL_ROOT.'/comm/mailing/liste.php">'.$langs->trans("BackToList").'</a>';
 
 	print '<tr><td width="25%">'.$langs->trans("Ref").'</td>';
 	print '<td colspan="3">';
diff --git a/htdocs/core/class/html.formcompany.class.php b/htdocs/core/class/html.formcompany.class.php
index 06a889afb17d04f7d3c2d78f6f947a1e42acff35..b848d6b2759383699068163dbc92877ae8f41b16 100644
--- a/htdocs/core/class/html.formcompany.class.php
+++ b/htdocs/core/class/html.formcompany.class.php
@@ -627,10 +627,13 @@ class FormCompany
 	{
 		$lesTypes = $object->liste_type_contact($source, $order);
 		print '<select class="flat" name="'.$htmlname.'" id="'.$htmlname.'">';
-		if ($showempty) print print '<option value="0"></option>';
+		if ($showempty) print '<option value="0"></option>';
 		foreach($lesTypes as $key=>$value)
 		{
-			print '<option value="'.$key.'">'.$value.'</option>';
+			print '<option value="'.$key.'"';
+			if ($key == $selected)
+			    print ' selected';
+			print '>'.$value.'</option>';
 		}
 		print "</select>\n";
 	}
diff --git a/htdocs/core/lib/files.lib.php b/htdocs/core/lib/files.lib.php
index fc4ebd4c25fed66663f7d186995a3585552c974d..23ac28b8c113489e05ecc7ff69118dbfdff10191 100644
--- a/htdocs/core/lib/files.lib.php
+++ b/htdocs/core/lib/files.lib.php
@@ -729,6 +729,7 @@ function dol_delete_file($file,$disableglob=0,$nophperrors=0,$nohook=0,$object=n
 		$hookmanager->initHooks(array('fileslib'));
 
 		$parameters=array(
+				'GET' => $_GET,
 				'file' => $file,
 				'disableglob'=> $disableglob,
 				'nophperrors' => $nophperrors
@@ -993,7 +994,7 @@ function dol_init_file_process($pathtoscan='')
  */
 function dol_add_file_process($upload_dir,$allowoverwrite=0,$donotupdatesession=0,$varfiles='addedfile')
 {
-	global $db,$user,$conf,$langs,$_FILES;
+	global $db,$user,$conf,$langs;
 
 	if (! empty($_FILES[$varfiles])) // For view $_FILES[$varfiles]['error']
 	{
diff --git a/htdocs/core/modules/mailings/xinputuser.modules.php b/htdocs/core/modules/mailings/xinputuser.modules.php
index 994bac804c42dea89e802905ef3127fe5cd7b701..12648f147fdbb5b190f72ed9cdb4bfb0a3d61641 100644
--- a/htdocs/core/modules/mailings/xinputuser.modules.php
+++ b/htdocs/core/modules/mailings/xinputuser.modules.php
@@ -133,7 +133,7 @@ class mailing_xinputuser extends MailingTargets
 			{
 				$cibles[] = array(
            			'email' => $email,
-           			'name' => $name,
+           			'name' => $lastname,
            			'firstname' => $firstname,
 					'other' => $other,
                     'source_url' => '',
diff --git a/htdocs/install/mysql/migration/3.2.0-3.3.0.sql b/htdocs/install/mysql/migration/3.2.0-3.3.0.sql
index a5e76b08b4116e9921751c6ad73d0f018d652c3e..bb0ef5cf9900213fd03597f7d470a583cfc7867a 100755
--- a/htdocs/install/mysql/migration/3.2.0-3.3.0.sql
+++ b/htdocs/install/mysql/migration/3.2.0-3.3.0.sql
@@ -16,6 +16,8 @@
 -- -- VMYSQL4.1 DELETE FROM llx_usergroup_user      WHERE fk_usergroup NOT IN (SELECT rowid from llx_usergroup);
 
 DROP TABLE llx_product_ca;
+DROP TABLE llx_document;
+DROP TABLE llx_dolibarr_modules;
 
 ALTER TABLE llx_menu MODIFY COLUMN fk_mainmenu   varchar(24);
 ALTER TABLE llx_menu MODIFY COLUMN fk_leftmenu   varchar(24);
@@ -220,4 +222,3 @@ ALTER TABLE llx_propaldet MODIFY COLUMN localtax2_type varchar(1);
 -- END TASK #204
 
 ALTER TABLE llx_menu MODIFY COLUMN enabled varchar(255) NULL default '1';
-ALTER TABLE llx_document MODIFY COLUMN permissions varchar(9) DEFAULT 'rw-rw-rw';
diff --git a/htdocs/install/mysql/tables/llx_document.sql b/htdocs/install/mysql/tables/llx_document.sql
deleted file mode 100644
index 0dc9cc376ec4a4e2246ff46d789e5d3fc7f3cf6a..0000000000000000000000000000000000000000
--- a/htdocs/install/mysql/tables/llx_document.sql
+++ /dev/null
@@ -1,29 +0,0 @@
--- ===================================================================
--- Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
---
--- This program is free software; you can redistribute it and/or modify
--- it under the terms of the GNU General Public License as published by
--- the Free Software Foundation; either version 2 of the License, or
--- (at your option) any later version.
---
--- This program is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
--- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--- GNU General Public License for more details.
---
--- You should have received a copy of the GNU General Public License
--- along with this program. If not, see <http://www.gnu.org/licenses/>.
---
--- ===================================================================
-
-create table llx_document
-(
-  rowid           integer AUTO_INCREMENT PRIMARY KEY,
-  name            varchar(255) NOT NULL,
-  file_name       varchar(255) NOT NULL,
-  file_extension  varchar(5)   NOT NULL,
-  date_generation datetime     NULL,
-  fk_owner        integer      NULL,
-  fk_group        integer      NULL,
-  permissions     varchar(9)   DEFAULT 'rw-rw-rw'
-)ENGINE=innodb;
diff --git a/htdocs/install/mysql/tables/llx_dolibarr_modules.key.sql b/htdocs/install/mysql/tables/llx_dolibarr_modules.key.sql
deleted file mode 100644
index a711ab7d9cc480a564cabdf11e25b775e68d3a62..0000000000000000000000000000000000000000
--- a/htdocs/install/mysql/tables/llx_dolibarr_modules.key.sql
+++ /dev/null
@@ -1,19 +0,0 @@
--- ============================================================================
--- Copyright (C) 2009      Regis Houssin        <regis@dolibarr.fr>
---
--- This program is free software; you can redistribute it and/or modify
--- it under the terms of the GNU General Public License as published by
--- the Free Software Foundation; either version 2 of the License, or
--- (at your option) any later version.
---
--- This program is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
--- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--- GNU General Public License for more details.
---
--- You should have received a copy of the GNU General Public License
--- along with this program. If not, see <http://www.gnu.org/licenses/>.
---
--- ===========================================================================
-
-ALTER TABLE llx_dolibarr_modules ADD PRIMARY KEY pk_dolibarr_modules (numero, entity);
diff --git a/htdocs/install/mysql/tables/llx_dolibarr_modules.sql b/htdocs/install/mysql/tables/llx_dolibarr_modules.sql
deleted file mode 100644
index 50c86d2911a24629cc1ef15d28120406b85e94ba..0000000000000000000000000000000000000000
--- a/htdocs/install/mysql/tables/llx_dolibarr_modules.sql
+++ /dev/null
@@ -1,30 +0,0 @@
--- ========================================================================
--- Copyright (C) 2005      Rodolphe Quiedeville <rodolphe@quiedeville.org>
--- Copyright (C) 2005-2009 Regis Houssin        <regis@dolibarr.fr>
---
--- This program is free software; you can redistribute it and/or modify
--- it under the terms of the GNU General Public License as published by
--- the Free Software Foundation; either version 2 of the License, or
--- (at your option) any later version.
---
--- This program is distributed in the hope that it will be useful,
--- but WITHOUT ANY WARRANTY; without even the implied warranty of
--- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
--- GNU General Public License for more details.
---
--- You should have received a copy of the GNU General Public License
--- along with this program. If not, see <http://www.gnu.org/licenses/>.
---
--- ========================================================================
-
-create table llx_dolibarr_modules
-(
-  numero         integer,
-  entity         integer     DEFAULT 1 NOT NULL,	-- multi company id
-  active         tinyint     DEFAULT 0 NOT NULL,
-  active_date    datetime    NOT NULL,
-  active_version varchar(25) NOT NULL
-
-)ENGINE=innodb;
-
-
diff --git a/htdocs/langs/ca_ES/admin.lang b/htdocs/langs/ca_ES/admin.lang
index 63074a981d0a4dc28551fb0a374e76db62b58fcf..8e61f05950f33de9c2a7e97b6d5f00a5581e6180 100644
--- a/htdocs/langs/ca_ES/admin.lang
+++ b/htdocs/langs/ca_ES/admin.lang
@@ -1,5 +1,6 @@
 # Dolibarr language file - ca_ES - admin
 CHARSET=UTF-8
+Foundation=Fundació
 Version=Versió
 VersionProgram=Versió programa
 VersionLastInstall=Versió instal·lació inicial
@@ -61,6 +62,7 @@ PreviewNotAvailable=Vista prèvia no disponible
 ThemeCurrentlyActive=Tema actualment actiu
 CurrentTimeZone=Fus horari PHP (Servidor)
 Space=Àrea
+Table=Taula
 Fields=Camps
 Mask=Màscara
 NextValue=Pròxim valor
@@ -128,6 +130,7 @@ SystemInfo=Info. sistema
 SystemTools=Utilitats sistema
 SystemToolsArea=Àrea utilitats del sistema
 SystemToolsAreaDesc=Aquesta àrea ofereix diverses funcions d'administració. Utilitzeu el menú per triar la funcionalitat cercada.
+Purge=Purgar
 PurgeAreaDesc=Aquesta pàgina li permet eliminar tots els arxius creats o guardats per Dolibarr (arxius temporals o tots els fitxers de la carpeta <b>%s</b>). L'ús d'aquesta funció no és necessària. Es dóna per als usuaris que alberguen Dolibarr en un servidor que no ofereix els permisos d'eliminació d'arxius salvaguardat pel servidor web.
 PurgeDeleteLogFile=Esborrar el fitxer log <b>%s</b> definit pel mòdul Syslog (no hi ha risc de pèrdua de dades)
 PurgeDeleteTemporaryFiles=Eliminar tots els arxius temporals (sense risc de pèrdua de dades)
@@ -156,6 +159,7 @@ ImportPostgreSqlDesc=Per a importar una còpia de seguretat, useu l'ordre pg_res
 ImportMySqlCommand=%s %s < elmeuarxiubackup.sql
 ImportPostgreSqlCommand=%s %s elmeuarxiubackup.sql
 FileNameToGenerate=Nom del fitxer a generar
+Compression=Compressió
 CommandsToDisableForeignKeysForImport=Comanda per desactivar les claus excloents a la importació
 CommandsToDisableForeignKeysForImportWarning=Obligatori si vol poder restaurar més tard el dump SQL
 ExportCompatibility=Compatibilitat de l'arxiu d'exportació generat
@@ -167,7 +171,7 @@ FullPathToPostgreSQLdumpCommand=ruta completa cap al comandament pg_dump
 ExportOptions=Opcions d'exportació
 AddDropDatabase=Afegir ordres DROP DATABASE
 AddDropTable=Afegir ordres DROP TABLE
-Structure=Estructura
+ExportStructure=Estructura
 Datas=Dades
 NameColumn=Nom de les columnes
 ExtendedInsert=Instruccions INSERT esteses
@@ -446,6 +450,7 @@ Module2600Name=WebServices
 Module2600Desc=Activa els serveis de servidor web services de Dolibarr
 Module2700Name=Gravatar
 Module2700Desc=Utilitza el servei en línia de Gravatar (www.gravatar.com) per mostrar fotos dels usuaris/membres (que es troben en els seus missatges de correu electrònic). Necessita un accés a Internet
+Module2800Desc=Client FTP
 Module2900Name=GeoIPMaxmind
 Module2900Desc=Capacitats de conversió GeoIP Maxmind
 Module5000Name=Multi-empresa
@@ -739,6 +744,8 @@ PhpConf=Conf
 PhpWebLink=Enllaç Web-PHP
 Pear=Pear
 PearPackages=Paquets Pear
+Browser=Navegador
+Server=Servidor
 Database=Base de dades
 DatabaseServer=Host de la base de dades
 DatabaseName=Nom de la base de dades
diff --git a/htdocs/langs/ca_ES/companies.lang b/htdocs/langs/ca_ES/companies.lang
index 74579bdc8767c1e6ce9add2e44c11a80ab1413c4..cfd42da2d1842c67f6cef896afca1260863d483c 100644
--- a/htdocs/langs/ca_ES/companies.lang
+++ b/htdocs/langs/ca_ES/companies.lang
@@ -374,7 +374,7 @@ UniqueThirdParties=Total de tercers únics
 InActivity=Actiu
 ActivityCeased=Tancat
 ActivityStateFilter=Estat d'activitat
-# Monkey=undefined
+# Monkey
 MonkeyNumRefModelDesc=Retorna un número sota el format %syymm-nnnn per als codis de clients  i %syymm-nnnn per als codis dels proveïdors, on yy és l'any, mm el mes i nnnn un comptador seqüencial sense ruptura i sense tornar a 0.
-# Leopard=undefined
+# Leopard
 LeopardNumRefModelDesc=Codi de client/proveïdor lliure sense verificació. Pot ser modificat en qualsevol moment.
diff --git a/htdocs/langs/ca_ES/dict.lang b/htdocs/langs/ca_ES/dict.lang
index 30c5c6466e6b4bbb41ff1c47e6d9a417cfe138a4..0ab12a2e38cc2df6752c34fb5e94958df49b2ddc 100644
--- a/htdocs/langs/ca_ES/dict.lang
+++ b/htdocs/langs/ca_ES/dict.lang
@@ -246,13 +246,13 @@ CountryJE=Jersey
 CountryME=Monténégro
 CountryBL=Saint-Barthélemy
 CountryMF=Saint-Martin
-##### Civilities #####=undefined
+##### Civilities #####
 CivilityMME=Senyora
 CivilityMR=Senyor
 CivilityMLE=Senyoreta
 CivilityMTRE=En
 CivilityDR=Doctor
-##### Currencies #####=undefined
+##### Currencies #####
 Currencyeuros=Euros
 CurrencyAUD=Dòlars Aus.
 CurrencySingAUD=Dòlar Aus.
diff --git a/htdocs/langs/ca_ES/interventions.lang b/htdocs/langs/ca_ES/interventions.lang
index 01d4027d7f695a2f3a98ac30703a6c1d22153005..3344661a2b4fbc5023e446cc372f3a07efca1653 100644
--- a/htdocs/langs/ca_ES/interventions.lang
+++ b/htdocs/langs/ca_ES/interventions.lang
@@ -40,12 +40,12 @@ ClassifyBilled=Classificar "Facturado"
 StatusInterInvoiced=Facturado
 RelatedInterventions=Intervencions adjuntes
 ShowIntervention=Mostrar intervenció
-##### Types de contacts #####=undefined
+##### Types de contacts #####
 TypeContact_fichinter_internal_INTERREPFOLL=Responsable seguiment de la intervenció
 TypeContact_fichinter_internal_INTERVENING=Interventor
 TypeContact_fichinter_external_BILLING=Contacte client facturació intevenció
 TypeContact_fichinter_external_CUSTOMER=Contacte client seguiment intervenció
-# Modele numérotation=undefined
+# Modele numérotation
 ArcticNumRefModelDesc1=Model de numeració genèric
 ArcticNumRefModelError=Activació impossible
 PacificNumRefModelDesc1=Retorna el número amb el format %syymm-nnnn on yy és l'any, mm. el mes i nnnn un comptador seqüencial sense ruptura i sense quedar a 0
diff --git a/htdocs/langs/ca_ES/propal.lang b/htdocs/langs/ca_ES/propal.lang
index 16c641102a9c26ab830dd638dffc5f61f757ceb7..7aa87dcc4293731b60a2971f98201069730ef344 100644
--- a/htdocs/langs/ca_ES/propal.lang
+++ b/htdocs/langs/ca_ES/propal.lang
@@ -92,7 +92,7 @@ AvailabilityTypeAV_1M=1 mes
 TypeContact_propal_internal_SALESREPFOLL=Comercial seguiment pressupost
 TypeContact_propal_external_BILLING=Contacte client de facturació pressupost
 TypeContact_propal_external_CUSTOMER=Contacte client seguiment pressupost
-# Documents models=undefined
+# Documents models
 DocModelAzurDescription=Model de pressupost complet (logo...)
 DocModelJauneDescription=Model de pressupost Jaune
 Numbershort=Nº
\ No newline at end of file
diff --git a/htdocs/langs/da_DK/main.lang b/htdocs/langs/da_DK/main.lang
index e48fd0420a8b491efb2d67d82781037e0e864b18..7dd615bfa86d5ff82bc8dc8fd10ade576f9fdc02 100644
--- a/htdocs/langs/da_DK/main.lang
+++ b/htdocs/langs/da_DK/main.lang
@@ -571,112 +571,112 @@ Day0=Søndag
 // Reference language: en_US
 ErrorGoToGlobalSetup=Gå til 'Company / Foundation "-opsætningen til at løse dette
 // STOP - Lines generated via autotranslator.php tool (2009-08-19 20:57:56).
-
-
-// START - Lines generated via autotranslator.php tool (2010-07-17 11:19:38).
-// Reference language: en_US
-FormatHourShortDuration=%H:%M
-NoError=Ingen fejl
-ErrorNoSocialContributionForSellerCountry=Fejl, ingen social bidrag type der er defineret for landets %s '.
-BackgroundColorByDefault=Standard baggrundsfarve
-FileWasNotUploaded=En fil er valgt for udlæg, men endnu ikke var uploadet. Klik på "Vedhæft fil" for dette.
-NbOfEntries=Nb af tilmeldinger
-Resize=Resize
-Recenter=Recenter
-NumberByMonth=Antal efter måned
-KiloBytes=Kilobyte
-MegaBytes=Megabyte
-GigaBytes=Gigabyte
-b=b.
-Kb=Kb
-Mb=Mb
-Gb=Gb
-AmountLT1ES=Beløb RE
-AmountLT2ES=Beløb IRPF
-TotalLT1ES=Total RE
-TotalLT2ES=Total IRPF
-Available=Tilgængelig
-Examples=Eksempler
-Reason=Årsag
-SendByMail=Send via e-mail
-DocumentsNb=Linkede filer (%s)
-PrintContentArea=Vis side for at udskrive hovedindhold område
-NoMenu=Ingen sub-menu
-WarningYouAreInMaintenanceMode=Advarsel, du er i en vedligeholdelses mode, så kun login <b>%s</b> er tilladt at bruge ansøgningen på i øjeblikket.
-CreditCard=Kreditkort
-FieldsWithAreMandatory=Felter med <b>%s</b> er obligatoriske
-FieldsWithIsForPublic=Felter med <b>%s</b> er vist på offentlig liste over medlemmer. Hvis du ikke ønsker dette, se "offentlige" boks.
-AccordingToGeoIPDatabase=(Ifølge GeoIP konvertering)
-Line=Line
-NotSupported=Ikke understøttet
-RequiredField=Obligatorisk felt
-Result=Resultat
-ToTest=Test
-ValidateBefore=Kortet skal være valideret, før du bruger denne funktion
-Visibility=Synlighed
-Private=Private
-Hidden=Skjulte
-Resources=Ressourcer
-Source=Kilde
-Prefix=Præfiks
-// STOP - Lines generated via autotranslator.php tool (2010-07-17 11:21:47).
-
-
-// START - Lines generated via autotranslator.php tool (2012-02-29 15:59:19).
-// Reference language: en_US -> da_DK
-FormatDateShortJQuery=dd/mm/yy
-AddLink=Tilføj link
-Of=af
-SearchOf=Søg
-AmountByMonth=Beløb efter måned
-DatePayment=Dato for betaling
-TeraBytes=Terabyte
-Tb=Tb
-LT1ES=RE
-LT2ES=IRPF
-OtherStatistics=Andre statistik
-ActionNotApplicable=Ikke relevant
-ActionsOnMember=Events Om dette medlem
-JanuaryMin=Jan
-FebruaryMin=Februar
-MarchMin=Mar
-AprilMin=April
-MayMin=Maj
-JuneMin=Juni
-JulyMin=Juli
-AugustMin=August
-SeptemberMin=September
-OctoberMin=Oktober
-NovemberMin=November
-DecemberMin=December
-CoreErrorTitle=Systemfejl
-CoreErrorMessage=Beklager, der opstod en fejl. Kontroller logs, eller kontakt din systemadministrator.
-Before=Før
-After=Efter
-IPAddress=IP-adressen
-Frequency=Frekvens
-IM=Instant messaging
-NewAttribute=Ny attribut
-AttributeCode=Attribut koden
-OptionalFieldsSetup=Ekstra attributter opsætning
-URLPhoto=Url af foto / logo
-SetLinkToThirdParty=Link til en anden tredjepart
-CreateDraft=Opret udkast
-ClickToEdit=Klik for at redigere
-ObjectDeleted=Objekt %s slettet
-ByCountry=Efter land
-ByTown=Ved byen
-ByDate=Efter dato
-ByMonthYear=Efter måned / år
-ByYear=Ved år
-ByMonth=efter måned
-ByDay=Ved dag
-BySalesRepresentative=Ved salgsrepræsentant
-MondayMin=Mo
-TuesdayMin=Tu
-WednesdayMin=Vi
-ThursdayMin=Th
-FridayMin=Fr
-SaturdayMin=Sa
-SundayMin=Su
-// STOP - Lines generated via autotranslator.php tool (2012-02-29 16:01:49).
+
+
+// START - Lines generated via autotranslator.php tool (2010-07-17 11:19:38).
+// Reference language: en_US
+FormatHourShortDuration=%H:%M
+NoError=Ingen fejl
+ErrorNoSocialContributionForSellerCountry=Fejl, ingen social bidrag type der er defineret for landets %s '.
+BackgroundColorByDefault=Standard baggrundsfarve
+FileWasNotUploaded=En fil er valgt for udlæg, men endnu ikke var uploadet. Klik på "Vedhæft fil" for dette.
+NbOfEntries=Nb af tilmeldinger
+Resize=Resize
+Recenter=Recenter
+NumberByMonth=Antal efter måned
+KiloBytes=Kilobyte
+MegaBytes=Megabyte
+GigaBytes=Gigabyte
+b=b.
+Kb=Kb
+Mb=Mb
+Gb=Gb
+AmountLT1ES=Beløb RE
+AmountLT2ES=Beløb IRPF
+TotalLT1ES=Total RE
+TotalLT2ES=Total IRPF
+Available=Tilgængelig
+Examples=Eksempler
+Reason=Årsag
+SendByMail=Send via e-mail
+DocumentsNb=Linkede filer (%s)
+PrintContentArea=Vis side for at udskrive hovedindhold område
+NoMenu=Ingen sub-menu
+WarningYouAreInMaintenanceMode=Advarsel, du er i en vedligeholdelses mode, så kun login <b>%s</b> er tilladt at bruge ansøgningen på i øjeblikket.
+CreditCard=Kreditkort
+FieldsWithAreMandatory=Felter med <b>%s</b> er obligatoriske
+FieldsWithIsForPublic=Felter med <b>%s</b> er vist på offentlig liste over medlemmer. Hvis du ikke ønsker dette, se "offentlige" boks.
+AccordingToGeoIPDatabase=(Ifølge GeoIP konvertering)
+Line=Line
+NotSupported=Ikke understøttet
+RequiredField=Obligatorisk felt
+Result=Resultat
+ToTest=Test
+ValidateBefore=Kortet skal være valideret, før du bruger denne funktion
+Visibility=Synlighed
+Private=Private
+Hidden=Skjulte
+Resources=Ressourcer
+Source=Kilde
+Prefix=Præfiks
+// STOP - Lines generated via autotranslator.php tool (2010-07-17 11:21:47).
+
+
+// START - Lines generated via autotranslator.php tool (2012-02-29 15:59:19).
+// Reference language: en_US -> da_DK
+FormatDateShortJQuery=dd/mm/yy
+AddLink=Tilføj link
+Of=af
+SearchOf=Søg
+AmountByMonth=Beløb efter måned
+DatePayment=Dato for betaling
+TeraBytes=Terabyte
+Tb=Tb
+LT1ES=RE
+LT2ES=IRPF
+OtherStatistics=Andre statistik
+ActionNotApplicable=Ikke relevant
+ActionsOnMember=Events Om dette medlem
+JanuaryMin=Jan
+FebruaryMin=Februar
+MarchMin=Mar
+AprilMin=April
+MayMin=Maj
+JuneMin=Juni
+JulyMin=Juli
+AugustMin=August
+SeptemberMin=September
+OctoberMin=Oktober
+NovemberMin=November
+DecemberMin=December
+CoreErrorTitle=Systemfejl
+CoreErrorMessage=Beklager, der opstod en fejl. Kontroller logs, eller kontakt din systemadministrator.
+Before=Før
+After=Efter
+IPAddress=IP-adressen
+Frequency=Frekvens
+IM=Instant messaging
+NewAttribute=Ny attribut
+AttributeCode=Attribut koden
+OptionalFieldsSetup=Ekstra attributter opsætning
+URLPhoto=Url af foto / logo
+SetLinkToThirdParty=Link til en anden tredjepart
+CreateDraft=Opret udkast
+ClickToEdit=Klik for at redigere
+ObjectDeleted=Objekt %s slettet
+ByCountry=Efter land
+ByTown=Ved byen
+ByDate=Efter dato
+ByMonthYear=Efter måned / år
+ByYear=Ved år
+ByMonth=efter måned
+ByDay=Ved dag
+BySalesRepresentative=Ved salgsrepræsentant
+MondayMin=Mo
+TuesdayMin=Tu
+WednesdayMin=Vi
+ThursdayMin=Th
+FridayMin=Fr
+SaturdayMin=Sa
+SundayMin=Su
+// STOP - Lines generated via autotranslator.php tool (2012-02-29 16:01:49).
diff --git a/htdocs/langs/es_ES/admin.lang b/htdocs/langs/es_ES/admin.lang
index 0e15d03b8d8af66f76bd6e442a64d4ff7ed61ccc..bebbcaabf3c852b8fc5974deb7278ca3fb2ec362 100644
--- a/htdocs/langs/es_ES/admin.lang
+++ b/htdocs/langs/es_ES/admin.lang
@@ -1,5 +1,6 @@
 # Dolibarr language file - es_ES - admin
 CHARSET=UTF-8
+Foundation=Fundación
 Version=Versión
 VersionProgram=Versión programa
 VersionLastInstall=Versión instalación inicial
@@ -61,7 +62,9 @@ PreviewNotAvailable=Vista previa no disponible
 ThemeCurrentlyActive=Tema actualmente activo
 CurrentTimeZone=Zona horaria PHP (Servidor)
 Space=Área
+Table=Tabla
 Fields=Campos
+Index=Índice
 Mask=Máscara
 NextValue=Próximo valor
 NextValueForInvoices=Próximo valor (facturas)
@@ -128,6 +131,7 @@ SystemInfo=Info. sistema
 SystemTools=Utilidades sistema
 SystemToolsArea=Área utilidades del sistema
 SystemToolsAreaDesc=Esta área ofrece distintas funciones de administración. Utilice la menú para elegir la funcionalidad buscada.
+Purge=Purgar
 PurgeAreaDesc=Esta página le permite eliminar todos los archivos creados o guardados por Dolibarr (archivos temporales o todos los archivos del directorio <b>%s</b>). El uso de esta función no es necesaria. Se proporciona para los usuarios que albergan a Dolibarr en un servidor que no ofrece los permisos de eliminación de archivos salvaguardados por el servidor Web.
 PurgeDeleteLogFile=Borrar el archivo log <b>%s</b> definido por el módulo Syslog (no hay riesgo de pérdida de datos)
 PurgeDeleteTemporaryFiles=Eliminar todos los archivos temporales (sin riesgo de perdida de datos)
@@ -156,6 +160,7 @@ ImportPostgreSqlDesc=Para importar una copia de seguridad, debe usar el comando
 ImportMySqlCommand=%s %s < miarchivobackup.sql
 ImportPostgreSqlCommand=%s %s miarchivobackup.sql
 FileNameToGenerate=Nombre del archivo a generar
+Compression=Compresión
 CommandsToDisableForeignKeysForImport=Comando para desactivar las claves excluyentes a la importación
 CommandsToDisableForeignKeysForImportWarning=Obligatorio si quiere poder restaurar más tarde el dump SQL
 ExportCompatibility=Compatibilidad del archivo de exportación generado
@@ -167,7 +172,7 @@ FullPathToPostgreSQLdumpCommand=ruta completa hacia el comando pg_dump
 ExportOptions=Opciones de exportación
 AddDropDatabase=Añadir órdenes DROP DATABASE
 AddDropTable=Añadir órdenes DROP TABLE
-Structure=Estructura
+ExportStructure=Estructura
 Datas=Datos
 NameColumn=Nombre las columnas
 ExtendedInsert=Instrucciones INSERT extendidas
@@ -446,6 +451,7 @@ Module2600Name=WebServices
 Module2600Desc=Activa los servicios de servidor web services de Dolibarr
 Module2700Name=Gravatar
 Module2700Desc=Utiliza el servicio en línea de Gravatar (www.gravatar.com) para mostrar fotos de los usuarios/miembros (que se encuentran en sus mensajes de correo electrónico). Necesita un acceso a Internet
+Module2800Desc=Cliente FTP
 Module2900Name=GeoIPMaxmind
 Module2900Desc=Capacidades de conversión GeoIP Maxmind
 Module5000Name=Multi-empresa
@@ -739,6 +745,8 @@ PhpConf=Conf
 PhpWebLink=Vínculo Web-PHP
 Pear=Pear
 PearPackages=Paquetes Pear
+Browser=Navegador
+Server=Servidor
 Database=Base de datos
 DatabaseServer=Host de la base de datos
 DatabaseName=Nombre de la base de datos
@@ -789,6 +797,7 @@ CompanyZip=Código postal
 CompanyTown=Población
 CompanyCountry=País
 CompanyCurrency=Divisa principal
+Logo=Logotipo
 DoNotShow=No mostrar
 DoNotSuggestPaymentMode=No sugerir
 NoActiveBankAccountDefined=Ninguna cuenta bancaria activa definida
diff --git a/htdocs/langs/es_ES/errors.lang b/htdocs/langs/es_ES/errors.lang
index 0e075b716b13c1bd34e6e8613c6f729fc2c5e8e2..b238a2d380244a0db536bfd837a8869247f049b7 100644
--- a/htdocs/langs/es_ES/errors.lang
+++ b/htdocs/langs/es_ES/errors.lang
@@ -1,7 +1,7 @@
 # Dolibarr language file - es_ES - errors
 CHARSET=UTF-8
 MenuManager=Gestor de menú
-# Errors=undefined
+# Errors
 Error=Error
 Errors=Errores
 ErrorBadEMail=e-mail %s no correcto
diff --git a/htdocs/langs/fi_FI/main.lang b/htdocs/langs/fi_FI/main.lang
index 9bcde927f2ae2a040b4e79c034dac532cacf948d..734a3356dd9485f0cb5cbf64dfd0589c38f8ca78 100644
--- a/htdocs/langs/fi_FI/main.lang
+++ b/htdocs/langs/fi_FI/main.lang
@@ -563,112 +563,112 @@ Day5=Perjantai
 Day6=Lau
 Day0=Sunnuntai
 // STOP - Lines generated via autotranslator.php tool (2009-08-13 20:45:19).
-
-
-// START - Lines generated via autotranslator.php tool (2010-07-17 11:26:22).
-// Reference language: en_US
-FormatHourShortDuration=%H:%M
-NoError=Ei virheitä
-ErrorNoSocialContributionForSellerCountry=Virhe, ei sosiaaliturvamaksujen tyyppi määritellään maan %s ".
-BackgroundColorByDefault=Default taustaväri
-FileWasNotUploaded=Tiedosto on valittu liite mutta ei ollut vielä ladattu. Klikkaa "Liitä tiedosto" tätä.
-NbOfEntries=Huom Merkintöjen
-Resize=Asua
-Recenter=Keskitä
-NumberByMonth=Numero kuukausittain
-KiloBytes=Kilotavua
-MegaBytes=Megatavua
-GigaBytes=Gigatavua
-b=b.
-Kb=Kb
-Mb=Mb
-Gb=Gb
-AmountLT1ES=Määrä RE
-AmountLT2ES=Määrä IRPF
-TotalLT1ES=Yhteensä RE
-TotalLT2ES=Yhteensä IRPF
-Available=Saatavissa
-Examples=Esimerkkejä
-Reason=Syy
-SendByMail=Lähetä sähköpostilla
-DocumentsNb=Linkitettyä kuvaa (%s)
-PrintContentArea=Näytä sivu tulostaa päävalikkoon alue
-NoMenu=Ei alivalikko
-WarningYouAreInMaintenanceMode=Varoitus, olet ylläpitotilassa, joten vain kirjautunut <b>%s</b> saa käyttää hakemuksen tällä hetkellä.
-CreditCard=Luottokortti
-FieldsWithAreMandatory=Tähdellä <b>%s</b> ovat pakollisia
-FieldsWithIsForPublic=Tähdellä <b>%s</b> näkyvät julkisen jäsenluettelo. Jos et halua tätä, tarkista "julkinen"-kenttään.
-AccordingToGeoIPDatabase=(Mukaan GeoIP muuntaminen)
-Line=Rivi
-NotSupported=Ei tuettu
-RequiredField=Pakollinen kenttä
-Result=Tulos
-ToTest=Testi
-ValidateBefore=Kortti on validoitava ennen tämän toiminnon
-Visibility=Näkyvyys
-Private=Yksityinen
-Hidden=Kätketty
-Resources=Resurssit
-Source=Lähde
-Prefix=Etuliite
-// STOP - Lines generated via autotranslator.php tool (2010-07-17 11:28:32).
-
-
-// START - Lines generated via autotranslator.php tool (2012-02-29 16:10:23).
-// Reference language: en_US -> fi_FI
-FormatDateShortJQuery=dd/mm/yy
-AddLink=Lisää linkki
-Of=ja
-SearchOf=Etsi
-AmountByMonth=Määrä kuukausittain
-DatePayment=Maksupäivä
-TeraBytes=Teratavua
-Tb=Tb
-LT1ES=RE
-LT2ES=IRPF
-OtherStatistics=Muut tilastot
-ActionNotApplicable=Ei sovelleta
-ActionsOnMember=Tapahtumia tästä jäseneksi
-JanuaryMin=Tammikuu
-FebruaryMin=Helmikuu
-MarchMin=Mar
-AprilMin=Huhtikuu
-MayMin=Toukokuu
-JuneMin=Kesäkuu
-JulyMin=Heinäkuu
-AugustMin=Elokuu
-SeptemberMin=Syyskuu
-OctoberMin=Lokakuu
-NovemberMin=Marraskuu
-DecemberMin=Joulukuu
-CoreErrorTitle=System error
-CoreErrorMessage=Anteeksi, virhe. Tarkista lokit tai ota yhteyttä järjestelmänvalvojaan.
-Before=Ennen
-After=Jälkeen
-IPAddress=IP-osoite
-Frequency=Taajuus
-IM=Pikaviestit
-NewAttribute=Uusi ominaisuus
-AttributeCode=Ominaisuuden code
-OptionalFieldsSetup=Extra ominaisuuksia setup
-URLPhoto=Url on kuva / logo
-SetLinkToThirdParty=Linkki toiselle kolmannelle osapuolelle
-CreateDraft=Luo luonnos
-ClickToEdit=Klikkaa Muokkaa
-ObjectDeleted=Object %s poistettu
-ByCountry=Maittain
-ByTown=By kaupunki
-ByDate=Päivämäärän mukaan
-ByMonthYear=Kun kuukausi / vuosi
-ByYear=By vuosi
-ByMonth=kuukausittain
-ByDay=Päivällä
-BySalesRepresentative=By myyntiedustaja
-MondayMin=Mo
-TuesdayMin=Tu
-WednesdayMin=Me
-ThursdayMin=Th
-FridayMin=Fr
-SaturdayMin=Sa
-SundayMin=Su
-// STOP - Lines generated via autotranslator.php tool (2012-02-29 16:12:45).
+
+
+// START - Lines generated via autotranslator.php tool (2010-07-17 11:26:22).
+// Reference language: en_US
+FormatHourShortDuration=%H:%M
+NoError=Ei virheitä
+ErrorNoSocialContributionForSellerCountry=Virhe, ei sosiaaliturvamaksujen tyyppi määritellään maan %s ".
+BackgroundColorByDefault=Default taustaväri
+FileWasNotUploaded=Tiedosto on valittu liite mutta ei ollut vielä ladattu. Klikkaa "Liitä tiedosto" tätä.
+NbOfEntries=Huom Merkintöjen
+Resize=Asua
+Recenter=Keskitä
+NumberByMonth=Numero kuukausittain
+KiloBytes=Kilotavua
+MegaBytes=Megatavua
+GigaBytes=Gigatavua
+b=b.
+Kb=Kb
+Mb=Mb
+Gb=Gb
+AmountLT1ES=Määrä RE
+AmountLT2ES=Määrä IRPF
+TotalLT1ES=Yhteensä RE
+TotalLT2ES=Yhteensä IRPF
+Available=Saatavissa
+Examples=Esimerkkejä
+Reason=Syy
+SendByMail=Lähetä sähköpostilla
+DocumentsNb=Linkitettyä kuvaa (%s)
+PrintContentArea=Näytä sivu tulostaa päävalikkoon alue
+NoMenu=Ei alivalikko
+WarningYouAreInMaintenanceMode=Varoitus, olet ylläpitotilassa, joten vain kirjautunut <b>%s</b> saa käyttää hakemuksen tällä hetkellä.
+CreditCard=Luottokortti
+FieldsWithAreMandatory=Tähdellä <b>%s</b> ovat pakollisia
+FieldsWithIsForPublic=Tähdellä <b>%s</b> näkyvät julkisen jäsenluettelo. Jos et halua tätä, tarkista "julkinen"-kenttään.
+AccordingToGeoIPDatabase=(Mukaan GeoIP muuntaminen)
+Line=Rivi
+NotSupported=Ei tuettu
+RequiredField=Pakollinen kenttä
+Result=Tulos
+ToTest=Testi
+ValidateBefore=Kortti on validoitava ennen tämän toiminnon
+Visibility=Näkyvyys
+Private=Yksityinen
+Hidden=Kätketty
+Resources=Resurssit
+Source=Lähde
+Prefix=Etuliite
+// STOP - Lines generated via autotranslator.php tool (2010-07-17 11:28:32).
+
+
+// START - Lines generated via autotranslator.php tool (2012-02-29 16:10:23).
+// Reference language: en_US -> fi_FI
+FormatDateShortJQuery=dd/mm/yy
+AddLink=Lisää linkki
+Of=ja
+SearchOf=Etsi
+AmountByMonth=Määrä kuukausittain
+DatePayment=Maksupäivä
+TeraBytes=Teratavua
+Tb=Tb
+LT1ES=RE
+LT2ES=IRPF
+OtherStatistics=Muut tilastot
+ActionNotApplicable=Ei sovelleta
+ActionsOnMember=Tapahtumia tästä jäseneksi
+JanuaryMin=Tammikuu
+FebruaryMin=Helmikuu
+MarchMin=Mar
+AprilMin=Huhtikuu
+MayMin=Toukokuu
+JuneMin=Kesäkuu
+JulyMin=Heinäkuu
+AugustMin=Elokuu
+SeptemberMin=Syyskuu
+OctoberMin=Lokakuu
+NovemberMin=Marraskuu
+DecemberMin=Joulukuu
+CoreErrorTitle=System error
+CoreErrorMessage=Anteeksi, virhe. Tarkista lokit tai ota yhteyttä järjestelmänvalvojaan.
+Before=Ennen
+After=Jälkeen
+IPAddress=IP-osoite
+Frequency=Taajuus
+IM=Pikaviestit
+NewAttribute=Uusi ominaisuus
+AttributeCode=Ominaisuuden code
+OptionalFieldsSetup=Extra ominaisuuksia setup
+URLPhoto=Url on kuva / logo
+SetLinkToThirdParty=Linkki toiselle kolmannelle osapuolelle
+CreateDraft=Luo luonnos
+ClickToEdit=Klikkaa Muokkaa
+ObjectDeleted=Object %s poistettu
+ByCountry=Maittain
+ByTown=By kaupunki
+ByDate=Päivämäärän mukaan
+ByMonthYear=Kun kuukausi / vuosi
+ByYear=By vuosi
+ByMonth=kuukausittain
+ByDay=Päivällä
+BySalesRepresentative=By myyntiedustaja
+MondayMin=Mo
+TuesdayMin=Tu
+WednesdayMin=Me
+ThursdayMin=Th
+FridayMin=Fr
+SaturdayMin=Sa
+SundayMin=Su
+// STOP - Lines generated via autotranslator.php tool (2012-02-29 16:12:45).
diff --git a/htdocs/langs/pl_PL/main.lang b/htdocs/langs/pl_PL/main.lang
index f708503361364500919e0104ec49ad75db78c893..5f725587178d178f693ac2602bda0887f28836fa 100644
--- a/htdocs/langs/pl_PL/main.lang
+++ b/htdocs/langs/pl_PL/main.lang
@@ -567,112 +567,112 @@ Day5=Piątek
 Day6=Sobota
 Day0=Niedziela
 // STOP - Lines generated via autotranslator.php tool (2009-08-13 21:07:31).
-
-
-// START - Lines generated via autotranslator.php tool (2010-09-04 01:33:40).
-// Reference language: en_US -> pl_PL
-FormatHourShortDuration=%H:%M
-NoError=Brak błędów
-ErrorNoSocialContributionForSellerCountry=Błąd, nie typ społeczny wkład określone dla kraju &quot;%s&quot;.
-BackgroundColorByDefault=domyślny kolor tła
-FileWasNotUploaded=Wybraniu pliku do zamocowania, ale jeszcze nie wysłał. Kliknij na &quot;Dołącz plik&quot; w tej sprawie.
-NbOfEntries=Uwaga wpisów
-Resize=Zmiana rozmiaru
-Recenter=Recenter
-NumberByMonth=Ilość na miesiąc
-KiloBytes=Kilobajtów
-MegaBytes=MB
-GigaBytes=GB
-b=b.
-Kb=Kb
-Mb=Mb
-Gb=Gb
-AmountLT1ES=Kwoty RE
-AmountLT2ES=Kwota IRPF
-TotalLT1ES=Razem RE
-TotalLT2ES=Razem IRPF
-Available=Dostępny
-Examples=Przykłady
-Reason=Powód
-SendByMail=Wyślij przez email
-DocumentsNb=Dołączonych plików (%s)
-PrintContentArea=Pokaż stronę do wydruku głównej treści
-NoMenu=Nie podmenu
-WarningYouAreInMaintenanceMode=Uwaga, jesteś w trybie konserwacji, więc tylko logowanie <b>%s</b> może używać aplikacji w danym momencie.
-CreditCard=kart kredytowych
-FieldsWithAreMandatory=<b>%s</b> pola są obowiązkowe
-FieldsWithIsForPublic=Pola <b>%s</b> są wyświetlane na publiczną listę członków. Jeśli nie chcesz, zaznacz opcję &quot;publicznych&quot; polu.
-AccordingToGeoIPDatabase=(Zgodnie z konwersji GeoIP)
-Line=Linia
-NotSupported=Nie są obsługiwane
-RequiredField=Pole wymagane
-Result=Wynik
-ToTest=Test
-ValidateBefore=Karty muszą być zatwierdzone przed użyciem tej funkcji
-Visibility=Widoczność
-Private=Prywatny
-Hidden=Ukryty
-Resources=Zasoby
-Source=Źródło
-Prefix=Przedrostek
-// STOP - Lines generated via autotranslator.php tool (2010-09-04 01:55:02).
-
-
-// START - Lines generated via autotranslator.php tool (2012-02-29 17:18:29).
-// Reference language: en_US -> pl_PL
-FormatDateShortJQuery=dd/mm/yy
-AddLink=Dodaj link
-Of=z
-SearchOf=Szukaj
-AmountByMonth=Kwota, o miesiąc
-DatePayment=Data płatności
-TeraBytes=Terabajtów
-Tb=Tb
-LT1ES=RE
-LT2ES=IRPF
-OtherStatistics=Inne statystyki
-ActionNotApplicable=Nie dotyczy
-ActionsOnMember=Wydarzenia O tego użytkownika
-JanuaryMin=Jan
-FebruaryMin=Luty
-MarchMin=Mar
-AprilMin=Kwietnia
-MayMin=Maj
-JuneMin=Czerwca
-JulyMin=Lipca
-AugustMin=Sierpnia
-SeptemberMin=Września
-OctoberMin=Października
-NovemberMin=Listopada
-DecemberMin=Grudzień
-CoreErrorTitle=Błąd systemu
-CoreErrorMessage=Przepraszamy, wystąpił błąd. Sprawdź dzienniki lub skontaktuj się z administratorem systemu.
-Before=Przed
-After=Po
-IPAddress=Adres IP
-Frequency=Częstotliwość
-IM=Komunikatory
-NewAttribute=Nowy atrybut
-AttributeCode=Kod atrybut
-OptionalFieldsSetup=Dodatkowa konfiguracja atrybutów
-URLPhoto=Url zdjęciem / logo
-SetLinkToThirdParty=Link do innych stron trzecich
-CreateDraft=Utwórz projekt
-ClickToEdit=Kliknij, aby edytować
-ObjectDeleted=%s obiekt usunięty
-ByCountry=Według kraju
-ByTown=Przez miasto
-ByDate=Według daty
-ByMonthYear=Przez miesiąc / rok
-ByYear=Przez rok
-ByMonth=przez miesiąc
-ByDay=Na dzień
-BySalesRepresentative=Przez przedstawiciela handlowego
-MondayMin=Mo
-TuesdayMin=Tu
-WednesdayMin=My
-ThursdayMin=Th
-FridayMin=O.
-SaturdayMin=Sa
-SundayMin=Ni
-// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:20:57).
+
+
+// START - Lines generated via autotranslator.php tool (2010-09-04 01:33:40).
+// Reference language: en_US -> pl_PL
+FormatHourShortDuration=%H:%M
+NoError=Brak błędów
+ErrorNoSocialContributionForSellerCountry=Błąd, nie typ społeczny wkład określone dla kraju &quot;%s&quot;.
+BackgroundColorByDefault=domyślny kolor tła
+FileWasNotUploaded=Wybraniu pliku do zamocowania, ale jeszcze nie wysłał. Kliknij na &quot;Dołącz plik&quot; w tej sprawie.
+NbOfEntries=Uwaga wpisów
+Resize=Zmiana rozmiaru
+Recenter=Recenter
+NumberByMonth=Ilość na miesiąc
+KiloBytes=Kilobajtów
+MegaBytes=MB
+GigaBytes=GB
+b=b.
+Kb=Kb
+Mb=Mb
+Gb=Gb
+AmountLT1ES=Kwoty RE
+AmountLT2ES=Kwota IRPF
+TotalLT1ES=Razem RE
+TotalLT2ES=Razem IRPF
+Available=Dostępny
+Examples=Przykłady
+Reason=Powód
+SendByMail=Wyślij przez email
+DocumentsNb=Dołączonych plików (%s)
+PrintContentArea=Pokaż stronę do wydruku głównej treści
+NoMenu=Nie podmenu
+WarningYouAreInMaintenanceMode=Uwaga, jesteś w trybie konserwacji, więc tylko logowanie <b>%s</b> może używać aplikacji w danym momencie.
+CreditCard=kart kredytowych
+FieldsWithAreMandatory=<b>%s</b> pola są obowiązkowe
+FieldsWithIsForPublic=Pola <b>%s</b> są wyświetlane na publiczną listę członków. Jeśli nie chcesz, zaznacz opcję &quot;publicznych&quot; polu.
+AccordingToGeoIPDatabase=(Zgodnie z konwersji GeoIP)
+Line=Linia
+NotSupported=Nie są obsługiwane
+RequiredField=Pole wymagane
+Result=Wynik
+ToTest=Test
+ValidateBefore=Karty muszą być zatwierdzone przed użyciem tej funkcji
+Visibility=Widoczność
+Private=Prywatny
+Hidden=Ukryty
+Resources=Zasoby
+Source=Źródło
+Prefix=Przedrostek
+// STOP - Lines generated via autotranslator.php tool (2010-09-04 01:55:02).
+
+
+// START - Lines generated via autotranslator.php tool (2012-02-29 17:18:29).
+// Reference language: en_US -> pl_PL
+FormatDateShortJQuery=dd/mm/yy
+AddLink=Dodaj link
+Of=z
+SearchOf=Szukaj
+AmountByMonth=Kwota, o miesiąc
+DatePayment=Data płatności
+TeraBytes=Terabajtów
+Tb=Tb
+LT1ES=RE
+LT2ES=IRPF
+OtherStatistics=Inne statystyki
+ActionNotApplicable=Nie dotyczy
+ActionsOnMember=Wydarzenia O tego użytkownika
+JanuaryMin=Jan
+FebruaryMin=Luty
+MarchMin=Mar
+AprilMin=Kwietnia
+MayMin=Maj
+JuneMin=Czerwca
+JulyMin=Lipca
+AugustMin=Sierpnia
+SeptemberMin=Września
+OctoberMin=Października
+NovemberMin=Listopada
+DecemberMin=Grudzień
+CoreErrorTitle=Błąd systemu
+CoreErrorMessage=Przepraszamy, wystąpił błąd. Sprawdź dzienniki lub skontaktuj się z administratorem systemu.
+Before=Przed
+After=Po
+IPAddress=Adres IP
+Frequency=Częstotliwość
+IM=Komunikatory
+NewAttribute=Nowy atrybut
+AttributeCode=Kod atrybut
+OptionalFieldsSetup=Dodatkowa konfiguracja atrybutów
+URLPhoto=Url zdjęciem / logo
+SetLinkToThirdParty=Link do innych stron trzecich
+CreateDraft=Utwórz projekt
+ClickToEdit=Kliknij, aby edytować
+ObjectDeleted=%s obiekt usunięty
+ByCountry=Według kraju
+ByTown=Przez miasto
+ByDate=Według daty
+ByMonthYear=Przez miesiąc / rok
+ByYear=Przez rok
+ByMonth=przez miesiąc
+ByDay=Na dzień
+BySalesRepresentative=Przez przedstawiciela handlowego
+MondayMin=Mo
+TuesdayMin=Tu
+WednesdayMin=My
+ThursdayMin=Th
+FridayMin=O.
+SaturdayMin=Sa
+SundayMin=Ni
+// STOP - Lines generated via autotranslator.php tool (2012-02-29 17:20:57).
diff --git a/htdocs/langs/pt_BR/companies.lang b/htdocs/langs/pt_BR/companies.lang
index aa8f3e6364d5b6bf04d74c6064d222974f2c06a7..adc2fadedf1bb1c51fc51d762a36eb1444c54404 100644
--- a/htdocs/langs/pt_BR/companies.lang
+++ b/htdocs/langs/pt_BR/companies.lang
@@ -79,7 +79,7 @@ WrongSupplierCode=Código fornecedor incorreto
 CustomerCodeModel=Modelo de código cliente
 SupplierCodeModel=Modelo de código fornecedor
 Gencod=Código de barras
-##### Professionnal ID #####=undefined
+##### Professionnal ID #####
 ProfId1Short=Prof. id 1
 ProfId2Short=Prof. id 2
 ProfId3Short=Prof. id 3
diff --git a/htdocs/langs/pt_BR/contracts.lang b/htdocs/langs/pt_BR/contracts.lang
index b691e248f30c8977377f6de887892dce700d33c5..83db1c7ea63657b1d1045786819bdc6c964128f9 100755
--- a/htdocs/langs/pt_BR/contracts.lang
+++ b/htdocs/langs/pt_BR/contracts.lang
@@ -76,7 +76,7 @@ ConfirmMoveToAnotherContract=Escolhi o contrato e confirmo o alterar de serviço
 ConfirmMoveToAnotherContractQuestion=Escolha qualquer outro contrato do mesmo Fornecedor, deseja mover este serviço?
 PaymentRenewContractId=Renovação do Serviço (Numero %s)
 ExpiredSince=Expirado desde
-##### Types de contacts #####=undefined
+##### Types de contacts #####
 TypeContact_contrat_internal_SALESREPSIGN=Comercial assinante do contrato
 TypeContact_contrat_internal_SALESREPFOLL=Comercial seguimento do contrato
 TypeContact_contrat_external_BILLING=Contato cliente de faturação do contrato
diff --git a/htdocs/langs/pt_PT/companies.lang b/htdocs/langs/pt_PT/companies.lang
index f634a0311f3398275a27ee406d7034a9662f6e51..81f1c4cfdc3620ff90cdfe3f25d7c6c5bf948acf 100644
--- a/htdocs/langs/pt_PT/companies.lang
+++ b/htdocs/langs/pt_PT/companies.lang
@@ -75,7 +75,7 @@ WrongSupplierCode=Código fornecedor incorrecto
 CustomerCodeModel=Modelo de código cliente
 SupplierCodeModel=Modelo de código fornecedor
 Gencod=Código de barras
-##### Professionnal ID #####=undefined
+##### Professionnal ID #####
 ProfId1Short=Prof. id 1
 ProfId2Short=Prof. id 2
 ProfId3Short=Prof. id 3
diff --git a/htdocs/langs/pt_PT/contracts.lang b/htdocs/langs/pt_PT/contracts.lang
index 96c63be8a6bdfe03fe17ed3c1f3912a0d2764456..6d21d038cd42ca63ff1859dc9e174db95a786756 100644
--- a/htdocs/langs/pt_PT/contracts.lang
+++ b/htdocs/langs/pt_PT/contracts.lang
@@ -76,7 +76,7 @@ ConfirmMoveToAnotherContract=Escolhi o contrato e confirmo o alterar de serviço
 ConfirmMoveToAnotherContractQuestion=Escolha qualquer outro contrato do mesmo Terceiro, deseja mover este serviço?
 PaymentRenewContractId=Renovação do Serviço (Numero %s)
 ExpiredSince=Expirado desde
-##### Types de contacts #####=undefined
+##### Types de contacts #####
 TypeContact_contrat_internal_SALESREPSIGN=Comercial assinante do contrato
 TypeContact_contrat_internal_SALESREPFOLL=Comercial seguimento do contrato
 TypeContact_contrat_external_BILLING=Contacto cliente de facturação do contrato
diff --git a/htdocs/societe/document.php b/htdocs/societe/document.php
index 2b68c5ad13faea5f5f30967df18533bc73eb3435..edca64dfcf83f05db7a3cf3a2ac3cde972d93bd3 100644
--- a/htdocs/societe/document.php
+++ b/htdocs/societe/document.php
@@ -42,8 +42,7 @@ $ref = GETPOST('ref', 'alpha');
 // Security check
 if ($user->societe_id > 0)
 {
-	unset($_GET["action"]);
-	$action='';
+	unset($action);
 	$socid = $user->societe_id;
 }
 $result = restrictedArea($user, 'societe', $id, '&societe');
@@ -188,8 +187,7 @@ if ($object->id)
 	$formfile->form_attach_new_file($_SERVER["PHP_SELF"].'?id='.$object->id,'',0,0,$user->rights->societe->creer,50,$object);
 
 	// List of document
-	$param='&socid='.$object->id;
-	$formfile->list_of_documents($filearray,$object,'societe',$param);
+	$formfile->list_of_documents($filearray,$object,'societe');
 
 	print "<br><br>";
 }