removing decimal with precision and decimal count

This commit is contained in:
Filipriec
2026-08-24 21:31:06 +02:00
parent 16670f4375
commit 5e9b86c1fb
22 changed files with 50 additions and 467 deletions

View File

@@ -43,8 +43,6 @@ label-validation-set-name = název validační sady
label-minimum = Minimum
label-maximum = Maximum
label-warning-threshold = Hranice upozornění
label-precision = Přesnost
label-scale = Desetinná místa
label-column-name = Název sloupce
label-table-name = Název tabulky
label-linked-table = Odkazovaná tabulka
@@ -208,19 +206,6 @@ td-temporal-type = Časový typ
td-choose-temporal-type = Vyberte časový typ
td-gtin-type = Typ GTIN
td-choose-gtin-length = Vyberte délku GTIN
td-precision = Přesnost
td-precision-hint = Celkový počet uložených číslic, alespoň 1.
td-scale = Desetinná místa
td-scale-hint = Číslice za desetinnou čárkou, nejvýše tolik jako přesnost.
td-fixed-decimal-access = Pokročilé číselné typy
td-fixed-decimal-disabled = Pouze doporučené typy
td-fixed-decimal-enabled = Povolit desetinné číslo s pevným měřítkem
td-fixed-decimal-access-hint = Doporučuje se přesný typ NUMERIC. Tuto možnost povolte pouze pro přísný externí datový kontrakt.
td-fixed-decimal-warning-title = Pokročilé desetinné číslo s pevným měřítkem
td-fixed-decimal-warning = Tento typ omezuje celkový počet číslic i desetinná místa. Hodnoty mimo měřítko se odmítnou, výpočty musí zaokrouhlovat explicitně a typ po vložení dat nelze změnit.
td-fixed-decimal-enable-first = Před použitím tohoto typu povolte pokročilé desetinné číslo s pevným měřítkem.
td-exact-decimal = Desetinné číslo — přesné (doporučeno)
td-fixed-decimal-type = Desetinné číslo s pevným měřítkem — pokročilé
td-referenced-table = Odkazovaná tabulka
td-choose-table = Vyberte tabulku
td-group-global = Globální
@@ -844,9 +829,7 @@ schema-err-generated-exists = `{ $type }` generuje sloupec s názvem `{ $generat
schema-err-ql-types = Sloupce kvantitativní evidence musí používat { $types }
schema-err-column-ql-types = Sloupec `{ $name }`: sloupce kvantitativní evidence musí používat { $types }
schema-err-column-prefix = Sloupec `{ $name }`: { $error }
schema-err-decimal-not-valid = `decimal` není platný typ sloupce.
schema-err-link-not-valid = `link` není platný typ sloupce.
schema-err-decimal-args-needed = `{ $type }` vyžaduje přesnost i desetinná místa.
schema-err-link-target-needed = `link` vyžaduje odkazovanou tabulku.
schema-err-generated-type = `{ $type }` je typ sloupce, který generuje backend.
schema-err-invalid-type = `{ $type }` není platný typ sloupce.
@@ -871,12 +854,6 @@ error-identifier-number = { $label } nesmí začínat číslicí.
error-identifier-too-long = { $label } nesmí být delší než { $limit } znaků.
error-identifier-charset = { $label } může obsahovat jen malá písmena, číslice a podtržítko.
error-identifier-reserved = { $label } používá vyhrazený název.
error-decimal-required = { $label } je povinné pro desetinný sloupec.
error-decimal-sign = { $label } nesmí obsahovat znaménko.
error-decimal-whole = { $label } musí být celé číslo.
error-decimal-leading-zeros = { $label } nesmí mít úvodní nuly.
error-precision-min = Přesnost musí být alespoň 1.
error-scale-gt-precision = Desetinná místa nemohou být více než přesnost.
# --- Přidat validaci ----------------------------------------------------------------
validation-eyebrow = Validace

View File

@@ -48,8 +48,6 @@ label-validation-set-name = validation set name
label-minimum = Minimum
label-maximum = Maximum
label-warning-threshold = Warning threshold
label-precision = Precision
label-scale = Scale
label-column-name = Column name
label-table-name = Table name
label-linked-table = Linked table
@@ -212,19 +210,6 @@ td-temporal-type = Temporal type
td-choose-temporal-type = Choose a temporal type
td-gtin-type = GTIN type
td-choose-gtin-length = Choose a GTIN length
td-precision = Precision
td-precision-hint = Total digits stored, at least 1.
td-scale = Scale
td-scale-hint = Digits after the point, no more than the precision.
td-fixed-decimal-access = Advanced number types
td-fixed-decimal-disabled = Recommended types only
td-fixed-decimal-enabled = Enable fixed-scale decimal
td-fixed-decimal-access-hint = Exact NUMERIC is recommended. Enable this only for a strict external data contract.
td-fixed-decimal-warning-title = Advanced fixed-scale decimal
td-fixed-decimal-warning = This type limits total and fractional digits. Values outside the declared scale are refused, calculations must round explicitly, and the type cannot be changed after the table contains data.
td-fixed-decimal-enable-first = Enable advanced fixed-scale decimal before using this type.
td-exact-decimal = Decimal — exact (recommended)
td-fixed-decimal-type = Fixed-scale decimal — advanced
td-referenced-table = Referenced table
td-choose-table = Choose a table
td-group-global = Global
@@ -829,9 +814,7 @@ schema-err-generated-exists = `{ $type }` generates a column named `{ $generated
schema-err-ql-types = Quantity-ledger columns must use { $types }
schema-err-column-ql-types = Column `{ $name }`: quantity-ledger columns must use { $types }
schema-err-column-prefix = Column `{ $name }`: { $error }
schema-err-decimal-not-valid = `decimal` is not a valid field type.
schema-err-link-not-valid = `link` is not a valid field type.
schema-err-decimal-args-needed = `{ $type }` needs both a precision and a scale.
schema-err-link-target-needed = `link` needs a referenced table.
schema-err-generated-type = `{ $type }` is a column type the backend generates itself.
schema-err-invalid-type = `{ $type }` is not a valid field type.
@@ -856,12 +839,6 @@ error-identifier-number = { $label } cannot start with a number.
error-identifier-too-long = { $label } cannot be longer than { $limit } characters.
error-identifier-charset = { $label } may only use lowercase letters, digits and underscores.
error-identifier-reserved = { $label } uses a reserved name.
error-decimal-required = { $label } is required for a decimal column.
error-decimal-sign = { $label } cannot carry a sign.
error-decimal-whole = { $label } must be a whole number.
error-decimal-leading-zeros = { $label } cannot have leading zeros.
error-precision-min = Precision must be at least 1.
error-scale-gt-precision = Scale cannot be greater than precision.
# --- Add validation --------------------------------------------------------
validation-eyebrow = Validation

View File

@@ -43,8 +43,6 @@ label-validation-set-name = názov validačnej sady
label-minimum = Minimum
label-maximum = Maximum
label-warning-threshold = Hranica upozornenia
label-precision = Presnosť
label-scale = Desatinné miesta
label-column-name = Názov stĺpca
label-table-name = Názov tabuľky
label-linked-table = Odkazovaná tabuľka
@@ -208,19 +206,6 @@ td-temporal-type = Časový typ
td-choose-temporal-type = Vyberte časový typ
td-gtin-type = Typ GTIN
td-choose-gtin-length = Vyberte dĺžku GTIN
td-precision = Presnosť
td-precision-hint = Celkový počet uložených číslic, aspoň 1.
td-scale = Desatinné miesta
td-scale-hint = Číslice za desatinnou čiarkou, najviac toľko ako presnosť.
td-fixed-decimal-access = Pokročilé číselné typy
td-fixed-decimal-disabled = Iba odporúčané typy
td-fixed-decimal-enabled = Povoliť desatinné číslo s pevnou mierkou
td-fixed-decimal-access-hint = Odporúča sa presný typ NUMERIC. Túto možnosť povoľte iba pre prísnu externú dátovú zmluvu.
td-fixed-decimal-warning-title = Pokročilé desatinné číslo s pevnou mierkou
td-fixed-decimal-warning = Tento typ obmedzuje celkový počet číslic aj desatinné miesta. Hodnoty mimo mierky sa odmietnu, výpočty musia zaokrúhľovať explicitne a typ sa po vložení údajov nedá zmeniť.
td-fixed-decimal-enable-first = Pred použitím tohto typu povoľte pokročilé desatinné číslo s pevnou mierkou.
td-exact-decimal = Desatinné číslo — presné (odporúčané)
td-fixed-decimal-type = Desatinné číslo s pevnou mierkou — pokročilé
td-referenced-table = Odkazovaná tabuľka
td-choose-table = Vyberte tabuľku
td-group-global = Globálne
@@ -842,9 +827,7 @@ schema-err-generated-exists = `{ $type }` generuje stĺpec s názvom `{ $generat
schema-err-ql-types = Stĺpce kvantitatívnej evidencie musia používať { $types }
schema-err-column-ql-types = Stĺpec `{ $name }`: stĺpce kvantitatívnej evidencie musia používať { $types }
schema-err-column-prefix = Stĺpec `{ $name }`: { $error }
schema-err-decimal-not-valid = `decimal` nie je platný typ stĺpca.
schema-err-link-not-valid = `link` nie je platný typ stĺpca.
schema-err-decimal-args-needed = `{ $type }` vyžaduje presnosť aj desatinné miesta.
schema-err-link-target-needed = `link` vyžaduje odkazovanú tabuľku.
schema-err-generated-type = `{ $type }` je typ stĺpca, ktorý generuje backend.
schema-err-invalid-type = `{ $type }` nie je platný typ stĺpca.
@@ -869,12 +852,6 @@ error-identifier-number = { $label } nesmie začínať číslom.
error-identifier-too-long = { $label } nesmie byť dlhšie ako { $limit } znakov.
error-identifier-charset = { $label } môže obsahovať len malé písmená, číslice a podčiarkovník.
error-identifier-reserved = { $label } používa vyhradený názov.
error-decimal-required = { $label } je povinné pre desatinný stĺpec.
error-decimal-sign = { $label } nesmie obsahovať znamienko.
error-decimal-whole = { $label } musí byť celé číslo.
error-decimal-leading-zeros = { $label } nesmie mať vedúce nuly.
error-precision-min = Presnosť musí byť aspoň 1.
error-scale-gt-precision = Desatinné miesta nemôžu byť viac ako presnosť.
# --- Pridať validáciu ----------------------------------------------------------
validation-eyebrow = Validácia