Skip to content

Commit

Permalink
Update translations
Browse files Browse the repository at this point in the history
  • Loading branch information
qn895 committed Dec 5, 2023
1 parent adb6ae0 commit e6facd0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export const DistinctValues = ({ showIcon, config }: Props) => {
type === SUPPORTED_FIELD_TYPES.TEXT ? (
<FormattedMessage
id="xpack.dataVisualizer.sampledCardinalityForTextFieldsMsg"
defaultMessage="The cardinality for text fields is sampled and calculated from {sampledDocumentsFormatted} sample {sampledDocuments, plural, one {record} other {records}}."
defaultMessage="The cardinality for text fields is calculated from a sample of {sampledDocumentsFormatted} {sampledDocuments, plural, one {record} other {records}}."
values={{
sampledDocuments: sampleCount,
sampledDocumentsFormatted: (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const DocumentStat = ({ config, showIcon, totalCount }: Props) => {
type === SUPPORTED_FIELD_TYPES.TEXT ? (
<FormattedMessage
id="xpack.dataVisualizer.sampledPercentageForTextFieldsMsg"
defaultMessage="The % of documents for text fields is sampled and calculated from {sampledDocumentsFormatted} sample {sampledDocuments, plural, one {record} other {records}}."
defaultMessage="The % of documents for text fields is calculated from a sample of {sampledDocumentsFormatted} {sampledDocuments, plural, one {record} other {records}}."
values={{
sampledDocuments: sampleCount,
sampledDocumentsFormatted: (
Expand Down

0 comments on commit e6facd0

Please sign in to comment.