Manual:日時の書式
Appearance
各利用者は、MediaWiki がページ履歴や最近の更新などで日付や時刻を生成する際に使用する日時の書式を、個人設定で選択できます。
書式は、利用者の言語によってさまざまです。
言語のメッセージ ファイル (languages/messages/Messages*.php
) 内の $datePreferences
配列に列挙されている場合は、その言語で書式の選択肢を利用できます。
The ID used in the list needs to be named in the $dateFormats
array (whether the general one or the override in the Messages*.php
file in question) and defined there with the appropriate sprintfDate()
format; otherwise it will be ignored.
選択肢は Special:Preferences (個人設定) 内に、定義に応じて同じ順序で列挙されます。 選択肢では例として2001年1月15日を使用します。 For English language (where d stands for day, m for month and y for year) they are:
- default (選択なし)
- mdy (16:12, January 15, 2001)
- dmy (16:12, 15 January 2001)
- ymd (16:12, 2001 January 15)
- numerical yyyy-mm-dd (ISO 8601 と同様ですが、暦の変換がなく、日付がグレゴリオ暦で表現されていることも暗示しません)