@@ -830,6 +830,7 @@ export namespace Integrations {
830830 export const save = l10n . t ( 'Save' ) ;
831831 export const requiredField = l10n . t ( '*' ) ;
832832 export const optionalField = l10n . t ( '(optional)' ) ;
833+ export const unnamedIntegration = ( id : string ) => l10n . t ( 'Unnamed Integration ({0})' , id ) ;
833834
834835 // Integration type labels
835836 export const postgresTypeLabel = l10n . t ( 'PostgreSQL' ) ;
@@ -850,7 +851,6 @@ export namespace Integrations {
850851 export const postgresPasswordLabel = l10n . t ( 'Password' ) ;
851852 export const postgresPasswordPlaceholder = l10n . t ( '••••••••' ) ;
852853 export const postgresSslLabel = l10n . t ( 'Use SSL' ) ;
853- export const postgresUnnamedIntegration = ( id : string ) => l10n . t ( 'Unnamed PostgreSQL Integration ({0})' , id ) ;
854854
855855 // BigQuery form strings
856856 export const bigQueryNameLabel = l10n . t ( 'Name (optional)' ) ;
@@ -861,7 +861,6 @@ export namespace Integrations {
861861 export const bigQueryCredentialsPlaceholder = l10n . t ( '{"type": "service_account", ...}' ) ;
862862 export const bigQueryCredentialsRequired = l10n . t ( 'Credentials are required' ) ;
863863 export const bigQueryInvalidJson = ( message : string ) => l10n . t ( 'Invalid JSON: {0}' , message ) ;
864- export const bigQueryUnnamedIntegration = ( id : string ) => l10n . t ( 'Unnamed BigQuery Integration ({0})' , id ) ;
865864
866865 // Snowflake form strings
867866 export const snowflakeNameLabel = l10n . t ( 'Name (optional)' ) ;
@@ -899,7 +898,6 @@ export namespace Integrations {
899898 export const snowflakeRolePlaceholder = l10n . t ( '' ) ;
900899 export const snowflakeWarehouseLabel = l10n . t ( 'Warehouse (optional)' ) ;
901900 export const snowflakeWarehousePlaceholder = l10n . t ( '' ) ;
902- export const snowflakeUnnamedIntegration = ( id : string ) => l10n . t ( 'Unnamed Snowflake Integration ({0})' , id ) ;
903901}
904902
905903export namespace Deprecated {
0 commit comments