Club Delphi  
    Paypal   FTP   CCD     Buscar   Trucos   Trabajo   Foros

Retroceder   Foros Club Delphi > Principal > Varios
Registrarse FAQ Miembros Calendario Guía de estilo Buscar Temas de Hoy Marcar Foros Como Leídos

Coloboración Paypal con ClubDelphi

 
 
Herramientas Buscar en Tema Desplegado
  #2  
Antiguo 12-05-2014
Avatar de duilioisola
[duilioisola] duilioisola is offline
Miembro Premium
 
Registrado: ago 2007
Ubicación: Barcelona, España
Posts: 1.806
Poder: 22
duilioisola Es un diamante en brutoduilioisola Es un diamante en brutoduilioisola Es un diamante en bruto
Eso debe ser porque habrás traducido algún nombre de campo o tabla de la base de datos.
Supongo que el error debe ser un poco más específico y te ayudará a saber cuál es exactamente.

Si utilizas la opción de GNUGettext deberás poner en tu aplicación que ignore ciertos componentes. Estos son algunos de los que utilizo en mis aplicaciones.

Código Delphi [-]
procedure InicializaIdioma;
begin
  // Add extra domain for runtime library translations
  AddDomainForResourceString('delphi');

  // Force program to use CATALA instead of the current Windows settings
  // UseLanguage ('ca');

   // Put ignores on the properties that cannot be translated
  TP_GlobalIgnoreClass(TDataSource);
  TP_GlobalIgnoreClass(TFont);
  TP_GlobalIgnoreClass(TParam);

  // FastReport
  TP_GlobalIgnoreClass(TfrDBDataSet);
[...]
  TP_GlobalIgnoreClassProperty(TForm, 'HelpFile');
  TP_IgnoreClassProperty(TWebBrowser, 'StatusText');

  TP_GlobalIgnoreClassProperty(TAction, 'Category');
  TP_GlobalIgnoreClassProperty(TControl, 'HelpKeyword');
[...]
  TP_GlobalIgnoreClassProperty(TFieldDef, 'Name');
  TP_GlobalIgnoreClassProperty(TColumn, 'FieldName');
[...]
  TP_GlobalIgnoreClassProperty(TDBComboBox, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBComboBox, 'Name');
  TP_GlobalIgnoreClassProperty(TDBCheckBox, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBCheckBox, 'Name');
  TP_GlobalIgnoreClassProperty(TDBEdit, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBEdit, 'Name');
  TP_GlobalIgnoreClassProperty(TDBImage, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBImage, 'Name');
  TP_GlobalIgnoreClassProperty(TDBListBox, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBListBox, 'Name');
  TP_GlobalIgnoreClassProperty(TDBLookupControl, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBLookupControl, 'KeyField');
  TP_GlobalIgnoreClassProperty(TDBLookupControl, 'ListField');
  TP_GlobalIgnoreClassProperty(TDBLookupControl, 'Name');
  TP_GlobalIgnoreClassProperty(TDBMemo, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBMemo, 'Name');
  TP_GlobalIgnoreClassProperty(TDBRadioGroup, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBRadioGroup, 'Name');
  TP_GlobalIgnoreClassProperty(TDBRadioGroup, 'Values');
  TP_GlobalIgnoreClassProperty(TDBRichEdit, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBRichEdit, 'Name');
  TP_GlobalIgnoreClassProperty(TDBText, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBText, 'Name');

  TP_GlobalIgnoreClassProperty(TDBComboBoxValue, 'DataField');
  TP_GlobalIgnoreClassProperty(TDBComboBoxValue, 'DataSource');
  TP_GlobalIgnoreClassProperty(TDBComboBoxValue, 'Name');
[...]
  TP_GlobalIgnoreClass(TFIBQuery);
  TP_GlobalIgnoreClass(TFIBTableSet);
  TP_GlobalIgnoreClass(TFIBDataSet);
[...]
  TP_GlobalIgnoreClass(TFIBQuery);
  TP_GlobalIgnoreClass(TFIBTableSet);
  TP_GlobalIgnoreClass(TFIBDataSet);
[...]
  TP_GlobalIgnoreClassProperty(TField, 'DefaultExpression');
  TP_GlobalIgnoreClassProperty(TField, 'FieldName');
  TP_GlobalIgnoreClassProperty(TField, 'KeyFields');
  TP_GlobalIgnoreClassProperty(TField, 'DisplayName');
  TP_GlobalIgnoreClassProperty(TField, 'LookupKeyFields');
  TP_GlobalIgnoreClassProperty(TField, 'LookupResultField');
  TP_GlobalIgnoreClassProperty(TField, 'Origin');
  TP_GlobalIgnoreClassProperty(TField, 'CustomConstraint');
  TP_GlobalIgnoreClassProperty(TField, 'ImportedConstraint');
  TP_GlobalIgnoreClassProperty(TField, 'ConstraintErrorMessage');
  TP_GlobalIgnoreClassProperty(TField, 'EditMask');
[...]
Responder Con Cita
 


Herramientas Buscar en Tema
Buscar en Tema:

Búsqueda Avanzada
Desplegado

Normas de Publicación
no Puedes crear nuevos temas
no Puedes responder a temas
no Puedes adjuntar archivos
no Puedes editar tus mensajes

El código vB está habilitado
Las caritas están habilitado
Código [IMG] está habilitado
Código HTML está deshabilitado
Saltar a Foro

Temas Similares
Tema Autor Foro Respuestas Último mensaje
Multilenguaje tarco35 Varios 6 17-07-2012 00:01:03
Multilenguaje Yolen PHP 4 18-09-2008 20:03:54
Sistemas multilenguaje rcuevas PHP 11 16-01-2007 18:19:38
Problema Con Programa Multilenguaje sammyrano Varios 3 15-09-2006 18:38:27
Multilenguaje en Delphi 7 Athalon Varios 10 23-11-2003 14:17:42


La franja horaria es GMT +2. Ahora son las 23:24:38.


Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.
Traducción al castellano por el equipo de moderadores del Club Delphi
Copyright 1996-2007 Club Delphi