Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(162)

Delta Between Two Patch Sets: static/index.html

Issue 6639062: code review 6639062: tour: Internationaliztion of the user interface (Closed)
Left Patch Set: diff -r e3153ab31a06 https://code.google.com/p/go-tour Created 11 years, 5 months ago
Right Patch Set: diff -r f46743ab58c3 https://code.google.com/p/go-tour Created 11 years, 3 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « no previous file | static/tour.js » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" > 4 <meta http-equiv="Content-Type" content="text/html;charset=utf-8" >
5 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-sc ale=1.0, user-scalable=no"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-sc ale=1.0, user-scalable=no">
6 <title>A Tour of Go</title> 6 <title>A Tour of Go</title>
7 7
8 <!-- jQuery --> 8 <!-- jQuery -->
9 <script src="static/jquery.js"></script> 9 <script src="static/jquery.js"></script>
10 10
11 <!-- CodeMirror --> 11 <!-- CodeMirror -->
12 <link rel="stylesheet" href="/static/codemirror/lib/codemirror.css"> 12 <link rel="stylesheet" href="/static/codemirror/lib/codemirror.css">
13 <script src="/static/codemirror/lib/codemirror.js"></script> 13 <script src="/static/codemirror/lib/codemirror.js"></script>
14 <script src="/static/codemirror/lib/go.js"></script> 14 <script src="/static/codemirror/lib/go.js"></script>
15 15
16 <!-- Tour --> 16 <!-- Tour -->
17 <link rel="stylesheet" href="static/tour.css"> 17 <link rel="stylesheet" href="static/tour.css">
18 <script src="static/mode.js"></script> 18 <script src="static/mode.js"></script>
19 <script>
20 // Localized user interface.
21 var tr = {
22 "off": "off",
23 "on": "on",
24 "syntax": "Syntax-Highlighting",
25 "lineno": "Line-Numbers",
26 "reset": "Reset Slide",
27 "format": "Format Source Code",
28 "kill": "Kill Program",
29 "run": "Run",
30 "toc": "Table of Contents",
31 "prev": "Previous",
32 "next": "Next",
33 "waiting": "Waiting for remote server...",
34 "errcomm": "Error communicating with remote server.",
35 }
36 </script>
19 <script src="static/tour.js"></script> 37 <script src="static/tour.js"></script>
20 38
21 </head> 39 </head>
22 <body> 40 <body>
23 <div id="wrap"> 41 <div id="wrap">
24 <div id="header"> 42 <div id="header">
25 <div id="slidenum">1</div> 43 <div id="slidenum">1</div>
26 <a href="#toc" id="tocbtn" title="Table of Conte nts"></a> 44 <a href="#toc" id="tocbtn" title="Table of Conte nts"></a>
27 <h1>A Tour of Go</h1> 45 <h1>A Tour of Go</h1>
28 </div> 46 </div>
(...skipping 2173 matching lines...) Expand 10 before | Expand all | Expand 10 after
2202 </div> 2220 </div>
2203 2221
2204 <div id="workspace-bottom"> 2222 <div id="workspace-bottom">
2205 <div id="output"></div> 2223 <div id="output"></div>
2206 </div> 2224 </div>
2207 </div> 2225 </div>
2208 </div> 2226 </div>
2209 2227
2210 </body> 2228 </body>
2211 </html> 2229 </html>
LEFTRIGHT
« no previous file | static/tour.js » ('j') | Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Toggle Comments ('s')

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b