Added i18n to the options page (bug #1) and fixed bugs with dialogs
diff --git a/options.html b/options.html
index 9fa0223..2f0a37a 100644
--- a/options.html
+++ b/options.html
@@ -11,7 +11,7 @@
 	</head>
 	<body>
 		<div id="credits_container">
-			<a href="#credits">Credits</a>
+			<a href="#credits" id="credits"></a>
 		</div>
 
 		<h1 id="welcome"></h1>
@@ -22,7 +22,7 @@
 			<ul id="languages"></ul>
 		</div>
 		<div id="languages_footer">
-			<button id="languages_add">Add</button>
+			<button id="languages_add"></button>
 		</div>
 
 		<h2 id="otheroptionsheader"></h2>
@@ -36,22 +36,22 @@
 		<button id="save"></button>
 
 		<dialog id="languages_add_dialog">
-		  <h3>Add language</h3>
+		  <h3></h3>
 		  <div class="content_area">
-		    <label id="language_label" for="select_language">Language:</label>
+		    <label id="language_label" for="select_language"></label>
 		    <select id="select_language"></select>
 		  </div>
 		  <div class="action_buttons">
-		    <button id="languages_add_cancel">Cancel</button>
-		    <button id="languages_add_ok">OK</button>
+		    <button id="languages_add_cancel"></button>
+		    <button id="languages_add_ok"></button>
 		  </div>
 		</dialog>
 		<dialog id="credits_dialog">
-		  <h3>Credits</h3>
+		  <h3></h3>
 		  <div class="content_area">
 		  </div>
 		  <div class="action_buttons">
-		    <button id="credits_ok">OK</button>
+		    <button id="credits_ok"></button>
 		  </div>
 		</dialog>
 	</body>