From fc2a264df5071a7febbd14ff5995c3c1d7776a9a Mon Sep 17 00:00:00 2001
From: Slávek Banko
Date: Wed, 9 Jan 2019 20:15:15 +0100
Subject: Add CMakeL10n rules. Update translation template.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Signed-off-by: Slávek Banko
(cherry picked from commit f195bc821512f91cb87780f0ff0d99641cf27274)
---
CMakeL10n.txt | 23 +
Makefile.am | 2 +-
bibletime/CMakeL10n.txt | 6 +
docs/CMakeL10n.txt | 3 +
docs/handbook/CMakeL10n.txt | 3 +
docs/handbook/unicode/CMakeL10n.txt | 14 +
docs/howto/CMakeL10n.txt | 3 +
docs/howto/unicode/CMakeL10n.txt | 14 +
pot/Makefile.am | 30 -
pot/extractrc | 74 -
pot/handbook.pot | 2413 -----------------------------
pot/howto.pot | 1924 -----------------------
pot/messages.pot | 2823 ---------------------------------
pot/preparetips | 45 -
translations/Makefile.am | 30 +
translations/extractrc | 74 +
translations/handbook.pot | 2291 +++++++++++++++++++++++++++
translations/howto.pot | 1682 ++++++++++++++++++++
translations/messages.pot | 2921 +++++++++++++++++++++++++++++++++++
translations/preparetips | 45 +
20 files changed, 7110 insertions(+), 7310 deletions(-)
create mode 100644 CMakeL10n.txt
create mode 100644 bibletime/CMakeL10n.txt
create mode 100644 docs/CMakeL10n.txt
create mode 100644 docs/handbook/CMakeL10n.txt
create mode 100644 docs/handbook/unicode/CMakeL10n.txt
create mode 100644 docs/howto/CMakeL10n.txt
create mode 100644 docs/howto/unicode/CMakeL10n.txt
delete mode 100644 pot/Makefile.am
delete mode 100644 pot/extractrc
delete mode 100644 pot/handbook.pot
delete mode 100644 pot/howto.pot
delete mode 100644 pot/messages.pot
delete mode 100755 pot/preparetips
create mode 100644 translations/Makefile.am
create mode 100644 translations/extractrc
create mode 100644 translations/handbook.pot
create mode 100644 translations/howto.pot
create mode 100644 translations/messages.pot
create mode 100755 translations/preparetips
diff --git a/CMakeL10n.txt b/CMakeL10n.txt
new file mode 100644
index 0000000..9730a56
--- /dev/null
+++ b/CMakeL10n.txt
@@ -0,0 +1,23 @@
+#################################################
+#
+# (C) 2019 Slávek Banko
+# slavek.banko (AT) axis.cz
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+cmake_minimum_required( VERSION 2.8 )
+
+
+##### include our cmake modules #################
+
+set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" )
+include( TDEL10n )
+
+
+##### create translation templates ##############
+
+tde_l10n_auto_add_subdirectories( )
diff --git a/Makefile.am b/Makefile.am
index 9166b60..9d58960 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,5 +1,5 @@
KDE_OPTIONS = noautodist
-SUBDIRS = bibletime pot docs .
+SUBDIRS = bibletime translations docs .
EXTRA_DIST = \
BibleTime.tdevelop \
diff --git a/bibletime/CMakeL10n.txt b/bibletime/CMakeL10n.txt
new file mode 100644
index 0000000..7f71487
--- /dev/null
+++ b/bibletime/CMakeL10n.txt
@@ -0,0 +1,6 @@
+##### create translation templates ##############
+
+tde_l10n_create_template(
+ CATALOG "messages"
+ SOURCES "." "../docs/tips"
+)
diff --git a/docs/CMakeL10n.txt b/docs/CMakeL10n.txt
new file mode 100644
index 0000000..b585ce4
--- /dev/null
+++ b/docs/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_auto_add_subdirectories( )
diff --git a/docs/handbook/CMakeL10n.txt b/docs/handbook/CMakeL10n.txt
new file mode 100644
index 0000000..b585ce4
--- /dev/null
+++ b/docs/handbook/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_auto_add_subdirectories( )
diff --git a/docs/handbook/unicode/CMakeL10n.txt b/docs/handbook/unicode/CMakeL10n.txt
new file mode 100644
index 0000000..03d866a
--- /dev/null
+++ b/docs/handbook/unicode/CMakeL10n.txt
@@ -0,0 +1,14 @@
+##### create translation templates ##############
+
+file( GLOB _docs
+ RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}/*.docbook
+)
+list( SORT _docs )
+list( REMOVE_ITEM _docs "index.docbook" )
+list( INSERT _docs 0 "index.docbook" )
+
+tde_l10n_create_template(
+ CATALOG "handbook"
+ SOURCES ${_docs}
+)
diff --git a/docs/howto/CMakeL10n.txt b/docs/howto/CMakeL10n.txt
new file mode 100644
index 0000000..b585ce4
--- /dev/null
+++ b/docs/howto/CMakeL10n.txt
@@ -0,0 +1,3 @@
+##### create translation templates ##############
+
+tde_l10n_auto_add_subdirectories( )
diff --git a/docs/howto/unicode/CMakeL10n.txt b/docs/howto/unicode/CMakeL10n.txt
new file mode 100644
index 0000000..4dfa67b
--- /dev/null
+++ b/docs/howto/unicode/CMakeL10n.txt
@@ -0,0 +1,14 @@
+##### create translation templates ##############
+
+file( GLOB _docs
+ RELATIVE ${CMAKE_CURRENT_SOURCE_DIR}
+ ${CMAKE_CURRENT_SOURCE_DIR}/*.docbook
+)
+list( SORT _docs )
+list( REMOVE_ITEM _docs "index.docbook" )
+list( INSERT _docs 0 "index.docbook" )
+
+tde_l10n_create_template(
+ CATALOG "howto"
+ SOURCES ${_docs}
+)
diff --git a/pot/Makefile.am b/pot/Makefile.am
deleted file mode 100644
index 7a4c458..0000000
--- a/pot/Makefile.am
+++ /dev/null
@@ -1,30 +0,0 @@
-# make messages.pot
-# the -x is for skipping messages already translated in tdelibs
-
-messages:
- echo Preparing documentation files handbook.pot and howto.pot...
- mkdir -p tmp/
- for XML_FILE in `cd ..; find docs -name "*.docbook"`; do\
- echo " creating temporary POT file tmp/$$XML_FILE.pot";\
- (cd tmp; mkdir -p `dirname $$XML_FILE.pot`; xml2pot ../../$$XML_FILE > $$XML_FILE.pot;)\
- done
- echo merging POT files...
- msgcat --force-po -o handbook.pot `find tmp/docs/handbook -name "*.pot"`
- msgcat --force-po -o howto.pot `find tmp/docs/howto/ -name "*.pot"`
- rm -r ./tmp/
- echo Finished creating handbook.pot and howto.pot.\n
- echo Preparing program messages file messages.pot...
- echo Before we start, run make to generate all the auto-generated .cpp and .h files
- (sleep 5; cd ..; make) #needed for .ui files
- echo Now extract the messages...
- perl ./extractrc ../bibletime/xml/*.rc > ../bibletime/rc-dummy.cpp
- perl ./preparetips ../docs/tips > ../bibletime/tips-dummy.cpp
- $(XGETTEXT) -C -F -L C++ -ki18n -kI18N_NOOP -x `tde-config --prefix`/include/tde/kde.pot `find .. -type f -not -name clanguagemgr.cpp -and -name \*.cpp -or -name \*.h -or -name \*.cc` -o messages.pot
- recode iso8859-1..utf-8 messages.pot
- cp ../bibletime/backend/clanguagemgr.cpp clanguagemgr.cpp
- $(XGETTEXT) --from-code=utf-8 --join-existing -C -F -L C++ -ki18n -kI18N_NOOP -x `tde-config --prefix`/include/tde/kde.pot clanguagemgr.cpp -o messages.pot
- rm clanguagemgr.cpp
- echo Finished creating messages.pot.
-
-
-
diff --git a/pot/extractrc b/pot/extractrc
deleted file mode 100644
index ab9c5ca..0000000
--- a/pot/extractrc
+++ /dev/null
@@ -1,74 +0,0 @@
-#! /usr/bin/perl
-
-# NOTE: this script is part of the KDE SDK and added to KDevelop to support KDE 2 application development.
-# The original is located in the KDE CVS module tdesdk/scripts. It gets installed in the same directory as
-# the KDevelop binary to be in your PATH.
-#
-# What it does is extract the strings in an application´s .rc file, e.g. testappui.rc, and writes into the pot file
-# where the translations are build with (po-files)
-#
-# Added to KDevelop 2000-10-29, Ralf Nolden (nolden@kde.org)
-
-$linenr = 0;
-$filename = "";
-@filenames = ();
-
-sub writeoutstring($)
-{
- print STDOUT "i18n(\"@_[0]\");\n";
-}
-
-while (defined ($ARGV[0]))
-{
- $_ = shift;
- $filename = $_; # maybe check for options
-
-if (! $filename) {
- print STDERR "no file to open\n";
- exit 1;
-}
-
-$string = "";
-$intext = 0;
-
-open(FILE, $filename);
-while ( ) {
- $linenr++;
-
- $string .= $_;
- chomp($string);
-
- $textstring = '([tT][eE][xX][tT]|string)>';
-
- if ($intext == 0) {
- if ($string =~ /<$textstring/) {
- $string =~ s/^.*<$textstring//;
- $intext = 1;
- $starting_linenr = $linenr;
- } else {
- $string = "";
- }
- }
-
- if (($intext == 1) && ($string =~ /<\/$textstring/)) {
- my $text = $string;
- $text =~ s/<\/$textstring.*$//;
- $text =~ s/<//g;
- $text =~ s/&/&/g;
- writeoutstring($text);
- $string =~ s/^.*<\/$textstring//;
- $intext = 0;
- if ($linenr != $starting_linenr) {
- print STDERR "there is floating\n";
- }
- }
-
-}
-
-if ($intext == 1) {
- print STDERR "parsing error in $filename $linenr\n";
- exit 1;
-}
-
-}
diff --git a/pot/handbook.pot b/pot/handbook.pot
deleted file mode 100644
index a9fece6..0000000
--- a/pot/handbook.pot
+++ /dev/null
@@ -1,2413 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# FIRST AUTHOR , YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2007-04-17 19:46+0000\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-xml2pot; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#: hdbk-operation.docbook:1
-#, no-c-format
-msgid "Program operation"
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:4
-#, no-c-format
-msgid "Program overview"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:6
-#, no-c-format
-msgid ""
-"This is how a typical &bibletime; session looks like: "
-" "
-"imageobject> The &bibletime; application window"
-"phrase> You can easily see the different parts "
-"of the application. The Bookshelf on the left side is used to open works and "
-"to manage your bookmarks. The little \"Mag\" window below the Bookshelf is "
-"used to display extra information that is embedded in documents. When you "
-"move your mouse over a footnote marker, for example, then the Mag will "
-"display the actual content of the footnote. The toolbar gives you quick "
-"access to important functions, and the Desk on the right side is where you "
-"do your real work."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:17
-#, no-c-format
-msgid ""
-"Let us now proceed by looking at the different parts of the application "
-"individually."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:21
-#, no-c-format
-msgid "Parts of the &bibletime; application window"
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:24
-#, no-c-format
-msgid "The Bookshelf"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:25
-#, no-c-format
-msgid ""
-"The Bookshelf lists all installed works, sorted by category and language. It "
-"also has a category called \"Bookmarks\". This is where you can store and "
-"access your own bookmarks."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:29 hdbk-operation.docbook:81
-#, no-c-format
-msgid "Reading works"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:30
-#, no-c-format
-msgid ""
-"To open a work from the bookshelf for reading, simply click with the "
-"left mouse button on the desired category "
-"(Bibles, Commentaries, Lexicons, Books, Devotionals or Glossaries) to "
-"display its contents. Then just click on one of the works to open it for "
-"reading. A read window will appear in the Desk area."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:33 hdbk-operation.docbook:59
-#, no-c-format
-msgid "Drag & Drop Works Here"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:34
-#, no-c-format
-msgid ""
-"If you are reading a certain work, and want to open another work at the "
-"passage you are reading, you can use a shortcut. Simply click with the "
-"left mouse button on the verse/passage reference "
-"(pointer changes to hand) and drag it to the Bookshelf. Drop it on the work "
-"you want to open, and it will be opened for reading at the specified "
-"location. You can also drag a verse reference into an existing read window, "
-"then it will jump to the specified location."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:40
-#, no-c-format
-msgid "Additional information about works"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:41
-#, no-c-format
-msgid ""
-"If you click with the right mouse button on the "
-"symbol of a work, you will see a menu with additional entries that are "
-"relevant for this work. \"About this work\" opens "
-"a window with lots of interesting information about the selected work. "
-"\"Unlock this work\" opens a small dialog for "
-"encrypted documents, where you can enter the unlock key to access the work. "
-"For additional information on locked works, please see this page on the "
-"Crosswire Bible Society web site."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:49 hdbk-operation.docbook:115
-#, no-c-format
-msgid "Searching in works"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:49
-#, no-c-format
-msgid ""
-"You can search in a work by clicking with the right"
-"mousebutton> mouse button on its symbol and selecting \"Search "
-"in work(s)\". By pressing &Shift; and clicking on other works "
-"you can select more than one. Then follow the same procedure to open the "
-"search dialog. You will be searching in all of these documents. A complete "
-"description of the operation of the search features can be found here."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:57
-#, no-c-format
-msgid "Working with bookmarks"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:59
-#, no-c-format
-msgid ""
-"Click with the right mouse button on the bookmark "
-"category of the bookshelf and select \"Create new folder\""
-"guimenuitem> to create a new bookmark subfolder. You can use normal drag "
-"& drop functions to drag verse references from read windows or search "
-"results to the bookmark folder, and to rearrange bookmarks between folders."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:63
-#, no-c-format
-msgid ""
-"You can also import bookmarks from other people or export bookmarks to share "
-"them. To do this, open the context menu of the bookmark "
-"folder as described above, and select \"Export bookmarks\""
-"guimenuitem>. This will bring up a dialog box for you to save the bookmark "
-"collection. You can import bookmarks in a similar way."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:65
-#, no-c-format
-msgid ""
-"You can also click with the right on folders and "
-"bookmarks to change their names and descriptions."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:70
-#, no-c-format
-msgid "The Mag(nifying glass)"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:71
-#, no-c-format
-msgid ""
-"This little window in the lower left corner of the &bibletime; window is "
-"purely passive. Whenever your mouse cursor is located over some text with "
-"additional information (e.g., Strong's numbers), then this additional "
-"information will be displayed in the Mag, and not in the text itself. Just "
-"try it out."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:76
-#, no-c-format
-msgid "The Desk"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:77
-#, no-c-format
-msgid ""
-"The Desk is where the real work with &bibletime; takes place. Here you can "
-"open works from the Bookshelf, read them, search in them, and even save your annotations in the personal "
-"commentary module (see below"
-"link>)."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:82
-#, no-c-format
-msgid ""
-"As we have already seen"
-"link>, you can open works for reading simply by clicking on their symbol in "
-"the Bookshelf. A read window will open in the Desk's area. Every read window "
-"has a toolbar. There you can find tools to navigate in the work that this "
-"read window is connected to, as well as history buttons like the ones that "
-"you know from your browser."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:87
-#, no-c-format
-msgid "Read window placement"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:88
-#, no-c-format
-msgid ""
-"Of course, you can open multiple works at the same time. There are several "
-"possibilities for arranging the read windows on the desk. Please have a look "
-"at the entry Window in the main menu. There you can see "
-"that you can either control the placement of the read windows completely "
-"yourself, or have &bibletime; handle the placement automatically. To achieve "
-"this, you have to select one of the automatic placement modes available at "
-"WindowArrangement mode"
-"guimenuitem>. Just try it out, it's simple and works."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:94
-#, no-c-format
-msgid "Editing your own commentary"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:95
-#, no-c-format
-msgid ""
-"To be able to store your own comments about parts of the Bible, you have "
-"install a certain work from the library of the Crosswire Bible Society. This work is called "
-"\"Personal commentary\"."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:97
-#, no-c-format
-msgid ""
-"If you open the personal commentary by clicking on its symbol in the "
-"Bookshelf with a left mouse button, it opens in "
-"read mode. You will not be able to edit it in this mode. Should you wish to "
-"write annotations into the personal commentary, you have to open it with the "
-"right mouse button and then select Edit "
-"this work and then either Plain text"
-"(source code editor) or HTML(basic gui wysiwyg "
-"editor)."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:101
-#, no-c-format
-msgid ""
-"If Edit this work is "
-"deactivated, please check if you have write permission for the files of the "
-"personal commentary."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:105
-#, no-c-format
-msgid ""
-"Drag&drop works here. Drop a verse reference and the text of the verse "
-"will be inserted."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:118
-#, no-c-format
-msgid "Searching text in an open read window"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:119
-#, no-c-format
-msgid ""
-"You can look for a word or phrase in the open read window (e.g. the chapter "
-"of a bible that you're reading) just like you are used to from other "
-"programs. This function can be reached either by clicking with the "
-"right mouse button and selecting "
-"Find..., or by using the hotkey &Ctrl;F. Read on to learn how you can "
-"search in entire works."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:127
-#, no-c-format
-msgid "Accessing the search dialog"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:128
-#, no-c-format
-msgid ""
-"You can search in a work by clicking with the right"
-"mousebutton> mouse button on its symbol in the Bookshelf "
-"and selecting Search in work(s). By holding "
-"&Shift; or &Ctrl; and clicking on other work's names you can select more "
-"than one. Then follow the same procedure to open the search dialog. You will "
-"be searching in all of these works at the same time."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:131
-#, no-c-format
-msgid ""
-"You can also access the search dialog by clicking on "
-"Search from the main menu, and "
-"selecting the appropriate entry."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:132
-#, no-c-format
-msgid ""
-"A third possibility to start searches is to click on the search symbol in an "
-"open read window."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:136
-#, no-c-format
-msgid "Search configuration"
-msgstr ""
-
-#. Tag: screeninfo
-#: hdbk-operation.docbook:138
-#, no-c-format
-msgid "Search Text Dialog Options Tab"
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:147
-#, no-c-format
-msgid "Selecting works"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:148
-#, no-c-format
-msgid ""
-"At the top of the options tab you will find Choose "
-"(works). If you would like to search in multiple works, click on this button "
-"and you will be offered a menu where you can select the works you want to "
-"search in."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:153
-#, no-c-format
-msgid "Using Search Scopes"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:154
-#, no-c-format
-msgid ""
-"You can narrow the scope of your search to certain parts of the Bible by "
-"selecting one of the predefined scopes from the list in Search "
-"scope. You can define your own search ranges by clicking the "
-"Setup ranges button."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:158
-#, no-c-format
-msgid "Basic Search Syntax Introduction"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:159
-#, no-c-format
-msgid ""
-"Enter search terms separated by spaces. By default the search function will "
-"return results that match any of the search terms (OR). To search for all "
-"the terms separate the terms by AND."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:160
-#, no-c-format
-msgid ""
-"You can use wildcards: '*' matches any sequence of characters, while '?' "
-"matches any single character. The use of brackets allows you to group your "
-"search terms, e.g. '(Jesus OR spirit) AND God'."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:161
-#, no-c-format
-msgid ""
-"To search text other than the main text, enter the text type followed by "
-"':', and then the search term. For example, to search for the Strong's "
-"number H8077, use 'strong:H8077'."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:162
-#, no-c-format
-msgid "Available text types:"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-operation.docbook:164
-#, no-c-format
-msgid "Prefix"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-operation.docbook:164
-#, no-c-format
-msgid "Meaning"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-operation.docbook:166
-#, no-c-format
-msgid "heading:"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-operation.docbook:166
-#, no-c-format
-msgid "searches headings"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-operation.docbook:167
-#, no-c-format
-msgid "footnote:"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-operation.docbook:167
-#, no-c-format
-msgid "searches footnotes"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-operation.docbook:168
-#, no-c-format
-msgid "strong:"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-operation.docbook:168
-#, no-c-format
-msgid "searches Strong's Numbers"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-operation.docbook:169
-#, no-c-format
-msgid "morph:"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-operation.docbook:169
-#, no-c-format
-msgid "searches morphology codes"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:171
-#, no-c-format
-msgid ""
-"BibleTime uses the Lucene search engine to perform your searches. It has "
-"many advanced features, and you can read more about it here: http://lucene."
-"apache.org/java/docs/queryparsersyntax.html"
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:178
-#, no-c-format
-msgid "Search results"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:179
-#, no-c-format
-msgid ""
-"Here you can see how many instances of the search string were found, sorted "
-"by works. Clicking on a work with the right mouse "
-"button allows you to copy, save, or print all verses that were found in a "
-"certain work at once. This also works when you click on one or more of the "
-"references to copy, save or print them. Clicking on a particular reference "
-"opens that verse up in context in the preview window below."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:183
-#, no-c-format
-msgid ""
-"Drag a reference and drop it on a work symbol on the Bookshelf to open the "
-"work at that verse in a new read window."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:185
-#, no-c-format
-msgid ""
-"Drag a reference and drop it on an open read window, and it will jump to "
-"that verse."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:186
-#, no-c-format
-msgid "Select references and drag them to the Bookshelf to create bookmarks."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:189
-#, no-c-format
-msgid "Search result analysis"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:190
-#, no-c-format
-msgid ""
-"Click on Search analysis to open the search analysis "
-"display. This gives a simple graphic analysis of the number of instances the "
-"search string was found in each book of the Bible, and you can also save the "
-"analysis."
-msgstr ""
-
-#. Tag: screeninfo
-#: hdbk-operation.docbook:195
-#, no-c-format
-msgid "Search Analysis Dialog Box"
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:209
-#, no-c-format
-msgid "The Bookshelf Manager"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:211
-#, no-c-format
-msgid ""
-"The Bookshelf Manager is a tool to manage your "
-"Bookshelf. You can install new works to your Bookshelf, and update or remove "
-"existing works from your Bookshelf. Access it by clicking "
-"SettingsBookshelf Manager"
-"guimenuitem> in the main menu."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:214
-#, no-c-format
-msgid "Bookshelf path(s) setup"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:216
-#, no-c-format
-msgid ""
-"Here you can specify where &bibletime; may store your Bookshelf on the "
-"harddrive. You can even store it in multiple directories. Default is \"~/."
-"sword/\"."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:218
-#, no-c-format
-msgid ""
-"If you have a sword CD, but do not want to install all the works on the "
-"harddisk, but use them directly from the CD, then you can add the path to "
-"the CD as one of your bookshelf paths. When you start &bibletime;, it will "
-"show all works on the CD if it is present."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:222
-#, no-c-format
-msgid "Install/update work(s)"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:224
-#, no-c-format
-msgid ""
-"With this facility, you can connect to a repository of works (called "
-"\"library\"), and transfer one or more works to your local Bookshelf. These "
-"libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online "
-"repository of Sword modules, or another site offering Sword modules). You "
-"can manage your libraries with Add library and "
-"Delete library."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:226
-#, no-c-format
-msgid ""
-"To begin the installation or update process, select a library you want to "
-"connect to and a local Bookshelf path to install the work(s) to. Then click "
-"on Connect to library. &bibletime; will scan the "
-"contents of the library and present you with a list of works that you can "
-"add to your Bookshelf, or that you already have installed but are available "
-"in a new version in the library, and thus can be updated. Then you can mark "
-"all works that you want to install or update, and click on "
-"Install works. They will then be transferred to your "
-"Bookshelf."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:231
-#, no-c-format
-msgid "Remove work(s)"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:233
-#, no-c-format
-msgid ""
-"This facility allows you to delete one or more of the works from your "
-"Bookshelf too free up disk space. Simply mark the items and click on "
-"Remove works."
-msgstr ""
-
-#. Tag: title
-#: hdbk-operation.docbook:241
-#, no-c-format
-msgid "Exporting and Printing"
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:243
-#, no-c-format
-msgid ""
-"In many places, you can open a context menu by clicking with the "
-"right mouse button. Depending on context, it will "
-"allow you to Select, Copy"
-"guimenuitem> (to clipboard), Save or "
-"Print text. This works for example in the read "
-"windows, when you click on the normal text or the verse reference, or in the "
-"search result page when you click on a work or one or more verse references. "
-"It is pretty straightforward, so just try it out."
-msgstr ""
-
-#. Tag: para
-#: hdbk-operation.docbook:248
-#, no-c-format
-msgid ""
-"Printing from &bibletime; is rather basic and is intended as a utility. If "
-"you are composing a document or presentation containing text from "
-"&bibletime; works, we suggest that you use one of the presentation or "
-"editing tools on your system to format your document, rather than printing "
-"from &bibletime; directly."
-msgstr ""
-
-#. Tag: title
-#: hdbk-intro.docbook:1
-#, no-c-format
-msgid "Introduction"
-msgstr ""
-
-#. Tag: title
-#: hdbk-intro.docbook:3
-#, no-c-format
-msgid "About BibleTime"
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:4
-#, no-c-format
-msgid ""
-"&bibletime; is a powerful Bible study tool written for the &kde; environment "
-"on the Linux operating system. It is based on the Sword library, which provides the back-end "
-"functionality for &bibletime;, such as viewing Bible text, searching etc. "
-"Sword is the flagship product of the Crosswire Bible Society."
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:12
-#, no-c-format
-msgid ""
-"&bibletime; is designed to be used with works encoded in one of the formats "
-"supported by the Sword project. Complete information on the supported "
-"document formats can be found in the developers section of the Sword Project, "
-"Crosswire Bible Society."
-msgstr ""
-
-#. Tag: title
-#: hdbk-intro.docbook:18
-#, no-c-format
-msgid "Available works"
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:20
-#, no-c-format
-msgid ""
-"Over 200 documents in 50 languages are available from the Crosswire Bible Society. These include:"
-msgstr ""
-
-#. Tag: term
-#: hdbk-intro.docbook:26
-#, no-c-format
-msgid "Bibles"
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:28
-#, no-c-format
-msgid ""
-"The full Bible text, with optional things like Strong's Numbers, headings "
-"and/or footnotes in the text. Bibles are available in many languages, and "
-"include not only modern versions, but also ancient texts like the Codex "
-"Leningradensis (\"WLC\", Hebrew), and the Septuagint (\"LXX\", Greek). This "
-"is the most advanced section in the library of the Sword project."
-msgstr ""
-
-#. Tag: term
-#: hdbk-intro.docbook:35
-#, no-c-format
-msgid "Books"
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:37
-#, no-c-format
-msgid ""
-"Books available include "Imitation of Christ", "Enuma "
-"Elish", and "Josephus: The Complete Works""
-msgstr ""
-
-#. Tag: term
-#: hdbk-intro.docbook:43
-#, no-c-format
-msgid "Commentaries"
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:45
-#, no-c-format
-msgid ""
-"Commentaries available include classics like John Wesley's \"Notes on the "
-"Bible\", Matthew Henry`s commentary and Luther's \"Commentary on Galatians."
-"\" With the Personal commentary you can record your own personal notes to "
-"sections of the Bible."
-msgstr ""
-
-#. Tag: term
-#: hdbk-intro.docbook:52
-#, no-c-format
-msgid "Daily devotionals"
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:54
-#, no-c-format
-msgid ""
-"Many people appreciate these daily portions from God's word. Available works "
-"include Daily Light on the Daily Path, and the Losungen."
-msgstr ""
-
-#. Tag: term
-#: hdbk-intro.docbook:60
-#, no-c-format
-msgid "Lexicons/Dictionaries"
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:62
-#, no-c-format
-msgid ""
-"Lexicons available include: Robinson's Morphological Analysis Codes, Brown-"
-"Driver-Briggs Hebrew Lexicon and the International Standard Bible "
-"Encyclopedia. Dictionaries available include Strong's Hebrew Bible "
-"Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged "
-"Dictionary of the English Language 1913, Nave's Topical Bible."
-msgstr ""
-
-#. Tag: title
-#: hdbk-intro.docbook:73
-#, no-c-format
-msgid "Motivation"
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:74
-#, no-c-format
-msgid ""
-"Our desire is to serve God, and to do our part to help others grow in their "
-"relationship with Him. We have striven to make this a powerful, quality "
-"program, and still make it simple and intuitive to operate. It is our desire "
-"that God be praised, as He is the source of all good things."
-msgstr ""
-
-#. Tag: attribution
-#: hdbk-intro.docbook:81
-#, no-c-format
-msgid "James 1:17, NASB"
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:82
-#, no-c-format
-msgid ""
-"Every good thing given and every perfect gift is from above, coming down "
-"from the Father of lights, with whom there is no variation or shifting "
-"shadow."
-msgstr ""
-
-#. Tag: para
-#: hdbk-intro.docbook:86
-#, no-c-format
-msgid "God bless you as you use this program."
-msgstr ""
-
-#. Tag: title
-#: hdbk-reference.docbook:2
-#, no-c-format
-msgid "Reference"
-msgstr ""
-
-#. Tag: title
-#: hdbk-reference.docbook:4
-#, no-c-format
-msgid "Main menu reference"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:6
-#, no-c-format
-msgid ""
-"In this section you can find detailed descriptions of all entries in the "
-"main menu of &bibletime;. They are ordered in just the way they appear in "
-"&bibletime;, with all the sub-items listed under the major menu item they "
-"belong to. You can also see the hotkey of each item;a complete listing of "
-"all hotkeys can be found in this "
-"section."
-msgstr ""
-
-#. Tag: guimenu
-#: hdbk-reference.docbook:12
-#, no-c-format
-msgid "File"
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:18
-#, no-c-format
-msgid ""
-"&Ctrl;Q"
-"shortcut> File"
-"guimenu> Quit"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:23
-#, no-c-format
-msgid ""
-"Closes BibleTime. BibleTime will ask you if you want to "
-"write unsaved changes to disk."
-msgstr ""
-
-#. Tag: guimenu
-#: hdbk-reference.docbook:31
-#, no-c-format
-msgid "View"
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:35
-#, no-c-format
-msgid "ViewShow Toolbar"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:37
-#, no-c-format
-msgid ""
-"Toggles Toolbar display. Toggle this setting to turn the "
-"main toolbar on or off."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:42
-#, no-c-format
-msgid ""
-"F9"
-"shortcut> View"
-"guimenu> Show Bookshelf"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:47
-#, no-c-format
-msgid ""
-"Toggles display of the Bookshelf. Toggle this setting to "
-"turn the Bookshelf on the left pane on or off. This can be handy if you need "
-"more space for the Mag."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:52
-#, no-c-format
-msgid ""
-"F8"
-"shortcut> View"
-"guimenu> Show Mag"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:57
-#, no-c-format
-msgid ""
-"Toggles display of the Mag(nifying glass). Toggle this "
-"setting to turn the Mag on the left pane on or off."
-msgstr ""
-
-#. Tag: guimenu
-#: hdbk-reference.docbook:64
-#, no-c-format
-msgid "Search"
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:68
-#, no-c-format
-msgid ""
-"&Alt;&Ctrl;F"
-"keycombo> "
-"SearchSearch in standard bible"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:73
-#, no-c-format
-msgid ""
-"Opens the Search Dialog to search in the standard Bible only"
-"action>. More works can be added in the Search Dialog."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:78
-#, no-c-format
-msgid ""
-"&Ctrl;O"
-"shortcut> Search"
-"guimenu> Search in open work(s)"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:83
-#, no-c-format
-msgid ""
-"Opens the Search Dialog to search in all open works. More "
-"works can be added in the Search Dialog."
-msgstr ""
-
-#. Tag: guimenu
-#: hdbk-reference.docbook:91
-#, no-c-format
-msgid "Window"
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:95
-#, no-c-format
-msgid ""
-" Window "
-"Save session"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:99
-#, no-c-format
-msgid ""
-"Directly saves the current session. This will open a "
-"context menu where you can select an existing session to save to. It will be "
-"overwritten with your current session. See the next item on how to save to a "
-"new session."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:105
-#, no-c-format
-msgid ""
-"&Alt;&Ctrl;S"
-"keycombo>"
-"inlinemediaobject> WindowSave as new Session"
-"guimenuitem>"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:110
-#, no-c-format
-msgid ""
-"Saves the current session under a new name. This will ask "
-"for a new name to save the session to."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:115
-#, no-c-format
-msgid ""
-" Window "
-"Load session"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:119
-#, no-c-format
-msgid ""
-"Loads an existing session. This will open a context menu "
-"where you can select an existing session to load."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:124
-#, no-c-format
-msgid ""
-" Window "
-"Delete session"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:128
-#, no-c-format
-msgid ""
-"Deletes an existing session. This will open a context menu "
-"where you can select an existing session that should be deleted."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:133
-#, no-c-format
-msgid ""
-"&Ctrl;&Shift;F"
-"keycombo>"
-"inlinemediaobject> WindowFullscreen Mode"
-"guimenuitem>"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:138
-#, no-c-format
-msgid ""
-"Toggles fullscreen mode. Here you can turn fullscreen mode "
-"on or off. In fullscreen mode, &bibletime; will expand to the full size of "
-"your monitor screen, using as much space as possible."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:144
-#, no-c-format
-msgid ""
-" "
-"WindowArrangement mode"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:148
-#, no-c-format
-msgid ""
-"Controls the basic window arrangement behaviour. In the "
-"opening context menu, you can either specify that you want to take care of "
-"the window arrangement yourself (Manual mode) or have &bibletime; handle it "
-"for you (Automatical modes, just try them out!)."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:155
-#, no-c-format
-msgid ""
-"&Ctrl;G"
-"shortcut> Window"
-"guimenu> Tile vertically"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:160
-#, no-c-format
-msgid "Tiles all open read windows vertically."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:164
-#, no-c-format
-msgid ""
-"&Ctrl;H"
-"shortcut> Window"
-"guimenu> Tile horizontally"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:169
-#, no-c-format
-msgid "Tiles all open windows horizontally."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:173
-#, no-c-format
-msgid ""
-"&Ctrl;J"
-"shortcut> Window"
-"guimenu> Cascade"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:178
-#, no-c-format
-msgid "Cascades all open windows."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:182
-#, no-c-format
-msgid ""
-"&Alt;&Ctrl;W"
-"keycombo>"
-"inlinemediaobject> WindowClose all"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:187
-#, no-c-format
-msgid "Closes all open windows."
-msgstr ""
-
-#. Tag: guimenu
-#: hdbk-reference.docbook:193
-#, no-c-format
-msgid "Settings"
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:197
-#, no-c-format
-msgid ""
-""
-"inlinemediaobject> SettingsConfigure toolbars"
-"guimenuitem>"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:201
-#, no-c-format
-msgid ""
-"Opens a dialog where you can customize &bibletime;'s toolbar"
-"action>. Just try it out, you can move around the toolbar buttons and even "
-"add new ones. Most of the entries available from the main menu can be put on "
-"the toolbar as buttons. If you need a certain feature often, you might want "
-"to put a button on the main menu, so that you can access it with only one "
-"click. Please see this section "
-"for further information."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:208
-#, no-c-format
-msgid ""
-" Settings "
-"Configure &bibletime;"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:212
-#, no-c-format
-msgid ""
-"Opens &bibletime;'s main configuration dialog. You can "
-"configure all kinds of nice settings there to adapt &bibletime; to your "
-"needs. Please see this section for "
-"details."
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-reference.docbook:219
-#, no-c-format
-msgid ""
-"F4"
-"shortcut> "
-"SettingsBookshelf Manager"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:224
-#, no-c-format
-msgid ""
-"Opens a dialog where you can change your Sword configuration and "
-"manage your bookshelf. Please see this section for details."
-msgstr ""
-
-#. Tag: guimenu
-#: hdbk-reference.docbook:234
-#, no-c-format
-msgid "Help"
-msgstr ""
-
-#. Tag: sect2
-#: hdbk-reference.docbook:234
-#, no-c-format
-msgid "&help.menu.documentation;"
-msgstr ""
-
-#. Tag: title
-#: hdbk-reference.docbook:242
-#, no-c-format
-msgid "Toolbar reference"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:244
-#, no-c-format
-msgid ""
-"Please review the preceding section"
-"link> for an explanation of the buttons that you find on the toolbar. You "
-"can also move the cursor over a button and wait a few seconds"
-"action> to activate the button's tooltip with a short description."
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:248
-#, no-c-format
-msgid ""
-"You can adapt the toolbar to your needs. Please use the following entry in "
-"the main menu: "
-" Settings "
-"Configure toolbars "
-"Configure toolbars "
-"variablelist> Please see this section for detailed instructions."
-msgstr ""
-
-#. Tag: title
-#: hdbk-reference.docbook:264
-#, no-c-format
-msgid "HotKeys index"
-msgstr ""
-
-#. Tag: para
-#: hdbk-reference.docbook:266
-#, no-c-format
-msgid ""
-"This is index of all hotkeys and their corresponding description in the "
-"handbook. The hotkeys are sorted (roughly) alphabetical. If you want to "
-"directly find out which hotkey a certain menu item has, you can either look "
-"at the entry itelf in &bibletime; (as it always shows the hotkey), or you "
-"can look it up in this section."
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:278
-#, no-c-format
-msgid "Hotkey"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:279
-#, no-c-format
-msgid "Description"
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:284
-#, no-c-format
-msgid "&Alt;Left"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:285
-#, no-c-format
-msgid "Moves back in the history of read windows."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:288
-#, no-c-format
-msgid "&Alt;Right"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:289
-#, no-c-format
-msgid "Moves forward in the history of read windows."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:292
-#, no-c-format
-msgid "&Alt;&Ctrl;F"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:293
-#, no-c-format
-msgid ""
-" "
-"SearchSearch in default bible"
-"guimenuitem> equivalent; opens the search dialog to "
-"search in the default bible."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:299
-#, no-c-format
-msgid "&Alt;&Ctrl;G"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:300
-#, no-c-format
-msgid ""
-"WindowArrangement mode"
-"guimenuitem> Auto-tile vertically "
-"equivalent; toggle automatic window tiling."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:305
-#, no-c-format
-msgid "&Alt;&Ctrl;H"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:306
-#, no-c-format
-msgid ""
-"WindowArrangement mode"
-"guimenuitem> Auto-tile horizontally "
-"equivalent; toggle automatic window tiling."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:311
-#, no-c-format
-msgid "&Alt;&Ctrl;J"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:312
-#, no-c-format
-msgid ""
-"WindowArrangement mode"
-"guimenuitem> Auto-cascade "
-"equivalent; toggle automatic window cascading."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:317
-#, no-c-format
-msgid "&Alt;&Ctrl;M"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:318
-#, no-c-format
-msgid ""
-"WindowArrangement mode"
-"guimenuitem> Manual mode equivalent; "
-"toggle manual window placement."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:323
-#, no-c-format
-msgid "&Alt;&Ctrl;S"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:324
-#, no-c-format
-msgid ""
-" "
-"WindowSave as new session"
-"menuchoice> equivalent; saves current layout as new session."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:330
-#, no-c-format
-msgid "&Alt;&Ctrl;W"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:331
-#, no-c-format
-msgid ""
-" "
-"WindowClose all"
-"link> equivalent; closes all open windows."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:337
-#, no-c-format
-msgid "&Ctrl;-"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:338
-#, no-c-format
-msgid "Zoom out. This decreases the font size of read windows."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:341
-#, no-c-format
-msgid "&Ctrl;+"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:342
-#, no-c-format
-msgid "Zoom in. This increases the font size of read windows."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:345
-#, no-c-format
-msgid "&Ctrl;A"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:346
-#, no-c-format
-msgid "Select all. This selects all text in read windows."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:349
-#, no-c-format
-msgid "&Ctrl;C"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:350
-#, no-c-format
-msgid "Copy. This copies the selected text to the clipboard."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:353
-#, no-c-format
-msgid "&Ctrl;F"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:354
-#, no-c-format
-msgid "Search. This lets you search within the text of a read window."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:357
-#, no-c-format
-msgid "&Ctrl;J"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:358
-#, no-c-format
-msgid ""
-" "
-"WindowCascade"
-"link> equivalent; cascades all open windows."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:364
-#, no-c-format
-msgid "&Ctrl;G"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:365
-#, no-c-format
-msgid ""
-" "
-"WindowTile vertically"
-"menuchoice> equivalent; tiles all open windows vertically."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:371
-#, no-c-format
-msgid "&Ctrl;H"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:372
-#, no-c-format
-msgid ""
-" "
-"WindowTile horizontally"
-"menuchoice> equivalent; tiles all open windows horizontally."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:378
-#, no-c-format
-msgid "&Ctrl;O"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:379
-#, no-c-format
-msgid ""
-" "
-"SearchSearch in open work(s)"
-"menuchoice> equivalent; opens the search dialog to search in all "
-"currently opened works."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:385
-#, no-c-format
-msgid "&Ctrl;Q"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:386
-#, no-c-format
-msgid ""
-"File"
-"guimenu> Quit equivalent; "
-"closes &bibletime;."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:392
-#, no-c-format
-msgid "&Ctrl;W"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:393
-#, no-c-format
-msgid "Closes the current window."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:396
-#, no-c-format
-msgid "&Ctrl;X"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:397
-#, no-c-format
-msgid "Moves a bible or commentary read window to the next chapter."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:400
-#, no-c-format
-msgid "&Ctrl;Y"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:401
-#, no-c-format
-msgid "Moves a bible or commentary read window to the next book."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:404
-#, no-c-format
-msgid "&Ctrl;V"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:405
-#, no-c-format
-msgid "Moves a read window to the next verse or entry."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:410
-#, no-c-format
-msgid "&Ctrl;&Shift;F"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:411
-#, no-c-format
-msgid ""
-" "
-"WindowFullscreen mode"
-"menuchoice> equivalent; toggles fullscreen mode."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:417
-#, no-c-format
-msgid "&Ctrl;&Shift;X"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:418
-#, no-c-format
-msgid "Moves a bible or commentary read window to the previous chapter."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:421
-#, no-c-format
-msgid "&Ctrl;&Shift;Y"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:422
-#, no-c-format
-msgid "Moves a bible or commentary read window to the previous book."
-msgstr ""
-
-#. Tag: keycombo
-#: hdbk-reference.docbook:425
-#, no-c-format
-msgid "&Ctrl;&Shift;V"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:426
-#, no-c-format
-msgid "Moves a read window to the previous verse or entry."
-msgstr ""
-
-#. Tag: keycap
-#: hdbk-reference.docbook:430
-#, no-c-format
-msgid "F1"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:431
-#, no-c-format
-msgid ""
-"HelpHandbook"
-"menuchoice> equivalent; opens the handbook."
-msgstr ""
-
-#. Tag: keycap
-#: hdbk-reference.docbook:437
-#, no-c-format
-msgid "F2"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:438
-#, no-c-format
-msgid ""
-"HelpBibleStudy Howto"
-"guimenuitem> equivalent; opens the BibleStudy Howto."
-msgstr ""
-
-#. Tag: keycap
-#: hdbk-reference.docbook:444
-#, no-c-format
-msgid "F3"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:445
-#, no-c-format
-msgid ""
-"HelpDaily tip"
-"menuchoice> equivalent; opens the tip of the day."
-msgstr ""
-
-#. Tag: keycap
-#: hdbk-reference.docbook:451
-#, no-c-format
-msgid "F4"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:452
-#, no-c-format
-msgid ""
-"SettingsBookshelf Manager"
-"guimenuitem> equivalent; opens the Bookshelf Manager."
-msgstr ""
-
-#. Tag: keycap
-#: hdbk-reference.docbook:458
-#, no-c-format
-msgid "F8"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:459
-#, no-c-format
-msgid ""
-" "
-"ViewShow Bookshelf"
-"menuchoice> equivalent; toggles display of the Bookshelf."
-msgstr ""
-
-#. Tag: keycap
-#: hdbk-reference.docbook:465
-#, no-c-format
-msgid "F9"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-reference.docbook:466
-#, no-c-format
-msgid ""
-" "
-"ViewShow mag"
-"link> equivalent; toggles display of the mag(nifying glass)."
-msgstr ""
-
-#. Tag: title
-#: index.docbook:21
-#, no-c-format
-msgid "The &bibletime; handbook"
-msgstr ""
-
-#. Tag: author
-#: index.docbook:25
-#, no-c-format
-msgid "FredSaalbach"
-msgstr ""
-
-#. Tag: author
-#: index.docbook:30
-#, no-c-format
-msgid "JeffreyHoyt"
-msgstr ""
-
-#. Tag: author
-#: index.docbook:35
-#, no-c-format
-msgid "MartinGruner"
-msgstr ""
-
-#. Tag: trans_comment
-#: index.docbook:42
-#, no-c-format
-msgid "ROLES_OF_TRANSLATORS"
-msgstr ""
-
-#. Tag: holder
-#: index.docbook:46
-#, no-c-format
-msgid "the &bibletime; team"
-msgstr ""
-
-#. Tag: para
-#: index.docbook:50
-#, no-c-format
-msgid "The &bibletime; handbook is part of &bibletime;."
-msgstr ""
-
-#. Tag: para
-#: index.docbook:59
-#, no-c-format
-msgid "&bibletime; is a powerful Bible study tool for &kde;."
-msgstr ""
-
-#. Tag: keyword
-#: index.docbook:65
-#, no-c-format
-msgid "KDE"
-msgstr ""
-
-#. #-#-#-#-# index.docbook.pot (PACKAGE VERSION) #-#-#-#-#
-#. Tag: keyword
-#. #-#-#-#-# hdbk-start.docbook.pot (PACKAGE VERSION) #-#-#-#-#
-#. Tag: screen
-#: index.docbook:66 hdbk-start.docbook:19
-#, no-c-format
-msgid "bibletime"
-msgstr ""
-
-#. Tag: keyword
-#: index.docbook:67
-#, no-c-format
-msgid "sword"
-msgstr ""
-
-#. Tag: keyword
-#: index.docbook:68
-#, no-c-format
-msgid "crosswire"
-msgstr ""
-
-#. Tag: keyword
-#: index.docbook:69
-#, no-c-format
-msgid "help dialog"
-msgstr ""
-
-#. Tag: title
-#: hdbk-config.docbook:1
-#, no-c-format
-msgid "Configuring &bibletime;"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:3
-#, no-c-format
-msgid ""
-"In this section you find a description of the different possibilities to "
-"configure &bibletime;: The Configure "
-"BibleTime Dialog and the Configure Toolbars dialog. Both can be accessed under "
-"Settings in the main menu."
-msgstr ""
-
-#. Tag: title
-#: hdbk-config.docbook:8
-#, no-c-format
-msgid "Configure BibleTime Dialog"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:10
-#, no-c-format
-msgid ""
-"The &bibletime; user interface can be customized in many ways depending on "
-"your needs. You can access the configuration dialog by selecting "
-"SettingsConfigure "
-"&bibletime;."
-msgstr ""
-
-#. Tag: guimenu
-#: hdbk-config.docbook:15
-#, no-c-format
-msgid "Display"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:17
-#, no-c-format
-msgid ""
-"The startup behavior can be customized. Select from the following options:"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:19
-#, no-c-format
-msgid "Show tip of the day"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:20
-#, no-c-format
-msgid "Show startup logo"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:23
-#, no-c-format
-msgid ""
-"Display templates define the rendering of text (colors, size etc.). Various "
-"built-in templates are available. If you select one, you will see a preview "
-"on the right pane."
-msgstr ""
-
-#. Tag: guimenu
-#: hdbk-config.docbook:28
-#, no-c-format
-msgid "Languages"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:30
-#, no-c-format
-msgid ""
-"Here you can specify which language should be used for the biblical "
-"booknames. Set this to your native language, if it is available, and you'll "
-"feel at home."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:33
-#, no-c-format
-msgid ""
-"By default, &bibletime; uses the &kde; general display font which can be "
-"specified in the &kcontrolcenter;. You can override this font if neccessary. "
-"Some languages require special fonts to be displayed correctly, and this "
-"dialog allows you to specify a custom font for each language."
-msgstr ""
-
-#. Tag: phrase
-#: hdbk-config.docbook:41
-#, no-c-format
-msgid "Options Dialog - fonts"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:42
-#, no-c-format
-msgid "The Options dialog - Fonts."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:45
-#, no-c-format
-msgid ""
-"&bibletime; can now use all fonts supported by KDE/QT. As long as the works "
-"you are interested in display correctly nothing needs to be done here. If a "
-"work only displays as a series of question marks (??????) or empty boxes, "
-"then you know that the standard KDE display font does not contain the "
-"characters used in this work."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:51
-#, no-c-format
-msgid ""
-"To correct this, choose this work's language from the drop down menu. Select "
-"the use custom font checkbox. Now select a font. For example, a font that "
-"supports many languages is Code2000. If no installed font can display the "
-"work you are interested in, try installing the &kde; localization package "
-"for that language."
-msgstr ""
-
-#. Tag: title
-#: hdbk-config.docbook:57
-#, no-c-format
-msgid "Installing fonts"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:58
-#, no-c-format
-msgid ""
-"Detailed font installation instructions are outside the scope of this "
-"handbook. &kde;'s KControl Center"
-"ulink> contains an excellent and easy to use font installation module. "
-"Please read its "
-"documentation. For further information you might want to refer to "
-"the Unicode HOWTO."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:66
-#, no-c-format
-msgid ""
-"If you use a small font like Clearlyu (about 22kb), &bibletime; will run "
-"faster than with a large font like "
-"Bitstream Cyberbit (about 12Mb)."
-msgstr ""
-
-#. Tag: title
-#: hdbk-config.docbook:71
-#, no-c-format
-msgid "Obtaining Fonts"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:72
-#, no-c-format
-msgid "Fonts can be obtained from a number of sources:"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:74
-#, no-c-format
-msgid "Your Linux distribution."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:75
-#, no-c-format
-msgid "Your distribution's localization packages."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:76
-#, no-c-format
-msgid ""
-"An existing Microsoft Windows "
-"installation on the same computer."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:77
-#, no-c-format
-msgid "A font collection, such as are available from Adobe or Bitstream."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:78
-#, no-c-format
-msgid "Online font collections."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:81
-#, no-c-format
-msgid ""
-"Unicode fonts support more characters than other fonts, and some of these "
-"fonts are available at no charge. None of available fonts includes all "
-"characters defined in the Unicode standard, so you may want to use different "
-"fonts for different languages."
-msgstr ""
-
-#. Tag: title
-#: hdbk-config.docbook:87
-#, no-c-format
-msgid "Unicode Fonts"
-msgstr ""
-
-#. Tag: ulink
-#: hdbk-config.docbook:91
-#, no-c-format
-msgid "Code2000"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-config.docbook:92
-#, no-c-format
-msgid ""
-"Perhaps the best free Unicode font, covering a wide range of characters."
-msgstr ""
-
-#. Tag: ulink
-#: hdbk-config.docbook:94
-#, no-c-format
-msgid "SIL unicode fonts"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-config.docbook:96
-#, no-c-format
-msgid "Excellent unicode fonts from the Summer Institute of Linguistics."
-msgstr ""
-
-#. Tag: ulink
-#: hdbk-config.docbook:98
-#, no-c-format
-msgid "FreeFont"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-config.docbook:99
-#, no-c-format
-msgid "A new free unicode font initiative."
-msgstr ""
-
-#. Tag: ulink
-#: hdbk-config.docbook:101
-#, no-c-format
-msgid "Crosswire's font directory"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-config.docbook:102
-#, no-c-format
-msgid "Several fonts available from the Crosswire Bible Society Ftp site."
-msgstr ""
-
-#. Tag: ulink
-#: hdbk-config.docbook:104
-#, no-c-format
-msgid "Bitstream CyberBit"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-config.docbook:105
-#, no-c-format
-msgid ""
-"Covers almost the entire range of Unicode, but might slow &bibletime; down "
-"because of its size."
-msgstr ""
-
-#. Tag: entry
-#: hdbk-config.docbook:107
-#, no-c-format
-msgid "Clearlyu"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-config.docbook:108
-#, no-c-format
-msgid "Included in some distributions. Contains European, Greek, Hebrew, Thai."
-msgstr ""
-
-#. Tag: ulink
-#: hdbk-config.docbook:110
-#, no-c-format
-msgid "Caslon, Monospace, Cupola, Caliban"
-msgstr ""
-
-#. Tag: entry
-#: hdbk-config.docbook:111
-#, no-c-format
-msgid "Partial coverage, see information on linked site."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:116
-#, no-c-format
-msgid ""
-"There are good Unicode font lists on the net, as the one by Christoph Singer "
-"(Multilingual Unicode "
-"TrueType Fonts in the Internet), or the one by Alan Wood ( Unicode character "
-"ranges and the Unicode fonts that support them)."
-msgstr ""
-
-#. Tag: guimenu
-#: hdbk-config.docbook:127
-#, no-c-format
-msgid "Desk"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:129
-#, no-c-format
-msgid ""
-"Many features provided by the Sword backend can now be customized in "
-"&bibletime;. These features are documented right in the dialog. You also "
-"have the possibility to specify standard works that should be used when no "
-"specific work is specified in a reference. An example: The standard Bible is "
-"used to display the content of crossreferences in the Bible. When you hover "
-"over then, the Mag will show the content of the verses referred to, "
-"according to the standard Bible you specified."
-msgstr ""
-
-#. Tag: guimenu
-#: hdbk-config.docbook:138
-#, no-c-format
-msgid "HotKeys"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:140
-#, no-c-format
-msgid ""
-"HotKeys are special key commands that can be used in the place of the menu "
-"items and icons. A number of &bibletime;'s commands have predefined HotKeys "
-"(see this section for a "
-"complete listing). Most of &bibletime;'s commands can be assigned HotKeys "
-"here. This is very helpful to quickly access the functions that you need the "
-"most."
-msgstr ""
-
-#. Tag: title
-#: hdbk-config.docbook:151
-#, no-c-format
-msgid "Configure Toolbars dialog"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:152
-#, no-c-format
-msgid ""
-"You can adapt the toolbar to your needs. Please use the following entry in "
-"the main menu:"
-msgstr ""
-
-#. Tag: menuchoice
-#: hdbk-config.docbook:155
-#, no-c-format
-msgid ""
-" "
-"inlinemediaobject>Settings Configure toolbars"
-"guimenuitem>"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:162
-#, no-c-format
-msgid "Configure toolbars"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:166
-#, no-c-format
-msgid ""
-"You will see this dialog, which allows adding and removing buttons from the "
-"main toolbar of &bibletime;. The order of the buttons can also be changed."
-msgstr ""
-
-#. Tag: phrase
-#: hdbk-config.docbook:173
-#, no-c-format
-msgid "Toolbar configuration dialog"
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:174
-#, no-c-format
-msgid "The Toolbar configuration dialog."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:176
-#, no-c-format
-msgid ""
-"Use the 4 buttons in the middle of the window to move buttons to the "
-"toolbar, away from the toolbar or to sort them on the toolbar according to "
-"your preference."
-msgstr ""
-
-#. Tag: para
-#: hdbk-config.docbook:179
-#, no-c-format
-msgid ""
-"Please see this "
-"section for further information."
-msgstr ""
-
-#. Tag: title
-#: hdbk-start.docbook:1
-#, no-c-format
-msgid "Starting &bibletime;"
-msgstr ""
-
-#. Tag: title
-#: hdbk-start.docbook:3
-#, no-c-format
-msgid "How to start &bibletime;"
-msgstr ""
-
-#. Tag: title
-#: hdbk-start.docbook:5
-#, no-c-format
-msgid "Starting &bibletime; from KDE"
-msgstr ""
-
-#. Tag: para
-#: hdbk-start.docbook:7
-#, no-c-format
-msgid ""
-"&bibletime; is a &kde; program and is integrated with the &kde; desktop. You "
-"can launch &bibletime; from the &kde; Start Menu in the Applications group "
-"with this icon:"
-msgstr ""
-
-#. Tag: phrase
-#: hdbk-start.docbook:13
-#, no-c-format
-msgid "&bibletime; start icon"
-msgstr ""
-
-#. Tag: para
-#: hdbk-start.docbook:17
-#, no-c-format
-msgid ""
-"&bibletime; can also be launched from a terminal command prompt. To launch "
-"&bibletime;, open a terminal window and type:"
-msgstr ""
-
-#. Tag: title
-#: hdbk-start.docbook:24
-#, no-c-format
-msgid "Other window managers"
-msgstr ""
-
-#. Tag: para
-#: hdbk-start.docbook:26
-#, no-c-format
-msgid ""
-"&bibletime; can be used with other window managers such as Gnome, BlackBox "
-"or Sawfish, providing &kde; is already installed on your computer. If your "
-"&kde; is installed in /opt/kde, then the start-up command in a terminal "
-"would be:"
-msgstr ""
-
-#. Tag: screen
-#: hdbk-start.docbook:30
-#, no-c-format
-msgid ""
-"export TDEDIR=/opt/kde #your KDE directory\n"
-"bibletime"
-msgstr ""
-
-#. Tag: title
-#: hdbk-start.docbook:34
-#, no-c-format
-msgid "Startup customization"
-msgstr ""
-
-#. Tag: para
-#: hdbk-start.docbook:36
-#, no-c-format
-msgid ""
-"From a terminal you can use &bibletime; to open a random verse in the "
-"default bible: \n"
-"bibletime --open-default-bible \"<random>\"\n"
-" To open at a given passage like John 3:16, use: \n"
-"bibletime --open-default-bible \"John 3:16\"\n"
-" You can also use booknames in your current bookname language."
-msgstr ""
-
-#. Tag: title
-#: hdbk-start.docbook:48
-#, no-c-format
-msgid "Startup sequence"
-msgstr ""
-
-#. Tag: para
-#: hdbk-start.docbook:50
-#, no-c-format
-msgid ""
-"As &bibletime; launches you may see the following screens before the main "
-"&bibletime; window opens:"
-msgstr ""
-
-#. Tag: interface
-#: hdbk-start.docbook:56
-#, no-c-format
-msgid "Bookshelf Manager"
-msgstr ""
-
-#. Tag: para
-#: hdbk-start.docbook:57
-#, no-c-format
-msgid ""
-"Modifies your Bookshelf. This dialog lets you modify your "
-"Bookshelf, add or delete works from your system. It will only be shown if no "
-"default Bookshelf can be found. Please see this sectionfor further details. If you start off "
-"with an empty Bookshelf, it will be helpful to install at least one Bible, "
-"Commentary, Lexicon and one Book to get to know &bibletime;'s basic features "
-"quickly."
-msgstr ""
-
-#. Tag: interface
-#: hdbk-start.docbook:66
-#, no-c-format
-msgid "Configure &bibletime; dialog"
-msgstr ""
-
-#. Tag: para
-#: hdbk-start.docbook:67
-#, no-c-format
-msgid ""
-"Customizes &bibletime;. This dialog lets you adapt "
-"&bibletime; to your needs. Please see the "
-"detailed description of this dialog."
-msgstr ""
-
-#. Tag: interface
-#: hdbk-start.docbook:73
-#, no-c-format
-msgid "Tip of the Day"
-msgstr ""
-
-#. Tag: para
-#: hdbk-start.docbook:74
-#, no-c-format
-msgid ""
-"These nifty little tips give you helpful hints for working more efficiently "
-"with &bibletime;, and also a few quotations from the Bible."
-msgstr ""
diff --git a/pot/howto.pot b/pot/howto.pot
deleted file mode 100644
index 3e8d8a7..0000000
--- a/pot/howto.pot
+++ /dev/null
@@ -1,1924 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# FIRST AUTHOR , YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
-"POT-Creation-Date: 2007-04-17 19:46+0000\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
-"MIME-Version: 1.0\n"
-"Content-Type: application/x-xml2pot; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#. Tag: title
-#: index.docbook:19
-#, no-c-format
-msgid "The Biblestudy HowTo"
-msgstr ""
-
-#. Tag: author
-#: index.docbook:22
-#, no-c-format
-msgid "BobHarman"
-msgstr ""
-
-#. Tag: trans_comment
-#: index.docbook:28
-#, no-c-format
-msgid "ROLES_OF_TRANSLATORS"
-msgstr ""
-
-#. Tag: holder
-#: index.docbook:32
-#, no-c-format
-msgid "The team of &bibletime;, info@bibletime.info"
-msgstr ""
-
-#. Tag: holder
-#: index.docbook:35
-#, no-c-format
-msgid "Bob Harman"
-msgstr ""
-
-#. Tag: para
-#: index.docbook:38
-#, no-c-format
-msgid ""
-"The copyright of this text is held by the author Bob Harman. The text was "
-"adapted for publication with BibleTime by Fred Saalbach."
-msgstr ""
-
-#. Tag: para
-#: index.docbook:42
-#, no-c-format
-msgid ""
-"Non exclusive serial rights for this distribution of this document with the "
-"&bibletime; software have been made. Redistribution as part of the Bibletime "
-"software without modification and limited reproduction as provided by the "
-"\"fair use\" provisions of the US copyright code are also permitted."
-msgstr ""
-
-#. Tag: para
-#: index.docbook:48
-#, no-c-format
-msgid ""
-"For questions regarding the use of this material contact Bob Harman c/o New "
-"Covenant Church 1079 Big Bethel Rd. Hampton VA 23666 USA "
-"ncc@ncchampton.org."
-msgstr ""
-
-#. Tag: para
-#: index.docbook:52
-#, no-c-format
-msgid ""
-"Scripture quotes are from the New American Standard Bible unless otherwise "
-"indicated"
-msgstr ""
-
-#. Tag: title
-#: index.docbook:61
-#, no-c-format
-msgid "Abstract"
-msgstr ""
-
-#. Tag: para
-#: index.docbook:62
-#, no-c-format
-msgid ""
-"The Biblestudy HowTo is a guide for studying the "
-"Bible."
-msgstr ""
-
-#. Tag: para
-#: index.docbook:65
-#, no-c-format
-msgid ""
-"It is the hope of the &bibletime; team that this HowTo will provoke the "
-"readers to study the scriptures to see what they say. This particular study "
-"guide has been chosen as it takes care not to advocate any particular "
-"denominational doctrine. We expect you to read and study the scriptures to "
-"understand what they say. If you start with the attitude that you want to "
-"have the Lord sow his word in your heart He will not disappoint you."
-msgstr ""
-
-#. Tag: keyword
-#: index.docbook:75
-#, no-c-format
-msgid "Bible"
-msgstr ""
-
-#. #-#-#-#-# index.docbook.pot (PACKAGE VERSION) #-#-#-#-#
-#. Tag: keyword
-#. #-#-#-#-# how2-basics.docbook.pot (PACKAGE VERSION) #-#-#-#-#
-#. Tag: title
-#: index.docbook:76 how2-basics.docbook:49
-#, no-c-format
-msgid "Study"
-msgstr ""
-
-#. Tag: keyword
-#: index.docbook:77
-#, no-c-format
-msgid "HowTo"
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:1
-#, no-c-format
-msgid "Rules of Bible Interpretation (Hermeneutics)"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:2
-#, no-c-format
-msgid ""
-"We already learned about the \"3 Cs\": content, context, cross-reference. We "
-"want to expand that now by delving briefly into biblical hermeneutics, whose "
-"goal is to discover the meaning intended by the original author (and "
-"Author!). While many applications of a passage are valid, only one "
-"interpretation is valid. The scripture itself says this by saying that no "
-"scripture is of any private interpretation (2 Pe.1:20 KJV Knowing "
-"this first, that no prophesy of scripture is of any private interpretation."
-"quote>). Certain rules are helps toward discovering the correct meaning; by "
-"ignoring these rules people have brought much trouble on themselves and "
-"their followers. 2 Pe.3:16 ...in which are some things hard to "
-"understand, which the untaught and unstable distort, as they do also the "
-"rest of the Scriptures, to their own destruction."
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:11
-#, no-c-format
-msgid ""
-"How do we go about discovering the intended meaning of a passage? Let's say "
-"your attention has been drawn to a particular verse whose meaning is not "
-"clear to you. How do you study it out? Keep these rules in mind:"
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:14
-#, no-c-format
-msgid "Rule 1 - Interpret according to the exact meaning of the words."
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:15
-#, no-c-format
-msgid ""
-"The more precise we can be with the exact, original meaning of the words the "
-"better our interpretation will be. Try to find the exact meaning of the key "
-"words by following these steps:"
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:20
-#, no-c-format
-msgid "Definition"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:21
-#, no-c-format
-msgid ""
-"Look up the definition in a Greek or Hebrew dictionary. For verbs, the verb "
-"tense is also crucial."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:26 how2-basics.docbook:107
-#, no-c-format
-msgid "Cross-reference"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:27
-#, no-c-format
-msgid ""
-"Compare scripture with scripture. Seeing how the same Greek or Hebrew word "
-"(not the English word) is used in scripture may clarify or throw new light "
-"on the definition. How does the same author use this word elsewhere? Other "
-"authors? Your reference tools may give you uses of the word in non-biblical "
-"documents, as well. Why do we have to go to the original languages; why "
-"isn't the English word good enough? Because more than one greek "
-"word may be translated into the same english word, and the greek words may "
-"have different shades of meaning."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:37
-#, no-c-format
-msgid "Example 1A"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:38
-#, no-c-format
-msgid ""
-"Jn.20:17 \"Touch me not\" (KJV) sounds harsh, doesn't "
-"it? Sounds like Jesus doesn't want to be touched now that He is risen, that "
-"He is too holy or something. But that doesn't seem right, so let's look it "
-"up in Spiros Zodhiates' The Complete Word Study New Testament"
-"emphasis> (AMG Publishers, 1991)."
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:42
-#, no-c-format
-msgid ""
-"Definition: Turning to John 20:17, above the word \"Touch\" we see \"pim680."
-"\" The letters give us a code for the part of speech, and the number refers "
-"to Strong's dictionary reference. Let's look up the definition (p. 879). "
-"\"680. Haptomai; from hapto (681), touch. Refers to such handling of an "
-"object as to exert a modifying influence upon it... Distinguished from "
-"pselaphao (5584), which actually only means to touch the surface of "
-"something. \" Now look up \"pim.\" The grammar codes in Zodhiates come right "
-"after Revelation; on p. 849 we see that pim stands for \"present imperative "
-"active (80)\". On p.857, \"Present Imperative. In the active voice, it may "
-"indicate a command to do something in the future which involves continuous "
-"or repeated action or, when it is negated, a command to stop doing "
-"something. \" This is a negative command, so it is to stop doing something "
-"that is already occuring. So, what have we found?"
-msgstr ""
-
-#. Tag: emphasis
-#: how2-interpretation.docbook:50
-#, no-c-format
-msgid ""
-"Mary is already clinging to Jesus, and he is saying to stop holding him!"
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:53
-#, no-c-format
-msgid "Example 1B"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:54
-#, no-c-format
-msgid ""
-"In James 5:14, Elders are told to pray and anoint someone who is "
-"sick. What is this anointing?"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:55
-#, no-c-format
-msgid ""
-"Definition of aleipho (218) - \"to oil\" (Strong's); but we also have "
-"another Greek word translated \"anoint\", chrio (5548) - \"to smear or rub "
-"with oil, i.e. to consecrate to an office or religious service\" (Strong's). "
-"Since it's a verb, consider the tense also, \"apta\" aorist participle "
-"active. \"The aorist participle expresses simple action, as opposed to "
-"continuous action...When its relaitonship to the main verb is temporal, it "
-"usually signifies action prior to that of the main verb.\" (Zodhiates p.851)"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:62
-#, no-c-format
-msgid "Cross-references for aleipho:"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:64
-#, no-c-format
-msgid "Mt.6:17 But you, when you fast, anoint your head"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:65
-#, no-c-format
-msgid "Mk.16:1 [the women] brought spices that they might come and anoint Him."
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:66
-#, no-c-format
-msgid ""
-"Mk.6:13 And they were...anointing with oil many sick people and healing them."
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:67
-#, no-c-format
-msgid "Lk.7:38 [...] kissing His feet and anointing them with the perfume"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:68
-#, no-c-format
-msgid ""
-"Jn.12:3 Mary [...] anointed the feet of Jesus, and wiped them with her hair"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:72
-#, no-c-format
-msgid "Cross-references of chrio:"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:74
-#, no-c-format
-msgid ""
-"Lk.4:18 The Spirit of the Lord is upon me, because He has anointed me "
-"to preach [...]"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:75
-#, no-c-format
-msgid "Acts 4:27 Jesus, whom Thou hast anointed"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:76
-#, no-c-format
-msgid "Acts 10:38 God anointed Jesus with the Holy Ghost and power"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:77
-#, no-c-format
-msgid "2 Cor.1:21 Now He who...anointed us is God"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:82
-#, no-c-format
-msgid ""
-"So what's the difference between aleipho and chrio? Look back over the cross-"
-"references and the definitions, and sum up the difference: ""
-"aleipho" is a practical use of oil and "chrio" is a "
-"spiritual"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:85
-#, no-c-format
-msgid ""
-"As an illustration (although the word is not used) of the practical use of "
-"oil at that time, when the good Samaritan cared for the man beat up by "
-"robbers he poured oil and wine in the wound. So oil had a medicinal use in "
-"Jesus' day."
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:89
-#, no-c-format
-msgid ""
-"Now let's apply what we just learned by this word study to James 5:14 "
-"\"Is any among you sick? Let him call for the elders of the "
-"church; and let them pray over him, anointing him with oil in the name of "
-"the Lord.\" Is \"anointing\" spiritual or practical? Practical!"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:92
-#, no-c-format
-msgid ""
-"And the tense in Greek, the aorist participle, would be better translated "
-"\"having anointed,\" so the order is the anointing first, then the prayer "
-"(\"in the name of the Lord\"refers to the prayer, not the anointing). James "
-"5 is saying that the elders should give the sick person medicine and pray "
-"for him in the name of the Lord. Doesn't that express a beautiful balance of "
-"practical and spiritual in our God!"
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:103
-#, no-c-format
-msgid "Rule 2 - Interpret within the biblical context"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:105
-#, no-c-format
-msgid ""
-"Interpret scripture in harmony with other scripture. What do the verses on "
-"each side say? What is the theme of the chapter? the book? Does your "
-"interpretation fit with these? If not, it is flawed. Usually, the context "
-"supplies what we need to correctly interpret the passage. Context is key. If "
-"confusion remains as to the meaning after we have interpreted the text "
-"within its context, we have to look further."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:110
-#, no-c-format
-msgid "Example 2A"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:111
-#, no-c-format
-msgid ""
-"In a previous lesson we considered Jn.3:5 \"born of water and the "
-"Spirit.\" In context, what is the water under discussion here?"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:113
-#, no-c-format
-msgid ""
-"Water baptism is not under discussion here, which would be a big switch from "
-"the subject being discussed by Jesus and Nicodemus. Watch out for a sudden "
-"change of topic, it may be a clue that your interpretation has been "
-"derailed! The water is the amniotic fluid, \"born of water\" = natural birth."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:117
-#, no-c-format
-msgid "Example 2B"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:118
-#, no-c-format
-msgid ""
-"1 Cor.14:34 Let the women keep silent in the churches has to "
-"be taken within the biblical context of 1 Cor.11:5 every woman [...] "
-"while praying or prophesying [...]"
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:121
-#, no-c-format
-msgid "Example 2C"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:122
-#, no-c-format
-msgid ""
-"Acts 2:38 And Peter said to them, "Repent, and let each of you "
-"be baptized in the name of Jesus Christ for the forgiveness of your sins "
-"[...]". Is this teaching baptismal regeneration? If this was "
-"the only verse of scripture we had, we would have to conclude that. But in "
-"the light of the clear teaching elsewhere that regeneration happens by faith "
-"in Christ, we have to interpret it otherwise. Peter is urging baptism as a "
-"way for his hearers to respond to the gospel. If baptism were the pathway to "
-"being born again, how could Paul write 1 Cor.1:17 \"For Christ did "
-"not send me to baptize, but to preach the gospel\"?"
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:134
-#, no-c-format
-msgid "Rule 3 - Interpret within the historical and cultural context"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:135
-#, no-c-format
-msgid ""
-"At first we are not asking What does it mean to me? but "
-"What did it mean to the original readers?; later we can ask, "
-"What does it mean to me?. We have to take into account the "
-"historical and cultural background of the author and the recipients."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:139
-#, no-c-format
-msgid "Example 3A"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:139
-#, no-c-format
-msgid ""
-"3 days & 3 nights (Mt.12:40) have led some to come up "
-"with a \"Wednesday crucifixion theory,\" esp. the cult of Armstrongism. How "
-"could Jesus die on Friday afternoon and rise Sunday morning yet \"be raised "
-"on the third day\" (Mt.16:21)? Exact meanings of \"three\" or \"days\" won't "
-"help explain the apparent contradiction."
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:144
-#, no-c-format
-msgid ""
-"We need an historical tidbit: Jews counted any part of a day as a full day, "
-"as we would count buckets of water (if there were six and one-half buckets "
-"of water, we would say there were 7 buckets of water even if one was only "
-"partly full). So to the Jewish mind, any part of a day counted as a full "
-"day, and days started at 6 p.m. and ended at 6 p.m. Friday from 3 p.m. to 6 "
-"p.m. = day 1. Friday 6 p.m. to Saturday 6 p.m. = day 2. Saturday 6 p.m. to "
-"Sunday 5 or so a.m. = day 3. Interpreting within the cultural context keeps "
-"us out of trouble."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:151
-#, no-c-format
-msgid "Example 3B"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:151
-#, no-c-format
-msgid ""
-"Gen.15:7-21. The historical context is that cutting animals in two and then "
-"walking between the pieces was the normal way of entering a contract in "
-"Abraham's day. Both parties walked between, taking the pledge that "
-"dismemberment would happen to them if they didn't live up to their part of "
-"the contract. But in this case only God goes thru, making it a unilateral "
-"covenant."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:159
-#, no-c-format
-msgid "Rule 4 - Interpret according to the normal usage of words in language"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:160
-#, no-c-format
-msgid ""
-"Let literal language be literal and figurative language be figurative. And "
-"watch out for idioms, which have special meanings."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:163
-#, no-c-format
-msgid "Example 4A"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:164
-#, no-c-format
-msgid "evil eye in Mt.6:23."
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:165
-#, no-c-format
-msgid ""
-"Rule 1, definition of \"evil\" and \"eye\" - no help here. Rule 2, context: "
-"seems to confuse us even more. It doesn't seem to fit with what goes before "
-"and after! This should tip us off that we aren't understanding it rightly!!"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:168
-#, no-c-format
-msgid ""
-"What we have here is a Hebrew idiom, evil eye. Let's look up "
-"other uses of this idiom: Mt.20:15 \"Is it not lawful for me to do "
-"what I wish with what is my own? Or is your eye envious [lit.\"evil\"] "
-"because I am generous [lit. \"good\"]?\" We find that having an "
-"\"evil eye\" is a Hebrew idiom for being stingy or envious. Now go back to "
-"Mt.6 and notice how this understanding ties in so perfectly to the context."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:174
-#, no-c-format
-msgid "Example 4B"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:175
-#, no-c-format
-msgid "Is.59:1 The Lord's hand is not short;"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:176
-#, no-c-format
-msgid "Deut.33:27 Underneath are the everlasting arms."
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:177
-#, no-c-format
-msgid ""
-"References to body parts of God are used by Latter-Day Saints to prove that "
-"God was once a man just as we are. Once they convince people of that, they "
-"go on to teach that we can become God just like He is! At a lecture he was "
-"giving, a group of Mormon elders challenged Walter Martin (author of "
-"Kingdom of the Cults) with an enumeration of verses "
-"like these. Dr. Martin then asked the Mormons to read one more scripture: "
-"Ps.91:4 He will cover you with His feathers; And under His wings "
-"shalt thou trust. W.M. said, By the same rules of "
-"interpretation that you just proved God to be a man, you just proved that He "
-"is a bird. The Mormons had to laugh as they realised the "
-"ridiculousness of their position."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:189
-#, no-c-format
-msgid ""
-"Rule 5 - Understand the purpose of parables and the difference between a "
-"parable and an allegory"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:190
-#, no-c-format
-msgid ""
-"An allegory is: A story where each element has a meaning."
-"emphasis>"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:191
-#, no-c-format
-msgid "Every parable is an allegory, true or false?"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:193
-#, no-c-format
-msgid ""
-"Some parables are allegories, for instance, the parable of the sower is an "
-"allegory: the seed is the word of God, the thorns are worries and greed, "
-"etc. But most parables are not allegories but simply stories to illustrate "
-"one point. It's dangerous to get our doctrine from parables; they can be "
-"twisted to say all sorts of things. We need to get our doctrine from clear "
-"scriptures that lay it out; then if a parable illustrates that, fine."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:198
-#, no-c-format
-msgid "Example 5A"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:199
-#, no-c-format
-msgid ""
-"The parable of the widow with the unrighteous judge in Lk.18:1-8. This story "
-"illustrates one lesson: boldness in prayer. If we draw it into an allegory, "
-"what do we have?"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:201
-#, no-c-format
-msgid ""
-"All sorts of violence happens to the meanings: God is reluctant to protect "
-"the rights of widows, prayer \"bothers\" Him, etc."
-msgstr ""
-
-#. Tag: title
-#: how2-interpretation.docbook:204
-#, no-c-format
-msgid "Example 5B"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:205
-#, no-c-format
-msgid ""
-"The parable of the unrighteous steward in Lk.16:1-9. What is the point of "
-"the parable? Is it an allegory?"
-msgstr ""
-
-#. Tag: para
-#: how2-interpretation.docbook:207
-#, no-c-format
-msgid ""
-"The steward is commended for only one thing, his shrewdness in using what he "
-"had to prepare for a time when he wouldn't have it. But he is not commended "
-"for his unethical behavior in cheating his master."
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:1
-#, no-c-format
-msgid "Importance of God's Word"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:2
-#, no-c-format
-msgid ""
-"Understanding God's word is of great importance to all who call on God's "
-"name. Study of the Bible is one of the primary ways that we learn to "
-"communicate with God."
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:6
-#, no-c-format
-msgid "A Book that is Unique"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:7
-#, no-c-format
-msgid "The Bible stands alone in many ways. It is unique in:"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:11
-#, no-c-format
-msgid ""
-"popularity. Bible sales in North America: more than $500 million per year. "
-"The Bible is both the the all-time and year-to-year best seller!"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:17
-#, no-c-format
-msgid ""
-"authorship. It was written over a period of 1600 years by 40 different "
-"authors from different backgrounds, yet reads as if written by one."
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:23
-#, no-c-format
-msgid ""
-"preservation. F. F. Bruce in Are New Testament Documents Reliable?"
-" compares New Testament manuscripts with other ancient texts:"
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:30
-#, no-c-format
-msgid "Comparison of New Testament manuscripts with other ancient texts."
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:34
-#, no-c-format
-msgid "Work"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:35
-#, no-c-format
-msgid "When Written"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:36
-#, no-c-format
-msgid "Earliest Copy"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:37
-#, no-c-format
-msgid "Time Lapse"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:37
-#, no-c-format
-msgid "Number of Copies"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:41
-#, no-c-format
-msgid "Herodotus"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:42
-#, no-c-format
-msgid "448-428 B.C."
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:42 how2-importance.docbook:52
-#: how2-importance.docbook:57
-#, no-c-format
-msgid "900 A.D."
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:43
-#, no-c-format
-msgid "1300 years"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:43
-#, no-c-format
-msgid "8"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:46
-#, no-c-format
-msgid "Tacitus"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:47
-#, no-c-format
-msgid "100 A.D."
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:47
-#, no-c-format
-msgid "1100 A.D."
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:48
-#, no-c-format
-msgid "1000 years"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:48 how2-importance.docbook:58
-#, no-c-format
-msgid "20"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:51
-#, no-c-format
-msgid "Caesar's Gallic War"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:52
-#, no-c-format
-msgid "50-58 B.C."
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:53
-#, no-c-format
-msgid "950 years"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:53
-#, no-c-format
-msgid "10"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:56
-#, no-c-format
-msgid "Livy's Roman History"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:57
-#, no-c-format
-msgid "59 B.C. - 17 A.D."
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:58
-#, no-c-format
-msgid "900 years"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:61
-#, no-c-format
-msgid "New Testament"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:62
-#, no-c-format
-msgid "40 A.D. - 100 A.D."
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:62
-#, no-c-format
-msgid "130 A.D. Partial manuscripts 350 A.D. Full manuscripts"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:63
-#, no-c-format
-msgid "30 - 310 years"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:63
-#, no-c-format
-msgid "5000 Greek & 10,000 Latin"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:66
-#, no-c-format
-msgid ""
-"Ten copies of Caesar's Gallic War exist, the earliest "
-"of which was copied 900 years after Caesar wrote the original, etc. For the "
-"New Testament we have full manuscripts dating to 350 A. D., papyri "
-"containing most of the New Testament from the 200s, and a fragment of John's "
-"gospel from 130 A. D. How many manuscripts do we have to compare to each "
-"other? 5,000 in Greek and 10,000 in Latin!"
-msgstr ""
-
-#. Tag: attribution
-#: how2-importance.docbook:72
-#, no-c-format
-msgid ""
-"Textual critic F. J. A. Hort, \"The New Testament in the Original Greek\", "
-"vol. 1 p561, Macmillan Co., quoted in Questions of Life "
-"p. 25-26"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:74
-#, no-c-format
-msgid ""
-"\"In the verity and fullness of the evidence on which it rests, the text of "
-"the New Testament stands absolutely and unapproachably alone among other "
-"ancient prose writings.\""
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:79
-#, no-c-format
-msgid "A Book that God Breathed"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:80
-#, no-c-format
-msgid ""
-"Heb.4:12 \"For the word of God is living and "
-"active... \" Jesus said (Mt.4:4), "
-"\"It is written, Man shall not live on bread alone, but on every "
-"word that proceeds [lit., is proceeding] from the mouth of God.\" "
-"As we read the Bible, God's Spirit is there to speak it to our hearts in a "
-"continually-fresh way."
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:86
-#, no-c-format
-msgid ""
-"2 Tim.3:16 declares, \"All scripture is inspired by God [lit., God-"
-"breathed].\" Do you believe this? Before you answer, consider "
-"Jesus' attitude toward the Scriptures."
-msgstr ""
-
-#. Tag: attribution
-#: how2-importance.docbook:89
-#, no-c-format
-msgid ""
-"John R.W. Stott, Christ the Controversialist, "
-"InterVarsity Press 1978, pp.93-95"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:90
-#, no-c-format
-msgid ""
-"He referred to the human authors, but took it for granted that behind them "
-"all was a single divine Author. He could equally say 'Moses said' or 'God "
-"said' (Mk.7:10). He could quote a comment of the narrator in Genesis 2:24 as "
-"an utterance of the Creator Himself (Mt.19:4-5). Similarly He said, 'Well "
-"did Isaiah prophesy of you hypocrites, as it is written', when what He went "
-"on to quote is the direct speech of the Lord God (Mk.7:6 & Is.29:13). It "
-"is from Jesus Himself that the New Testament authors have gained their "
-"conviction of the dual authorship of Scripture. For them it was just as true "
-"to say that 'God spoke of old to our fathers by the prophets' (Heb.1:1) as "
-"it was to say that 'men moved by the Holy Spirit spoke from God' (2 "
-"Pe.1:21). God did not speak in such a way as to obliterate the personality "
-"of the human authors, nor did men speak in such a way as to corrupt the Word "
-"of the divine Author. God spoke. Men spoke. Neither truth must be allowed to "
-"detract from the other. ..."
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:104
-#, no-c-format
-msgid ""
-"This, then, was Christ's view of the Scriptures. Their witness was God's "
-"witness. The testimony of the Bible is the testimony of God. And the chief "
-"reason why the Christian believes in the divine origin of the Bible is that "
-"Jesus Christ Himself taught it."
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:110
-#, no-c-format
-msgid ""
-"2 Tim.3:16 goes on, \"and profitable for teaching, for correction, "
-"for training in righteousness, that the man of God may be adequate, equipped "
-"for every good work.\" If we accept that the Bible really is God "
-"speaking to us, it follows that it will be our authority in all matters of "
-"faith and conduct."
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:117
-#, no-c-format
-msgid "A Book that Works"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:118
-#, no-c-format
-msgid ""
-"What will studying the Bible do for you? 1 Thess.2:13 says that the Bible "
-"\"performs its work in you who believe.\" Beside each "
-"scripture, write down the work the Word performs."
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:125
-#, no-c-format
-msgid "What does Bible study do for Christians?"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:129
-#, no-c-format
-msgid "Reference"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:130
-#, no-c-format
-msgid "Action"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:135
-#, no-c-format
-msgid "Eph. 5:26"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:137
-#, no-c-format
-msgid ""
-"cleanses -- \"...having cleansed her by the washing of water with the word.\""
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:141
-#, no-c-format
-msgid "Acts 20:32"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:144
-#, no-c-format
-msgid ""
-"builds up -- \" ...the word of His grace, which is able to build you up and "
-"to give you the inheritance among all those who are sanctified. \""
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:153
-#, no-c-format
-msgid "Rom. 15:4"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:156
-#, no-c-format
-msgid ""
-"encourages -- \"that through perseverance and the encouragement of the "
-"Scriptures we might have hope.\""
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:163
-#, no-c-format
-msgid "Rom. 10:17"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:166
-#, no-c-format
-msgid ""
-"gives faith -- \"So faith comes from hearing, and hearing by the word of "
-"Christ.\""
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:174
-#, no-c-format
-msgid "1 Cor. 10:11"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:177
-#, no-c-format
-msgid ""
-"instructs -- \"Now these things happened to them for an example, and they "
-"were written for our instruction\""
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:185
-#, no-c-format
-msgid "Mt. 4:4"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:188
-#, no-c-format
-msgid ""
-"nourishment -- \"But He answered and said, 'It is written, Man shall not "
-"live on bread alone, but on every word that proceeds out of the mouth of "
-"God.'\""
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:200
-#, no-c-format
-msgid "A Book that Liberates"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:201
-#, no-c-format
-msgid ""
-"Jn.8:32 \"and you shall know the truth, and the truth shall make "
-"you free.\"This is usually quoted by itself. Is this a "
-"conditional or unconditional promise? Would it apply to all kinds of "
-"knowledge? Find the answers by examining the first half of the sentence, in "
-"v.31. \"If you abide in My word, then you are truly disciples of "
-"Mine... \""
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:208
-#, no-c-format
-msgid ""
-"We see that this is a conditional promice, specifically speaking of the "
-"truth of God's word."
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:210
-#, no-c-format
-msgid ""
-"The Greek word for \"wind\" used in Eph.4:14 means a violent wind."
-" \"As a result, we are no longer to be children, tossed "
-"here and there by waves, and carried about by every wind of doctrine..."
-"emphasis>\"One thing studying the Bible does for us is to ground us in the "
-"truth, with the result that we won't be easily \"blown away.\""
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:216
-#, no-c-format
-msgid ""
-"But Jesus answered and said to them, \"You "
-"are mistaken [KJV Ye do err], not understanding the Scriptures, or the power "
-"of God.\"Mt.22:29"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:218
-#, no-c-format
-msgid "What 2 things do we need to know to be kept from error?"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:220
-#, no-c-format
-msgid "God's word"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:221
-#, no-c-format
-msgid "God's power"
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:225
-#, no-c-format
-msgid "A Book that Wars"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:226
-#, no-c-format
-msgid "Eph.6:10-18 is one picture of our spiritual armament."
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:229
-#, no-c-format
-msgid "Spiritual Armor"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:233
-#, no-c-format
-msgid "Question"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:234
-#, no-c-format
-msgid "Answer"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:237
-#, no-c-format
-msgid "How many of the weapons listed here are defensive weapons?"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:237
-#, no-c-format
-msgid "5"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:238
-#, no-c-format
-msgid "How many are offensive?"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:238
-#, no-c-format
-msgid "One"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:239
-#, no-c-format
-msgid "Which one(s)?"
-msgstr ""
-
-#. Tag: entry
-#: how2-importance.docbook:239
-#, no-c-format
-msgid "the word - rhema"
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:243
-#, no-c-format
-msgid "Exhortations"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:244
-#, no-c-format
-msgid ""
-"2 Tim.2:15 (KJV) \"Study to show thyself approved unto God, a "
-"workman that needeth not to be ashamed, rightly dividing the word of truth."
-"emphasis>\""
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:248
-#, no-c-format
-msgid ""
-"Col.3:16 \"Let the word of Christ richly dwell within you; with "
-"all wisdom teaching and admonishing one another with psalms and hymns and "
-"spiritual songs, singing with thankfulness in your hearts to God."
-"\""
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:253
-#, no-c-format
-msgid "If you're rich in something, how much of it do you have?"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:255
-#, no-c-format
-msgid "Not a little!"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:258
-#, no-c-format
-msgid ""
-"Eccl.12:11-12 \"The words of wise men are like goads, and masters "
-"of these collections are like well-driven nails; they are given by one "
-"Shepherd. But beyond this, my son, be warned: the writing of many books is "
-"endless, and excessive devotion to books is wearying to the body."
-"\""
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:265
-#, no-c-format
-msgid "Appendix: \"Once for All\""
-msgstr ""
-
-#. Tag: attribution
-#: how2-importance.docbook:268
-#, no-c-format
-msgid ""
-"John R. W. Stott, Christ the Controversialist, "
-"InterVarsity Press 1978, pp.106-107"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:269
-#, no-c-format
-msgid ""
-"The truth regarding the finality of God's initiative in Christ is conveyed "
-"by one word of the Greek Testament, namely the adverb hapax"
-"foreignphrase> and ephapax. It is usually "
-"translated in the Authorized Version once, meaning once for all. It is used "
-"of what is so done as to be of perpetual validity and never need repetition, "
-"and is applied in the NT to both revelation and redemption. Thus, Jude "
-"refers to the faith which was once for all delivered to the saints (Jude 3), "
-"and Romans says, \"Christ also died for sins once for all"
-"emphasis>\" (Rom.6:10, see also 1 Pe.3:18; Heb.9:26-28)."
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:278
-#, no-c-format
-msgid ""
-"Thus we may say that God has spoken once for all and Christ has suffered "
-"once for all. This means that the Christian revelation and the Christian "
-"redemption are both alike in Christ complete. Nothing can be added to either "
-"without being derogatory to Christ... These are the two rocks on which the "
-"Protestant Reformation was built -- Gods revealed word without the addition "
-"of human traditions and Christ's finished work without the addition of human "
-"merits. The Reformers great watchwords were sola scriptura"
-"foreignphrase> for our authority and sola gratia"
-"foreignphrase> for our salvation."
-msgstr ""
-
-#. Tag: title
-#: how2-importance.docbook:290
-#, no-c-format
-msgid "Supplement: Bible Reading Programs"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:291
-#, no-c-format
-msgid ""
-"Here are some easy programs to systematically read your Bible. You can do "
-"more than one at a time if you like, for instance #1 with #4, or #2 with #5. "
-"Vary the program from year to year to keep it fresh!"
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:296
-#, no-c-format
-msgid "New Testament in a Year: read one chapter each day, 5 days a week."
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:298
-#, no-c-format
-msgid ""
-"Proverbs in a Month: read one chapter of Proverbs each day, corresponding to "
-"the day of the month."
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:300
-#, no-c-format
-msgid ""
-"Psalms in a Month: read 5 Psalms at intervals of 30 each day, for instance "
-"on the 20th you read Ps.20, 50, 80, 110, & 140."
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:302
-#, no-c-format
-msgid ""
-"Psalms & Proverbs in 6 months: read through Psalms and Proverbs one "
-"chapter per day."
-msgstr ""
-
-#. Tag: para
-#: how2-importance.docbook:304
-#, no-c-format
-msgid ""
-"Old Testament without Psalms & Proverbs in 2 years: if you read one "
-"chapter a day of the Old Testament, skipping over Psalms & Proverbs, you "
-"will read the Old Testament in 2 years and 2 weeks."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:1
-#, no-c-format
-msgid "Bible Study Basics"
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:4
-#, no-c-format
-msgid "Our Purpose as we Approach the Bible"
-msgstr ""
-
-#. Tag: attribution
-#: how2-basics.docbook:6
-#, no-c-format
-msgid "Jn.5:39-40"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:6
-#, no-c-format
-msgid ""
-"You search the Scriptures, because you think that in them you have eternal "
-"life; and it is these that bear witness of Me; and you are unwilling to come "
-"to Me, that you may have life."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:12
-#, no-c-format
-msgid ""
-"The chief purpose of the book is to bring us to the Person. Martin Luther "
-"said we go to the cradle only for the sake of the baby; just "
-"so in Bible study, we do it not for its own sake but for fellowship with God."
-msgstr ""
-
-#. Tag: attribution
-#: how2-basics.docbook:17
-#, no-c-format
-msgid ""
-"John R.W. Stott, Christ the Controversialist, "
-"InterVarsity Press 1978, pp.97, 104."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:19
-#, no-c-format
-msgid ""
-"The Jews to whom Jesus spoke [...] imagined that to possess Scripture was "
-"tantamount to possessing life. Hillel used to say, "He who has gotten "
-"to himself words of Torah has gotten to himself the life of the world to "
-"come." Their study was an end in itself. In this they were grievously "
-"deceived. [...]"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:24
-#, no-c-format
-msgid ""
-"There is neither merit nor profit in the reading of Scripture for its own "
-"sake, but only if it effectively introduces us to Jesus Christ. Whenever the "
-"Bible is read, what is needed is an eager expectation that through it we may "
-"meet Christ."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:31
-#, no-c-format
-msgid "Approaches to God's Word"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:32
-#, no-c-format
-msgid ""
-"Hearing and reading provide a telescopic view of the scripture while study "
-"and memorization provide a microscopic view of scripture. Meditating on the "
-"scriptures brings hearing, reading, studying and memorization together and "
-"cements the word in our minds."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:37
-#, no-c-format
-msgid "Hear"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:38
-#, no-c-format
-msgid ""
-"Lk.11:28 blessed are those who hear the word of God, and observe it."
-"quote>"
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:42
-#, no-c-format
-msgid "Read"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:43
-#, no-c-format
-msgid ""
-"Rev.1:3 Blessed is he who reads and those who hear the words of this "
-"prophecy [...]"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:45
-#, no-c-format
-msgid ""
-"1 Tim.4:13 give attention to the public reading of Scripture [...]"
-"quote>"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:50
-#, no-c-format
-msgid ""
-"Acts 17:11 Now these were more noble-minded than those in "
-"Thessalonica, for they received the word with great eagerness, examining the "
-"Scriptures daily, to see whether these things were so."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:54
-#, no-c-format
-msgid ""
-"2 Tim.2:15 Be diligent [KJV `Study'] to present yourself approved to "
-"God as a workman who does not need to be ashamed, handling accurately the "
-"word of truth."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:59
-#, no-c-format
-msgid "Memorize"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:60
-#, no-c-format
-msgid ""
-"Ps.119:11 Thy word I have hid in my heart, that I may not sin against "
-"Thee."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:64
-#, no-c-format
-msgid "Meditate"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:65
-#, no-c-format
-msgid ""
-"Ps.1:2-3 But his delight is in the law of the Lord, And in His law he "
-"meditates day and night. And he will be like a tree firmly planted by "
-"streams of water, Which yields its fruit in its season, And its leaf does "
-"not wither; And in whatever he does, he prospers."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:71
-#, no-c-format
-msgid ""
-"The Navigators illustrate this by saying that as the thumb can touch all the "
-"fingers, we can meditate on the Word as we do any of the first four. "
-"Meditation is a key to revelation. A new Christian needs to hear and read "
-"the Bible more than they need to study and memorize it. This is so that they "
-"become familiar with the overall message of the Bible."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:79
-#, no-c-format
-msgid "Types of Bible Studies"
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:80
-#, no-c-format
-msgid "Topical Study"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:81
-#, no-c-format
-msgid ""
-"Pick out a certain topic and follow it through, using cross-references or a "
-"concordance."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:85
-#, no-c-format
-msgid "Character Study"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:86
-#, no-c-format
-msgid ""
-"Studying the life of a Bible character, e.g. Joseph's life in Gen.37-50."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:90
-#, no-c-format
-msgid "Expository Study"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:91
-#, no-c-format
-msgid "Studying a certain passage: paragraph, chapter, or book."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:95
-#, no-c-format
-msgid "Basics of Correct Interpretation"
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:97
-#, no-c-format
-msgid "Content"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:98
-#, no-c-format
-msgid ""
-"What does it say? What does it say in the original language? Be careful with "
-"definitions. Don't read into it what it doesn't say."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:102
-#, no-c-format
-msgid "Context"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:103
-#, no-c-format
-msgid ""
-"What do the verses around it say? "Context is king" is the rule -- "
-"the passage must make sense within the structure of the entire passage and "
-"book."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:108
-#, no-c-format
-msgid ""
-"What do other verses about this subject say through the rest of the Bible? "
-"God doesn't contradict Himself, so our interpretation needs to stand the "
-"test of other scriptures."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:113
-#, no-c-format
-msgid "An Expository Study of Matthew 6:1-18"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:114
-#, no-c-format
-msgid ""
-"Let's study together Mt.6:1-18. Read it to yourself, first looking for the "
-"key verse, the verse that sums up the whole passage. Think you have it? Test "
-"it by picking different places in the passage and asking yourself if they "
-"relate to the thought of the key verse. Once you find it, write it as Roman "
-"numeral One of your outline:"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:119
-#, no-c-format
-msgid "Beware of practicing your righteousness before men to be noticed"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:122
-#, no-c-format
-msgid ""
-"What does practicing your righteousness mean? Does the "
-"passage give any examples? What area of our lives is being addressed? "
-"Our motives! What sub-headings develop this thought?"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:126 how2-basics.docbook:135
-#, no-c-format
-msgid "When you give"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:127
-#, no-c-format
-msgid "When you fast"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:128
-#, no-c-format
-msgid "When you pray"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:131
-#, no-c-format
-msgid ""
-"Now fill in the outline with specific instructions of how to avoid wrong "
-"ways of practicing our righteousness:"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:137
-#, no-c-format
-msgid ""
-"don't sound a trumpet. (how might someone sound a trumpet "
-"today?)"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:138
-#, no-c-format
-msgid "do it secretly."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:139
-#, no-c-format
-msgid "etc."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:145
-#, no-c-format
-msgid "Worksheet: How to Use a Concordance"
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:147
-#, no-c-format
-msgid "To Find a Particular Verse"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:149
-#, no-c-format
-msgid "Pick out a key word or most-unusual word of the verse."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:150
-#, no-c-format
-msgid "Turn to this word alphabetically."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:151
-#, no-c-format
-msgid "Go down the column of listings until you find your verse."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:154
-#, no-c-format
-msgid "Find these verses:"
-msgstr ""
-
-#. Tag: quote
-#: how2-basics.docbook:156
-#, no-c-format
-msgid "Faithful are the wounds of a friend"
-msgstr ""
-
-#. Tag: quote
-#: how2-basics.docbook:157
-#, no-c-format
-msgid "We are ambassadors of Christ."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:158
-#, no-c-format
-msgid "The story of the rich man and Lazarus."
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:163
-#, no-c-format
-msgid "To Do a Topical Study"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:164
-#, no-c-format
-msgid ""
-"Let's say you wanted to do a study of the word "redemption." First "
-"you would look up that word in the concordance and look up references listed "
-"for it. Then you could look up related words and references listed for them, "
-"e.g. "redeem, redeemed, ransom," even "buy" or ""
-"bought.""
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:170
-#, no-c-format
-msgid "To Clarify Word Meanings in the Greek and Hebrew"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:171
-#, no-c-format
-msgid ""
-"What if you noticed a contradiction in the KJV between Mt.7:1 Judge "
-"not lest you be judged and 1 Cor.2:15 He that is spiritual "
-"judgeth all things. Maybe there are two different Greek words here, "
-"both being translated "judge" in English? (We're using Strong's "
-"from here out.)"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:175
-#, no-c-format
-msgid "Look up "judge"."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:176
-#, no-c-format
-msgid ""
-"Go down the column of entries to Mt.7:1. To the right is a number, 2919. "
-"This refers to the Greek word used. Write it down."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:178
-#, no-c-format
-msgid "Now look up "judgeth"."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:179
-#, no-c-format
-msgid "Go down the column to 1 Cor.2:15 . . . . . 350."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:180
-#, no-c-format
-msgid ""
-"Turn in the back to the Greek dictionary. (Remember, you're in the NT so the "
-"language is Greek, while the OT is Hebrew.) Compare the meaning of 2919 with "
-"the meaning of 350 and you have your answer!"
-msgstr ""
-
-#. Tag: title
-#: how2-basics.docbook:185
-#, no-c-format
-msgid "To Find Meanings of Names"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:186
-#, no-c-format
-msgid ""
-"By the same process we can find the meaning of a name in the Greek or Hebrew."
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:187
-#, no-c-format
-msgid "Look up these names and write down their meaning:"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:189
-#, no-c-format
-msgid "Nabal"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:190
-#, no-c-format
-msgid "Abigail"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:191
-#, no-c-format
-msgid "Joshua"
-msgstr ""
-
-#. Tag: para
-#: how2-basics.docbook:192
-#, no-c-format
-msgid "Barnabus"
-msgstr ""
diff --git a/pot/messages.pot b/pot/messages.pot
deleted file mode 100644
index d4bcb70..0000000
--- a/pot/messages.pot
+++ /dev/null
@@ -1,2823 +0,0 @@
-# SOME DESCRIPTIVE TITLE.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
-# This file is distributed under the same license as the PACKAGE package.
-# FIRST AUTHOR , YEAR.
-#
-#, fuzzy
-msgid ""
-msgstr ""
-"Project-Id-Version: PACKAGE VERSION\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2007-04-17 21:48+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: FULL NAME \n"
-"Language-Team: LANGUAGE \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-
-#: ../bibletime/backend/bt_osishtml.cpp:327
-msgid "Alternative text"
-msgstr ""
-
-#: ../bibletime/backend/bt_osishtml.cpp:485
-msgid "Added text"
-msgstr ""
-
-#: ../bibletime/backend/cdisplaytemplatemgr.cpp:184
-msgid "(user template)"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:503
-msgid "Footnotes"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:506
-msgid "Strong's numbers"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:509
-msgid "Headings"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:512
-msgid "Morphological tags"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:515
-msgid "Lemmas"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:518
-msgid "Hebrew vowel points"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:521
-msgid "Hebrew cantillation marks"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:524
-msgid "Greek accents"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:527
-msgid "Red letter words"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:530
-msgid "Textual variants"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:533
-msgid "Scripture cross-references"
-msgstr ""
-
-#: ../bibletime/backend/cswordbackend.cpp:536
-msgid "Morph segmentation"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:715
-#: ../bibletime/util/ctoolclass.cpp:213
-msgid "Version"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:716
-#: ../bibletime/backend/cswordmoduleinfo.cpp:721
-#: ../bibletime/frontend/cprofile.cpp:30
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:287
-msgid "unknown"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:719
-msgid "Markup"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:724
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:86
-msgid "Location"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:728
-#: ../bibletime/util/ctoolclass.cpp:205
-msgid "Language"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:733
-msgid "Category"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:738
-msgid "LCSH"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:742
-msgid "Writable"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:743
-msgid "no"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:743
-msgid "yes"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:747
-#: ../bibletime/util/ctoolclass.cpp:208
-msgid "Unlock key"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:766
-msgid "Features"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:774
-#: ../bibletime/util/ctoolclass.cpp:201
-msgid "Take care, this work contains cult / questionable material!"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:808
-msgid "Distribution license"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:810
-msgid "Distribution source"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:812
-msgid "Distribution notes"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:814
-msgid "Text source"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:816
-msgid "Copyright notes"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:818
-msgid "Copyright holder"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:820
-msgid "Copyright date"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:822
-msgid "Copyright contact name"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:824
-msgid "Copyright contact address"
-msgstr ""
-
-#: ../bibletime/backend/cswordmoduleinfo.cpp:826
-msgid "Copyright contact email"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:75
-msgid "Creating BibleTime's GUI"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:87
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:147
-msgid "Bookshelf"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:104
-msgid "Initializing menu- and toolbars"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:115
-msgid "Search in &open work(s)"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:128
-msgid "Search in standard &Bible"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:150
-msgid "&Show bookshelf"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:162
-msgid "Show &mag"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:182
-msgid "Bookshelf &Manager"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:208
-msgid "&Arrangement mode"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:214
-msgid "&Manual mode"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:231
-msgid "Auto-tile &vertically"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:248
-msgid "Auto-tile &horizontally"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:265
-msgid "Auto-&cascade"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:281
-msgid "&Cascade"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:295
-msgid "Tile &vertically"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:307
-msgid "Tile &horizontally"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:321
-msgid "Cl&ose all"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:334
-msgid "&Save session"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:347
-msgid "Save as &new session"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:360
-msgid "&Load session"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:372
-msgid "&Delete session"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:384
-msgid "&Fullscreen mode"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:413
-msgid "&Handbook"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:426
-msgid "&Bible Study Howto"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:457
-msgid "&Daily tip"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:521
-msgid "Initializing Sword"
-msgstr ""
-
-#: ../bibletime/bibletime_init.cpp:570
-msgid "Checking indices"
-msgstr ""
-
-#: ../bibletime/bibletime_slots.cpp:536
-msgid "Please enter a name for the new session."
-msgstr ""
-
-#: ../bibletime/bibletime_slots.cpp:536
-msgid "Session name:"
-msgstr ""
-
-#: ../bibletime/display-templates/template-init.cpp:351
-msgid "Crazy"
-msgstr ""
-
-#: ../bibletime/display-templates/template-init.cpp:677
-msgid "Green"
-msgstr ""
-
-#: ../bibletime/display-templates/template-init.cpp:1005
-msgid "High contrast"
-msgstr ""
-
-#: ../bibletime/display-templates/template-init.cpp:1346
-msgid "Simple"
-msgstr ""
-
-#: ../bibletime/frontend/cbtconfig.cpp:252
-msgid "Old testament"
-msgstr ""
-
-#: ../bibletime/frontend/cbtconfig.cpp:253
-msgid "Moses/Pentateuch/Torah"
-msgstr ""
-
-#: ../bibletime/frontend/cbtconfig.cpp:254
-msgid "History"
-msgstr ""
-
-#: ../bibletime/frontend/cbtconfig.cpp:255
-msgid "Prophets"
-msgstr ""
-
-#: ../bibletime/frontend/cbtconfig.cpp:256
-msgid "New testament"
-msgstr ""
-
-#: ../bibletime/frontend/cbtconfig.cpp:257
-msgid "Gospels"
-msgstr ""
-
-#: ../bibletime/frontend/cbtconfig.cpp:258
-msgid "Letters/Epistles"
-msgstr ""
-
-#: ../bibletime/frontend/cbtconfig.cpp:259
-msgid "Paul's Epistles"
-msgstr ""
-
-#: ../bibletime/frontend/cexportmanager.cpp:472
-msgid ""
-"*.html *.htm | HTML files\n"
-" *.* | All files (*.*)"
-msgstr ""
-
-#: ../bibletime/frontend/cexportmanager.cpp:474
-msgid ""
-"*.txt | Text files\n"
-" *.* | All files (*.*)"
-msgstr ""
-
-#: ../bibletime/frontend/cexportmanager.cpp:476
-msgid "All files (*.*)"
-msgstr ""
-
-#: ../bibletime/frontend/cinfodisplay.cpp:53
-msgid "Mag (\"shift\" to lock)"
-msgstr ""
-
-#: ../bibletime/frontend/cinfodisplay.cpp:168
-msgid "Abbreviation"
-msgstr ""
-
-#: ../bibletime/frontend/cinfodisplay.cpp:179
-#: ../bibletime/frontend/cinfodisplay.cpp:272
-msgid "Cross references"
-msgstr ""
-
-#: ../bibletime/frontend/cinfodisplay.cpp:313
-msgid "Footnote"
-msgstr ""
-
-#: ../bibletime/frontend/cinfodisplay.cpp:340
-msgid "Strongs"
-msgstr ""
-
-#: ../bibletime/frontend/cinfodisplay.cpp:419
-msgid "Morphology"
-msgstr ""
-
-#: ../bibletime/frontend/cinfodisplay.cpp:442
-msgid "Word lookup"
-msgstr ""
-
-#: ../bibletime/frontend/cinputdialog.cpp:59
-msgid "C&lear"
-msgstr ""
-
-#: ../bibletime/frontend/cinputdialog.cpp:66
-msgid "&Ok"
-msgstr ""
-
-#: ../bibletime/frontend/cmanageindiceswidget.cpp:62
-msgid "Manage module search indices"
-msgstr ""
-
-#: ../bibletime/frontend/cmanageindiceswidget.cpp:63
-msgid ""
-"You can use the list below to create and/or delete search indices for your "
-"installed works."
-msgstr ""
-
-#: ../bibletime/frontend/cmanageindiceswidget.cpp:67
-msgid "Module"
-msgstr ""
-
-#: ../bibletime/frontend/cmanageindiceswidget.cpp:68
-msgid "Index size"
-msgstr ""
-
-#: ../bibletime/frontend/cmanageindiceswidget.cpp:90
-msgid "Modules with indices"
-msgstr ""
-
-#: ../bibletime/frontend/cmanageindiceswidget.cpp:94
-msgid "Modules without indices"
-msgstr ""
-
-#: ../bibletime/frontend/cmanageindiceswidget.cpp:106
-#: ../bibletime/frontend/cmanageindiceswidget.cpp:111
-msgid "KiB"
-msgstr ""
-
-#: ../bibletime/frontend/cmoduleindexdialog.cpp:41
-msgid "Preparing instant search"
-msgstr ""
-
-#: ../bibletime/frontend/cmoduleindexdialog.cpp:53
-msgid "Creating index for work %1"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:75
-msgid "Configure BibleTime"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:138
-msgid "Display"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:144
-msgid "Show tip of the day"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:157
-msgid "Show startuplogo"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:169
-msgid "Display templates"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:170
-msgid ""
-"Display templates define how text is displayed. Please choose a template you "
-"like."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:183
-msgid "Available display styles:"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:193
-msgid "Style preview"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:214
-msgid "Languages"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:220
-msgid "Specify a language for names of Bible books"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:221
-msgid ""
-"Sword has a number of locales available which can be used to "
-"internationalize the names of books of the Bible. You can specify which "
-"locale to use. If you want to create a new locale, see http://www."
-"crosswire.org/sword/develop for details."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:227
-msgid "Language for names of Bible books"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:303
-msgid "Select custom fonts per-language"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:304
-msgid ""
-"Here you find a list of all languages of the installed works. You can "
-"specify a custom font for each language that needs a special font to be "
-"displayed correctly."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:337
-msgid "Use custom font"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:345
-msgid "The quick brown fox jumps over the lazy dog."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:361
-msgid "HotKeys"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:369
-msgid "Choose type:"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:388
-msgid "BibleTime"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:389
-msgid "All text windows"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:390
-msgid "Bible windows"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:391
-msgid "Commentary windows"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:392
-msgid "Lexicon windows"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:393
-msgid "Book windows"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:458
-msgid "Desk"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:463
-#: ../bibletime/frontend/coptionsdialog.cpp:468
-msgid "Standard works"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:469
-msgid ""
-"Standard works are used when no particular work is specified, for example "
-"when a hyperlink into a Bible or lexicon was clicked ."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:475
-msgid "Standard Bible"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:484
-msgid "Standard Commentary"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:494
-msgid "Standard Lexicon"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:503
-msgid "Standard Daily Devotional"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:512
-msgid "Standard Hebrew Strong's Lexicon"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:521
-msgid "Standard Greek Strong's Lexicon"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:530
-msgid "Standard Hebrew Morphological Lexicon"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:538
-msgid "Standard Greek Morphological Lexicon"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:660
-#: ../bibletime/frontend/coptionsdialog.cpp:663
-msgid "Text filters"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:664
-msgid ""
-"Filters control the appearance of text. Here you can specify default "
-"settings for all filters. You can change the filter settings in each display "
-"window, of course."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:671
-msgid "Insert line break after each verse"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:677
-msgid "Show verse numbers"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:683
-msgid "Show section headings"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:690
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:163
-msgid "Show scripture cross-references"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:696
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:158
-msgid "Show Greek accents"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:702
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:154
-msgid "Show Hebrew vowel points"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:708
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:156
-msgid "Show Hebrew cantillation marks"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:714
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:165
-msgid "Show morph segmentation"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:720
-msgid "Use textual variants"
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:925
-msgid ""
-"For God so loved the world, that he gave his one and only Son, that whoever "
-"believes in him should not perish, but have eternal life."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:930
-msgid ""
-"For God didn't send his Son into the world to judge the world, but that the "
-"world should be saved through him."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:937
-msgid ""
-"He who believes in him is not judged. He who doesn't believe has been judged "
-"already, because he has not believed in the name of the one and only Son of "
-"God."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:944
-msgid ""
-"This is the judgment, that the light has come into the world, and men loved "
-"the darkness rather than the light; for their works were evil."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:949
-msgid ""
-"For everyone who does evil hates the light, and doesn't come to the light, "
-"lest his works would be exposed."
-msgstr ""
-
-#: ../bibletime/frontend/coptionsdialog.cpp:954
-msgid ""
-"But he who does the truth comes to the light, that his works may be "
-"revealed, that they have been done in God."
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:59
-msgid "Bookshelf Manager"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:75
-msgid "Bookshelf path(s)"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:86
-msgid "Configure bookshelf path(s)"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:87
-msgid ""
-"You can store your bookshelfs in one or more directories, which you can "
-"specify here."
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:93
-msgid "Your bookshelf configuration file is %1"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:98
-msgid "Path to bookshelf"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:102
-msgid "Edit Entry"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:107
-msgid "Add Entry"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:112
-msgid "Remove Entry"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:121
-msgid "Install/Update works"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:144
-msgid "Install/update works - Step 1"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:145
-msgid ""
-"Please choose a (local or remote) library and a bookshelf path to install "
-"the work(s) to. After that step click on the connect button. WARNING: "
-"If you live in a persecuted country and do not wish to risk detection you "
-"should NOT use the module remote installation feature!"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:152
-msgid "Select library"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:158
-msgid "Delete library"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:163
-msgid "Add library"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:171
-msgid "Select bookshelf path"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:191
-#: ../bibletime/frontend/cswordsetupdialog.cpp:797
-msgid "Connect to library"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:206
-msgid "Remove works"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:218
-msgid "Remove installed work(s)"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:219
-msgid ""
-"This dialog lets you remove installed works from your system. Choose the "
-"modules and then click on the remove button."
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:223
-msgid "Select works to be uninstalled"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:229
-msgid "Remove selected work(s)"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:241
-msgid "Manage search indicies"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:319
-#: ../bibletime/frontend/cswordsetupdialog.cpp:371
-#: ../bibletime/frontend/cswordsetupdialog.cpp:881
-msgid "[Remote]"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:324
-#: ../bibletime/frontend/cswordsetupdialog.cpp:366
-#: ../bibletime/frontend/cswordsetupdialog.cpp:876
-msgid "[Local]"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:407
-msgid ""
-"You selected the following work(s): %1.\n"
-"\n"
-"Do you really want to remove them from your system?"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:484
-msgid "Download"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:497
-msgid "Downloading library information..."
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:612
-msgid "Install/update works - Step 2"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:613
-msgid ""
-"Please choose the works which should be installed and/or updated and click "
-"the install button."
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:639
-msgid "Install works"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:690
-msgid ""
-"You selected the following works: %1.\n"
-"\n"
-" Do you really want to install them on your system?"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:717
-msgid "Download of work(s)"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:788
-msgid "[%1]: %2% complete"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:809
-msgid ""
-"This directory is not writable, so works can not be installed here using "
-"BibleTime. Do you want to use this directory instead of the previous "
-"value?"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupdialog.cpp:830
-msgid ""
-"This directory is not writable, so works can not be installed here using "
-"BibleTime. Do you want to add it to the list of module directories?"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:31
-msgid "Local"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:32
-msgid "Remote"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:43
-msgid "Caption"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:55
-msgid "Type"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:58
-msgid "Server"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:61
-msgid "Path"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:81
-msgid "Ok"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:95
-msgid "Please provide a caption."
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:103
-msgid ""
-"A source with this caption already exists. Please provide a different "
-"caption."
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:109
-msgid "Please provide a server name."
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:116
-msgid "Please provide a valid, readable path."
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupinstallsourcesdialog.cpp:120
-msgid "Please provide a path."
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:74
-msgid "Name"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:78
-msgid "Status"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:80
-msgid "Installed version"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:84
-msgid "Remote version"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:107
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:115
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:583
-#: ../bibletime/frontend/searchdialog/cmodulechooser.cpp:109
-msgid "Bibles"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:108
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:116
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:586
-#: ../bibletime/frontend/searchdialog/cmodulechooser.cpp:110
-msgid "Commentaries"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:109
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:117
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:589
-#: ../bibletime/frontend/searchdialog/cmodulechooser.cpp:111
-msgid "Lexicons"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:110
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:118
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:592
-#: ../bibletime/frontend/searchdialog/cmodulechooser.cpp:112
-msgid "Books"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:111
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:119
-#: ../bibletime/frontend/searchdialog/cmodulechooser.cpp:150
-msgid "Daily Devotionals"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:112
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:120
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:598
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:1174
-#: ../bibletime/frontend/searchdialog/cmodulechooser.cpp:161
-msgid "Glossaries"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:234
-msgid "New"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:234
-msgid "Updated"
-msgstr ""
-
-#: ../bibletime/frontend/cswordsetupmodulelistview.cpp:236
-msgid "Installed"
-msgstr ""
-
-#: ../bibletime/frontend/display/cdisplay.cpp:154
-#: ../bibletime/frontend/searchdialog/csearchanalysis.cpp:517
-msgid "HTML files"
-msgstr ""
-
-#: ../bibletime/frontend/display/cdisplay.cpp:157
-msgid "Text files"
-msgstr ""
-
-#: ../bibletime/frontend/display/cdisplay.cpp:161
-msgid "Save document ..."
-msgstr ""
-
-#: ../bibletime/frontend/display/chtmlwritedisplay.cpp:133
-msgid "Choose a font"
-msgstr ""
-
-#: ../bibletime/frontend/display/chtmlwritedisplay.cpp:144
-msgid "Choose a font size"
-msgstr ""
-
-#: ../bibletime/frontend/display/chtmlwritedisplay.cpp:164
-msgid "Bold"
-msgstr ""
-
-#: ../bibletime/frontend/display/chtmlwritedisplay.cpp:186
-msgid "Underline"
-msgstr ""
-
-#: ../bibletime/frontend/display/chtmlwritedisplay.cpp:258
-msgid "Select all"
-msgstr ""
-
-#: ../bibletime/frontend/display/chtmlwritedisplay.cpp:262
-msgid "HTML editor window"
-msgstr ""
-
-#: ../bibletime/frontend/display/creaddisplay.cpp:67
-msgid "Print keys"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:82
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:134
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:38
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:111
-msgid "Next book"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:86
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:140
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:42
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:117
-msgid "Previous book"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:90
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:146
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:46
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:123
-msgid "Next chapter"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:94
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:152
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:50
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:129
-msgid "Previous chapter"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:98
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:158
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:54
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:135
-msgid "Next verse"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:102
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:164
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:58
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:141
-msgid "Previous verse"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:113
-msgid "Copy chapter"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:118
-msgid "Save chapter as plain text"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:119
-msgid "Save chapter as HTML"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:123
-msgid "Print chapter"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:177
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:101
-msgid "Strong's Search"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:185
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:108
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:119
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:65
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:73
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:53
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:61
-msgid "Reference only"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:187
-msgid "Text of reference"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:189
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:196
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:202
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:67
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:75
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:81
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:55
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:63
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:69
-msgid "Reference with text"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:191
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:204
-msgid "Chapter"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:198
-msgid "Chapter as plain text"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:200
-msgid "Chapter as HTML"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:229
-msgid "Bible window"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:237
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:211
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:63
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:51
-msgid "Copy..."
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:247
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:220
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:71
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:59
-msgid "Save..."
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:254
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:226
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:79
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:67
-msgid "Print..."
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:351
-msgid "Copy chapter to clipboard ..."
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:351
-msgid "Copying"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:372
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:390
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:270
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:276
-msgid "Saving"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:372
-#: ../bibletime/frontend/displaywindow/cbiblereadwindow.cpp:390
-msgid "Saving chapter ..."
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbookreadwindow.cpp:65
-#: ../bibletime/frontend/displaywindow/cbookreadwindow.cpp:76
-msgid "Toggle tree view"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbookreadwindow.cpp:82
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:56
-msgid "Copy entry with text"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbookreadwindow.cpp:84
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:58
-msgid "Save entry as plain text"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbookreadwindow.cpp:85
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:59
-msgid "Save entry as HTML"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbookreadwindow.cpp:87
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:61
-msgid "Print entry with text"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbookreadwindow.cpp:174
-msgid "Book window"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:111
-msgid "Display settings: No options available"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:116
-msgid "Display settings"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:133
-msgid "Display options"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:136
-msgid "Use linebreaks after each verse"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:139
-msgid "Show versenumbers"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:141
-msgid "Show headings"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:145
-msgid "Highlight words of Jesus"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cbuttons.cpp:161
-msgid "Use alternative textual variant"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:78
-#: ../bibletime/frontend/displaywindow/chtmlwritewindow.cpp:59
-#: ../bibletime/frontend/displaywindow/cplainwritewindow.cpp:55
-msgid "Sync with active Bible"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/ccommentaryreadwindow.cpp:197
-msgid "Commentary window"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cdisplaywindow.cpp:146
-#: ../bibletime/frontend/displaywindow/cdisplaywindow.cpp:197
-msgid "Back in history"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cdisplaywindow.cpp:153
-#: ../bibletime/frontend/displaywindow/cdisplaywindow.cpp:203
-msgid "Forward in history"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cdisplaywindow.cpp:161
-#: ../bibletime/frontend/searchdialog/csearchdialog.cpp:85
-msgid "Search"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/chtmlwritewindow.cpp:68
-#: ../bibletime/frontend/displaywindow/cplainwritewindow.cpp:65
-msgid "Save text"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/chtmlwritewindow.cpp:78
-#: ../bibletime/frontend/displaywindow/cplainwritewindow.cpp:76
-msgid "Delete current entry"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/chtmlwritewindow.cpp:88
-#: ../bibletime/frontend/displaywindow/cplainwritewindow.cpp:87
-msgid "Restore original text"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:47
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:83
-msgid "Next entry"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:51
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:88
-msgid "Previous entry"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:110
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:121
-msgid "Entry with text"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:115
-msgid "Entry as plain text"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:117
-msgid "Entry as HTML"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:200
-msgid "Lexicon window"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:270
-#: ../bibletime/frontend/displaywindow/clexiconreadwindow.cpp:276
-msgid "Saving entry ..."
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cmodulechooserbutton.cpp:112
-#: ../bibletime/frontend/displaywindow/cmodulechooserbutton.cpp:159
-msgid "NONE"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cmodulechooserbutton.cpp:128
-#: ../bibletime/frontend/displaywindow/cmodulechooserbutton.cpp:129
-#: ../bibletime/frontend/displaywindow/cmodulechooserbutton.cpp:151
-msgid "Select a work"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cmodulechooserbutton.cpp:154
-msgid "Select an additional work"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cmodulechooserbutton.cpp:225
-msgid "[locked]"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cmodulechooserbutton.cpp:244
-msgid "No work selected"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cplainwritewindow.cpp:138
-msgid "Module is not writable."
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cplainwritewindow.cpp:139
-msgid ""
-"Either the module may not be edited, or you do not have write permission."
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cplainwritewindow.cpp:141
-msgid "Module not writable"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cwritewindow.cpp:141
-msgid "Save text before closing?"
-msgstr ""
-
-#: ../bibletime/frontend/displaywindow/cwritewindow.cpp:165
-msgid "Save changed text?"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:391
-msgid "Change description ..."
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:391
-msgid "Enter a new description for the chosen bookmark."
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:486
-msgid "New folder"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:595
-msgid "Daily devotionals"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:604
-msgid "Old bookmarks"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:607
-msgid "Unknown"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:614
-msgid "Unknown language"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:959
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:967
-msgid ""
-"*.btb | BibleTime bookmark files (*.btb)\n"
-"*.* | All files (*.*)"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:959
-msgid "BibleTime - Export bookmarks"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cindexitem.cpp:967
-msgid "BibleTime - Import bookmarks"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:149
-msgid "Create a new folder"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:150
-msgid "Change this folder"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:152
-msgid "Change bookmark description"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:153
-msgid "Import bookmarks"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:154
-msgid "Export bookmarks"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:155
-msgid "Print bookmarks"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:157
-msgid "Remove selected item(s)"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:159
-msgid "Edit this work"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:161
-msgid "Plain text"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:162
-msgid "HTML"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:164
-msgid "Search in selected work(s)"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:165
-msgid "Unlock this work"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:166
-msgid "About this work"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:534
-msgid "Delete Items"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:534
-msgid "Do you really want to delete the selected items and child-items?"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:574
-msgid "BibleTime - Unlock work"
-msgstr ""
-
-#: ../bibletime/frontend/mainindex/cmainindex.cpp:575
-msgid "Enter the unlock key for this work."
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/cmodulechooser.cpp:92
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:49
-msgid "Work"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/cmodulechooser.cpp:271
-msgid "Choose work(s)"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/cmodulechooser.cpp:283
-msgid "Use chosen work(s)"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:50
-msgid "Hits"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:227
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:236
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:212
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:231
-msgid "Copy search result..."
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:227
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:236
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:212
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:231
-msgid "Copying search result"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:245
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:254
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:174
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:193
-msgid "Save search result..."
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:245
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:254
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:174
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:193
-msgid "Saving search result"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:263
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:163
-msgid "Print search result..."
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/cmoduleresultview.cpp:263
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:163
-msgid "Printing search result"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/crangechooser.cpp:74
-msgid "Search range editor"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/crangechooser.cpp:102
-msgid "Search range"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/crangechooser.cpp:110
-msgid "Add new range"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/crangechooser.cpp:114
-msgid "Delete current range"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/crangechooser.cpp:120
-msgid "Name:"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/crangechooser.cpp:125
-msgid "Edit current search range:"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/crangechooser.cpp:135
-msgid "Parsed search range:"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/crangechooser.cpp:164
-msgid "New range"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/crangechooser.cpp:229
-msgid ""
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchanalysis.cpp:70
-msgid "Search analysis"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchanalysis.cpp:87
-msgid "Save search analysis as HTML"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchanalysis.cpp:519
-msgid "Save Search Analysis"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchanalysis.cpp:540
-msgid "BibleTime Search Analysis"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchanalysis.cpp:541
-msgid "Search text :"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchanalysis.cpp:543
-msgid "Book"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchanalysis.cpp:544
-msgid "Total hits"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchanalysis.cpp:580
-msgid "Created by"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchdialog.cpp:85
-msgid "Search dialog"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchdialog.cpp:111
-msgid "Missing indices"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchdialog.cpp:112
-msgid ""
-"One or more modules need indexing before they can be searched.\n"
-"This could take a long time. Proceed with indexing?"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchdialogpages.cpp:81
-msgid "Parsing Stong's Numbers"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchdialogpages.cpp:81
-msgid "Parsing Stong's numbers for translations."
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchdialogpages.cpp:650
-msgid "Searching in: "
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchdialogpages.cpp:723
-msgid ""
-"
Enter search terms separated by spaces. By default the search function "
-"will return results that match any of the search terms (OR). To search for "
-"all the terms separate the terms by AND.
You can use wildcards: '*' matches any sequence of characters, while '?' "
-"matches any single character. The use of brackets allows you to group your "
-"search terms, e.g. '(Jesus OR spirit) AND God'.
To search text other than the main text, enter the text type followed by "
-"\":\", and then the search term. For example, to search for the Strong's "
-"number H8077, use 'strong:H8077'.
"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchdialogpages.cpp:742
-msgid "Basic Search Syntax Introduction"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchdialogpages.cpp:750
-msgid "No search scope"
-msgstr ""
-
-#: ../bibletime/frontend/searchdialog/csearchresultview.cpp:41
-msgid "Results"
-msgstr ""
-
-#: ../bibletime/main.cpp:124
-msgid "Enable debug messages"
-msgstr ""
-
-#: ../bibletime/main.cpp:125
-msgid ""
-"Ignore the startup session that was saved when BibleTime was closed the last "
-"time."
-msgstr ""
-
-#: ../bibletime/main.cpp:126
-msgid ""
-"Open the standard Bible with the given key. Use to open at a random "
-"position."
-msgstr ""
-
-#: ../bibletime/main.cpp:135
-msgid "Bible study tool for KDE"
-msgstr ""
-
-#: ../bibletime/main.cpp:137
-msgid "(c)1999-2007, The BibleTime Team"
-msgstr ""
-
-#: ../bibletime/main.cpp:138
-msgid ""
-"BibleTime is an easy to use but powerful Bible study tool for KDE.\n"
-"\n"
-"We are looking for developers and translators.\n"
-"If you'd like to join our team, please send an email to info@bibletime.info."
-msgstr ""
-
-#: ../bibletime/main.cpp:147
-msgid "Project coordinator"
-msgstr ""
-
-#: ../bibletime/main.cpp:149
-msgid "Frontend, backend"
-msgstr ""
-
-#: ../bibletime/main.cpp:151
-msgid "Crystal icons, crystal startlogo, webpage"
-msgstr ""
-
-#: ../bibletime/main.cpp:159
-msgid "Romanian translation"
-msgstr ""
-
-#: ../bibletime/main.cpp:161
-msgid "High contrast template"
-msgstr ""
-
-#: ../bibletime/main.cpp:163
-msgid "Installation manager"
-msgstr ""
-
-#: ../bibletime/main.cpp:165
-msgid "Icons, startlogo"
-msgstr ""
-
-#: ../bibletime/main.cpp:167
-msgid "GUI"
-msgstr ""
-
-#: ../bibletime/main.cpp:169
-msgid "GUI, instant search"
-msgstr ""
-
-#: ../bibletime/main.cpp:171
-msgid "GUI translations into Traditional and Simplified Chinese"
-msgstr ""
-
-#: ../bibletime/main.cpp:173
-msgid "Binary packages"
-msgstr ""
-
-#: ../bibletime/main.cpp:175
-msgid "Founder of the Sword project"
-msgstr ""
-
-#: ../bibletime/main.cpp:177
-msgid "Sponsored our internet domain for many years"
-msgstr ""
-
-#: ../bibletime/main.cpp:179
-msgid "Bible Study HowTo"
-msgstr ""
-
-#: ../bibletime/main.cpp:181 ../bibletime/main.cpp:209
-msgid "Search dialog enhancements"
-msgstr ""
-
-#: ../bibletime/main.cpp:183
-msgid "Language codes and names"
-msgstr ""
-
-#: ../bibletime/main.cpp:185
-msgid "GUI improvements"
-msgstr ""
-
-#: ../bibletime/main.cpp:187
-msgid "Finnish translation"
-msgstr ""
-
-#: ../bibletime/main.cpp:189 ../bibletime/main.cpp:197
-msgid "Frontend"
-msgstr ""
-
-#: ../bibletime/main.cpp:191
-msgid "Czech translation"
-msgstr ""
-
-#: ../bibletime/main.cpp:193
-msgid "Searchdialog"
-msgstr ""
-
-#: ../bibletime/main.cpp:195
-msgid "Polish translation"
-msgstr ""
-
-#: ../bibletime/main.cpp:199 ../bibletime/main.cpp:207
-msgid "Russian website translation"
-msgstr ""
-
-#: ../bibletime/main.cpp:201
-msgid "Spanish website translation updates"
-msgstr ""
-
-#: ../bibletime/main.cpp:203
-msgid "Update to the russian website translation"
-msgstr ""
-
-#: ../bibletime/main.cpp:205
-msgid "Documentation"
-msgstr ""
-
-#: ../bibletime/main.cpp:211
-msgid "Very helpful and detailed testing"
-msgstr ""
-
-#: ../bibletime/main.cpp:213
-msgid "The first lead developer"
-msgstr ""
-
-#: ../bibletime/main.cpp:215
-msgid "Translation updates for the Dutch GUI, the website and the handbook"
-msgstr ""
-
-#: ../bibletime/main.cpp:217
-msgid "French handbook translation"
-msgstr ""
-
-#: ../bibletime/main.cpp:219
-msgid "Helpful source code additions"
-msgstr ""
-
-#: ../bibletime/main.cpp:221
-msgid "Translated the GUI into Russian"
-msgstr ""
-
-#: ../bibletime/main.cpp:223
-msgid "New Bible key choosers"
-msgstr ""
-
-#: ../bibletime/main.cpp:225
-msgid "Spanish translation"
-msgstr ""
-
-#: ../bibletime/main.cpp:229
-msgid ""
-"_: NAME OF TRANSLATORS\n"
-"Your names"
-msgstr ""
-
-#: ../bibletime/main.cpp:230
-msgid ""
-"_: EMAIL OF TRANSLATORS\n"
-"Your emails"
-msgstr ""
-
-#: ../bibletime/main.cpp:256
-msgid "Starting BibleTime"
-msgstr ""
-
-#: ../bibletime/rc-dummy.cpp:2
-msgid "&Search"
-msgstr ""
-
-#: ../bibletime/rc-dummy.cpp:4
-msgid "Se&ttings"
-msgstr ""
-
-#: ../bibletime/rc-dummy.cpp:5
-msgid "&Window"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:3
-msgid "The Bible was written so we could believe in Jesus. (John 20:31)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:7
-msgid ""
-"BibleTime includes a really useful handbook written by Fred Saalbach.\n"
-"To read it choose the item \"Handbook\" in the \"Help\" menu of BibleTime.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:12
-msgid ""
-"No one is allowed by God to add anything to or take anything away from the "
-"Word. (Revelation 22:18-19)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:16
-msgid "The Bible is like a mirror. (James 1:23)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:20
-msgid ""
-"BibleTime does include a Bible Study HowTo!\n"
-"It was written by Bob Harman and is a great introduction how to study the "
-"Bible.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:25
-msgid ""
-"You can save, print and copy the whole search result by pressing the right "
-"mouse button on the icon of the searched module in the search dialog.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:29
-msgid "The Bible is our only spiritual weapon. (Ephesians 6:17)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:33
-msgid ""
-"To get the number of verses in the Bible search for a space in the module.\n"
-"The search analysis shows you the number of verses of each book.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:38
-msgid "The Bible is truth. (John 17:17)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:42
-msgid ""
-"If you would like to create a set of bookmarks around a specific topic with "
-"comments containing what the Lord told you here, it's best to\n"
-"make bookmarks from your personal commentary.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:47
-msgid ""
-"The scriptures give us the wisdom that leads to salvation. (2 Timothy 3:15)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:51
-msgid ""
-"To lookup the meaning of the original hebrew or greek word in a Bible "
-"supporting Strong's numbers, switch them on and \n"
-"click on the strong number. Now a new window showing the strong number with\n"
-"it's explanation is shown. If your favourite translation doesn't support "
-"Strong's numbers please refer to an alternate translation for the number of "
-"the corresponding word.\n"
-"Make sure you have set the default modules in the preferences.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:58
-msgid ""
-"If you want to use a commentary as a topical reference, search it for terms "
-"your topic is about.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:62
-msgid ""
-"In the beginning was the Word, the Word was with God, and the Word was God. "
-"(John 1:1)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:66
-msgid ""
-"We will be judged on the last day by the words Jesus spoke. (John 12:48)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:70
-msgid ""
-"If you want to find the full set of verses or entries on a area of content, "
-"you should use the option \"Multiple words (OR)\" for searching.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:74
-msgid ""
-"If you are searching a verse you know only fuzzy or in a different "
-"translation search for the most probable terms in multiple Bible "
-"translations at the same time.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:78
-msgid ""
-"God's Word can be a lamp to your feet and a light to your path. (Psalm "
-"119:105)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:82
-msgid ""
-"If you want to search a word in a foreign module (e.g. greek or hebrew), "
-"open a display window and choose a chapter or an entry which contains this "
-"word.\n"
-"Select it and copy it to the clipboard. Now insert the copied word in the "
-"search text box of the searchdialog.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:87
-msgid ""
-"The Word of God will not return to Him without accomplishing its purpose. "
-"(Isaiah 55:11)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:91
-msgid ""
-"Foreign modules do often require a special font to display correctly. You "
-"can set the font for each language in the preferences.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:95
-msgid ""
-"Did you know that the first book ever printed on a printing press was the "
-"Bible (by Johann Gutenberg, in 1492)?\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:99
-msgid ""
-"God has already given to us everything pertaining to life and godliness. (2 "
-"Peter 1:3)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:103
-msgid ""
-"All important elements of BibleTime's graphical user interface have a "
-"tooltip and a \"What's this?\" help. \n"
-"To read the \"What's this?\" help press the keys SHIFT+F1 and click on the "
-"part.\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:108
-msgid ""
-"The Word of God is living, active, and sharper than any two-edged sword. "
-"(Hebrews 4:12)\n"
-msgstr ""
-
-#: ../bibletime/tips-dummy.cpp:112
-msgid ""
-"You are using a program that has been written for the glory of God. May "
-"He bless you as you study His Word!\n"
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:737
-msgid ""
-"Open the printer dialog of BibleTime, where you can edit the print queue, "
-"assign styles to the items and print them."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:741
-msgid "Close BibleTime and save the settings."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:748
-msgid "Show or hide the bookshelf."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:752
-msgid "Toggle the main toolbar view."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:760
-msgid "Open the search dialog to search in all works that are currently open."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:764
-msgid "Open the search dialog to search in the standard Bible."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:772
-msgid "Restore a saved BibleTime session."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:776
-msgid "Save current BibleTime session so that it can be reused later."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:780
-msgid "Create and save a new session."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:784
-msgid "Delete a BibleTime session."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:788
-msgid "Toggle fullscreen mode of the main window."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:792
-msgid "Vertically tile the open windows."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:796
-msgid "Horizontally tile the open windows."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:800
-msgid "Cascade the open windows."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:805
-msgid "Choose the way that is used to arrange the windows."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:809
-msgid "Automatically tile the open windows vertically."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:813
-msgid "Automatically tile the open windows horizontally."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:817
-msgid "Automatically cascade the open windows."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:822
-msgid "Close all open windows."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:830
-msgid "Open BibleTime's toolbar editor."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:834
-msgid "Open the dialog to set most of BibleTime's preferences."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:838
-msgid ""
-"Open the dialog to configure your bookshelf and install/update/remove works."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:847
-msgid "Open BibleTime's handbook in the KDE helpbrowser."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:851
-msgid ""
-"Open the Bible study HowTo included with BibleTime in the KDE helpbrowser. "
-" This HowTo is an introduction on how to study the Bible in an efficient "
-"way."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:855
-msgid "Send a bugreport to the developers of BibleTime."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:859
-msgid ""
-"Show a daily tip each time BibleTime starts. The tips contain important "
-"Bible quotations and helpful tips for using BibleTime."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:863
-msgid "Show detailed information about BibleTime."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:867
-msgid "Show detailed information about the KDE project."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:877
-msgid "Start to search the text in each of the chosen work(s)."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:881
-msgid "Stop the active search."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:888
-msgid "Open a dialog to choose work(s) for the search."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:892
-msgid "Enter the text you want to search in the chosen work(s) here."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:898
-msgid ""
-"Treat the search text as multiple words. A text must contain all of the "
-"words to match. The order of the words is unimportant."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:902
-msgid ""
-"Treat the search text as multiple words. A text must contain one or more "
-"words of to match. The order is unimportant."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:906
-msgid "The search text will be used exactly as entered."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:910
-msgid ""
-"Treat the search string as a GNU regular expression. The BibleTime handbook "
-"contains an introduction to regular expressions."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:918
-msgid ""
-"If you choose this option the search will distinguish between upper and "
-"lowercase characters."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:923
-msgid ""
-"Choose a scope from the list. Select the first item to use no scope, the "
-"second one is to use each work's last search result as search scope. The "
-"others are user defined search scopes."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:931
-msgid "Select an item from the list to edit the search scope."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:935
-msgid "Change the name of the selected search scope."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:939
-msgid ""
-"Change the search ranges of the selected search scope item. Have a look at "
-"the predefined search scopes to see how search ranges are constructed."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:943
-msgid "Contains the search ranges which will be used for the search."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:947
-msgid ""
-"Add a new search scope. First enter an appropriate name, then edit the "
-"search ranges."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:951
-msgid ""
-"Deletes the selected search scope. If you close the dialog using Cancel the "
-"settings won't be saved."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:959
-msgid "The list of works chosen for the search."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:963
-msgid "This list contains the search result of the selected work."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:967
-msgid "The text preview of the selected search result item."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:979
-msgid ""
-"This button is useful to scroll through the entries of the list. Press the "
-"button and move the mouse to increase or decrease the item."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:983
-msgid "This button opens the search dialog with the work(s) of this window."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:988
-msgid "Go back one item in the display history."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:992
-msgid "Go forward one item in the display history."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:997
-msgid ""
-"Show all occurences of the Strong number currently under the mouse cursor."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1003
-msgid "This list contains the books which are available in this work."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1007
-msgid "Show the next book of this work."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1011
-msgid "Show the previous book of this work."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1015
-msgid ""
-"This list contains the chapters which are available in the current book."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1019
-msgid "Show the next chapter of the work."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1023
-msgid "Show the previous chapter of the work."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1027
-msgid ""
-"This list contains the verses which are available in the current chapter."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1031
-msgid ""
-"In Bible texts, the next verse will be highlighted. In commentaries, the "
-"next entry will be shown."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1036
-msgid ""
-"In Bible texts, the previous verse will be highlighted. In commentaries, the "
-"previous entry will be shown."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1043
-msgid ""
-"Synchronize the displayed entry of this work with the active Bible window."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1050
-msgid "This list contains the entries of the current work."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1054
-msgid "The next entry of the work will be shown."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1058
-msgid "The previous entry of the work will be shown."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1066
-msgid "Save the curent text into the work. The old text will be overwritten."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1070
-msgid ""
-"Loads the old text from the work and loads it into the edit area. The "
-"unsaved text will be lost."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1074
-msgid "Deletes the current entry out of the work. The text will be lost."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1080
-msgid "Toggle bold formatting of the selected text."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1084
-msgid "Toggle italic formatting of the selected text."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1088
-msgid "Toggle underlined formatting of the selected text."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1093
-msgid "The text will be aligned on the left side of the page."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1097
-msgid "Centers the text horizontally."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1101
-msgid "Aligns the text on the right side of the page."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1105
-msgid "Justifies the text on the page."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1110
-msgid "Choose a new font for the selected text."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1113
-msgid "Choose a new font size for the selected text."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1116
-msgid "Choose a new color for the selected text."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1126
-msgid "Activate this box to see a daily tip on startup."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1130
-msgid "Activate this to see the BibleTime logo on startup."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1134
-msgid ""
-"Save the user's session when BibleTime is closed and restore it on the next "
-"startup."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1141
-msgid "The font selection below will apply to all texts in this language."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1150
-msgid "Contains the languages which can be used for the biblical booknames."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1157
-msgid "The standard Bible is used when a hyperlink into a Bible is clicked."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1161
-msgid ""
-"The standard commentary is used when a hyperlink into a commentary is "
-"clicked."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1165
-msgid ""
-"The standard lexicon is used when a hyperlink into a lexicon is clicked."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1169
-msgid ""
-"The standard devotional will be used to display a short start up devotional."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1173
-msgid ""
-"The standard Hebrew lexicon is used when a hyperlink into a Hebrew lexicon "
-"is clicked."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1177
-msgid ""
-"The standard Greek lexicon is used when a hyperlink into a Greek lexicon is "
-"clicked."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1181
-msgid ""
-"The standard morphological lexicon for Hebrew texts is used when a hyperlink "
-"of a morphological tag in a Hebrew text is clicked."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1185
-msgid ""
-"The standard morphological lexicon for Greek texts is used when a hyperlink "
-"of a morphological tag in a Greek text is clicked."
-msgstr ""
-
-#: ../bibletime/util/cresmgr.cpp:1194
-msgid ""
-"Opens the search dialog to search in the work(s) that are currently open."
-msgstr ""
-
-#: ../bibletime/util/ctoolclass.cpp:78
-msgid "The file already exists."
-msgstr ""
-
-#: ../bibletime/util/ctoolclass.cpp:79
-msgid "Do you want to overwrite it?"
-msgstr ""
-
-#: ../bibletime/util/ctoolclass.cpp:99
-msgid "The file couldn't be saved."
-msgstr ""
-
-#: ../bibletime/util/ctoolclass.cpp:100
-msgid "Please check permissions etc."
-msgstr ""
-
-#: ../bibletime/util/ctoolclass.cpp:209
-msgid "not set"
-msgstr ""
-
-#: clanguagemgr.cpp:197
-msgid "Afrikaans"
-msgstr ""
-
-#: clanguagemgr.cpp:200
-msgid "English, Old (ca.450-1100)"
-msgstr ""
-
-#: clanguagemgr.cpp:202
-msgid "Arabic"
-msgstr ""
-
-#: clanguagemgr.cpp:205
-msgid "Azerbaijani"
-msgstr ""
-
-#: clanguagemgr.cpp:208
-msgid "Belarusian"
-msgstr ""
-
-#: clanguagemgr.cpp:210
-msgid "Bulgarian"
-msgstr ""
-
-#: clanguagemgr.cpp:216
-msgid "Breton"
-msgstr ""
-
-#: clanguagemgr.cpp:218
-msgid "Bosnian"
-msgstr ""
-
-#: clanguagemgr.cpp:220
-msgid "Catalan"
-msgstr ""
-
-#: clanguagemgr.cpp:223
-msgid "Cebuano"
-msgstr ""
-
-#: clanguagemgr.cpp:225
-msgid "Chamorro"
-msgstr ""
-
-#: clanguagemgr.cpp:228
-msgid "Coptic"
-msgstr ""
-
-#: clanguagemgr.cpp:230
-msgid "Czech"
-msgstr ""
-
-#: clanguagemgr.cpp:232
-msgid "Church Slavic"
-msgstr ""
-
-#: clanguagemgr.cpp:235
-msgid "Welsh"
-msgstr ""
-
-#: clanguagemgr.cpp:237
-msgid "Danish"
-msgstr ""
-
-#: clanguagemgr.cpp:239
-msgid "German"
-msgstr ""
-
-#: clanguagemgr.cpp:243
-msgid "Greek, Modern (1453-)"
-msgstr ""
-
-#: clanguagemgr.cpp:245
-msgid "English"
-msgstr ""
-
-#: clanguagemgr.cpp:247
-msgid "American English"
-msgstr ""
-
-#: clanguagemgr.cpp:249
-msgid "English, Middle (1100-1500)"
-msgstr ""
-
-#: clanguagemgr.cpp:251
-msgid "Esperanto"
-msgstr ""
-
-#: clanguagemgr.cpp:253
-msgid "Spanish"
-msgstr ""
-
-#: clanguagemgr.cpp:255
-msgid "Estonian"
-msgstr ""
-
-#: clanguagemgr.cpp:257
-msgid "Basque"
-msgstr ""
-
-#: clanguagemgr.cpp:260
-msgid "Finnish"
-msgstr ""
-
-#: clanguagemgr.cpp:264
-msgid "French"
-msgstr ""
-
-#: clanguagemgr.cpp:266
-msgid "Frisian"
-msgstr ""
-
-#: clanguagemgr.cpp:268
-msgid "Irish"
-msgstr ""
-
-#: clanguagemgr.cpp:270
-msgid "Gaelic (Scots)"
-msgstr ""
-
-#: clanguagemgr.cpp:275
-msgid "Gothic"
-msgstr ""
-
-#: clanguagemgr.cpp:277
-msgid "Manx"
-msgstr ""
-
-#: clanguagemgr.cpp:279
-msgid "Greek, Ancient (to 1453)"
-msgstr ""
-
-#: clanguagemgr.cpp:281
-msgid "Hebrew"
-msgstr ""
-
-#: clanguagemgr.cpp:283
-msgid "Hausa"
-msgstr ""
-
-#: clanguagemgr.cpp:285
-msgid "Hawaiian"
-msgstr ""
-
-#: clanguagemgr.cpp:289
-msgid "Croatian"
-msgstr ""
-
-#: clanguagemgr.cpp:291
-msgid "Hungarian"
-msgstr ""
-
-#: clanguagemgr.cpp:293
-msgid "Armenian"
-msgstr ""
-
-#: clanguagemgr.cpp:298
-msgid "Indonesian"
-msgstr ""
-
-#: clanguagemgr.cpp:302
-msgid "Icelandic"
-msgstr ""
-
-#: clanguagemgr.cpp:304
-msgid "Italian"
-msgstr ""
-
-#: clanguagemgr.cpp:308
-msgid "Japanese"
-msgstr ""
-
-#: clanguagemgr.cpp:310
-msgid "Georgian"
-msgstr ""
-
-#: clanguagemgr.cpp:319
-msgid "Korean"
-msgstr ""
-
-#: clanguagemgr.cpp:322
-msgid "Kurdish"
-msgstr ""
-
-#: clanguagemgr.cpp:326
-msgid "Kirghiz"
-msgstr ""
-
-#: clanguagemgr.cpp:328
-msgid "Latin"
-msgstr ""
-
-#: clanguagemgr.cpp:333
-msgid "Lithuanian"
-msgstr ""
-
-#: clanguagemgr.cpp:335
-msgid "Latvian"
-msgstr ""
-
-#: clanguagemgr.cpp:339
-msgid "Maori"
-msgstr ""
-
-#: clanguagemgr.cpp:341 clanguagemgr.cpp:477
-msgid "Macedonian"
-msgstr ""
-
-#: clanguagemgr.cpp:346
-msgid "More"
-msgstr ""
-
-#: clanguagemgr.cpp:349
-msgid "Malay"
-msgstr ""
-
-#: clanguagemgr.cpp:351
-msgid "Maltese"
-msgstr ""
-
-#: clanguagemgr.cpp:358
-msgid "Low German; Low Saxon"
-msgstr ""
-
-#: clanguagemgr.cpp:362
-msgid "Dutch"
-msgstr ""
-
-#: clanguagemgr.cpp:365
-msgid "Norwegian"
-msgstr ""
-
-#: clanguagemgr.cpp:377
-msgid "Papiamento"
-msgstr ""
-
-#: clanguagemgr.cpp:380
-msgid "Polish"
-msgstr ""
-
-#: clanguagemgr.cpp:383
-msgid "Portuguese"
-msgstr ""
-
-#: clanguagemgr.cpp:385
-msgid "Brasilian Portuguese"
-msgstr ""
-
-#: clanguagemgr.cpp:392
-msgid "Romanian"
-msgstr ""
-
-#: clanguagemgr.cpp:394
-msgid "Russian"
-msgstr ""
-
-#: clanguagemgr.cpp:400
-msgid "Scots"
-msgstr ""
-
-#: clanguagemgr.cpp:406
-msgid "Slovak"
-msgstr ""
-
-#: clanguagemgr.cpp:408
-msgid "Slovenian"
-msgstr ""
-
-#: clanguagemgr.cpp:412
-msgid "Somali"
-msgstr ""
-
-#: clanguagemgr.cpp:414
-msgid "Albanian"
-msgstr ""
-
-#: clanguagemgr.cpp:420
-msgid "Swedish"
-msgstr ""
-
-#: clanguagemgr.cpp:422
-msgid "Swahili"
-msgstr ""
-
-#: clanguagemgr.cpp:424
-msgid "Syriac"
-msgstr ""
-
-#: clanguagemgr.cpp:426
-msgid "Tamil"
-msgstr ""
-
-#: clanguagemgr.cpp:430
-msgid "Thai"
-msgstr ""
-
-#: clanguagemgr.cpp:433
-msgid "Tagalog"
-msgstr ""
-
-#: clanguagemgr.cpp:435
-msgid "Tswana"
-msgstr ""
-
-#: clanguagemgr.cpp:437
-msgid "Turkish"
-msgstr ""
-
-#: clanguagemgr.cpp:442
-msgid "Tahitian"
-msgstr ""
-
-#: clanguagemgr.cpp:446
-msgid "Ukrainian"
-msgstr ""
-
-#: clanguagemgr.cpp:451
-msgid "Vietnamese"
-msgstr ""
-
-#: clanguagemgr.cpp:457
-msgid "Xhosa"
-msgstr ""
-
-#: clanguagemgr.cpp:459
-msgid "Bavarian"
-msgstr ""
-
-#: clanguagemgr.cpp:461
-msgid "Zarma"
-msgstr ""
-
-#: clanguagemgr.cpp:463
-msgid "Alemannisch"
-msgstr ""
-
-#: clanguagemgr.cpp:465
-msgid "Haitian Creole French"
-msgstr ""
-
-#: clanguagemgr.cpp:467
-msgid "Itzá"
-msgstr ""
-
-#: clanguagemgr.cpp:469
-msgid "Shuar"
-msgstr ""
-
-#: clanguagemgr.cpp:471
-msgid "KekchÃ"
-msgstr ""
-
-#: clanguagemgr.cpp:473
-msgid "Kabyle"
-msgstr ""
-
-#: clanguagemgr.cpp:475
-msgid "Lombard"
-msgstr ""
-
-#: clanguagemgr.cpp:479
-msgid "Tok Pisin"
-msgstr ""
-
-#: clanguagemgr.cpp:481
-msgid "Uma"
-msgstr ""
-
-#: clanguagemgr.cpp:483
-msgid "Romani, Vlax"
-msgstr ""
-
-#: clanguagemgr.cpp:485
-msgid "Sango"
-msgstr ""
-
-#: clanguagemgr.cpp:487
-msgid "Sranan"
-msgstr ""
-
-#: clanguagemgr.cpp:492
-msgid "Chinese"
-msgstr ""
-
-#: clanguagemgr.cpp:494
-msgid "Zulu"
-msgstr ""
diff --git a/pot/preparetips b/pot/preparetips
deleted file mode 100755
index 1e5c35a..0000000
--- a/pot/preparetips
+++ /dev/null
@@ -1,45 +0,0 @@
-# !/usr/bin/perl
-# little script to extract the text from the tips file
-# and output it, so xgettext can add the tips to the po file
-#
-# 2000 by Matthias Kiefer
-# Command line option added by Joachim Ansorg
-
-open(FILE,"<$ARGV[0]") || die "unable to open tips file";
-
-$inTip=0;
-
-while()
-{
- chomp;
-
- # tip starts with
- if(/^\s*/i)
- {
- $inTip=1;
- print "\ni18n(\n";
- next;
- }
-
- if($inTip!=0)
- {
- # tip ends with
- if(/^\s*<\/html>/i)
- {
- print ");\n";
- $inTip=0;
- }
- else
- {
- # replace \ with \\
- s/\\/\\\\/g;
-
- # replace " with \"
- s/"/\\"/g;
-
- print "\"$_\\n\"\n";
- }
- }
-}
-
-close(FILE);
diff --git a/translations/Makefile.am b/translations/Makefile.am
new file mode 100644
index 0000000..7a4c458
--- /dev/null
+++ b/translations/Makefile.am
@@ -0,0 +1,30 @@
+# make messages.pot
+# the -x is for skipping messages already translated in tdelibs
+
+messages:
+ echo Preparing documentation files handbook.pot and howto.pot...
+ mkdir -p tmp/
+ for XML_FILE in `cd ..; find docs -name "*.docbook"`; do\
+ echo " creating temporary POT file tmp/$$XML_FILE.pot";\
+ (cd tmp; mkdir -p `dirname $$XML_FILE.pot`; xml2pot ../../$$XML_FILE > $$XML_FILE.pot;)\
+ done
+ echo merging POT files...
+ msgcat --force-po -o handbook.pot `find tmp/docs/handbook -name "*.pot"`
+ msgcat --force-po -o howto.pot `find tmp/docs/howto/ -name "*.pot"`
+ rm -r ./tmp/
+ echo Finished creating handbook.pot and howto.pot.\n
+ echo Preparing program messages file messages.pot...
+ echo Before we start, run make to generate all the auto-generated .cpp and .h files
+ (sleep 5; cd ..; make) #needed for .ui files
+ echo Now extract the messages...
+ perl ./extractrc ../bibletime/xml/*.rc > ../bibletime/rc-dummy.cpp
+ perl ./preparetips ../docs/tips > ../bibletime/tips-dummy.cpp
+ $(XGETTEXT) -C -F -L C++ -ki18n -kI18N_NOOP -x `tde-config --prefix`/include/tde/kde.pot `find .. -type f -not -name clanguagemgr.cpp -and -name \*.cpp -or -name \*.h -or -name \*.cc` -o messages.pot
+ recode iso8859-1..utf-8 messages.pot
+ cp ../bibletime/backend/clanguagemgr.cpp clanguagemgr.cpp
+ $(XGETTEXT) --from-code=utf-8 --join-existing -C -F -L C++ -ki18n -kI18N_NOOP -x `tde-config --prefix`/include/tde/kde.pot clanguagemgr.cpp -o messages.pot
+ rm clanguagemgr.cpp
+ echo Finished creating messages.pot.
+
+
+
diff --git a/translations/extractrc b/translations/extractrc
new file mode 100644
index 0000000..ab9c5ca
--- /dev/null
+++ b/translations/extractrc
@@ -0,0 +1,74 @@
+#! /usr/bin/perl
+
+# NOTE: this script is part of the KDE SDK and added to KDevelop to support KDE 2 application development.
+# The original is located in the KDE CVS module tdesdk/scripts. It gets installed in the same directory as
+# the KDevelop binary to be in your PATH.
+#
+# What it does is extract the strings in an application´s .rc file, e.g. testappui.rc, and writes into the pot file
+# where the translations are build with (po-files)
+#
+# Added to KDevelop 2000-10-29, Ralf Nolden (nolden@kde.org)
+
+$linenr = 0;
+$filename = "";
+@filenames = ();
+
+sub writeoutstring($)
+{
+ print STDOUT "i18n(\"@_[0]\");\n";
+}
+
+while (defined ($ARGV[0]))
+{
+ $_ = shift;
+ $filename = $_; # maybe check for options
+
+if (! $filename) {
+ print STDERR "no file to open\n";
+ exit 1;
+}
+
+$string = "";
+$intext = 0;
+
+open(FILE, $filename);
+while ( ) {
+ $linenr++;
+
+ $string .= $_;
+ chomp($string);
+
+ $textstring = '([tT][eE][xX][tT]|string)>';
+
+ if ($intext == 0) {
+ if ($string =~ /<$textstring/) {
+ $string =~ s/^.*<$textstring//;
+ $intext = 1;
+ $starting_linenr = $linenr;
+ } else {
+ $string = "";
+ }
+ }
+
+ if (($intext == 1) && ($string =~ /<\/$textstring/)) {
+ my $text = $string;
+ $text =~ s/<\/$textstring.*$//;
+ $text =~ s/<//g;
+ $text =~ s/&/&/g;
+ writeoutstring($text);
+ $string =~ s/^.*<\/$textstring//;
+ $intext = 0;
+ if ($linenr != $starting_linenr) {
+ print STDERR "there is floating\n";
+ }
+ }
+
+}
+
+if ($intext == 1) {
+ print STDERR "parsing error in $filename $linenr\n";
+ exit 1;
+}
+
+}
diff --git a/translations/handbook.pot b/translations/handbook.pot
new file mode 100644
index 0000000..d4b7b36
--- /dev/null
+++ b/translations/handbook.pot
@@ -0,0 +1,2291 @@
+# SOME DESCRIPTIVE TITLE
+# Copyright (C) YEAR Free Software Foundation, Inc.
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR , YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"POT-Creation-Date: 2019-01-09 04:27+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME \n"
+"Language-Team: LANGUAGE \n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. type: Content of the bibletime entity
+#: index.docbook:3
+msgid "BibleTime"
+msgstr ""
+
+#. type: Content of the sword entity
+#: index.docbook:4
+msgid "Sword"
+msgstr ""
+
+#. type: Attribute 'lang' of:
+#: index.docbook:18
+msgid "&language;"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:21
+msgid "The &bibletime; handbook"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:26
+msgid "Fred"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:27
+msgid "Saalbach"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:31
+msgid "Jeffrey"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:32
+msgid "Hoyt"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:36
+msgid "Martin"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:37
+msgid "Gruner"
+msgstr ""
+
+#. TRANS:ROLES_OF_TRANSLATORS
+#. type: Content of:
+#: index.docbook:44
+msgid ""
+"1999-2005the &bibletime; team "
+"copyright>"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:51
+msgid "The &bibletime; handbook is part of &bibletime;."
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:55
+msgid "2005-07"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:56
+msgid "1.5"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:60
+msgid "&bibletime; is a powerful Bible study tool for &kde;."
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:65
+msgid "KDE"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:66
+msgid "bibletime"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:67
+msgid "sword"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:68
+msgid "crosswire"
+msgstr ""
+
+#. type: Content of:
+#: index.docbook:69
+msgid "help dialog"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:1
+msgid "Configuring &bibletime;"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:3
+msgid ""
+"In this section you find a description of the different possibilities to "
+"configure &bibletime;: The Configure "
+"BibleTime Dialog and the Configure Toolbars dialog. Both can be accessed under "
+"Settings in the main menu."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:8
+msgid "Configure BibleTime Dialog"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:10
+msgid ""
+"The &bibletime; user interface can be customized in many ways depending on "
+"your needs. You can access the configuration dialog by selecting "
+"SettingsConfigure "
+"&bibletime;."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:15
+msgid "Display"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:17
+msgid ""
+"The startup behavior can be customized. Select from the following options:"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:19
+msgid "Show tip of the day"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:20
+msgid "Show startup logo"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:23
+msgid ""
+"Display templates define the rendering of text (colors, size etc.). Various "
+"built-in templates are available. If you select one, you will see a preview "
+"on the right pane."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:28
+msgid "Languages"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:30
+msgid ""
+"Here you can specify which language should be used for the biblical "
+"booknames. Set this to your native language, if it is available, and you'll "
+"feel at home."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:33
+msgid ""
+"By default, &bibletime; uses the &kde; general display font which can be "
+"specified in the &kcontrolcenter;. You can override this font if "
+"neccessary. Some languages require special fonts to be displayed correctly, "
+"and this dialog allows you to specify a custom font for each language."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:38
+msgid ""
+" "
+"imageobject>"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:41
+msgid "Options Dialog - fonts"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:42
+msgid "The Options dialog - Fonts."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:45
+msgid ""
+"&bibletime; can now use all fonts supported by KDE/QT. As long as the works "
+"you are interested in display correctly nothing needs to be done here. If a "
+"work only displays as a series of question marks (??????) or empty boxes, "
+"then you know that the standard KDE display font does not contain the "
+"characters used in this work."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:51
+msgid ""
+"To correct this, choose this work's language from the drop down menu. "
+"Select the use custom font checkbox. Now select a font. For example, a "
+"font that supports many languages is Code2000. If no installed font can "
+"display the work you are interested in, try installing the &kde; "
+"localization package for that language."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:57
+msgid "Installing fonts"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:58
+msgid ""
+"Detailed font installation instructions are outside the scope of this "
+"handbook. &kde;'s KControl Center"
+"ulink> contains an excellent and easy to use font installation module. "
+"Please read its "
+"documentation. For further information you might want to refer to "
+"the Unicode HOWTO."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:66
+msgid ""
+"If you use a small font like Clearlyu (about 22kb), &bibletime; will run "
+"faster than with a large font like "
+"Bitstream Cyberbit (about 12Mb)."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:71
+msgid "Obtaining Fonts"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:72
+msgid "Fonts can be obtained from a number of sources:"
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:74
+msgid "Your Linux distribution."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:75
+msgid "Your distribution's localization packages."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:76
+msgid ""
+"An existing Microsoft Windows "
+"installation on the same computer."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:77
+msgid "A font collection, such as are available from Adobe or Bitstream."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:78
+msgid "Online font collections."
+msgstr ""
+
+#. type: Content of:
+#: hdbk-config.docbook:81
+msgid ""
+"Unicode fonts support more characters than other fonts, and some of these "
+"fonts are available at no charge. None of available fonts includes all "
+"characters defined in the Unicode standard, so you may want to use different "
+"fonts for different languages."
+msgstr ""
+
+#. type: Content of: