Index: chrome/browser/resources/options/browser_options.html |
diff --git a/chrome/browser/resources/options/browser_options.html b/chrome/browser/resources/options/browser_options.html |
index 355fc40cf684260af07d991878b7afaea39dc994..8552df7f6f0c5f3c7199c35dd9e3d5578b622218 100644 |
--- a/chrome/browser/resources/options/browser_options.html |
+++ b/chrome/browser/resources/options/browser_options.html |
@@ -955,15 +955,18 @@ |
data-type="number" |
aria-labelledby="accessibility-autoclick-label" |
pref="settings.a11y.autoclick_delay_ms"> |
- <option value="200" |
+ <!-- 18n strings contain the autoclick duration; if the autoclick |
jdufault
2016/06/09 16:41:26
Missing the i in i18n
sammiequon
2016/06/10 19:30:26
Done.
|
+ timing gets changed, then the 18n strings also |
+ need to be updated. --> |
+ <option value="600" |
i18n-content="autoclickDelayExtremelyShort"></option> |
- <option value="400" |
+ <option value="800" |
i18n-content="autoclickDelayVeryShort"></option> |
- <option value="600" i18n-content="autoclickDelayShort"> |
+ <option value="1000" i18n-content="autoclickDelayShort"> |
</option> |
- <option value="800" i18n-content="autoclickDelayLong"> |
+ <option value="2000" i18n-content="autoclickDelayLong"> |
</option> |
- <option value="1000" |
+ <option value="4000" |
i18n-content="autoclickDelayVeryLong"></option> |
</select> |
<span class="controlled-setting-indicator" |