i18n fails

Every 30 minute…s

Was i18n an afterthought here?

Date Published

Vendor

Microsoft logoMicrosoft

Product

Windows logo 2021Windows 11
From
English (United States)
English (United States)
System > Recovery > Quick machine recovery
Automatically check for solutions
Turn on to automatically check for remediation solutions. Turn off to ch

Options:
Once (recommended)
Every 10 minutes
Every 30 minutes
Every 1 hour
Every 2 hours
Every 3 hours
Every 6 hours
Every 12 hours
To
Japanese
日本語
システム > 回復 > クイックマシンリカバリー

解決策を自動的に確認する
修復ソリューションを自動的にチェックするには、オンにします。手動でチェックするには、オフにしてください。

選択肢:
1 回 (推奨)
10分ごとs
30分ごとs
1時間ごと
2時間ごとs
3時間ごとs
6時間ごとs
12時間ごとs
系統 > 復原 > 快速電腦復原

自動檢查解決方案
開啟以自動檢查補救解決方案。關閉以手動檢查。

選項:
一次(推薦項目)
每10分鐘s
每30分鐘s
每1個小時
每2個小時s
每3個小時s
每6個小時s
每12個小時s
系统 > 恢复 > 快速计算机恢复

自动检查解决方案
启用以自动检查以获取修正解决方案。关闭以手动检查。

选项:
一次(推荐)
每10分钟s
每30分钟s
每1小时
每2小时s
每3小时s
每6小时s
每12小时s

Speculation: the string is possibly written with FormatString(unit == "minute" ? Strings.EveryMinute : Strings.EveryHour, value) + (value == 1 ? "" : "s"), i.e. a template exists for “Every � minute” and “Every � hour”, with plurality handled by mechanically appending a letter “s” to the end of the string in the English way.

It is common to see this “add-an-s-if-not-one” pattern in applications hardcoded in English, but rarely observed in localized ones.

External links