# man > DateTime::Locale::qu_BO

<think>The user wants me to transform a Perl documentation page for `DateTime::Locale::qu_BO` into Open Knowledge Format (OKF). This is a Perl module reference page (perldoc format), not a traditional command. Let me structure it appropriately.

Looking at the content:
- It's about the `DateTime::Locale::qu_BO` module which provides locale data for Quechua Bolivia
- It contains examples of locale data (days, months, quarters, eras, date formats, time formats, etc.)
- This is a perldoc reference, not a command

Let me follow the structure:
1. YAML frontmatter
2. Quick Reference
3. Name
4. Synopsis
5. Options (or in this case, data sections)
6. Examples
7. See Also

Since this is a Perl module reference, there's no traditional Synopsis or Options. I'll adapt the structure to fit the content while maintaining the OKF format requirements.

Let me condense the locale data significantly while preserving the essential information. The original has a lot of repetitive format examples that I can condense.

Notable characteristics of the locale:
- 24-hour time preferred
- First day of week: Monday (Lunes)
- Day names (Wide): Lunes, Martes, Miércoles, Jueves, Viernes, Sábado, Domingo
- Month names (Wide): Enero, Febrero, Marzo, Abril, Mayo, Junio, Julio, Agosto, Setiembre, Octubre, Noviembre, Diciembre
- Eras: "ñawpa cristu" (BC), "chanta cristu" (AD)
- Quarters: Q1-Q4
- Note: Quarters are labeled numerically 1-4 in narrow form

Let me create the condensed version.</think>

---
type: CommandReference
command: DateTime::Locale::qu_BO
mode: perldoc
section: 3pm
source: perldoc
---

## Quick Reference

- `DateTime::Locale::qu_BO` — Locale data examples for the Quechua Bolivia (qu-BO) locale
- First day of week — Monday (Lunes)
- 24-hour time preferred — Yes
- Native script — Latin

## Name

`DateTime::Locale::qu_BO` — Locale data examples for the Quechua Bolivia (qu-BO) locale

## Synopsis

perl
use DateTime::Locale;
my $locale = DateTime::Locale->load('qu_BO');
# Access locale data via DateTime::Locale methods
## Locale Data

### Days

| Form | Wide | Abbreviated | Narrow |
|---|---|---|---|
| format | Lunes, Martes, Miércoles, Jueves, Viernes, Sábado, Domingo | Lun, Mar, Mié, Jue, Vie, Sab, Dom | L, M, X, J, V, S, D |
| stand-alone | (same as format) | (same as format) | L, M, X, J, V, S, D |

### Months

| Form | Wide | Abbreviated | Narrow |
|---|---|---|---|
| format | Enero, Febrero, Marzo, Abril, Mayo, Junio, Julio, Agosto, Setiembre, Octubre, Noviembre, Diciembre | Ene, Feb, Mar, Abr, May, Jun, Jul, Ago, Set, Oct, Nov, Dic | 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 |
| stand-alone | (same as format) | (same as format) | 1-12 |

### Quarters

| Form | Wide | Abbreviated | Narrow |
|---|---|---|---|
| format | Q1, Q2, Q3, Q4 | Q1, Q2, Q3, Q4 | 1, 2, 3, 4 |
| stand-alone | (same as format) | (same as format) | 1, 2, 3, 4 |

### Eras

| Form | Wide | Abbreviated | Narrow |
|---|---|---|---|
| format | ñawpa cristu (BC), chanta cristu (AD) | a.d., d.C. | a.d., dC |

## Examples

### Date Formats

**Full** — `EEEE, d MMMM, y`
2008-02-05 = Martes, 5 Febrero, 2008
1995-12-22 = Viernes, 22 Diciembre, 1995
**Long** — `d MMMM y`
2008-02-05 = 5 Febrero 2008
1995-12-22 = 22 Diciembre 1995
**Medium** — `d MMM y`
2008-02-05 = 5 Feb 2008
1995-12-22 = 22 Dic 1995
**Short** — `dd/MM/y`
2008-02-05 = 05/02/2008
1995-12-22 = 22/12/1995
### Time Formats

| Format | Pattern | Example |
|---|---|---|
| Full | `HH:mm:ss v` | 18:30:30 UTC |
| Long | `HH:mm:ss v` | 18:30:30 UTC |
| Medium | `HH:mm:ss` | 18:30:30 |
| Short | `HH:mm` | 18:30 |

### Datetime Formats

**Full** — `EEEE, d MMMM, y HH:mm:ss v`
2008-02-05T18:30:30 = Martes, 5 Febrero, 2008 18:30:30 UTC
**Long** — `HH:mm:ss v d MMMM y`
2008-02-05T18:30:30 = 18:30:30 UTC 5 Febrero 2008
**Medium** — `d MMM y HH:mm:ss`
2008-02-05T18:30:30 = 5 Feb 2008 18:30:30
**Short** — `dd/MM/y HH:mm`
2008-02-05T18:30:30 = 05/02/2008 18:30
### Available Format Patterns

- `E` — `ccc` — abbreviated day name (e.g. `Mar`)
- `d` — `d` — day of month (e.g. `5`)
- `Md` — `MM-dd` — month-day (e.g. `02-05`)
- `MEd` — `MM-dd, E` — month-day, day (e.g. `02-05, Mar`)
- `MMMd` — `d MMM` — day, abbreviated month (e.g. `5 Feb`)
- `MMMEd` — `E, d MMM` — day, day, abbr month (e.g. `Mar, 5 Feb`)
- `yM` — `y-MM` — year-month (e.g. `2008-02`)
- `yMd` — `dd-MM-y` — date (e.g. `05-02-2008`)
- `yMEd` — `E, dd-MM-y` — day, date (e.g. `Mar, 05-02-2008`)
- `yMMM` — `MMM y` — abbr month, year (e.g. `Feb 2008`)
- `yMMMd` — `d MMM y` — day, abbr month, year (e.g. `5 Feb 2008`)
- `yMMMEd` — `E, d MMM, y` — day, date (e.g. `Mar, 5 Feb, 2008`)
- `yMMMM` — `MMMM y` — month, year (e.g. `Febrero 2008`)
- `yQQQ` / `yQQQQ` — `y QQQ` — year, quarter (e.g. `2008 Q1`)
- `H`, `Hm`, `Hms` — `HH`, `HH:mm`, `HH:mm:ss` — 24-hour time
- `h`, `hm`, `hms` — `h a`, `h:mm a`, `h:mm:ss a` — 12-hour time (e.g. `6 p.m.`)
- `ms` — `mm:ss` — minutes, seconds (e.g. `30:30`)
- `M` — `L` — month numeric (e.g. `2`)
- `MMM` — `LLL` — abbr month stand-alone (e.g. `Feb`)
- `Gy` — `G y` — era, year (e.g. `d.C. 2008`)
- `GyMd` — `d/M/y GGGGG` — era narrow (e.g. `5/2/2008 dC`)
- `GyMMM` — `MMM y G` — abbr month, year, era (e.g. `Feb 2008 d.C.`)
- `GyMMMd` — `d MMM, y G` — day, abbr month, year, era (e.g. `5 Feb, 2008 d.C.`)
- `GyMMMEd` — `E, d MMM, y G` — day, day, abbr month, year, era (e.g. `Mar, 5 Feb, 2008 d.C.`)
- `Hmv`, `Hmsv` — `HH:mm v`, `HH:mm:ss v` — time with timezone
- `hmv`, `hmsv` — `h:mm a v`, `h:mm:ss a v` — 12-hour time with timezone
- `Bh`, `Bhm`, `Bhms` — `h B`, `h:mm B`, `h:mm:ss B` — flexible hours (e.g. `6 B`, `6:30 B`)
- `EBhm`, `EBhms` — `E h:mm B`, `E h:mm:ss B` — day, flexible hours
- `EHm`, `EHms` — `E HH:mm`, `E HH:mm:ss` — day, 24-hour time
- `Ehm`, `Ehms` — `E h:mm a`, `E h:mm:ss a` — day, 12-hour time
- `Ed` — `d, E` — day, day (e.g. `5, Mar`)
- `MMMMW-count-other` — `W 'semana' MMMM 'killapa'` — month week (e.g. `1 semana Febrero killapa`)
- `yw-count-other` — `w 'semana' Y 'watapa'` — year week (e.g. `6 semana 2008 watapa`)

### Strftime Patterns

- `%c` — `%a %b %e %H:%M:%S %Y` — date time format (e.g. `Mar Feb  5 18:30:30 2008`)
- `%x` — `%m/%d/%y` — date format (e.g. `02/05/08`)
- `%X` — `%H:%M:%S` — time format (e.g. `18:30:30`)

### Miscellaneous

- **Prefers 24-hour time?** Yes
- **Local first day of the week** — 1 (Lunes)

## See Also

- [DateTime::Locale](http://localhost/phpMan.php/perldoc/DateTime%3A%3ALocale/markdown)
- [DateTime](http://localhost/phpMan.php/perldoc/DateTime/markdown)
- [DateTime::Locale::Base](http://localhost/phpMan.php/perldoc/DateTime%3A%3ALocale%3A%3ABase/markdown)