Trad: Traduction onglet Note
This commit is contained in:
parent
2b9c5cd6f7
commit
4b5f87ea69
@ -66,6 +66,7 @@ Code=Code
|
|||||||
Type=Type
|
Type=Type
|
||||||
Language=Language
|
Language=Language
|
||||||
Note=Note
|
Note=Note
|
||||||
|
CurrentNote=Current note
|
||||||
Label=Label
|
Label=Label
|
||||||
Info=Info
|
Info=Info
|
||||||
Family=Family
|
Family=Family
|
||||||
|
|||||||
@ -66,6 +66,7 @@ Code=Code
|
|||||||
Type=Type
|
Type=Type
|
||||||
Language=Langue
|
Language=Langue
|
||||||
Note=Note
|
Note=Note
|
||||||
|
CurrentNote=Note actuelle
|
||||||
Label=Libellé
|
Label=Libellé
|
||||||
Info=Info
|
Info=Info
|
||||||
Family=Famille
|
Family=Famille
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2001-2003,2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2001-2003,2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -21,11 +21,11 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/**
|
||||||
\file htdocs/socnote.php
|
\file htdocs/socnote.php
|
||||||
\brief Fichier onglet notes liées à la société
|
\brief Fichier onglet notes liées à la société
|
||||||
\ingroup societe
|
\ingroup societe
|
||||||
\version $Revision$
|
\version $Revision$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require("./pre.inc.php");
|
require("./pre.inc.php");
|
||||||
@ -103,20 +103,18 @@ if ($_GET["socid"] > 0) {
|
|||||||
dolibarr_fiche_head($head, $hselected, $societe->nom);
|
dolibarr_fiche_head($head, $hselected, $societe->nom);
|
||||||
|
|
||||||
|
|
||||||
print_titre($societe->nom);
|
|
||||||
|
|
||||||
print "<form method=\"post\" action=\"socnote.php\">";
|
print "<form method=\"post\" action=\"socnote.php\">";
|
||||||
|
|
||||||
print '<table class="border" width="100%">';
|
print '<table class="border" width="100%">';
|
||||||
print '<tr><td width="50%" valign="top">Note</td><td>Note Actuelle</td></tr>';
|
print '<tr><td width="50%" valign="top">'.$langs->trans("Note").'</td><td>'.$langs->trans("CurrentNote").'</td></tr>';
|
||||||
print '<tr><td width="50%" valign="top">';
|
print '<tr><td width="50%" valign="top">';
|
||||||
print "<input type=\"hidden\" name=\"action\" value=\"add\">";
|
print "<input type=\"hidden\" name=\"action\" value=\"add\">";
|
||||||
print "<input type=\"hidden\" name=\"socid\" value=\"".$societe->id."\">";
|
print "<input type=\"hidden\" name=\"socid\" value=\"".$societe->id."\">";
|
||||||
print "<textarea name=\"note\" cols=\"60\" rows=\"10\">".$societe->note."</textarea><br>";
|
print "<textarea name=\"note\" cols=\"60\" rows=\"10\">".$societe->note."</textarea><br>";
|
||||||
print '</td><td width="50%" valign="top">'.nl2br($societe->note).'</td>';
|
print '</td><td width="50%" valign="top">'.nl2br($societe->note).'</td>';
|
||||||
print "</td></tr>";
|
print "</td></tr>";
|
||||||
print "</table>";
|
print "</table><br>";
|
||||||
print '<input type="submit" value="'.$langs->trans("Modify").'"></form>';
|
print '<center><input type="submit" value="'.$langs->trans("Modify").'"></center></form>';
|
||||||
}
|
}
|
||||||
|
|
||||||
print '<br>';
|
print '<br>';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user