Lines 1347-1353
Emperors' reigns.
Link Here
|
1347 |
|
1347 |
|
1348 |
@item O |
1348 |
@item O |
1349 |
Use the locale's alternate numeric symbols for numbers. This modifier |
1349 |
Use the locale's alternate numeric symbols for numbers. This modifier |
1350 |
applies only to numeric format specifiers. |
1350 |
applies only to numeric format specifiers. Additionally, as a GNU extension, |
|
|
1351 |
this modifier also applies to the @code{%b} and @code{%B} format specifiers |
1352 |
and forces the use of month names in the grammatical form used when the month |
1353 |
is named by itself. |
1351 |
@end table |
1354 |
@end table |
1352 |
|
1355 |
|
1353 |
If the format supports the modifier but no alternate representation |
1356 |
If the format supports the modifier but no alternate representation |
Lines 1366-1377
The full weekday name according to the current locale.
Link Here
|
1366 |
|
1369 |
|
1367 |
@item %b |
1370 |
@item %b |
1368 |
The abbreviated month name according to the current locale. |
1371 |
The abbreviated month name according to the current locale. |
|
|
1372 |
As a GNU extension, it is specified that the abbreviated month name is |
1373 |
produced in the grammatical form used when the month forms part of a complete |
1374 |
date; applying the @code{O} modifier produces the abbreviated month name in |
1375 |
the grammatical form used when the month is named by itself. |
1369 |
|
1376 |
|
1370 |
@item %B |
1377 |
@item %B |
1371 |
The full month name according to the current locale. |
1378 |
The full month name according to the current locale. |
|
|
1379 |
As a GNU extension, it is specified that the full month name is produced in |
1380 |
the grammatical form used when the month forms part of a complete date; |
1381 |
applying the @code{O} modifier produces the abbreviated month name in the |
1382 |
grammatical form used when the month is named by itself. |
1372 |
|
1383 |
|
1373 |
Using @code{%B} together with @code{%d} produces grammatically |
1384 |
Note that most of the locales do not need different grammatical forms of the |
1374 |
incorrect results for some locales. |
1385 |
month names. In these locales the @code{O} modifier does not change the |
|
|
1386 |
results of the @code{%b} and @code{%B} specifiers. |
1375 |
|
1387 |
|
1376 |
@item %c |
1388 |
@item %c |
1377 |
The preferred calendar time representation for the current locale. |
1389 |
The preferred calendar time representation for the current locale. |
Lines 1779-1785
the full name.
Link Here
|
1779 |
@itemx %B |
1791 |
@itemx %B |
1780 |
@itemx %h |
1792 |
@itemx %h |
1781 |
The month name according to the current locale, in abbreviated form or |
1793 |
The month name according to the current locale, in abbreviated form or |
1782 |
the full name. |
1794 |
the full name. If the current locale requires different grammatical forms of |
|
|
1795 |
the month names then both forms are accepted, does not matter if the @code{O} |
1796 |
modifier is present or not. |
1783 |
|
1797 |
|
1784 |
@item %c |
1798 |
@item %c |
1785 |
The date and time representation for the current locale. |
1799 |
The date and time representation for the current locale. |
1786 |
- |
|
|