mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 09:59:48 -05:00
* Ensuring DisplayValue is set to a value when null * Changes that *actually do something!* * Changes that *actually do something!*
299 lines
12 KiB
Plaintext
299 lines
12 KiB
Plaintext
# String resource file
|
|
#
|
|
# When processed by the String Resource Tool, this file generates
|
|
# both a .CS and a .RESX file with the same name as the file.
|
|
# The .CS file contains a class which can be used to access these
|
|
# string resources, including the ability to format in
|
|
# parameters, which are identified with the .NET {x} format
|
|
# (see String.Format help).
|
|
#
|
|
# Comments below assume the file name is SR.strings.
|
|
#
|
|
# Lines starting with a semicolon ";" are also treated as comments, but
|
|
# in a future version they will be extracted and made available in LocStudio
|
|
# Put your comments to localizers _before_ the string they apply to.
|
|
#
|
|
# SMO build specific comment
|
|
# after generating the .resx file, run srgen on it and get the .resx file
|
|
# please remember to also check that .resx in, along with the
|
|
# .strings and .cs files
|
|
|
|
[strings]
|
|
|
|
############################################################################
|
|
# Connection Service
|
|
|
|
ConnectionServiceConnectErrorNullParams = Connection parameters cannot be null
|
|
|
|
ConnectionServiceListDbErrorNullOwnerUri = OwnerUri cannot be null or empty
|
|
|
|
ConnectionServiceListDbErrorNotConnected(string uri) = SpecifiedUri '{0}' does not have existing connection
|
|
|
|
ConnectionServiceDbErrorDefaultNotConnected(string uri) = Specified URI '{0}' does not have a default connection
|
|
|
|
ConnectionServiceConnStringInvalidAuthType(string authType) = Invalid value '{0}' for AuthenticationType. Valid values are 'Integrated' and 'SqlLogin'.
|
|
|
|
ConnectionServiceConnStringInvalidIntent(string intent) = Invalid value '{0}' for ApplicationIntent. Valid values are 'ReadWrite' and 'ReadOnly'.
|
|
|
|
ConnectionServiceConnectionCanceled = Connection canceled
|
|
|
|
### Connection Params Validation Errors
|
|
|
|
ConnectionParamsValidateNullOwnerUri = OwnerUri cannot be null or empty
|
|
|
|
ConnectionParamsValidateNullConnection = Connection details object cannot be null
|
|
|
|
ConnectionParamsValidateNullServerName = ServerName cannot be null or empty
|
|
|
|
ConnectionParamsValidateNullSqlAuth(string component) = {0} cannot be null or empty when using SqlLogin authentication
|
|
|
|
############################################################################
|
|
# Formatter
|
|
|
|
ErrorUnexpectedCodeObjectType = Cannot convert SqlCodeObject Type {0} to Type {1}
|
|
|
|
############################################################################
|
|
# Query Execution Service
|
|
|
|
### Cancel Request
|
|
|
|
QueryServiceCancelAlreadyCompleted = The query has already completed, it cannot be cancelled
|
|
|
|
QueryServiceCancelDisposeFailed = Query successfully cancelled, failed to dispose query. Owner URI not found.
|
|
|
|
QueryServiceQueryCancelled = Query was canceled by user
|
|
|
|
### Subset Request
|
|
|
|
QueryServiceSubsetBatchNotCompleted = The batch has not completed, yet
|
|
|
|
QueryServiceSubsetBatchOutOfRange = Batch index cannot be less than 0 or greater than the number of batches
|
|
|
|
QueryServiceSubsetResultSetOutOfRange = Result set index cannot be less than 0 or greater than the number of result sets
|
|
|
|
### Data Reader Exceptions
|
|
|
|
QueryServiceDataReaderByteCountInvalid = Maximum number of bytes to return must be greater than zero
|
|
|
|
QueryServiceDataReaderCharCountInvalid = Maximum number of chars to return must be greater than zero
|
|
|
|
QueryServiceDataReaderXmlCountInvalid = Maximum number of XML bytes to return must be greater than zero
|
|
|
|
### File Stream Wrapper Exceptions
|
|
|
|
QueryServiceFileWrapperWriteOnly = Access method cannot be write-only
|
|
|
|
QueryServiceFileWrapperNotInitialized = FileStreamWrapper must be initialized before performing operations
|
|
|
|
QueryServiceFileWrapperReadOnly = This FileStreamWrapper cannot be used for writing
|
|
|
|
### Query Request
|
|
|
|
QueryServiceAffectedOneRow = (1 row affected)
|
|
|
|
QueryServiceAffectedRows(long rows) = ({0} rows affected)
|
|
|
|
QueryServiceCompletedSuccessfully = Commands completed successfully.
|
|
|
|
QueryServiceErrorFormat(int msg, int lvl, int state, int line, string newLine, string message) = Msg {0}, Level {1}, State {2}, Line {3}{4}{5}
|
|
|
|
QueryServiceQueryFailed(string message) = Query failed: {0}
|
|
|
|
QueryServiceColumnNull = (No column name)
|
|
|
|
QueryServiceCellNull = NULL
|
|
|
|
QueryServiceRequestsNoQuery = The requested query does not exist
|
|
|
|
QueryServiceQueryInvalidOwnerUri = This editor is not connected to a database
|
|
|
|
QueryServiceQueryInProgress = A query is already in progress for this editor session. Please cancel this query or wait for its completion.
|
|
|
|
QueryServiceMessageSenderNotSql = Sender for OnInfoMessage event must be a SqlConnection
|
|
|
|
QueryServiceResultSetAddNoRows = Cannot add row to result buffer, data reader does not contain rows
|
|
|
|
### Save As Requests
|
|
|
|
QueryServiceSaveAsResultSetNotComplete = Result cannot be saved until query execution has completed
|
|
|
|
QueryServiceSaveAsMiscStartingError = Internal error occurred while starting save task
|
|
|
|
QueryServiceSaveAsInProgress = A save request to the same path is in progress
|
|
|
|
QueryServiceSaveAsFail(string fileName, string message) = Failed to save {0}: {1}
|
|
|
|
### MISC
|
|
|
|
QueryServiceResultSetNotRead = Cannot read subset unless the results have been read from the server
|
|
|
|
QueryServiceResultSetStartRowOutOfRange = Start row cannot be less than 0 or greater than the number of rows in the result set
|
|
|
|
QueryServiceResultSetRowCountOutOfRange = Row count must be a positive integer
|
|
|
|
QueryServiceResultSetNoColumnSchema = Could not retrieve column schema for result set
|
|
|
|
QueryServiceExecutionPlanNotFound = Could not retrieve an execution plan from the result set
|
|
|
|
############################################################################
|
|
# Language Service
|
|
|
|
PeekDefinitionAzureError(string errorMessage) = This feature is currently not supported on Azure SQL DB and Data Warehouse: {0}
|
|
|
|
PeekDefinitionError(string errorMessage) = An unexpected error occurred during Peek Definition execution: {0}
|
|
|
|
PeekDefinitionNoResultsError = No results were found.
|
|
|
|
PeekDefinitionDatabaseError = No database object was retrieved.
|
|
|
|
PeekDefinitionNotConnectedError = Please connect to a server.
|
|
|
|
PeekDefinitionTimedoutError = Operation timed out.
|
|
|
|
PeekDefinitionTypeNotSupportedError = This object type is currently not supported by this feature.
|
|
|
|
ErrorEmptyStringReplacement = Replacement of an empty string by an empty string.
|
|
|
|
############################################################################
|
|
# Workspace Service
|
|
|
|
WorkspaceServicePositionLineOutOfRange = Position is outside of file line range
|
|
|
|
WorkspaceServicePositionColumnOutOfRange(int line) = Position is outside of column range for line {0}
|
|
|
|
WorkspaceServiceBufferPositionOutOfOrder(int sLine, int sCol, int eLine, int eCol) = Start position ({0}, {1}) must come before or be equal to the end position ({2}, {3})
|
|
|
|
############################################################################
|
|
# Edit Data Service
|
|
|
|
EditDataObjectNotFound = Table or view requested for edit could not be found
|
|
|
|
EditDataSessionNotFound = Edit session does not exist.
|
|
|
|
EditDataSessionAlreadyExists = Edit session already exists.
|
|
|
|
EditDataSessionNotInitialized = Edit session has not been initialized
|
|
|
|
EditDataSessionAlreadyInitialized = Edit session has already been initialized
|
|
|
|
EditDataSessionAlreadyInitializing = Edit session has already been initialized or is in the process of initializing
|
|
|
|
EditDataFilteringNegativeLimit = Result limit cannot be negative
|
|
|
|
EditDataUnsupportedObjectType(string typeName) = Database object {0} cannot be used for editing.
|
|
|
|
EditDataQueryFailed = Query execution failed, see messages for details
|
|
|
|
EditDataQueryNotCompleted = Query has not completed execution
|
|
|
|
EditDataQueryImproperResultSets = Query did not generate exactly one result set
|
|
|
|
EditDataFailedAddRow = Failed to add new row to update cache
|
|
|
|
EditDataRowOutOfRange = Given row ID is outside the range of rows in the edit cache
|
|
|
|
EditDataUpdatePending = An update is already pending for this row and must be reverted first
|
|
|
|
EditDataUpdateNotPending = Given row ID does not have pending update
|
|
|
|
EditDataColumnUpdateNotPending = Give column ID does not have pending update
|
|
|
|
EditDataObjectMetadataNotFound = Table or view metadata could not be found
|
|
|
|
EditDataInvalidFormatBinary = Invalid format for binary column
|
|
|
|
EditDataInvalidFormatBoolean = Allowed values for boolean columns are 0, 1, "true", or "false"
|
|
|
|
EditDataCreateScriptMissingValue = A required cell value is missing
|
|
|
|
EditDataDeleteSetCell = A delete is pending for this row, a cell update cannot be applied.
|
|
|
|
EditDataColumnIdOutOfRange = Column ID must be in the range of columns for the query
|
|
|
|
EditDataColumnCannotBeEdited = Column cannot be edited
|
|
|
|
EditDataColumnNoKeyColumns = No key columns were found
|
|
|
|
EditDataScriptFilePathNull = An output filename must be provided
|
|
|
|
EditDataCommitInProgress = A commit task is in progress. Please wait for completion.
|
|
|
|
EditDataComputedColumnPlaceholder = <TBD>
|
|
|
|
EditDataInitializeInProgress = Another edit data initialize is in progress for this owner URI. Please wait for completion.
|
|
|
|
EditDataTimeOver24Hrs = TIME column values must be between 00:00:00.0000000 and 23:59:59.9999999
|
|
|
|
EditDataNullNotAllowed = NULL is not allowed for this column
|
|
|
|
############################################################################
|
|
# DacFx Resources
|
|
|
|
EE_BatchSqlMessageNoProcedureInfo = Msg {0}, Level {1}, State {2}, Line {3}
|
|
|
|
EE_BatchSqlMessageWithProcedureInfo = Msg {0}, Level {1}, State {2}, Procedure {3}, Line {4}
|
|
|
|
EE_BatchSqlMessageNoLineInfo = Msg {0}, Level {1}, State {2}
|
|
|
|
EE_BatchError_Exception = An error occurred while the batch was being processed. The error message is: {0}
|
|
|
|
EE_BatchExecutionInfo_RowsAffected = ({0} row(s) affected)
|
|
|
|
EE_ExecutionNotYetCompleteError = The previous execution is not yet complete.
|
|
|
|
EE_ScriptError_Error = A scripting error occurred.
|
|
|
|
EE_ScriptError_ParsingSyntax = Incorrect syntax was encountered while {0} was being parsed.
|
|
|
|
EE_ScriptError_FatalError = A fatal error occurred.
|
|
|
|
EE_ExecutionInfo_FinalizingLoop = Execution completed {0} times...
|
|
|
|
EE_ExecutionInfo_QueryCancelledbyUser = You cancelled the query.
|
|
|
|
EE_BatchExecutionError_Halting = An error occurred while the batch was being executed.
|
|
|
|
EE_BatchExecutionError_Ignoring = An error occurred while the batch was being executed, but the error has been ignored.
|
|
|
|
EE_ExecutionInfo_InitilizingLoop = Starting execution loop of {0} times...
|
|
|
|
EE_ExecutionError_CommandNotSupported = Command {0} is not supported.
|
|
|
|
EE_ExecutionError_VariableNotFound = The variable {0} could not be found.
|
|
|
|
BatchParserWrapperExecutionEngineError = SQL Execution error: {0}
|
|
|
|
BatchParserWrapperExecutionError = Batch parser wrapper execution: {0} found... at line {1}: {2} Description: {3}
|
|
|
|
BatchParserWrapperExecutionEngineBatchMessage = Batch parser wrapper execution engine batch message received: Message: {0} Detailed message: {1}
|
|
|
|
BatchParserWrapperExecutionEngineBatchResultSetProcessing = Batch parser wrapper execution engine batch ResultSet processing: DataReader.FieldCount: {0} DataReader.RecordsAffected: {1}
|
|
|
|
BatchParserWrapperExecutionEngineBatchResultSetFinished = Batch parser wrapper execution engine batch ResultSet finished.
|
|
|
|
BatchParserWrapperExecutionEngineBatchCancelling = Canceling batch parser wrapper batch execution.
|
|
|
|
EE_ScriptError_Warning = Scripting warning.
|
|
|
|
TroubleshootingAssistanceMessage = For more information about this error, see the troubleshooting topics in the product documentation.
|
|
|
|
BatchParser_CircularReference = File '{0}' recursively included.
|
|
|
|
BatchParser_CommentNotTerminated = Missing end comment mark '*/'.
|
|
|
|
BatchParser_StringNotTerminated = Unclosed quotation mark after the character string.
|
|
|
|
BatchParser_IncorrectSyntax = Incorrect syntax was encountered while parsing '{0}'.
|
|
|
|
BatchParser_VariableNotDefined = Variable {0} is not defined.
|
|
|
|
############################################################################
|
|
# Workspace Service
|
|
|
|
TestLocalizationConstant = EN_LOCALIZATION
|
|
|
|
############################################################################
|
|
# Utilities
|
|
|
|
SqlScriptFormatterDecimalMissingPrecision = Decimal column is missing numeric precision or numeric scale
|