/
dev-npgsql
/
npgsql
Обзор
Документация
Войти
/
dev-npgsql
/
npgsql
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
v10.0.0
src/Npgsql/Properties/NpgsqlStrings.resx
113 строк
8 KB
Kirk Brauer
Cube support (#3867)
03 ноя 2025, 18:03
Не верифицирован
03 ноя 2025, 18:03
9163444
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <root> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:element name="root" msdata:IsDataSet="true"> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>1.3</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="CannotUseSslVerifyWithCustomValidationCallback" xml:space="preserve"> <value>SslMode.{0} cannot be used in conjunction with SslClientAuthenticationOptionsCallback overwriting RemoteCertificateValidationCallback; when registering a validation callback, perform whatever validation you require in that callback.</value> </data> <data name="CannotUseSslRootCertificateWithCustomValidationCallback" xml:space="preserve"> <value>RootCertificate cannot be used in conjunction with SslClientAuthenticationOptionsCallback overwriting RemoteCertificateValidationCallback; when registering a validation callback, perform whatever validation you require in that callback.</value> </data> <data name="TransportSecurityDisabled" xml:space="preserve"> <value>Transport security hasn't been enabled; please call {0} on NpgsqlSlimDataSourceBuilder to enable it.</value> </data> <data name="IntegratedSecurityDisabled" xml:space="preserve"> <value>Integrated security hasn't been enabled; please call {0} on NpgsqlSlimDataSourceBuilder to enable it.</value> </data> <data name="NoMultirangeTypeFound" xml:space="preserve"> <value>No multirange type could be found in the database for subtype {0}.</value> </data> <data name="NotSupportedOnDataSourceCommand" xml:space="preserve"> <value>Connection and transaction access is not supported on commands created from DbDataSource.</value> </data> <data name="NotSupportedOnDataSourceBatch" xml:space="preserve"> <value>Connection and transaction access is not supported on batches created from DbDataSource.</value> </data> <data name="CannotSetBothPasswordProviderAndPassword" xml:space="preserve"> <value>When registering a password provider, a password or password file may not be set.</value> </data> <data name="CannotSetMultiplePasswordProviderKinds" xml:space="preserve"> <value>Multiple kinds of password providers were found, only one kind may be configured per DbDataSource.</value> </data> <data name="SyncAndAsyncPasswordProvidersRequired" xml:space="preserve"> <value>Both sync and async password providers must be provided.</value> </data> <data name="PasswordProviderMissing" xml:space="preserve"> <value>The right type of password provider (sync or async) was not found.</value> </data> <data name="ArgumentMustBePositive" xml:space="preserve"> <value>'{0}' must be positive.</value> </data> <data name="CannotReadIntervalWithMonthsAsTimeSpan" xml:space="preserve"> <value>Cannot read interval values with non-zero months as TimeSpan, since that type doesn't support months. Consider using NodaTime Period which better corresponds to PostgreSQL interval, or read the value as NpgsqlInterval, or transform the interval to not contain months or years in PostgreSQL before reading it.</value> </data> <data name="PositionalParameterAfterNamed" xml:space="preserve"> <value>When using CommandType.StoredProcedure, all positional parameters must come before named parameters.</value> </data> <data name="CannotReadInfinityValue" xml:space="preserve"> <value>Cannot read infinity value since Npgsql.DisableDateTimeInfinityConversions is enabled.</value> </data> <data name="SyncAndAsyncConnectionInitializersRequired" xml:space="preserve"> <value>Both sync and async connection initializers must be provided.</value> </data> <data name="CannotUseValidationRootCertificateCallbackWithCustomValidationCallback" xml:space="preserve"> <value>ValidationRootCertificateCallback cannot be used in conjunction with SslClientAuthenticationOptionsCallback overwriting RemoteCertificateValidationCallback; when registering a validation callback, perform whatever validation you require in that callback.</value> </data> <data name="RecordsNotEnabled" xml:space="preserve"> <value>Could not read a PostgreSQL record. If you're attempting to read a record as a .NET tuple, call '{0}' on '{1}' or NpgsqlConnection.GlobalTypeMapper (see https://www.npgsql.org/doc/types/basic.html and the 8.0 release notes for more details). If you're reading a record as a .NET object array using NpgsqlSlimDataSourceBuilder, call '{2}'. </value> </data> <data name="FullTextSearchNotEnabled" xml:space="preserve"> <value>Full-text search isn't enabled; please call {0} on {1} to enable full-text search.</value> </data> <data name="LTreeNotEnabled" xml:space="preserve"> <value>Ltree isn't enabled; please call {0} on {1} to enable LTree.</value> </data> <data name="CubeNotEnabled" xml:space="preserve"> <value>Cube isn't enabled; please call {0} on {1} to enable Cube.</value> </data> <data name="RangesNotEnabled" xml:space="preserve"> <value>Ranges aren't enabled; please call {0} on {1} to enable ranges.</value> </data> <data name="MultirangesNotEnabled" xml:space="preserve"> <value>Multiranges aren't enabled; please call {0} on {1} to enable multiranges.</value> </data> <data name="ArraysNotEnabled" xml:space="preserve"> <value>Arrays aren't enabled; please call {0} on {1} to enable arrays.</value> </data> <data name="TimestampTzNoDateTimeUnspecified" xml:space="preserve"> <value>Cannot write DateTime with Kind={0} to PostgreSQL type '{1}', only UTC is supported. Note that it's not possible to mix DateTimes with different Kinds in an array, range, or multirange.</value> </data> <data name="TimestampNoDateTimeUtc" xml:space="preserve"> <value>Cannot write DateTime with Kind=UTC to PostgreSQL type '{0}', consider using '{1}'. Note that it's not possible to mix DateTimes with different Kinds in an array, range, or multirange.</value> </data> <data name="DynamicJsonNotEnabled" xml:space="preserve"> <value>Type '{0}' required dynamic JSON serialization, which requires an explicit opt-in; call '{1}' on '{2}' or NpgsqlConnection.GlobalTypeMapper (see https://www.npgsql.org/doc/types/json.html and the 8.0 release notes for more details). Alternatively, if you meant to use Newtonsoft JSON.NET instead of System.Text.Json, call UseJsonNet() instead. </value> </data> <data name="UnmappedEnumsNotEnabled" xml:space="preserve"> <value>Reading and writing unmapped enums requires an explicit opt-in; call '{0}' on '{1}' or NpgsqlConnection.GlobalTypeMapper (see https://www.npgsql.org/doc/types/enums_and_composites.html and the 8.0 release notes for more details).</value> </data> <data name="UnmappedRangesNotEnabled" xml:space="preserve"> <value>Reading and writing unmapped ranges and multiranges requires an explicit opt-in; call '{0}' on '{1}' or NpgsqlConnection.GlobalTypeMapper (see https://www.npgsql.org/doc/types/ranges.html and the 8.0 release notes for more details).</value> </data> <data name="SslClientAuthenticationOptionsCallbackWithOtherCallbacksNotSupported" xml:space="preserve"> <value>SslClientAuthenticationOptionsCallback is not supported together with UserCertificateValidationCallback and ClientCertificatesCallback</value> </data> </root>