Translated some strings in the code
This commit is contained in:
parent
d7121f6351
commit
674034e648
@ -28,6 +28,9 @@ require_once DOL_DOCUMENT_ROOT.'/core/triggers/interface_50_modNotification_Noti
|
|||||||
|
|
||||||
$langs->load("admin");
|
$langs->load("admin");
|
||||||
$langs->load("other");
|
$langs->load("other");
|
||||||
|
$langs->load("orders");
|
||||||
|
$langs->load("propal");
|
||||||
|
$langs->load("bills");
|
||||||
|
|
||||||
// Security check
|
// Security check
|
||||||
if (!$user->admin)
|
if (!$user->admin)
|
||||||
@ -109,8 +112,14 @@ foreach($listofnotifiedevents as $notifiedevent)
|
|||||||
{
|
{
|
||||||
$var=!$var;
|
$var=!$var;
|
||||||
$label=$langs->trans("Notify_".$notifiedevent['code']); //!=$langs->trans("Notify_".$notifiedevent['code'])?$langs->trans("Notify_".$notifiedevent['code']):$notifiedevent['label'];
|
$label=$langs->trans("Notify_".$notifiedevent['code']); //!=$langs->trans("Notify_".$notifiedevent['code'])?$langs->trans("Notify_".$notifiedevent['code']):$notifiedevent['label'];
|
||||||
|
|
||||||
|
if ($notifiedevent['elementtype'] == 'order_supplier') $elementLabel = $langs->trans('SupplierOrder');
|
||||||
|
elseif ($notifiedevent['elementtype'] == 'propal') $elementLabel = $langs->trans('Proposal');
|
||||||
|
elseif ($notifiedevent['elementtype'] == 'facture') $elementLabel = $langs->trans('Bill');
|
||||||
|
elseif ($notifiedevent['elementtype'] == 'commande') $elementLabel = $langs->trans('Order');
|
||||||
|
|
||||||
print '<tr '.$bc[$var].'>';
|
print '<tr '.$bc[$var].'>';
|
||||||
print '<td>'.$notifiedevent['elementtype'].'</td>';
|
print '<td>'.$elementLabel.'</td>';
|
||||||
print '<td>'.$notifiedevent['code'].'</td>';
|
print '<td>'.$notifiedevent['code'].'</td>';
|
||||||
print '<td>'.$label.'</td>';
|
print '<td>'.$label.'</td>';
|
||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
|||||||
@ -77,7 +77,7 @@ if ($action == 'add' || GETPOST('modify','alpha'))
|
|||||||
$ftp_port = "FTP_PORT_" . $entry;
|
$ftp_port = "FTP_PORT_" . $entry;
|
||||||
$ftp_user = "FTP_USER_" . $entry;
|
$ftp_user = "FTP_USER_" . $entry;
|
||||||
$ftp_password = "FTP_PASSWORD_" . $entry;
|
$ftp_password = "FTP_PASSWORD_" . $entry;
|
||||||
$ftp_passive = "FTP_PASSIVE_" . $entry;
|
$ftp_passive = "FTP_PASSIVE_" . $entry;
|
||||||
|
|
||||||
$db->begin();
|
$db->begin();
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ if ($action == 'add' || GETPOST('modify','alpha'))
|
|||||||
if ($result2) $result3=dolibarr_set_const($db, "FTP_USER_" . $entry,GETPOST($ftp_user,'alpha'),'chaine',0,'',$conf->entity);
|
if ($result2) $result3=dolibarr_set_const($db, "FTP_USER_" . $entry,GETPOST($ftp_user,'alpha'),'chaine',0,'',$conf->entity);
|
||||||
if ($result3) $result4=dolibarr_set_const($db, "FTP_PASSWORD_" . $entry,GETPOST($ftp_password,'alpha'),'chaine',0,'',$conf->entity);
|
if ($result3) $result4=dolibarr_set_const($db, "FTP_PASSWORD_" . $entry,GETPOST($ftp_password,'alpha'),'chaine',0,'',$conf->entity);
|
||||||
if ($result4) $result5=dolibarr_set_const($db, "FTP_NAME_" . $entry,GETPOST($ftp_name,'alpha'),'chaine',0,'',$conf->entity);
|
if ($result4) $result5=dolibarr_set_const($db, "FTP_NAME_" . $entry,GETPOST($ftp_name,'alpha'),'chaine',0,'',$conf->entity);
|
||||||
if ($result5) $result6=dolibarr_set_const($db, "FTP_PASSIVE_" . $entry,GETPOST($ftp_passive,'alpha'),'chaine',0,'',$conf->entity);
|
if ($result5) $result6=dolibarr_set_const($db, "FTP_PASSIVE_" . $entry,GETPOST($ftp_passive,'alpha'),'chaine',0,'',$conf->entity);
|
||||||
|
|
||||||
if ($result1 && $result2 && $result3 && $result4 && $result5 && $result6)
|
if ($result1 && $result2 && $result3 && $result4 && $result5 && $result6)
|
||||||
{
|
{
|
||||||
@ -114,7 +114,7 @@ if (GETPOST('delete','alpha'))
|
|||||||
if ($result2) $result3=dolibarr_del_const($db,"FTP_USER_" . $entry,$conf->entity);
|
if ($result2) $result3=dolibarr_del_const($db,"FTP_USER_" . $entry,$conf->entity);
|
||||||
if ($result3) $result4=dolibarr_del_const($db,"FTP_PASSWORD_" . $entry,$conf->entity);
|
if ($result3) $result4=dolibarr_del_const($db,"FTP_PASSWORD_" . $entry,$conf->entity);
|
||||||
if ($result4) $result5=dolibarr_del_const($db,"FTP_NAME_" . $entry,$conf->entity);
|
if ($result4) $result5=dolibarr_del_const($db,"FTP_NAME_" . $entry,$conf->entity);
|
||||||
if ($result4) $result6=dolibarr_del_const($db,"FTP_PASSIVE_" . $entry,$conf->entity);
|
if ($result4) $result6=dolibarr_del_const($db,"FTP_PASSIVE_" . $entry,$conf->entity);
|
||||||
|
|
||||||
if ($result1 && $result2 && $result3 && $result4 && $result5 && $result6)
|
if ($result1 && $result2 && $result3 && $result4 && $result5 && $result6)
|
||||||
{
|
{
|
||||||
@ -192,7 +192,7 @@ else
|
|||||||
print '</tr>';
|
print '</tr>';
|
||||||
|
|
||||||
print '<tr class="impair">';
|
print '<tr class="impair">';
|
||||||
print '<td>'.$langs->trans("Passive").'</td>';
|
print '<td>'.$langs->trans("FTPPassiveMode").'</td>';
|
||||||
$defaultpassive=GETPOST("FTP_PASSIVE_" . ($lastftpentry+1));
|
$defaultpassive=GETPOST("FTP_PASSIVE_" . ($lastftpentry+1));
|
||||||
if (! isset($_POST["FTP_PASSIVE_" . ($lastftpentry+1)])) $defaultpassive=empty($conf->global->FTP_SUGGEST_PASSIVE_BYDEFAULT)?0:1;
|
if (! isset($_POST["FTP_PASSIVE_" . ($lastftpentry+1)])) $defaultpassive=empty($conf->global->FTP_SUGGEST_PASSIVE_BYDEFAULT)?0:1;
|
||||||
print '<td>'.$form->selectyesno('FTP_PASSIVE_'.($lastftpentry+1), $defaultpassive, 2).'</td>';
|
print '<td>'.$form->selectyesno('FTP_PASSIVE_'.($lastftpentry+1), $defaultpassive, 2).'</td>';
|
||||||
@ -278,7 +278,7 @@ else
|
|||||||
$var=!$var;
|
$var=!$var;
|
||||||
print "<tr ".$bc[$var].">";
|
print "<tr ".$bc[$var].">";
|
||||||
print "<td width=\"100\">".$langs->trans("Passive")."</td>";
|
print "<td width=\"100\">".$langs->trans("Passive")."</td>";
|
||||||
print '<td>'.$form->selectyesno('FTP_PASSIVE_'.$idrss, @constant("FTP_PASSIVE_" . $idrss), 1).'</td>';
|
print '<td>'.$form->selectyesno('FTP_PASSIVE_'.$idrss, @constant("FTP_PASSIVE_" . $idrss), 1).'</td>';
|
||||||
print "</tr>";
|
print "</tr>";
|
||||||
|
|
||||||
print "<tr>";
|
print "<tr>";
|
||||||
|
|||||||
@ -9,4 +9,5 @@ FTPFeatureNotSupportedByYourPHP=Your PHP does not support FTP functions
|
|||||||
FailedToConnectToFTPServer=Failed to connect to FTP server (server %s, port %s)
|
FailedToConnectToFTPServer=Failed to connect to FTP server (server %s, port %s)
|
||||||
FailedToConnectToFTPServerWithCredentials=Failed to login to FTP server with defined login/password
|
FailedToConnectToFTPServerWithCredentials=Failed to login to FTP server with defined login/password
|
||||||
FTPFailedToRemoveFile=Failed to remove file <b>%s</b>.
|
FTPFailedToRemoveFile=Failed to remove file <b>%s</b>.
|
||||||
FTPFailedToRemoveDir=Failed to remove directory <b>%s</b> (Check permissions and that directory is empty).
|
FTPFailedToRemoveDir=Failed to remove directory <b>%s</b> (Check permissions and that directory is empty).
|
||||||
|
FTPPassiveMode=Passive mode
|
||||||
@ -10,6 +10,8 @@ PAYPAL_API_USER=API username
|
|||||||
PAYPAL_API_PASSWORD=API password
|
PAYPAL_API_PASSWORD=API password
|
||||||
PAYPAL_API_SIGNATURE=API signature
|
PAYPAL_API_SIGNATURE=API signature
|
||||||
PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
|
PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Offer payment "integral" (Credit card+Paypal) or "Paypal" only
|
||||||
|
PaypalModeIntegral=Integral
|
||||||
|
PaypalModeOnlyPaypal=PayPal only
|
||||||
PAYPAL_CSS_URL=Optionnal Url of CSS style sheet on payment page
|
PAYPAL_CSS_URL=Optionnal Url of CSS style sheet on payment page
|
||||||
ThisIsTransactionId=This is id of transaction: <b>%s</b>
|
ThisIsTransactionId=This is id of transaction: <b>%s</b>
|
||||||
PAYPAL_ADD_PAYMENT_URL=Add the url of Paypal payment when you send a document by mail
|
PAYPAL_ADD_PAYMENT_URL=Add the url of Paypal payment when you send a document by mail
|
||||||
|
|||||||
@ -1179,7 +1179,7 @@ LDAPFieldSidExample=Ejemplo : objectsid
|
|||||||
LDAPFieldEndLastSubscription=Fecha finalización como miembro
|
LDAPFieldEndLastSubscription=Fecha finalización como miembro
|
||||||
LDAPParametersAreStillHardCoded=Los parámetros LDAP son codificados en duro (en la clase contact)
|
LDAPParametersAreStillHardCoded=Los parámetros LDAP son codificados en duro (en la clase contact)
|
||||||
LDAPSetupNotComplete=Configuración LDAP incompleta (a completar en las otras pestañas)
|
LDAPSetupNotComplete=Configuración LDAP incompleta (a completar en las otras pestañas)
|
||||||
LDAPNoUserOrPasswordProvidedAccessIsReadOnly=Administrador o contraseña no inindicados. Los accesos LDAP serán anónimos y en solo lectura.
|
LDAPNoUserOrPasswordProvidedAccessIsReadOnly=Administrador o contraseña no indicados. Los accesos LDAP serán anónimos y en solo lectura.
|
||||||
LDAPDescContact=Esta página permite definir el nombre de los atributos del árbol LDAP para cada información de los contactos Dolibarr.
|
LDAPDescContact=Esta página permite definir el nombre de los atributos del árbol LDAP para cada información de los contactos Dolibarr.
|
||||||
LDAPDescUsers=Esta página permite definir el nombre de los atributos del árbol LDAP para cada información de los usuarios Dolibarr.
|
LDAPDescUsers=Esta página permite definir el nombre de los atributos del árbol LDAP para cada información de los usuarios Dolibarr.
|
||||||
LDAPDescGroups=Esta página permite definir el nombre de los atributos del árbol LDAP para cada información de los grupos usuarios Dolibarr.
|
LDAPDescGroups=Esta página permite definir el nombre de los atributos del árbol LDAP para cada información de los grupos usuarios Dolibarr.
|
||||||
|
|||||||
@ -9,4 +9,5 @@ FTPFeatureNotSupportedByYourPHP=Su PHP no soporta las funciones FTP
|
|||||||
FailedToConnectToFTPServer=No se pudo conectar con el servidor FTP (servidor: %s, puerto %s)
|
FailedToConnectToFTPServer=No se pudo conectar con el servidor FTP (servidor: %s, puerto %s)
|
||||||
FailedToConnectToFTPServerWithCredentials=No se pudo conectar con el login/contraseña FTP configurados
|
FailedToConnectToFTPServerWithCredentials=No se pudo conectar con el login/contraseña FTP configurados
|
||||||
FTPFailedToRemoveFile=No se pudo eliminar el archivo <b>%s</b>.
|
FTPFailedToRemoveFile=No se pudo eliminar el archivo <b>%s</b>.
|
||||||
FTPFailedToRemoveDir=No se pudo eliminar el directorio <b>%s</b> (Compruebe los permisos y que el directorio está vacío).
|
FTPFailedToRemoveDir=No se pudo eliminar el directorio <b>%s</b> (Compruebe los permisos y que el directorio está vacío).
|
||||||
|
FTPPassiveMode=Modo pasivo
|
||||||
@ -10,6 +10,8 @@ PAYPAL_API_USER=Nombre usuario API
|
|||||||
PAYPAL_API_PASSWORD=Contraseña usuario API
|
PAYPAL_API_PASSWORD=Contraseña usuario API
|
||||||
PAYPAL_API_SIGNATURE=Firma API
|
PAYPAL_API_SIGNATURE=Firma API
|
||||||
PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Proponer pago integral (Tarjeta+Paypal) o sólo Paypal
|
PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Proponer pago integral (Tarjeta+Paypal) o sólo Paypal
|
||||||
|
PaypalModeIntegral=Integral
|
||||||
|
PaypalModeOnlyPaypal=Sólo PayPal
|
||||||
PAYPAL_CSS_URL=Url opcional de la hoja de estilo CSS de la página de pago
|
PAYPAL_CSS_URL=Url opcional de la hoja de estilo CSS de la página de pago
|
||||||
ThisIsTransactionId=Identificador de la transacción: <b>%s</b>
|
ThisIsTransactionId=Identificador de la transacción: <b>%s</b>
|
||||||
PAYPAL_ADD_PAYMENT_URL=Añadir la url del pago Paypal al enviar un documento por e-mail
|
PAYPAL_ADD_PAYMENT_URL=Añadir la url del pago Paypal al enviar un documento por e-mail
|
||||||
|
|||||||
@ -9,4 +9,5 @@ FTPFeatureNotSupportedByYourPHP=Votre PHP ne supporte pas les fonctions FTP
|
|||||||
FailedToConnectToFTPServer=Échec de connexion au serveur FTP (serveur: %s, port %s)
|
FailedToConnectToFTPServer=Échec de connexion au serveur FTP (serveur: %s, port %s)
|
||||||
FailedToConnectToFTPServerWithCredentials=Échec de login avec le login/mot de passe FTP configuré
|
FailedToConnectToFTPServerWithCredentials=Échec de login avec le login/mot de passe FTP configuré
|
||||||
FTPFailedToRemoveFile=Échec suppression fichier <b>%s</b>.
|
FTPFailedToRemoveFile=Échec suppression fichier <b>%s</b>.
|
||||||
FTPFailedToRemoveDir=Échec suppression répertoire <b>%s</b> (Vérifiez les permissions et que le répertoire soit vide).
|
FTPFailedToRemoveDir=Échec suppression répertoire <b>%s</b> (Vérifiez les permissions et que le répertoire soit vide).
|
||||||
|
FTPPassiveMode=Mode passif
|
||||||
@ -10,6 +10,8 @@ PAYPAL_API_USER=Nom utilisateur API
|
|||||||
PAYPAL_API_PASSWORD=Mot de passe utilisateur API
|
PAYPAL_API_PASSWORD=Mot de passe utilisateur API
|
||||||
PAYPAL_API_SIGNATURE=Signature API
|
PAYPAL_API_SIGNATURE=Signature API
|
||||||
PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Proposer le paiement intégral (Carte+Paypal) ou Paypal seul
|
PAYPAL_API_INTEGRAL_OR_PAYPALONLY=Proposer le paiement intégral (Carte+Paypal) ou Paypal seul
|
||||||
|
PaypalModeIntegral=Intégral
|
||||||
|
PaypalModeOnlyPaypal=PayPal seul
|
||||||
PAYPAL_CSS_URL=Url optionnelle de la feuille de style CSS de la page de paiement
|
PAYPAL_CSS_URL=Url optionnelle de la feuille de style CSS de la page de paiement
|
||||||
ThisIsTransactionId=Voici l'identifiant de la transaction: <b>%s</b>
|
ThisIsTransactionId=Voici l'identifiant de la transaction: <b>%s</b>
|
||||||
PAYPAL_ADD_PAYMENT_URL=Ajouter l'url de paiement Paypal lors de l'envoi d'un document par mail
|
PAYPAL_ADD_PAYMENT_URL=Ajouter l'url de paiement Paypal lors de l'envoi d'un document par mail
|
||||||
|
|||||||
@ -157,7 +157,7 @@ print "</tr>\n";
|
|||||||
$var=!$var;
|
$var=!$var;
|
||||||
print '<tr '.$bc[$var].'><td class="fieldrequired">';
|
print '<tr '.$bc[$var].'><td class="fieldrequired">';
|
||||||
print $langs->trans("PAYPAL_API_INTEGRAL_OR_PAYPALONLY").'</td><td>';
|
print $langs->trans("PAYPAL_API_INTEGRAL_OR_PAYPALONLY").'</td><td>';
|
||||||
print $form->selectarray("PAYPAL_API_INTEGRAL_OR_PAYPALONLY",array('integral'=>'Integral','paypalonly'=>'Paypal only'),$conf->global->PAYPAL_API_INTEGRAL_OR_PAYPALONLY);
|
print $form->selectarray("PAYPAL_API_INTEGRAL_OR_PAYPALONLY",array('integral'=> $langs->trans('PaypalModeIntegral'),'paypalonly'=> $langs->trans('PaypalModeOnlyPaypal')),$conf->global->PAYPAL_API_INTEGRAL_OR_PAYPALONLY);
|
||||||
print '</td></tr>';
|
print '</td></tr>';
|
||||||
|
|
||||||
/*$var=!$var;
|
/*$var=!$var;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user