Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Oliff <christianoliff@pm.me>2021-09-09 14:30:41 +0300
committerGitHub <noreply@github.com>2021-09-09 14:30:41 +0300
commitf7c361f5538f0ea93badd1964b3d8b54d30ded86 (patch)
treea3c117c465eef21b0c401dd0a7f2d93b16ea000d /site/content/docs
parent2a925d6fd800d89b072d9f035a069d84e735941b (diff)
replace dummy text with English for Text truncation page (#34936)
Diffstat (limited to 'site/content/docs')
-rw-r--r--site/content/docs/5.1/helpers/text-truncation.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/site/content/docs/5.1/helpers/text-truncation.md b/site/content/docs/5.1/helpers/text-truncation.md
index a92a171fd1..799f2059b6 100644
--- a/site/content/docs/5.1/helpers/text-truncation.md
+++ b/site/content/docs/5.1/helpers/text-truncation.md
@@ -12,12 +12,12 @@ For longer content, you can add a `.text-truncate` class to truncate the text wi
<!-- Block level -->
<div class="row">
<div class="col-2 text-truncate">
- Praeterea iter est quasdam res quas ex communi.
+ This text is quite long, and will be truncated once displayed.
</div>
</div>
<!-- Inline level -->
<span class="d-inline-block text-truncate" style="max-width: 150px;">
- Praeterea iter est quasdam res quas ex communi.
+ This text is quite long, and will be truncated once displayed.
</span>
{{< /example >}}