completions/date: add rfc-3339 option

Closes #12703
This commit is contained in:
Remo Senekowitsch
2026-05-04 12:48:36 +02:00
committed by Johannes Altmanninger
parent 330e897acc
commit d885e0efd7
11 changed files with 93 additions and 0 deletions

View File

@@ -41168,6 +41168,15 @@ msgstr ""
msgid "Output in RFC 2822 format"
msgstr ""
msgid "Output in RFC 3339 format with date precision"
msgstr ""
msgid "Output in RFC 3339 format with nanosecond precision"
msgstr ""
msgid "Output in RFC 3339 format with second precision"
msgstr ""
msgid "Output in an easy-to-parse format for scripts"
msgstr ""

View File

@@ -41168,6 +41168,15 @@ msgstr ""
msgid "Output in RFC 2822 format"
msgstr ""
msgid "Output in RFC 3339 format with date precision"
msgstr ""
msgid "Output in RFC 3339 format with nanosecond precision"
msgstr ""
msgid "Output in RFC 3339 format with second precision"
msgstr ""
msgid "Output in an easy-to-parse format for scripts"
msgstr ""

View File

@@ -41168,6 +41168,15 @@ msgstr ""
msgid "Output in RFC 2822 format"
msgstr ""
msgid "Output in RFC 3339 format with date precision"
msgstr ""
msgid "Output in RFC 3339 format with nanosecond precision"
msgstr ""
msgid "Output in RFC 3339 format with second precision"
msgstr ""
msgid "Output in an easy-to-parse format for scripts"
msgstr ""

View File

@@ -41297,6 +41297,15 @@ msgstr ""
msgid "Output in RFC 2822 format"
msgstr ""
msgid "Output in RFC 3339 format with date precision"
msgstr ""
msgid "Output in RFC 3339 format with nanosecond precision"
msgstr ""
msgid "Output in RFC 3339 format with second precision"
msgstr ""
msgid "Output in an easy-to-parse format for scripts"
msgstr ""

View File

@@ -41171,6 +41171,15 @@ msgstr ""
msgid "Output in RFC 2822 format"
msgstr ""
msgid "Output in RFC 3339 format with date precision"
msgstr ""
msgid "Output in RFC 3339 format with nanosecond precision"
msgstr ""
msgid "Output in RFC 3339 format with second precision"
msgstr ""
msgid "Output in an easy-to-parse format for scripts"
msgstr ""

View File

@@ -41164,6 +41164,15 @@ msgstr ""
msgid "Output in RFC 2822 format"
msgstr ""
msgid "Output in RFC 3339 format with date precision"
msgstr ""
msgid "Output in RFC 3339 format with nanosecond precision"
msgstr ""
msgid "Output in RFC 3339 format with second precision"
msgstr ""
msgid "Output in an easy-to-parse format for scripts"
msgstr ""

View File

@@ -41169,6 +41169,15 @@ msgstr ""
msgid "Output in RFC 2822 format"
msgstr ""
msgid "Output in RFC 3339 format with date precision"
msgstr ""
msgid "Output in RFC 3339 format with nanosecond precision"
msgstr ""
msgid "Output in RFC 3339 format with second precision"
msgstr ""
msgid "Output in an easy-to-parse format for scripts"
msgstr ""

View File

@@ -41165,6 +41165,15 @@ msgstr ""
msgid "Output in RFC 2822 format"
msgstr ""
msgid "Output in RFC 3339 format with date precision"
msgstr ""
msgid "Output in RFC 3339 format with nanosecond precision"
msgstr ""
msgid "Output in RFC 3339 format with second precision"
msgstr ""
msgid "Output in an easy-to-parse format for scripts"
msgstr ""

View File

@@ -41189,6 +41189,15 @@ msgstr ""
msgid "Output in RFC 2822 format"
msgstr ""
msgid "Output in RFC 3339 format with date precision"
msgstr ""
msgid "Output in RFC 3339 format with nanosecond precision"
msgstr ""
msgid "Output in RFC 3339 format with second precision"
msgstr ""
msgid "Output in an easy-to-parse format for scripts"
msgstr ""

View File

@@ -41166,6 +41166,15 @@ msgstr ""
msgid "Output in RFC 2822 format"
msgstr ""
msgid "Output in RFC 3339 format with date precision"
msgstr ""
msgid "Output in RFC 3339 format with nanosecond precision"
msgstr ""
msgid "Output in RFC 3339 format with second precision"
msgstr ""
msgid "Output in an easy-to-parse format for scripts"
msgstr ""

View File

@@ -5,6 +5,9 @@ if date --version >/dev/null 2>/dev/null
complete -c date -s I -l iso-8601 -d "Use ISO 8601 output format" -x -a "date hours minutes seconds"
complete -c date -s s -l set -d "Set time" -x
complete -c date -s R -l rfc-2822 -d "Output in RFC 2822 format"
complete -c date -l rfc-3339=date -d "Output in RFC 3339 format with date precision"
complete -c date -l rfc-3339=second -d "Output in RFC 3339 format with second precision"
complete -c date -l rfc-3339=ns -d "Output in RFC 3339 format with nanosecond precision"
complete -c date -s r -l reference -d "Display last modification time of file" -r
complete -c date -s u -l utc -d "Print/set UTC time" -f
complete -c date -l universal -d "Print/set UTC time" -f