mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 01:21:10 +00:00
Merge pull request #10680 from im4potato/timedate
Unify timedate ENUMs and cleanup
This commit is contained in:
commit
3cd320fa83
@ -2648,107 +2648,107 @@ MSG_HASH(
|
||||
"更改菜单中当前日期/时间显示格式。"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
"YYYY-MM-DD HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
"YYYY-MM-DD HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
"YYYY-MM-DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
"YYYY-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
"MM-DD-YYYY HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
"MM-DD-YYYY HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
"MM-DD HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
"MM-DD-YYYY"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
"MM-DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
"DD/MM/YYYY HH:MM:SS"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
"DD-MM-YYYY HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
"DD/MM/YYYY HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
"DD-MM-YYYY HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
"DD/MM HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
"DD-MM HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
"DD/MM/YYYY"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
"DD-MM-YYYY"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
"DD/MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
"DD-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
"HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
"HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
"YYYY-MM-DD HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
"YYYY-MM-DD HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
"MM-DD-YYYY HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
"MM-DD-YYYY HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
"MM/DD HH: (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
"MM-DD HH: (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"DD/MM/YYYY HH:MM:SS (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
"DD-MM-YYYY HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"DD/MM/YYYY HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
"DD-MM-YYYY HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
"DD/MM HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
"DD-MM HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
"HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
"HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
|
@ -2383,107 +2383,107 @@ MSG_HASH(
|
||||
"Αλλάζει το στυλ της τρέχουσας ημερομηνίας ή και ώρας που φαίνεται μέσα στο μενού."
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
"ΧΧΧΧ-ΜΜ-ΗΗ ΩΩ:ΛΛ:ΔΔ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
"ΧΧΧΧ-ΜΜ-ΗΗ ΩΩ:ΛΛ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
"ΧΧΧΧ-ΜΜ-ΗΗ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
"ΧΧΧΧ-ΜΜ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
"ΜΜ-ΗΗ-ΧΧΧΧ ΩΩ:ΛΛ:ΔΔ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
"ΜΜ-ΗΗ-ΧΧΧΧ ΩΩ:ΛΛ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
"ΜΜ-ΗΗ ΩΩ:ΛΛ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
"ΜΜ-ΗΗ-ΧΧΧΧ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
"ΜΜ-ΗΗ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
"HH/MM/ΧΧΧΧ ΩΩ:ΛΛ:ΔΔ"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
"HH-MM-ΧΧΧΧ ΩΩ:ΛΛ:ΔΔ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
"HH/MM/ΧΧΧΧ ΩΩ:ΛΛ"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
"HH-MM-ΧΧΧΧ ΩΩ:ΛΛ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
"HH/MM ΩΩ:ΛΛ"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
"HH-MM ΩΩ:ΛΛ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
"HH/MM/ΧΧΧΧ"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
"HH-MM/ΧΧΧΧ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
"HH/MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
"HH-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
"ΩΩ:ΛΛ:ΔΔ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
"ΩΩ:ΛΛ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
"ΧΧΧΧ-ΜΜ-ΗΗ ΩΩ:ΛΛ:ΔΔ (ΠΜ/ΜΜ)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
"ΧΧΧΧ-ΜΜ-ΗΗ ΩΩ:ΛΛ (ΠΜ/ΜΜ)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
"ΜΜ-ΗΗ-ΧΧΧΧ ΩΩ:ΛΛ:ΔΔ (ΠΜ/ΜΜ)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
"ΜΜ-ΗΗ-ΧΧΧΧ ΩΩ:ΛΛ (ΠΜ/ΜΜ)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
"ΜΜ-ΗΗ ΩΩ:ΛΛ (ΠΜ/ΜΜ)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"HH/MM/XXXX ΩΩ:ΛΛ:ΔΔ (ΠΜ/ΜΜ)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
"HH-MM-XXXX ΩΩ:ΛΛ:ΔΔ (ΠΜ/ΜΜ)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"HH/MM/XXXX ΩΩ:ΛΛ (ΠΜ/ΜΜ)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
"HH-MM-XXXX ΩΩ:ΛΛ (ΠΜ/ΜΜ)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
"HH/MM ΩΩ:ΛΛ (ΠΜ/ΜΜ)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
"HH-MM ΩΩ:ΛΛ (ΠΜ/ΜΜ)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
"ΩΩ:ΛΛ:ΔΔ (ΠΜ/ΜΜ)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
"ΩΩ:ΛΛ (ΠΜ/ΜΜ)"
|
||||
)
|
||||
MSG_HASH(
|
||||
|
@ -3698,107 +3698,107 @@ MSG_HASH(
|
||||
"Cambia la forma en que se muestra la fecha y hora."
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
"AAAA-MM-DD HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
"AAAA-MM-DD HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
"AAAA-MM-DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
"AAAA-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
"MM-DD-AAAA HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
"MM-DD-AAAA HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
"MM-DD HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
"MM-DD-AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
"MM-DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
"DD/MM/AAAA HH:MM:SS"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
"DD-MM-AAAA HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
"DD/MM/AAAA HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
"DD-MM-AAAA HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
"DD/MM HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
"DD-MM HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
"DD/MM/AAAA"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
"DD-MM-AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
"DD/MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
"DD-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
"HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
"HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
"AAAA-MM-DD HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
"AAAA-MM-DD HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
"MM-DD-AAAA HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
"MM-DD-AAAA HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
"MM/DD HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
"MM-DD HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"DD/MM/AAAA HH:MM:SS (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
"DD-MM-AAAA HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"DD/MM/AAAA HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
"DD-MM-AAAA HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
"DD/MM HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
"DD-MM HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
"HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
"HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
@ -9511,94 +9511,6 @@ MSG_HASH(
|
||||
MENU_ENUM_SUBLABEL_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE,
|
||||
"Selecciona el formato de fecha y hora para la información de la última partida jugada al mostrar el registro de ejecución. Nota: Las opciones AM/PM afectarán levemente al rendimiento en algunas plataformas."
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS,
|
||||
"AAAA/MM/DD - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM,
|
||||
"AAAA/MM/DD - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD,
|
||||
"AAAA/MM/DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YM,
|
||||
"AAAA/MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS,
|
||||
"MM/DD/AAAA - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM,
|
||||
"MM/DD/AAAA - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM,
|
||||
"MM/DD - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY,
|
||||
"MM/DD/AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD,
|
||||
"MM/DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS,
|
||||
"DD/MM/AAAA - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM,
|
||||
"DD/MM/AAAA - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM,
|
||||
"DD/MM - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY,
|
||||
"DD/MM/AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM,
|
||||
"DD/MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS_AM_PM,
|
||||
"AAAA/MM/DD - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM_AM_PM,
|
||||
"AAAA/MM/DD - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS_AM_PM,
|
||||
"MM/DD/AAAA - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM_AM_PM,
|
||||
"MM/DD/AAAA - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM_AM_PM,
|
||||
"MM/DD - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"DD/MM/AAAA - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"DD/MM/AAAA - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM_AM_PM,
|
||||
"DD/MM - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_FUZZY_ARCHIVE_MATCH,
|
||||
"Búsqueda difusa de archivos"
|
||||
@ -10581,4 +10493,3 @@ MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_START_GONG,
|
||||
"Iniciar gong"
|
||||
)
|
||||
|
||||
|
@ -6910,197 +6910,109 @@ MSG_HASH(
|
||||
"Tardive"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
"AAAA-MM-JJ HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
"AAAA-MM-JJ HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
"AAAA-MM-JJ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
"AAAA-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
"MM-JJ-AAAA HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
"MM-JJ-AAAA HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
"MM-JJ HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
"MM-JJ-AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
"MM-JJ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
"JJ/MM/AAAA HH:MM:SS"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
"JJ-MM-AAAA HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
"JJ/MM/AAAA HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
"JJ-MM-AAAA HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
"JJ/MM HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
"JJ-MM HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
"JJ/MM/AAAA"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
"JJ-MM/AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
"JJ/MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
"JJ-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
"HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
"HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
"AAAA-MM-JJ HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
"AAAA-MM-JJ HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
"MM-JJ-AAAA HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
"MM-JJ-AAAA HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
"MM/JJ HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
"MM-JJ HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"JJ/MM/AAAA HH:MM:SS (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
"JJ-MM-AAAA HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"JJ/MM/AAAA HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
"JJ-MM-AAAA HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
"JJ/MM HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
"JJ-MM HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
"HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
"HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS,
|
||||
"AAAA/MM/JJ - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM,
|
||||
"AAAA/MM/JJ - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD,
|
||||
"AAAA/MM/JJ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YM,
|
||||
"AAAA/MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS,
|
||||
"MM/JJ/AAAA - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM,
|
||||
"MM/JJ/AAAA - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM,
|
||||
"MM/JJ - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY,
|
||||
"MM/JJ/AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD,
|
||||
"MM/JJ"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS,
|
||||
"JJ/MM/AAAA - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM,
|
||||
"JJ/MM/AAAA - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM,
|
||||
"JJ/MM - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY,
|
||||
"JJ/MM/AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM,
|
||||
"JJ/MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS_AM_PM,
|
||||
"AAAA/MM/JJ - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM_AM_PM,
|
||||
"AAAA/MM/JJ - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS_AM_PM,
|
||||
"MM/JJ/AAAA - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM_AM_PM,
|
||||
"MM/JJ/AAAA - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM_AM_PM,
|
||||
"MM/JJ - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"JJ/MM/AAAA - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"JJ/MM/AAAA - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM_AM_PM,
|
||||
"JJ/MM - HH:MM (AM/PM)"
|
||||
)
|
||||
|
||||
/* RGUI: Settings > User Interface > Appearance */
|
||||
|
||||
|
@ -2622,107 +2622,107 @@ MSG_HASH(
|
||||
"Modifica il modo in cui vengono visualizzate data e ora nel menu"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
"AAAA-MM-GG HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
"AAAA-MM-GG HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
"AAAA-MM-GG"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
"AAAA-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
"MM-GG-AAAA HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
"MM-GG-AAAA HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
"MM-GG HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
"MM-GG-AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
"MM-GG"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
"GG/MM/AAAA HH:MM:SS"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
"GG-MM-AAAA HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
"GG/MM/AAAA HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
"GG-MM-AAAA HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
"GG/MM HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
"GG-MM HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
"GG/MM/AAAA"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
"GG-MM-AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
"GG/MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
"GG-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
"HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
"HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
"AAAA-MM-GG HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
"AAAA-MM-GG HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
"MM-GG-AAAA HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
"MM-GG-AAAA HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
"MM/GG HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
"MM-GG HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"GG/MM/AAAA HH:MM:SS (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
"GG-MM-AAAA HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"GG/MM/AAAA HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
"GG-MM-AAAA HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
"GG/MM HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
"GG-MM HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
"HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
"HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
|
@ -3124,107 +3124,107 @@ MSG_HASH(
|
||||
"メニュー内での日付/時刻の表示形式を変更します。"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
"年-月-日 時:分:秒"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
"年-月-日 時:分"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
"年-月-日"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
"年-月"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
"月-日-年 時:分:秒"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
"月-日-年 時:分"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
"月-日 時:分"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
"月-日-年"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
"月-日"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
"日/月/年 時:分:秒"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
"日-月-年 時:分:秒"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
"日/月/年 時:分"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
"日-月-年 時:分"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
"日/月 時:分"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
"日-月 時:分"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
"日/月/年"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
"日-月-年"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
"日/月"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
"日-月"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
"時:分:秒"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
"時:分"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
"年-月-日 時:分:秒 (午前/午後)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
"年-月-日 時:分 (午前/午後)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
"月-日-年 時:分:秒 (午前/午後)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
"月-日-年 時:分 (午前/午後)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
"月-日 時:分 (午前/午後)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"日/月/年 時:分:秒 (午前/午後)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
"日-月-年 時:分:秒 (午前/午後)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"日/月/年 時:分 (午前/午後)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
"日-月-年 時:分 (午前/午後)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
"日/月 時:分 (午前/午後)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
"日-月 時:分 (午前/午後)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
"時:分:秒 (午前/午後)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
"時:分 (午前/午後)"
|
||||
)
|
||||
MSG_HASH(
|
||||
|
@ -3578,107 +3578,107 @@ MSG_HASH(
|
||||
"메뉴에 표시될 시간/날짜 스타일을 변경합니다."
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
"YYYY-MM-DD HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
"YYYY-MM-DD HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
"YYYY-MM-DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
"YYYY-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
"MM-DD-YYYY HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
"MM-DD-YYYY HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
"MM-DD HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
"MM-DD-YYYY"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
"MM-DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
"DD/MM/YYYY HH:MM:SS"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
"DD-MM-YYYY HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
"DD/MM/YYYY HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
"DD-MM-YYYY HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
"DD/MM HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
"DD-MM HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
"DD/MM/YYYY"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
"DD-MM-YYYY"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
"DD/MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
"DD-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
"HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
"HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
"YYYY-MM-DD HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
"YYYY-MM-DD HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
"MM-DD-YYYY HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
"MM-DD-YYYY HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
"MM/DD HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
"MM-DD HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"DD/MM/YYYY HH:MM:SS (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
"DD-MM-YYYY HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"DD/MM/YYYY HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
"DD-MM-YYYY HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
"DD/MM HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
"DD-MM HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
"HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
"HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
|
@ -3718,107 +3718,107 @@ MSG_HASH(
|
||||
"Altera o estilo da data atual ou como a hora é mostrada dentro do menu."
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
"AAAA-MM-DD HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
"AAAA-MM-DD HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
"AAAA-MM-DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
"AAAA-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
"MM-DD-AAAA HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
"MM-DD-AAAA HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
"MM-DD HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
"MM-DD-AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
"MM-DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
"DD/MM/AAAA HH:MM:SS"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
"DD-MM-AAAA HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
"DD/MM/AAAA HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
"DD-MM-AAAA HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
"DD/MM HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
"DD-MM HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
"DD/MM/AAAA"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
"DD-MM-AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
"DD/MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
"DD-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
"HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
"HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
"AAAA-MM-DD HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
"AAAA-MM-DD HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
"MM-DD-AAAA HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
"MM-DD-AAAA HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
"MM/DD HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
"MM-DD HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"DD/MM/AAAA HH:MM:SS (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
"DD-MM-AAAA HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"DD/MM/AAAA HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
"DD-MM-AAAA HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
"DD/MM HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
"DD-MM HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
"HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
"HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
@ -9586,94 +9586,6 @@ MSG_HASH(
|
||||
MENU_ENUM_SUBLABEL_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE,
|
||||
"Seleciona o formato de data e hora da último partida, mostrando o registro de execução. NOTA: As opções AM/PM afetam ligeiramente o desempenho em algumas plataformas."
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS,
|
||||
"AAAA/MM/DD - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM,
|
||||
"AAAA/MM/DD - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD,
|
||||
"AAAA/MM/DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YM,
|
||||
"AAAA/MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS,
|
||||
"MM/DD/AAAA - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM,
|
||||
"MM/DD/AAAA - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM,
|
||||
"MM/DD - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY,
|
||||
"MM/DD/AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD,
|
||||
"MM/DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS,
|
||||
"DD/MM/AAAA - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM,
|
||||
"DD/MM/AAAA - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM,
|
||||
"DD/MM - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY,
|
||||
"DD/MM/AAAA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM,
|
||||
"DD/MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS_AM_PM,
|
||||
"AAAA/MM/DD - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM_AM_PM,
|
||||
"AAAA/MM/DD - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS_AM_PM,
|
||||
"MM/DD/AAAA - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM_AM_PM,
|
||||
"MM/DD/AAAA - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM_AM_PM,
|
||||
"MM/DD - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"DD/MM/AAAA - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"DD/MM/AAAA - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM_AM_PM,
|
||||
"DD/MM - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_FUZZY_ARCHIVE_MATCH,
|
||||
"Correspondência de arquivos difusos"
|
||||
|
@ -3160,107 +3160,107 @@ MSG_HASH(
|
||||
"Menü içindeki tarih ve/veya saatin stilini değiştir."
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
"YYYY-AA-GG SS:DD:SN"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
"YYYY-AA-GG SS:DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
"YYYY-AA-GG"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
"YYYY-AA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
"AA-GG-YYYY SS:DD:SN"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
"AA-GG-YYYY SS:DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
"AA-GG SS:DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
"AA-GG-YYYY"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
"AA-GG"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
"GG/AA/YYYY SS:DD:SN"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
"GG-AA-YYYY SS:DD:SN"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
"GG/AA/YYYY SS:DD"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
"GG-AA-YYYY SS:DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
"GG/AA SS:DD"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
"GG-AA SS:DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
"GG/AA/YYYY"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
"GG-AA-YYYY"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
"GG/AA"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
"GG-AA"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
"SS:DD:SN"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
"SS:DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
"YYYY-AA-GG SS:DD:SN (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
"YYYY-AA-GG SS:DD (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
"AA-GG-YYYY SS:DD:SN (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
"AA-GG-YYYY SS:DD (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
"AA-GG SS:DD (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"GG/AA/YYYY SS:DD:SN (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
"GG-AA-YYYY SS:DD:SN (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"GG/AA/YYYY SS:DD (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
"GG-AA-YYYY SS:DD (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
"GG/AA SS:DD (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
"GG-AA SS:DD (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
"SS:DD:SN (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
"SS:DD (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
|
@ -6926,197 +6926,109 @@ MSG_HASH(
|
||||
"Late"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
"YYYY-MM-DD HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
"YYYY-MM-DD HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
"YYYY-MM-DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
"YYYY-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
"MM-DD-YYYY HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
"MM-DD-YYYY HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
"MM-DD HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
"MM-DD-YYYY"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
"MM-DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
"DD/MM/YYYY HH:MM:SS"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
"DD-MM-YYYY HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
"DD/MM/YYYY HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
"DD-MM-YYYY HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
"DD/MM HH:MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
"DD-MM HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
"DD/MM/YYYY"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
"DD-MM-YYYY"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
"DD/MM"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
"DD-MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
"HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
"HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
"YYYY-MM-DD HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
"YYYY-MM-DD HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
"MM-DD-YYYY HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
"MM-DD-YYYY HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
"MM/DD HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
"MM-DD HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"DD/MM/YYYY HH:MM:SS (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
"DD-MM-YYYY HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"DD/MM/YYYY HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
"DD-MM-YYYY HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
"DD/MM HH:MM (AM/PM)"
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
"DD-MM HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
"HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
"HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS,
|
||||
"YYYY/MM/DD - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM,
|
||||
"YYYY/MM/DD - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD,
|
||||
"YYYY/MM/DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YM,
|
||||
"YYYY/MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS,
|
||||
"MM/DD/YYYY - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM,
|
||||
"MM/DD/YYYY - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM,
|
||||
"MM/DD - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY,
|
||||
"MM/DD/YYYY"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD,
|
||||
"MM/DD"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS,
|
||||
"DD/MM/YYYY - HH:MM:SS"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM,
|
||||
"DD/MM/YYYY - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM,
|
||||
"DD/MM - HH:MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY,
|
||||
"DD/MM/YYYY"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM,
|
||||
"DD/MM"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS_AM_PM,
|
||||
"YYYY/MM/DD - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM_AM_PM,
|
||||
"YYYY/MM/DD - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS_AM_PM,
|
||||
"MM/DD/YYYY - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM_AM_PM,
|
||||
"MM/DD/YYYY - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM_AM_PM,
|
||||
"MM/DD - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
"DD/MM/YYYY - HH:MM:SS (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
"DD/MM/YYYY - HH:MM (AM/PM)"
|
||||
)
|
||||
MSG_HASH(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM_AM_PM,
|
||||
"DD/MM - HH:MM (AM/PM)"
|
||||
)
|
||||
|
||||
/* RGUI: Settings > User Interface > Appearance */
|
||||
|
||||
|
@ -103,16 +103,16 @@ enum menu_timedate_style_type
|
||||
MENU_TIMEDATE_STYLE_DDMM,
|
||||
MENU_TIMEDATE_STYLE_HMS,
|
||||
MENU_TIMEDATE_STYLE_HM,
|
||||
MENU_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
MENU_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
MENU_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
MENU_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
MENU_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_TIMEDATE_STYLE_YMD_HMS_AMPM,
|
||||
MENU_TIMEDATE_STYLE_YMD_HM_AMPM,
|
||||
MENU_TIMEDATE_STYLE_MDYYYY_HMS_AMPM,
|
||||
MENU_TIMEDATE_STYLE_MDYYYY_HM_AMPM,
|
||||
MENU_TIMEDATE_STYLE_MD_HM_AMPM,
|
||||
MENU_TIMEDATE_STYLE_DDMMYYYY_HMS_AMPM,
|
||||
MENU_TIMEDATE_STYLE_DDMMYYYY_HM_AMPM,
|
||||
MENU_TIMEDATE_STYLE_DDMM_HM_AMPM,
|
||||
MENU_TIMEDATE_STYLE_HMS_AMPM,
|
||||
MENU_TIMEDATE_STYLE_HM_AMPM,
|
||||
MENU_TIMEDATE_STYLE_LAST
|
||||
};
|
||||
|
||||
|
@ -2302,9 +2302,9 @@ void menu_display_timedate(gfx_display_ctx_datetime_t *datetime)
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%m-%d-%Y %H:%M", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MD_HM: /* MM/DD HH:MM */
|
||||
case MENU_TIMEDATE_STYLE_MD_HM: /* MM-DD HH:MM */
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%m/%d %H:%M", tm_);
|
||||
"%m-%d %H:%M", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY: /* MM-DD-YYYY */
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
@ -2314,25 +2314,25 @@ void menu_display_timedate(gfx_display_ctx_datetime_t *datetime)
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%m-%d", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HMS: /* DD/MM/YYYY HH:MM:SS */
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HMS: /* DD-MM-YYYY HH:MM:SS */
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%d/%m/%Y %H:%M:%S", tm_);
|
||||
"%d-%m-%Y %H:%M:%S", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HM: /* DD/MM/YYYY HH:MM */
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HM: /* DD-MM-YYYY HH:MM */
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%d/%m/%Y %H:%M", tm_);
|
||||
"%d-%m-%Y %H:%M", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMM_HM: /* DD/MM HH:MM */
|
||||
case MENU_TIMEDATE_STYLE_DDMM_HM: /* DD-MM HH:MM */
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%d/%m %H:%M", tm_);
|
||||
"%d-%m %H:%M", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY: /* DD/MM/YYYY */
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY: /* DD-MM-YYYY */
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%d/%m/%Y", tm_);
|
||||
"%d-%m-%Y", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMM: /* DD/MM */
|
||||
case MENU_TIMEDATE_STYLE_DDMM: /* DD-MM */
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%d/%m", tm_);
|
||||
"%d-%m", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_HMS: /* HH:MM:SS */
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
@ -2342,43 +2342,43 @@ void menu_display_timedate(gfx_display_ctx_datetime_t *datetime)
|
||||
strftime(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%H:%M", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_YMD_HMS_AM_PM: /* YYYY-MM-DD HH:MM:SS (am/pm) */
|
||||
case MENU_TIMEDATE_STYLE_YMD_HMS_AMPM: /* YYYY-MM-DD HH:MM:SS (AM/PM) */
|
||||
strftime_am_pm(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%Y-%m-%d %I:%M:%S %p", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_YMD_HM_AM_PM: /* YYYY-MM-DD HH:MM (am/pm) */
|
||||
case MENU_TIMEDATE_STYLE_YMD_HM_AMPM: /* YYYY-MM-DD HH:MM (AM/PM) */
|
||||
strftime_am_pm(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%Y-%m-%d %I:%M %p", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM: /* MM-DD-YYYY HH:MM:SS (am/pm) */
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY_HMS_AMPM: /* MM-DD-YYYY HH:MM:SS (AM/PM) */
|
||||
strftime_am_pm(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%m-%d-%Y %I:%M:%S %p", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY_HM_AM_PM: /* MM-DD-YYYY HH:MM (am/pm) */
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY_HM_AMPM: /* MM-DD-YYYY HH:MM (AM/PM) */
|
||||
strftime_am_pm(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%m-%d-%Y %I:%M %p", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MD_HM_AM_PM: /* MM/DD HH:MM (am/pm) */
|
||||
case MENU_TIMEDATE_STYLE_MD_HM_AMPM: /* MM-DD HH:MM (AM/PM) */
|
||||
strftime_am_pm(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%m/%d %I:%M %p", tm_);
|
||||
"%m-%d %I:%M %p", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM: /* DD/MM/YYYY HH:MM:SS (am/pm) */
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HMS_AMPM: /* DD-MM-YYYY HH:MM:SS (AM/PM) */
|
||||
strftime_am_pm(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%d/%m/%Y %I:%M:%S %p", tm_);
|
||||
"%d-%m-%Y %I:%M:%S %p", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM: /* DD/MM/YYYY HH:MM (am/pm) */
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HM_AMPM: /* DD-MM-YYYY HH:MM (AM/PM) */
|
||||
strftime_am_pm(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%d/%m/%Y %I:%M %p", tm_);
|
||||
"%d-%m-%Y %I:%M %p", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMM_HM_AM_PM: /* DD/MM HH:MM (am/pm) */
|
||||
case MENU_TIMEDATE_STYLE_DDMM_HM_AMPM: /* DD-MM HH:MM (AM/PM) */
|
||||
strftime_am_pm(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%d/%m %I:%M %p", tm_);
|
||||
"%d-%m %I:%M %p", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_HMS_AM_PM: /* HH:MM:SS (am/pm) */
|
||||
case MENU_TIMEDATE_STYLE_HMS_AMPM: /* HH:MM:SS (AM/PM) */
|
||||
strftime_am_pm(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%I:%M:%S %p", tm_);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_HM_AM_PM: /* HH:MM (am/pm) */
|
||||
case MENU_TIMEDATE_STYLE_HM_AMPM: /* HH:MM (AM/PM) */
|
||||
strftime_am_pm(menu_st->datetime_cache, sizeof(menu_st->datetime_cache),
|
||||
"%I:%M %p", tm_);
|
||||
break;
|
||||
|
@ -3193,129 +3193,129 @@ static void setting_get_string_representation_uint_menu_timedate_style(
|
||||
{
|
||||
case MENU_TIMEDATE_STYLE_YMD_HMS:
|
||||
strlcpy(s, msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_YMD_HM:
|
||||
strlcpy(s, msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_YMD:
|
||||
strlcpy(s, msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_YM:
|
||||
strlcpy(s, msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY_HMS:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY_HM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MD_HM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MD:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HMS:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMM_HM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_HMS:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_HM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_YMD_HMS_AM_PM:
|
||||
case MENU_TIMEDATE_STYLE_YMD_HMS_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_YMD_HM_AM_PM:
|
||||
case MENU_TIMEDATE_STYLE_YMD_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM:
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY_HMS_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY_HM_AM_PM:
|
||||
case MENU_TIMEDATE_STYLE_MDYYYY_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_MD_HM_AM_PM:
|
||||
case MENU_TIMEDATE_STYLE_MD_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM:
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HMS_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM:
|
||||
case MENU_TIMEDATE_STYLE_DDMMYYYY_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_DDMM_HM_AM_PM:
|
||||
case MENU_TIMEDATE_STYLE_DDMM_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_HMS_AM_PM:
|
||||
case MENU_TIMEDATE_STYLE_HMS_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM), len);
|
||||
break;
|
||||
case MENU_TIMEDATE_STYLE_HM_AM_PM:
|
||||
case MENU_TIMEDATE_STYLE_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM), len);
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM), len);
|
||||
break;
|
||||
}
|
||||
}
|
||||
@ -4547,133 +4547,133 @@ static void setting_get_string_representation_uint_playlist_sublabel_last_played
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HMS:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HMS:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MD_HM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MD:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HMS:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMM_HM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HMS_AM_PM:
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HMS_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS_AM_PM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HM_AM_PM:
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM_AM_PM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HMS_AM_PM:
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HMS_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS_AM_PM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HM_AM_PM:
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM_AM_PM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MD_HM_AM_PM:
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MD_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM_AM_PM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AM_PM:
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AM_PM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HM_AM_PM:
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM_AM_PM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM),
|
||||
len);
|
||||
break;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMM_HM_AM_PM:
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMM_HM_AMPM:
|
||||
strlcpy(s,
|
||||
msg_hash_to_str(
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM_AM_PM),
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM),
|
||||
len);
|
||||
break;
|
||||
}
|
||||
|
75
msg_hash.h
75
msg_hash.h
@ -2662,32 +2662,32 @@ enum msg_hash_enums
|
||||
MSG_CHEAT_SEARCH_DELETE_MATCH_SUCCESS,
|
||||
MSG_CHEEVOS_HARDCORE_MODE_DISABLED,
|
||||
MSG_CHEEVOS_HARDCORE_MODE_DISABLED_CHEAT,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_MD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_DDMM_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_STYLE_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HMS_AMPM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_YMD_HM_AMPM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HMS_AMPM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MDYYYY_HM_AMPM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_MD_HM_AMPM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HMS_AMPM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMMYYYY_HM_AMPM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_DDMM_HM_AMPM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HMS_AMPM,
|
||||
MENU_ENUM_LABEL_VALUE_TIMEDATE_HM_AMPM,
|
||||
|
||||
MENU_ENUM_LABEL_SWITCH_GPU_PROFILE,
|
||||
MENU_ENUM_LABEL_VALUE_SWITCH_GPU_PROFILE,
|
||||
@ -2735,29 +2735,6 @@ enum msg_hash_enums
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_RUNTIME_PER_CORE,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_RUNTIME_AGGREGATE,
|
||||
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_YMD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MDYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_MD_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED_STYLE_DDMM_HM_AM_PM,
|
||||
|
||||
MENU_LABEL(HELP_SEND_DEBUG_INFO),
|
||||
MENU_ENUM_LABEL_VALUE_HELP_SEND_DEBUG_INFO_DESC,
|
||||
|
||||
|
@ -707,43 +707,43 @@ void runtime_log_get_last_played_str(runtime_log_t *runtime_log,
|
||||
* > These require extra work, due to AM/PM localisation */
|
||||
switch (timedate_style)
|
||||
{
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HMS_AM_PM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %Y/%m/%d - %I:%M:%S %p");
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HMS_AMPM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %Y-%m-%d %I:%M:%S %p");
|
||||
strlcpy(str, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED), len);
|
||||
strlcat(str, tmp, len);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HM_AM_PM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %Y/%m/%d - %I:%M %p");
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HM_AMPM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %Y-%m-%d %I:%M %p");
|
||||
strlcpy(str, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED), len);
|
||||
strlcat(str, tmp, len);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HMS_AM_PM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %m/%d/%Y - %I:%M:%S %p");
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HMS_AMPM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %m-%d-%Y %I:%M:%S %p");
|
||||
strlcpy(str, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED), len);
|
||||
strlcat(str, tmp, len);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HM_AM_PM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %m/%d/%Y - %I:%M %p");
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HM_AMPM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %m-%d-%Y %I:%M %p");
|
||||
strlcpy(str, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED), len);
|
||||
strlcat(str, tmp, len);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MD_HM_AM_PM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %m/%d - %I:%M %p");
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MD_HM_AMPM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %m-%d %I:%M %p");
|
||||
strlcpy(str, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED), len);
|
||||
strlcat(str, tmp, len);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AM_PM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %d/%m/%Y - %I:%M:%S %p");
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AMPM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %d-%m-%Y %I:%M:%S %p");
|
||||
strlcpy(str, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED), len);
|
||||
strlcat(str, tmp, len);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HM_AM_PM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %d/%m/%Y - %I:%M %p");
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HM_AMPM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %d-%m-%Y %I:%M %p");
|
||||
strlcpy(str, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED), len);
|
||||
strlcat(str, tmp, len);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMM_HM_AM_PM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %d/%m - %I:%M %p");
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMM_HM_AMPM:
|
||||
last_played_strftime(runtime_log, tmp, sizeof(tmp), " %d-%m %I:%M %p");
|
||||
strlcpy(str, msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED), len);
|
||||
strlcat(str, tmp, len);
|
||||
return;
|
||||
@ -755,80 +755,80 @@ void runtime_log_get_last_played_str(runtime_log_t *runtime_log,
|
||||
switch (timedate_style)
|
||||
{
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HM:
|
||||
n = snprintf(str, len, "%s %04u/%02u/%02u - %02u:%02u",
|
||||
n = snprintf(str, len, "%s %04u-%02u-%02u %02u:%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.year, runtime_log->last_played.month, runtime_log->last_played.day,
|
||||
runtime_log->last_played.hour, runtime_log->last_played.minute);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD:
|
||||
n = snprintf(str, len, "%s %04u/%02u/%02u",
|
||||
n = snprintf(str, len, "%s %04u-%02u-%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.year, runtime_log->last_played.month, runtime_log->last_played.day);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YM:
|
||||
n = snprintf(str, len, "%s %04u/%02u",
|
||||
n = snprintf(str, len, "%s %04u-%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.year, runtime_log->last_played.month);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HMS:
|
||||
n = snprintf(str, len, "%s %02u/%02u/%04u - %02u:%02u:%02u",
|
||||
n = snprintf(str, len, "%s %02u-%02u-%04u %02u:%02u:%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.month, runtime_log->last_played.day, runtime_log->last_played.year,
|
||||
runtime_log->last_played.hour, runtime_log->last_played.minute, runtime_log->last_played.second);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HM:
|
||||
n = snprintf(str, len, "%s %02u/%02u/%04u - %02u:%02u",
|
||||
n = snprintf(str, len, "%s %02u-%02u-%04u %02u:%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.month, runtime_log->last_played.day, runtime_log->last_played.year,
|
||||
runtime_log->last_played.hour, runtime_log->last_played.minute);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MD_HM:
|
||||
n = snprintf(str, len, "%s %02u/%02u - %02u:%02u",
|
||||
n = snprintf(str, len, "%s %02u-%02u %02u:%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.month, runtime_log->last_played.day,
|
||||
runtime_log->last_played.hour, runtime_log->last_played.minute);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MDYYYY:
|
||||
n = snprintf(str, len, "%s %02u/%02u/%04u",
|
||||
n = snprintf(str, len, "%s %02u-%02u-%04u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.month, runtime_log->last_played.day, runtime_log->last_played.year);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_MD:
|
||||
n = snprintf(str, len, "%s %02u/%02u",
|
||||
n = snprintf(str, len, "%s %02u-%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.month, runtime_log->last_played.day);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HMS:
|
||||
n = snprintf(str, len, "%s %02u/%02u/%04u - %02u:%02u:%02u",
|
||||
n = snprintf(str, len, "%s %02u-%02u-%04u %02u:%02u:%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.day, runtime_log->last_played.month, runtime_log->last_played.year,
|
||||
runtime_log->last_played.hour, runtime_log->last_played.minute, runtime_log->last_played.second);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HM:
|
||||
n = snprintf(str, len, "%s %02u/%02u/%04u - %02u:%02u",
|
||||
n = snprintf(str, len, "%s %02u-%02u-%04u %02u:%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.day, runtime_log->last_played.month, runtime_log->last_played.year,
|
||||
runtime_log->last_played.hour, runtime_log->last_played.minute);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMM_HM:
|
||||
n = snprintf(str, len, "%s %02u/%02u - %02u:%02u",
|
||||
n = snprintf(str, len, "%s %02u-%02u %02u:%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.day, runtime_log->last_played.month,
|
||||
runtime_log->last_played.hour, runtime_log->last_played.minute);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY:
|
||||
n = snprintf(str, len, "%s %02u/%02u/%04u",
|
||||
n = snprintf(str, len, "%s %02u-%02u-%04u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.day, runtime_log->last_played.month, runtime_log->last_played.year);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_DDMM:
|
||||
n = snprintf(str, len, "%s %02u/%02u",
|
||||
n = snprintf(str, len, "%s %02u-%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.day, runtime_log->last_played.month);
|
||||
return;
|
||||
case PLAYLIST_LAST_PLAYED_STYLE_YMD_HMS:
|
||||
default:
|
||||
n = snprintf(str, len, "%s %04u/%02u/%02u - %02u:%02u:%02u",
|
||||
n = snprintf(str, len, "%s %04u-%02u-%02u %02u:%02u:%02u",
|
||||
msg_hash_to_str(MENU_ENUM_LABEL_VALUE_PLAYLIST_SUBLABEL_LAST_PLAYED),
|
||||
runtime_log->last_played.year, runtime_log->last_played.month, runtime_log->last_played.day,
|
||||
runtime_log->last_played.hour, runtime_log->last_played.minute, runtime_log->last_played.second);
|
||||
|
@ -73,14 +73,14 @@ enum playlist_sublabel_last_played_style_type
|
||||
PLAYLIST_LAST_PLAYED_STYLE_DDMM_HM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_DDMM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_YMD_HMS_AM_PM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_YMD_HM_AM_PM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HMS_AM_PM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HM_AM_PM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_MD_HM_AM_PM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AM_PM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HM_AM_PM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_DDMM_HM_AM_PM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_YMD_HMS_AMPM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_YMD_HM_AMPM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HMS_AMPM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_MDYYYY_HM_AMPM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_MD_HM_AMPM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HMS_AMPM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_DDMMYYYY_HM_AMPM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_DDMM_HM_AMPM,
|
||||
PLAYLIST_LAST_PLAYED_STYLE_LAST
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user