Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: chrome/content/survey.xul

Issue 8382011: Applied changes from emailed code review (Closed)
Patch Set: Created Sept. 18, 2012, 2:06 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/content/survey.xul
===================================================================
--- a/chrome/content/survey.xul
+++ b/chrome/content/survey.xul
@@ -6,10 +6,11 @@
<?xml-stylesheet type="text/css" href="chrome://global/skin/global.css"?>
<?xml-stylesheet type="text/css" href="chrome://url-fixer/skin/survey.css"?>
-<!DOCTYPE overlay SYSTEM "chrome://url-fixer/locale/locale.dtd">
+<!DOCTYPE overlay SYSTEM "chrome://url-fixer/locale/survey.dtd">
<panel
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
id="survey"
+ title="&urlfixer.survey.title;"
type="arrow"
orient="vertical"
onblur="window.close();"
@@ -21,13 +22,13 @@
<image id="icon"/>
</vbox>
<vbox id="question_container" pack="center">
- <description id="question"></description>
- <description id="note"></description>
+ <description id="question">&urlfixer.survey.question;</description>
+ <description>&urlfixer.survey.note;</description>
</vbox>
</hbox>
<hbox id="actions">
- <button id="accept" dlgtype="accept" onclick="onAccept();window.close();"/>
+ <button dlgtype="accept" onclick="onAccept();window.close();">&urlfixer.survey.accept;</button>
<spacer flex="1"/>
- <button id="decline" dlgtype="cancel" onclick="onCancel();window.close();"/>
+ <button dlgtype="cancel" onclick="onCancel();window.close();">&urlfixer.survey.decline;</button>
</hbox>
</panel>

Powered by Google App Engine
This is Rietveld