diff --git a/docs/templates/pages/components.mustache b/docs/templates/pages/components.mustache index 20d7ae9214..e926e8702b 100644 --- a/docs/templates/pages/components.mustache +++ b/docs/templates/pages/components.mustache @@ -1,18 +1,18 @@
-

Components

-

Dozens of reusable components are built into Bootstrap to provide navigation, alerts, popovers, and much more.

+

{{_i}}Components{{/i}}

+

{{_i}}Dozens of reusable components are built into Bootstrap to provide navigation, alerts, popovers, and much more.{{/i}}

@@ -22,18 +22,18 @@ ================================================== -->
-

Button groups

-

Use button groups to join multiple buttons together as one composite component. Build them with a series of <a> or <button> elements.

-

You can also combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex projects.

+

{{_i}}Button groups{{/i}}

+

{{_i}}Use button groups to join multiple buttons together as one composite component. Build them with a series of <a> or <button> elements.{{/i}}

+

{{_i}}You can also combine sets of <div class="btn-group"> into a <div class="btn-toolbar"> for more complex projects.{{/i}}

@@ -57,8 +57,8 @@
-

Example markup

-

Here's how the HTML looks for a standard button group built with anchor tag buttons:

+

{{_i}}Example markup{{/i}}

+

{{_i}}Here's how the HTML looks for a standard button group built with anchor tag buttons:{{/i}}

 <div class="btn-group">
   <a class="btn" href="#">1</a>
@@ -66,7 +66,7 @@
   <a class="btn" href="#">3</a>
 </div>
 
-

And with a toolbar for multiple groups:

+

{{_i}}And with a toolbar for multiple groups:{{/i}}

 <div class="btn-toolbar">
   <div class="btn-group">
@@ -76,12 +76,12 @@
 
-

Checkbox and radio flavors

-

Button groups can also function as radios, where only one button may be active, or checkboxes, where any number of buttons may be active. View the Javascript docs for that.

-

Get the javascript »

+

{{_i}}Checkbox and radio flavors{{/i}}

+

{{_i}}Button groups can also function as radios, where only one button may be active, or checkboxes, where any number of buttons may be active. View the Javascript docs for that.{{/i}}

+

{{_i}}Get the javascript »{{/i}}


-

Heads up

-

CSS for button groups is in a separate file, button-groups.less.

+

{{_i}}Heads up{{/i}}

+

{{_i}}CSS for button groups is in a separate file, button-groups.less.{{/i}}

@@ -92,85 +92,85 @@ ================================================== -->
-

Split button dropdowns

-

Building on the button group styles and markup, we can easily create a split button. Split buttons feature a standard action on the left and a dropdown toggle on the right with contextual links.

+

{{_i}}Split button dropdowns{{/i}}

+

{{_i}}Building on the button group styles and markup, we can easily create a split button. Split buttons feature a standard action on the left and a dropdown toggle on the right with contextual links.{{/i}}

-

Example markup

-

Similar to a button group, our markup uses regular button markup, but with a handful of additions to refine the style and support Bootstrap's dropdown jQuery plugin.

+

{{_i}}Example markup{{/i}}

+

{{_i}}Similar to a button group, our markup uses regular button markup, but with a handful of additions to refine the style and support Bootstrap's dropdown jQuery plugin.{{/i}}

 <div class="btn-group">
-  <a class="btn" href="#">Action</a>
+  <a class="btn" href="#">{{_i}}Action{{/i}}</a>
   <a class="btn dropdown-toggle" data-toggle="dropdown" href="#">
     <span class="caret"></span>
   </a>
   <ul class="dropdown-menu">
-    <!-- dropdown menu links -->
+    <!-- {{_i}}dropdown menu links{{/i}} -->
   </ul>
 </div>
 
@@ -184,30 +184,30 @@ ================================================== -->