From f0882eca2da3e57d67807f39373c4a758c994aa8 Mon Sep 17 00:00:00 2001 From: Florian Henry Date: Fri, 21 Mar 2014 15:01:40 +0100 Subject: [PATCH 1/4] Add ref supplier as column and clear varialbes in double --- htdocs/fourn/commande/liste.php | 43 ++++++++++++++++++++------------- 1 file changed, 26 insertions(+), 17 deletions(-) diff --git a/htdocs/fourn/commande/liste.php b/htdocs/fourn/commande/liste.php index d6c4bb9427d..9e5cf3dc2d3 100644 --- a/htdocs/fourn/commande/liste.php +++ b/htdocs/fourn/commande/liste.php @@ -32,11 +32,9 @@ require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php'; $langs->load("orders"); -$sref=GETPOST('search_ref'); -$snom=GETPOST('search_nom'); -$suser=GETPOST('search_user'); -$sttc=GETPOST('search_ttc'); + $search_ref=GETPOST('search_ref'); +$search_refsupp=GETPOST('search_refsupp'); $search_nom=GETPOST('search_nom'); $search_user=GETPOST('search_user'); $search_ttc=GETPOST('search_ttc'); @@ -81,7 +79,7 @@ $offset = $conf->liste_limit * $page ; */ $sql = "SELECT s.rowid as socid, s.nom, cf.date_commande as dc,"; -$sql.= " cf.rowid,cf.ref, cf.fk_statut, cf.total_ttc, cf.fk_user_author,"; +$sql.= " cf.rowid,cf.ref, cf.ref_supplier, cf.fk_statut, cf.total_ttc, cf.fk_user_author,"; $sql.= " u.login"; $sql.= " FROM (".MAIN_DB_PREFIX."societe as s,"; $sql.= " ".MAIN_DB_PREFIX."commande_fournisseur as cf"; @@ -91,21 +89,21 @@ $sql.= " LEFT JOIN ".MAIN_DB_PREFIX."user as u ON cf.fk_user_author = u.rowid"; $sql.= " WHERE cf.fk_soc = s.rowid "; $sql.= " AND cf.entity = ".$conf->entity; if (!$user->rights->societe->client->voir && !$socid) $sql.= " AND s.rowid = sc.fk_soc AND sc.fk_user = " .$user->id; -if ($sref) +if ($search_ref) { - $sql .= natural_search('cf.ref', $sref); + $sql .= natural_search('cf.ref', $search_ref); } -if ($snom) +if ($search_nom) { - $sql .= natural_search('s.nom', $snom); + $sql .= natural_search('s.nom', $search_nom); } -if ($suser) +if ($search_user) { - $sql.= " AND u.login LIKE '%".$db->escape($suser)."%'"; + $sql.= " AND u.login LIKE '%".$db->escape($search_user)."%'"; } -if ($sttc) +if ($search_ttc) { - $sql .= " AND total_ttc = ".price2num($sttc); + $sql .= " AND total_ttc = ".price2num($search_ttc); } if ($sall) { @@ -117,6 +115,10 @@ if (GETPOST('statut')) { $sql .= " AND fk_statut =".GETPOST('statut','int'); } +if ($search_refsupp) +{ + $sql.= " AND (cf.ref_supplier LIKE '%".$db->escape($search_refsupp)."%')"; +} $sql.= " ORDER BY $sortfield $sortorder "; $sql.= $db->plimit($conf->liste_limit+1, $offset); @@ -133,11 +135,13 @@ if ($resql) if ($search_nom) $param.="&search_nom=".$search_nom; if ($search_user) $param.="&search_user=".$search_user; if ($search_ttc) $param.="&search_ttc=".$search_ttc; + if ($search_refsupp) $param.="&search_refsupp=".$search_refsupp; print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num); print '
'; print ''; print ''; print_liste_field_titre($langs->trans("Ref"),$_SERVER["PHP_SELF"],"cf.ref","",$param,'',$sortfield,$sortorder); + print_liste_field_titre($langs->trans("RefSupplier"),$_SERVER["PHP_SELF"],"cf.ref_supplier","",$param,'',$sortfield,$sortorder); print_liste_field_titre($langs->trans("Company"),$_SERVER["PHP_SELF"],"s.nom","",$param,'',$sortfield,$sortorder); print_liste_field_titre($langs->trans("Author"),$_SERVER["PHP_SELF"],"u.login","",$param,'',$sortfield,$sortorder); print_liste_field_titre($langs->trans("AmountTTC"),$_SERVER["PHP_SELF"],"total_ttc","",$param,$sortfield,$sortorder); @@ -147,10 +151,11 @@ if ($resql) print ''; - print ''; - print ''; - print ''; - print ''; + print ''; + print ''; + print ''; + print ''; + print ''; print ''; @@ -174,6 +179,10 @@ if ($resql) $filedir=$conf->fournisseur->dir_output.'/commande' . '/' . dol_sanitizeFileName($obj->ref); print $formfile->getDocumentsLink($objectstatic->element, $filename, $filedir); print ''."\n"; + + // Ref Supplier + print ''."\n"; + // Company print '
'; print ''; print ''.$obj->ref_supplier.''.img_object($langs->trans("ShowCompany"),"company").' '; From 79ab420997a9e6f6c450d70edca03211e4ce02c1 Mon Sep 17 00:00:00 2001 From: Juanjo Menent Date: Sat, 22 Mar 2014 09:41:14 +0100 Subject: [PATCH 2/4] Update es_ES from transifex --- htdocs/langs/es_ES/bills.lang | 6 +++--- htdocs/langs/es_ES/categories.lang | 14 +++++++------- htdocs/langs/es_ES/compta.lang | 14 +++++++------- htdocs/langs/es_ES/deliveries.lang | 2 +- htdocs/langs/es_ES/exports.lang | 2 +- htdocs/langs/es_ES/mails.lang | 10 +++++----- htdocs/langs/es_ES/main.lang | 8 ++++---- htdocs/langs/es_ES/opensurvey.lang | 26 +++++++++++++------------- htdocs/langs/es_ES/other.lang | 4 ++-- htdocs/langs/es_ES/projects.lang | 6 +++--- htdocs/langs/es_ES/salaries.lang | 10 +++++----- 11 files changed, 51 insertions(+), 51 deletions(-) diff --git a/htdocs/langs/es_ES/bills.lang b/htdocs/langs/es_ES/bills.lang index 009812e227a..e007e8cff56 100644 --- a/htdocs/langs/es_ES/bills.lang +++ b/htdocs/langs/es_ES/bills.lang @@ -28,9 +28,9 @@ InvoiceReplacementDesc=La factura rectificativa sirve para cancelar y par InvoiceAvoir=Abono InvoiceAvoirAsk=Abono para corregir la factura InvoiceAvoirDesc=El abono es una factura negativa destinada a compensar un importe de factura que difiere del importe realmente pagado (por haber pagado de más o por devolución de productos, por ejemplo). -# invoiceAvoirWithLines=Create Credit Note with lines from the origin invoice -# invoiceAvoirWithPaymentRestAmount=Create Credit Note with the amount of origin invoice payment's lake -# invoiceAvoirLineWithPaymentRestAmount=Credit Note amount of invoice payment's lake +invoiceAvoirWithLines=Crear abono con las líneas de la factura original +invoiceAvoirWithPaymentRestAmount=Crear abono con el importe pendiente de la factura origen +invoiceAvoirLineWithPaymentRestAmount=Abono del importe pendiente de la factura ReplaceInvoice=Rectificar la factura %s ReplacementInvoice=Rectificación factura ReplacedByInvoice=Rectificada por la factura %s diff --git a/htdocs/langs/es_ES/categories.lang b/htdocs/langs/es_ES/categories.lang index dc6ac951126..42c24bbae94 100644 --- a/htdocs/langs/es_ES/categories.lang +++ b/htdocs/langs/es_ES/categories.lang @@ -66,7 +66,7 @@ ReturnInCompany=Volver a la ficha cliente/cliente potencial ContentsVisibleByAll=El contenido será visible por todos ContentsVisibleByAllShort=Contenido visible por todos ContentsNotVisibleByAllShort=Contenido no visible por todos -# CategoriesTree=Categories tree +CategoriesTree=Árbol de categorías DeleteCategory=Eliminar categoría ConfirmDeleteCategory=¿Está seguro de querer eliminar esta categoría? RemoveFromCategory=Eliminar vínculo con categoría @@ -105,9 +105,9 @@ CatProdLinks=Productos CatCusLinks=Clientes/Clientes potenciales CatSupLinks=Proveedores DeleteFromCat=Eliminar de la categoría -# DeletePicture=Picture delete -# ConfirmDeletePicture=Confirm picture deletion? -# ExtraFieldsCategories=Complementary attributes -# CategoriesSetup=Categories setup -# CategorieRecursiv=Link with parent category automatically -# CategorieRecursivHelp=If activated, product will also linked to parent category when adding into a subcategory +DeletePicture=Eliminar imagen +ConfirmDeletePicture=¿Confirma la eliminación de la imagen? +ExtraFieldsCategories=Atributos complementarios +CategoriesSetup=Configuración de categorías +CategorieRecursiv=Enlazar con la categoría padre automáticamente +CategorieRecursivHelp=Si está activado, el producto se enlazará a la categoría padre si lo añadimos a una subcategoría diff --git a/htdocs/langs/es_ES/compta.lang b/htdocs/langs/es_ES/compta.lang index e0d24b151f2..d4ef8b56cf9 100644 --- a/htdocs/langs/es_ES/compta.lang +++ b/htdocs/langs/es_ES/compta.lang @@ -41,20 +41,20 @@ VATToCollect=IVA compras VATSummary=Balance de IVA LT2SummaryES=Balance de IRPF VATPaid=IVA Pagado -# SalaryPaid=Salary paid +SalaryPaid=Pago salario LT2PaidES=IRPF Pagado LT2CustomerES=IRPF ventas LT2SupplierES=IRPF compras VATCollected=IVA recuperado ToPay=A pagar ToGet=A devolver -# SpecialExpensesArea=Area for all special paiements +SpecialExpensesArea=Área de pagos especiales TaxAndDividendsArea=Área impuestos, cargas sociales y dividendos SocialContribution=Carga social SocialContributions=Cargas sociales -# MenuSpecialExpenses=Special expenses +MenuSpecialExpenses=Pagos especiales MenuTaxAndDividends=Impuestos y cargas -# MenuSalaries=Salaries +MenuSalaries=Salarios MenuSocialContributions=Cargas sociales MenuNewSocialContribution=Nueva carga NewSocialContribution=Nueva carga social @@ -67,14 +67,14 @@ PaymentCustomerInvoice=Cobro factura a cliente PaymentSupplierInvoice=Pago factura de proveedor PaymentSocialContribution=Pago carga social PaymentVat=Pago IVA -# PaymentSalary=Salary payment +PaymentSalary=Pago salario ListPayment=Listado de pagos ListOfPayments=Listado de pagos ListOfCustomerPayments=Listado de pagos de clientes ListOfSupplierPayments=Listado de pagos a proveedores DatePayment=Fecha de pago -# DateStartPeriod=Date start period -# DateEndPeriod=Date end period +DateStartPeriod=Fecha inicio periodo +DateEndPeriod=Fecha final periodo NewVATPayment=Nuevo pago de IVA newLT2PaymentES=Nuevo pago de IRPF LT2PaymentES=Pago IRPF diff --git a/htdocs/langs/es_ES/deliveries.lang b/htdocs/langs/es_ES/deliveries.lang index a50da88213a..4cfe6c90065 100644 --- a/htdocs/langs/es_ES/deliveries.lang +++ b/htdocs/langs/es_ES/deliveries.lang @@ -23,4 +23,4 @@ GoodStatusDeclaration=He recibido la mercancía en buen estado, Deliverer=Destinatario : Sender=Origen Recipient=Destinatario -# ErrorStockIsNotEnough=There's not enough stock +ErrorStockIsNotEnough=No hay suficiente stock diff --git a/htdocs/langs/es_ES/exports.lang b/htdocs/langs/es_ES/exports.lang index 36725368d19..f0ac8c62a64 100644 --- a/htdocs/langs/es_ES/exports.lang +++ b/htdocs/langs/es_ES/exports.lang @@ -125,7 +125,7 @@ BankAccountNumber=Número cuenta BankAccountNumberKey=Dígito Control SpecialCode=Código especial ExportStringFilter=%% permite reemplazar uno o más carácteres en el texto -# ExportDateFilter='YYYY' 'YYYYMM' 'YYYYMMDD': filters by one year/month/day
'YYYY+YYYY' 'YYYYMM+YYYYMM' 'YYYYMMDD+YYYYMMDD': filters over a range of years/months/days
'>YYYY' '>YYYYMM' '>YYYYMMDD': filters on the following years/months/days
'<YYYY' '<YYYYMM' '<YYYYMMDD': filters on the previous years/months/days +ExportDateFilter='YYYY' 'YYYYMM' 'YYYYMMDD': filtro por un año/mes/día
'YYYY+YYYY' 'YYYYMM+YYYYMM' 'YYYYMMDD+YYYYMMDD': filtro en un rango de años/meses/días
'>YYYY' '>YYYYMM' '>YYYYMMDD': filtro en los siguentes años/meses/días
'<YYYY' '<YYYYMM' '<YYYYMMDD': filtro en los años/meses/días anteriores ExportNumericFilter='NNNNN' filtros para un valor
'NNNNN+NNNNN' filtros sobre un rango de valores
'>NNNNN' filtros para valores menores
'>NNNNN' filtros para valores mayores ## filters SelectFilterFields=Si quiere aplicar un filtro sobre algunos valores, introdúzcalos aquí. diff --git a/htdocs/langs/es_ES/mails.lang b/htdocs/langs/es_ES/mails.lang index 7af311a25c3..e3207b409a0 100644 --- a/htdocs/langs/es_ES/mails.lang +++ b/htdocs/langs/es_ES/mails.lang @@ -80,12 +80,12 @@ ActivateCheckRead=Activar confirmación de lectura y opción de desuscripción ActivateCheckReadKey=Clave usada para encriptar la URL de la confirmación de lectura y la función de desuscripción EMailSentToNRecipients=E-Mail enviado a %s destinatarios. EachInvoiceWillBeAttachedToEmail=Se creará y adjuntará a cada e-mail un documento usando el modelo de factura por defecto. -# MailTopicSendRemindUnpaidInvoices=Reminder of invoice %s (%s) -# SendRemind=Send reminder by EMails -# RemindSent=%s reminder(s) sent +MailTopicSendRemindUnpaidInvoices=Recordatorio de la factura %s (%s) +SendRemind=Enviar recordatorios por e-mail +RemindSent=%s recordatorio(s) enviados AllRecipientSelectedForRemind=Todos los terceros seleccionados y si hay e-mail definido (se enviará un e-mail por factura) -# NoRemindSent=No EMail reminder sent -# ResultOfMassSending=Result of mass EMail reminders sending +NoRemindSent=No se han enviado recordatorios por e-mail +ResultOfMassSending=Resultado del envío de recordatorios # Libelle des modules de liste de destinataires mailing MailingModuleDescContactCompanies=Contactos de terceros (clientes potenciales, clientes, proveedores...) diff --git a/htdocs/langs/es_ES/main.lang b/htdocs/langs/es_ES/main.lang index e34e6b85268..dc957747d4f 100644 --- a/htdocs/langs/es_ES/main.lang +++ b/htdocs/langs/es_ES/main.lang @@ -34,7 +34,7 @@ ErrorFailedToOpenFile=Imposible abrir el archivo %s ErrorCanNotCreateDir=Imposible crear el directorio %s ErrorCanNotReadDir=Imposible leer el directorio %s ErrorConstantNotDefined=Parámetro %s no definido -# ErrorUnknown=Unknown error +ErrorUnknown=Error desconocido ErrorSQL=Error de SQL ErrorLogoFileNotFound=El archivo logo '%s' no se encuentra ErrorGoToGlobalSetup=Vaya a la Configuración ' Empresa/Institución ' para corregir @@ -60,8 +60,8 @@ ErrorNoSocialContributionForSellerCountry=Error, ningún tipo de carga social de ErrorFailedToSaveFile=Error, el registro del archivo falló. ErrorOnlyPngJpgSupported=Error, solamente se soportan los formatos de imagen jpg y png. ErrorImageFormatNotSupported=Su PHP no soporta las funciones de conversión de este formato de imagen. -# SetDate=Set date -# SelectDate=Select a date +SetDate=Fijar fecha +SelectDate=Seleccione una fecha SeeAlso=Ver también %s BackgroundColorByDefault=Color de fondo FileWasNotUploaded=Un archivo ha sido seleccionado para adjuntarlo, pero aún no se ha subido. Haga clic en "Adjuntar este archivo" para ello. @@ -669,7 +669,7 @@ OriginFileName=Nombre del archivo origen SetDemandReason=Definir origen ViewPrivateNote=Ver notas XMoreLines=%s línea(s) ocultas -# PublicUrl=Public URL +PublicUrl=URL pública # Week day Monday=Lunes diff --git a/htdocs/langs/es_ES/opensurvey.lang b/htdocs/langs/es_ES/opensurvey.lang index 71c9121525e..799274ccf14 100644 --- a/htdocs/langs/es_ES/opensurvey.lang +++ b/htdocs/langs/es_ES/opensurvey.lang @@ -1,18 +1,18 @@ # Dolibarr language file - Source file is en_US - opensurvey -# Survey=Poll -# Surveys=Polls -# OrganizeYourMeetingEasily=Organize your meetings and polls easily. First select type of poll... -# NewSurvey=New poll -# NoSurveysInDatabase=%s poll(s) into database. -# OpenSurveyArea=Polls area -# AddACommentForPoll=You can add a comment into poll... +Survey=Encuesta +Surveys=Encuestas +OrganizeYourMeetingEasily=Organice sus reuniones y encuestas fácilmente. Primero seleccione el tipo de encuesta... +NewSurvey=Nueva encuesta +NoSurveysInDatabase=$s encuesta(s) en la base de datos. +OpenSurveyArea=Área encuestas +AddACommentForPoll=Puede añadir un comentario en la encuesta... AddComment=Añadir comentario CreatePoll=Crear encuesta PollTitle=Título de la encuesta -# ToReceiveEMailForEachVote=Receive an email for each vote +ToReceiveEMailForEachVote=Recibir un e-mail por cada voto TypeDate=Tipo fecha TypeClassic=Tipo estándar -# OpenSurveyStep2=Select your dates amoung the free days (grey). The selected days are green. You can unselect a day previously selected by clicking again on it +OpenSurveyStep2=Seleccione sus fechas entre los días libres (en gris). Los días seleccionados son de color verde. Puede cancelar la selección de un día previamente seleccionado haciendo clic de nuevo sobre el mismo RemoveAllDays=Eliminar todos los días CopyHoursOfFirstDay=Copiar horas del primer día RemoveAllHours=Eliminar todas las horas @@ -24,10 +24,10 @@ OpenSurveyHowTo=Si está de acuerdo para votar en esta encuesta, tiene que dar s CommentsOfVoters=Comentarios de los votantes ConfirmRemovalOfPoll=¿Está seguro de que desea eliminar esta encuesta (y todos los votos)? RemovePoll=Eliminar encuesta -# UrlForSurvey=URL to communicate to get a direct access to poll +UrlForSurvey=URL para indicar el acceso directo a la encuesta PollOnChoice=Está creando una encuesta con multi-opciones. Primero introduzca todas las opciones posibles para esta encuesta: -# CreateSurveyDate=Create a date poll -# CreateSurveyStandard=Create a standard poll +CreateSurveyDate=Crear una encuesta de fecha +CreateSurveyStandard=Crear una encuesta estandard CheckBox=Checkbox simple YesNoList=Lista (vacío/sí/no) PourContreList=Lista (vacío/a favor/en contra) @@ -35,7 +35,7 @@ AddNewColumn=Añadir nueva columna TitleChoice=Título de la opción ExportSpreadsheet=Exportar resultados a una hoja de cálculo ExpireDate=Fecha límite -# NbOfSurveys=Number of polls +NbOfSurveys=Número de encuestas NbOfVoters=Núm. de votantes SurveyResults=Resultados PollAdminDesc=Está autorizado para cambiar todas las líneas de la encuesta con el botón "Editar". Puede, también, eliminar una columna o una línea con %s. También puede añadir una nueva columna con %s. diff --git a/htdocs/langs/es_ES/other.lang b/htdocs/langs/es_ES/other.lang index ea2353c74a7..ead720384db 100644 --- a/htdocs/langs/es_ES/other.lang +++ b/htdocs/langs/es_ES/other.lang @@ -22,7 +22,7 @@ Notify_WITHDRAW_CREDIT=Abono domiciliación Notify_WITHDRAW_EMIT=Emisión domiciliación Notify_ORDER_SENTBYMAIL=Envío pedido de cliente por e-mail Notify_COMPANY_CREATE=Creación tercero -# Notify_COMPANY_COMPANY_SENTBYMAIL=Mails sent from third party card +Notify_COMPANY_COMPANY_SENTBYMAIL=E-mail enviado desde la ficha del tercero Notify_PROPAL_SENTBYMAIL=Envío presupuesto por e-mail Notify_ORDER_SENTBYMAIL=Envío pedido de cliente por e-mail Notify_BILL_PAYED=Cobro factura a cliente @@ -41,7 +41,7 @@ Notify_MEMBER_VALIDATE=Validación miembro Notify_MEMBER_SUBSCRIPTION=Afiliación miembro Notify_MEMBER_RESILIATE=Baja miembro Notify_MEMBER_DELETE=Eliminación miembro -# Notify_PROJECT_CREATE=Project creation +Notify_PROJECT_CREATE=Creación de proyecto NbOfAttachedFiles=Número archivos/documentos adjuntos TotalSizeOfAttachedFiles=Tamaño total de los archivos/documentos adjuntos MaxSize=Tamaño máximo diff --git a/htdocs/langs/es_ES/projects.lang b/htdocs/langs/es_ES/projects.lang index 6514c518246..32b46166f7c 100644 --- a/htdocs/langs/es_ES/projects.lang +++ b/htdocs/langs/es_ES/projects.lang @@ -33,9 +33,9 @@ TimesSpent=Tiempos dedicados RefTask=Ref. tarea LabelTask=Etiqueta tarea TaskTimeSpent=Tiempo dedicado en tareas -# TaskTimeUser=User -# TaskTimeNote=Note -# TaskTimeDate=Date +TaskTimeUser=Usuario +TaskTimeNote=Nota +TaskTimeDate=Fecha NewTimeSpent=Nuevo tiempo dedicado MyTimeSpent=Mi tiempo dedicado MyTasks=Mis tareas diff --git a/htdocs/langs/es_ES/salaries.lang b/htdocs/langs/es_ES/salaries.lang index 159ac1dd9cb..d70ff842f51 100644 --- a/htdocs/langs/es_ES/salaries.lang +++ b/htdocs/langs/es_ES/salaries.lang @@ -1,6 +1,6 @@ # Dolibarr language file - Source file is en_US - users -# Employee=Employee -# NewSalaryPayment=New salary payment -# SalaryPayment=Salary payment -# SalariesPayments=Salaries payments -# ShowSalaryPayment=Show salary payment +Employee=Empleado +NewSalaryPayment=Nuevo pago +SalaryPayment=Pago de salario +SalariesPayments=Pagos de salarios +ShowSalaryPayment=Ver pago From 334455f8ddb6f16c7942361c13aeaf7ff95b7205 Mon Sep 17 00:00:00 2001 From: Juanjo Menent Date: Sat, 22 Mar 2014 10:28:24 +0100 Subject: [PATCH 3/4] Update es_ES from transifex --- htdocs/langs/es_ES/admin.lang | 12 ++++++------ htdocs/langs/es_ES/companies.lang | 2 +- htdocs/langs/es_ES/products.lang | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/htdocs/langs/es_ES/admin.lang b/htdocs/langs/es_ES/admin.lang index 701f03b26d5..c7d86713db6 100644 --- a/htdocs/langs/es_ES/admin.lang +++ b/htdocs/langs/es_ES/admin.lang @@ -109,8 +109,8 @@ ParameterInDolibarr=Variable %s LanguageParameter=Variable idioma %s LanguageBrowserParameter=Variable %s LocalisationDolibarrParameters=Parámetros de localización -# ClientTZ=Client Time Zone (user) -# ClientHour=Client time (user) +ClientTZ=Zona horaria cliente (usuario) +ClientHour=Hora cliente (usuario) OSTZ=Zona horaria Servidor SO PHPTZ=Zona horaria Servidor PHP PHPServerOffsetWithGreenwich=Offset servidor con Greenwich (segundos) @@ -512,8 +512,8 @@ Module50200Name= Paypal Module50200Desc= Módulo para proporcionar un pago en línea con tarjeta de crédito mediante Paypal Module54000Name=PrintIPP Module54000Desc=Imprimir vía impresora Cups IPP. -# Module55000Name=Open Poll -# Module55000Desc=Module to make online polls (like Doodle, Studs, Rdvz, ...) +Module55000Name=OpenSurvey +Module55000Desc=Módulo para realizar encuestas online (Como Doodle, Studs, Rdvz, etc.) Module59000Name=Márgenes Module59000Desc=Módulo para gestionar los márgenes de beneficio Module60000Name=Comisiones @@ -732,8 +732,8 @@ Permission50101=Usar TPV Permission50201=Consultar las transacciones Permission50202=Importar las transacciones Permission54001=Imprimir -# Permission55001=Read polls -# Permission55002=Create/modify polls +Permission55001=Leer encuestas +Permission55002=Crear/modificar encuestas Permission59001=Leer márgenes comerciales Permission59002=Definir márgenes comerciales DictionaryCompanyType=Tipos de terceros diff --git a/htdocs/langs/es_ES/companies.lang b/htdocs/langs/es_ES/companies.lang index 819d317f6ce..68c151ef549 100644 --- a/htdocs/langs/es_ES/companies.lang +++ b/htdocs/langs/es_ES/companies.lang @@ -405,4 +405,4 @@ OutstandingBill=Importe máximo para facturas pendientes OutstandingBillReached=Importe máximo alcanzado MonkeyNumRefModelDesc=Devuelve un número bajo el formato %syymm-nnnn para los códigos de clientes y %syymm-nnnn para los códigos de los proveedores, donde yy es el año, mm el mes y nnnn un contador secuencial sin ruptura y sin volver a 0. LeopardNumRefModelDesc=Código de cliente/proveedor libre sin verificación. Puede ser modificado en cualquier momento. -# ManagingDirectors=Manager(s) name (CEO, director, president...) +ManagingDirectors=Administrador(es) (CEO, director, presidente, etc.) diff --git a/htdocs/langs/es_ES/products.lang b/htdocs/langs/es_ES/products.lang index 659a327c322..b2782f4ad12 100644 --- a/htdocs/langs/es_ES/products.lang +++ b/htdocs/langs/es_ES/products.lang @@ -168,7 +168,7 @@ CloneProduct=Clonar producto/servicio ConfirmCloneProduct=¿Está seguro de querer clonar el producto o servicio %s? CloneContentProduct=Clonar solamente la información general del producto/servicio ClonePricesProduct=Clonar la información general y los precios -# CloneCompositionProduct=Clone virtual product/services +CloneCompositionProduct=Clonar producto/servicio virtual ProductIsUsed=Este producto es utilizado NewRefForClone=Ref. del nuevo producto/servicio CustomerPrices=Precios clientes From d98a5d4c6f1dcf377ecafa1e8706c1ea5d9dd8b5 Mon Sep 17 00:00:00 2001 From: Juanjo Menent Date: Sat, 22 Mar 2014 13:00:23 +0100 Subject: [PATCH 4/4] Fix: [ bug #1306 ] Fatal error when adding an external calendar --- ChangeLog | 1 + htdocs/admin/agenda_extsites.php | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index d264a72cd74..e221e29f097 100644 --- a/ChangeLog +++ b/ChangeLog @@ -114,6 +114,7 @@ Fix: [ bug #1240 ] traduction. Fix: [ bug #1238 ] When creating accompte with a %, free product are used for calculation. Fix: [ bug #1280 ] service with not end of date was tagged as expired. Fix: [ bug #1295 ] Error when creating an agenda extrafield with a number as reference +Fix: [ bug #1306 ] Fatal error when adding an external calendar New: Added es_CL language ***** ChangeLog for 3.5 compared to 3.4.* ***** diff --git a/htdocs/admin/agenda_extsites.php b/htdocs/admin/agenda_extsites.php index 9a3a95f924c..6976fef4882 100644 --- a/htdocs/admin/agenda_extsites.php +++ b/htdocs/admin/agenda_extsites.php @@ -1,6 +1,6 @@ - * Copyright (C) 2011-2013 Juanjo Menent + * Copyright (C) 2011-2014 Juanjo Menent * * 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 @@ -28,6 +28,7 @@ require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/agenda.lib.php'; require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php'; +require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php'; if (!$user->admin) accessforbidden(); @@ -228,4 +229,4 @@ dol_fiche_end(); llxFooter(); $db->close(); -?> \ No newline at end of file +?>