Trad: Quelques traductions de plus
This commit is contained in:
parent
9e5758505d
commit
a7fae40345
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2004 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,7 +21,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*! \file htdocs/compta/facture/note.php
|
/** \file htdocs/compta/facture/note.php
|
||||||
\ingroup facture
|
\ingroup facture
|
||||||
\brief Fiche de notes sur une facture
|
\brief Fiche de notes sur une facture
|
||||||
\version $Revision$
|
\version $Revision$
|
||||||
@ -126,7 +126,7 @@ if ($_GET["facid"])
|
|||||||
$author->fetch('');
|
$author->fetch('');
|
||||||
print $author->fullname.'</td></tr>';
|
print $author->fullname.'</td></tr>';
|
||||||
|
|
||||||
print '<tr><td valign="top" colspan="4">Note :</td></tr>';
|
print '<tr><td valign="top" colspan="4">'.$langs->trans("Note").' :</td></tr>';
|
||||||
|
|
||||||
print '<tr><td valign="top" colspan="4">'.nl2br($facture->note)."</td></tr>";
|
print '<tr><td valign="top" colspan="4">'.nl2br($facture->note)."</td></tr>";
|
||||||
|
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2004-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2004-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
* Copyright (C) 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
|
||||||
@ -20,11 +21,11 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/**
|
||||||
\file htdocs/compta/facture/pre.inc.php
|
\file htdocs/compta/facture/pre.inc.php
|
||||||
\ingroup facture
|
\ingroup facture
|
||||||
\brief Fichier de gestion du menu gauche du module facture
|
\brief Fichier de gestion du menu gauche du module facture
|
||||||
\version $Revision$
|
\version $Revision$
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require("../../main.inc.php");
|
require("../../main.inc.php");
|
||||||
@ -32,7 +33,8 @@ require_once("../../facture.class.php");
|
|||||||
|
|
||||||
function llxHeader($head = "", $title="", $help_url='') {
|
function llxHeader($head = "", $title="", $help_url='') {
|
||||||
global $conf, $langs;
|
global $conf, $langs;
|
||||||
|
$langs->load("companies");
|
||||||
|
$langs->load("bills");
|
||||||
/*
|
/*
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
@ -41,7 +43,7 @@ function llxHeader($head = "", $title="", $help_url='') {
|
|||||||
|
|
||||||
$menu = new Menu();
|
$menu = new Menu();
|
||||||
|
|
||||||
$menu->add(DOL_URL_ROOT."/compta/clients.php", "Clients");
|
$menu->add(DOL_URL_ROOT."/compta/clients.php", $langs->trans("Customers"));
|
||||||
|
|
||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
$menu->add(DOL_URL_ROOT."/compta/facture.php",$langs->trans("Bills"));
|
$menu->add(DOL_URL_ROOT."/compta/facture.php",$langs->trans("Bills"));
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2002-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2002-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2004 Éric Seigne <eric.seigne@ryxeo.com>
|
* Copyright (C) 2004 Éric Seigne <eric.seigne@ryxeo.com>
|
||||||
* 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
|
||||||
@ -22,7 +22,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*!
|
/**
|
||||||
\file htdocs/compta/facture/prelevement.php
|
\file htdocs/compta/facture/prelevement.php
|
||||||
\ingroup facture
|
\ingroup facture
|
||||||
\brief Gestion des prelevement d'une facture
|
\brief Gestion des prelevement d'une facture
|
||||||
@ -103,7 +103,7 @@ if ($_GET["facid"] > 0)
|
|||||||
$head[$h][1] = $langs->trans("Apercu");
|
$head[$h][1] = $langs->trans("Apercu");
|
||||||
$h++;
|
$h++;
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/compta/facture/prelevement.php?facid='.$fac->id;
|
$head[$h][0] = DOL_URL_ROOT.'/compta/facture/prelevement.php?facid='.$fac->id;
|
||||||
$head[$h][1] = $langs->trans("Prélèvement");
|
$head[$h][1] = $langs->trans("Prélévement");
|
||||||
$hselected = $h;
|
$hselected = $h;
|
||||||
$h++;
|
$h++;
|
||||||
$head[$h][0] = DOL_URL_ROOT.'/compta/facture/note.php?facid='.$fac->id;
|
$head[$h][0] = DOL_URL_ROOT.'/compta/facture/note.php?facid='.$fac->id;
|
||||||
@ -133,11 +133,11 @@ if ($_GET["facid"] > 0)
|
|||||||
|
|
||||||
print '<tr><td height="10">'.$langs->trans("AmountHT").'</td>';
|
print '<tr><td height="10">'.$langs->trans("AmountHT").'</td>';
|
||||||
print '<td align="right" colspan="2"><b>'.price($fac->total_ht).'</b></td>';
|
print '<td align="right" colspan="2"><b>'.price($fac->total_ht).'</b></td>';
|
||||||
print '<td>'.$conf->monnaie.' HT</td><td> </td></tr>';
|
print '<td>'.$conf->monnaie.'</td><td> </td></tr>';
|
||||||
|
|
||||||
print '<tr><td height="10">'.$langs->trans("AmountTTC").'</td>';
|
print '<tr><td height="10">'.$langs->trans("AmountTTC").'</td>';
|
||||||
print '<td align="right" colspan="2"><b>'.price($fac->total_ttc).'</b></td>';
|
print '<td align="right" colspan="2"><b>'.price($fac->total_ttc).'</b></td>';
|
||||||
print '<td>'.$conf->monnaie.' HT</td><td> </td></tr>';
|
print '<td>'.$conf->monnaie.'</td><td> </td></tr>';
|
||||||
|
|
||||||
print "</table>";
|
print "</table>";
|
||||||
|
|
||||||
@ -152,16 +152,17 @@ if ($_GET["facid"] > 0)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
print "</div><br/>";
|
print "</div><br/>";
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Prélèvement
|
* Prélèvement
|
||||||
*/
|
*/
|
||||||
|
|
||||||
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
print '<table class="noborder" width="100%">';
|
||||||
print '<tr class="liste_titre">';
|
print '<tr class="liste_titre">';
|
||||||
print '<td align="center">Date demande</td>';
|
print '<td align="center">Date demande</td>';
|
||||||
print '<td align="center">Date traitement</td>';
|
print '<td align="center">Date traitement</td>';
|
||||||
print '<td align="center">Bon prélèvement</td>';
|
print '<td align="center">Bon prélèvement</td>';
|
||||||
print '<td align="center">Utilisateur</td><td> </td><td> </td>';
|
print '<td align="center">'.$langs->trans("User").'</td><td> </td><td> </td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
$var=True;
|
$var=True;
|
||||||
|
|
||||||
@ -204,7 +205,7 @@ if ($_GET["facid"] > 0)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print $db->error() . ' ' . $sql;
|
dolibarr_print_error($db);
|
||||||
}
|
}
|
||||||
|
|
||||||
$sql = "SELECT pfd.rowid, pfd.traite,".$db->pdate("pfd.date_demande")." as date_demande";
|
$sql = "SELECT pfd.rowid, pfd.traite,".$db->pdate("pfd.date_demande")." as date_demande";
|
||||||
@ -250,7 +251,7 @@ if ($_GET["facid"] > 0)
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
print $db->error() . ' ' . $sql;
|
dolibarr_print_error($db);
|
||||||
}
|
}
|
||||||
|
|
||||||
print "</table>";
|
print "</table>";
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user