From 67f3b38245a3606025484a47f02e56503f51fbc1 Mon Sep 17 00:00:00 2001
From: Brendan Dahl <brendan.dahl@gmail.com>
Date: Tue, 20 Nov 2012 09:19:17 -0800
Subject: [PATCH] Change keys and update wording for find wrapped strings.

---
 l10n/en-US/viewer.properties | 4 ++--
 web/viewer.js                | 8 ++++----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/l10n/en-US/viewer.properties b/l10n/en-US/viewer.properties
index 0ed13f534..b36c73cb5 100644
--- a/l10n/en-US/viewer.properties
+++ b/l10n/en-US/viewer.properties
@@ -78,8 +78,8 @@ find_next.title=Find the next occurrence of the phrase
 find_next_label=Next
 find_highlight=Highlight all
 find_match_case_label=Match case
-find_wrapped_to_bottom=Reached top of page, continued from bottom
-find_wrapped_to_top=Reached end of page, continued from top
+find_reached_top=Reached top of document, continued from bottom
+find_reached_bottom=Reached end of document, continued from top
 find_not_found=Phrase not found
 
 # Error panel labels
diff --git a/web/viewer.js b/web/viewer.js
index 0a810a85e..db6ff2f3e 100644
--- a/web/viewer.js
+++ b/web/viewer.js
@@ -624,11 +624,11 @@ var PDFFindBar = {
 
       case FindStates.FIND_WRAPPED:
         if (previous) {
-          findMsg = mozL10n.get('find_wrapped_to_bottom', null,
-                                'Reached top of page, continued from bottom');
+          findMsg = mozL10n.get('find_reached_top', null,
+                      'Reached top of document, continued from bottom');
         } else {
-          findMsg = mozL10n.get('find_wrapped_to_top', null,
-                                'Reached end of page, continued from top');
+          findMsg = mozL10n.get('find_reached_bottom', null,
+                                'Reached end of document, continued from top');
         }
         break;
     }