Reasons to Not Parse Localized Strings
blog.sffc.xyz
Reasons to Not Parse Localized Strings
1–10 of 49 posts
Re: Reasons to Not Parse Localized Strings
#2Re: Reasons to Not Parse Localized Strings
#3Also, I hate DOB selectors which don't allow me to manually enter the date, and default to today, and don't have a year Now I need to click at least (age - 1) * 12 on the In general, I wish more websites would use native date / number / dropdown pickers.
Workday is the worst offender here.
Re: Reasons to Not Parse Localized Strings
#4How do people who use commas as decimals disambiguate 1,004 and 1.004 without changing the precision implied by number of decimal places?
Re: Reasons to Not Parse Localized Strings
#5How do people who use commas as decimals disambiguate 1,004 and 1.004 without changing the precision implied by number of decimal places?
Which is to say, you assume it's as written, unless context suggests otherwise.
Re: Reasons to Not Parse Localized Strings
#6How do people who use commas as decimals disambiguate 1,004 and 1.004 without changing the precision implied by number of decimal places?
But it can be worse. Los Angeles, Sunday, November 2, 2025, 2:00:00 am is ambiguous. Is it PST or PDT?
Re: Reasons to Not Parse Localized Strings
#7On Windows one can change how a date is rendered, without changing the locale. I need to look up if this is propagated to browsers. Also, I hate DOB selectors which don't allow me to manually enter the date, and default to today, and don't have a year Now I need to click at least (age - 1) * 12 on the In general, I wish more websites would use native date / number / dropdown pickers. Workday is the worst offender her…
Re: Reasons to Not Parse Localized Strings
#8It can and should be, though. I feel like we should have a separate word for parsing when the rules are not well-defined - something like "fuzzy parsing" (in a similar vein to fuzzy string comparison)
Re: Reasons to Not Parse Localized Strings
#9On Windows one can change how a date is rendered, without changing the locale. I need to look up if this is propagated to browsers. Also, I hate DOB selectors which don't allow me to manually enter the date, and default to today, and don't have a year Now I need to click at least (age - 1) * 12 on the In general, I wish more websites would use native date / number / dropdown pickers. Workday is the worst offender her…
Re: Reasons to Not Parse Localized Strings
#10How do people who use commas as decimals disambiguate 1,004 and 1.004 without changing the precision implied by number of decimal places?