Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Side by Side Diff: chrome/browser/resources/options/language_add_language_overlay.html

Issue 6296017: dom-ui settings: enable languages & spell checker settings for all platforms.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: chromeos namespace fix, part 4 Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <div class="page hidden" id="add-language-overlay-page"> 1 <div class="page hidden" id="add-language-overlay-page">
2 <h1 i18n-content="add_language_title"></h1>
satorux1 2011/01/21 01:38:46 Please move this to inside of <if expr="not pp_ifd
3 <if expr="pp_ifdef('chromeos')">
2 <ul id="add-language-overlay-language-list"> 4 <ul id="add-language-overlay-language-list">
3 </ul> 5 </ul>
4 <button id="add-language-overlay-cancel-button" 6 <button id="add-language-overlay-cancel-button"
5 i18n-content="cancel"></button> 7 i18n-content="cancel"></button>
8 </if>
9 <if expr="not pp_ifdef('chromeos')">
satorux1 2011/01/20 10:40:33 Why cannot we share the same UI? The Chrome OS ver
csilv 2011/01/20 20:09:55 The two column UI works well on ChromeOS, but on t
satorux1 2011/01/21 01:38:46 Thank you for the explanation. Didn't know that we
10 <label>
11 <span i18n-content="add_language_select_label"></span>
12 <select id="add-language-overlay-language-list">
13 </select>
James Hawkins 2011/01/20 03:11:08 Fits on the line above.
csilv 2011/01/20 20:09:55 Done.
14 </label>
15 <div class="action-area">
16 <div class="button-strip">
17 <button id="add-language-overlay-cancel-button" i18n-content="cancel">
18 </button>
19 <button id="add-language-overlay-ok-button" i18n-content="ok">
20 </button>
James Hawkins 2011/01/20 03:11:08 Probably fits on the line above.
csilv 2011/01/20 20:09:55 Done.
21 </div>
22 </div>
23 </if>
6 </div> 24 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698