OLD | NEW |
---|---|
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/flag_descriptions.h" | 5 #include "chrome/browser/flag_descriptions.h" |
6 | 6 |
7 namespace flag_descriptions { | 7 namespace flag_descriptions { |
8 | 8 |
9 // Material Design version of chrome://bookmarks | 9 // Material Design version of chrome://bookmarks |
10 | 10 |
(...skipping 1579 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1590 const char kAutofillCreditCardUploadName[] = | 1590 const char kAutofillCreditCardUploadName[] = |
1591 "Enable offering upload of Autofilled credit cards"; | 1591 "Enable offering upload of Autofilled credit cards"; |
1592 | 1592 |
1593 const char kAutofillCreditCardUploadDescription[] = | 1593 const char kAutofillCreditCardUploadDescription[] = |
1594 "Enables a new option to upload credit cards to Google Payments for " | 1594 "Enables a new option to upload credit cards to Google Payments for " |
1595 "sync to all Chrome devices."; | 1595 "sync to all Chrome devices."; |
1596 | 1596 |
1597 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) | 1597 #endif // defined(TOOLKIT_VIEWS) || defined(OS_ANDROID) |
1598 | 1598 |
1599 const char kForceUiDirectionName[] = "Force UI direction"; | 1599 const char kForceUiDirectionName[] = "Force UI direction"; |
1600 const char kForceTextDirectionName[] = "Force text direction"; | |
msw
2017/04/28 22:04:03
ditto ordering
Kevin Bailey
2017/04/29 04:24:03
Done.
| |
1600 | 1601 |
1601 const char kForceUiDirectionDescription[] = | 1602 const char kForceUiDirectionDescription[] = |
1602 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) " | 1603 "Explicitly force the UI to left-to-right (LTR) or right-to-left (RTL) " |
1603 "mode, overriding the default direction of the UI language."; | 1604 "mode, overriding the default direction of the UI language."; |
1604 | 1605 |
1606 const char kForceTextDirectionDescription[] = | |
1607 "Explicitly force text rendering to left-to-right (LTR) or right-to-left " | |
1608 "(RTL) mode, overriding the default direction of the UI language."; | |
msw
2017/04/28 22:04:03
"overriding the per-character directionality of UI
Kevin Bailey
2017/04/29 04:24:03
Done.
| |
1609 | |
1605 const char kForceUiDirectionLtr[] = "Left-to-right"; | 1610 const char kForceUiDirectionLtr[] = "Left-to-right"; |
1606 | 1611 |
1607 const char kForceUiDirectionRtl[] = "Right-to-left"; | 1612 const char kForceUiDirectionRtl[] = "Right-to-left"; |
1608 | 1613 |
1609 #if defined(OS_WIN) || defined(OS_LINUX) | 1614 #if defined(OS_WIN) || defined(OS_LINUX) |
1610 | 1615 |
1611 const char kEnableInputImeApiName[] = "Enable Input IME API"; | 1616 const char kEnableInputImeApiName[] = "Enable Input IME API"; |
1612 | 1617 |
1613 const char kEnableInputImeApiDescription[] = | 1618 const char kEnableInputImeApiDescription[] = |
1614 "Enable the use of chrome.input.ime API."; | 1619 "Enable the use of chrome.input.ime API."; |
(...skipping 1412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
3027 #endif // defined(OS_ANDROID) | 3032 #endif // defined(OS_ANDROID) |
3028 | 3033 |
3029 const char kEnableIdleTimeSpellCheckingName[] = | 3034 const char kEnableIdleTimeSpellCheckingName[] = |
3030 "Enable idle time spell checker"; | 3035 "Enable idle time spell checker"; |
3031 | 3036 |
3032 const char kEnableIdleTimeSpellCheckingDescription[] = | 3037 const char kEnableIdleTimeSpellCheckingDescription[] = |
3033 "Make spell-checking code run only when the browser is idle, so that input " | 3038 "Make spell-checking code run only when the browser is idle, so that input " |
3034 "latency is reduced, especially when editing long articles, emails, etc."; | 3039 "latency is reduced, especially when editing long articles, emails, etc."; |
3035 | 3040 |
3036 } // namespace flag_descriptions | 3041 } // namespace flag_descriptions |
OLD | NEW |