diff options
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/textreader/BookPager.java')
-rw-r--r-- | Essentials/src/com/earth2me/essentials/textreader/BookPager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/textreader/BookPager.java b/Essentials/src/com/earth2me/essentials/textreader/BookPager.java index aacd3a038..311f60863 100644 --- a/Essentials/src/com/earth2me/essentials/textreader/BookPager.java +++ b/Essentials/src/com/earth2me/essentials/textreader/BookPager.java @@ -1,6 +1,6 @@ package com.earth2me.essentials.textreader; -import static com.earth2me.essentials.I18n._; +import static com.earth2me.essentials.I18n.tl; import java.util.ArrayList; import java.util.List; import java.util.Locale; @@ -26,7 +26,7 @@ public class BookPager //This checks to see if we have the chapter in the index if (!bookmarks.containsKey(pageStr.toLowerCase(Locale.ENGLISH))) { - throw new Exception(_("infoUnknownChapter")); + throw new Exception(tl("infoUnknownChapter")); } //Since we have a valid chapter, count the number of lines in the chapter |