Merge lp:~pkgcrosswire/bibletime/beta2 into lp:bibletime/debian

Proposed by Jonathan Marsden
Status: Merged
Merged at revision: not available
Proposed branch: lp:~pkgcrosswire/bibletime/beta2
Merge into: lp:bibletime/debian
Diff against target: None lines
To merge this branch: bzr merge lp:~pkgcrosswire/bibletime/beta2
To post a comment you must log in.
Revision history for this message
Jonathan Marsden (jmarsden) wrote :

Updates bibletime/main to use latest beta code 2.0 beta2 .

Jonathan

lp:~pkgcrosswire/bibletime/beta2 updated
19. By Jonathan Marsden

Remove leftover docs/pending_patches/200811* files from beta1

20. By Jonathan Marsden

Merge recent changes to main

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'CMakeLists.txt'
2--- CMakeLists.txt 2009-04-05 07:01:43 +0000
3+++ CMakeLists.txt 2009-04-29 17:39:29 +0000
4@@ -2,13 +2,13 @@
5 CMAKE_MINIMUM_REQUIRED(VERSION 2.4.0)
6
7 #Version
8-SET(BT_VERSION "2.0.alpha2")
9+ADD_DEFINITIONS(-DBT_VERSION=\\\"2.0.beta2\\\")
10
11 #Non-English locales to be processed and installed for UI, handbook and howto
12 LIST(APPEND MESSAGE_LOCALE_LANGS af bg cs da de en_GB es et fi fr hu it ko nl nn_NO no pl pt_br ro ru sk sv ua vi zh_CN zh_TW)
13 #WARNING: If you modify HANDBOOK_LOCALE_LANGS or HOWTO_LOCALE_LANGS,
14 #also modify the po4a conf files in cmake/docs/ to make sure all languages are processed.
15-LIST(APPEND HANDBOOK_LOCALE_LANGS cs de fi fr nl)
16+LIST(APPEND HANDBOOK_LOCALE_LANGS cs de fi fr hu nl)
17 LIST(APPEND HOWTO_LOCALE_LANGS bg cs de fi fr it ko nl pt-br ru)
18
19 ######################################################
20@@ -18,13 +18,13 @@
21 SET(QT_USE_QTXML 1)
22 SET(QT_USE_QTWEBKIT 1)
23 FIND_PACKAGE(Qt4 REQUIRED)
24-IF (QT_QTDBUS_FOUND)
25+IF (QT_QTDBUS_FOUND AND NOT APPLE)
26 SET(QT_USE_QTDBUS 1)
27 MESSAGE("Using DBUS")
28-ELSE (QT_QTDBUS_FOUND)
29+ELSE (QT_QTDBUS_FOUND AND NOT APPLE)
30 ADD_DEFINITIONS(-DNO_DBUS)
31 MESSAGE("No DBUS found")
32-ENDIF(QT_QTDBUS_FOUND)
33+ENDIF(QT_QTDBUS_FOUND AND NOT APPLE)
34 #
35 # If cmake says that qdbusxml2cpp is missing, uncomment the following line
36 #
37@@ -54,12 +54,12 @@
38 # The actual build options
39 #
40 INCLUDE_DIRECTORIES(
41+ ${CMAKE_CURRENT_BINARY_DIR} #for .h files generated from .ui
42+ ${CMAKE_CURRENT_SOURCE_DIR}/src # so that include paths like "frontend/..." work
43 ${CLUCENE_INCLUDE_DIR} #CLucene headers
44 ${CLUCENE_LIBRARY_DIR} #CLucene/clucene-config.h
45 ${Boost_INCLUDE_DIRS}
46 ${SWORD_INCLUDE_DIR}
47- ${CMAKE_CURRENT_BINARY_DIR} #for .h files generated from .ui
48- ${CMAKE_CURRENT_SOURCE_DIR}/src # so that include paths like "frontend/..." work
49 )
50
51
52@@ -72,34 +72,41 @@
53 ${CLUCENE_LIBRARY_DIR}
54 )
55
56+IF(APPLE)
57+ SET(EXECUTABLE_NAME "BibleTime")
58+ELSE(APPLE)
59+ SET(EXECUTABLE_NAME "bibletime")
60+ENDIF(APPLE)
61+
62 #Link to QtTest only in debug builds
63 IF (CMAKE_BUILD_TYPE STREQUAL "Release")
64 # this will run moc on source files
65- QT4_AUTOMOC( ${bibletime_SOURCES} )
66- ADD_EXECUTABLE(bibletime ${bibletime_SOURCES} ${bibletime_UIS_H})
67- SET_TARGET_PROPERTIES(bibletime
68+ QT4_WRAP_CPP(bibletime_MOC_SOURCES ${bibletime_MOCABLE_HEADERS})
69+ ADD_EXECUTABLE(${EXECUTABLE_NAME} ${bibletime_SOURCES} ${bibletime_UIS_H} ${bibletime_MOC_SOURCES})
70+ SET_TARGET_PROPERTIES(${EXECUTABLE_NAME}
71 PROPERTIES
72- COMPILE_FLAGS "-fexceptions ${SWORD_CFLAGS}" #Enable exception handling
73+ COMPILE_FLAGS "${SWORD_CFLAGS}" #Enable exception handling
74 )
75 INCLUDE(${QT_USE_FILE})
76- TARGET_LINK_LIBRARIES(bibletime
77+ TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME}
78 ${QT_LIBRARIES}
79 ${CLUCENE_LIBRARY}
80 ${SWORD_LIBS}
81 )
82 ELSE (CMAKE_BUILD_TYPE STREQUAL "Release")
83 # this will run moc on source files
84- QT4_AUTOMOC( ${bibletime_SOURCES} ${bibletime_test_SOURCES} )
85+ QT4_WRAP_CPP(bibletime_MOC_SOURCES ${bibletime_MOCABLE_HEADERS})
86+ QT4_WRAP_CPP(bibletime_test_MOC_SOURCES ${bibletime_test_MOCABLE_HEADERS})
87 SET(CMAKE_BUILD_TYPE "Debug")
88- ADD_EXECUTABLE(bibletime ${bibletime_SOURCES}
89- ${bibletime_test_SOURCES} ${bibletime_UIS_H})
90- SET_TARGET_PROPERTIES(bibletime
91+ ADD_EXECUTABLE(${EXECUTABLE_NAME} ${bibletime_SOURCES}
92+ ${bibletime_test_SOURCES} ${bibletime_UIS_H} ${bibletime_MOC_SOURCES} ${bibletime_test_MOC_SOURCES})
93+ SET_TARGET_PROPERTIES(${EXECUTABLE_NAME}
94 PROPERTIES
95- COMPILE_FLAGS "-fexceptions -DBT_ENABLE_TESTING ${SWORD_CFLAGS}" #Enable exception handling and Testing
96+ COMPILE_FLAGS "-DBT_ENABLE_TESTING ${SWORD_CFLAGS}" #Enable exception handling and Testing
97 )
98 SET(QT_USE_QTTEST 1)
99 INCLUDE(${QT_USE_FILE})
100- TARGET_LINK_LIBRARIES(bibletime
101+ TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME}
102 ${QT_LIBRARIES}
103 ${QT_LIBRARIES_DEBUG}
104 ${CLUCENE_LIBRARY}
105@@ -107,7 +114,7 @@
106 )
107 # Unit Tests
108 ADD_CUSTOM_TARGET(test
109- COMMAND "./bibletime --run-tests"
110+ COMMAND ./${EXECUTABLE_NAME} --run-tests
111 WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
112 COMMENT "Running BibleTime Unit Tests"
113 )
114@@ -124,26 +131,22 @@
115 SET(CMAKE_INSTALL_PREFIX "install/") #install to ./build/install, allow override
116 ENDIF (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
117
118-SET(CMAKE_CXX_FLAGS_RELEASE "-W -O2")
119-IF (NOT APPLE)
120- SET(CMAKE_CXX_FLAGS_DEBUG "-Wall -O0 -g")
121-ELSE (NOT APPLE)
122- SET(CMAKE_CXX_FLAGS_DEBUG "-Wall -O0 -g")
123-ENDIF (NOT APPLE)
124+IF (MSVC)
125+ SET(CMAKE_CXX_FLAGS_RELEASE "${SWORD_CFLAGS} -DNO_DBUS -DSWUSINGDLL -DBT_VERSION=\\\"${BT_VERSION}\\\" /MD /Zc:wchar_t- /W1 /D_UNICODE /DUNICODE ")
126+ SET(CMAKE_CXX_FLAGS_DEBUG "${SWORD_CFLAGS} -DNO_DBUS -DSWUSINGDLL -DBT_VERSION=\\\"${BT_VERSION}\\\" /MDd /Zc:wchar_t- /W1 /D_UNICODE /DUNICODE -DBT_ENABLE_TESTING /ZI")
127+ELSE (MSVC)
128+ SET(CMAKE_CXX_FLAGS_RELEASE "-W -O2 -fexceptions ${SWORD_CFLAGS} ")
129+ SET(CMAKE_CXX_FLAGS_DEBUG "-Wall -O0 -g -fexceptions ${SWORD_CFLAGS} -DBT_ENABLE_TESTING")
130+ENDIF (MSVC)
131
132
133 ######################################################
134 # Install files
135 #
136-IF (APPLE)
137- SET (BT_DESTINATION "bibletime.app/Contents/MacOS")
138- SET (BT_SHARE_PATH "bibletime.app/Contents/")
139-ELSE (APPLE)
140- SET (BT_DESTINATION "bin/")
141- SET (BT_SHARE_PATH "")
142-ENDIF (APPLE)
143+SET (BT_DESTINATION "bin/")
144+SET (BT_SHARE_PATH "")
145
146-INSTALL(TARGETS "bibletime"
147+INSTALL(TARGETS "${EXECUTABLE_NAME}"
148 DESTINATION "${BT_DESTINATION}"
149 )
150
151@@ -278,3 +281,105 @@
152 )
153 ADD_CUSTOM_TARGET(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
154 ######################################################
155+
156+
157+######################################################
158+# This is the CPack section
159+# Copied and modified from http://www.vtk.org/Wiki/CMake:Packaging_With_CPack
160+
161+SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "BibleTime for Windows Beta")
162+SET(CPACK_PACKAGE_VENDOR "http://www.bibletime.info")
163+SET(CPACK_PACKAGE_VERSION_MAJOR "2")
164+SET(CPACK_PACKAGE_VERSION_MINOR "0")
165+SET(CPACK_PACKAGE_VERSION_PATCH "0beta2")
166+SET(CPACK_PACKAGE_INSTALL_DIRECTORY "BibleTime")
167+
168+######################################################
169+# Windows segment
170+######################################################
171+IF(WIN32 AND NOT UNIX)
172+ SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README")
173+ SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
174+ # There is a bug in NSI that does not handle full unix paths properly. Make
175+ # sure there is at least one set of four (4) backlasshes.
176+
177+ # We need the libraries, and they're not pulled in automatically
178+ INCLUDE(${QT_USE_FILE})
179+ IF(NOT CMAKE_BUILD_TYPE STREQUAL "Release")
180+ SET(CMAKE_INSTALL_DEBUG_LIBRARIES TRUE)
181+ INSTALL(FILES
182+ "${QT_LIBRARY_DIR}/QtWebKitd4.dll"
183+ "${QT_LIBRARY_DIR}/QtGuid4.dll"
184+ "${QT_LIBRARY_DIR}/QtXmld4.dll"
185+ "${QT_LIBRARY_DIR}/QtTestd4.dll"
186+ "${QT_LIBRARY_DIR}/QtNetworkd4.dll"
187+ "${QT_LIBRARY_DIR}/QtCored4.dll"
188+ "${QT_LIBRARY_DIR}/phonond4.dll"
189+ "${QT_LIBRARY_DIR}/QtSvgd4.dll"
190+ DESTINATION "${BT_DESTINATION}"
191+ )
192+ ELSE(NOT CMAKE_BUILD_TYPE STREQAL "Release")
193+ INSTALL(FILES
194+ "${QT_LIBRARY_DIR}/QtWebKit4.dll"
195+ "${QT_LIBRARY_DIR}/QtGui4.dll"
196+ "${QT_LIBRARY_DIR}/QtXml4.dll"
197+ "${QT_LIBRARY_DIR}/QtNetwork4.dll"
198+ "${QT_LIBRARY_DIR}/QtCore4.dll"
199+ "${QT_LIBRARY_DIR}/phonon4.dll"
200+ "${QT_LIBRARY_DIR}/QtSvg4.dll"
201+ DESTINATION "${BT_DESTINATION}")
202+ ENDIF(NOT CMAKE_BUILD_TYPE STREQUAL "Release")
203+
204+ # This adds in the required Windows system libraries and libsword.dll
205+ INCLUDE(InstallRequiredSystemLibraries)
206+ STRING(REPLACE ".lib" ".dll" SWORD_DLL "${SWORD_LIBRARY}")
207+ INSTALL(FILES ${SWORD_DLL} DESTINATION ${BT_DESTINATION}) # This will also take effect in the regular install
208+
209+ # Some options for the CPack system. These should be pretty self-evident
210+ SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/pics/icons\\\\bibletime.png")
211+ SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\bibletime.exe")
212+ SET(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY} for Windows")
213+ SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\www.bibletime.info")
214+ SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\www.bibletime.info")
215+ SET(CPACK_NSIS_CONTACT "bt-devel@crosswire.org")
216+ SET(CPACK_NSIS_MODIFY_PATH OFF)
217+ SET(CPACK_GENERATOR "NSIS")
218+####################################
219+# Apple Segment
220+####################################
221+ELSEIF(APPLE)
222+ INCLUDE(${QT_USE_FILE})
223+ SET(QT_FRAMEWORKS_USED "QtWebKit"
224+ "QtGui"
225+ "QtXml"
226+ "QtTest"
227+ "QtNetwork"
228+ "QtCore"
229+ "QtSvg")
230+ FOREACH(QT_FRAME ${QT_FRAMEWORKS_USED})
231+ INSTALL(DIRECTORY
232+ "${QT_LIBRARY_DIR}/${QT_FRAME}.framework"
233+ DESTINATION "${BT_DESTINATION}/../Library/Frameworks/")
234+ ENDFOREACH(QT_FRAME ${QT_FRAMEWORKS_USED})
235+ # Other libraries I need
236+ INSTALL(FILES "${CLUCENE_LIBRARY}" "${CLUCENE_LIBRARY_DIR}/libclucene.0.0.0.dylib" "${CLUCENE_LIBRARY_DIR}/libclucene.0.dylib" "/opt/local/lib/libcurl.4.dylib"
237+ "/opt/local/lib/libssl.0.9.8.dylib" "/opt/local/lib/libcrypto.0.9.8.dylib" "/opt/local/lib/libicui18n.40.dylib" "/opt/local/lib/libicui18n.40.0.dylib"
238+ "/opt/local/lib/libicuuc.40.dylib" "/opt/local/lib/libicuuc.40.0.dylib" "/opt/local/lib/libicuio.40.dylib" "/opt/local/lib/libicuio.40.0.dylib"
239+ "/opt/local/lib/libicudata.40.dylib" "/opt/local/lib/libicudata.40.0.dylib" "/opt/local/lib/libpng12.0.dylib"
240+ DESTINATION "${BT_DESTINATION}/../Library")
241+
242+ # Qt Plugins
243+ INSTALL(DIRECTORY "${QT_PLUGINS_DIR}/iconengines" "${QT_PLUGINS_DIR}/imageformats" DESTINATION "${BT_DESTINATION}/../../plugins")
244+ # A file to execute that might get rid of the above mess
245+ SET(CPACK_BUNDLE_STARTUP_COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/cmake/platforms/macos/bt_start.sh")
246+ SET(CPACK_BUNDLE_NAME "BibleTime")
247+ SET(CPACK_PACKAGE_FILE_NAME "BibleTime_Mac_Beta")
248+ SET(CPACK_BUNDLE_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/cmake/platforms/macos/Info.plist")
249+ SET(CPACK_BUNDLE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/cmake/platforms/macos/BibleTime.icns")
250+ SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/cmake/platforms/macos/BibleTime.icns")
251+ SET(CPACK_GENERATOR "Bundle")
252+ENDIF(WIN32 AND NOT UNIX)
253+
254+SET(CPACK_PACKAGE_EXECUTABLES "bibletime" "BibleTime")
255+
256+INCLUDE(CPack)
257
258=== modified file 'ChangeLog'
259--- ChangeLog 2009-04-05 07:01:43 +0000
260+++ ChangeLog 2009-04-29 17:39:29 +0000
261@@ -1,3 +1,33 @@
262+2009-04-29 Martin Gruner <mgruner@crosswire.org>
263+ * release 2.0.beta2
264+
265+2009-04-26 Gary Holmlund
266+ * Fix clicking of links in the Mag Window.
267+
268+2009-04-25 Gary Holmlund
269+ * Fix drag/drop onto the display window.
270+
271+2009-04-25 Martin Gruner <mgruner@crosswire.org>
272+ * include bugfix from Fabio Correa: fix cmake syntax for "make test" generation
273+
274+2009-04-24 Thomas Abthorpe
275+ * Add Hungarian Handbook translation to the build
276+
277+2009-04-21 Martin Gruner <mgruner@crosswire.org>
278+ * release 2.0.beta1
279+
280+2009-04-21 Martin Gruner <mgruner@crosswire.org>
281+ * Applied cmake patch from Greg Hellings with slight modifications
282+ * Applied translation patches from Jaak Ristioja
283+ * Applied patch from Jaak Ristioja which makes generated config.h obsolete
284+ * Applied patch from Jaak Ristioja which simplifies .moc file generation
285+
286+2009-04-09 Gary Holmlund
287+ * Add translatable text for several dialogs
288+ These words need transating:
289+ Ok, Open, Save, Cancel, Close, Discard, Apply, Reset, Restore Defaults,
290+ Help, Save All, Yes, Yes To All, No, No To All
291+
292 2009-03-25 Martin Gruner <mgruner@crosswire.org>
293 * release 2.0.alpha3
294
295
296=== modified file 'cmake/FindCLucene.cmake'
297--- cmake/FindCLucene.cmake 2009-04-05 07:01:43 +0000
298+++ cmake/FindCLucene.cmake 2009-04-24 02:10:38 +0000
299@@ -27,6 +27,18 @@
300 INCLUDE(${PROJECT_CMAKE}/CLuceneConfig.cmake)
301 ENDIF(EXISTS ${PROJECT_CMAKE}/CLuceneConfig.cmake)
302
303+IF(MSVC)
304+ IF(CMAKE_BUILD_TYPE STREQUAL "Release")
305+ SET(WIN_CLUCENE_SEARCH_PATH ../clucene-core-0.9.21b/src/CLucene/Release)
306+ ELSE(CMAKE_BUILD_TYPE STREQUAL "Release")
307+ SET(WIN_CLUCENE_SEARCH_PATH ../clucene-core-0.9.21b/src/CLucene/debug)
308+ ENDIF(CMAKE_BUILD_TYPE STREQUAL "Release")
309+ SET(WIN_CLUCENE_INCLUDE_PATH ../clucene-core-0.9.21b/src)
310+ELSE(MSVC)
311+ SET(WIN_CLUCENE_SEARCH_PATH "")
312+ SET(WIN_CLUCENE_INCLUDE_PATH "")
313+ENDIF(MSVC)
314+
315 SET(TRIAL_LIBRARY_PATHS
316 $ENV{CLUCENE_HOME}/lib${LIB_SUFFIX}
317 ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}
318@@ -36,6 +48,7 @@
319 /usr/lib64
320 /sw/lib${LIB_SUFFIX}
321 /usr/pkg/lib${LIB_SUFFIX}
322+ ${WIN_CLUCENE_SEARCH_PATH}
323 )
324 SET(TRIAL_INCLUDE_PATHS
325 $ENV{CLUCENE_HOME}/include
326@@ -44,9 +57,9 @@
327 /usr/include
328 /sw/include
329 /usr/pkg/include
330+ ${WIN_CLUCENE_INCLUDE_PATH}
331 )
332 FIND_LIBRARY_WITH_DEBUG(CLUCENE_LIBRARY
333- WIN32_DEBUG_POSTFIX d
334 NAMES clucene clucene-core
335 PATHS ${TRIAL_LIBRARY_PATHS})
336 IF (CLUCENE_LIBRARY)
337
338=== modified file 'cmake/FindSword.cmake'
339--- cmake/FindSword.cmake 2009-04-05 07:01:43 +0000
340+++ cmake/FindSword.cmake 2009-04-24 02:10:38 +0000
341@@ -1,6 +1,8 @@
342 SET (REQUIRED_SWORD_VERSION 1.5.9)
343 SET (SIMPLE_RENDER_SWORD_VERSION 1.5.10)
344 SET (MULTIVERSE_SWORD_VERSION 1.5.11.1)
345+SET (SYSCONF_CHANGED_SWORD_VERSION 1.5.11.98)
346+SET (INTERNET_WARNING_SWORD_VERSION 1.5.11.98)
347
348 # This module looks for installed sword
349 #
350@@ -16,21 +18,26 @@
351 /usr/lib${LIB_SUFFIX}
352 /usr/local/lib${LIB_SUFFIX}
353 /sw/lib${LIB_SUFFIX}
354- )
355+ ../sword-1.5.11/lib/vcppmake/vc8/ICUDebug
356+ ../sword-1.5.11/lib/vcppmake/vc8/ICURelease
357+ )
358 SET(TRIAL_INCLUDE_PATHS
359+ $ENV{SWORD_HOME}/include/sword
360 $ENV{SWORD_HOME}/include
361+ ${CMAKE_INSTALL_PREFIX}/include/sword
362 ${CMAKE_INSTALL_PREFIX}/include
363 /sw/include
364- )
365+ ../sword-1.5.11/include
366+ )
367
368 FIND_LIBRARY(SWORD_LIBRARY sword
369 NAMES libsword
370 PATHS ${TRIAL_LIBRARY_PATHS})
371 IF (SWORD_LIBRARY)
372- MESSAGE(STATUS "Found CLucene library: ${CLUCENE_LIBRARY}")
373+ MESSAGE(STATUS "Found Sword library: ${SWORD_LIBRARY}")
374 ENDIF (SWORD_LIBRARY)
375 FIND_PATH(SWORD_INCLUDE_DIR
376- NAMES sword/swmgr.h
377+ NAMES swmgr.h
378 PATHS ${TRIAL_INCLUDE_PATHS})
379
380 IF (SWORD_INCLUDE_DIR)
381@@ -39,46 +46,57 @@
382
383 ELSE(WIN32)
384
385-EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${REQUIRED_SWORD_VERSION} sword
386- RESULT_VARIABLE SWORD_VERSION_OK
387-)
388-EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${SIMPLE_RENDER_SWORD_VERSION} sword
389- RESULT_VARIABLE SIMPLE_RENDER_SWORD_OK
390-)
391-EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${MULTIVERSE_SWORD_VERSION} sword
392- RESULT_VARIABLE MULTIVERSE_SWORD_OK
393-)
394-EXECUTE_PROCESS(COMMAND pkg-config --modversion sword
395- OUTPUT_VARIABLE SWORD_VERSION
396- OUTPUT_STRIP_TRAILING_WHITESPACE
397-)
398-
399-IF (SWORD_VERSION_OK EQUAL 0)
400-
401- EXECUTE_PROCESS(COMMAND pkg-config --variable=includedir sword
402- OUTPUT_VARIABLE SWORD_INCLUDE_DIR
403- OUTPUT_STRIP_TRAILING_WHITESPACE
404- )
405- MESSAGE(STATUS "Sword version ${SWORD_VERSION} is ok")
406-
407- EXECUTE_PROCESS(COMMAND pkg-config --libs sword
408- OUTPUT_VARIABLE SWORD_LIBS
409- OUTPUT_STRIP_TRAILING_WHITESPACE
410- )
411- MESSAGE(STATUS "Sword lib linker flags to be used: ${SWORD_LIBS}")
412-
413-ELSE (SWORD_VERSION_OK EQUAL 0)
414- IF (SWORD_VERSION)
415- MESSAGE(FATAL_ERROR "Sword version ${SWORD_VERSION} does not match the required ${REQUIRED_SWORD_VERSION}")
416- ELSE (SWORD_VERSION)
417- MESSAGE(FATAL_ERROR "Sword not found")
418- ENDIF (SWORD_VERSION)
419-ENDIF (SWORD_VERSION_OK EQUAL 0)
420+ EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${REQUIRED_SWORD_VERSION} sword
421+ RESULT_VARIABLE SWORD_VERSION_OK
422+ )
423+ EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${SIMPLE_RENDER_SWORD_VERSION} sword
424+ RESULT_VARIABLE SIMPLE_RENDER_SWORD_OK
425+ )
426+ EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${MULTIVERSE_SWORD_VERSION} sword
427+ RESULT_VARIABLE MULTIVERSE_SWORD_OK
428+ )
429+ EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${SYSCONF_CHANGED_SWORD_VERSION} sword
430+ RESULT_VARIABLE SYSCONF_CHANGED_SWORD_OK
431+ )
432+ EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${INTERNET_WARNING_SWORD_VERSION} sword
433+ RESULT_VARIABLE INTERNET_WARNING_SWORD_OK
434+ )
435+
436+
437+ EXECUTE_PROCESS(COMMAND pkg-config --modversion sword
438+ OUTPUT_VARIABLE SWORD_VERSION
439+ OUTPUT_STRIP_TRAILING_WHITESPACE
440+ )
441+
442+ IF (SWORD_VERSION_OK EQUAL 0)
443+
444+ MESSAGE(STATUS "Sword version ${SWORD_VERSION} is ok")
445+
446+ EXECUTE_PROCESS(COMMAND pkg-config --variable=includedir sword
447+ OUTPUT_VARIABLE SWORD_INCLUDE_DIR
448+ OUTPUT_STRIP_TRAILING_WHITESPACE
449+ )
450+ SET(SWORD_INCLUDE_DIR "${SWORD_INCLUDE_DIR}/sword")
451+ MESSAGE(STATUS "Sword include directory is ${SWORD_INCLUDE_DIR}")
452+
453+ EXECUTE_PROCESS(COMMAND pkg-config --libs sword
454+ OUTPUT_VARIABLE SWORD_LIBS
455+ OUTPUT_STRIP_TRAILING_WHITESPACE
456+ )
457+ MESSAGE(STATUS "Sword lib linker flags to be used: ${SWORD_LIBS}")
458+
459+ ELSE (SWORD_VERSION_OK EQUAL 0)
460+
461+ IF (SWORD_VERSION)
462+ MESSAGE(FATAL_ERROR "Sword version ${SWORD_VERSION} does not match the required ${REQUIRED_SWORD_VERSION}")
463+ ELSE (SWORD_VERSION)
464+ MESSAGE(FATAL_ERROR "Sword not found")
465+ ENDIF (SWORD_VERSION)
466+
467+ ENDIF (SWORD_VERSION_OK EQUAL 0)
468
469 ENDIF (WIN32)
470
471-SET(SWORD_INCLUDE_DIR "${SWORD_INCLUDE_DIR}/sword")
472-MESSAGE(STATUS "Sword include directory is ${SWORD_INCLUDE_DIR}")
473
474 IF (MULTIVERSE_SWORD_OK EQUAL 0)
475 SET (SWORD_CFLAGS "${SWORD_CFLAGS} -DSWORD_MULTIVERSE")
476@@ -86,6 +104,12 @@
477 IF (SIMPLE_RENDER_SWORD_OK EQUAL 0)
478 SET (SWORD_CFLAGS "${SWORD_CFLAGS} -DSWORD_SIMPLERENDER")
479 ENDIF (SIMPLE_RENDER_SWORD_OK EQUAL 0)
480+IF (SYSCONF_CHANGED_SWORD_OK EQUAL 0)
481+ SET (SWORD_CFLAGS "${SWORD_CFLAGS} -DSWORD_SYSCONF_CHANGED")
482+ENDIF (SYSCONF_CHANGED_SWORD_OK EQUAL 0)
483+IF (INTERNET_WARNING_SWORD_OK EQUAL 0)
484+ SET (SWORD_CFLAGS "${SWORD_CFLAGS} -DSWORD_INTERNET_WARNING")
485+ENDIF (INTERNET_WARNING_SWORD_OK EQUAL 0)
486
487 MARK_AS_ADVANCED(
488 SWORD_INCLUDE_DIR
489
490=== modified file 'cmake/bibletime_source_list.cmake'
491--- cmake/bibletime_source_list.cmake 2009-04-05 07:01:43 +0000
492+++ cmake/bibletime_source_list.cmake 2009-04-24 02:10:38 +0000
493@@ -47,6 +47,7 @@
494 src/util/cresmgr.cpp
495 src/util/cpointers.cpp
496 src/util/ctoolclass.cpp
497+ src/util/dialogutil.cpp
498 src/util/directoryutil.cpp
499 src/util/migrationutil.cpp
500
501@@ -183,6 +184,92 @@
502 src/main.cpp
503 )
504
505+# mocable headers
506+SET(bibletime_MOCABLE_HEADERS
507+ src/backend/drivers/cswordmoduleinfo.h
508+ src/backend/managers/cswordbackend.h
509+ src/backend/cswordmodulesearch.h
510+ src/bibletime.h
511+ src/bibletime_dbus_adaptor.h
512+ src/frontend/searchdialog/csearchmodulechooserdialog.h
513+ src/frontend/searchdialog/crangechooserdialog.h
514+ src/frontend/searchdialog/btsearchresultarea.h
515+ src/frontend/searchdialog/btsearchoptionsarea.h
516+ src/frontend/searchdialog/cmoduleresultview.h
517+ src/frontend/searchdialog/csearchdialog.h
518+ src/frontend/searchdialog/analysis/csearchanalysisdialog.h
519+ src/frontend/searchdialog/analysis/csearchanalysisscene.h
520+ src/frontend/searchdialog/csearchresultview.h
521+ src/frontend/searchdialog/chistorycombobox.h
522+ src/frontend/cdragdrop.h
523+ src/frontend/mainindex/bookshelf/chidemodulechooserdialog.h
524+ src/frontend/mainindex/bookshelf/cbookshelfindex.h
525+ src/frontend/mainindex/cmainindex.h
526+ src/frontend/mainindex/bookmarks/cbookmarkindex.h
527+ src/frontend/cmdiarea.h
528+ src/frontend/cinfodisplay.h
529+ src/frontend/cinputdialog.h
530+ src/frontend/cmodulechooserdialog.h
531+ src/frontend/keychooser/cscrollerwidgetset.h
532+ src/frontend/keychooser/cbooktreechooser.h
533+ src/frontend/keychooser/versekeychooser/btversekeymenu.h
534+ src/frontend/keychooser/versekeychooser/cbiblekeychooser.h
535+ src/frontend/keychooser/versekeychooser/ckeyreferencewidget.h
536+ src/frontend/keychooser/versekeychooser/btdropdownchooserbutton.h
537+ src/frontend/keychooser/cscrollbutton.h
538+ src/frontend/keychooser/bthistory.h
539+ src/frontend/keychooser/ckeychooserwidget.h
540+ src/frontend/keychooser/cbookkeychooser.h
541+ src/frontend/keychooser/ckeychooser.h
542+ src/frontend/keychooser/clexiconkeychooser.h
543+ src/frontend/cprinter.h
544+ src/frontend/btaboutmoduledialog.h
545+ src/frontend/htmldialogs/bttabhtmldialog.h
546+ src/frontend/htmldialogs/btaboutdialog.h
547+ src/frontend/display/cdisplay.h
548+ src/frontend/display/bthtmlreaddisplay.h
549+ src/frontend/display/btfontsizewidget.h
550+ src/frontend/display/btcolorwidget.h
551+ src/frontend/display/bthtmljsobject.h
552+ src/frontend/display/chtmlwritedisplay.h
553+ src/frontend/display/bthtmlfindtext.h
554+ src/frontend/cmoduleindexdialog.h
555+ src/frontend/settingsdialogs/cdisplaysettings.h
556+ src/frontend/settingsdialogs/cswordsettings.h
557+ src/frontend/settingsdialogs/clistwidget.h
558+ src/frontend/settingsdialogs/cconfigurationdialog.h
559+ #src/frontend/settingsdialogs/cacceleratorsettings.h.OFF
560+ src/frontend/settingsdialogs/cfontchooser.h
561+ src/frontend/settingsdialogs/clanguagesettings.h
562+ src/frontend/displaywindow/cbookreadwindow.h
563+ src/frontend/displaywindow/ccommentaryreadwindow.h
564+ src/frontend/displaywindow/cmodulechooserbar.h
565+ src/frontend/displaywindow/clexiconreadwindow.h
566+ src/frontend/displaywindow/chtmlwritewindow.h
567+ src/frontend/displaywindow/bttoolbarpopupaction.h
568+ src/frontend/displaywindow/btactioncollection.h
569+ src/frontend/displaywindow/creadwindow.h
570+ src/frontend/displaywindow/cmodulechooserbutton.h
571+ src/frontend/displaywindow/cbuttons.h
572+ src/frontend/displaywindow/cbiblereadwindow.h
573+ src/frontend/displaywindow/cplainwritewindow.h
574+ src/frontend/displaywindow/cdisplaywindow.h
575+ src/frontend/displaywindow/cwritewindow.h
576+ src/frontend/bookshelfmanager/btconfigdialog.h
577+ src/frontend/bookshelfmanager/removepage/btremovepage.h
578+ src/frontend/bookshelfmanager/cswordsetupinstallsourcesdialog.h
579+ src/frontend/bookshelfmanager/installpage/btsourcewidget.h
580+ src/frontend/bookshelfmanager/installpage/btinstallpage.h
581+ src/frontend/bookshelfmanager/installpage/btsourcearea.h
582+ src/frontend/bookshelfmanager/installpage/btinstallmodulechooserdialog.h
583+ src/frontend/bookshelfmanager/installpage/btinstallprogressdialog.h
584+ src/frontend/bookshelfmanager/installpage/btinstallpathdialog.h
585+ src/frontend/bookshelfmanager/installpage/btinstallthread.h
586+ src/frontend/bookshelfmanager/btmodulemanagerdialog.h
587+ src/frontend/bookshelfmanager/indexpage/btindexpage.h
588+ src/frontend/bookshelfmanager/btinstallmgr.h
589+)
590+
591 #unit tests
592 SET(bibletime_test_SOURCES
593 #main file
594@@ -191,3 +278,6 @@
595 src/tests/backend/config/cbtconfig_test.cpp
596 )
597
598+SET(bibletime_test_MOCABLE_HEADERS
599+ src/tests/bibletime_test.h
600+)
601
602=== modified file 'cmake/docs/handbook_po4a.conf'
603--- cmake/docs/handbook_po4a.conf 2009-04-05 07:01:43 +0000
604+++ cmake/docs/handbook_po4a.conf 2009-04-29 17:39:29 +0000
605@@ -4,7 +4,7 @@
606 # If you modify the language list here, make sure you also modify CMakeLists.txt
607 #
608
609-[po4a_langs] cs de fi fr nl
610+[po4a_langs] cs de fi fr hu nl
611 [po4a_paths] i18n/handbook/handbook.pot $lang:i18n/handbook/handbook-$lang.po
612 [type: docbook] docs/handbook/en/docbook/hdbk-config.docbook $lang:docs/handbook/$lang/docbook/hdbk-config.docbook
613 [type: docbook] docs/handbook/en/docbook/hdbk-intro.docbook $lang:docs/handbook/$lang/docbook/hdbk-intro.docbook
614
615=== modified file 'cmake/docs/howto_po4a.conf'
616--- cmake/docs/howto_po4a.conf 2009-04-05 07:01:43 +0000
617+++ cmake/docs/howto_po4a.conf 2009-04-29 17:39:29 +0000
618@@ -4,7 +4,7 @@
619 # If you modify the language list here, make sure you also modify CMakeLists.txt
620 #
621
622-[po4a_langs] bg cs de fi fr it ko nl pt-br ru
623+[po4a_langs] bg cs de fi fr it hu ko nl pt-br ru
624 [po4a_paths] i18n/howto/howto.pot $lang:i18n/howto/howto-$lang.po
625 [type: docbook] docs/howto/en/docbook/howto-basics.docbook $lang:docs/howto/$lang/docbook/howto-basics.docbook
626 [type: docbook] docs/howto/en/docbook/howto-importance.docbook $lang:docs/howto/$lang/docbook/howto-importance.docbook
627
628=== added directory 'cmake/platforms/macos'
629=== added file 'cmake/platforms/macos/BibleTime.icns'
630Binary files cmake/platforms/macos/BibleTime.icns 1970-01-01 00:00:00 +0000 and cmake/platforms/macos/BibleTime.icns 2009-04-29 17:39:29 +0000 differ
631=== added file 'cmake/platforms/macos/Info.plist'
632--- cmake/platforms/macos/Info.plist 1970-01-01 00:00:00 +0000
633+++ cmake/platforms/macos/Info.plist 2009-04-29 17:39:29 +0000
634@@ -0,0 +1,10 @@
635+<?xml version="1.0" encoding="UTF-8"?>
636+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
637+<plist version="1.0">
638+<dict>
639+ <key>CFBundleIconFile</key>
640+ <string>BibleTime.icns</string>
641+ <key>CFBundleDevelopmentRegion</key>
642+ <string>English</string>
643+</dict>
644+</plist>
645
646=== added file 'cmake/platforms/macos/bt_start.sh'
647--- cmake/platforms/macos/bt_start.sh 1970-01-01 00:00:00 +0000
648+++ cmake/platforms/macos/bt_start.sh 2009-04-29 17:39:29 +0000
649@@ -0,0 +1,21 @@
650+#!/bin/bash
651+# Author: Gregory Hellings
652+# Copyright: BibleTime development team
653+# Initial creation date: 23 April 2009
654+# This is a Mac-only shell script that makes it possible for us to avoid having to run
655+# lots of annoying commands on the Qt frameworks for the Mac build of BibleTime.
656+# It is inspired and draws heavily from th example at http://www.cmake.org/Wiki/CMake:CPackPackageGenerators
657+
658+BT_BUNDLE="`echo "$0" | sed -e 's/\/Contents\/MacOS\/BibleTime//'`"
659+
660+echo "running $0"
661+echo "BT_BUNDLE: $BT_BUNDLE"
662+
663+export DYLD_LIBRARY_PATH=$BT_BUNDLE/Contents/Resources/Library
664+export DYLD_FRAMEWORK_PATH=$BT_BUNDLE/Contents/Resources/Library/Frameworks
665+export PATH=$BT_BUNDLE/Contents/Resources/bin:$PATH
666+export QT_PLUGIN_PATH=$BT_BUNDLE/Contents/plugins
667+
668+cd $BT_BUNDLE/Contents/Resources/bin
669+# Run BibleTime
670+exec "BibleTime"
671
672=== modified file 'debian/changelog'
673--- debian/changelog 2009-04-05 07:28:03 +0000
674+++ debian/changelog 2009-04-29 17:39:29 +0000
675@@ -1,4 +1,33 @@
676-bibletime (2.0~alpha3-1) UNRELEASED; urgency=low
677+bibletime (2.0~beta2-1) UNRELEASED; urgency=low
678+
679+ * New upstream release
680+ * debian/patches/01_sword_1.6.0rc2_api_change.patch:
681+ - Remove patch, now included upstream.
682+
683+ -- Jonathan Marsden <jmarsden@fastmail.fm> Wed, 29 Apr 2009 10:31:33 -0700
684+
685+bibletime (2.0~beta1-1) UNRELEASED; urgency=low
686+
687+ * New upstream version.
688+ * debian/patches/00_sysconfig.patch:
689+ - Remove patch, now included upstream.
690+ * debian/patches/01_sword_1.6.0rc2_api_change.patch:
691+ - Create patch from bibletime svn revision 1201 to
692+ handle SWORD 1.6.0RC2 API change.
693+
694+ -- Jonathan Marsden <jmarsden@fastmail.fm> Thu, 23 Apr 2009 19:08:08 -0700
695+
696+bibletime (2.0~alpha3-2~jmarsden1~intrepid1) intrepid; urgency=low
697+
698+ * debian/rules:
699+ - Add simple-patchsys.mk
700+ * debian/patches/00_sysconfig.patch:
701+ - Fixes sysconfig -> &sysConfig for building against SWORD 1.6.0RC1
702+ - This patch is expected to be included in upstream very soon.
703+
704+ -- Jonathan Marsden <jmarsden@fastmail.fm> Mon, 13 Apr 2009 19:12:12 -0700
705+
706+bibletime (2.0~alpha3-1) experimental; urgency=low
707
708 * New upstream version.
709 * Relax version checks on libsword-dev Build-Depends:
710
711=== modified file 'debian/rules'
712--- debian/rules 2009-04-05 06:47:19 +0000
713+++ debian/rules 2009-04-14 02:33:16 +0000
714@@ -2,6 +2,7 @@
715
716 include /usr/share/cdbs/1/rules/debhelper.mk
717 include /usr/share/cdbs/1/class/cmake.mk
718+include /usr/share/cdbs/1/rules/simple-patchsys.mk
719
720 install/bibletime::
721 dh_install debian/bibletime.xpm usr/share/bibletime
722
723=== modified file 'docs/handbook/cs/docbook/hdbk-config.docbook'
724--- docs/handbook/cs/docbook/hdbk-config.docbook 2009-04-05 07:01:43 +0000
725+++ docs/handbook/cs/docbook/hdbk-config.docbook 2009-04-24 02:10:38 +0000
726@@ -1,9 +1,9 @@
727 <chapter id="hdbk-config">
728 <title>Nastavení &bibletime; </title>
729- <para> V této sekci najdete úvod k nastavení &bibletime; které najdete pod
730-volbou<guimenu>Nastavení</guimenu> v hlavním menu.</para>
731+ <para> V této sekci najdete úvod k nastavení &bibletime; které najdete pod volbou
732+<guimenu>Nastavení</guimenu> v hlavním menu.</para>
733 <sect1 id="hdbk-config-bt">
734- <title>Nastavení BibleTime Dialogu</title>
735+ <title>Nastavení Dialogu BibleTime</title>
736 <para>Uživatelské rozhraní programu &bibletime; může být uzpůsobeno mnoha směry v
737 závislosti na vašich potřebách. K dialogu nastavení můžete přistoupit
738 výběrem<menuchoice> <guimenu>Nastavení</guimenu> </menuchoice>
739@@ -29,10 +29,10 @@
740 <para>Zde můžete zvolit jazyk, který bude použit pro jména biblických knih. Pokud
741 je dostupný, nastavte tuto možnost na váš jazyk, a budete se cítit doma.</para>
742
743- <para>Ve výchozím nastavení používá &bibletime; systémové písmo. Pokud je to
744-nezbytné, můžete toto nastavení změnit. Některé jazyky vyžadují pro správné
745-zobrazení speciální písma, tento dialog vám umožní nastavit vlastní písmo
746-pro každý jazyk.</para>
747+ <para>By default, &bibletime; uses the default system display font. You can
748+override this font if necessary. Some languages require special fonts to be
749+displayed correctly, and this dialog allows you to specify a custom font for
750+each language.</para>
751 <mediaobject>
752 <imageobject>
753 <imagedata fileref="ss_configfonts.png" format="PNG" />
754@@ -106,14 +106,14 @@
755 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">
756 SIL unicode fonts</ulink>
757 </entry>
758- <entry>Výborné písmo Unicode z " Summer Institute of Linguistics".</entry>
759+ <entry>Excellent Unicode fonts from the Summer Institute of Linguistics.</entry>
760 </row>
761 <row>
762 <entry>
763 <ulink url="http://www.nongnu.org/freefont/">
764 FreeFont</ulink>
765 </entry>
766- <entry>Nové svobodné Unicode písmo.</entry>
767+ <entry>A new free Unicode font initiative.</entry>
768 </row>
769 <row>
770 <entry>
771@@ -159,7 +159,7 @@
772 &bibletime;. These features are documented right in the dialog. You also
773 have the possibility to specify standard works that should be used when no
774 specific work is specified in a reference. An example: The standard Bible is
775-used to display the content of crossreferences in the Bible. When you hover
776+used to display the content of cross references in the Bible. When you hover
777 over then, the Mag will show the content of the verses referred to,
778 according to the standard Bible you specified.</para>
779 </sect2>
780
781=== modified file 'docs/handbook/cs/docbook/hdbk-intro.docbook'
782--- docs/handbook/cs/docbook/hdbk-intro.docbook 2009-04-05 07:01:43 +0000
783+++ docs/handbook/cs/docbook/hdbk-intro.docbook 2009-04-29 17:39:29 +0000
784@@ -2,12 +2,12 @@
785 <title>Úvod</title>
786 <sect1 id="hdbk-intro-about">
787 <title>O &bibletime;</title>
788- <para>&bibletime; je nástroj pro studium Bible s podporou pro různé typy textů a
789-jazyků. Právě velkému množství modulů děl, které je snadné nainstalovat a
790-spravovat. Je založen na knihovně <ulink
791-url="http://www.crosswire.org/sword">Sword</ulink>, která poskytuje
792-funkcionalitu pro &bibletime;, jako zobrazování biblických textů,
793-vyhledávání atd. Sword je vlajkovou lodí spole�nosti <ulink
794+ <para>&bibletime; is a Bible study tool with support for different types of texts
795+and languages. Even large amounts of works modules are easy to install and
796+manage. It is built on the <ulink
797+url="http://www.crosswire.org/sword">Sword</ulink> library, which provides
798+the back-end functionality for &bibletime;, such as viewing Bible text,
799+searching etc. Sword is the flagship product of the <ulink
800 url="http://www.crosswire.org">Crosswire Bible Society</ulink>.</para>
801
802 <para>&bibletime; je navržen k použití s díly v jednom z formátů podporovaných
803@@ -24,11 +24,11 @@
804 <varlistentry>
805 <term>Bible</term>
806 <listitem>
807- <para>The full Bible text, with optional things like Strong's Numbers, headings
808-and/or footnotes in the text. Bibles are available in many languages, and
809-include not only modern versions, but also ancient texts like the Codex
810-Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is
811-the most advanced section in the library of the Sword project.</para>
812+ <para>Úplný text Bible, s volitelnými věcmi jako Strongova �ísla, nadpisy, nebo
813+poznámky v textu. Bible jsou dostupné v mnoha jazycích, nejen v moderních
814+verzích, ale také ve starověkých jako Codex Leningradensis ( Kodex
815+Leningradský; "WLC", Hebrejsky), nebo Septuaginta ("LXX", Řecky). Toto je
816+nejmodernější sekce knihovny projektu Sword.</para>
817 </listitem>
818 </varlistentry>
819 <varlistentry>
820@@ -41,11 +41,11 @@
821 <varlistentry>
822 <term>Komentáře</term>
823 <listitem>
824- <para>Dostupné komentáře zahrnují klasiky jako "Notes on the Bible" Johna
825-Wesleyho, komentáře Matthewa Henryho a Lutherův "Komentář ke galatským."
826-Pomocí <emphasis>Osobního</emphasis>komentáře můžete<link
827-linkend="hdbk-op-parts-desk-write"> nahrát osobní poznámky</link> do
828-biblických sekcí.</para>
829+ <para>Commentaries available include classics like John Wesley's "Notes on the
830+Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
831+With the <emphasis>Personal</emphasis> commentary you can <link
832+linkend="hdbk-op-parts-desk-write"> record your own personal notes</link> to
833+sections of the Bible.</para>
834 </listitem>
835 </varlistentry>
836 <varlistentry>
837@@ -58,11 +58,11 @@
838 <varlistentry>
839 <term>Lexikony/slovníky</term>
840 <listitem>
841- <para>Dostupné lexikony zahrnují: Robinson's Morphological Analysis Codes,
842-Brown-Driver-Briggs Hebrew Lexicon a International Standard Bible
843-Encyclopedia. Dostupné slovníky zahrnují: Strong's Hebrew Bible Dictionary,
844-Strong's Greek Bible Dictionary, Webster's Revised Unabridged Dictionary of
845-the English Language 1913, Nave's Topical Bible.</para>
846+ <para>Lexicons available include: Robinson's Morphological Analysis Codes,
847+Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
848+Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
849+Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
850+Dictionary of the English Language 1913, Nave's Topical Bible.</para>
851 </listitem>
852 </varlistentry>
853 </variablelist></para>
854@@ -70,14 +70,14 @@
855 <sect2 id="hdbk-intro-motivation">
856 <title>Motivace</title>
857 <para>Přejeme si sloužit Bohu a přispět svým dílem ostatním v růstu ve vztahu s
858-Ním. Máme chuť udržet tento výkonný a kvalitní program stále jednoduchým a
859-intuitivním. Naším přáním je chválit Boha jako zdroj všech dobrých věcí.</para>
860+Ním. Chceme, aby byl tento výkonný a kvalitní program stále jednoduchý a
861+intuitivní. Přejeme si chválit Boha, neboť on je zdroj všeho dobrého.</para>
862 <blockquote>
863 <attribution>Jakubův 1:17</attribution>
864 <para>Každý dobrý dar a každé dokonalé obdarování je shůry, sestupuje od Otce
865 nebeských světel. U něho není proměny ani střídání světla a stínu.</para>
866 </blockquote>
867- <para>God bless you as you use this program.</para>
868+ <para>Bůh vám žehnej při používání tohoto programu.</para>
869 </sect2>
870 </sect1>
871 </chapter>
872
873=== modified file 'docs/handbook/cs/docbook/hdbk-operation.docbook'
874--- docs/handbook/cs/docbook/hdbk-operation.docbook 2009-04-05 07:01:43 +0000
875+++ docs/handbook/cs/docbook/hdbk-operation.docbook 2009-04-29 17:39:29 +0000
876@@ -12,11 +12,11 @@
877 </textobject>
878 </mediaobject>
879 Můžete si jednoduše prohlédnout různé �ásti aplikace. Knihovna na levé
880-straně se používá pro otevírání děl a správu vašich záložek. Malé "Mag" okno
881-pod knihovnou se používá pro zobrazení dalších informací vložených do
882-dokumentů. Když přemístíte myš například nad zna�ku poznámky, "Mag" zobrazí
883-aktuální obsah poznámky. Panel nástrojů vám umožňuje rychlý přístup k
884-důležitým funkcím, na ploše vpravo skute�ně pracujete.</para>
885+straně se používá pro otevírání děl a správu vašich záložek. Malé okno
886+�aopisu pod knihovnou se používá pro zobrazení dalších informací vložených
887+do dokumentů. Když přemístíte myš například nad zna�ku poznámky, �asopis
888+zobrazí aktuální obsah poznámky. Panel nástrojů vám umožňuje rychlý přístup
889+k důležitým funkcím, na ploše vpravo skute�ně pracujete.</para>
890
891 <para>Nyní se podívejme na vzhled různých �ástí aplikace individuálně.</para>
892 </sect1>
893@@ -37,7 +37,7 @@
894 ploše.</para>
895
896 <tip>
897- <para>Chyť &amp; pust dílo tady</para>
898+ <para>Chyť &amp; pust dílo</para>
899 </tip>
900
901 <para>Pokud �tete nějaké dílo a chcete otevřít jiné dílo ve stejné pasáži, můžete
902@@ -77,7 +77,7 @@
903 <para>
904
905 <tip>
906- <para>Chyť &amp; pust dílo tady</para>
907+ <para>Chyť &amp; pust dílo</para>
908 </tip>
909
910 Klikněte <mousebutton>pravým tla�ítkem myši</mousebutton> na kategorii
911@@ -110,7 +110,7 @@
912 <title>Plocha</title>
913 <para>The Desk is where the real work with &bibletime; takes place. Here you can
914 open works from the Bookshelf, read them, <link
915-linkend="hdbk-op-search">search</link>in them, and even save your
916+linkend="hdbk-op-search">search</link> in them, and even save your
917 annotations in the personal commentary module (see <link
918 linkend="hdbk-op-parts-desk-write">below</link>).</para>
919
920@@ -125,41 +125,39 @@
921
922 <sect3 id="hdbk-op-parts-desk-placement">
923 <title>Umístění aktivního okna</title>
924- <para>Of course, you can open multiple works at the same time. There are several
925-possibilities for arranging the read windows on the desk. Please have a look
926-at the entry <guimenu>Window</guimenu>in the main menu. There you can see
927-that you can either control the placement of the read windows completely
928-yourself, or have &bibletime; handle the placement automatically. To achieve
929-this, you have to select one of the automatic placement modes available at
930-<menuchoice> <guimenu>Window</guimenu> <guimenuitem>Arrangement
931-mode</guimenuitem> </menuchoice>. Just try it out, it's simple and works.</para>
932+ <para>Samozřejmě můžete mít otevřeno více děl ve stejné době. Máte několik
933+možností jak umístit okna na ploše. Prosím podívejte se na položku
934+<guimenu>Okno</guimenu> v hlavním menu. Tam uviděíte, že umístění oken
935+můžete ovládat bu� osobně, nebo zvolit automatické umístění &bibletime;. To
936+můžete cílit volbou jednoho z automatických můdů umístění, které jsou
937+přístupné přes <menuchoice> <guimenu>Okno</guimenu> <guimenuitem>Mód
938+rozvržení</guimenuitem> </menuchoice>. Prostě to vyzkoušejte, je to snadné a
939+funguje to.</para>
940 </sect3>
941
942 <sect3 id="hdbk-op-parts-desk-write">
943 <title>Úpravy vašich vlastních komentářů</title>
944- <para>To be able to store your own comments about parts of the Bible, you have
945-install a certain work from the library of the <ulink
946-url="http://www.crosswire.org">Crosswire Bible Society</ulink>. This work is
947-called "Personal commentary".</para>
948+ <para>Aby jste mohli ukládat vlastní komentáře �ástí Bible, musíte nainstalovat
949+dílo z knihovny <ulink url="http://www.crosswire.org">Crosswire Bible
950+Society</ulink>, které se jmenuje "Personal commentary".</para>
951
952- <para>If you open the personal commentary by clicking on its symbol in the
953-Bookshelf with a <mousebutton>left</mousebutton>mouse button, it opens in
954-read mode. You will not be able to edit it in this mode. Should you wish to
955-write annotations into the personal commentary, you have to open it with the
956-<mousebutton>right</mousebutton>mouse button and then select <guimenu>Edit
957-this work</guimenu>and then either <guimenuitem>Plain
958-text</guimenuitem>(source code editor) or
959-<guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>
960+ <para>Pokud otevřete osobní komentář kliknutím <mousebutton>levým</mousebutton>
961+tla�ítkem myši na jeho symbol v knihovně, otevře se pro �tení. V tomto módu
962+není možné komentář editovat. Pokud si přejete do něj zapsat poznámku,
963+musíte ho otevřít pomocí <mousebutton>pravého</mousebutton> tla�ítka myši a
964+zvolit <guimenu>Editovat toto dílo</guimenu> a potom také
965+<guimenuitem>Prostý text</guimenuitem> (editor zdrojového kódu) nebo
966+<guimenuitem>HTML</guimenuitem>(jednoduchý gui wysiwyg editor).</para>
967
968 <tip>
969- <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice>is
970+ <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice> is
971 deactivated, please check if you have write permission for the files of the
972 personal commentary.</para>
973 </tip>
974
975 <tip>
976- <para>Drag &amp; drop works here. Drop a verse reference and the text of the verse
977-will be inserted.</para>
978+ <para>Přetáhněte &amp; upusťte díla zde. Pusťte odkaz verše a bude vložen jeho
979+text.</para>
980 </tip>
981 </sect3>
982 </sect2>
983@@ -168,38 +166,37 @@
984 <title>Vyhledávání v dílech</title>
985
986 <sect2 id="hdbk-op-search-intext">
987- <title>Searching text in an open read window</title>
988- <para>You can look for a word or phrase in the open read window (e.g. the chapter
989-of a bible that you're reading) just like you are used to from other
990-programs. This function can be reached either by clicking with the
991-<mousebutton>right</mousebutton>mouse button and selecting
992-<guimenuitem>Find...</guimenuitem>, or by using the hotkey <keycombo
993-action="simul">&Ctrl; <keycap>F</keycap></keycombo>. Read on to learn how
994-you can search in entire works.</para>
995+ <title>Vyhledávání textu v aktivním okně</title>
996+ <para>Když chcete hledat slovo nebo frázi v otevřeném aktivním okně
997+(např. kapitolu bible, kterou �tete), je to stejné jako v jiných
998+programech. tuto funkci můžete vyvolat kliknutím
999+<mousebutton>pravým</mousebutton> tla�ítkem myši a vyráním
1000+<guimenuitem>Najít...</guimenuitem>, nebo použitím horké klávesy <keycombo
1001+action="simul">&Ctrl; <keycap>F</keycap></keycombo>. Pře�těte si jak hledat
1002+v celých dílech.</para>
1003 </sect2>
1004
1005 <sect2 id="hdbk-op-search-access">
1006 <title>Přístup k dialogu vyhledávání</title>
1007- <para>You can search in a work by clicking with the
1008-<mousebutton>right</mousebutton>mouse button on its symbol in the
1009-<guimenu>Bookshelf</guimenu>and selecting <guimenuitem>Search in
1010-work(s)</guimenuitem>. By holding &Shift; or &Ctrl; and clicking on other
1011-work's names you can select more than one. Then follow the same procedure to
1012-open the search dialog. You will be searching in all of these works at the
1013-same time.</para>
1014-
1015- <para>You can also access the search dialog by clicking on <menuchoice>
1016-<guimenu>Search</guimenu> </menuchoice> from the main menu, and selecting
1017-the appropriate entry.</para>
1018-
1019- <para>A third possibility to start searches is to click on the search symbol in an
1020-open read window.</para>
1021+ <para>V díle můžete hledat kliknutím <mousebutton>pravým</mousebutton> tla�ítkem
1022+myši na symbol v <guimenu>knihovně</guimenu> a vybráním <guimenuitem>Hledat
1023+ve vybraných dílech</guimenuitem>. Přidržením &Shift; nebo &Ctrl; a
1024+kliknutím na jména dalších děl můžete vybrat více než jedno dílo. Poté
1025+následuje stejný postup otevření dialogu hledání. Budete hledat ve všech
1026+těchto dílech najednou.</para>
1027+
1028+ <para>Vyhledávací dialog spustíte kliknutím na <menuchoice>
1029+<guimenu>Hledat</guimenu> </menuchoice> z hlavního menu a vybráním
1030+odpovídající položky.</para>
1031+
1032+ <para>Třetí možnost jak spustit vyhledávání je kliknutím na symbol hledání v
1033+aktuálním okně.</para>
1034 </sect2>
1035
1036 <sect2 id="hdbk-op-search-config">
1037 <title>Nastavení vyhledávání</title>
1038 <screenshot>
1039- <screeninfo>Search Text Dialog Options Tab</screeninfo>
1040+ <screeninfo>Nastavení dialogu hledání</screeninfo>
1041 <mediaobject>
1042 <imageobject>
1043 <imagedata fileref="ss_searchopts.png" format="PNG" />
1044@@ -208,50 +205,53 @@
1045 </screenshot>
1046 <sect3 id="hdbk-op-search-config-works">
1047 <title>Výběr děl</title>
1048- <para>At the top of the options tab you will find
1049-<guibutton>Choose</guibutton>(works). If you would like to search in
1050-multiple works, click on this button and you will be offered a menu where
1051-you can select the works you want to search in.</para>
1052+ <para>Nahoře v okně nastavení vyhledávání najdete tla�ítko <guibutton>Vybrat (nebo
1053+Choose)</guibutton> (díla). Pokud chcete vyhledávat ve více dílech, klikněte
1054+na toto tla�ítko, poté vám bude nabídnuto menu s možností výběru děl ve
1055+kterých chcete vyhledávat.</para>
1056 </sect3>
1057 <sect3 id="hd-op-search-config-scope">
1058- <title>Using Search Scopes</title>
1059- <para>You can narrow the scope of your search to certain parts of the Bible by
1060-selecting one of the predefined scopes from the list in <guimenu>Search
1061-scope</guimenu>. You can define your own search ranges by clicking the
1062-<guibutton>Setup ranges</guibutton>button.</para>
1063+ <title>Použití oblastí vyhledávání</title>
1064+ <para>Můžete použít rozsah hledání zvolením ur�itých �ástí Bible pomocí jedné z
1065+definovaných oblastí v seznamv <guimenu>Rozsah hledání</guimenu> Můžete
1066+definovat vlastní vyhledávací rozsahy kliknutím na tla�ítko
1067+<guibutton>Nastavit rozsah</guibutton>.></para>
1068 </sect3>
1069 <sect3 id="hd-op-search-config-syntax">
1070- <title>Basic Search Syntax Introduction</title>
1071- <para>Enter search terms separated by spaces. By default the search function will
1072-return results that match any of the search terms (OR). To search for all
1073-the terms separate the terms by AND.</para>
1074- <para>You can use wildcards: '*' matches any sequence of characters, while '?'
1075-matches any single character. The use of brackets allows you to group your
1076-search terms, e.g. '(Jesus OR spirit) AND God'.</para>
1077- <para>To search text other than the main text, enter the text type followed by
1078-':', and then the search term. For example, to search for the Strong's
1079-number H8077, use 'strong:H8077'.</para>
1080- <para>Dostupné typy textů:
1081+ <title>Úvod do jednoduché vyhledávací syntaxe</title>
1082+ <para>Vložte výrazy a oddělte je mezerami. Při výchozím nastavení, vyhledávání
1083+vrátí výsledky, které odpovídají libovolnému z vyhledávaných výrazů (logická
1084+spojka NEBO). pro vyhledání všech výrazů oddělte jednotlivá slova spojkou
1085+AND.</para>
1086+ <para>Můžete využít znaky: '*' odpovídající libovolné posloupnosti znaků, '?'
1087+zastupující libovolný jeden znak. Použití závorek vám dovoluje seskupovat
1088+hledané výrazy, např. '(Ježíš OR duch) AND Bůh' --výsledky hledání budou
1089+obsahovat nejméně jedno ze slov v závorce, Ježíš nebo duch, a slovo Bůh.</para>
1090+ <para>Pro vyhledávání jiného než hlavního textu vložte ur�itou předponu
1091+následovanou'dvojte�kou ':' a hledaným výrazem. Například pro vyhledávání
1092+Strongova �ísla H8077 použijte 'strong:H8077'</para>
1093+ <para>Dostupné předpony:
1094 <table id="hd-op-search-config-syntax-table">
1095+ <title>Search Types</title>
1096 <tgroup cols="2">
1097 <thead>
1098 <row>
1099- <entry>Prefix</entry>
1100- <entry>Meaning</entry>
1101+ <entry>Předpona</entry>
1102+ <entry>Význam</entry>
1103 </row>
1104 </thead>
1105 <tbody>
1106 <row>
1107- <entry>nadpis:</entry>
1108+ <entry>heading:</entry>
1109 <entry>hledá nadpisy</entry>
1110 </row>
1111 <row>
1112- <entry>poznámka:</entry>
1113+ <entry>footnote:</entry>
1114 <entry>hledá poznámky</entry>
1115 </row>
1116 <row>
1117 <entry>strong:</entry>
1118- <entry>searches Strong's Numbers</entry>
1119+ <entry>hledání Strongových �ísel</entry>
1120 </row>
1121 <row>
1122 <entry>morph:</entry>
1123@@ -267,13 +267,12 @@
1124 </sect3>
1125 </sect2>
1126 <sect2 id="hdbk-op-search-results">
1127- <title>Výsledky vyhledávání</title>
1128- <para>Here you can see how many instances of the search string were found, sorted
1129-by works. Clicking on a work with the <mousebutton>right</mousebutton>mouse
1130-button allows you to copy, save, or print all verses that were found in a
1131-certain work at once. This also works when you click on one or more of the
1132-references to copy, save or print them. Clicking on a particular reference
1133-opens that verse up in context in the preview window below.</para>
1134+ <title>Výsledky hledání</title>
1135+ <para>Zde vidíte kolik případů hledaného řetězce bylo nalezeno, setříděno podle
1136+děl. Kliknutí na dílo <mousebutton>pravým</mousebutton> tla�ítkem myši vám
1137+umožní kopírovat, uložit, nebo tisknout všechny verše které byli v daném
1138+díle nalezeny. To při kliknutí na jeden nebo více odkazů. Kliknutí na ur�itý
1139+odkaz otevře verš v jeho kontextu v okně náhledu.</para>
1140 <tip>
1141 <para>Přetáhněte odkaz a upusťte ho na symbol díla v knihovně k otevření díla na
1142 tomto verši v novém okně.</para>
1143@@ -303,38 +302,40 @@
1144 </sect1>
1145 <sect1 id="hdbk-op-bookshelfmanager">
1146 <title><guimenuitem>Správa knih</guimenuitem></title>
1147- <para><guimenuitem>Správa knih</guimenuitem> nástroj pro správu knihovny. Můžete
1148-do vaší knihovny nainstalovat nová díla, aktualizovat nebo odstranit ty
1149-existující. Přístupná pod <menuchoice> <guimenu>Nastavení</guimenu>
1150-<guimenuitem>Správa knih</guimenuitem> </menuchoice> v hlavním menu.</para>
1151+ <para>The <guimenuitem>Bookshelf Manager</guimenuitem> is a tool to manage your
1152+Bookshelf. You can install new works to your Bookshelf, and update or remove
1153+existing works from your Bookshelf. Access it by clicking <menuchoice>
1154+<guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem>
1155+</menuchoice> in the main menu.</para>
1156 <sect2 id="hdbk-op-bookshelfmanager-path">
1157 <title>Nastavení cesty ke knihám</title>
1158- <para>Zde lze nastavit, kam má &bibletime; uložit knihovnu. Můžete použít více
1159-adresářů. Výchozí je "~/.sword/".</para>
1160+ <para>Here you can specify where &bibletime; may store your Bookshelf on the hard
1161+drive. You can even store it in multiple directories. Default is
1162+"~/.sword/".</para>
1163 <tip>
1164- <para>Pokud máte CD sword, ale nechcete všechna díla instalovat na disk, ale
1165-používat je přímo z CD, pak vložte cestu k CD jako jednu z cest. Když
1166-zapnete &bibletime;, zobrazí se všechna díla, pokud je CD vloženo v
1167-mechanice.</para>
1168+ <para>If you have a sword CD, but do not want to install all the works on the hard
1169+disk, but use them directly from the CD, then you can add the path to the CD
1170+as one of your bookshelf paths. When you start &bibletime;, it will show all
1171+works on the CD if it is present.</para>
1172 </tip>
1173 </sect2>
1174 <sect2 id="hdbk-op-bookshelfmanager-installupdate">
1175 <title>Instalace/aktualizace děl</title>
1176- <para>With this facility, you can connect to a repository of works (called
1177-"library"), and transfer one or more works to your local Bookshelf. These
1178-libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online
1179-repository of Sword modules, or another site offering Sword modules). You
1180-can manage your libraries with <guibutton>Add library</guibutton> and
1181-<guibutton>Delete library</guibutton>.</para>
1182- <para>To begin the installation or update process, select a library you want to
1183-connect to and a local Bookshelf path to install the work(s) to. Then click
1184-on <guibutton>Connect to library</guibutton>. &bibletime; will scan the
1185-contents of the library and present you with a list of works that you can
1186-add to your Bookshelf, or that you already have installed but are available
1187-in a new version in the library, and thus can be updated. Then you can mark
1188-all works that you want to install or update, and click on
1189-<guibutton>Install works</guibutton>. They will then be transferred to your
1190-Bookshelf.</para>
1191+ <para>Tímto nástrojem se můžete připojit k repositáři děl (je zvaný "knihovna",
1192+"library") a nahrát jedno nebo více děl do své lokální knihovny. Tyto
1193+knihovny mohou být lokální (např. Sword CD) nebo vzdálené (např. Crosswire's
1194+online repository of Sword modules nebo jiné stránky nabízející moduly
1195+Sword). Své knihovny můžete spravovat pomocí <guibutton>Přidat
1196+knihovnu</guibutton> a <guibutton>Smazat knihovnu</guibutton>.</para>
1197+ <para>Pro zahájení procesu instalace nebo aktualizace vyberte knihovnu ke které se
1198+chcete připojit a umístění lokální knihovny pro instalaci děl. Potom
1199+klikněte na tla�ítko <guibutton>Spojit s knihovnou</guibutton>. &bibletime;
1200+prověří obsah knihovny a předloží vám seznam děl, které můžete do své
1201+knihovny přidat, nebo děl, které jsou již nainstalované, ale jsou dostupné v
1202+novější verzi, a tak mohou být aktualizovány. Poté můžete ozna�it všechna
1203+díla, která chcete nainstalovat nebo aktualizovat a kliknout na
1204+<guibutton>Instalovat díla</guibutton>. Ty budou poté nahrány do vaší
1205+knihovny.</para>
1206 </sect2>
1207 <sect2 id="hdbk-op-bookshelfmanager-remove">
1208 <title>Odebrání děl</title>
1209@@ -354,15 +355,15 @@
1210 </sect1>
1211 <sect1 id="hdbk-op-output">
1212 <title>Export a tisk</title>
1213- <para>In many places, you can open a context menu by clicking with the
1214-<mousebutton>right</mousebutton>mouse button. Depending on context, it will
1215-allow you to <guimenuitem>Select</guimenuitem>,
1216-<guimenuitem>Copy</guimenuitem> (to clipboard),
1217-<guimenuitem>Save</guimenuitem> or <guimenuitem>Print</guimenuitem>
1218-text. This works for example in the read windows, when you click on the
1219-normal text or the verse reference, or in the search result page when you
1220-click on a work or one or more verse references. It is pretty
1221-straightforward, so just try it out.</para>
1222+ <para>Na mnoha místech můžete vyvolat kontextové menu kliknutím
1223+<mousebutton>pravým</mousebutton> tla�ítkem myši. V závislosti na kontextu
1224+je možné <guimenuitem>Vybrat</guimenuitem>,
1225+<guimenuitem>Kopírovat</guimenuitem> (do schránky),
1226+<guimenuitem>Uložit</guimenuitem> nebo
1227+<guimenuitem>Tisknout</guimenuitem>. to funguje např. v aktivním okně když
1228+kliknete na běžný text nebo na odkaz verše, nebo na stránce výsledků hledání
1229+při kliknutí na dílo nebo na jeden �i více odkazů veršů. Je to krásně
1230+přímo�aré, prostě to vyzkoušejte.</para>
1231
1232 <para>Tisk z &bibletime; spíše základní a je zamýšlen jako pomůcka. Pokud
1233 vytváříte dokument nebo prezentaci obsahující text děl z &bibletime;,
1234
1235=== modified file 'docs/handbook/cs/docbook/hdbk-reference.docbook'
1236--- docs/handbook/cs/docbook/hdbk-reference.docbook 2009-04-05 07:01:43 +0000
1237+++ docs/handbook/cs/docbook/hdbk-reference.docbook 2009-04-29 17:39:29 +0000
1238@@ -39,16 +39,47 @@
1239 </variablelist>
1240 </para>
1241 </sect2>
1242+
1243 <sect2 id="hdbk-reference-menus-view">
1244 <title>
1245 <guimenu>View</guimenu>
1246 </title>
1247+
1248 <variablelist>
1249+ <varlistentry id="hdbk-reference-menus-view-fullscreenmode">
1250+ <term>
1251+ <menuchoice>
1252+ <shortcut>
1253+ <keycombo action="simul">
1254+ <keycap>F5</keycap>
1255+ </keycombo>
1256+ </shortcut>
1257+ <guimenu>
1258+ <inlinemediaobject>
1259+ <imageobject>
1260+ <imagedata fileref="i_window_fullscreen.png" format="PNG" />
1261+ </imageobject>
1262+ </inlinemediaobject>View</guimenu>
1263+ <guimenuitem>Fullscreen mode</guimenuitem>
1264+ </menuchoice>
1265+ </term>
1266+ <listitem>
1267+ <para>
1268+ <action>Toggles full screen display.</action> Toggle this setting to
1269+maximize the &bibletime; window.</para>
1270+ </listitem>
1271+ </varlistentry>
1272+
1273 <varlistentry id="hdbk-reference-menus-view-showtoolbar">
1274 <term>
1275 <menuchoice>
1276+ <shortcut>
1277+ <keycombo action="simul">
1278+ <keycap>F6</keycap>
1279+ </keycombo>
1280+ </shortcut>
1281 <guimenu>View</guimenu>
1282- <guimenuitem>Show Toolbar</guimenuitem>
1283+ <guimenuitem>Show toolbar</guimenuitem>
1284 </menuchoice>
1285 </term>
1286 <listitem>
1287@@ -57,20 +88,11 @@
1288 přejete zapnout nebo vypnout Hlavní nástrojovou lištu.</para>
1289 </listitem>
1290 </varlistentry>
1291+
1292 <varlistentry id="hdbk-reference-menus-view-showbookshelf">
1293 <term>
1294 <menuchoice>
1295- <shortcut>
1296- <keycombo action="simul">
1297- <keycap>F9</keycap>
1298- </keycombo>
1299- </shortcut>
1300- <guimenu>
1301- <inlinemediaobject>
1302- <imageobject>
1303- <imagedata fileref="i_sidetree.png" format="PNG" />
1304- </imageobject>
1305- </inlinemediaobject>View</guimenu>
1306+ <guimenu>View</guimenu>
1307 <guimenuitem>Show Bookshelf</guimenuitem>
1308 </menuchoice>
1309 </term>
1310@@ -81,20 +103,11 @@
1311 potřebujete více �asu pro �asopis.</para>
1312 </listitem>
1313 </varlistentry>
1314+
1315 <varlistentry id="hdbk-reference-menus-view-showmag">
1316 <term>
1317 <menuchoice>
1318- <shortcut>
1319- <keycombo action="simul">
1320- <keycap>F8</keycap>
1321- </keycombo>
1322- </shortcut>
1323- <guimenu>
1324- <inlinemediaobject>
1325- <imageobject>
1326- <imagedata fileref="i_sidetree.png" format="PNG" />
1327- </imageobject>
1328- </inlinemediaobject>View</guimenu>
1329+ <guimenu>View</guimenu>
1330 <guimenuitem>Show Mag</guimenuitem>
1331 </menuchoice>
1332 </term>
1333@@ -254,10 +267,10 @@
1334 </term>
1335 <listitem>
1336 <para>
1337- <action>Controls the basic window arrangement behaviour</action>. In the
1338-opening context menu, you can either specify that you want to take care of
1339-the window arrangement yourself (Manual mode) or have &bibletime; handle it
1340-for you (Automatical modes, just try them out!).</para>
1341+ <action>Ovládá chování jednoduchého rozvržení oken</action>. V otevřeném
1342+kontextovém menu můžete zvolit, že se chcete o rozvržení oken starat osobně
1343+(Ru�ní mód) nebo použít připravené možnosti &bibletime; (Automatické módy,
1344+tak je vyzkoušejte!)</para>
1345 </listitem>
1346 </varlistentry>
1347 <varlistentry id="hdbk-reference-menus-window-closeall">
1348@@ -288,30 +301,6 @@
1349 <guimenu>Settings</guimenu>
1350 </title>
1351 <variablelist>
1352- <varlistentry id="hdbk-reference-menus-settings-toolbars">
1353- <term>
1354- <menuchoice>
1355- <guimenu>
1356- <inlinemediaobject>
1357- <imageobject>
1358- <imagedata fileref="i_configuretoolbars.png"
1359- format="PNG" />
1360- </imageobject>
1361- </inlinemediaobject>Settings</guimenu>
1362- <guimenuitem>Configure toolbars</guimenuitem>
1363- </menuchoice>
1364- </term>
1365- <listitem>
1366- <para>
1367- <action>Opens a dialog where you can customize &bibletime;'s
1368-toolbar</action>. Just try it out, you can move around the toolbar buttons
1369-and even add new ones. Most of the entries available from the main menu can
1370-be put on the toolbar as buttons. If you need a certain feature often, you
1371-might want to put a button on the main menu, so that you can access it with
1372-only one click. Please see <link linkend="hdbk-config-toolbar">this
1373-section</link> for further information.</para>
1374- </listitem>
1375- </varlistentry>
1376 <varlistentry id="hdbk-reference-menus-settings-bibletime">
1377 <term>
1378 <menuchoice>
1379@@ -352,53 +341,97 @@
1380 </term>
1381 <listitem>
1382 <para>
1383- <action>Opens a dialog where you can change your Sword configuration and
1384-manage your bookshelf</action>. Please see <link
1385-linkend="hdbk-op-bookshelfmanager">this section</link> for details.</para>
1386+ <action>Otevře dialog kde můžete změnit vaše nastavení Sword a spraovat svou
1387+knihovnu</action>. Další inormace naleznete v <link
1388+linkend="hdbk-op-bookshelfmanager">této sekci</link>.</para>
1389 </listitem>
1390 </varlistentry>
1391 </variablelist>
1392 </sect2>
1393+
1394 <sect2 id="hdbk-reference-menus-help">
1395 <title>
1396 <guimenu>Help</guimenu>
1397- </title>TODO: ADD</sect2>
1398- </sect1>
1399- <sect1 id="hdbk-reference-toolbar">
1400- <title>Odkazy Nástrojové lišty</title>
1401- <para>Please review <link linkend="hdbk-reference-menus">the preceding
1402-section</link> for an explanation of the buttons that you find on the
1403-toolbar. You can also <action>move the cursor over a button and wait a few
1404-seconds</action> to activate the button's tooltip with a short description.</para>
1405- <para>You can adapt the toolbar to your needs. Please use the following entry in
1406-the main menu:
1407- <variablelist>
1408- <varlistentry>
1409- <term>
1410- <menuchoice>
1411- <guimenu>
1412- <inlinemediaobject>
1413- <imageobject>
1414- <imagedata fileref="i_configuretoolbars.png"
1415- format="PNG" />
1416- </imageobject>
1417- </inlinemediaobject>Settings</guimenu>
1418- <guimenuitem>Configure toolbars</guimenuitem>
1419- </menuchoice>
1420- </term>
1421- <listitem>
1422- <para>Nastavit nástrojové lišty</para>
1423- </listitem>
1424- </varlistentry>
1425- </variablelist>Please see <link linkend="hdbk-reference-menus-settings-toolbars">this
1426-section</link> for detailed instructions.</para>
1427- </sect1>
1428+ </title>
1429+ <variablelist>
1430+ <varlistentry id="hdbk-reference-menus-help-bibletime">
1431+ <term>
1432+ <menuchoice>
1433+ <shortcut>
1434+ <keycombo action="simul">
1435+ <keycap>F1</keycap>
1436+ </keycombo>
1437+ </shortcut>
1438+ <guimenu>
1439+ <inlinemediaobject>
1440+ <imageobject>
1441+ <imagedata fileref="i_contents2.png" format="PNG" />
1442+ </imageobject>
1443+ </inlinemediaobject>Help</guimenu>
1444+ <guimenuitem>Handbook</guimenuitem>
1445+ </menuchoice>
1446+ </term>
1447+ <listitem>
1448+ <para>
1449+ <action>Opens &bibletime;'s user guide</action> You are reading it now.</para>
1450+ </listitem>
1451+ </varlistentry>
1452+
1453+ <varlistentry id="hdbk-reference-menus-help-bible_study_howto">
1454+ <term>
1455+ <menuchoice>
1456+ <shortcut>
1457+ <keycombo action="simul">
1458+ <keycap>F2</keycap>
1459+ </keycombo>
1460+ </shortcut>
1461+ <guimenu>
1462+ <inlinemediaobject>
1463+ <imageobject>
1464+ <imagedata fileref="i_contents2.png"
1465+ format="PNG" />
1466+ </imageobject>
1467+ </inlinemediaobject>Help</guimenu>
1468+ <guimenuitem>Bible Study Howto</guimenuitem>
1469+ </menuchoice>
1470+ </term>
1471+ <listitem>
1472+ <para>
1473+ <action>Opens a guide on how to study the Bible</action> It is the hope of
1474+the &bibletime; team that this HowTo will provoke the readers to study the
1475+scriptures to see what they say. This particular study guide has been chosen
1476+as it takes care not to advocate any particular denominational doctrine. We
1477+expect you to read and study the scriptures to understand what they say. If
1478+you start with the attitude that you want to have the Lord sow his word in
1479+your heart He will not disappoint you.</para>
1480+ </listitem>
1481+ </varlistentry>
1482+
1483+ <varlistentry id="hdbk-reference-menus-help-about">
1484+ <term>
1485+ <menuchoice>
1486+ <guimenu>Help</guimenu>
1487+ <guimenuitem>About</guimenuitem>
1488+ </menuchoice>
1489+ </term>
1490+ <listitem>
1491+ <para>
1492+ <action>Opens a window about &bibletime; project information</action>
1493+contains information about &bibletime; software version, project
1494+contributors, &sword; software version, &qt; software version and the
1495+license agreement.</para>
1496+ </listitem>
1497+ </varlistentry>
1498+ </variablelist>
1499+ </sect2>
1500+ </sect1>
1501+
1502 <sect1 id="hdbk-reference-hotkeys">
1503- <title>Seznam klávesových zkratek</title>
1504+ <title>Seznam horkých kláves</title>
1505 <para>This is index of all hotkeys and their corresponding description in the
1506 handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
1507 directly find out which hotkey a certain menu item has, you can either look
1508-at the entry itelf in &bibletime; (as it always shows the hotkey), or you
1509+at the entry itself in &bibletime; (as it always shows the hotkey), or you
1510 can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>
1511 <informaltable>
1512 <tgroup cols="2">
1513@@ -529,7 +562,7 @@
1514 <keycombo action="simul">&Ctrl;
1515 <keycap>F</keycap></keycombo>
1516 </entry>
1517- <entry>Search. This lets you search within the text of a read window.</entry>
1518+ <entry>Hledat. Vyhledává v textu aktivního okna</entry>
1519 </row>
1520 <row>
1521 <entry>
1522
1523=== modified file 'docs/handbook/cs/docbook/hdbk-start.docbook'
1524--- docs/handbook/cs/docbook/hdbk-start.docbook 2009-04-05 07:01:43 +0000
1525+++ docs/handbook/cs/docbook/hdbk-start.docbook 2009-04-24 02:10:38 +0000
1526@@ -16,20 +16,19 @@
1527 </mediaobject></para>
1528 <para>&bibletime; může být spuštěn také z příkazové řádky. Pro spuštění
1529 &bibletime; otevřete okno terminálu a napište:
1530- <screen>bibletime</screen></para>
1531+ <screen>&bibletime;</screen></para>
1532 </sect2>
1533 <sect2 id="hdbk-start-otherwm">
1534 <title>Další správci oken</title>
1535- <para>&bibletime; může být používán také s dalšími okenními správci jako Gnome,
1536-BlackBox, Fluxbox, OpenBox nebo Sawfish, pokud jsou požadované knihovny již
1537-nainstalovány na vašem po�íta�i.</para>
1538+ <para>&bibletime; can be used with other window managers such as Gnome, BlackBox,
1539+Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
1540+already installed on your computer.</para>
1541 </sect2>
1542 <sect2 id="hdbk-start-custom">
1543 <title>Nastavení spuštění</title>
1544 <para>Z terminálu můžete použít &bibletime; k otevření příslušného verše ve
1545 výchozí bibli:
1546- <screen>bibletime --open-default-bible
1547- "&lt;random&gt;"</screen>Pro otevření v dané pasáži, jako například Jan 3:16, použijte:
1548+ <screen>bibletime --open-default-bible</screen>Pro otevření v dané pasáži, jako například Jan 3:16, použijte:
1549 <screen>bibletime --open-default-bible "Jan 3:16"</screen>Můžete použít jména knih ve svém aktuálním jazyce pro pojmenování knih.</para>
1550 </sect2>
1551 </sect1>
1552@@ -44,13 +43,14 @@
1553 </term>
1554 <listitem>
1555 <para>
1556- <action>Modifies your Bookshelf.</action> This dialog lets you modify your
1557-Bookshelf, add or delete works from your system. It will only be shown if
1558-no default Bookshelf can be found. Please see <link
1559-linkend="hdbk-op-bookshelfmanager"> this section</link> for further
1560-details. If you start off with an empty Bookshelf, it will be helpful to
1561-install at least one Bible, Commentary, Lexicon and one Book to get to know
1562-&bibletime;'s basic features quickly.</para>
1563+ <action>Upravit vaši knihovnu.</action> Tento dialog vám umožní upravovat
1564+vaši knihovnu, přidávat nebo mazat díla ve vašem systému.This dialog lets
1565+you modify your Bookshelf, add or delete works from your system. Bude
1566+zobrazen pouze v případě, že nebude nalezena výchozí knihovna. Prosím
1567+podívejte se do <link linkend="hdbk-op-bookshelfmanager"> této sekce</link>
1568+pokud chcete znát více detailů. Pokud za�ínáte s prázdnou knihovnou, bude
1569+užite�né nainstalovat alespoň jednu Bibli, Komentář, Lexikon a knihu,
1570+abyste se rychle seznámili se základními vlastnostmi &bibletime;.</para>
1571 </listitem>
1572 </varlistentry>
1573 <varlistentry>
1574@@ -59,9 +59,9 @@
1575 </term>
1576 <listitem>
1577 <para>
1578- <action>Customizes &bibletime;.</action>This dialog lets you adapt
1579-&bibletime; to your needs. Please see <link linkend="hdbk-config-bt">the
1580-detailed description</link> of this dialog.</para>
1581+ <action>Přizpůsobí &bibletime;.</action>Tento dialog vám dovolí přizpůsobit
1582+&bibletime; vašim potřebám. Prosím podívejte se na <link
1583+linkend="hdbk-config-bt">detailní popis</link> tohoto dialogu.</para>
1584 </listitem>
1585 </varlistentry>
1586 </variablelist>
1587
1588=== modified file 'docs/handbook/cs/docbook/index.docbook'
1589--- docs/handbook/cs/docbook/index.docbook 2009-04-05 07:01:43 +0000
1590+++ docs/handbook/cs/docbook/index.docbook 2009-04-29 17:39:29 +0000
1591@@ -5,6 +5,7 @@
1592 <!ENTITY bibletime '<application>BibleTime</application>'>
1593 <!ENTITY sword '<application>Sword</application>'>
1594 <!ENTITY kde '<application>KDE</application>'>
1595+ <!ENTITY qt '<application>Qt</application>'>
1596
1597 <!ENTITY Shift 'Shift'>
1598 <!ENTITY Ctrl 'Ctrl'>
1599@@ -46,10 +47,10 @@
1600 <legalnotice>
1601 <para>Příru�ka &bibletime; je sou�ástí &bibletime;.</para>
1602 </legalnotice>
1603- <date>2005-08</date>
1604+ <date>2009-04</date>
1605 <releaseinfo>2.0</releaseinfo>
1606 <abstract>
1607- <para>&bibletime; je nástroj pro studium Bible založený na frameworku Sword.</para>
1608+ <para>&bibletime; is a Bible study tool based on the Sword framework.</para>
1609 </abstract>
1610 <keywordset>
1611 <keyword>QT4</keyword>
1612
1613=== modified file 'docs/handbook/cs/html/hdbk-config.html'
1614--- docs/handbook/cs/html/hdbk-config.html 2009-04-05 07:01:43 +0000
1615+++ docs/handbook/cs/html/hdbk-config.html 2009-04-24 02:10:38 +0000
1616@@ -1,4 +1,4 @@
1617-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 4. Nastavení BibleTime</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="prev" href="hdbk-op-output.html" title="Export a tisk"><link rel="next" href="hdbk-reference.html" title="Chapter 5. Odkazy"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 4. Nastavení BibleTime </th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-output.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-config"></a>Chapter 4. Nastavení <span class="application">BibleTime</span> </h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-config.html#hdbk-config-bt">Nastavení BibleTime Dialogu</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-display">
1618+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 4. Nastavení BibleTime</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="prev" href="hdbk-op-output.html" title="Export a tisk"><link rel="next" href="hdbk-reference.html" title="Chapter 5. Odkazy"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 4. Nastavení BibleTime </th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-output.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-config"></a>Chapter 4. Nastavení <span class="application">BibleTime</span> </h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-config.html#hdbk-config-bt">Nastavení Dialogu BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-display">
1619 Display
1620 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">
1621 Languages
1622@@ -6,8 +6,8 @@
1623 Desk
1624 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-hotkeys">
1625 HotKeys
1626- </a></span></dt></dl></dd></dl></div><p> V této sekci najdete úvod k nastavení <span class="application">BibleTime</span> které najdete pod
1627-volbou<span class="guimenu">Nastavení</span> v hlavním menu.</p><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-config-bt"></a>Nastavení BibleTime Dialogu</h2></div></div></div><p>U&#382;ivatelské rozhraní programu <span class="application">BibleTime</span> m&#367;&#382;e být uzp&#367;sobeno mnoha sm&#283;ry v
1628+ </a></span></dt></dl></dd></dl></div><p> V této sekci najdete úvod k nastavení <span class="application">BibleTime</span> které najdete pod volbou
1629+<span class="guimenu">Nastavení</span> v hlavním menu.</p><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-config-bt"></a>Nastavení Dialogu BibleTime</h2></div></div></div><p>U&#382;ivatelské rozhraní programu <span class="application">BibleTime</span> m&#367;&#382;e být uzp&#367;sobeno mnoha sm&#283;ry v
1630 závislosti na va&#353;ich pot&#345;ebách. K dialogu nastavení m&#367;&#382;ete p&#345;istoupit
1631 výb&#283;rem<span class="guimenu">Nastavení</span>
1632 <span class="guimenuitem">Natavit <span class="application">BibleTime</span></span>.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-display"></a>
1633@@ -18,10 +18,10 @@
1634 náhled v pravém poli.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-languages"></a>
1635 <span class="guimenu">Languages</span>
1636 </h3></div></div></div><p>Zde m&#367;&#382;ete zvolit jazyk, který bude pou&#382;it pro jména biblických knih. Pokud
1637-je dostupný, nastavte tuto mo&#382;nost na vá&#353; jazyk, a budete se cítit doma.</p><p>Ve výchozím nastavení pou&#382;ívá <span class="application">BibleTime</span> systémové písmo. Pokud je to
1638-nezbytné, m&#367;&#382;ete toto nastavení zm&#283;nit. N&#283;které jazyky vy&#382;adují pro správné
1639-zobrazení speciální písma, tento dialog vám umo&#382;ní nastavit vlastní písmo
1640-pro ka&#382;dý jazyk.</p><div class="mediaobject"><img src="ss_configfonts.png" alt="Dialog nastavení - písma"><div class="caption"><p>Dialog nastavení - Písma</p></div></div><p><span class="application">BibleTime</span> umí pou&#382;ívat v&#353;echna podporovaná písma. Pokud jsou díla o které
1641+je dostupný, nastavte tuto mo&#382;nost na vá&#353; jazyk, a budete se cítit doma.</p><p>By default, <span class="application">BibleTime</span> uses the default system display font. You can
1642+override this font if necessary. Some languages require special fonts to be
1643+displayed correctly, and this dialog allows you to specify a custom font for
1644+each language.</p><div class="mediaobject"><img src="ss_configfonts.png" alt="Dialog nastavení - písma"><div class="caption"><p>Dialog nastavení - Písma</p></div></div><p><span class="application">BibleTime</span> umí pou&#382;ívat v&#353;echna podporovaná písma. Pokud jsou díla o které
1645 se zajímáte zobrazena správn&#283;, není pot&#345;eba zde nic m&#283;nit.Pokud se dílo
1646 zobrazuje jen jako &#345;et&#283;zec otazník&#367; (?????) nebo prázdných &#269;tverc&#367;, pak
1647 víte, &#382;e standardní písmo neobsahuje znaky u&#382;ité v tomto díle. </p><p>K náprav&#283; vyberte jazyk tohoto díla z rozbalovacího menu. Za&#353;krtn&#283;te pou&#382;ít
1648@@ -40,10 +40,10 @@
1649 </td><td>Mo&#382;ná nejlep&#353;í svobodné písmo Unicode, pokrývá &#353;iroký výb&#283;r znak&#367;.</td></tr><tr><td>
1650 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">
1651 SIL unicode fonts</a>
1652- </td><td>Výborné písmo Unicode z " Summer Institute of Linguistics".</td></tr><tr><td>
1653+ </td><td>Excellent Unicode fonts from the Summer Institute of Linguistics.</td></tr><tr><td>
1654 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">
1655 FreeFont</a>
1656- </td><td>Nové svobodné Unicode písmo.</td></tr><tr><td>
1657+ </td><td>A new free Unicode font initiative.</td></tr><tr><td>
1658 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">
1659 Crosswire's font directory</a>
1660 </td><td>R&#367;zná písma p&#345;ístupná z ftp Crosswire Bible Society.</td></tr><tr><td>
1661@@ -62,12 +62,12 @@
1662 <span class="application">BibleTime</span>. These features are documented right in the dialog. You also
1663 have the possibility to specify standard works that should be used when no
1664 specific work is specified in a reference. An example: The standard Bible is
1665-used to display the content of crossreferences in the Bible. When you hover
1666+used to display the content of cross references in the Bible. When you hover
1667 over then, the Mag will show the content of the verses referred to,
1668 according to the standard Bible you specified.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-hotkeys"></a>
1669 <span class="guimenu">HotKeys</span>
1670 </h3></div></div></div><p>Horké klávesy jsou speciální klávesové p&#345;íkazy, které m&#367;&#382;ete pou&#382;ít namísto
1671 polo&#382;ek v menu, nebo ikon. Mnoho p&#345;íkaz&#367; v <span class="application">BibleTime</span> má definovány horké
1672-klávesy (kompletní seznam naleznete v <a class="link" href="hdbk-reference-hotkeys.html" title="Seznam klávesových zkratek">této sekci</a>). V&#283;t&#353;in&#283; p&#345;íkaz&#367;
1673+klávesy (kompletní seznam naleznete v <a class="link" href="hdbk-reference-hotkeys.html" title="Seznam horkých kláves">této sekci</a>). V&#283;t&#353;in&#283; p&#345;íkaz&#367;
1674 <span class="application">BibleTime</span> zde m&#367;&#382;e p&#345;i&#345;adit horké klávesy. To je velmi u&#382;ite&#269;né pro rychlý
1675 p&#345;ístup k funkcím, které nejvíce pot&#345;ebujete.</p></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-op-output.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Export a tisk </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 5. Odkazy</td></tr></table></div></body></html>
1676
1677=== modified file 'docs/handbook/cs/html/hdbk-intro.html'
1678--- docs/handbook/cs/html/hdbk-intro.html 2009-04-05 07:01:43 +0000
1679+++ docs/handbook/cs/html/hdbk-intro.html 2009-04-29 17:39:29 +0000
1680@@ -1,26 +1,26 @@
1681-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 1. Úvod</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="prev" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="next" href="hdbk-term.html" title="Chapter 2. Spu&#353;t&#283;ní BibleTime"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 1. Úvod</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-term.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-intro"></a>Chapter 1. Úvod</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">O BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Dostupná díla</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivace</a></span></dt></dl></dd></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-intro-about"></a>O <span class="application">BibleTime</span></h2></div></div></div><p><span class="application">BibleTime</span> je nástroj pro studium Bible s podporou pro r&#367;zné typy text&#367; a
1682-jazyk&#367;. Práv&#283; velkému mno&#382;ství modul&#367; d&#283;l, které je snadné nainstalovat a
1683-spravovat. Je zalo&#382;en na knihovn&#283; <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a>, která poskytuje
1684-funkcionalitu pro <span class="application">BibleTime</span>, jako zobrazování biblických text&#367;,
1685-vyhledávání atd. Sword je vlajkovou lodí spole&#269;nosti <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire Bible Society</a>.</p><p><span class="application">BibleTime</span> je navr&#382;en k pou&#382;ití s díly v jednom z formát&#367; podporovaných
1686+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 1. Úvod</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="prev" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="next" href="hdbk-term.html" title="Chapter 2. Spu&#353;t&#283;ní BibleTime"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 1. Úvod</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-term.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-intro"></a>Chapter 1. Úvod</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">O BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Dostupná díla</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivace</a></span></dt></dl></dd></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-intro-about"></a>O <span class="application">BibleTime</span></h2></div></div></div><p><span class="application">BibleTime</span> is a Bible study tool with support for different types of texts
1687+and languages. Even large amounts of works modules are easy to install and
1688+manage. It is built on the <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library, which provides
1689+the back-end functionality for <span class="application">BibleTime</span>, such as viewing Bible text,
1690+searching etc. Sword is the flagship product of the <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire Bible Society</a>.</p><p><span class="application">BibleTime</span> je navr&#382;en k pou&#382;ití s díly v jednom z formát&#367; podporovaných
1691 projektem Sword. Kompletní informace o podporovaných formátech dokument&#367;
1692 naleznete ve<a class="ulink" href="http://www.crosswire.org/sword/develop/index.jsp" target="_top">
1693 vývojá&#345;ské sekci</a> na stránkách projektu Sword, Crosswire Bible
1694 Society.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-intro-works"></a>Dostupná díla</h3></div></div></div><p>P&#345;es 200 dokument&#367; v 50 jazycích jsou dostupné ze stránek <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire Bible Society</a>. To zahrnuje:
1695- </p><div class="variablelist"><dl><dt><span class="term">Bible</span></dt><dd><p>The full Bible text, with optional things like Strong's Numbers, headings
1696-and/or footnotes in the text. Bibles are available in many languages, and
1697-include not only modern versions, but also ancient texts like the Codex
1698-Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is
1699-the most advanced section in the library of the Sword project.</p></dd><dt><span class="term">Knihy</span></dt><dd><p>Dostupné knihy jsou "Imitation of Christ", "Enuma Elish", and "Josephus: The
1700-Complete Works"</p></dd><dt><span class="term">Komentá&#345;e</span></dt><dd><p>Dostupné komentá&#345;e zahrnují klasiky jako "Notes on the Bible" Johna
1701-Wesleyho, komentá&#345;e Matthewa Henryho a Luther&#367;v "Komentá&#345; ke galatským."
1702-Pomocí <span class="emphasis"><em>Osobního</em></span>komentá&#345;e m&#367;&#382;ete<a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Úpravy va&#353;ich vlastních komentá&#345;&#367;"> nahrát osobní poznámky</a> do
1703-biblických sekcí.</p></dd><dt><span class="term">Denní zamy&#353;lení</span></dt><dd><p>Mnoho lidí oce&#328;uje tyto denní porce Bo&#382;ího slova. Mezi dostupná díla pat&#345;í
1704-"Denní sv&#283;tlo na cestu" a "Losungen".</p></dd><dt><span class="term">Lexikony/slovníky</span></dt><dd><p>Dostupné lexikony zahrnují: Robinson's Morphological Analysis Codes,
1705-Brown-Driver-Briggs Hebrew Lexicon a International Standard Bible
1706-Encyclopedia. Dostupné slovníky zahrnují: Strong's Hebrew Bible Dictionary,
1707-Strong's Greek Bible Dictionary, Webster's Revised Unabridged Dictionary of
1708-the English Language 1913, Nave's Topical Bible.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-intro-motivation"></a>Motivace</h3></div></div></div><p>P&#345;ejeme si slou&#382;it Bohu a p&#345;isp&#283;t svým dílem ostatním v r&#367;stu ve vztahu s
1709-Ním. Máme chu&#357; udr&#382;et tento výkonný a kvalitní program stále jednoduchým a
1710-intuitivním. Na&#353;ím p&#345;áním je chválit Boha jako zdroj v&#353;ech dobrých v&#283;cí.</p><div class="blockquote"><table border="0" width="100%" cellspacing="0" cellpadding="0" class="blockquote" summary="Block quote"><tr><td width="10%" valign="top"> </td><td width="80%" valign="top"><p>Ka&#382;dý dobrý dar a ka&#382;dé dokonalé obdarování je sh&#367;ry, sestupuje od Otce
1711-nebeských sv&#283;tel. U n&#283;ho není prom&#283;ny ani st&#345;ídání sv&#283;tla a stínu.</p></td><td width="10%" valign="top"> </td></tr><tr><td width="10%" valign="top"> </td><td colspan="2" align="right" valign="top">--<span class="attribution">Jakub&#367;v 1:17</span></td></tr></table></div><p>God bless you as you use this program.</p></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-term.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">P&#345;íru&#269;ka BibleTime </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 2. Spu&#353;t&#283;ní BibleTime</td></tr></table></div></body></html>
1712+ </p><div class="variablelist"><dl><dt><span class="term">Bible</span></dt><dd><p>Úplný text Bible, s volitelnými v&#283;cmi jako Strongova &#269;ísla, nadpisy, nebo
1713+poznámky v textu. Bible jsou dostupné v mnoha jazycích, nejen v moderních
1714+verzích, ale také ve starov&#283;kých jako Codex Leningradensis ( Kodex
1715+Leningradský; "WLC", Hebrejsky), nebo Septuaginta ("LXX", &#344;ecky). Toto je
1716+nejmodern&#283;j&#353;í sekce knihovny projektu Sword.</p></dd><dt><span class="term">Knihy</span></dt><dd><p>Dostupné knihy jsou "Imitation of Christ", "Enuma Elish", and "Josephus: The
1717+Complete Works"</p></dd><dt><span class="term">Komentá&#345;e</span></dt><dd><p>Commentaries available include classics like John Wesley's "Notes on the
1718+Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
1719+With the <span class="emphasis"><em>Personal</em></span> commentary you can <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Úpravy va&#353;ich vlastních komentá&#345;&#367;"> record your own personal notes</a> to
1720+sections of the Bible.</p></dd><dt><span class="term">Denní zamy&#353;lení</span></dt><dd><p>Mnoho lidí oce&#328;uje tyto denní porce Bo&#382;ího slova. Mezi dostupná díla pat&#345;í
1721+"Denní sv&#283;tlo na cestu" a "Losungen".</p></dd><dt><span class="term">Lexikony/slovníky</span></dt><dd><p>Lexicons available include: Robinson's Morphological Analysis Codes,
1722+Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
1723+Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
1724+Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
1725+Dictionary of the English Language 1913, Nave's Topical Bible.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-intro-motivation"></a>Motivace</h3></div></div></div><p>P&#345;ejeme si slou&#382;it Bohu a p&#345;isp&#283;t svým dílem ostatním v r&#367;stu ve vztahu s
1726+Ním. Chceme, aby byl tento výkonný a kvalitní program stále jednoduchý a
1727+intuitivní. P&#345;ejeme si chválit Boha, nebo&#357; on je zdroj v&#353;eho dobrého.</p><div class="blockquote"><table border="0" width="100%" cellspacing="0" cellpadding="0" class="blockquote" summary="Block quote"><tr><td width="10%" valign="top"> </td><td width="80%" valign="top"><p>Ka&#382;dý dobrý dar a ka&#382;dé dokonalé obdarování je sh&#367;ry, sestupuje od Otce
1728+nebeských sv&#283;tel. U n&#283;ho není prom&#283;ny ani st&#345;ídání sv&#283;tla a stínu.</p></td><td width="10%" valign="top"> </td></tr><tr><td width="10%" valign="top"> </td><td colspan="2" align="right" valign="top">--<span class="attribution">Jakub&#367;v 1:17</span></td></tr></table></div><p>B&#367;h vám &#382;ehnej p&#345;i pou&#382;ívání tohoto programu.</p></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-term.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">P&#345;íru&#269;ka BibleTime </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 2. Spu&#353;t&#283;ní BibleTime</td></tr></table></div></body></html>
1729
1730=== modified file 'docs/handbook/cs/html/hdbk-op-bookshelfmanager.html'
1731--- docs/handbook/cs/html/hdbk-op-bookshelfmanager.html 2009-04-05 07:01:43 +0000
1732+++ docs/handbook/cs/html/hdbk-op-bookshelfmanager.html 2009-04-29 17:39:29 +0000
1733@@ -1,23 +1,24 @@
1734-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Správa knih</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="hdbk-op.html" title="Chapter 3. Operace programu"><link rel="prev" href="hdbk-op-search.html" title="Vyhledávání v dílech"><link rel="next" href="hdbk-op-output.html" title="Export a tisk"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Správa knih</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-search.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Operace programu</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-op-output.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-bookshelfmanager"></a><span class="guimenuitem">Správa knih</span></h2></div></div></div><p><span class="guimenuitem">Správa knih</span> nástroj pro správu knihovny. M&#367;&#382;ete
1735-do va&#353;í knihovny nainstalovat nová díla, aktualizovat nebo odstranit ty
1736-existující. P&#345;ístupná pod <span class="guimenu">Nastavení</span> &#8594; <span class="guimenuitem">Správa knih</span> v hlavním menu.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-path"></a>Nastavení cesty ke knihám</h3></div></div></div><p>Zde lze nastavit, kam má <span class="application">BibleTime</span> ulo&#382;it knihovnu. M&#367;&#382;ete pou&#382;ít více
1737-adresá&#345;&#367;. Výchozí je "~/.sword/".</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Pokud máte CD sword, ale nechcete v&#353;echna díla instalovat na disk, ale
1738-pou&#382;ívat je p&#345;ímo z CD, pak vlo&#382;te cestu k CD jako jednu z cest. Kdy&#382;
1739-zapnete <span class="application">BibleTime</span>, zobrazí se v&#353;echna díla, pokud je CD vlo&#382;eno v
1740-mechanice.</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-installupdate"></a>Instalace/aktualizace d&#283;l</h3></div></div></div><p>With this facility, you can connect to a repository of works (called
1741-"library"), and transfer one or more works to your local Bookshelf. These
1742-libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online
1743-repository of Sword modules, or another site offering Sword modules). You
1744-can manage your libraries with <span class="guibutton">Add library</span> and
1745-<span class="guibutton">Delete library</span>.</p><p>To begin the installation or update process, select a library you want to
1746-connect to and a local Bookshelf path to install the work(s) to. Then click
1747-on <span class="guibutton">Connect to library</span>. <span class="application">BibleTime</span> will scan the
1748-contents of the library and present you with a list of works that you can
1749-add to your Bookshelf, or that you already have installed but are available
1750-in a new version in the library, and thus can be updated. Then you can mark
1751-all works that you want to install or update, and click on
1752-<span class="guibutton">Install works</span>. They will then be transferred to your
1753-Bookshelf.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-remove"></a>Odebrání d&#283;l</h3></div></div></div><p>Tato mo&#382;nost dovoluje smazat jedno nebo více d&#283;l z va&#353;í knihovny, co&#382; uvolní
1754+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Správa knih</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="hdbk-op.html" title="Chapter 3. Operace programu"><link rel="prev" href="hdbk-op-search.html" title="Vyhledávání v dílech"><link rel="next" href="hdbk-op-output.html" title="Export a tisk"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Správa knih</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-search.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Operace programu</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-op-output.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-bookshelfmanager"></a><span class="guimenuitem">Správa knih</span></h2></div></div></div><p>The <span class="guimenuitem">Bookshelf Manager</span> is a tool to manage your
1755+Bookshelf. You can install new works to your Bookshelf, and update or remove
1756+existing works from your Bookshelf. Access it by clicking <span class="guimenu">Settings</span> &#8594; <span class="guimenuitem">Bookshelf Manager</span> in the main menu.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-path"></a>Nastavení cesty ke knihám</h3></div></div></div><p>Here you can specify where <span class="application">BibleTime</span> may store your Bookshelf on the hard
1757+drive. You can even store it in multiple directories. Default is
1758+"~/.sword/".</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If you have a sword CD, but do not want to install all the works on the hard
1759+disk, but use them directly from the CD, then you can add the path to the CD
1760+as one of your bookshelf paths. When you start <span class="application">BibleTime</span>, it will show all
1761+works on the CD if it is present.</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-installupdate"></a>Instalace/aktualizace d&#283;l</h3></div></div></div><p>Tímto nástrojem se m&#367;&#382;ete p&#345;ipojit k repositá&#345;i d&#283;l (je zvaný "knihovna",
1762+"library") a nahrát jedno nebo více d&#283;l do své lokální knihovny. Tyto
1763+knihovny mohou být lokální (nap&#345;. Sword CD) nebo vzdálené (nap&#345;. Crosswire's
1764+online repository of Sword modules nebo jiné stránky nabízející moduly
1765+Sword). Své knihovny m&#367;&#382;ete spravovat pomocí <span class="guibutton">P&#345;idat
1766+knihovnu</span> a <span class="guibutton">Smazat knihovnu</span>.</p><p>Pro zahájení procesu instalace nebo aktualizace vyberte knihovnu ke které se
1767+chcete p&#345;ipojit a umíst&#283;ní lokální knihovny pro instalaci d&#283;l. Potom
1768+klikn&#283;te na tla&#269;ítko <span class="guibutton">Spojit s knihovnou</span>. <span class="application">BibleTime</span>
1769+prov&#283;&#345;í obsah knihovny a p&#345;edlo&#382;í vám seznam d&#283;l, které m&#367;&#382;ete do své
1770+knihovny p&#345;idat, nebo d&#283;l, které jsou ji&#382; nainstalované, ale jsou dostupné v
1771+nov&#283;j&#353;í verzi, a tak mohou být aktualizovány. Poté m&#367;&#382;ete ozna&#269;it v&#353;echna
1772+díla, která chcete nainstalovat nebo aktualizovat a kliknout na
1773+<span class="guibutton">Instalovat díla</span>. Ty budou poté nahrány do va&#353;í
1774+knihovny.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-remove"></a>Odebrání d&#283;l</h3></div></div></div><p>Tato mo&#382;nost dovoluje smazat jedno nebo více d&#283;l z va&#353;í knihovny, co&#382; uvolní
1775 místo na disku. Jednodu&#353;e ozna&#269;te polo&#382;ky a klikn&#283;te na <span class="guibutton">Odstranit
1776 díla</span>.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-searchindexes"></a>Vyhledávací indexy</h3></div></div></div><p>Tyto mo&#382;nosti vám umo&#382;ní vytvá&#345;et nové vyhledávací indexy a vymazat opu&#353;t&#283;né
1777 indexy smazaných d&#283;l.</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3>
1778
1779=== modified file 'docs/handbook/cs/html/hdbk-op-output.html'
1780--- docs/handbook/cs/html/hdbk-op-output.html 2009-04-05 07:01:43 +0000
1781+++ docs/handbook/cs/html/hdbk-op-output.html 2009-04-24 02:10:38 +0000
1782@@ -1,12 +1,12 @@
1783-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Export a tisk</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="hdbk-op.html" title="Chapter 3. Operace programu"><link rel="prev" href="hdbk-op-bookshelfmanager.html" title="Správa knih"><link rel="next" href="hdbk-config.html" title="Chapter 4. Nastavení BibleTime"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Export a tisk</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-bookshelfmanager.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Operace programu</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-config.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-output"></a>Export a tisk</h2></div></div></div><p>In many places, you can open a context menu by clicking with the
1784-<span class="mousebutton">right</span>mouse button. Depending on context, it will
1785-allow you to <span class="guimenuitem">Select</span>,
1786-<span class="guimenuitem">Copy</span> (to clipboard),
1787-<span class="guimenuitem">Save</span> or <span class="guimenuitem">Print</span>
1788-text. This works for example in the read windows, when you click on the
1789-normal text or the verse reference, or in the search result page when you
1790-click on a work or one or more verse references. It is pretty
1791-straightforward, so just try it out.</p><p>Tisk z <span class="application">BibleTime</span> spí&#353;e základní a je zamý&#353;len jako pom&#367;cka. Pokud
1792+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Export a tisk</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="hdbk-op.html" title="Chapter 3. Operace programu"><link rel="prev" href="hdbk-op-bookshelfmanager.html" title="Správa knih"><link rel="next" href="hdbk-config.html" title="Chapter 4. Nastavení BibleTime"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Export a tisk</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-bookshelfmanager.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Operace programu</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-config.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-output"></a>Export a tisk</h2></div></div></div><p>Na mnoha místech m&#367;&#382;ete vyvolat kontextové menu kliknutím
1793+<span class="mousebutton">pravým</span> tla&#269;ítkem my&#353;i. V závislosti na kontextu
1794+je mo&#382;né <span class="guimenuitem">Vybrat</span>,
1795+<span class="guimenuitem">Kopírovat</span> (do schránky),
1796+<span class="guimenuitem">Ulo&#382;it</span> nebo
1797+<span class="guimenuitem">Tisknout</span>. to funguje nap&#345;. v aktivním okn&#283; kdy&#382;
1798+kliknete na b&#283;&#382;ný text nebo na odkaz ver&#353;e, nebo na stránce výsledk&#367; hledání
1799+p&#345;i kliknutí na dílo nebo na jeden &#269;i více odkaz&#367; ver&#353;&#367;. Je to krásn&#283;
1800+p&#345;ímo&#269;aré, prost&#283; to vyzkou&#353;ejte.</p><p>Tisk z <span class="application">BibleTime</span> spí&#353;e základní a je zamý&#353;len jako pom&#367;cka. Pokud
1801 vytvá&#345;íte dokument nebo prezentaci obsahující text d&#283;l z <span class="application">BibleTime</span>,
1802 doporu&#269;ujeme formátovat dokument za pou&#382;ití systémových nástroj&#367; pro tvorbu
1803 prezentací, nebo editaci textu, rad&#283;ji ne&#382; tisknout p&#345;ímo z <span class="application">BibleTime</span>.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-op-bookshelfmanager.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-op.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-config.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Správa knih </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 4. Nastavení BibleTime </td></tr></table></div></body></html>
1804
1805=== modified file 'docs/handbook/cs/html/hdbk-op-parts.html'
1806--- docs/handbook/cs/html/hdbk-op-parts.html 2009-04-05 07:01:43 +0000
1807+++ docs/handbook/cs/html/hdbk-op-parts.html 2009-04-29 17:39:29 +0000
1808@@ -4,7 +4,7 @@
1809 my&#353;i</span> na po&#382;adovanou kategorii (Bible, Komentá&#345;e, Lexikony,
1810 Knihy, Zamy&#353;lení nebo Glosá&#345;e) pro zobrazení jejího obsahu. Poté klikn&#283;te na
1811 jedno z d&#283;l k jeho otev&#345;ení pro &#269;tení. Okno pro &#269;tení díla se objeví na
1812-plo&#353;e.</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Chy&#357; &amp; pust dílo tady</p></div><p>Pokud &#269;tete n&#283;jaké dílo a chcete otev&#345;ít jiné dílo ve stejné pasá&#382;i, m&#367;&#382;ete
1813+plo&#353;e.</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Chy&#357; &amp; pust dílo</p></div><p>Pokud &#269;tete n&#283;jaké dílo a chcete otev&#345;ít jiné dílo ve stejné pasá&#382;i, m&#367;&#382;ete
1814 pou&#382;ít zkratku. jednodu&#353;e klikn&#283;te <span class="mousebutton">levým tla&#269;ítkem
1815 my&#353;i</span> na odkaz ver&#353;e nebo kapitoly (kurzor se zm&#283;ní v ruku) a
1816 p&#345;etáhn&#283;te ho do knihovny. Upus&#357;te ho na dílo, které chcete otev&#345;ít ,a to
1817@@ -23,7 +23,7 @@
1818 vyhledávacího dialogu. Budete vyhledávat ve v&#353;ech t&#283;chto
1819 dokumentech. Kompletní popis obsluhy vyhledávacích funkcí naleznete <a class="link" href="hdbk-op-search.html" title="Vyhledávání v dílech">zde</a>.</p></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-parts-bookshelf-bookmarks"></a>Práce se zálo&#382;kami</h4></div></div></div><p>
1820
1821- </p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Chy&#357; &amp; pust dílo tady</p></div><p>
1822+ </p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Chy&#357; &amp; pust dílo</p></div><p>
1823
1824 Klikn&#283;te <span class="mousebutton">pravým tla&#269;ítkem my&#353;i</span> na kategorii
1825 zálo&#382;ek v knihovn&#283; a vyberte <span class="guimenuitem">"Vytvo&#345;it novou
1826@@ -39,28 +39,27 @@
1827 kurzor umíst&#283;n nad n&#283;jakým textem s dal&#353;ími informacemi (e.g., Strong's
1828 numbers), potom budou tyto informace zobrazeny v okn&#283; &#269;asopisu, ne v textu
1829 samotném. Prost&#283; to vyzkou&#353;ejte.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-parts-desk"></a>Plocha</h3></div></div></div><p>The Desk is where the real work with <span class="application">BibleTime</span> takes place. Here you can
1830-open works from the Bookshelf, read them, <a class="link" href="hdbk-op-search.html" title="Vyhledávání v dílech">search</a>in them, and even save your
1831+open works from the Bookshelf, read them, <a class="link" href="hdbk-op-search.html" title="Vyhledávání v dílech">search</a> in them, and even save your
1832 annotations in the personal commentary module (see <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Úpravy va&#353;ich vlastních komentá&#345;&#367;">below</a>).</p><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-parts-desk-read"></a>&#268;tení d&#283;l</h4></div></div></div><p>Jak <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-bookshelf-open" title="&#268;tení d&#283;l">u&#382; jsme vid&#283;li</a>,
1833 m&#367;&#382;ete jednodu&#353;e otevírat díla pro &#269;tení kliknutím na jejich symbol v
1834 knihovn&#283;. Okno díla se otev&#345;e na plo&#353;e. Ka&#382;dé okno díla má nástrojovou
1835 li&#353;tu. Zde najdete nástroje k navigaci propojené s dílem, nap&#345;íklad tla&#269;ítka
1836-historie jako ve va&#353;em webovém prohlí&#382;e&#269;i.</p></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-parts-desk-placement"></a>Umíst&#283;ní aktivního okna</h4></div></div></div><p>Of course, you can open multiple works at the same time. There are several
1837-possibilities for arranging the read windows on the desk. Please have a look
1838-at the entry <span class="guimenu">Window</span>in the main menu. There you can see
1839-that you can either control the placement of the read windows completely
1840-yourself, or have <span class="application">BibleTime</span> handle the placement automatically. To achieve
1841-this, you have to select one of the automatic placement modes available at
1842-<span class="guimenu">Window</span> &#8594; <span class="guimenuitem">Arrangement
1843-mode</span>. Just try it out, it's simple and works.</p></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-parts-desk-write"></a>Úpravy va&#353;ich vlastních komentá&#345;&#367;</h4></div></div></div><p>To be able to store your own comments about parts of the Bible, you have
1844-install a certain work from the library of the <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire Bible Society</a>. This work is
1845-called "Personal commentary".</p><p>If you open the personal commentary by clicking on its symbol in the
1846-Bookshelf with a <span class="mousebutton">left</span>mouse button, it opens in
1847-read mode. You will not be able to edit it in this mode. Should you wish to
1848-write annotations into the personal commentary, you have to open it with the
1849-<span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit
1850-this work</span>and then either <span class="guimenuitem">Plain
1851-text</span>(source code editor) or
1852-<span class="guimenuitem">HTML</span>(basic gui wysiwyg editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If <span class="guimenu">Edit this work</span>is
1853+historie jako ve va&#353;em webovém prohlí&#382;e&#269;i.</p></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-parts-desk-placement"></a>Umíst&#283;ní aktivního okna</h4></div></div></div><p>Samoz&#345;ejm&#283; m&#367;&#382;ete mít otev&#345;eno více d&#283;l ve stejné dob&#283;. Máte n&#283;kolik
1854+mo&#382;ností jak umístit okna na plo&#353;e. Prosím podívejte se na polo&#382;ku
1855+<span class="guimenu">Okno</span> v hlavním menu. Tam uvid&#283;íte, &#382;e umíst&#283;ní oken
1856+m&#367;&#382;ete ovládat bu&#271; osobn&#283;, nebo zvolit automatické umíst&#283;ní <span class="application">BibleTime</span>. To
1857+m&#367;&#382;ete cílit volbou jednoho z automatických m&#367;d&#367; umíst&#283;ní, které jsou
1858+p&#345;ístupné p&#345;es <span class="guimenu">Okno</span> &#8594; <span class="guimenuitem">Mód
1859+rozvr&#382;ení</span>. Prost&#283; to vyzkou&#353;ejte, je to snadné a
1860+funguje to.</p></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-parts-desk-write"></a>Úpravy va&#353;ich vlastních komentá&#345;&#367;</h4></div></div></div><p>Aby jste mohli ukládat vlastní komentá&#345;e &#269;ástí Bible, musíte nainstalovat
1861+dílo z knihovny <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire Bible
1862+Society</a>, které se jmenuje "Personal commentary".</p><p>Pokud otev&#345;ete osobní komentá&#345; kliknutím <span class="mousebutton">levým</span>
1863+tla&#269;ítkem my&#353;i na jeho symbol v knihovn&#283;, otev&#345;e se pro &#269;tení. V tomto módu
1864+není mo&#382;né komentá&#345; editovat. Pokud si p&#345;ejete do n&#283;j zapsat poznámku,
1865+musíte ho otev&#345;ít pomocí <span class="mousebutton">pravého</span> tla&#269;ítka my&#353;i a
1866+zvolit <span class="guimenu">Editovat toto dílo</span> a potom také
1867+<span class="guimenuitem">Prostý text</span> (editor zdrojového kódu) nebo
1868+<span class="guimenuitem">HTML</span>(jednoduchý gui wysiwyg editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If <span class="guimenu">Edit this work</span> is
1869 deactivated, please check if you have write permission for the files of the
1870-personal commentary.</p></div><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Drag &amp; drop works here. Drop a verse reference and the text of the verse
1871-will be inserted.</p></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-op.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-op.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-op-search.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 3. Operace programu </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Vyhledávání v dílech</td></tr></table></div></body></html>
1872+personal commentary.</p></div><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>P&#345;etáhn&#283;te &amp; upus&#357;te díla zde. Pus&#357;te odkaz ver&#353;e a bude vlo&#382;en jeho
1873+text.</p></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-op.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-op.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-op-search.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 3. Operace programu </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Vyhledávání v dílech</td></tr></table></div></body></html>
1874
1875=== modified file 'docs/handbook/cs/html/hdbk-op-search.html'
1876--- docs/handbook/cs/html/hdbk-op-search.html 2009-04-05 07:01:43 +0000
1877+++ docs/handbook/cs/html/hdbk-op-search.html 2009-04-29 17:39:29 +0000
1878@@ -1,37 +1,37 @@
1879-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Vyhledávání v dílech</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="hdbk-op.html" title="Chapter 3. Operace programu"><link rel="prev" href="hdbk-op-parts.html" title="&#268;ásti okna aplikace BibleTime"><link rel="next" href="hdbk-op-bookshelfmanager.html" title="Správa knih"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Vyhledávání v dílech</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-parts.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Operace programu</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-op-bookshelfmanager.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-search"></a>Vyhledávání v dílech</h2></div></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-intext"></a>Searching text in an open read window</h3></div></div></div><p>You can look for a word or phrase in the open read window (e.g. the chapter
1880-of a bible that you're reading) just like you are used to from other
1881-programs. This function can be reached either by clicking with the
1882-<span class="mousebutton">right</span>mouse button and selecting
1883-<span class="guimenuitem">Find...</span>, or by using the hotkey <span class="keycap"><strong>F</strong></span>. Read on to learn how
1884-you can search in entire works.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-access"></a>P&#345;ístup k dialogu vyhledávání</h3></div></div></div><p>You can search in a work by clicking with the
1885-<span class="mousebutton">right</span>mouse button on its symbol in the
1886-<span class="guimenu">Bookshelf</span>and selecting <span class="guimenuitem">Search in
1887-work(s)</span>. By holding Shift or Ctrl and clicking on other
1888-work's names you can select more than one. Then follow the same procedure to
1889-open the search dialog. You will be searching in all of these works at the
1890-same time.</p><p>You can also access the search dialog by clicking on <span class="guimenu">Search</span> from the main menu, and selecting
1891-the appropriate entry.</p><p>A third possibility to start searches is to click on the search symbol in an
1892-open read window.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-config"></a>Nastavení vyhledávání</h3></div></div></div><div class="screenshot"><div class="mediaobject"><img src="ss_searchopts.png"></div></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-search-config-works"></a>Výb&#283;r d&#283;l</h4></div></div></div><p>At the top of the options tab you will find
1893-<span class="guibutton">Choose</span>(works). If you would like to search in
1894-multiple works, click on this button and you will be offered a menu where
1895-you can select the works you want to search in.</p></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hd-op-search-config-scope"></a>Using Search Scopes</h4></div></div></div><p>You can narrow the scope of your search to certain parts of the Bible by
1896-selecting one of the predefined scopes from the list in <span class="guimenu">Search
1897-scope</span>. You can define your own search ranges by clicking the
1898-<span class="guibutton">Setup ranges</span>button.</p></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hd-op-search-config-syntax"></a>Basic Search Syntax Introduction</h4></div></div></div><p>Enter search terms separated by spaces. By default the search function will
1899-return results that match any of the search terms (OR). To search for all
1900-the terms separate the terms by AND.</p><p>You can use wildcards: '*' matches any sequence of characters, while '?'
1901-matches any single character. The use of brackets allows you to group your
1902-search terms, e.g. '(Jesus OR spirit) AND God'.</p><p>To search text other than the main text, enter the text type followed by
1903-':', and then the search term. For example, to search for the Strong's
1904-number H8077, use 'strong:H8077'.</p><p>Dostupné typy text&#367;:
1905- </p><div class="table"><a name="hd-op-search-config-syntax-table"></a><p class="title"><b>Table 3.1. </b></p><div class="table-contents"><table border="1"><colgroup><col><col></colgroup><thead><tr><th>Prefix</th><th>Meaning</th></tr></thead><tbody><tr><td>nadpis:</td><td>hledá nadpisy</td></tr><tr><td>poznámka:</td><td>hledá poznámky</td></tr><tr><td>strong:</td><td>searches Strong's Numbers</td></tr><tr><td>morph:</td><td>hledá morfologické kódy</td></tr></tbody></table></div></div><p><br class="table-break"></p><p>BibleTime pou&#382;ívá pro hledání vyhledávací engine Lucene, který má mnoho
1906+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Vyhledávání v dílech</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="hdbk-op.html" title="Chapter 3. Operace programu"><link rel="prev" href="hdbk-op-parts.html" title="&#268;ásti okna aplikace BibleTime"><link rel="next" href="hdbk-op-bookshelfmanager.html" title="Správa knih"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Vyhledávání v dílech</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-parts.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Operace programu</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-op-bookshelfmanager.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-search"></a>Vyhledávání v dílech</h2></div></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-intext"></a>Vyhledávání textu v aktivním okn&#283;</h3></div></div></div><p>Kdy&#382; chcete hledat slovo nebo frázi v otev&#345;eném aktivním okn&#283;
1907+(nap&#345;. kapitolu bible, kterou &#269;tete), je to stejné jako v jiných
1908+programech. tuto funkci m&#367;&#382;ete vyvolat kliknutím
1909+<span class="mousebutton">pravým</span> tla&#269;ítkem my&#353;i a vyráním
1910+<span class="guimenuitem">Najít...</span>, nebo pou&#382;itím horké klávesy <span class="keycap"><strong>F</strong></span>. P&#345;e&#269;t&#283;te si jak hledat
1911+v celých dílech.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-access"></a>P&#345;ístup k dialogu vyhledávání</h3></div></div></div><p>V díle m&#367;&#382;ete hledat kliknutím <span class="mousebutton">pravým</span> tla&#269;ítkem
1912+my&#353;i na symbol v <span class="guimenu">knihovn&#283;</span> a vybráním <span class="guimenuitem">Hledat
1913+ve vybraných dílech</span>. P&#345;idr&#382;ením Shift nebo Ctrl a
1914+kliknutím na jména dal&#353;ích d&#283;l m&#367;&#382;ete vybrat více ne&#382; jedno dílo. Poté
1915+následuje stejný postup otev&#345;ení dialogu hledání. Budete hledat ve v&#353;ech
1916+t&#283;chto dílech najednou.</p><p>Vyhledávací dialog spustíte kliknutím na <span class="guimenu">Hledat</span> z hlavního menu a vybráním
1917+odpovídající polo&#382;ky.</p><p>T&#345;etí mo&#382;nost jak spustit vyhledávání je kliknutím na symbol hledání v
1918+aktuálním okn&#283;.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-config"></a>Nastavení vyhledávání</h3></div></div></div><div class="screenshot"><div class="mediaobject"><img src="ss_searchopts.png"></div></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-search-config-works"></a>Výb&#283;r d&#283;l</h4></div></div></div><p>Naho&#345;e v okn&#283; nastavení vyhledávání najdete tla&#269;ítko <span class="guibutton">Vybrat (nebo
1919+Choose)</span> (díla). Pokud chcete vyhledávat ve více dílech, klikn&#283;te
1920+na toto tla&#269;ítko, poté vám bude nabídnuto menu s mo&#382;ností výb&#283;ru d&#283;l ve
1921+kterých chcete vyhledávat.</p></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hd-op-search-config-scope"></a>Pou&#382;ití oblastí vyhledávání</h4></div></div></div><p>M&#367;&#382;ete pou&#382;ít rozsah hledání zvolením ur&#269;itých &#269;ástí Bible pomocí jedné z
1922+definovaných oblastí v seznamv <span class="guimenu">Rozsah hledání</span> M&#367;&#382;ete
1923+definovat vlastní vyhledávací rozsahy kliknutím na tla&#269;ítko
1924+<span class="guibutton">Nastavit rozsah</span>.&gt;</p></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hd-op-search-config-syntax"></a>Úvod do jednoduché vyhledávací syntaxe</h4></div></div></div><p>Vlo&#382;te výrazy a odd&#283;lte je mezerami. P&#345;i výchozím nastavení, vyhledávání
1925+vrátí výsledky, které odpovídají libovolnému z vyhledávaných výraz&#367; (logická
1926+spojka NEBO). pro vyhledání v&#353;ech výraz&#367; odd&#283;lte jednotlivá slova spojkou
1927+AND.</p><p>M&#367;&#382;ete vyu&#382;ít znaky: '*' odpovídající libovolné posloupnosti znak&#367;, '?'
1928+zastupující libovolný jeden znak. Pou&#382;ití závorek vám dovoluje seskupovat
1929+hledané výrazy, nap&#345;. '(Je&#382;í&#353; OR duch) AND B&#367;h' --výsledky hledání budou
1930+obsahovat nejmén&#283; jedno ze slov v závorce, Je&#382;í&#353; nebo duch, a slovo B&#367;h.</p><p>Pro vyhledávání jiného ne&#382; hlavního textu vlo&#382;te ur&#269;itou p&#345;edponu
1931+následovanou'dvojte&#269;kou ':' a hledaným výrazem. Nap&#345;íklad pro vyhledávání
1932+Strongova &#269;ísla H8077 pou&#382;ijte 'strong:H8077'</p><p>Dostupné p&#345;edpony:
1933+ </p><div class="table"><a name="hd-op-search-config-syntax-table"></a><p class="title"><b>Table 3.1. Search Types</b></p><div class="table-contents"><table summary="Search Types" border="1"><colgroup><col><col></colgroup><thead><tr><th>P&#345;edpona</th><th>Význam</th></tr></thead><tbody><tr><td>heading:</td><td>hledá nadpisy</td></tr><tr><td>footnote:</td><td>hledá poznámky</td></tr><tr><td>strong:</td><td>hledání Strongových &#269;ísel</td></tr><tr><td>morph:</td><td>hledá morfologické kódy</td></tr></tbody></table></div></div><p><br class="table-break"></p><p>BibleTime pou&#382;ívá pro hledání vyhledávací engine Lucene, který má mnoho
1934 pokro&#269;ilých vlastností. Více si o n&#283;m m&#367;&#382;ete p&#345;e&#269;íst zde: <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top">
1935-http://lucene.apache.org/java/docs/index.html</a></p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-results"></a>Výsledky vyhledávání</h3></div></div></div><p>Here you can see how many instances of the search string were found, sorted
1936-by works. Clicking on a work with the <span class="mousebutton">right</span>mouse
1937-button allows you to copy, save, or print all verses that were found in a
1938-certain work at once. This also works when you click on one or more of the
1939-references to copy, save or print them. Clicking on a particular reference
1940-opens that verse up in context in the preview window below.</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>P&#345;etáhn&#283;te odkaz a upus&#357;te ho na symbol díla v knihovn&#283; k otev&#345;ení díla na
1941+http://lucene.apache.org/java/docs/index.html</a></p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-results"></a>Výsledky hledání</h3></div></div></div><p>Zde vidíte kolik p&#345;ípad&#367; hledaného &#345;et&#283;zce bylo nalezeno, set&#345;íd&#283;no podle
1942+d&#283;l. Kliknutí na dílo <span class="mousebutton">pravým</span> tla&#269;ítkem my&#353;i vám
1943+umo&#382;ní kopírovat, ulo&#382;it, nebo tisknout v&#353;echny ver&#353;e které byli v daném
1944+díle nalezeny. To p&#345;i kliknutí na jeden nebo více odkaz&#367;. Kliknutí na ur&#269;itý
1945+odkaz otev&#345;e ver&#353; v jeho kontextu v okn&#283; náhledu.</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>P&#345;etáhn&#283;te odkaz a upus&#357;te ho na symbol díla v knihovn&#283; k otev&#345;ení díla na
1946 tomto ver&#353;i v novém okn&#283;.</p></div><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>P&#345;etáhn&#283;te odkaz a upus&#357;te ho na otev&#345;ené okno, které se p&#345;esune na
1947 po&#382;adovanou pozici.</p></div><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>K vytvo&#345;ení zálo&#382;ek vyberte odkazy a p&#345;etáhn&#283;te je do knihovny.</p></div><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-search-analysis"></a>Analýza výsledk&#367; hledání</h4></div></div></div><p>Klikn&#283;te na <span class="guibutton">Analýza vahledávání</span> pro zobrazení analýzy
1948 vyhledávání. Zobrazí jednoduchou grafickou analýzu mno&#382;ství nalezených
1949
1950=== modified file 'docs/handbook/cs/html/hdbk-op.html'
1951--- docs/handbook/cs/html/hdbk-op.html 2009-04-05 07:01:43 +0000
1952+++ docs/handbook/cs/html/hdbk-op.html 2009-04-24 02:10:38 +0000
1953@@ -1,8 +1,8 @@
1954-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 3. Operace programu</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="prev" href="hdbk-startsequence.html" title="Spou&#353;t&#283;cí sekvence."><link rel="next" href="hdbk-op-parts.html" title="&#268;ásti okna aplikace BibleTime"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 3. Operace programu</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-startsequence.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-op-parts.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-op"></a>Chapter 3. Operace programu</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-op.html#hdbk-op-overview">Náhled programu</a></span></dt><dt><span class="sect1"><a href="hdbk-op-parts.html">&#268;ásti okna aplikace BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-bookshelf">Knihovna</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-mag">&#268;asopis</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-desk">Plocha</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-search.html">Vyhledávání v dílech</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-intext">Searching text in an open read window</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-access">P&#345;ístup k dialogu vyhledávání</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-config">Nastavení vyhledávání</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-results">Výsledky vyhledávání</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-bookshelfmanager.html">Správa knih</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-path">Nastavení cesty ke knihám</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-installupdate">Instalace/aktualizace d&#283;l</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-remove">Odebrání d&#283;l</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-searchindexes">Vyhledávací indexy</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-output.html">Export a tisk</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-overview"></a>Náhled programu</h2></div></div></div><p>Takto vypadá typická relace <span class="application">BibleTime</span>:
1955+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 3. Operace programu</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="prev" href="hdbk-startsequence.html" title="Spou&#353;t&#283;cí sekvence."><link rel="next" href="hdbk-op-parts.html" title="&#268;ásti okna aplikace BibleTime"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 3. Operace programu</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-startsequence.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-op-parts.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-op"></a>Chapter 3. Operace programu</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-op.html#hdbk-op-overview">Náhled programu</a></span></dt><dt><span class="sect1"><a href="hdbk-op-parts.html">&#268;ásti okna aplikace BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-bookshelf">Knihovna</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-mag">&#268;asopis</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-desk">Plocha</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-search.html">Vyhledávání v dílech</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-intext">Vyhledávání textu v aktivním okn&#283;</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-access">P&#345;ístup k dialogu vyhledávání</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-config">Nastavení vyhledávání</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-results">Výsledky hledání</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-bookshelfmanager.html">Správa knih</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-path">Nastavení cesty ke knihám</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-installupdate">Instalace/aktualizace d&#283;l</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-remove">Odebrání d&#283;l</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-searchindexes">Vyhledávací indexy</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-output.html">Export a tisk</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-overview"></a>Náhled programu</h2></div></div></div><p>Takto vypadá typická relace <span class="application">BibleTime</span>:
1956 </p><div class="mediaobject"><img src="ss_mainterms.png" alt="Okno aplikace BibleTime"></div><p>
1957 M&#367;&#382;ete si jednodu&#353;e prohlédnout r&#367;zné &#269;ásti aplikace. Knihovna na levé
1958-stran&#283; se pou&#382;ívá pro otevírání d&#283;l a správu va&#353;ich zálo&#382;ek. Malé "Mag" okno
1959-pod knihovnou se pou&#382;ívá pro zobrazení dal&#353;ích informací vlo&#382;ených do
1960-dokument&#367;. Kdy&#382; p&#345;emístíte my&#353; nap&#345;íklad nad zna&#269;ku poznámky, "Mag" zobrazí
1961-aktuální obsah poznámky. Panel nástroj&#367; vám umo&#382;&#328;uje rychlý p&#345;ístup k
1962-d&#367;le&#382;itým funkcím, na plo&#353;e vpravo skute&#269;n&#283; pracujete.</p><p>Nyní se podívejme na vzhled r&#367;zných &#269;ástí aplikace individuáln&#283;.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-startsequence.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-op-parts.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Spou&#353;t&#283;cí sekvence. </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> &#268;ásti okna aplikace BibleTime</td></tr></table></div></body></html>
1963+stran&#283; se pou&#382;ívá pro otevírání d&#283;l a správu va&#353;ich zálo&#382;ek. Malé okno
1964+&#269;aopisu pod knihovnou se pou&#382;ívá pro zobrazení dal&#353;ích informací vlo&#382;ených
1965+do dokument&#367;. Kdy&#382; p&#345;emístíte my&#353; nap&#345;íklad nad zna&#269;ku poznámky, &#269;asopis
1966+zobrazí aktuální obsah poznámky. Panel nástroj&#367; vám umo&#382;&#328;uje rychlý p&#345;ístup
1967+k d&#367;le&#382;itým funkcím, na plo&#353;e vpravo skute&#269;n&#283; pracujete.</p><p>Nyní se podívejme na vzhled r&#367;zných &#269;ástí aplikace individuáln&#283;.</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-startsequence.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-op-parts.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Spou&#353;t&#283;cí sekvence. </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> &#268;ásti okna aplikace BibleTime</td></tr></table></div></body></html>
1968
1969=== modified file 'docs/handbook/cs/html/hdbk-reference-hotkeys.html'
1970--- docs/handbook/cs/html/hdbk-reference-hotkeys.html 2009-04-05 07:01:43 +0000
1971+++ docs/handbook/cs/html/hdbk-reference-hotkeys.html 2009-04-29 17:39:29 +0000
1972@@ -1,7 +1,7 @@
1973-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Seznam klávesových zkratek</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Odkazy"><link rel="prev" href="hdbk-reference-toolbar.html" title="Odkazy Nástrojové li&#353;ty"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Seznam klávesových zkratek</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference-toolbar.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Odkazy</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-hotkeys"></a>Seznam klávesových zkratek</h2></div></div></div><p>This is index of all hotkeys and their corresponding description in the
1974+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Seznam horkých kláves</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Odkazy"><link rel="prev" href="hdbk-reference.html" title="Chapter 5. Odkazy"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Seznam horkých kláves</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Odkazy</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-hotkeys"></a>Seznam horkých kláves</h2></div></div></div><p>This is index of all hotkeys and their corresponding description in the
1975 handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
1976 directly find out which hotkey a certain menu item has, you can either look
1977-at the entry itelf in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
1978+at the entry itself in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
1979 can look it up in <a class="link" href="hdbk-reference.html#hdbk-reference-menus" title="Odkazy Hlavního menu">this section</a>.</p><div class="informaltable"><table border="1"><colgroup><col><col></colgroup><thead><tr><th>Klávesová zkratka</th><th>Popis</th></tr></thead><tbody><tr><td>
1980 <span class="keycap"><strong>Left</strong></span>
1981 </td><td>Posune zp&#283;t v historii aktivního okna.</td></tr><tr><td>
1982@@ -47,7 +47,7 @@
1983 <span class="keycap"><strong>C</strong></span>
1984 </td><td>Kopírovat. Zkopíruje vybraný text do schránky.</td></tr><tr><td>
1985 <span class="keycap"><strong>F</strong></span>
1986- </td><td>Search. This lets you search within the text of a read window.</td></tr><tr><td>
1987+ </td><td>Hledat. Vyhledává v textu aktivního okna</td></tr><tr><td>
1988 <span class="keycap"><strong>O</strong></span>
1989 </td><td>
1990 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-search-openworks"> <span class="guimenu">Hledat</span> &#8594; <span class="guimenuitem">Hledat v otev&#345;ených
1991@@ -76,4 +76,4 @@
1992 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showbookshelf"> <span class="guimenu">Pohled</span> &#8594; <span class="guimenuitem">Zobrazit knihovnu</span> </a>zapne zobrazení knihovny.</td></tr><tr><td>
1993 <span class="keycap"><strong>F9</strong></span>
1994 </td><td>
1995- <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag"> <span class="guimenu">Pohled</span> &#8594; <span class="guimenuitem">Zobrazit &#269;asopis</span> </a>zapne zobrazení okna &#269;asopisu.</td></tr></tbody></table></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference-toolbar.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">Odkazy Nástrojové li&#353;ty </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
1996+ <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag"> <span class="guimenu">Pohled</span> &#8594; <span class="guimenuitem">Zobrazit &#269;asopis</span> </a>zapne zobrazení okna &#269;asopisu.</td></tr></tbody></table></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">Chapter 5. Odkazy </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
1997
1998=== modified file 'docs/handbook/cs/html/hdbk-reference-toolbar.html'
1999--- docs/handbook/cs/html/hdbk-reference-toolbar.html 2009-04-05 07:01:43 +0000
2000+++ docs/handbook/cs/html/hdbk-reference-toolbar.html 2009-04-29 17:39:29 +0000
2001@@ -1,10 +1,10 @@
2002-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Odkazy Nástrojové li&#353;ty</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Odkazy"><link rel="prev" href="hdbk-reference.html" title="Chapter 5. Odkazy"><link rel="next" href="hdbk-reference-hotkeys.html" title="Seznam klávesových zkratek"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Odkazy Nástrojové li&#353;ty</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Odkazy</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-toolbar"></a>Odkazy Nástrojové li&#353;ty</h2></div></div></div><p>Please review <a class="link" href="hdbk-reference.html#hdbk-reference-menus" title="Odkazy Hlavního menu">the preceding
2003-section</a> for an explanation of the buttons that you find on the
2004-toolbar. You can also <span class="action">move the cursor over a button and wait a few
2005-seconds</span> to activate the button's tooltip with a short description.</p><p>You can adapt the toolbar to your needs. Please use the following entry in
2006-the main menu:
2007+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Polo&#382;ky Nástrojové li&#353;ty</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Odkazy"><link rel="prev" href="hdbk-reference.html" title="Chapter 5. Odkazy"><link rel="next" href="hdbk-reference-hotkeys.html" title="Seznam horkých kláves"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Polo&#382;ky Nástrojové li&#353;ty</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Odkazy</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-toolbar"></a>Polo&#382;ky Nástrojové li&#353;ty</h2></div></div></div><p>Pokud chcete vysv&#283;tlit tla&#269;ítka nacházející se na nástrojové li&#353;t&#283;,
2008+podívejte se prosím do <a class="link" href="hdbk-reference.html#hdbk-reference-menus" title="Odkazy Hlavního menu">p&#345;edeslé
2009+sekce</a>. M&#367;&#382;ete také <span class="action">p&#345;esunout kurzor nad tla&#269;ítko a po&#269;kt
2010+n&#283;kolik sekund</span>, tím se aktivuje nástrojový tip k tla&#269;ítku s jeho
2011+krátkým popisem.</p><p>Nástrojovou li&#353;tu m&#367;&#382;ete p&#345;izp&#367;sobit svým pot&#345;ebám. Prosím pou&#382;ijte pro to
2012+následující polo&#382;ku hlavního menu:
2013 </p><div class="variablelist"><dl><dt><span class="term">
2014 <span class="guimenu">
2015 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
2016- </span></dt><dd><p>Nastavit nástrojové li&#353;ty</p></dd></dl></div><p>Please see <a class="link" href="hdbk-reference.html#hdbk-reference-menus-settings-toolbars">this
2017-section</a> for detailed instructions.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 5. Odkazy </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Seznam klávesových zkratek</td></tr></table></div></body></html>
2018+ </span></dt><dd><p>Nastavit nástrojové li&#353;ty</p></dd></dl></div><p>Pro podrobné inforace nav&#353;tivte <a class="link" href="">tuto sekci</a>.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 5. Odkazy </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Seznam horkých kláves</td></tr></table></div></body></html>
2019
2020=== modified file 'docs/handbook/cs/html/hdbk-reference.html'
2021--- docs/handbook/cs/html/hdbk-reference.html 2009-04-05 07:01:43 +0000
2022+++ docs/handbook/cs/html/hdbk-reference.html 2009-04-29 17:39:29 +0000
2023@@ -1,4 +1,4 @@
2024-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 5. Odkazy</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="prev" href="hdbk-config.html" title="Chapter 4. Nastavení BibleTime"><link rel="next" href="hdbk-reference-toolbar.html" title="Odkazy Nástrojové li&#353;ty"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 5. Odkazy</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference-toolbar.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-reference"></a>Chapter 5. Odkazy</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-reference.html#hdbk-reference-menus">Odkazy Hlavního menu</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-file">
2025+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 5. Odkazy</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="up" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="prev" href="hdbk-config.html" title="Chapter 4. Nastavení BibleTime"><link rel="next" href="hdbk-reference-hotkeys.html" title="Seznam horkých kláves"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 5. Odkazy</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-reference"></a>Chapter 5. Odkazy</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-reference.html#hdbk-reference-menus">Odkazy Hlavního menu</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-file">
2026 File
2027 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">
2028 View
2029@@ -10,11 +10,11 @@
2030 Settings
2031 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
2032 Help
2033- </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-toolbar.html">Odkazy Nástrojové li&#353;ty</a></span></dt><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">Seznam klávesových zkratek</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-menus"></a>Odkazy Hlavního menu</h2></div></div></div><p>V této sekci najdete detailní popis v&#353;ech polo&#382;ek základního menu
2034+ </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">Seznam horkých kláves</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-menus"></a>Odkazy Hlavního menu</h2></div></div></div><p>V této sekci najdete detailní popis v&#353;ech polo&#382;ek základního menu
2035 <span class="application">BibleTime</span>. Jsou rozt&#345;íd&#283;né stejn&#283;, jak se objevují v <span class="application">BibleTime</span>, v&#269;etn&#283;
2036 pod&#345;ízených polo&#382;ek zaznamenaných pod hlavní polo&#382;kou menu ke které
2037 nále&#382;í. Horké klávesy m&#367;&#382;ete vid&#283;t u ka&#382;dé polo&#382;ky; kompletní seznam v&#353;ech
2038-horkých kláves naleznete v <a class="link" href="hdbk-reference-hotkeys.html" title="Seznam klávesových zkratek">této
2039+horkých kláves naleznete v <a class="link" href="hdbk-reference-hotkeys.html" title="Seznam horkých kláves">této
2040 sekci</a>.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-file"></a>
2041 <span class="guimenu">File</span>
2042 </h3></div></div></div><p>
2043@@ -26,19 +26,22 @@
2044 zapsat neulo&#382;ené zm&#283;ny na disk.</p></dd></dl></div><p>
2045 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>
2046 <span class="guimenu">View</span>
2047- </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
2048- <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Toolbar</span>
2049+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-fullscreenmode"></a><span class="term">
2050+ <span class="guimenu">
2051+ <span class="inlinemediaobject"><img src="i_window_fullscreen.png"></span>View</span> &#8594; <span class="guimenuitem">Fullscreen mode</span> (<span class="shortcut"><strong><span class="keycap"><strong>F5</strong></span></strong></span>)
2052+ </span></dt><dd><p>
2053+ <span class="action">Toggles full screen display.</span> Toggle this setting to
2054+maximize the <span class="application">BibleTime</span> window.</p></dd><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
2055+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show toolbar</span> (<span class="shortcut"><strong><span class="keycap"><strong>F6</strong></span></strong></span>)
2056 </span></dt><dd><p>
2057 <span class="action">P&#345;epíná zobrazení nástroj&#367;.</span> Aktivujte tuto mo&#382;nost pokud si
2058 p&#345;ejete zapnout nebo vypnout Hlavní nástrojovou li&#353;tu.</p></dd><dt><a name="hdbk-reference-menus-view-showbookshelf"></a><span class="term">
2059- <span class="guimenu">
2060- <span class="inlinemediaobject"><img src="i_sidetree.png"></span>View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span> (<span class="shortcut"><strong><span class="keycap"><strong>F9</strong></span></strong></span>)
2061+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span>
2062 </span></dt><dd><p>
2063 <span class="action">Zapne zobrazení knihovny.</span> Zvolte tuto mo&#382;nost pro zapnutí,
2064 nebo vypnutí zobrazení knihovny vlevo. To m&#367;&#382;e být praktické pokud
2065 pot&#345;ebujete více &#269;asu pro &#269;asopis.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">
2066- <span class="guimenu">
2067- <span class="inlinemediaobject"><img src="i_sidetree.png"></span>View</span> &#8594; <span class="guimenuitem">Show Mag</span> (<span class="shortcut"><strong><span class="keycap"><strong>F8</strong></span></strong></span>)
2068+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Mag</span>
2069 </span></dt><dd><p>
2070 <span class="action">Zapne zobrazení &#269;asopisu.</span> Zvolte tuto mo&#382;nost pro zapnutí
2071 nebo vypnutí zobrazení &#269;asopisu na levé stran&#283;.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-search"></a>
2072@@ -80,36 +83,46 @@
2073 <span class="guimenu">
2074 <span class="inlinemediaobject"><img src="i_cascade_auto.png"></span>Window</span> &#8594; <span class="guimenuitem">Arrangement mode</span>
2075 </span></dt><dd><p>
2076- <span class="action">Controls the basic window arrangement behaviour</span>. In the
2077-opening context menu, you can either specify that you want to take care of
2078-the window arrangement yourself (Manual mode) or have <span class="application">BibleTime</span> handle it
2079-for you (Automatical modes, just try them out!).</p></dd><dt><a name="hdbk-reference-menus-window-closeall"></a><span class="term">
2080+ <span class="action">Ovládá chování jednoduchého rozvr&#382;ení oken</span>. V otev&#345;eném
2081+kontextovém menu m&#367;&#382;ete zvolit, &#382;e se chcete o rozvr&#382;ení oken starat osobn&#283;
2082+(Ru&#269;ní mód) nebo pou&#382;ít p&#345;ipravené mo&#382;nosti <span class="application">BibleTime</span> (Automatické módy,
2083+tak je vyzkou&#353;ejte!)</p></dd><dt><a name="hdbk-reference-menus-window-closeall"></a><span class="term">
2084 <span class="guimenu">
2085 <span class="inlinemediaobject"><img src="i_fileclose.png"></span>Window</span> &#8594; <span class="guimenuitem">Close all</span> (<span class="shortcut"><strong><span class="keycap"><strong>W</strong></span></strong></span>)
2086 </span></dt><dd><p>
2087 <span class="action">Zav&#345;e v&#353;echna otev&#345;ená okna</span>.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-settings"></a>
2088 <span class="guimenu">Settings</span>
2089- </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-toolbars"></a><span class="term">
2090- <span class="guimenu">
2091- <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
2092- </span></dt><dd><p>
2093- <span class="action">Opens a dialog where you can customize <span class="application">BibleTime</span>'s
2094-toolbar</span>. Just try it out, you can move around the toolbar buttons
2095-and even add new ones. Most of the entries available from the main menu can
2096-be put on the toolbar as buttons. If you need a certain feature often, you
2097-might want to put a button on the main menu, so that you can access it with
2098-only one click. Please see <a class="link" href="">this
2099-section</a> for further information.</p></dd><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
2100+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
2101 <span class="guimenu">
2102 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>
2103 </span></dt><dd><p>
2104 <span class="action">Otev&#345;e hlavní konfigura&#269;ní dialog <span class="application">BibleTime</span></span>. M&#367;&#382;ete
2105 nastavit v&#353;echny vlastnosti <span class="application">BibleTime</span>, které pot&#345;ebujete. Prosím nav&#353;tivte
2106-<a class="link" href="hdbk-config.html#hdbk-config-bt" title="Nastavení BibleTime Dialogu">tuto sekci</a> pro více informací.</p></dd><dt><a name="hdbk-reference-menus-settings-bookshelf_manager"></a><span class="term">
2107+<a class="link" href="hdbk-config.html#hdbk-config-bt" title="Nastavení Dialogu BibleTime">tuto sekci</a> pro více informací.</p></dd><dt><a name="hdbk-reference-menus-settings-bookshelf_manager"></a><span class="term">
2108 <span class="guimenu">
2109 <span class="inlinemediaobject"><img src="i_configuresword.png"></span>Settings</span> &#8594; <span class="guimenuitem">Bookshelf Manager</span> (<span class="shortcut"><strong><span class="keycap"><strong>F4</strong></span></strong></span>)
2110 </span></dt><dd><p>
2111- <span class="action">Opens a dialog where you can change your Sword configuration and
2112-manage your bookshelf</span>. Please see <a class="link" href="hdbk-op-bookshelfmanager.html" title="Správa knih">this section</a> for details.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-help"></a>
2113+ <span class="action">Otev&#345;e dialog kde m&#367;&#382;ete zm&#283;nit va&#353;e nastavení Sword a spraovat svou
2114+knihovnu</span>. Dal&#353;í inormace naleznete v <a class="link" href="hdbk-op-bookshelfmanager.html" title="Správa knih">této sekci</a>.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-help"></a>
2115 <span class="guimenu">Help</span>
2116- </h3></div></div></div>TODO: ADD</div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-toolbar.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 4. Nastavení BibleTime  </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Odkazy Nástrojové li&#353;ty</td></tr></table></div></body></html>
2117+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-help-bibletime"></a><span class="term">
2118+ <span class="guimenu">
2119+ <span class="inlinemediaobject"><img src="i_contents2.png"></span>Help</span> &#8594; <span class="guimenuitem">Handbook</span> (<span class="shortcut"><strong><span class="keycap"><strong>F1</strong></span></strong></span>)
2120+ </span></dt><dd><p>
2121+ <span class="action">Opens <span class="application">BibleTime</span>'s user guide</span> You are reading it now.</p></dd><dt><a name="hdbk-reference-menus-help-bible_study_howto"></a><span class="term">
2122+ <span class="guimenu">
2123+ <span class="inlinemediaobject"><img src="i_contents2.png"></span>Help</span> &#8594; <span class="guimenuitem">Bible Study Howto</span> (<span class="shortcut"><strong><span class="keycap"><strong>F2</strong></span></strong></span>)
2124+ </span></dt><dd><p>
2125+ <span class="action">Opens a guide on how to study the Bible</span> It is the hope of
2126+the <span class="application">BibleTime</span> team that this HowTo will provoke the readers to study the
2127+scriptures to see what they say. This particular study guide has been chosen
2128+as it takes care not to advocate any particular denominational doctrine. We
2129+expect you to read and study the scriptures to understand what they say. If
2130+you start with the attitude that you want to have the Lord sow his word in
2131+your heart He will not disappoint you.</p></dd><dt><a name="hdbk-reference-menus-help-about"></a><span class="term">
2132+ <span class="guimenu">Help</span> &#8594; <span class="guimenuitem">About</span>
2133+ </span></dt><dd><p>
2134+ <span class="action">Opens a window about <span class="application">BibleTime</span> project information</span>
2135+contains information about <span class="application">BibleTime</span> software version, project
2136+contributors, <span class="application">Sword</span> software version, <span class="application">Qt</span> software version and the
2137+license agreement.</p></dd></dl></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 4. Nastavení BibleTime  </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Seznam horkých kláves</td></tr></table></div></body></html>
2138
2139=== modified file 'docs/handbook/cs/html/hdbk-startsequence.html'
2140--- docs/handbook/cs/html/hdbk-startsequence.html 2009-04-05 07:01:43 +0000
2141+++ docs/handbook/cs/html/hdbk-startsequence.html 2009-04-24 02:10:38 +0000
2142@@ -2,14 +2,15 @@
2143 se otev&#345;e hlavní okno <span class="application">BibleTime</span>:</p><div class="variablelist"><dl><dt><span class="term">
2144 <span class="interface">Bookshelf Manager</span>
2145 </span></dt><dd><p>
2146- <span class="action">Modifies your Bookshelf.</span> This dialog lets you modify your
2147-Bookshelf, add or delete works from your system. It will only be shown if
2148-no default Bookshelf can be found. Please see <a class="link" href="hdbk-op-bookshelfmanager.html" title="Správa knih"> this section</a> for further
2149-details. If you start off with an empty Bookshelf, it will be helpful to
2150-install at least one Bible, Commentary, Lexicon and one Book to get to know
2151-<span class="application">BibleTime</span>'s basic features quickly.</p></dd><dt><span class="term">
2152+ <span class="action">Upravit va&#353;i knihovnu.</span> Tento dialog vám umo&#382;ní upravovat
2153+va&#353;i knihovnu, p&#345;idávat nebo mazat díla ve va&#353;em systému.This dialog lets
2154+you modify your Bookshelf, add or delete works from your system. Bude
2155+zobrazen pouze v p&#345;ípad&#283;, &#382;e nebude nalezena výchozí knihovna. Prosím
2156+podívejte se do <a class="link" href="hdbk-op-bookshelfmanager.html" title="Správa knih"> této sekce</a>
2157+pokud chcete znát více detail&#367;. Pokud za&#269;ínáte s prázdnou knihovnou, bude
2158+u&#382;ite&#269;né nainstalovat alespo&#328; jednu Bibli, Komentá&#345;, Lexikon a knihu,
2159+abyste se rychle seznámili se základními vlastnostmi <span class="application">BibleTime</span>.</p></dd><dt><span class="term">
2160 <span class="interface">Configure <span class="application">BibleTime</span> dialog</span>
2161 </span></dt><dd><p>
2162- <span class="action">Customizes <span class="application">BibleTime</span>.</span>This dialog lets you adapt
2163-<span class="application">BibleTime</span> to your needs. Please see <a class="link" href="hdbk-config.html#hdbk-config-bt" title="Nastavení BibleTime Dialogu">the
2164-detailed description</a> of this dialog.</p></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-term.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-term.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-op.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 2. Spu&#353;t&#283;ní BibleTime </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 3. Operace programu</td></tr></table></div></body></html>
2165+ <span class="action">P&#345;izp&#367;sobí <span class="application">BibleTime</span>.</span>Tento dialog vám dovolí p&#345;izp&#367;sobit
2166+<span class="application">BibleTime</span> va&#353;im pot&#345;ebám. Prosím podívejte se na <a class="link" href="hdbk-config.html#hdbk-config-bt" title="Nastavení Dialogu BibleTime">detailní popis</a> tohoto dialogu.</p></dd></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-term.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-term.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-op.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 2. Spu&#353;t&#283;ní BibleTime </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Chapter 3. Operace programu</td></tr></table></div></body></html>
2167
2168=== modified file 'docs/handbook/cs/html/hdbk-term.html'
2169--- docs/handbook/cs/html/hdbk-term.html 2009-04-05 07:01:43 +0000
2170+++ docs/handbook/cs/html/hdbk-term.html 2009-04-24 02:10:38 +0000
2171@@ -2,10 +2,9 @@
2172 prost&#345;edí. <span class="application">BibleTime</span> m&#367;&#382;ete spustit z menu Start touto ikonou:
2173 </p><div class="mediaobject"><img src="i_bibletime.png" alt="BibleTime spou&#353;t&#283;cí ikona"></div><p><span class="application">BibleTime</span> m&#367;&#382;e být spu&#353;t&#283;n také z p&#345;íkazové &#345;ádky. Pro spu&#353;t&#283;ní
2174 <span class="application">BibleTime</span> otev&#345;ete okno terminálu a napi&#353;te:
2175- </p><pre class="screen">bibletime</pre></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-otherwm"></a>Dal&#353;í správci oken</h3></div></div></div><p><span class="application">BibleTime</span> m&#367;&#382;e být pou&#382;íván také s dal&#353;ími okenními správci jako Gnome,
2176-BlackBox, Fluxbox, OpenBox nebo Sawfish, pokud jsou po&#382;adované knihovny ji&#382;
2177-nainstalovány na va&#353;em po&#269;íta&#269;i.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-custom"></a>Nastavení spu&#353;t&#283;ní</h3></div></div></div><p>Z terminálu m&#367;&#382;ete pou&#382;ít <span class="application">BibleTime</span> k otev&#345;ení p&#345;íslu&#353;ného ver&#353;e ve
2178+ </p><pre class="screen"><span class="application">BibleTime</span></pre></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-otherwm"></a>Dal&#353;í správci oken</h3></div></div></div><p><span class="application">BibleTime</span> can be used with other window managers such as Gnome, BlackBox,
2179+Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
2180+already installed on your computer.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-custom"></a>Nastavení spu&#353;t&#283;ní</h3></div></div></div><p>Z terminálu m&#367;&#382;ete pou&#382;ít <span class="application">BibleTime</span> k otev&#345;ení p&#345;íslu&#353;ného ver&#353;e ve
2181 výchozí bibli:
2182- </p><pre class="screen">bibletime --open-default-bible
2183- "&lt;random&gt;"</pre><p>Pro otev&#345;ení v dané pasá&#382;i, jako nap&#345;íklad Jan 3:16, pou&#382;ijte:
2184+ </p><pre class="screen">bibletime --open-default-bible</pre><p>Pro otev&#345;ení v dané pasá&#382;i, jako nap&#345;íklad Jan 3:16, pou&#382;ijte:
2185 </p><pre class="screen">bibletime --open-default-bible "Jan 3:16"</pre><p>M&#367;&#382;ete pou&#382;ít jména knih ve svém aktuálním jazyce pro pojmenování knih.</p></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-intro.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-startsequence.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 1. Úvod </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Spou&#353;t&#283;cí sekvence.</td></tr></table></div></body></html>
2186
2187=== modified file 'docs/handbook/cs/html/index.html'
2188--- docs/handbook/cs/html/index.html 2009-04-05 07:01:43 +0000
2189+++ docs/handbook/cs/html/index.html 2009-04-29 17:39:29 +0000
2190@@ -1,4 +1,4 @@
2191-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>P&#345;íru&#269;ka BibleTime</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="description" content="BibleTime je nástroj pro studium Bible zalo&#382;ený na frameworku Sword."><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="next" href="hdbk-intro.html" title="Chapter 1. Úvod"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">P&#345;íru&#269;ka BibleTime</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="id11527980"></a>P&#345;íru&#269;ka <span class="application">BibleTime</span></h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">Fred</span> <span class="surname">Saalbach</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Jeffrey</span> <span class="surname">Hoyt</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Martin</span> <span class="surname">Gruner</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Thomas</span> <span class="surname">Abthorpe</span></h3></div></div></div><div><p class="releaseinfo">2.0</p></div><div><p class="copyright">Copyright © 1999-2009 Tým <span class="application">BibleTime</span></p></div><div><div class="legalnotice"><a name="id11545563"></a><p>P&#345;íru&#269;ka <span class="application">BibleTime</span> je sou&#269;ástí <span class="application">BibleTime</span>.</p></div></div><div><div class="abstract"><p class="title"><b>Abstract</b></p><p><span class="application">BibleTime</span> je nástroj pro studium Bible zalo&#382;ený na frameworku Sword.</p></div></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="hdbk-intro.html">1. Úvod</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">O BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Dostupná díla</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivace</a></span></dt></dl></dd></dl></dd><dt><span class="chapter"><a href="hdbk-term.html">2. Spu&#353;t&#283;ní BibleTime</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-term.html#hdbk-start">Jak spustit BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start">Spu&#353;t&#283;ní BibleTime</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-otherwm">Dal&#353;í správci oken</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-custom">Nastavení spu&#353;t&#283;ní</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-startsequence.html">Spou&#353;t&#283;cí sekvence.</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-op.html">3. Operace programu</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-op.html#hdbk-op-overview">Náhled programu</a></span></dt><dt><span class="sect1"><a href="hdbk-op-parts.html">&#268;ásti okna aplikace BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-bookshelf">Knihovna</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-mag">&#268;asopis</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-desk">Plocha</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-search.html">Vyhledávání v dílech</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-intext">Searching text in an open read window</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-access">P&#345;ístup k dialogu vyhledávání</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-config">Nastavení vyhledávání</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-results">Výsledky vyhledávání</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-bookshelfmanager.html">Správa knih</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-path">Nastavení cesty ke knihám</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-installupdate">Instalace/aktualizace d&#283;l</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-remove">Odebrání d&#283;l</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-searchindexes">Vyhledávací indexy</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-output.html">Export a tisk</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-config.html">4. Nastavení BibleTime </a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-config.html#hdbk-config-bt">Nastavení BibleTime Dialogu</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-display">
2192+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>P&#345;íru&#269;ka BibleTime</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="description" content="BibleTime is a Bible study tool based on the Sword framework."><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="P&#345;íru&#269;ka BibleTime"><link rel="next" href="hdbk-intro.html" title="Chapter 1. Úvod"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">P&#345;íru&#269;ka BibleTime</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="id11527980"></a>P&#345;íru&#269;ka <span class="application">BibleTime</span></h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">Fred</span> <span class="surname">Saalbach</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Jeffrey</span> <span class="surname">Hoyt</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Martin</span> <span class="surname">Gruner</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Thomas</span> <span class="surname">Abthorpe</span></h3></div></div></div><div><p class="releaseinfo">2.0</p></div><div><p class="copyright">Copyright © 1999-2009 Tým <span class="application">BibleTime</span></p></div><div><div class="legalnotice"><a name="id11545563"></a><p>P&#345;íru&#269;ka <span class="application">BibleTime</span> je sou&#269;ástí <span class="application">BibleTime</span>.</p></div></div><div><div class="abstract"><p class="title"><b>Abstract</b></p><p><span class="application">BibleTime</span> is a Bible study tool based on the Sword framework.</p></div></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="hdbk-intro.html">1. Úvod</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">O BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Dostupná díla</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivace</a></span></dt></dl></dd></dl></dd><dt><span class="chapter"><a href="hdbk-term.html">2. Spu&#353;t&#283;ní BibleTime</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-term.html#hdbk-start">Jak spustit BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start">Spu&#353;t&#283;ní BibleTime</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-otherwm">Dal&#353;í správci oken</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-custom">Nastavení spu&#353;t&#283;ní</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-startsequence.html">Spou&#353;t&#283;cí sekvence.</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-op.html">3. Operace programu</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-op.html#hdbk-op-overview">Náhled programu</a></span></dt><dt><span class="sect1"><a href="hdbk-op-parts.html">&#268;ásti okna aplikace BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-bookshelf">Knihovna</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-mag">&#268;asopis</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-desk">Plocha</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-search.html">Vyhledávání v dílech</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-intext">Vyhledávání textu v aktivním okn&#283;</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-access">P&#345;ístup k dialogu vyhledávání</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-config">Nastavení vyhledávání</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-results">Výsledky hledání</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-bookshelfmanager.html">Správa knih</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-path">Nastavení cesty ke knihám</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-installupdate">Instalace/aktualizace d&#283;l</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-remove">Odebrání d&#283;l</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-searchindexes">Vyhledávací indexy</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-output.html">Export a tisk</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-config.html">4. Nastavení BibleTime </a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-config.html#hdbk-config-bt">Nastavení Dialogu BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-display">
2193 Display
2194 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">
2195 Languages
2196@@ -18,4 +18,4 @@
2197 Settings
2198 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
2199 Help
2200- </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-toolbar.html">Odkazy Nástrojové li&#353;ty</a></span></dt><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">Seznam klávesových zkratek</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><b>List of Tables</b></p><dl><dt>3.1. <a href="hdbk-op-search.html#hd-op-search-config-syntax-table"></a></dt><dt>4.1. <a href="hdbk-config.html#hdbk-config-unicode-fonts-table">Písma Unicode</a></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Chapter 1. Úvod</td></tr></table></div></body></html>
2201+ </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">Seznam horkých kláves</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><b>List of Tables</b></p><dl><dt>3.1. <a href="hdbk-op-search.html#hd-op-search-config-syntax-table">Search Types</a></dt><dt>4.1. <a href="hdbk-config.html#hdbk-config-unicode-fonts-table">Písma Unicode</a></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Chapter 1. Úvod</td></tr></table></div></body></html>
2202
2203=== modified file 'docs/handbook/de/docbook/hdbk-config.docbook'
2204--- docs/handbook/de/docbook/hdbk-config.docbook 2009-04-05 07:01:43 +0000
2205+++ docs/handbook/de/docbook/hdbk-config.docbook 2009-04-24 02:10:38 +0000
2206@@ -32,7 +32,7 @@
2207 und sie werden sich gleich zu Hause fühlen.</para>
2208
2209 <para>By default, &bibletime; uses the default system display font. You can
2210-override this font if neccessary. Some languages require special fonts to be
2211+override this font if necessary. Some languages require special fonts to be
2212 displayed correctly, and this dialog allows you to specify a custom font for
2213 each language.</para>
2214 <mediaobject>
2215@@ -112,14 +112,14 @@
2216 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">
2217 SIL unicode fonts</ulink>
2218 </entry>
2219- <entry>Exzellente Schriftarten des Summer Institute of Linguistics.</entry>
2220+ <entry>Excellent Unicode fonts from the Summer Institute of Linguistics.</entry>
2221 </row>
2222 <row>
2223 <entry>
2224 <ulink url="http://www.nongnu.org/freefont/">
2225 FreeFont</ulink>
2226 </entry>
2227- <entry>Eine neue Initiative für eine freie Unicode-Schriftart.</entry>
2228+ <entry>A new free Unicode font initiative.</entry>
2229 </row>
2230 <row>
2231 <entry>
2232@@ -166,7 +166,7 @@
2233 &bibletime;. These features are documented right in the dialog. You also
2234 have the possibility to specify standard works that should be used when no
2235 specific work is specified in a reference. An example: The standard Bible is
2236-used to display the content of crossreferences in the Bible. When you hover
2237+used to display the content of cross references in the Bible. When you hover
2238 over then, the Mag will show the content of the verses referred to,
2239 according to the standard Bible you specified.</para>
2240 </sect2>
2241
2242=== modified file 'docs/handbook/de/docbook/hdbk-intro.docbook'
2243--- docs/handbook/de/docbook/hdbk-intro.docbook 2009-04-05 07:01:43 +0000
2244+++ docs/handbook/de/docbook/hdbk-intro.docbook 2009-04-29 17:39:29 +0000
2245@@ -3,7 +3,7 @@
2246 <sect1 id="hdbk-intro-about">
2247 <title>About &bibletime;</title>
2248 <para>&bibletime; is a Bible study tool with support for different types of texts
2249-and languages. Even large amounts of works modules) are easy to install and
2250+and languages. Even large amounts of works modules are easy to install and
2251 manage. It is built on the <ulink
2252 url="http://www.crosswire.org/sword">Sword</ulink> library, which provides
2253 the back-end functionality for &bibletime;, such as viewing Bible text,
2254@@ -43,7 +43,7 @@
2255 <term>Kommentare</term>
2256 <listitem>
2257 <para>Commentaries available include classics like John Wesley's "Notes on the
2258-Bible", Matthew Henry`s commentary and Luther's "Commentary on Galatians."
2259+Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
2260 With the <emphasis>Personal</emphasis> commentary you can <link
2261 linkend="hdbk-op-parts-desk-write"> record your own personal notes</link> to
2262 sections of the Bible.</para>
2263@@ -59,9 +59,11 @@
2264 <varlistentry>
2265 <term>Lexika / Wörterbücher</term>
2266 <listitem>
2267- <para>Zu den verfügbaren Wörterbüchern gehören: Strong's Hebrew Bible Dictionary,
2268-Strong's Greek Bible Dictionary, Webster's Revised Unabridged Dictionary of
2269-the English Language 1913, Nave's Topical Bible.</para>
2270+ <para>Lexicons available include: Robinson's Morphological Analysis Codes,
2271+Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
2272+Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
2273+Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
2274+Dictionary of the English Language 1913, Nave's Topical Bible.</para>
2275 </listitem>
2276 </varlistentry>
2277 </variablelist></para>
2278
2279=== modified file 'docs/handbook/de/docbook/hdbk-operation.docbook'
2280--- docs/handbook/de/docbook/hdbk-operation.docbook 2009-04-05 07:01:43 +0000
2281+++ docs/handbook/de/docbook/hdbk-operation.docbook 2009-04-29 17:39:29 +0000
2282@@ -113,7 +113,7 @@
2283 <title>Die Arbeitsfläche</title>
2284 <para>The Desk is where the real work with &bibletime; takes place. Here you can
2285 open works from the Bookshelf, read them, <link
2286-linkend="hdbk-op-search">search</link>in them, and even save your
2287+linkend="hdbk-op-search">search</link> in them, and even save your
2288 annotations in the personal commentary module (see <link
2289 linkend="hdbk-op-parts-desk-write">below</link>).</para>
2290
2291@@ -156,7 +156,7 @@
2292 <guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>
2293
2294 <tip>
2295- <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice>is
2296+ <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice> is
2297 deactivated, please check if you have write permission for the files of the
2298 personal commentary.</para>
2299 </tip>
2300@@ -237,6 +237,7 @@
2301 number H8077, use 'strong:H8077'.</para>
2302 <para>Available text types:
2303 <table id="hd-op-search-config-syntax-table">
2304+ <title>Search Types</title>
2305 <tgroup cols="2">
2306 <thead>
2307 <row>
2308@@ -312,17 +313,17 @@
2309 Bookshelf. You can install new works to your Bookshelf, and update or remove
2310 existing works from your Bookshelf. Access it by clicking <menuchoice>
2311 <guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem>
2312-</menuchoice>in the main menu.</para>
2313+</menuchoice> in the main menu.</para>
2314 <sect2 id="hdbk-op-bookshelfmanager-path">
2315 <title>Bookshelf path(s) setup</title>
2316- <para>Here you can specify where &bibletime; may store your Bookshelf on the
2317-harddrive. You can even store it in multiple directories. Default is
2318+ <para>Here you can specify where &bibletime; may store your Bookshelf on the hard
2319+drive. You can even store it in multiple directories. Default is
2320 "~/.sword/".</para>
2321 <tip>
2322- <para>If you have a sword CD, but do not want to install all the works on the
2323-harddisk, but use them directly from the CD, then you can add the path to
2324-the CD as one of your bookshelf paths. When you start &bibletime;, it will
2325-show all works on the CD if it is present.</para>
2326+ <para>If you have a sword CD, but do not want to install all the works on the hard
2327+disk, but use them directly from the CD, then you can add the path to the CD
2328+as one of your bookshelf paths. When you start &bibletime;, it will show all
2329+works on the CD if it is present.</para>
2330 </tip>
2331 </sect2>
2332 <sect2 id="hdbk-op-bookshelfmanager-installupdate">
2333
2334=== modified file 'docs/handbook/de/docbook/hdbk-reference.docbook'
2335--- docs/handbook/de/docbook/hdbk-reference.docbook 2009-04-05 07:01:43 +0000
2336+++ docs/handbook/de/docbook/hdbk-reference.docbook 2009-04-29 17:39:29 +0000
2337@@ -39,16 +39,47 @@
2338 </variablelist>
2339 </para>
2340 </sect2>
2341+
2342 <sect2 id="hdbk-reference-menus-view">
2343 <title>
2344 <guimenu>View</guimenu>
2345 </title>
2346+
2347 <variablelist>
2348+ <varlistentry id="hdbk-reference-menus-view-fullscreenmode">
2349+ <term>
2350+ <menuchoice>
2351+ <shortcut>
2352+ <keycombo action="simul">
2353+ <keycap>F5</keycap>
2354+ </keycombo>
2355+ </shortcut>
2356+ <guimenu>
2357+ <inlinemediaobject>
2358+ <imageobject>
2359+ <imagedata fileref="i_window_fullscreen.png" format="PNG" />
2360+ </imageobject>
2361+ </inlinemediaobject>View</guimenu>
2362+ <guimenuitem>Fullscreen mode</guimenuitem>
2363+ </menuchoice>
2364+ </term>
2365+ <listitem>
2366+ <para>
2367+ <action>Toggles full screen display.</action> Toggle this setting to
2368+maximize the &bibletime; window.</para>
2369+ </listitem>
2370+ </varlistentry>
2371+
2372 <varlistentry id="hdbk-reference-menus-view-showtoolbar">
2373 <term>
2374 <menuchoice>
2375+ <shortcut>
2376+ <keycombo action="simul">
2377+ <keycap>F6</keycap>
2378+ </keycombo>
2379+ </shortcut>
2380 <guimenu>View</guimenu>
2381- <guimenuitem>Show Toolbar</guimenuitem>
2382+ <guimenuitem>Show toolbar</guimenuitem>
2383 </menuchoice>
2384 </term>
2385 <listitem>
2386@@ -57,20 +88,11 @@
2387 main toolbar on or off.</para>
2388 </listitem>
2389 </varlistentry>
2390+
2391 <varlistentry id="hdbk-reference-menus-view-showbookshelf">
2392 <term>
2393 <menuchoice>
2394- <shortcut>
2395- <keycombo action="simul">
2396- <keycap>F9</keycap>
2397- </keycombo>
2398- </shortcut>
2399- <guimenu>
2400- <inlinemediaobject>
2401- <imageobject>
2402- <imagedata fileref="i_sidetree.png" format="PNG" />
2403- </imageobject>
2404- </inlinemediaobject>View</guimenu>
2405+ <guimenu>View</guimenu>
2406 <guimenuitem>Show Bookshelf</guimenuitem>
2407 </menuchoice>
2408 </term>
2409@@ -81,20 +103,11 @@
2410 more space for the Mag.</para>
2411 </listitem>
2412 </varlistentry>
2413+
2414 <varlistentry id="hdbk-reference-menus-view-showmag">
2415 <term>
2416 <menuchoice>
2417- <shortcut>
2418- <keycombo action="simul">
2419- <keycap>F8</keycap>
2420- </keycombo>
2421- </shortcut>
2422- <guimenu>
2423- <inlinemediaobject>
2424- <imageobject>
2425- <imagedata fileref="i_sidetree.png" format="PNG" />
2426- </imageobject>
2427- </inlinemediaobject>View</guimenu>
2428+ <guimenu>View</guimenu>
2429 <guimenuitem>Show Mag</guimenuitem>
2430 </menuchoice>
2431 </term>
2432@@ -289,30 +302,6 @@
2433 <guimenu>Settings</guimenu>
2434 </title>
2435 <variablelist>
2436- <varlistentry id="hdbk-reference-menus-settings-toolbars">
2437- <term>
2438- <menuchoice>
2439- <guimenu>
2440- <inlinemediaobject>
2441- <imageobject>
2442- <imagedata fileref="i_configuretoolbars.png"
2443- format="PNG" />
2444- </imageobject>
2445- </inlinemediaobject>Settings</guimenu>
2446- <guimenuitem>Configure toolbars</guimenuitem>
2447- </menuchoice>
2448- </term>
2449- <listitem>
2450- <para>
2451- <action>Opens a dialog where you can customize &bibletime;'s
2452-toolbar</action>. Just try it out, you can move around the toolbar buttons
2453-and even add new ones. Most of the entries available from the main menu can
2454-be put on the toolbar as buttons. If you need a certain feature often, you
2455-might want to put a button on the main menu, so that you can access it with
2456-only one click. Please see <link linkend="hdbk-config-toolbar">this
2457-section</link> for further information.</para>
2458- </listitem>
2459- </varlistentry>
2460 <varlistentry id="hdbk-reference-menus-settings-bibletime">
2461 <term>
2462 <menuchoice>
2463@@ -361,46 +350,90 @@
2464 </varlistentry>
2465 </variablelist>
2466 </sect2>
2467+
2468 <sect2 id="hdbk-reference-menus-help">
2469 <title>
2470 <guimenu>Help</guimenu>
2471- </title>TODO: ADD</sect2>
2472- </sect1>
2473- <sect1 id="hdbk-reference-toolbar">
2474- <title>Toolbar reference</title>
2475- <para>Please review <link linkend="hdbk-reference-menus">the preceding
2476-section</link> for an explanation of the buttons that you find on the
2477-toolbar. You can also <action>move the cursor over a button and wait a few
2478-seconds</action> to activate the button's tooltip with a short description.</para>
2479- <para>Sie können die Werkzeugleiste ihren Bedürfnissen anpassen. Bitte benutzen
2480-Sie den folgenden Eintrag aus dem Hauptmenü:
2481- <variablelist>
2482- <varlistentry>
2483- <term>
2484- <menuchoice>
2485- <guimenu>
2486- <inlinemediaobject>
2487- <imageobject>
2488- <imagedata fileref="i_configuretoolbars.png"
2489- format="PNG" />
2490- </imageobject>
2491- </inlinemediaobject>Settings</guimenu>
2492- <guimenuitem>Configure toolbars</guimenuitem>
2493- </menuchoice>
2494- </term>
2495- <listitem>
2496- <para>Werkzeugleisten einrichten</para>
2497- </listitem>
2498- </varlistentry>
2499- </variablelist>Please see <link linkend="hdbk-reference-menus-settings-toolbars">this
2500-section</link> for detailed instructions.</para>
2501- </sect1>
2502+ </title>
2503+ <variablelist>
2504+ <varlistentry id="hdbk-reference-menus-help-bibletime">
2505+ <term>
2506+ <menuchoice>
2507+ <shortcut>
2508+ <keycombo action="simul">
2509+ <keycap>F1</keycap>
2510+ </keycombo>
2511+ </shortcut>
2512+ <guimenu>
2513+ <inlinemediaobject>
2514+ <imageobject>
2515+ <imagedata fileref="i_contents2.png" format="PNG" />
2516+ </imageobject>
2517+ </inlinemediaobject>Help</guimenu>
2518+ <guimenuitem>Handbook</guimenuitem>
2519+ </menuchoice>
2520+ </term>
2521+ <listitem>
2522+ <para>
2523+ <action>Opens &bibletime;'s user guide</action> You are reading it now.</para>
2524+ </listitem>
2525+ </varlistentry>
2526+
2527+ <varlistentry id="hdbk-reference-menus-help-bible_study_howto">
2528+ <term>
2529+ <menuchoice>
2530+ <shortcut>
2531+ <keycombo action="simul">
2532+ <keycap>F2</keycap>
2533+ </keycombo>
2534+ </shortcut>
2535+ <guimenu>
2536+ <inlinemediaobject>
2537+ <imageobject>
2538+ <imagedata fileref="i_contents2.png"
2539+ format="PNG" />
2540+ </imageobject>
2541+ </inlinemediaobject>Help</guimenu>
2542+ <guimenuitem>Bible Study Howto</guimenuitem>
2543+ </menuchoice>
2544+ </term>
2545+ <listitem>
2546+ <para>
2547+ <action>Opens a guide on how to study the Bible</action> It is the hope of
2548+the &bibletime; team that this HowTo will provoke the readers to study the
2549+scriptures to see what they say. This particular study guide has been chosen
2550+as it takes care not to advocate any particular denominational doctrine. We
2551+expect you to read and study the scriptures to understand what they say. If
2552+you start with the attitude that you want to have the Lord sow his word in
2553+your heart He will not disappoint you.</para>
2554+ </listitem>
2555+ </varlistentry>
2556+
2557+ <varlistentry id="hdbk-reference-menus-help-about">
2558+ <term>
2559+ <menuchoice>
2560+ <guimenu>Help</guimenu>
2561+ <guimenuitem>About</guimenuitem>
2562+ </menuchoice>
2563+ </term>
2564+ <listitem>
2565+ <para>
2566+ <action>Opens a window about &bibletime; project information</action>
2567+contains information about &bibletime; software version, project
2568+contributors, &sword; software version, &qt; software version and the
2569+license agreement.</para>
2570+ </listitem>
2571+ </varlistentry>
2572+ </variablelist>
2573+ </sect2>
2574+ </sect1>
2575+
2576 <sect1 id="hdbk-reference-hotkeys">
2577 <title>HotKeys index</title>
2578 <para>This is index of all hotkeys and their corresponding description in the
2579 handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
2580 directly find out which hotkey a certain menu item has, you can either look
2581-at the entry itelf in &bibletime; (as it always shows the hotkey), or you
2582+at the entry itself in &bibletime; (as it always shows the hotkey), or you
2583 can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>
2584 <informaltable>
2585 <tgroup cols="2">
2586
2587=== modified file 'docs/handbook/de/docbook/hdbk-start.docbook'
2588--- docs/handbook/de/docbook/hdbk-start.docbook 2009-04-05 07:01:43 +0000
2589+++ docs/handbook/de/docbook/hdbk-start.docbook 2009-04-24 02:10:38 +0000
2590@@ -16,12 +16,12 @@
2591 </mediaobject></para>
2592 <para>&bibletime; can also be launched from a terminal command prompt. To launch
2593 &bibletime;, open a terminal window and type:
2594- <screen>bibletime</screen></para>
2595+ <screen>&bibletime;</screen></para>
2596 </sect2>
2597 <sect2 id="hdbk-start-otherwm">
2598 <title>Other window managers</title>
2599 <para>&bibletime; can be used with other window managers such as Gnome, BlackBox,
2600-Fluxbox, OpenBox or Sawfish, providing the appropriate base libarires are
2601+Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
2602 already installed on your computer.</para>
2603 </sect2>
2604 <sect2 id="hdbk-start-custom">
2605
2606=== modified file 'docs/handbook/de/docbook/index.docbook'
2607--- docs/handbook/de/docbook/index.docbook 2009-04-05 07:01:43 +0000
2608+++ docs/handbook/de/docbook/index.docbook 2009-04-29 17:39:29 +0000
2609@@ -5,6 +5,7 @@
2610 <!ENTITY bibletime '<application>BibleTime</application>'>
2611 <!ENTITY sword '<application>Sword</application>'>
2612 <!ENTITY kde '<application>KDE</application>'>
2613+ <!ENTITY qt '<application>Qt</application>'>
2614
2615 <!ENTITY Shift 'Shift'>
2616 <!ENTITY Ctrl 'Ctrl'>
2617@@ -46,10 +47,10 @@
2618 <legalnotice>
2619 <para>Der &bibletime;-Hilfedialog ist ein Teil von &bibletime;.</para>
2620 </legalnotice>
2621- <date>2005-08</date>
2622+ <date>2009-04</date>
2623 <releaseinfo>2.0</releaseinfo>
2624 <abstract>
2625- <para>&bibletime; is a Bible study tool based on the Sword framwork.</para>
2626+ <para>&bibletime; is a Bible study tool based on the Sword framework.</para>
2627 </abstract>
2628 <keywordset>
2629 <keyword>QT4</keyword>
2630
2631=== modified file 'docs/handbook/de/html/hdbk-config.html'
2632--- docs/handbook/de/html/hdbk-config.html 2009-04-05 07:01:43 +0000
2633+++ docs/handbook/de/html/hdbk-config.html 2009-04-24 02:10:38 +0000
2634@@ -21,7 +21,7 @@
2635 </h3></div></div></div><p>Hier können Sie angeben, welche Sprache für die Buchnamen der Bibel
2636 verwendet werden soll. Stellen Sie (falls verfügbar) ihre Muttersprache ein,
2637 und sie werden sich gleich zu Hause fühlen.</p><p>By default, <span class="application">BibleTime</span> uses the default system display font. You can
2638-override this font if neccessary. Some languages require special fonts to be
2639+override this font if necessary. Some languages require special fonts to be
2640 displayed correctly, and this dialog allows you to specify a custom font for
2641 each language.</p><div class="mediaobject"><img src="ss_configfonts.png" alt="Options Dialog - fonts"><div class="caption"><p>Der Optionendialog - Schriften.</p></div></div><p><span class="application">BibleTime</span> can now use all supported fonts. As long as the works you are
2642 interested in display correctly nothing needs to be done here. If a work
2643@@ -47,10 +47,10 @@
2644 Zeichenbereich ab.</td></tr><tr><td>
2645 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">
2646 SIL unicode fonts</a>
2647- </td><td>Exzellente Schriftarten des Summer Institute of Linguistics.</td></tr><tr><td>
2648+ </td><td>Excellent Unicode fonts from the Summer Institute of Linguistics.</td></tr><tr><td>
2649 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">
2650 FreeFont</a>
2651- </td><td>Eine neue Initiative für eine freie Unicode-Schriftart.</td></tr><tr><td>
2652+ </td><td>A new free Unicode font initiative.</td></tr><tr><td>
2653 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">
2654 Crosswire's font directory</a>
2655 </td><td>Verschiedene Schriften sind auf der FTP-Seite von Crosswire verfügbar.</td></tr><tr><td>
2656@@ -70,7 +70,7 @@
2657 <span class="application">BibleTime</span>. These features are documented right in the dialog. You also
2658 have the possibility to specify standard works that should be used when no
2659 specific work is specified in a reference. An example: The standard Bible is
2660-used to display the content of crossreferences in the Bible. When you hover
2661+used to display the content of cross references in the Bible. When you hover
2662 over then, the Mag will show the content of the verses referred to,
2663 according to the standard Bible you specified.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-hotkeys"></a>
2664 <span class="guimenu">HotKeys</span>
2665
2666=== modified file 'docs/handbook/de/html/hdbk-intro.html'
2667--- docs/handbook/de/html/hdbk-intro.html 2009-04-05 07:01:43 +0000
2668+++ docs/handbook/de/html/hdbk-intro.html 2009-04-29 17:39:29 +0000
2669@@ -1,5 +1,5 @@
2670 <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 1. Einleitung</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="index.html" title="The BibleTime handbook"><link rel="prev" href="index.html" title="The BibleTime handbook"><link rel="next" href="hdbk-term.html" title="Chapter 2.  BibleTime starten"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 1. Einleitung</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-term.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-intro"></a>Chapter 1. Einleitung</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">About BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Vorhandene Werke</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivation</a></span></dt></dl></dd></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-intro-about"></a>About <span class="application">BibleTime</span></h2></div></div></div><p><span class="application">BibleTime</span> is a Bible study tool with support for different types of texts
2671-and languages. Even large amounts of works modules) are easy to install and
2672+and languages. Even large amounts of works modules are easy to install and
2673 manage. It is built on the <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library, which provides
2674 the back-end functionality for <span class="application">BibleTime</span>, such as viewing Bible text,
2675 searching etc. Sword is the flagship product of the <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire Bible Society</a>.</p><p><span class="application">BibleTime</span> is designed to be used with works encoded in one of the formats
2676@@ -13,12 +13,14 @@
2677 Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is
2678 the most advanced section in the library of the Sword project.</p></dd><dt><span class="term">Bücher</span></dt><dd><p>Books available include "Imitation of Christ", "Enuma Elish", and "Josephus:
2679 The Complete Works"</p></dd><dt><span class="term">Kommentare</span></dt><dd><p>Commentaries available include classics like John Wesley's "Notes on the
2680-Bible", Matthew Henry`s commentary and Luther's "Commentary on Galatians."
2681+Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
2682 With the <span class="emphasis"><em>Personal</em></span> commentary you can <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Bearbeiten Sie ihren eigenen Kommentar"> record your own personal notes</a> to
2683 sections of the Bible.</p></dd><dt><span class="term">Andachtsbücher</span></dt><dd><p>Viele Leute schätzen diese kleinen, täglichen Abschnitte aus Gottes
2684-Wort. Die vorhandene Werke enthalten "Daily Light" und die "Losungen".</p></dd><dt><span class="term">Lexika / Wörterbücher</span></dt><dd><p>Zu den verfügbaren Wörterbüchern gehören: Strong's Hebrew Bible Dictionary,
2685-Strong's Greek Bible Dictionary, Webster's Revised Unabridged Dictionary of
2686-the English Language 1913, Nave's Topical Bible.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-intro-motivation"></a>Motivation</h3></div></div></div><p>Our desire is to serve God, and to do our part to help others grow in their
2687+Wort. Die vorhandene Werke enthalten "Daily Light" und die "Losungen".</p></dd><dt><span class="term">Lexika / Wörterbücher</span></dt><dd><p>Lexicons available include: Robinson's Morphological Analysis Codes,
2688+Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
2689+Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
2690+Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
2691+Dictionary of the English Language 1913, Nave's Topical Bible.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-intro-motivation"></a>Motivation</h3></div></div></div><p>Our desire is to serve God, and to do our part to help others grow in their
2692 relationship with Him. We have striven to make this a powerful, quality
2693 program, and still make it simple and intuitive to operate. It is our desire
2694 that God be praised, as He is the source of all good things.</p><div class="blockquote"><table border="0" width="100%" cellspacing="0" cellpadding="0" class="blockquote" summary="Block quote"><tr><td width="10%" valign="top"> </td><td width="80%" valign="top"><p>Alles, was Gott uns gibt, ist gut und vollkommen. Er, der Vater des Lichts,
2695
2696=== modified file 'docs/handbook/de/html/hdbk-op-bookshelfmanager.html'
2697--- docs/handbook/de/html/hdbk-op-bookshelfmanager.html 2009-04-05 07:01:43 +0000
2698+++ docs/handbook/de/html/hdbk-op-bookshelfmanager.html 2009-04-29 17:39:29 +0000
2699@@ -1,11 +1,11 @@
2700 <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Der Bücherregal Verwalter</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="hdbk-op.html" title="Chapter 3. Programmbedienung"><link rel="prev" href="hdbk-op-search.html" title="In Werken suchen"><link rel="next" href="hdbk-op-output.html" title="Exortieren und Drucken"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Der Bücherregal Verwalter</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-search.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Programmbedienung</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-op-output.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-bookshelfmanager"></a>Der <span class="guimenuitem">Bücherregal Verwalter</span></h2></div></div></div><p>The <span class="guimenuitem">Bookshelf Manager</span> is a tool to manage your
2701 Bookshelf. You can install new works to your Bookshelf, and update or remove
2702-existing works from your Bookshelf. Access it by clicking <span class="guimenu">Settings</span> &#8594; <span class="guimenuitem">Bookshelf Manager</span>in the main menu.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-path"></a>Bookshelf path(s) setup</h3></div></div></div><p>Here you can specify where <span class="application">BibleTime</span> may store your Bookshelf on the
2703-harddrive. You can even store it in multiple directories. Default is
2704-"~/.sword/".</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If you have a sword CD, but do not want to install all the works on the
2705-harddisk, but use them directly from the CD, then you can add the path to
2706-the CD as one of your bookshelf paths. When you start <span class="application">BibleTime</span>, it will
2707-show all works on the CD if it is present.</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-installupdate"></a>Install/update work(s)</h3></div></div></div><p>With this facility, you can connect to a repository of works (called
2708+existing works from your Bookshelf. Access it by clicking <span class="guimenu">Settings</span> &#8594; <span class="guimenuitem">Bookshelf Manager</span> in the main menu.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-path"></a>Bookshelf path(s) setup</h3></div></div></div><p>Here you can specify where <span class="application">BibleTime</span> may store your Bookshelf on the hard
2709+drive. You can even store it in multiple directories. Default is
2710+"~/.sword/".</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If you have a sword CD, but do not want to install all the works on the hard
2711+disk, but use them directly from the CD, then you can add the path to the CD
2712+as one of your bookshelf paths. When you start <span class="application">BibleTime</span>, it will show all
2713+works on the CD if it is present.</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-installupdate"></a>Install/update work(s)</h3></div></div></div><p>With this facility, you can connect to a repository of works (called
2714 "library"), and transfer one or more works to your local Bookshelf. These
2715 libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online
2716 repository of Sword modules, or another site offering Sword modules). You
2717
2718=== modified file 'docs/handbook/de/html/hdbk-op-parts.html'
2719--- docs/handbook/de/html/hdbk-op-parts.html 2009-04-05 07:01:43 +0000
2720+++ docs/handbook/de/html/hdbk-op-parts.html 2009-04-29 17:39:29 +0000
2721@@ -41,7 +41,7 @@
2722 zusätzliche Informationen (z.B. Strongnummern) enthält, dann werden eben
2723 diese in der Lupe dargestellt, nicht jedoch der Text selbst. Probieren sie
2724 es einfach aus.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-parts-desk"></a>Die Arbeitsfläche</h3></div></div></div><p>The Desk is where the real work with <span class="application">BibleTime</span> takes place. Here you can
2725-open works from the Bookshelf, read them, <a class="link" href="hdbk-op-search.html" title="In Werken suchen">search</a>in them, and even save your
2726+open works from the Bookshelf, read them, <a class="link" href="hdbk-op-search.html" title="In Werken suchen">search</a> in them, and even save your
2727 annotations in the personal commentary module (see <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Bearbeiten Sie ihren eigenen Kommentar">below</a>).</p><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-parts-desk-read"></a>Werke lesen</h4></div></div></div><p>As we have <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-bookshelf-open" title="Werke lesen">already seen</a>,
2728 you can open works for reading simply by clicking on their symbol in the
2729 Bookshelf. A read window will open in the Desk's area. Every read window has
2730@@ -63,7 +63,7 @@
2731 <span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit
2732 this work</span>and then either <span class="guimenuitem">Plain
2733 text</span>(source code editor) or
2734-<span class="guimenuitem">HTML</span>(basic gui wysiwyg editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If <span class="guimenu">Edit this work</span>is
2735+<span class="guimenuitem">HTML</span>(basic gui wysiwyg editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If <span class="guimenu">Edit this work</span> is
2736 deactivated, please check if you have write permission for the files of the
2737 personal commentary.</p></div><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Drag &amp; drop works here. Drop a verse reference and the text of the verse
2738 will be inserted.</p></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-op.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-op.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-op-search.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 3. Programmbedienung </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> In Werken suchen</td></tr></table></div></body></html>
2739
2740=== modified file 'docs/handbook/de/html/hdbk-op-search.html'
2741--- docs/handbook/de/html/hdbk-op-search.html 2009-04-05 07:01:43 +0000
2742+++ docs/handbook/de/html/hdbk-op-search.html 2009-04-29 17:39:29 +0000
2743@@ -24,7 +24,7 @@
2744 search terms, e.g. '(Jesus OR spirit) AND God'.</p><p>To search text other than the main text, enter the text type followed by
2745 ':', and then the search term. For example, to search for the Strong's
2746 number H8077, use 'strong:H8077'.</p><p>Available text types:
2747- </p><div class="table"><a name="hd-op-search-config-syntax-table"></a><p class="title"><b>Table 3.1. </b></p><div class="table-contents"><table border="1"><colgroup><col><col></colgroup><thead><tr><th>Prefix</th><th>Meaning</th></tr></thead><tbody><tr><td>heading:</td><td>searches headings</td></tr><tr><td>footnote:</td><td>searches footnotes</td></tr><tr><td>strong:</td><td>searches Strong's Numbers</td></tr><tr><td>morph:</td><td>searches morphology codes</td></tr></tbody></table></div></div><p><br class="table-break"></p><p>BibleTime uses the Lucene search engine to perform your searches. It has
2748+ </p><div class="table"><a name="hd-op-search-config-syntax-table"></a><p class="title"><b>Table 3.1. Search Types</b></p><div class="table-contents"><table summary="Search Types" border="1"><colgroup><col><col></colgroup><thead><tr><th>Prefix</th><th>Meaning</th></tr></thead><tbody><tr><td>heading:</td><td>searches headings</td></tr><tr><td>footnote:</td><td>searches footnotes</td></tr><tr><td>strong:</td><td>searches Strong's Numbers</td></tr><tr><td>morph:</td><td>searches morphology codes</td></tr></tbody></table></div></div><p><br class="table-break"></p><p>BibleTime uses the Lucene search engine to perform your searches. It has
2749 many advanced features, and you can read more about it here: <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top">
2750 http://lucene.apache.org/java/docs/index.html</a></p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-results"></a>Search results</h3></div></div></div><p>Here you can see how many instances of the search string were found, sorted
2751 by works. Clicking on a work with the <span class="mousebutton">right</span>mouse
2752
2753=== modified file 'docs/handbook/de/html/hdbk-reference-hotkeys.html'
2754--- docs/handbook/de/html/hdbk-reference-hotkeys.html 2009-04-05 07:01:43 +0000
2755+++ docs/handbook/de/html/hdbk-reference-hotkeys.html 2009-04-29 17:39:29 +0000
2756@@ -1,7 +1,7 @@
2757-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>HotKeys index</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Referenz"><link rel="prev" href="hdbk-reference-toolbar.html" title="Toolbar reference"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">HotKeys index</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference-toolbar.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Referenz</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-hotkeys"></a>HotKeys index</h2></div></div></div><p>This is index of all hotkeys and their corresponding description in the
2758+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>HotKeys index</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Referenz"><link rel="prev" href="hdbk-reference.html" title="Chapter 5. Referenz"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">HotKeys index</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Referenz</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-hotkeys"></a>HotKeys index</h2></div></div></div><p>This is index of all hotkeys and their corresponding description in the
2759 handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
2760 directly find out which hotkey a certain menu item has, you can either look
2761-at the entry itelf in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
2762+at the entry itself in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
2763 can look it up in <a class="link" href="hdbk-reference.html#hdbk-reference-menus" title="Main menu reference">this section</a>.</p><div class="informaltable"><table border="1"><colgroup><col><col></colgroup><thead><tr><th>Hotkey</th><th>Description</th></tr></thead><tbody><tr><td>
2764 <span class="keycap"><strong>Left</strong></span>
2765 </td><td>Moves back in the history of read windows.</td></tr><tr><td>
2766@@ -73,4 +73,4 @@
2767 <span class="keycap"><strong>F9</strong></span>
2768 </td><td>
2769 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag"> <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show mag</span>
2770-</a>equivalent; toggles display of the mag(nifying glass).</td></tr></tbody></table></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference-toolbar.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">Toolbar reference </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
2771+</a>equivalent; toggles display of the mag(nifying glass).</td></tr></tbody></table></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">Chapter 5. Referenz </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
2772
2773=== modified file 'docs/handbook/de/html/hdbk-reference-toolbar.html'
2774--- docs/handbook/de/html/hdbk-reference-toolbar.html 2009-04-05 07:01:43 +0000
2775+++ docs/handbook/de/html/hdbk-reference-toolbar.html 2009-04-29 17:39:29 +0000
2776@@ -6,5 +6,5 @@
2777 </p><div class="variablelist"><dl><dt><span class="term">
2778 <span class="guimenu">
2779 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
2780- </span></dt><dd><p>Werkzeugleisten einrichten</p></dd></dl></div><p>Please see <a class="link" href="hdbk-reference.html#hdbk-reference-menus-settings-toolbars">this
2781+ </span></dt><dd><p>Werkzeugleisten einrichten</p></dd></dl></div><p>Please see <a class="link" href="">this
2782 section</a> for detailed instructions.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 5. Referenz </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> HotKeys index</td></tr></table></div></body></html>
2783
2784=== modified file 'docs/handbook/de/html/hdbk-reference.html'
2785--- docs/handbook/de/html/hdbk-reference.html 2009-04-05 07:01:43 +0000
2786+++ docs/handbook/de/html/hdbk-reference.html 2009-04-29 17:39:29 +0000
2787@@ -1,4 +1,4 @@
2788-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 5. Referenz</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="index.html" title="The BibleTime handbook"><link rel="prev" href="hdbk-config.html" title="Chapter 4. BibleTime einrichten"><link rel="next" href="hdbk-reference-toolbar.html" title="Toolbar reference"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 5. Referenz</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference-toolbar.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-reference"></a>Chapter 5. Referenz</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-reference.html#hdbk-reference-menus">Main menu reference</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-file">
2789+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 5. Referenz</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="index.html" title="The BibleTime handbook"><link rel="prev" href="hdbk-config.html" title="Chapter 4. BibleTime einrichten"><link rel="next" href="hdbk-reference-hotkeys.html" title="HotKeys index"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 5. Referenz</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-reference"></a>Chapter 5. Referenz</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-reference.html#hdbk-reference-menus">Main menu reference</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-file">
2790 File
2791 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">
2792 View
2793@@ -10,7 +10,7 @@
2794 Settings
2795 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
2796 Help
2797- </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-toolbar.html">Toolbar reference</a></span></dt><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">HotKeys index</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-menus"></a>Main menu reference</h2></div></div></div><p>In this section you can find detailed descriptions of all entries in the
2798+ </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">HotKeys index</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-menus"></a>Main menu reference</h2></div></div></div><p>In this section you can find detailed descriptions of all entries in the
2799 main menu of <span class="application">BibleTime</span>. They are ordered in just the way they appear in
2800 <span class="application">BibleTime</span>, with all the sub-items listed under the major menu item they
2801 belong to. You can also see the hotkey of each item;a complete listing of
2802@@ -26,19 +26,22 @@
2803 ungesicherte Änderungen abspeichern möchten.</p></dd></dl></div><p>
2804 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>
2805 <span class="guimenu">View</span>
2806- </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
2807- <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Toolbar</span>
2808+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-fullscreenmode"></a><span class="term">
2809+ <span class="guimenu">
2810+ <span class="inlinemediaobject"><img src="i_window_fullscreen.png"></span>View</span> &#8594; <span class="guimenuitem">Fullscreen mode</span> (<span class="shortcut"><strong><span class="keycap"><strong>F5</strong></span></strong></span>)
2811+ </span></dt><dd><p>
2812+ <span class="action">Toggles full screen display.</span> Toggle this setting to
2813+maximize the <span class="application">BibleTime</span> window.</p></dd><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
2814+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show toolbar</span> (<span class="shortcut"><strong><span class="keycap"><strong>F6</strong></span></strong></span>)
2815 </span></dt><dd><p>
2816 <span class="action">Toggles Toolbar display.</span> Toggle this setting to turn the
2817 main toolbar on or off.</p></dd><dt><a name="hdbk-reference-menus-view-showbookshelf"></a><span class="term">
2818- <span class="guimenu">
2819- <span class="inlinemediaobject"><img src="i_sidetree.png"></span>View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span> (<span class="shortcut"><strong><span class="keycap"><strong>F9</strong></span></strong></span>)
2820+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span>
2821 </span></dt><dd><p>
2822 <span class="action">Toggles display of the Bookshelf.</span> Toggle this setting to
2823 turn the Bookshelf on the left pane on or off. This can be handy if you need
2824 more space for the Mag.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">
2825- <span class="guimenu">
2826- <span class="inlinemediaobject"><img src="i_sidetree.png"></span>View</span> &#8594; <span class="guimenuitem">Show Mag</span> (<span class="shortcut"><strong><span class="keycap"><strong>F8</strong></span></strong></span>)
2827+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Mag</span>
2828 </span></dt><dd><p>
2829 <span class="action">Toggles display of the Mag(nifying glass).</span> Toggle this
2830 setting to turn the Mag on the left pane on or off.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-search"></a>
2831@@ -90,17 +93,7 @@
2832 </span></dt><dd><p>
2833 <span class="action">Closes all open windows</span>.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-settings"></a>
2834 <span class="guimenu">Settings</span>
2835- </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-toolbars"></a><span class="term">
2836- <span class="guimenu">
2837- <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
2838- </span></dt><dd><p>
2839- <span class="action">Opens a dialog where you can customize <span class="application">BibleTime</span>'s
2840-toolbar</span>. Just try it out, you can move around the toolbar buttons
2841-and even add new ones. Most of the entries available from the main menu can
2842-be put on the toolbar as buttons. If you need a certain feature often, you
2843-might want to put a button on the main menu, so that you can access it with
2844-only one click. Please see <a class="link" href="">this
2845-section</a> for further information.</p></dd><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
2846+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
2847 <span class="guimenu">
2848 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>
2849 </span></dt><dd><p>
2850@@ -114,4 +107,24 @@
2851 <span class="action">Opens a dialog where you can change your Sword configuration and
2852 manage your bookshelf</span>. Please see <a class="link" href="hdbk-op-bookshelfmanager.html" title="Der Bücherregal Verwalter">this section</a> for details.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-help"></a>
2853 <span class="guimenu">Help</span>
2854- </h3></div></div></div>TODO: ADD</div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-toolbar.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 4. BibleTime einrichten </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Toolbar reference</td></tr></table></div></body></html>
2855+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-help-bibletime"></a><span class="term">
2856+ <span class="guimenu">
2857+ <span class="inlinemediaobject"><img src="i_contents2.png"></span>Help</span> &#8594; <span class="guimenuitem">Handbook</span> (<span class="shortcut"><strong><span class="keycap"><strong>F1</strong></span></strong></span>)
2858+ </span></dt><dd><p>
2859+ <span class="action">Opens <span class="application">BibleTime</span>'s user guide</span> You are reading it now.</p></dd><dt><a name="hdbk-reference-menus-help-bible_study_howto"></a><span class="term">
2860+ <span class="guimenu">
2861+ <span class="inlinemediaobject"><img src="i_contents2.png"></span>Help</span> &#8594; <span class="guimenuitem">Bible Study Howto</span> (<span class="shortcut"><strong><span class="keycap"><strong>F2</strong></span></strong></span>)
2862+ </span></dt><dd><p>
2863+ <span class="action">Opens a guide on how to study the Bible</span> It is the hope of
2864+the <span class="application">BibleTime</span> team that this HowTo will provoke the readers to study the
2865+scriptures to see what they say. This particular study guide has been chosen
2866+as it takes care not to advocate any particular denominational doctrine. We
2867+expect you to read and study the scriptures to understand what they say. If
2868+you start with the attitude that you want to have the Lord sow his word in
2869+your heart He will not disappoint you.</p></dd><dt><a name="hdbk-reference-menus-help-about"></a><span class="term">
2870+ <span class="guimenu">Help</span> &#8594; <span class="guimenuitem">About</span>
2871+ </span></dt><dd><p>
2872+ <span class="action">Opens a window about <span class="application">BibleTime</span> project information</span>
2873+contains information about <span class="application">BibleTime</span> software version, project
2874+contributors, <span class="application">Sword</span> software version, <span class="application">Qt</span> software version and the
2875+license agreement.</p></dd></dl></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 4. BibleTime einrichten </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> HotKeys index</td></tr></table></div></body></html>
2876
2877=== modified file 'docs/handbook/de/html/hdbk-term.html'
2878--- docs/handbook/de/html/hdbk-term.html 2009-04-05 07:01:43 +0000
2879+++ docs/handbook/de/html/hdbk-term.html 2009-04-24 02:10:38 +0000
2880@@ -2,8 +2,8 @@
2881 can launch <span class="application">BibleTime</span> from the Start Menu with this icon:
2882 </p><div class="mediaobject"><img src="i_bibletime.png" alt="BibleTime start icon"></div><p><span class="application">BibleTime</span> can also be launched from a terminal command prompt. To launch
2883 <span class="application">BibleTime</span>, open a terminal window and type:
2884- </p><pre class="screen">bibletime</pre></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-otherwm"></a>Other window managers</h3></div></div></div><p><span class="application">BibleTime</span> can be used with other window managers such as Gnome, BlackBox,
2885-Fluxbox, OpenBox or Sawfish, providing the appropriate base libarires are
2886+ </p><pre class="screen"><span class="application">BibleTime</span></pre></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-otherwm"></a>Other window managers</h3></div></div></div><p><span class="application">BibleTime</span> can be used with other window managers such as Gnome, BlackBox,
2887+Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
2888 already installed on your computer.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-custom"></a>Startup customization</h3></div></div></div><p>From a terminal you can use <span class="application">BibleTime</span> to open a random verse in the
2889 default bible:
2890 </p><pre class="screen">bibletime --open-default-bible
2891
2892=== modified file 'docs/handbook/de/html/index.html'
2893--- docs/handbook/de/html/index.html 2009-04-05 07:01:43 +0000
2894+++ docs/handbook/de/html/index.html 2009-04-29 17:39:29 +0000
2895@@ -1,4 +1,4 @@
2896-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>The BibleTime handbook</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="description" content="BibleTime is a Bible study tool based on the Sword framwork."><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="next" href="hdbk-intro.html" title="Chapter 1. Einleitung"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">The BibleTime handbook</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="id11527980"></a>The <span class="application">BibleTime</span> handbook</h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">Fred</span> <span class="surname">Saalbach</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Jeffrey</span> <span class="surname">Hoyt</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Martin</span> <span class="surname">Gruner</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Thomas</span> <span class="surname">Abthorpe</span></h3></div></div></div><div><p class="releaseinfo">2.0</p></div><div><p class="copyright">Copyright © 1999-2009 the <span class="application">BibleTime</span> team</p></div><div><div class="legalnotice"><a name="id11545565"></a><p>Der <span class="application">BibleTime</span>-Hilfedialog ist ein Teil von <span class="application">BibleTime</span>.</p></div></div><div><div class="abstract"><p class="title"><b>Abstract</b></p><p><span class="application">BibleTime</span> is a Bible study tool based on the Sword framwork.</p></div></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="hdbk-intro.html">1. Einleitung</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">About BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Vorhandene Werke</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivation</a></span></dt></dl></dd></dl></dd><dt><span class="chapter"><a href="hdbk-term.html">2. BibleTime starten</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-term.html#hdbk-start">How to start BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start"> BibleTime starten</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-otherwm">Other window managers</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-custom">Startup customization</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-startsequence.html">Startup sequence</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-op.html">3. Programmbedienung</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-op.html#hdbk-op-overview">Programmüberblick</a></span></dt><dt><span class="sect1"><a href="hdbk-op-parts.html">Elemente des BibleTime Fensters</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-bookshelf">Das Bücherregal</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-mag">Die Lupe</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-desk">Die Arbeitsfläche</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-search.html">In Werken suchen</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-intext">Searching text in an open read window</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-access">Auf den Suchdialog zugreifen</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-config">Search configuration</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-results">Search results</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-bookshelfmanager.html">Der Bücherregal Verwalter</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-path">Bookshelf path(s) setup</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-installupdate">Install/update work(s)</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-remove">Werk(e) entfernen</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-searchindexes">Search Indexes</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-output.html">Exortieren und Drucken</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-config.html">4. BibleTime einrichten</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-config.html#hdbk-config-bt">BibleTime-Konfigurationsdialog</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-display">
2897+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>The BibleTime handbook</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="description" content="BibleTime is a Bible study tool based on the Sword framework."><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="next" href="hdbk-intro.html" title="Chapter 1. Einleitung"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">The BibleTime handbook</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="id11527980"></a>The <span class="application">BibleTime</span> handbook</h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">Fred</span> <span class="surname">Saalbach</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Jeffrey</span> <span class="surname">Hoyt</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Martin</span> <span class="surname">Gruner</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Thomas</span> <span class="surname">Abthorpe</span></h3></div></div></div><div><p class="releaseinfo">2.0</p></div><div><p class="copyright">Copyright © 1999-2009 the <span class="application">BibleTime</span> team</p></div><div><div class="legalnotice"><a name="id11545565"></a><p>Der <span class="application">BibleTime</span>-Hilfedialog ist ein Teil von <span class="application">BibleTime</span>.</p></div></div><div><div class="abstract"><p class="title"><b>Abstract</b></p><p><span class="application">BibleTime</span> is a Bible study tool based on the Sword framework.</p></div></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="hdbk-intro.html">1. Einleitung</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">About BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Vorhandene Werke</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivation</a></span></dt></dl></dd></dl></dd><dt><span class="chapter"><a href="hdbk-term.html">2. BibleTime starten</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-term.html#hdbk-start">How to start BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start"> BibleTime starten</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-otherwm">Other window managers</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-custom">Startup customization</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-startsequence.html">Startup sequence</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-op.html">3. Programmbedienung</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-op.html#hdbk-op-overview">Programmüberblick</a></span></dt><dt><span class="sect1"><a href="hdbk-op-parts.html">Elemente des BibleTime Fensters</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-bookshelf">Das Bücherregal</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-mag">Die Lupe</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-desk">Die Arbeitsfläche</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-search.html">In Werken suchen</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-intext">Searching text in an open read window</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-access">Auf den Suchdialog zugreifen</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-config">Search configuration</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-results">Search results</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-bookshelfmanager.html">Der Bücherregal Verwalter</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-path">Bookshelf path(s) setup</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-installupdate">Install/update work(s)</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-remove">Werk(e) entfernen</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-searchindexes">Search Indexes</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-output.html">Exortieren und Drucken</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-config.html">4. BibleTime einrichten</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-config.html#hdbk-config-bt">BibleTime-Konfigurationsdialog</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-display">
2898 Display
2899 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">
2900 Languages
2901@@ -18,4 +18,4 @@
2902 Settings
2903 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
2904 Help
2905- </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-toolbar.html">Toolbar reference</a></span></dt><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">HotKeys index</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><b>List of Tables</b></p><dl><dt>3.1. <a href="hdbk-op-search.html#hd-op-search-config-syntax-table"></a></dt><dt>4.1. <a href="hdbk-config.html#hdbk-config-unicode-fonts-table">Unicode Schriftarten</a></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Chapter 1. Einleitung</td></tr></table></div></body></html>
2906+ </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">HotKeys index</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><b>List of Tables</b></p><dl><dt>3.1. <a href="hdbk-op-search.html#hd-op-search-config-syntax-table">Search Types</a></dt><dt>4.1. <a href="hdbk-config.html#hdbk-config-unicode-fonts-table">Unicode Schriftarten</a></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Chapter 1. Einleitung</td></tr></table></div></body></html>
2907
2908=== modified file 'docs/handbook/en/docbook/hdbk-config.docbook'
2909--- docs/handbook/en/docbook/hdbk-config.docbook 2009-04-05 07:01:43 +0000
2910+++ docs/handbook/en/docbook/hdbk-config.docbook 2009-04-24 02:10:38 +0000
2911@@ -37,7 +37,7 @@
2912
2913 <para>By default, &bibletime; uses the default system
2914 display font. You
2915- can override this font if neccessary. Some languages require
2916+ can override this font if necessary. Some languages require
2917 special fonts to be displayed correctly, and this dialog allows
2918 you to specify a custom font for each language.</para>
2919 <mediaobject>
2920@@ -124,7 +124,7 @@
2921 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">
2922 SIL unicode fonts</ulink>
2923 </entry>
2924- <entry>Excellent unicode fonts from the Summer
2925+ <entry>Excellent Unicode fonts from the Summer
2926 Institute of Linguistics.</entry>
2927 </row>
2928 <row>
2929@@ -132,7 +132,7 @@
2930 <ulink url="http://www.nongnu.org/freefont/">
2931 FreeFont</ulink>
2932 </entry>
2933- <entry>A new free unicode font initiative.</entry>
2934+ <entry>A new free Unicode font initiative.</entry>
2935 </row>
2936 <row>
2937 <entry>
2938@@ -186,7 +186,7 @@
2939 right in the dialog. You also have the possibility to specify
2940 standard works that should be used when no specific work is
2941 specified in a reference. An example: The standard Bible is used
2942- to display the content of crossreferences in the Bible. When you
2943+ to display the content of cross references in the Bible. When you
2944 hover over then, the Mag will show the content of the verses
2945 referred to, according to the standard Bible you
2946 specified.</para>
2947
2948=== modified file 'docs/handbook/en/docbook/hdbk-intro.docbook'
2949--- docs/handbook/en/docbook/hdbk-intro.docbook 2009-04-05 07:01:43 +0000
2950+++ docs/handbook/en/docbook/hdbk-intro.docbook 2009-04-29 17:39:29 +0000
2951@@ -4,7 +4,7 @@
2952 <title>About &bibletime;</title>
2953 <para>&bibletime; is a Bible study tool with support for
2954 different types of texts and languages. Even large amounts of works
2955- modules) are easy to install and manage. It is built on the
2956+ modules are easy to install and manage. It is built on the
2957 <ulink url="http://www.crosswire.org/sword">Sword</ulink> library,
2958 which provides the back-end functionality for &bibletime;, such
2959 as viewing Bible text, searching etc. Sword is the flagship product
2960@@ -47,7 +47,7 @@
2961 <term>Commentaries</term>
2962 <listitem>
2963 <para>Commentaries available include classics like John
2964- Wesley's "Notes on the Bible", Matthew Henry`s commentary
2965+ Wesley's "Notes on the Bible", Matthew Henry's commentary
2966 and Luther's "Commentary on Galatians." With the
2967 <emphasis>Personal</emphasis> commentary you can
2968 <link linkend="hdbk-op-parts-desk-write"> record your own
2969@@ -67,7 +67,7 @@
2970 <listitem>
2971 <para>Lexicons available include: Robinson's Morphological
2972 Analysis Codes, Brown-Driver-Briggs Hebrew Lexicon and the
2973- International Standard Bible Encyclopedia. Dictionaries
2974+ International Standard Bible Encyclopaedia. Dictionaries
2975 available include Strong's Hebrew Bible Dictionary,
2976 Strong's Greek Bible Dictionary, Webster's Revised
2977 Unabridged Dictionary of the English Language 1913, Nave's
2978
2979=== modified file 'docs/handbook/en/docbook/hdbk-operation.docbook'
2980--- docs/handbook/en/docbook/hdbk-operation.docbook 2009-04-05 07:01:43 +0000
2981+++ docs/handbook/en/docbook/hdbk-operation.docbook 2009-04-29 17:39:29 +0000
2982@@ -133,7 +133,7 @@
2983 <title>The Desk</title>
2984 <para>The Desk is where the real work with &bibletime; takes
2985 place. Here you can open works from the Bookshelf, read them,
2986- <link linkend="hdbk-op-search">search</link>in them, and even
2987+ <link linkend="hdbk-op-search">search</link> in them, and even
2988 save your annotations in the personal commentary module (see
2989 <link linkend="hdbk-op-parts-desk-write">below</link>).</para>
2990
2991@@ -189,7 +189,7 @@
2992 <para>If
2993 <menuchoice>
2994 <guimenu>Edit this work</guimenu>
2995- </menuchoice>is deactivated, please check if you have write
2996+ </menuchoice> is deactivated, please check if you have write
2997 permission for the files of the personal commentary.</para>
2998 </tip>
2999
3000@@ -281,6 +281,7 @@
3001 'strong:H8077'.</para>
3002 <para>Available text types:
3003 <table id="hd-op-search-config-syntax-table">
3004+ <title>Search Types</title>
3005 <tgroup cols="2">
3006 <thead>
3007 <row>
3008@@ -367,15 +368,15 @@
3009 <menuchoice>
3010 <guimenu>Settings</guimenu>
3011 <guimenuitem>Bookshelf Manager</guimenuitem>
3012- </menuchoice>in the main menu.</para>
3013+ </menuchoice> in the main menu.</para>
3014 <sect2 id="hdbk-op-bookshelfmanager-path">
3015 <title>Bookshelf path(s) setup</title>
3016 <para>Here you can specify where &bibletime; may store your
3017- Bookshelf on the harddrive. You can even store it in multiple
3018+ Bookshelf on the hard drive. You can even store it in multiple
3019 directories. Default is "~/.sword/".</para>
3020 <tip>
3021 <para>If you have a sword CD, but do not want to install all
3022- the works on the harddisk, but use them directly from the CD,
3023+ the works on the hard disk, but use them directly from the CD,
3024 then you can add the path to the CD as one of your bookshelf
3025 paths. When you start &bibletime;, it will show all works
3026 on the CD if it is present.</para>
3027
3028=== modified file 'docs/handbook/en/docbook/hdbk-reference.docbook'
3029--- docs/handbook/en/docbook/hdbk-reference.docbook 2009-04-05 07:01:43 +0000
3030+++ docs/handbook/en/docbook/hdbk-reference.docbook 2009-04-29 17:39:29 +0000
3031@@ -40,16 +40,47 @@
3032 </variablelist>
3033 </para>
3034 </sect2>
3035+
3036 <sect2 id="hdbk-reference-menus-view">
3037 <title>
3038 <guimenu>View</guimenu>
3039 </title>
3040+
3041 <variablelist>
3042+ <varlistentry id="hdbk-reference-menus-view-fullscreenmode">
3043+ <term>
3044+ <menuchoice>
3045+ <shortcut>
3046+ <keycombo action="simul">
3047+ <keycap>F5</keycap>
3048+ </keycombo>
3049+ </shortcut>
3050+ <guimenu>
3051+ <inlinemediaobject>
3052+ <imageobject>
3053+ <imagedata fileref="i_window_fullscreen.png" format="PNG" />
3054+ </imageobject>
3055+ </inlinemediaobject>View</guimenu>
3056+ <guimenuitem>Fullscreen mode</guimenuitem>
3057+ </menuchoice>
3058+ </term>
3059+ <listitem>
3060+ <para>
3061+ <action>Toggles full screen display.</action> Toggle this
3062+ setting to maximize the &bibletime; window.</para>
3063+ </listitem>
3064+ </varlistentry>
3065+
3066 <varlistentry id="hdbk-reference-menus-view-showtoolbar">
3067 <term>
3068 <menuchoice>
3069+ <shortcut>
3070+ <keycombo action="simul">
3071+ <keycap>F6</keycap>
3072+ </keycombo>
3073+ </shortcut>
3074 <guimenu>View</guimenu>
3075- <guimenuitem>Show Toolbar</guimenuitem>
3076+ <guimenuitem>Show toolbar</guimenuitem>
3077 </menuchoice>
3078 </term>
3079 <listitem>
3080@@ -58,20 +89,11 @@
3081 setting to turn the main toolbar on or off.</para>
3082 </listitem>
3083 </varlistentry>
3084+
3085 <varlistentry id="hdbk-reference-menus-view-showbookshelf">
3086 <term>
3087 <menuchoice>
3088- <shortcut>
3089- <keycombo action="simul">
3090- <keycap>F9</keycap>
3091- </keycombo>
3092- </shortcut>
3093- <guimenu>
3094- <inlinemediaobject>
3095- <imageobject>
3096- <imagedata fileref="i_sidetree.png" format="PNG" />
3097- </imageobject>
3098- </inlinemediaobject>View</guimenu>
3099+ <guimenu>View</guimenu>
3100 <guimenuitem>Show Bookshelf</guimenuitem>
3101 </menuchoice>
3102 </term>
3103@@ -83,20 +105,11 @@
3104 Mag.</para>
3105 </listitem>
3106 </varlistentry>
3107+
3108 <varlistentry id="hdbk-reference-menus-view-showmag">
3109 <term>
3110 <menuchoice>
3111- <shortcut>
3112- <keycombo action="simul">
3113- <keycap>F8</keycap>
3114- </keycombo>
3115- </shortcut>
3116- <guimenu>
3117- <inlinemediaobject>
3118- <imageobject>
3119- <imagedata fileref="i_sidetree.png" format="PNG" />
3120- </imageobject>
3121- </inlinemediaobject>View</guimenu>
3122+ <guimenu>View</guimenu>
3123 <guimenuitem>Show Mag</guimenuitem>
3124 </menuchoice>
3125 </term>
3126@@ -300,32 +313,6 @@
3127 <guimenu>Settings</guimenu>
3128 </title>
3129 <variablelist>
3130- <varlistentry id="hdbk-reference-menus-settings-toolbars">
3131- <term>
3132- <menuchoice>
3133- <guimenu>
3134- <inlinemediaobject>
3135- <imageobject>
3136- <imagedata fileref="i_configuretoolbars.png"
3137- format="PNG" />
3138- </imageobject>
3139- </inlinemediaobject>Settings</guimenu>
3140- <guimenuitem>Configure toolbars</guimenuitem>
3141- </menuchoice>
3142- </term>
3143- <listitem>
3144- <para>
3145- <action>Opens a dialog where you can customize
3146- &bibletime;'s toolbar</action>. Just try it out, you
3147- can move around the toolbar buttons and even add new ones.
3148- Most of the entries available from the main menu can be put
3149- on the toolbar as buttons. If you need a certain feature
3150- often, you might want to put a button on the main menu, so
3151- that you can access it with only one click. Please see
3152- <link linkend="hdbk-config-toolbar">this section</link> for
3153- further information.</para>
3154- </listitem>
3155- </varlistentry>
3156 <varlistentry id="hdbk-reference-menus-settings-bibletime">
3157 <term>
3158 <menuchoice>
3159@@ -371,57 +358,100 @@
3160 <para>
3161 <action>Opens a dialog where you can change your Sword
3162 configuration and manage your bookshelf</action>. Please
3163- see
3164- <link linkend="hdbk-op-bookshelfmanager">this
3165+ see <link linkend="hdbk-op-bookshelfmanager">this
3166 section</link> for details.</para>
3167 </listitem>
3168 </varlistentry>
3169 </variablelist>
3170 </sect2>
3171+
3172 <sect2 id="hdbk-reference-menus-help">
3173 <title>
3174 <guimenu>Help</guimenu>
3175- </title>TODO: ADD</sect2>
3176- </sect1>
3177- <sect1 id="hdbk-reference-toolbar">
3178- <title>Toolbar reference</title>
3179- <para>Please review
3180- <link linkend="hdbk-reference-menus">the preceding
3181- section</link> for an explanation of the buttons that you find on
3182- the toolbar. You can also
3183- <action>move the cursor over a button and wait a few
3184- seconds</action> to activate the button's tooltip with a short
3185- description.</para>
3186- <para>You can adapt the toolbar to your needs. Please use the
3187- following entry in the main menu:
3188- <variablelist>
3189- <varlistentry>
3190- <term>
3191- <menuchoice>
3192- <guimenu>
3193- <inlinemediaobject>
3194- <imageobject>
3195- <imagedata fileref="i_configuretoolbars.png"
3196- format="PNG" />
3197- </imageobject>
3198- </inlinemediaobject>Settings</guimenu>
3199- <guimenuitem>Configure toolbars</guimenuitem>
3200- </menuchoice>
3201- </term>
3202- <listitem>
3203- <para>Configure toolbars</para>
3204- </listitem>
3205- </varlistentry>
3206- </variablelist>Please see
3207- <link linkend="hdbk-reference-menus-settings-toolbars">this
3208- section</link> for detailed instructions.</para>
3209- </sect1>
3210+ </title>
3211+ <variablelist>
3212+ <varlistentry id="hdbk-reference-menus-help-bibletime">
3213+ <term>
3214+ <menuchoice>
3215+ <shortcut>
3216+ <keycombo action="simul">
3217+ <keycap>F1</keycap>
3218+ </keycombo>
3219+ </shortcut>
3220+ <guimenu>
3221+ <inlinemediaobject>
3222+ <imageobject>
3223+ <imagedata fileref="i_contents2.png" format="PNG" />
3224+ </imageobject>
3225+ </inlinemediaobject>Help</guimenu>
3226+ <guimenuitem>Handbook</guimenuitem>
3227+ </menuchoice>
3228+ </term>
3229+ <listitem>
3230+ <para>
3231+ <action>Opens &bibletime;'s user guide</action>
3232+ You are reading it now.</para>
3233+ </listitem>
3234+ </varlistentry>
3235+
3236+ <varlistentry id="hdbk-reference-menus-help-bible_study_howto">
3237+ <term>
3238+ <menuchoice>
3239+ <shortcut>
3240+ <keycombo action="simul">
3241+ <keycap>F2</keycap>
3242+ </keycombo>
3243+ </shortcut>
3244+ <guimenu>
3245+ <inlinemediaobject>
3246+ <imageobject>
3247+ <imagedata fileref="i_contents2.png"
3248+ format="PNG" />
3249+ </imageobject>
3250+ </inlinemediaobject>Help</guimenu>
3251+ <guimenuitem>Bible Study Howto</guimenuitem>
3252+ </menuchoice>
3253+ </term>
3254+ <listitem>
3255+ <para>
3256+ <action>Opens a guide on how to study the Bible</action>
3257+ It is the hope of the &bibletime; team that this HowTo will
3258+ provoke the readers to study the scriptures to see what
3259+ they say. This particular study guide has been chosen as
3260+ it takes care not to advocate any particular
3261+ denominational doctrine. We expect you to read and study
3262+ the scriptures to understand what they say. If you start
3263+ with the attitude that you want to have the Lord sow his
3264+ word in your heart He will not disappoint you.</para>
3265+ </listitem>
3266+ </varlistentry>
3267+
3268+ <varlistentry id="hdbk-reference-menus-help-about">
3269+ <term>
3270+ <menuchoice>
3271+ <guimenu>Help</guimenu>
3272+ <guimenuitem>About</guimenuitem>
3273+ </menuchoice>
3274+ </term>
3275+ <listitem>
3276+ <para>
3277+ <action>Opens a window about &bibletime; project
3278+ information</action>
3279+ contains information about &bibletime; software version,
3280+ project contributors, &sword; software version, &qt; software
3281+ version and the license agreement.</para>
3282+ </listitem>
3283+ </varlistentry>
3284+ </variablelist>
3285+ </sect2>
3286+ </sect1>
3287+
3288 <sect1 id="hdbk-reference-hotkeys">
3289 <title>HotKeys index</title>
3290 <para>This is index of all hotkeys and their corresponding
3291 description in the handbook. The hotkeys are sorted (roughly)
3292 alphabetical. If you want to directly find out which hotkey a
3293- certain menu item has, you can either look at the entry itelf in
3294+ certain menu item has, you can either look at the entry itself in
3295 &bibletime; (as it always shows the hotkey), or you can look it
3296 up in
3297 <link linkend="hdbk-reference-menus">this section</link>.</para>
3298
3299=== modified file 'docs/handbook/en/docbook/hdbk-start.docbook'
3300--- docs/handbook/en/docbook/hdbk-start.docbook 2009-04-05 07:01:43 +0000
3301+++ docs/handbook/en/docbook/hdbk-start.docbook 2009-04-24 02:10:38 +0000
3302@@ -18,13 +18,13 @@
3303 <para>&bibletime; can also be launched from a terminal
3304 command prompt. To launch &bibletime;, open a terminal window
3305 and type:
3306- <screen>bibletime</screen></para>
3307+ <screen>&bibletime;</screen></para>
3308 </sect2>
3309 <sect2 id="hdbk-start-otherwm">
3310 <title>Other window managers</title>
3311 <para>&bibletime; can be used with other window managers such
3312 as Gnome, BlackBox, Fluxbox, OpenBox or Sawfish, providing the
3313- appropriate base libarires are already
3314+ appropriate base libraries are already
3315 installed on your computer.</para>
3316 </sect2>
3317 <sect2 id="hdbk-start-custom">
3318
3319=== modified file 'docs/handbook/en/docbook/index.docbook'
3320--- docs/handbook/en/docbook/index.docbook 2009-04-05 07:01:43 +0000
3321+++ docs/handbook/en/docbook/index.docbook 2009-04-29 17:39:29 +0000
3322@@ -5,6 +5,7 @@
3323 <!ENTITY bibletime '<application>BibleTime</application>'>
3324 <!ENTITY sword '<application>Sword</application>'>
3325 <!ENTITY kde '<application>KDE</application>'>
3326+ <!ENTITY qt '<application>Qt</application>'>
3327
3328 <!ENTITY Shift 'Shift'>
3329 <!ENTITY Ctrl 'Ctrl'>
3330@@ -46,11 +47,11 @@
3331 <para>The &bibletime; handbook is part of
3332 &bibletime;.</para>
3333 </legalnotice>
3334- <date>2005-08</date>
3335+ <date>2009-04</date>
3336 <releaseinfo>2.0</releaseinfo>
3337 <abstract>
3338 <para>&bibletime; is a Bible study tool based on the Sword
3339- framwork.</para>
3340+ framework.</para>
3341 </abstract>
3342 <keywordset>
3343 <keyword>QT4</keyword>
3344
3345=== modified file 'docs/handbook/en/html/hdbk-config.html'
3346--- docs/handbook/en/html/hdbk-config.html 2009-04-05 07:01:43 +0000
3347+++ docs/handbook/en/html/hdbk-config.html 2009-04-29 17:39:29 +0000
3348@@ -24,7 +24,7 @@
3349 biblical booknames. Set this to your native language, if it is
3350 available, and you'll feel at home.</p><p>By default, <span class="application">BibleTime</span> uses the default system
3351 display font. You
3352- can override this font if neccessary. Some languages require
3353+ can override this font if necessary. Some languages require
3354 special fonts to be displayed correctly, and this dialog allows
3355 you to specify a custom font for each language.</p><div class="mediaobject"><img src="ss_configfonts.png" alt="Options Dialog - fonts"><div class="caption"><p>The Options dialog - Fonts.</p></div></div><p><span class="application">BibleTime</span> can now use all supported fonts.
3356 As long as the works you are interested in display correctly
3357@@ -58,11 +58,11 @@
3358 wide range of characters.</td></tr><tr><td>
3359 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">
3360 SIL unicode fonts</a>
3361- </td><td>Excellent unicode fonts from the Summer
3362+ </td><td>Excellent Unicode fonts from the Summer
3363 Institute of Linguistics.</td></tr><tr><td>
3364 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">
3365 FreeFont</a>
3366- </td><td>A new free unicode font initiative.</td></tr><tr><td>
3367+ </td><td>A new free Unicode font initiative.</td></tr><tr><td>
3368 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">
3369 Crosswire's font directory</a>
3370 </td><td>Several fonts available from the Crosswire Bible
3371@@ -90,7 +90,7 @@
3372 right in the dialog. You also have the possibility to specify
3373 standard works that should be used when no specific work is
3374 specified in a reference. An example: The standard Bible is used
3375- to display the content of crossreferences in the Bible. When you
3376+ to display the content of cross references in the Bible. When you
3377 hover over then, the Mag will show the content of the verses
3378 referred to, according to the standard Bible you
3379 specified.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-hotkeys"></a>
3380
3381=== modified file 'docs/handbook/en/html/hdbk-intro.html'
3382--- docs/handbook/en/html/hdbk-intro.html 2009-04-05 07:01:43 +0000
3383+++ docs/handbook/en/html/hdbk-intro.html 2009-04-29 17:39:29 +0000
3384@@ -1,6 +1,6 @@
3385 <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 1. Introduction</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="index.html" title="The BibleTime handbook"><link rel="prev" href="index.html" title="The BibleTime handbook"><link rel="next" href="hdbk-term.html" title="Chapter 2. Starting BibleTime"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 1. Introduction</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-term.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-intro"></a>Chapter 1. Introduction</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">About BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Available works</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivation</a></span></dt></dl></dd></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-intro-about"></a>About <span class="application">BibleTime</span></h2></div></div></div><p><span class="application">BibleTime</span> is a Bible study tool with support for
3386 different types of texts and languages. Even large amounts of works
3387- modules) are easy to install and manage. It is built on the
3388+ modules are easy to install and manage. It is built on the
3389 <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library,
3390 which provides the back-end functionality for <span class="application">BibleTime</span>, such
3391 as viewing Bible text, searching etc. Sword is the flagship product
3392@@ -21,7 +21,7 @@
3393 Greek). This is the most advanced section in the library of
3394 the Sword project.</p></dd><dt><span class="term">Books</span></dt><dd><p>Books available include "Imitation of Christ", "Enuma
3395 Elish", and "Josephus: The Complete Works"</p></dd><dt><span class="term">Commentaries</span></dt><dd><p>Commentaries available include classics like John
3396- Wesley's "Notes on the Bible", Matthew Henry`s commentary
3397+ Wesley's "Notes on the Bible", Matthew Henry's commentary
3398 and Luther's "Commentary on Galatians." With the
3399 <span class="emphasis"><em>Personal</em></span> commentary you can
3400 <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Editing your own commentary"> record your own
3401@@ -29,7 +29,7 @@
3402 God's word. Available works include Daily Light on the
3403 Daily Path, and the Losungen.</p></dd><dt><span class="term">Lexicons/Dictionaries</span></dt><dd><p>Lexicons available include: Robinson's Morphological
3404 Analysis Codes, Brown-Driver-Briggs Hebrew Lexicon and the
3405- International Standard Bible Encyclopedia. Dictionaries
3406+ International Standard Bible Encyclopaedia. Dictionaries
3407 available include Strong's Hebrew Bible Dictionary,
3408 Strong's Greek Bible Dictionary, Webster's Revised
3409 Unabridged Dictionary of the English Language 1913, Nave's
3410
3411=== modified file 'docs/handbook/en/html/hdbk-op-bookshelfmanager.html'
3412--- docs/handbook/en/html/hdbk-op-bookshelfmanager.html 2009-04-05 07:01:43 +0000
3413+++ docs/handbook/en/html/hdbk-op-bookshelfmanager.html 2009-04-29 17:39:29 +0000
3414@@ -5,10 +5,10 @@
3415 your Bookshelf. You can install new works to your Bookshelf, and
3416 update or remove existing works from your Bookshelf. Access it by
3417 clicking
3418- <span class="guimenu">Settings</span> &#8594; <span class="guimenuitem">Bookshelf Manager</span>in the main menu.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-path"></a>Bookshelf path(s) setup</h3></div></div></div><p>Here you can specify where <span class="application">BibleTime</span> may store your
3419- Bookshelf on the harddrive. You can even store it in multiple
3420+ <span class="guimenu">Settings</span> &#8594; <span class="guimenuitem">Bookshelf Manager</span> in the main menu.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-path"></a>Bookshelf path(s) setup</h3></div></div></div><p>Here you can specify where <span class="application">BibleTime</span> may store your
3421+ Bookshelf on the hard drive. You can even store it in multiple
3422 directories. Default is "~/.sword/".</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If you have a sword CD, but do not want to install all
3423- the works on the harddisk, but use them directly from the CD,
3424+ the works on the hard disk, but use them directly from the CD,
3425 then you can add the path to the CD as one of your bookshelf
3426 paths. When you start <span class="application">BibleTime</span>, it will show all works
3427 on the CD if it is present.</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-installupdate"></a>Install/update work(s)</h3></div></div></div><p>With this facility, you can connect to a repository of
3428
3429=== modified file 'docs/handbook/en/html/hdbk-op-parts.html'
3430--- docs/handbook/en/html/hdbk-op-parts.html 2009-04-05 07:01:43 +0000
3431+++ docs/handbook/en/html/hdbk-op-parts.html 2009-04-29 17:39:29 +0000
3432@@ -61,7 +61,7 @@
3433 be displayed in the Mag, and not in the text itself. Just try it
3434 out.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-parts-desk"></a>The Desk</h3></div></div></div><p>The Desk is where the real work with <span class="application">BibleTime</span> takes
3435 place. Here you can open works from the Bookshelf, read them,
3436- <a class="link" href="hdbk-op-search.html" title="Searching in works">search</a>in them, and even
3437+ <a class="link" href="hdbk-op-search.html" title="Searching in works">search</a> in them, and even
3438 save your annotations in the personal commentary module (see
3439 <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Editing your own commentary">below</a>).</p><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-parts-desk-read"></a>Reading works</h4></div></div></div><p>As we have
3440 <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-bookshelf-open" title="Reading works">already
3441@@ -93,6 +93,6 @@
3442 <span class="guimenuitem">Plain text</span>(source code editor) or
3443 <span class="guimenuitem">HTML</span>(basic gui wysiwyg
3444 editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If
3445- <span class="guimenu">Edit this work</span>is deactivated, please check if you have write
3446+ <span class="guimenu">Edit this work</span> is deactivated, please check if you have write
3447 permission for the files of the personal commentary.</p></div><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Drag &amp; drop works here. Drop a verse reference and
3448 the text of the verse will be inserted.</p></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-op.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-op.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-op-search.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 3. Program operation </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Searching in works</td></tr></table></div></body></html>
3449
3450=== modified file 'docs/handbook/en/html/hdbk-op-search.html'
3451--- docs/handbook/en/html/hdbk-op-search.html 2009-04-05 07:01:43 +0000
3452+++ docs/handbook/en/html/hdbk-op-search.html 2009-04-29 17:39:29 +0000
3453@@ -35,7 +35,7 @@
3454 type followed by ':', and then the search term. For example, to
3455 search for the Strong's number H8077, use
3456 'strong:H8077'.</p><p>Available text types:
3457- </p><div class="table"><a name="hd-op-search-config-syntax-table"></a><p class="title"><b>Table 3.1. </b></p><div class="table-contents"><table border="1"><colgroup><col><col></colgroup><thead><tr><th>Prefix</th><th>Meaning</th></tr></thead><tbody><tr><td>heading:</td><td>searches headings</td></tr><tr><td>footnote:</td><td>searches footnotes</td></tr><tr><td>strong:</td><td>searches Strong's Numbers</td></tr><tr><td>morph:</td><td>searches morphology codes</td></tr></tbody></table></div></div><p><br class="table-break"></p><p>BibleTime uses the Lucene search engine to perform your
3458+ </p><div class="table"><a name="hd-op-search-config-syntax-table"></a><p class="title"><b>Table 3.1. Search Types</b></p><div class="table-contents"><table summary="Search Types" border="1"><colgroup><col><col></colgroup><thead><tr><th>Prefix</th><th>Meaning</th></tr></thead><tbody><tr><td>heading:</td><td>searches headings</td></tr><tr><td>footnote:</td><td>searches footnotes</td></tr><tr><td>strong:</td><td>searches Strong's Numbers</td></tr><tr><td>morph:</td><td>searches morphology codes</td></tr></tbody></table></div></div><p><br class="table-break"></p><p>BibleTime uses the Lucene search engine to perform your
3459 searches. It has many advanced features, and you can read more
3460 about it here:
3461 <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top">
3462
3463=== modified file 'docs/handbook/en/html/hdbk-reference-hotkeys.html'
3464--- docs/handbook/en/html/hdbk-reference-hotkeys.html 2009-04-05 07:01:43 +0000
3465+++ docs/handbook/en/html/hdbk-reference-hotkeys.html 2009-04-29 17:39:29 +0000
3466@@ -1,7 +1,7 @@
3467-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>HotKeys index</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Reference"><link rel="prev" href="hdbk-reference-toolbar.html" title="Toolbar reference"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">HotKeys index</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference-toolbar.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Reference</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-hotkeys"></a>HotKeys index</h2></div></div></div><p>This is index of all hotkeys and their corresponding
3468+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>HotKeys index</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Reference"><link rel="prev" href="hdbk-reference.html" title="Chapter 5. Reference"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">HotKeys index</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Reference</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-hotkeys"></a>HotKeys index</h2></div></div></div><p>This is index of all hotkeys and their corresponding
3469 description in the handbook. The hotkeys are sorted (roughly)
3470 alphabetical. If you want to directly find out which hotkey a
3471- certain menu item has, you can either look at the entry itelf in
3472+ certain menu item has, you can either look at the entry itself in
3473 <span class="application">BibleTime</span> (as it always shows the hotkey), or you can look it
3474 up in
3475 <a class="link" href="hdbk-reference.html#hdbk-reference-menus" title="Main menu reference">this section</a>.</p><div class="informaltable"><table border="1"><colgroup><col><col></colgroup><thead><tr><th>Hotkey</th><th>Description</th></tr></thead><tbody><tr><td>
3476@@ -95,4 +95,4 @@
3477 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag">
3478 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show mag</span>
3479 </a>equivalent; toggles display of the mag(nifying
3480- glass).</td></tr></tbody></table></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference-toolbar.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">Toolbar reference </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
3481+ glass).</td></tr></tbody></table></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">Chapter 5. Reference </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
3482
3483=== modified file 'docs/handbook/en/html/hdbk-reference-toolbar.html'
3484--- docs/handbook/en/html/hdbk-reference-toolbar.html 2009-04-05 07:01:43 +0000
3485+++ docs/handbook/en/html/hdbk-reference-toolbar.html 2009-04-29 17:39:29 +0000
3486@@ -10,5 +10,5 @@
3487 <span class="guimenu">
3488 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
3489 </span></dt><dd><p>Configure toolbars</p></dd></dl></div><p>Please see
3490- <a class="link" href="hdbk-reference.html#hdbk-reference-menus-settings-toolbars">this
3491+ <a class="link" href="">this
3492 section</a> for detailed instructions.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 5. Reference </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> HotKeys index</td></tr></table></div></body></html>
3493
3494=== modified file 'docs/handbook/en/html/hdbk-reference.html'
3495--- docs/handbook/en/html/hdbk-reference.html 2009-04-05 07:01:43 +0000
3496+++ docs/handbook/en/html/hdbk-reference.html 2009-04-29 17:39:29 +0000
3497@@ -1,4 +1,4 @@
3498-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 5. Reference</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="index.html" title="The BibleTime handbook"><link rel="prev" href="hdbk-config.html" title="Chapter 4. Configuring BibleTime"><link rel="next" href="hdbk-reference-toolbar.html" title="Toolbar reference"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 5. Reference</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference-toolbar.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-reference"></a>Chapter 5. Reference</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-reference.html#hdbk-reference-menus">Main menu reference</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-file">
3499+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 5. Reference</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="up" href="index.html" title="The BibleTime handbook"><link rel="prev" href="hdbk-config.html" title="Chapter 4. Configuring BibleTime"><link rel="next" href="hdbk-reference-hotkeys.html" title="HotKeys index"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 5. Reference</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-reference"></a>Chapter 5. Reference</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-reference.html#hdbk-reference-menus">Main menu reference</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-file">
3500 File
3501 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">
3502 View
3503@@ -10,7 +10,7 @@
3504 Settings
3505 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
3506 Help
3507- </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-toolbar.html">Toolbar reference</a></span></dt><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">HotKeys index</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-menus"></a>Main menu reference</h2></div></div></div><p>In this section you can find detailed descriptions of all
3508+ </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">HotKeys index</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-menus"></a>Main menu reference</h2></div></div></div><p>In this section you can find detailed descriptions of all
3509 entries in the main menu of <span class="application">BibleTime</span>. They are ordered in
3510 just the way they appear in <span class="application">BibleTime</span>, with all the sub-items
3511 listed under the major menu item they belong to. You can also see
3512@@ -27,20 +27,23 @@
3513 if you want to write unsaved changes to disk.</p></dd></dl></div><p>
3514 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>
3515 <span class="guimenu">View</span>
3516- </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
3517- <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Toolbar</span>
3518+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-fullscreenmode"></a><span class="term">
3519+ <span class="guimenu">
3520+ <span class="inlinemediaobject"><img src="i_window_fullscreen.png"></span>View</span> &#8594; <span class="guimenuitem">Fullscreen mode</span> (<span class="shortcut"><strong><span class="keycap"><strong>F5</strong></span></strong></span>)
3521+ </span></dt><dd><p>
3522+ <span class="action">Toggles full screen display.</span> Toggle this
3523+ setting to maximize the <span class="application">BibleTime</span> window.</p></dd><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
3524+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show toolbar</span> (<span class="shortcut"><strong><span class="keycap"><strong>F6</strong></span></strong></span>)
3525 </span></dt><dd><p>
3526 <span class="action">Toggles Toolbar display.</span> Toggle this
3527 setting to turn the main toolbar on or off.</p></dd><dt><a name="hdbk-reference-menus-view-showbookshelf"></a><span class="term">
3528- <span class="guimenu">
3529- <span class="inlinemediaobject"><img src="i_sidetree.png"></span>View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span> (<span class="shortcut"><strong><span class="keycap"><strong>F9</strong></span></strong></span>)
3530+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span>
3531 </span></dt><dd><p>
3532 <span class="action">Toggles display of the Bookshelf.</span> Toggle
3533 this setting to turn the Bookshelf on the left pane on or
3534 off. This can be handy if you need more space for the
3535 Mag.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">
3536- <span class="guimenu">
3537- <span class="inlinemediaobject"><img src="i_sidetree.png"></span>View</span> &#8594; <span class="guimenuitem">Show Mag</span> (<span class="shortcut"><strong><span class="keycap"><strong>F8</strong></span></strong></span>)
3538+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Mag</span>
3539 </span></dt><dd><p>
3540 <span class="action">Toggles display of the Mag(nifying
3541 glass).</span> Toggle this setting to turn the Mag on the
3542@@ -101,19 +104,7 @@
3543 </span></dt><dd><p>
3544 <span class="action">Closes all open windows</span>.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-settings"></a>
3545 <span class="guimenu">Settings</span>
3546- </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-toolbars"></a><span class="term">
3547- <span class="guimenu">
3548- <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
3549- </span></dt><dd><p>
3550- <span class="action">Opens a dialog where you can customize
3551- <span class="application">BibleTime</span>'s toolbar</span>. Just try it out, you
3552- can move around the toolbar buttons and even add new ones.
3553- Most of the entries available from the main menu can be put
3554- on the toolbar as buttons. If you need a certain feature
3555- often, you might want to put a button on the main menu, so
3556- that you can access it with only one click. Please see
3557- <a class="link" href="">this section</a> for
3558- further information.</p></dd><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
3559+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
3560 <span class="guimenu">
3561 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>
3562 </span></dt><dd><p>
3563@@ -128,8 +119,31 @@
3564 </span></dt><dd><p>
3565 <span class="action">Opens a dialog where you can change your Sword
3566 configuration and manage your bookshelf</span>. Please
3567- see
3568- <a class="link" href="hdbk-op-bookshelfmanager.html" title="The Bookshelf Manager">this
3569+ see <a class="link" href="hdbk-op-bookshelfmanager.html" title="The Bookshelf Manager">this
3570 section</a> for details.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-help"></a>
3571 <span class="guimenu">Help</span>
3572- </h3></div></div></div>TODO: ADD</div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-toolbar.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 4. Configuring BibleTime </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Toolbar reference</td></tr></table></div></body></html>
3573+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-help-bibletime"></a><span class="term">
3574+ <span class="guimenu">
3575+ <span class="inlinemediaobject"><img src="i_contents2.png"></span>Help</span> &#8594; <span class="guimenuitem">Handbook</span> (<span class="shortcut"><strong><span class="keycap"><strong>F1</strong></span></strong></span>)
3576+ </span></dt><dd><p>
3577+ <span class="action">Opens <span class="application">BibleTime</span>'s user guide</span>
3578+ You are reading it now.</p></dd><dt><a name="hdbk-reference-menus-help-bible_study_howto"></a><span class="term">
3579+ <span class="guimenu">
3580+ <span class="inlinemediaobject"><img src="i_contents2.png"></span>Help</span> &#8594; <span class="guimenuitem">Bible Study Howto</span> (<span class="shortcut"><strong><span class="keycap"><strong>F2</strong></span></strong></span>)
3581+ </span></dt><dd><p>
3582+ <span class="action">Opens a guide on how to study the Bible</span>
3583+ It is the hope of the <span class="application">BibleTime</span> team that this HowTo will
3584+ provoke the readers to study the scriptures to see what
3585+ they say. This particular study guide has been chosen as
3586+ it takes care not to advocate any particular
3587+ denominational doctrine. We expect you to read and study
3588+ the scriptures to understand what they say. If you start
3589+ with the attitude that you want to have the Lord sow his
3590+ word in your heart He will not disappoint you.</p></dd><dt><a name="hdbk-reference-menus-help-about"></a><span class="term">
3591+ <span class="guimenu">Help</span> &#8594; <span class="guimenuitem">About</span>
3592+ </span></dt><dd><p>
3593+ <span class="action">Opens a window about <span class="application">BibleTime</span> project
3594+ information</span>
3595+ contains information about <span class="application">BibleTime</span> software version,
3596+ project contributors, <span class="application">Sword</span> software version, <span class="application">Qt</span> software
3597+ version and the license agreement.</p></dd></dl></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 4. Configuring BibleTime </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> HotKeys index</td></tr></table></div></body></html>
3598
3599=== modified file 'docs/handbook/en/html/hdbk-term.html'
3600--- docs/handbook/en/html/hdbk-term.html 2009-04-05 07:01:43 +0000
3601+++ docs/handbook/en/html/hdbk-term.html 2009-04-29 17:39:29 +0000
3602@@ -4,9 +4,9 @@
3603 </p><div class="mediaobject"><img src="i_bibletime.png" alt="BibleTime start icon"></div><p><span class="application">BibleTime</span> can also be launched from a terminal
3604 command prompt. To launch <span class="application">BibleTime</span>, open a terminal window
3605 and type:
3606- </p><pre class="screen">bibletime</pre></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-otherwm"></a>Other window managers</h3></div></div></div><p><span class="application">BibleTime</span> can be used with other window managers such
3607+ </p><pre class="screen"><span class="application">BibleTime</span></pre></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-otherwm"></a>Other window managers</h3></div></div></div><p><span class="application">BibleTime</span> can be used with other window managers such
3608 as Gnome, BlackBox, Fluxbox, OpenBox or Sawfish, providing the
3609- appropriate base libarires are already
3610+ appropriate base libraries are already
3611 installed on your computer.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-custom"></a>Startup customization</h3></div></div></div><p>From a terminal you can use <span class="application">BibleTime</span> to open a
3612 random verse in the default bible:
3613 </p><pre class="screen">bibletime --open-default-bible
3614
3615=== added file 'docs/handbook/en/html/i_contents2.png'
3616Binary files docs/handbook/en/html/i_contents2.png 1970-01-01 00:00:00 +0000 and docs/handbook/en/html/i_contents2.png 2009-04-29 17:39:29 +0000 differ
3617=== modified file 'docs/handbook/en/html/i_find.png'
3618Binary files docs/handbook/en/html/i_find.png 2009-04-05 07:01:43 +0000 and docs/handbook/en/html/i_find.png 2009-04-29 17:39:29 +0000 differ
3619=== added file 'docs/handbook/en/html/i_view_index.png'
3620Binary files docs/handbook/en/html/i_view_index.png 1970-01-01 00:00:00 +0000 and docs/handbook/en/html/i_view_index.png 2009-04-29 17:39:29 +0000 differ
3621=== added file 'docs/handbook/en/html/i_view_mag.png'
3622Binary files docs/handbook/en/html/i_view_mag.png 1970-01-01 00:00:00 +0000 and docs/handbook/en/html/i_view_mag.png 2009-04-29 17:39:29 +0000 differ
3623=== added file 'docs/handbook/en/html/i_window_fullscreen.png'
3624Binary files docs/handbook/en/html/i_window_fullscreen.png 1970-01-01 00:00:00 +0000 and docs/handbook/en/html/i_window_fullscreen.png 2009-04-29 17:39:29 +0000 differ
3625=== modified file 'docs/handbook/en/html/index.html'
3626--- docs/handbook/en/html/index.html 2009-04-05 07:01:43 +0000
3627+++ docs/handbook/en/html/index.html 2009-04-29 17:39:29 +0000
3628@@ -1,6 +1,6 @@
3629-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>The BibleTime handbook</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="description" content="BibleTime is a Bible study tool based on the Sword framwork."><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="next" href="hdbk-intro.html" title="Chapter 1. Introduction"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">The BibleTime handbook</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="id11527980"></a>The <span class="application">BibleTime</span> handbook</h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">Fred</span> <span class="surname">Saalbach</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Jeffrey</span> <span class="surname">Hoyt</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Martin</span> <span class="surname">Gruner</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Thomas</span> <span class="surname">Abthorpe</span></h3></div></div></div><div><p class="releaseinfo">2.0</p></div><div><p class="copyright">Copyright © 1999-2009 the <span class="application">BibleTime</span> team</p></div><div><div class="legalnotice"><a name="id11545565"></a><p>The <span class="application">BibleTime</span> handbook is part of
3630+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>The BibleTime handbook</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="description" content="BibleTime is a Bible study tool based on the Sword framework."><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="The BibleTime handbook"><link rel="next" href="hdbk-intro.html" title="Chapter 1. Introduction"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">The BibleTime handbook</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="id11527980"></a>The <span class="application">BibleTime</span> handbook</h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">Fred</span> <span class="surname">Saalbach</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Jeffrey</span> <span class="surname">Hoyt</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Martin</span> <span class="surname">Gruner</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Thomas</span> <span class="surname">Abthorpe</span></h3></div></div></div><div><p class="releaseinfo">2.0</p></div><div><p class="copyright">Copyright © 1999-2009 the <span class="application">BibleTime</span> team</p></div><div><div class="legalnotice"><a name="id11545565"></a><p>The <span class="application">BibleTime</span> handbook is part of
3631 <span class="application">BibleTime</span>.</p></div></div><div><div class="abstract"><p class="title"><b>Abstract</b></p><p><span class="application">BibleTime</span> is a Bible study tool based on the Sword
3632- framwork.</p></div></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="hdbk-intro.html">1. Introduction</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">About BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Available works</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivation</a></span></dt></dl></dd></dl></dd><dt><span class="chapter"><a href="hdbk-term.html">2. Starting BibleTime</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-term.html#hdbk-start">How to start BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start">Starting BibleTime</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-otherwm">Other window managers</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-custom">Startup customization</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-startsequence.html">Startup sequence</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-op.html">3. Program operation</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-op.html#hdbk-op-overview">Program overview</a></span></dt><dt><span class="sect1"><a href="hdbk-op-parts.html">Parts of the BibleTime application window</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-bookshelf">The Bookshelf</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-mag">The Mag(nifying glass)</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-desk">The Desk</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-search.html">Searching in works</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-intext">Searching text in an open read window</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-access">Accessing the search dialog</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-config">Search configuration</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-results">Search results</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-bookshelfmanager.html">The
3633+ framework.</p></div></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="hdbk-intro.html">1. Introduction</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">About BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Available works</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivation</a></span></dt></dl></dd></dl></dd><dt><span class="chapter"><a href="hdbk-term.html">2. Starting BibleTime</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-term.html#hdbk-start">How to start BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start">Starting BibleTime</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-otherwm">Other window managers</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-custom">Startup customization</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-startsequence.html">Startup sequence</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-op.html">3. Program operation</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-op.html#hdbk-op-overview">Program overview</a></span></dt><dt><span class="sect1"><a href="hdbk-op-parts.html">Parts of the BibleTime application window</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-bookshelf">The Bookshelf</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-mag">The Mag(nifying glass)</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-desk">The Desk</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-search.html">Searching in works</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-intext">Searching text in an open read window</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-access">Accessing the search dialog</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-config">Search configuration</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-results">Search results</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-bookshelfmanager.html">The
3634 Bookshelf Manager</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-path">Bookshelf path(s) setup</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-installupdate">Install/update work(s)</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-remove">Remove work(s)</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-searchindexes">Search Indexes</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-output.html">Exporting and Printing</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-config.html">4. Configuring BibleTime</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-config.html#hdbk-config-bt">Configure BibleTime Dialog</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-display">
3635 Display
3636 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">
3637@@ -21,4 +21,4 @@
3638 Settings
3639 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
3640 Help
3641- </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-toolbar.html">Toolbar reference</a></span></dt><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">HotKeys index</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><b>List of Tables</b></p><dl><dt>3.1. <a href="hdbk-op-search.html#hd-op-search-config-syntax-table"></a></dt><dt>4.1. <a href="hdbk-config.html#hdbk-config-unicode-fonts-table">Unicode Fonts</a></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Chapter 1. Introduction</td></tr></table></div></body></html>
3642+ </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">HotKeys index</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><b>List of Tables</b></p><dl><dt>3.1. <a href="hdbk-op-search.html#hd-op-search-config-syntax-table">Search Types</a></dt><dt>4.1. <a href="hdbk-config.html#hdbk-config-unicode-fonts-table">Unicode Fonts</a></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Chapter 1. Introduction</td></tr></table></div></body></html>
3643
3644=== modified file 'docs/handbook/fi/docbook/hdbk-config.docbook'
3645--- docs/handbook/fi/docbook/hdbk-config.docbook 2009-04-05 07:01:43 +0000
3646+++ docs/handbook/fi/docbook/hdbk-config.docbook 2009-04-24 02:10:38 +0000
3647@@ -31,7 +31,7 @@
3648 äidinkieleksesi, jos se on saatavilla. Silloin tunnet olosi kotoisaksi.</para>
3649
3650 <para>By default, &bibletime; uses the default system display font. You can
3651-override this font if neccessary. Some languages require special fonts to be
3652+override this font if necessary. Some languages require special fonts to be
3653 displayed correctly, and this dialog allows you to specify a custom font for
3654 each language.</para>
3655 <mediaobject>
3656@@ -109,14 +109,14 @@
3657 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">
3658 SIL unicode fonts</ulink>
3659 </entry>
3660- <entry>Erinomainen lingvistiikan kesäinstituutin unicode-kirjasin.</entry>
3661+ <entry>Excellent Unicode fonts from the Summer Institute of Linguistics.</entry>
3662 </row>
3663 <row>
3664 <entry>
3665 <ulink url="http://www.nongnu.org/freefont/">
3666 FreeFont</ulink>
3667 </entry>
3668- <entry>Uusi vapaa unicode-kirjasinaloite.</entry>
3669+ <entry>A new free Unicode font initiative.</entry>
3670 </row>
3671 <row>
3672 <entry>
3673@@ -159,13 +159,13 @@
3674 <title>
3675 <guimenu>Desk</guimenu>
3676 </title>
3677- <para>Monia Sword-taustaohjelman ominaisuuksia voidaan
3678-räätälöidä&bibletime;-ohjelmassa. Nämä ominaisuudet on dokumentoitu oikealla
3679-ikkunassa. Sinulla on mahdollisuus määritellä oletusteokset, joita
3680-käytetään, jos yhtään teosta ei ole määritelty viitteenä. Esimerkki:
3681-standardia Raamattua käytetään näyttämään Raamatun ristiviittauksien
3682-sisältöjä. Kun siirrät hiiren niiden ylle, suurennuslasi näyttää viitattujen
3683-jakeiden sisällön standardista Raamatusta, jonka olet määritellyt.</para>
3684+ <para>Many features provided by the Sword backend can now be customized in
3685+&bibletime;. These features are documented right in the dialog. You also
3686+have the possibility to specify standard works that should be used when no
3687+specific work is specified in a reference. An example: The standard Bible is
3688+used to display the content of cross references in the Bible. When you hover
3689+over then, the Mag will show the content of the verses referred to,
3690+according to the standard Bible you specified.</para>
3691 </sect2>
3692 <sect2 id="hdbk-config-bt-hotkeys">
3693 <title>
3694
3695=== modified file 'docs/handbook/fi/docbook/hdbk-intro.docbook'
3696--- docs/handbook/fi/docbook/hdbk-intro.docbook 2009-04-05 07:01:43 +0000
3697+++ docs/handbook/fi/docbook/hdbk-intro.docbook 2009-04-29 17:39:29 +0000
3698@@ -2,13 +2,13 @@
3699 <title>Johdanto</title>
3700 <sect1 id="hdbk-intro-about">
3701 <title>Tietoja &bibletime;:stä</title>
3702- <para>&bibletime; on Raamattuohjelma erilaisten tekstien tuella ja
3703-kielillä. Edelleen laaja joukko teoksia on helppo asentaa ja hallinnoida
3704-moduuleina. Se on rakennettu <ulink
3705-url="http://www.crosswire.org/sword">Sword</ulink>-kirjastoon, joka tarjoaa
3706-toiminnallisuuden &bibletime;:lle, kuten Raamatun tekstin näyttämiseen,
3707-etsintään, jne. Sword on <ulink url="http://www.crosswire.org">Crosswire
3708-Bible Societyn</ulink> lippulaiva.</para>
3709+ <para>&bibletime; is a Bible study tool with support for different types of texts
3710+and languages. Even large amounts of works modules are easy to install and
3711+manage. It is built on the <ulink
3712+url="http://www.crosswire.org/sword">Sword</ulink> library, which provides
3713+the back-end functionality for &bibletime;, such as viewing Bible text,
3714+searching etc. Sword is the flagship product of the <ulink
3715+url="http://www.crosswire.org">Crosswire Bible Society</ulink>.</para>
3716
3717 <para>&bibletime; on suunniteltu käyttämään Sword-projektin mallien mukaisia
3718 teoksia. Tuettujen asiakirjamuotojen täydelliset tiedot löytyvät osoitteesta
3719@@ -42,11 +42,11 @@
3720 <varlistentry>
3721 <term>Kommentaareja</term>
3722 <listitem>
3723- <para>Saatavillaolevat kommentaarit sisältävät klassikkoja kutenJohn Wesleyn
3724-"Notes on the Bible", Matthew Henryn kommentaarin ja Lutherin "Commentary on
3725-Galatians." <emphasis>Omalla</emphasis> kommentaarilla voit <link
3726-linkend="hdbk-op-parts-desk-write"> tallettaa omat persoonalliset
3727-muistiinpanosi</link> Raamatun eri osioihin.</para>
3728+ <para>Commentaries available include classics like John Wesley's "Notes on the
3729+Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
3730+With the <emphasis>Personal</emphasis> commentary you can <link
3731+linkend="hdbk-op-parts-desk-write"> record your own personal notes</link> to
3732+sections of the Bible.</para>
3733 </listitem>
3734 </varlistentry>
3735 <varlistentry>
3736@@ -61,7 +61,7 @@
3737 <listitem>
3738 <para>Lexicons available include: Robinson's Morphological Analysis Codes,
3739 Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
3740-Encyclopedia. Dictionaries available include Strong's Hebrew Bible
3741+Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
3742 Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
3743 Dictionary of the English Language 1913, Nave's Topical Bible.</para>
3744 </listitem>
3745
3746=== modified file 'docs/handbook/fi/docbook/hdbk-operation.docbook'
3747--- docs/handbook/fi/docbook/hdbk-operation.docbook 2009-04-05 07:01:43 +0000
3748+++ docs/handbook/fi/docbook/hdbk-operation.docbook 2009-04-29 17:39:29 +0000
3749@@ -114,7 +114,7 @@
3750 <title>Työpöytä</title>
3751 <para>The Desk is where the real work with &bibletime; takes place. Here you can
3752 open works from the Bookshelf, read them, <link
3753-linkend="hdbk-op-search">search</link>in them, and even save your
3754+linkend="hdbk-op-search">search</link> in them, and even save your
3755 annotations in the personal commentary module (see <link
3756 linkend="hdbk-op-parts-desk-write">below</link>).</para>
3757
3758@@ -156,7 +156,7 @@
3759 <guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>
3760
3761 <tip>
3762- <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice>is
3763+ <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice> is
3764 deactivated, please check if you have write permission for the files of the
3765 personal commentary.</para>
3766 </tip>
3767@@ -236,6 +236,7 @@
3768 number H8077, use 'strong:H8077'.</para>
3769 <para>Saatavana olevat tekstityypit:
3770 <table id="hd-op-search-config-syntax-table">
3771+ <title>Search Types</title>
3772 <tgroup cols="2">
3773 <thead>
3774 <row>
3775@@ -311,17 +312,17 @@
3776 Bookshelf. You can install new works to your Bookshelf, and update or remove
3777 existing works from your Bookshelf. Access it by clicking <menuchoice>
3778 <guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem>
3779-</menuchoice>in the main menu.</para>
3780+</menuchoice> in the main menu.</para>
3781 <sect2 id="hdbk-op-bookshelfmanager-path">
3782 <title>Kirjahyllyn polun/polkujen asetus</title>
3783- <para>Tässä voit määritellä, minne &bibletime; tallettaa kirjahyllysi
3784-levyllä. Voit tallentaa sen jopa useampiin kansioihin. Oletus on
3785+ <para>Here you can specify where &bibletime; may store your Bookshelf on the hard
3786+drive. You can even store it in multiple directories. Default is
3787 "~/.sword/".</para>
3788 <tip>
3789- <para>Jos sinulla on Sword-CD, mutta et halua asentaa kaikkia teoksia
3790-kovalevyllesi vaan käyttää niitä suoraan CD:ltä, voit lisätä polun CD:lle
3791-yhtenä kirjahyllyn polkuna. Kun aloitat &bibletime;-ohjelman, se näyttää
3792-sinulle kaikki CD:llä olevat teokset, jos CD on asemassa.</para>
3793+ <para>If you have a sword CD, but do not want to install all the works on the hard
3794+disk, but use them directly from the CD, then you can add the path to the CD
3795+as one of your bookshelf paths. When you start &bibletime;, it will show all
3796+works on the CD if it is present.</para>
3797 </tip>
3798 </sect2>
3799 <sect2 id="hdbk-op-bookshelfmanager-installupdate">
3800
3801=== modified file 'docs/handbook/fi/docbook/hdbk-reference.docbook'
3802--- docs/handbook/fi/docbook/hdbk-reference.docbook 2009-04-05 07:01:43 +0000
3803+++ docs/handbook/fi/docbook/hdbk-reference.docbook 2009-04-29 17:39:29 +0000
3804@@ -39,16 +39,47 @@
3805 </variablelist>
3806 </para>
3807 </sect2>
3808+
3809 <sect2 id="hdbk-reference-menus-view">
3810 <title>
3811 <guimenu>View</guimenu>
3812 </title>
3813+
3814 <variablelist>
3815+ <varlistentry id="hdbk-reference-menus-view-fullscreenmode">
3816+ <term>
3817+ <menuchoice>
3818+ <shortcut>
3819+ <keycombo action="simul">
3820+ <keycap>F5</keycap>
3821+ </keycombo>
3822+ </shortcut>
3823+ <guimenu>
3824+ <inlinemediaobject>
3825+ <imageobject>
3826+ <imagedata fileref="i_window_fullscreen.png" format="PNG" />
3827+ </imageobject>
3828+ </inlinemediaobject>View</guimenu>
3829+ <guimenuitem>Fullscreen mode</guimenuitem>
3830+ </menuchoice>
3831+ </term>
3832+ <listitem>
3833+ <para>
3834+ <action>Toggles full screen display.</action> Toggle this setting to
3835+maximize the &bibletime; window.</para>
3836+ </listitem>
3837+ </varlistentry>
3838+
3839 <varlistentry id="hdbk-reference-menus-view-showtoolbar">
3840 <term>
3841 <menuchoice>
3842+ <shortcut>
3843+ <keycombo action="simul">
3844+ <keycap>F6</keycap>
3845+ </keycombo>
3846+ </shortcut>
3847 <guimenu>View</guimenu>
3848- <guimenuitem>Show Toolbar</guimenuitem>
3849+ <guimenuitem>Show toolbar</guimenuitem>
3850 </menuchoice>
3851 </term>
3852 <listitem>
3853@@ -57,20 +88,11 @@
3854 asettaaksesi päätyökalupalkin näkyviin tai piilotetuksi.</para>
3855 </listitem>
3856 </varlistentry>
3857+
3858 <varlistentry id="hdbk-reference-menus-view-showbookshelf">
3859 <term>
3860 <menuchoice>
3861- <shortcut>
3862- <keycombo action="simul">
3863- <keycap>F9</keycap>
3864- </keycombo>
3865- </shortcut>
3866- <guimenu>
3867- <inlinemediaobject>
3868- <imageobject>
3869- <imagedata fileref="i_sidetree.png" format="PNG" />
3870- </imageobject>
3871- </inlinemediaobject>View</guimenu>
3872+ <guimenu>View</guimenu>
3873 <guimenuitem>Show Bookshelf</guimenuitem>
3874 </menuchoice>
3875 </term>
3876@@ -81,20 +103,11 @@
3877 haluat lisää tilaa suurennuslasille.</para>
3878 </listitem>
3879 </varlistentry>
3880+
3881 <varlistentry id="hdbk-reference-menus-view-showmag">
3882 <term>
3883 <menuchoice>
3884- <shortcut>
3885- <keycombo action="simul">
3886- <keycap>F8</keycap>
3887- </keycombo>
3888- </shortcut>
3889- <guimenu>
3890- <inlinemediaobject>
3891- <imageobject>
3892- <imagedata fileref="i_sidetree.png" format="PNG" />
3893- </imageobject>
3894- </inlinemediaobject>View</guimenu>
3895+ <guimenu>View</guimenu>
3896 <guimenuitem>Show Mag</guimenuitem>
3897 </menuchoice>
3898 </term>
3899@@ -290,30 +303,6 @@
3900 <guimenu>Settings</guimenu>
3901 </title>
3902 <variablelist>
3903- <varlistentry id="hdbk-reference-menus-settings-toolbars">
3904- <term>
3905- <menuchoice>
3906- <guimenu>
3907- <inlinemediaobject>
3908- <imageobject>
3909- <imagedata fileref="i_configuretoolbars.png"
3910- format="PNG" />
3911- </imageobject>
3912- </inlinemediaobject>Settings</guimenu>
3913- <guimenuitem>Configure toolbars</guimenuitem>
3914- </menuchoice>
3915- </term>
3916- <listitem>
3917- <para>
3918- <action>Opens a dialog where you can customize &bibletime;'s
3919-toolbar</action>. Just try it out, you can move around the toolbar buttons
3920-and even add new ones. Most of the entries available from the main menu can
3921-be put on the toolbar as buttons. If you need a certain feature often, you
3922-might want to put a button on the main menu, so that you can access it with
3923-only one click. Please see <link linkend="hdbk-config-toolbar">this
3924-section</link> for further information.</para>
3925- </listitem>
3926- </varlistentry>
3927 <varlistentry id="hdbk-reference-menus-settings-bibletime">
3928 <term>
3929 <menuchoice>
3930@@ -362,46 +351,90 @@
3931 </varlistentry>
3932 </variablelist>
3933 </sect2>
3934+
3935 <sect2 id="hdbk-reference-menus-help">
3936 <title>
3937 <guimenu>Help</guimenu>
3938- </title>TODO: ADD</sect2>
3939- </sect1>
3940- <sect1 id="hdbk-reference-toolbar">
3941- <title>Työkalupalkin viite</title>
3942- <para>Please review <link linkend="hdbk-reference-menus">the preceding
3943-section</link> for an explanation of the buttons that you find on the
3944-toolbar. You can also <action>move the cursor over a button and wait a few
3945-seconds</action> to activate the button's tooltip with a short description.</para>
3946- <para>Voit mukauttaa työkalupalkin tarpeitasi vastaavaksi. Käytä seuraavaa kohtaa
3947-päävalikossa:
3948- <variablelist>
3949- <varlistentry>
3950- <term>
3951- <menuchoice>
3952- <guimenu>
3953- <inlinemediaobject>
3954- <imageobject>
3955- <imagedata fileref="i_configuretoolbars.png"
3956- format="PNG" />
3957- </imageobject>
3958- </inlinemediaobject>Settings</guimenu>
3959- <guimenuitem>Configure toolbars</guimenuitem>
3960- </menuchoice>
3961- </term>
3962- <listitem>
3963- <para>Aseta työkalupalkit</para>
3964- </listitem>
3965- </varlistentry>
3966- </variablelist>Katso <link linkend="hdbk-reference-menus-settings-toolbars">tämä
3967-osio</link> yksityiskohtaisten ohjeiden saamiseksi.</para>
3968- </sect1>
3969+ </title>
3970+ <variablelist>
3971+ <varlistentry id="hdbk-reference-menus-help-bibletime">
3972+ <term>
3973+ <menuchoice>
3974+ <shortcut>
3975+ <keycombo action="simul">
3976+ <keycap>F1</keycap>
3977+ </keycombo>
3978+ </shortcut>
3979+ <guimenu>
3980+ <inlinemediaobject>
3981+ <imageobject>
3982+ <imagedata fileref="i_contents2.png" format="PNG" />
3983+ </imageobject>
3984+ </inlinemediaobject>Help</guimenu>
3985+ <guimenuitem>Handbook</guimenuitem>
3986+ </menuchoice>
3987+ </term>
3988+ <listitem>
3989+ <para>
3990+ <action>Opens &bibletime;'s user guide</action> You are reading it now.</para>
3991+ </listitem>
3992+ </varlistentry>
3993+
3994+ <varlistentry id="hdbk-reference-menus-help-bible_study_howto">
3995+ <term>
3996+ <menuchoice>
3997+ <shortcut>
3998+ <keycombo action="simul">
3999+ <keycap>F2</keycap>
4000+ </keycombo>
4001+ </shortcut>
4002+ <guimenu>
4003+ <inlinemediaobject>
4004+ <imageobject>
4005+ <imagedata fileref="i_contents2.png"
4006+ format="PNG" />
4007+ </imageobject>
4008+ </inlinemediaobject>Help</guimenu>
4009+ <guimenuitem>Bible Study Howto</guimenuitem>
4010+ </menuchoice>
4011+ </term>
4012+ <listitem>
4013+ <para>
4014+ <action>Opens a guide on how to study the Bible</action> It is the hope of
4015+the &bibletime; team that this HowTo will provoke the readers to study the
4016+scriptures to see what they say. This particular study guide has been chosen
4017+as it takes care not to advocate any particular denominational doctrine. We
4018+expect you to read and study the scriptures to understand what they say. If
4019+you start with the attitude that you want to have the Lord sow his word in
4020+your heart He will not disappoint you.</para>
4021+ </listitem>
4022+ </varlistentry>
4023+
4024+ <varlistentry id="hdbk-reference-menus-help-about">
4025+ <term>
4026+ <menuchoice>
4027+ <guimenu>Help</guimenu>
4028+ <guimenuitem>About</guimenuitem>
4029+ </menuchoice>
4030+ </term>
4031+ <listitem>
4032+ <para>
4033+ <action>Opens a window about &bibletime; project information</action>
4034+contains information about &bibletime; software version, project
4035+contributors, &sword; software version, &qt; software version and the
4036+license agreement.</para>
4037+ </listitem>
4038+ </varlistentry>
4039+ </variablelist>
4040+ </sect2>
4041+ </sect1>
4042+
4043 <sect1 id="hdbk-reference-hotkeys">
4044 <title>Pikanäppäinten luettelo</title>
4045 <para>This is index of all hotkeys and their corresponding description in the
4046 handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
4047 directly find out which hotkey a certain menu item has, you can either look
4048-at the entry itelf in &bibletime; (as it always shows the hotkey), or you
4049+at the entry itself in &bibletime; (as it always shows the hotkey), or you
4050 can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>
4051 <informaltable>
4052 <tgroup cols="2">
4053
4054=== modified file 'docs/handbook/fi/docbook/hdbk-start.docbook'
4055--- docs/handbook/fi/docbook/hdbk-start.docbook 2009-04-05 07:01:43 +0000
4056+++ docs/handbook/fi/docbook/hdbk-start.docbook 2009-04-24 02:10:38 +0000
4057@@ -17,12 +17,12 @@
4058 <para>&bibletime;-ohjelman voi käynnistää terminaali-ikkunan
4059 komentoriviltä. Käynnistääksesi &bibletime;-ohjelman, avaa terminaali-ikkuna
4060 ja kirjoita:
4061- <screen>bibletime</screen></para>
4062+ <screen>&bibletime;</screen></para>
4063 </sect2>
4064 <sect2 id="hdbk-start-otherwm">
4065 <title>Muut ikkunamanagerit</title>
4066 <para>&bibletime; can be used with other window managers such as Gnome, BlackBox,
4067-Fluxbox, OpenBox or Sawfish, providing the appropriate base libarires are
4068+Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
4069 already installed on your computer.</para>
4070 </sect2>
4071 <sect2 id="hdbk-start-custom">
4072
4073=== modified file 'docs/handbook/fi/docbook/index.docbook'
4074--- docs/handbook/fi/docbook/index.docbook 2009-04-05 07:01:43 +0000
4075+++ docs/handbook/fi/docbook/index.docbook 2009-04-29 17:39:29 +0000
4076@@ -5,6 +5,7 @@
4077 <!ENTITY bibletime '<application>BibleTime</application>'>
4078 <!ENTITY sword '<application>Sword</application>'>
4079 <!ENTITY kde '<application>KDE</application>'>
4080+ <!ENTITY qt '<application>Qt</application>'>
4081
4082 <!ENTITY Shift 'Shift'>
4083 <!ENTITY Ctrl 'Ctrl'>
4084@@ -46,11 +47,10 @@
4085 <legalnotice>
4086 <para>&bibletime;-käsikirja on osa &bibletime;-ohjelmaa.</para>
4087 </legalnotice>
4088- <date>elokuu 2005</date>
4089+ <date>2009-04</date>
4090 <releaseinfo>2.0</releaseinfo>
4091 <abstract>
4092- <para>&bibletime; on tehokas Raamatun tutkimisen työkalu, joka perustuu
4093-Sword-kehykseen.</para>
4094+ <para>&bibletime; is a Bible study tool based on the Sword framework.</para>
4095 </abstract>
4096 <keywordset>
4097 <keyword>QT4</keyword>
4098
4099=== modified file 'docs/handbook/fi/html/hdbk-config.html'
4100--- docs/handbook/fi/html/hdbk-config.html 2009-04-05 07:01:43 +0000
4101+++ docs/handbook/fi/html/hdbk-config.html 2009-04-24 02:10:38 +0000
4102@@ -20,7 +20,7 @@
4103 <span class="guimenu">Languages</span>
4104 </h3></div></div></div><p>Tässä voit määritellä, mitä kieltä käytetään kirjojen nimissä. Aseta tämä
4105 äidinkieleksesi, jos se on saatavilla. Silloin tunnet olosi kotoisaksi.</p><p>By default, <span class="application">BibleTime</span> uses the default system display font. You can
4106-override this font if neccessary. Some languages require special fonts to be
4107+override this font if necessary. Some languages require special fonts to be
4108 displayed correctly, and this dialog allows you to specify a custom font for
4109 each language.</p><div class="mediaobject"><img src="ss_configfonts.png" alt="Valintavaihtoehtoikkunan kirjasimet"><div class="caption"><p>Valintaikkuna - Kirjasimet.</p></div></div><p><span class="application">BibleTime</span> can now use all supported fonts. As long as the works you are
4110 interested in display correctly nothing needs to be done here. If a work
4111@@ -44,10 +44,10 @@
4112 </td><td>Ehkä paras ilmainen Unicode-kirjasin, käsittää laajan joukon merkkejä.</td></tr><tr><td>
4113 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">
4114 SIL unicode fonts</a>
4115- </td><td>Erinomainen lingvistiikan kesäinstituutin unicode-kirjasin.</td></tr><tr><td>
4116+ </td><td>Excellent Unicode fonts from the Summer Institute of Linguistics.</td></tr><tr><td>
4117 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">
4118 FreeFont</a>
4119- </td><td>Uusi vapaa unicode-kirjasinaloite.</td></tr><tr><td>
4120+ </td><td>A new free Unicode font initiative.</td></tr><tr><td>
4121 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">
4122 Crosswire's font directory</a>
4123 </td><td>Useita kirjasimia saatavana Crosswire Bible Society Ftp -palvelimella.</td></tr><tr><td>
4124@@ -63,13 +63,13 @@
4125 TrueType Fonts in the Internet</a>), tai Alan Woodin (<a class="ulink" href="http://www.alanwood.net/unicode/fontsbyrange.html" target="_top"> Unicode character
4126 ranges and the Unicode fonts that support them</a>).</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-desk"></a>
4127 <span class="guimenu">Desk</span>
4128- </h3></div></div></div><p>Monia Sword-taustaohjelman ominaisuuksia voidaan
4129-räätälöidä<span class="application">BibleTime</span>-ohjelmassa. Nämä ominaisuudet on dokumentoitu oikealla
4130-ikkunassa. Sinulla on mahdollisuus määritellä oletusteokset, joita
4131-käytetään, jos yhtään teosta ei ole määritelty viitteenä. Esimerkki:
4132-standardia Raamattua käytetään näyttämään Raamatun ristiviittauksien
4133-sisältöjä. Kun siirrät hiiren niiden ylle, suurennuslasi näyttää viitattujen
4134-jakeiden sisällön standardista Raamatusta, jonka olet määritellyt.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-hotkeys"></a>
4135+ </h3></div></div></div><p>Many features provided by the Sword backend can now be customized in
4136+<span class="application">BibleTime</span>. These features are documented right in the dialog. You also
4137+have the possibility to specify standard works that should be used when no
4138+specific work is specified in a reference. An example: The standard Bible is
4139+used to display the content of cross references in the Bible. When you hover
4140+over then, the Mag will show the content of the verses referred to,
4141+according to the standard Bible you specified.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-hotkeys"></a>
4142 <span class="guimenu">HotKeys</span>
4143 </h3></div></div></div><p>HotKeys are special key commands that can be used in the place of the menu
4144 items and icons. A number of <span class="application">BibleTime</span>'s commands have predefined HotKeys
4145
4146=== modified file 'docs/handbook/fi/html/hdbk-intro.html'
4147--- docs/handbook/fi/html/hdbk-intro.html 2009-04-05 07:01:43 +0000
4148+++ docs/handbook/fi/html/hdbk-intro.html 2009-04-29 17:39:29 +0000
4149@@ -1,9 +1,8 @@
4150-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 1. Johdanto</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="BibleTime-käsikirja"><link rel="up" href="index.html" title="BibleTime-käsikirja"><link rel="prev" href="index.html" title="BibleTime-käsikirja"><link rel="next" href="hdbk-term.html" title="Chapter 2. BibleTimen käynnistys"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 1. Johdanto</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-term.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-intro"></a>Chapter 1. Johdanto</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">Tietoja BibleTime:stä</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Saatavana olevat tehtävät</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivaatiota</a></span></dt></dl></dd></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-intro-about"></a>Tietoja <span class="application">BibleTime</span>:stä</h2></div></div></div><p><span class="application">BibleTime</span> on Raamattuohjelma erilaisten tekstien tuella ja
4151-kielillä. Edelleen laaja joukko teoksia on helppo asentaa ja hallinnoida
4152-moduuleina. Se on rakennettu <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a>-kirjastoon, joka tarjoaa
4153-toiminnallisuuden <span class="application">BibleTime</span>:lle, kuten Raamatun tekstin näyttämiseen,
4154-etsintään, jne. Sword on <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire
4155-Bible Societyn</a> lippulaiva.</p><p><span class="application">BibleTime</span> on suunniteltu käyttämään Sword-projektin mallien mukaisia
4156+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 1. Johdanto</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="BibleTime-käsikirja"><link rel="up" href="index.html" title="BibleTime-käsikirja"><link rel="prev" href="index.html" title="BibleTime-käsikirja"><link rel="next" href="hdbk-term.html" title="Chapter 2. BibleTimen käynnistys"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 1. Johdanto</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-term.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-intro"></a>Chapter 1. Johdanto</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">Tietoja BibleTime:stä</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Saatavana olevat tehtävät</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivaatiota</a></span></dt></dl></dd></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-intro-about"></a>Tietoja <span class="application">BibleTime</span>:stä</h2></div></div></div><p><span class="application">BibleTime</span> is a Bible study tool with support for different types of texts
4157+and languages. Even large amounts of works modules are easy to install and
4158+manage. It is built on the <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library, which provides
4159+the back-end functionality for <span class="application">BibleTime</span>, such as viewing Bible text,
4160+searching etc. Sword is the flagship product of the <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire Bible Society</a>.</p><p><span class="application">BibleTime</span> on suunniteltu käyttämään Sword-projektin mallien mukaisia
4161 teoksia. Tuettujen asiakirjamuotojen täydelliset tiedot löytyvät osoitteesta
4162 Crosswire Bible Societyn Sword-projektin <a class="ulink" href="http://www.crosswire.org/sword/develop/index.jsp" target="_top">kehittäjien
4163 osio</a>.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-intro-works"></a>Saatavana olevat tehtävät</h3></div></div></div><p>Yli 200 asiakirjaa 50 kielellä ovat saatavana <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire Bible Societyn</a>
4164@@ -13,13 +12,13 @@
4165 include not only modern versions, but also ancient texts like the Codex
4166 Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is
4167 the most advanced section in the library of the Sword project.</p></dd><dt><span class="term">Kirjat</span></dt><dd><p>Tarjollaolevat kirjat sisältävät teokset "Imitation of Christ", "Enuma
4168-Elish", ja "Josephus: The Complete Works"</p></dd><dt><span class="term">Kommentaareja</span></dt><dd><p>Saatavillaolevat kommentaarit sisältävät klassikkoja kutenJohn Wesleyn
4169-"Notes on the Bible", Matthew Henryn kommentaarin ja Lutherin "Commentary on
4170-Galatians." <span class="emphasis"><em>Omalla</em></span> kommentaarilla voit <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Muokkaa omaa kommentaariasi"> tallettaa omat persoonalliset
4171-muistiinpanosi</a> Raamatun eri osioihin.</p></dd><dt><span class="term">Päivittäiset hartaukset</span></dt><dd><p>Monet ihmiset pitävät arvossa päivän Sanaa. Saatavillaolevat teokset
4172+Elish", ja "Josephus: The Complete Works"</p></dd><dt><span class="term">Kommentaareja</span></dt><dd><p>Commentaries available include classics like John Wesley's "Notes on the
4173+Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
4174+With the <span class="emphasis"><em>Personal</em></span> commentary you can <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Muokkaa omaa kommentaariasi"> record your own personal notes</a> to
4175+sections of the Bible.</p></dd><dt><span class="term">Päivittäiset hartaukset</span></dt><dd><p>Monet ihmiset pitävät arvossa päivän Sanaa. Saatavillaolevat teokset
4176 sisältävät Daily Light Daily Pathilla, ja Losungenin.</p></dd><dt><span class="term">Sanakirjat</span></dt><dd><p>Lexicons available include: Robinson's Morphological Analysis Codes,
4177 Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
4178-Encyclopedia. Dictionaries available include Strong's Hebrew Bible
4179+Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
4180 Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
4181 Dictionary of the English Language 1913, Nave's Topical Bible.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-intro-motivation"></a>Motivaatiota</h3></div></div></div><p>Halumme on palvella Jumalaa ja teemme osamme auttaaksemme muita
4182 Jumalasuhteen kasvussa. Yritämme päästä siihen tehokkaalla, laadukkaalla
4183
4184=== modified file 'docs/handbook/fi/html/hdbk-op-bookshelfmanager.html'
4185--- docs/handbook/fi/html/hdbk-op-bookshelfmanager.html 2009-04-05 07:01:43 +0000
4186+++ docs/handbook/fi/html/hdbk-op-bookshelfmanager.html 2009-04-29 17:39:29 +0000
4187@@ -1,11 +1,11 @@
4188 <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Kirjahyllyn hallinta</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="BibleTime-käsikirja"><link rel="up" href="hdbk-op.html" title="Chapter 3. Ohjelman toiminto"><link rel="prev" href="hdbk-op-search.html" title="Etsintä teoksista"><link rel="next" href="hdbk-op-output.html" title="Vienti ja tulostus"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Kirjahyllyn hallinta</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-search.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Ohjelman toiminto</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-op-output.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-bookshelfmanager"></a><span class="guimenuitem">Kirjahyllyn hallinta</span></h2></div></div></div><p>The <span class="guimenuitem">Bookshelf Manager</span> is a tool to manage your
4189 Bookshelf. You can install new works to your Bookshelf, and update or remove
4190-existing works from your Bookshelf. Access it by clicking <span class="guimenu">Settings</span> &#8594; <span class="guimenuitem">Bookshelf Manager</span>in the main menu.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-path"></a>Kirjahyllyn polun/polkujen asetus</h3></div></div></div><p>Tässä voit määritellä, minne <span class="application">BibleTime</span> tallettaa kirjahyllysi
4191-levyllä. Voit tallentaa sen jopa useampiin kansioihin. Oletus on
4192-"~/.sword/".</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Jos sinulla on Sword-CD, mutta et halua asentaa kaikkia teoksia
4193-kovalevyllesi vaan käyttää niitä suoraan CD:ltä, voit lisätä polun CD:lle
4194-yhtenä kirjahyllyn polkuna. Kun aloitat <span class="application">BibleTime</span>-ohjelman, se näyttää
4195-sinulle kaikki CD:llä olevat teokset, jos CD on asemassa.</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-installupdate"></a>Asenna/päivitä teos/teoksia</h3></div></div></div><p>With this facility, you can connect to a repository of works (called
4196+existing works from your Bookshelf. Access it by clicking <span class="guimenu">Settings</span> &#8594; <span class="guimenuitem">Bookshelf Manager</span> in the main menu.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-path"></a>Kirjahyllyn polun/polkujen asetus</h3></div></div></div><p>Here you can specify where <span class="application">BibleTime</span> may store your Bookshelf on the hard
4197+drive. You can even store it in multiple directories. Default is
4198+"~/.sword/".</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If you have a sword CD, but do not want to install all the works on the hard
4199+disk, but use them directly from the CD, then you can add the path to the CD
4200+as one of your bookshelf paths. When you start <span class="application">BibleTime</span>, it will show all
4201+works on the CD if it is present.</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-installupdate"></a>Asenna/päivitä teos/teoksia</h3></div></div></div><p>With this facility, you can connect to a repository of works (called
4202 "library"), and transfer one or more works to your local Bookshelf. These
4203 libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online
4204 repository of Sword modules, or another site offering Sword modules). You
4205
4206=== modified file 'docs/handbook/fi/html/hdbk-op-parts.html'
4207--- docs/handbook/fi/html/hdbk-op-parts.html 2009-04-05 07:01:43 +0000
4208+++ docs/handbook/fi/html/hdbk-op-parts.html 2009-04-29 17:39:29 +0000
4209@@ -42,7 +42,7 @@
4210 additional information (e.g., Strong's numbers), then this additional
4211 information will be displayed in the Mag, and not in the text itself. Just
4212 try it out.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-parts-desk"></a>Työpöytä</h3></div></div></div><p>The Desk is where the real work with <span class="application">BibleTime</span> takes place. Here you can
4213-open works from the Bookshelf, read them, <a class="link" href="hdbk-op-search.html" title="Etsintä teoksista">search</a>in them, and even save your
4214+open works from the Bookshelf, read them, <a class="link" href="hdbk-op-search.html" title="Etsintä teoksista">search</a> in them, and even save your
4215 annotations in the personal commentary module (see <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Muokkaa omaa kommentaariasi">below</a>).</p><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-parts-desk-read"></a>Lukutehtäviä</h4></div></div></div><p>As we have <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-bookshelf-open" title="Lukutehtäviä">already seen</a>,
4216 you can open works for reading simply by clicking on their symbol in the
4217 Bookshelf. A read window will open in the Desk's area. Every read window has
4218@@ -64,6 +64,6 @@
4219 <span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit
4220 this work</span>and then either <span class="guimenuitem">Plain
4221 text</span>(source code editor) or
4222-<span class="guimenuitem">HTML</span>(basic gui wysiwyg editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If <span class="guimenu">Edit this work</span>is
4223+<span class="guimenuitem">HTML</span>(basic gui wysiwyg editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If <span class="guimenu">Edit this work</span> is
4224 deactivated, please check if you have write permission for the files of the
4225 personal commentary.</p></div><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Vedä ja pudota toimii tässä. Pudota jakeen viite ja jakeen teksti lisätään.</p></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-op.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-op.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-op-search.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 3. Ohjelman toiminto </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Etsintä teoksista</td></tr></table></div></body></html>
4226
4227=== modified file 'docs/handbook/fi/html/hdbk-op-search.html'
4228--- docs/handbook/fi/html/hdbk-op-search.html 2009-04-05 07:01:43 +0000
4229+++ docs/handbook/fi/html/hdbk-op-search.html 2009-04-29 17:39:29 +0000
4230@@ -24,7 +24,7 @@
4231 hakusanojen ryhmittelyn. Esim. '(Jeesus OR henki) AND Jumala'.</p><p>To search text other than the main text, enter the text type followed by
4232 ':', and then the search term. For example, to search for the Strong's
4233 number H8077, use 'strong:H8077'.</p><p>Saatavana olevat tekstityypit:
4234- </p><div class="table"><a name="hd-op-search-config-syntax-table"></a><p class="title"><b>Table 3.1. </b></p><div class="table-contents"><table border="1"><colgroup><col><col></colgroup><thead><tr><th>Etuliite</th><th>Merkitys</th></tr></thead><tbody><tr><td>otsikko:</td><td>etsii otsikoita</td></tr><tr><td>alaviite:</td><td>etsii alaviitteitä</td></tr><tr><td>vahvennos:</td><td>etsii Strongin numeroita</td></tr><tr><td>muoto:</td><td>etsii mofologisia koodeja</td></tr></tbody></table></div></div><p><br class="table-break"></p><p>BibleTime käyttää Lucene-hakukonetta hakuihisi. Siinä on monta
4235+ </p><div class="table"><a name="hd-op-search-config-syntax-table"></a><p class="title"><b>Table 3.1. Search Types</b></p><div class="table-contents"><table summary="Search Types" border="1"><colgroup><col><col></colgroup><thead><tr><th>Etuliite</th><th>Merkitys</th></tr></thead><tbody><tr><td>otsikko:</td><td>etsii otsikoita</td></tr><tr><td>alaviite:</td><td>etsii alaviitteitä</td></tr><tr><td>vahvennos:</td><td>etsii Strongin numeroita</td></tr><tr><td>muoto:</td><td>etsii mofologisia koodeja</td></tr></tbody></table></div></div><p><br class="table-break"></p><p>BibleTime käyttää Lucene-hakukonetta hakuihisi. Siinä on monta
4236 edistyksellistä ominaisuutta ja voit lukea niistä lisää osoitteessa: <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top">
4237 http://lucene.apache.org/java/docs/index.html</a></p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-results"></a>Etsinnän tulokset</h3></div></div></div><p>Here you can see how many instances of the search string were found, sorted
4238 by works. Clicking on a work with the <span class="mousebutton">right</span>mouse
4239
4240=== modified file 'docs/handbook/fi/html/hdbk-reference-hotkeys.html'
4241--- docs/handbook/fi/html/hdbk-reference-hotkeys.html 2009-04-05 07:01:43 +0000
4242+++ docs/handbook/fi/html/hdbk-reference-hotkeys.html 2009-04-29 17:39:29 +0000
4243@@ -1,7 +1,7 @@
4244-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Pikanäppäinten luettelo</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="BibleTime-käsikirja"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Viittaus"><link rel="prev" href="hdbk-reference-toolbar.html" title="Työkalupalkin viite"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Pikanäppäinten luettelo</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference-toolbar.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Viittaus</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-hotkeys"></a>Pikanäppäinten luettelo</h2></div></div></div><p>This is index of all hotkeys and their corresponding description in the
4245+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Pikanäppäinten luettelo</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="BibleTime-käsikirja"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Viittaus"><link rel="prev" href="hdbk-reference.html" title="Chapter 5. Viittaus"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Pikanäppäinten luettelo</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Viittaus</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-hotkeys"></a>Pikanäppäinten luettelo</h2></div></div></div><p>This is index of all hotkeys and their corresponding description in the
4246 handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
4247 directly find out which hotkey a certain menu item has, you can either look
4248-at the entry itelf in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
4249+at the entry itself in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
4250 can look it up in <a class="link" href="hdbk-reference.html#hdbk-reference-menus" title="Päävalikon käyttöopas">this section</a>.</p><div class="informaltable"><table border="1"><colgroup><col><col></colgroup><thead><tr><th>Pikanäppäin</th><th>Kuvaus</th></tr></thead><tbody><tr><td>
4251 <span class="keycap"><strong>Left</strong></span>
4252 </td><td>Siirtyy lukuikkunan historiassa taaksepäin.</td></tr><tr><td>
4253@@ -73,4 +73,4 @@
4254 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showbookshelf"> <span class="guimenu">Näytä</span> &#8594; <span class="guimenuitem">Näytä kirjahylly</span> </a> näyttää/piilottaa kirjahyllyn.</td></tr><tr><td>
4255 <span class="keycap"><strong>F9</strong></span>
4256 </td><td>
4257- <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag"> <span class="guimenu">Näytä</span> &#8594; <span class="guimenuitem">Näytä suurennuslasi</span> </a> näyttää/piilottaa suurennuslasin.</td></tr></tbody></table></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference-toolbar.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">Työkalupalkin viite </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
4258+ <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag"> <span class="guimenu">Näytä</span> &#8594; <span class="guimenuitem">Näytä suurennuslasi</span> </a> näyttää/piilottaa suurennuslasin.</td></tr></tbody></table></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">Chapter 5. Viittaus </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
4259
4260=== modified file 'docs/handbook/fi/html/hdbk-reference-toolbar.html'
4261--- docs/handbook/fi/html/hdbk-reference-toolbar.html 2009-04-05 07:01:43 +0000
4262+++ docs/handbook/fi/html/hdbk-reference-toolbar.html 2009-04-29 17:39:29 +0000
4263@@ -6,5 +6,5 @@
4264 </p><div class="variablelist"><dl><dt><span class="term">
4265 <span class="guimenu">
4266 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
4267- </span></dt><dd><p>Aseta työkalupalkit</p></dd></dl></div><p>Katso <a class="link" href="hdbk-reference.html#hdbk-reference-menus-settings-toolbars">tämä
4268+ </span></dt><dd><p>Aseta työkalupalkit</p></dd></dl></div><p>Katso <a class="link" href="">tämä
4269 osio</a> yksityiskohtaisten ohjeiden saamiseksi.</p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 5. Viittaus </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Pikanäppäinten luettelo</td></tr></table></div></body></html>
4270
4271=== modified file 'docs/handbook/fi/html/hdbk-reference.html'
4272--- docs/handbook/fi/html/hdbk-reference.html 2009-04-05 07:01:43 +0000
4273+++ docs/handbook/fi/html/hdbk-reference.html 2009-04-29 17:39:29 +0000
4274@@ -1,4 +1,4 @@
4275-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 5. Viittaus</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="BibleTime-käsikirja"><link rel="up" href="index.html" title="BibleTime-käsikirja"><link rel="prev" href="hdbk-config.html" title="Chapter 4. BibleTime:n asetukset"><link rel="next" href="hdbk-reference-toolbar.html" title="Työkalupalkin viite"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 5. Viittaus</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference-toolbar.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-reference"></a>Chapter 5. Viittaus</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-reference.html#hdbk-reference-menus">Päävalikon käyttöopas</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-file">
4276+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 5. Viittaus</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="BibleTime-käsikirja"><link rel="up" href="index.html" title="BibleTime-käsikirja"><link rel="prev" href="hdbk-config.html" title="Chapter 4. BibleTime:n asetukset"><link rel="next" href="hdbk-reference-hotkeys.html" title="Pikanäppäinten luettelo"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 5. Viittaus</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-reference"></a>Chapter 5. Viittaus</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-reference.html#hdbk-reference-menus">Päävalikon käyttöopas</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-file">
4277 File
4278 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">
4279 View
4280@@ -10,7 +10,7 @@
4281 Settings
4282 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
4283 Help
4284- </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-toolbar.html">Työkalupalkin viite</a></span></dt><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">Pikanäppäinten luettelo</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-menus"></a>Päävalikon käyttöopas</h2></div></div></div><p>In this section you can find detailed descriptions of all entries in the
4285+ </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">Pikanäppäinten luettelo</a></span></dt></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-menus"></a>Päävalikon käyttöopas</h2></div></div></div><p>In this section you can find detailed descriptions of all entries in the
4286 main menu of <span class="application">BibleTime</span>. They are ordered in just the way they appear in
4287 <span class="application">BibleTime</span>, with all the sub-items listed under the major menu item they
4288 belong to. You can also see the hotkey of each item;a complete listing of
4289@@ -26,19 +26,22 @@
4290 haluatko tallettaa tallentamattomat muutokset levylle.</p></dd></dl></div><p>
4291 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>
4292 <span class="guimenu">View</span>
4293- </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
4294- <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Toolbar</span>
4295+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-fullscreenmode"></a><span class="term">
4296+ <span class="guimenu">
4297+ <span class="inlinemediaobject"><img src="i_window_fullscreen.png"></span>View</span> &#8594; <span class="guimenuitem">Fullscreen mode</span> (<span class="shortcut"><strong><span class="keycap"><strong>F5</strong></span></strong></span>)
4298+ </span></dt><dd><p>
4299+ <span class="action">Toggles full screen display.</span> Toggle this setting to
4300+maximize the <span class="application">BibleTime</span> window.</p></dd><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
4301+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show toolbar</span> (<span class="shortcut"><strong><span class="keycap"><strong>F6</strong></span></strong></span>)
4302 </span></dt><dd><p>
4303 <span class="action">Vaihtaa työkalupalkin näkymisen.</span> Vaihda tätä asetusta
4304 asettaaksesi päätyökalupalkin näkyviin tai piilotetuksi.</p></dd><dt><a name="hdbk-reference-menus-view-showbookshelf"></a><span class="term">
4305- <span class="guimenu">
4306- <span class="inlinemediaobject"><img src="i_sidetree.png"></span>View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span> (<span class="shortcut"><strong><span class="keycap"><strong>F9</strong></span></strong></span>)
4307+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span>
4308 </span></dt><dd><p>
4309 <span class="action">Vaihtaa kirjahyllyn näkymisen.</span> Vaihda tätä asetusta
4310 asettaaksesi kirjahyllyn näkyviin tai piilotetuksi. Tämä on kätevää, jos
4311 haluat lisää tilaa suurennuslasille.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">
4312- <span class="guimenu">
4313- <span class="inlinemediaobject"><img src="i_sidetree.png"></span>View</span> &#8594; <span class="guimenuitem">Show Mag</span> (<span class="shortcut"><strong><span class="keycap"><strong>F8</strong></span></strong></span>)
4314+ <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Mag</span>
4315 </span></dt><dd><p>
4316 <span class="action">Vaihtaa suurennuslasin näkymisen.</span> Vaihda tätä asetusta
4317 asettaaksesi suurennuslasin vasemmassa paneelissa näkyväksi tai
4318@@ -91,17 +94,7 @@
4319 </span></dt><dd><p>
4320 <span class="action">Sulkee kaikki avoimet ikkunat</span>.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-settings"></a>
4321 <span class="guimenu">Settings</span>
4322- </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-toolbars"></a><span class="term">
4323- <span class="guimenu">
4324- <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
4325- </span></dt><dd><p>
4326- <span class="action">Opens a dialog where you can customize <span class="application">BibleTime</span>'s
4327-toolbar</span>. Just try it out, you can move around the toolbar buttons
4328-and even add new ones. Most of the entries available from the main menu can
4329-be put on the toolbar as buttons. If you need a certain feature often, you
4330-might want to put a button on the main menu, so that you can access it with
4331-only one click. Please see <a class="link" href="">this
4332-section</a> for further information.</p></dd><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
4333+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
4334 <span class="guimenu">
4335 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>
4336 </span></dt><dd><p>
4337@@ -115,4 +108,24 @@
4338 <span class="action">Opens a dialog where you can change your Sword configuration and
4339 manage your bookshelf</span>. Please see <a class="link" href="hdbk-op-bookshelfmanager.html" title="Kirjahyllyn hallinta">this section</a> for details.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-help"></a>
4340 <span class="guimenu">Help</span>
4341- </h3></div></div></div>TODO: ADD</div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-toolbar.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 4. BibleTime:n asetukset </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Työkalupalkin viite</td></tr></table></div></body></html>
4342+ </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-help-bibletime"></a><span class="term">
4343+ <span class="guimenu">
4344+ <span class="inlinemediaobject"><img src="i_contents2.png"></span>Help</span> &#8594; <span class="guimenuitem">Handbook</span> (<span class="shortcut"><strong><span class="keycap"><strong>F1</strong></span></strong></span>)
4345+ </span></dt><dd><p>
4346+ <span class="action">Opens <span class="application">BibleTime</span>'s user guide</span> You are reading it now.</p></dd><dt><a name="hdbk-reference-menus-help-bible_study_howto"></a><span class="term">
4347+ <span class="guimenu">
4348+ <span class="inlinemediaobject"><img src="i_contents2.png"></span>Help</span> &#8594; <span class="guimenuitem">Bible Study Howto</span> (<span class="shortcut"><strong><span class="keycap"><strong>F2</strong></span></strong></span>)
4349+ </span></dt><dd><p>
4350+ <span class="action">Opens a guide on how to study the Bible</span> It is the hope of
4351+the <span class="application">BibleTime</span> team that this HowTo will provoke the readers to study the
4352+scriptures to see what they say. This particular study guide has been chosen
4353+as it takes care not to advocate any particular denominational doctrine. We
4354+expect you to read and study the scriptures to understand what they say. If
4355+you start with the attitude that you want to have the Lord sow his word in
4356+your heart He will not disappoint you.</p></dd><dt><a name="hdbk-reference-menus-help-about"></a><span class="term">
4357+ <span class="guimenu">Help</span> &#8594; <span class="guimenuitem">About</span>
4358+ </span></dt><dd><p>
4359+ <span class="action">Opens a window about <span class="application">BibleTime</span> project information</span>
4360+contains information about <span class="application">BibleTime</span> software version, project
4361+contributors, <span class="application">Sword</span> software version, <span class="application">Qt</span> software version and the
4362+license agreement.</p></dd></dl></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-config.html">Prev</a> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-reference-hotkeys.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 4. BibleTime:n asetukset </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Pikanäppäinten luettelo</td></tr></table></div></body></html>
4363
4364=== modified file 'docs/handbook/fi/html/hdbk-term.html'
4365--- docs/handbook/fi/html/hdbk-term.html 2009-04-05 07:01:43 +0000
4366+++ docs/handbook/fi/html/hdbk-term.html 2009-04-24 02:10:38 +0000
4367@@ -3,8 +3,8 @@
4368 </p><div class="mediaobject"><img src="i_bibletime.png" alt="BibleTime käynnistyskuvake"></div><p><span class="application">BibleTime</span>-ohjelman voi käynnistää terminaali-ikkunan
4369 komentoriviltä. Käynnistääksesi <span class="application">BibleTime</span>-ohjelman, avaa terminaali-ikkuna
4370 ja kirjoita:
4371- </p><pre class="screen">bibletime</pre></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-otherwm"></a>Muut ikkunamanagerit</h3></div></div></div><p><span class="application">BibleTime</span> can be used with other window managers such as Gnome, BlackBox,
4372-Fluxbox, OpenBox or Sawfish, providing the appropriate base libarires are
4373+ </p><pre class="screen"><span class="application">BibleTime</span></pre></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-otherwm"></a>Muut ikkunamanagerit</h3></div></div></div><p><span class="application">BibleTime</span> can be used with other window managers such as Gnome, BlackBox,
4374+Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
4375 already installed on your computer.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-start-custom"></a>Käynnistyksen säätäminen</h3></div></div></div><p>Voit avata (oletus)Raamatun satunnaisen jakeen kohdalta konsolissa
4376 <span class="application">BibleTime</span>n komennolla:
4377 </p><pre class="screen">bibletime --open-default-bible
4378
4379=== modified file 'docs/handbook/fi/html/index.html'
4380--- docs/handbook/fi/html/index.html 2009-04-05 07:01:43 +0000
4381+++ docs/handbook/fi/html/index.html 2009-04-29 17:39:29 +0000
4382@@ -1,5 +1,4 @@
4383-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>BibleTime-käsikirja</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="description" content="BibleTime on tehokas Raamatun tutkimisen työkalu, joka perustuu Sword-kehykseen."><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="BibleTime-käsikirja"><link rel="next" href="hdbk-intro.html" title="Chapter 1. Johdanto"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">BibleTime-käsikirja</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="id11527980"></a><span class="application">BibleTime</span>-käsikirja</h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">Fred</span> <span class="surname">Saalbach</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Jeffrey</span> <span class="surname">Hoyt</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Martin</span> <span class="surname">Gruner</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Thomas</span> <span class="surname">Abthorpe</span></h3></div></div></div><div><p class="releaseinfo">2.0</p></div><div><p class="copyright">Copyright © 1999-2009 <span class="application">BibleTime</span>-työryhmä</p></div><div><div class="legalnotice"><a name="id11545563"></a><p><span class="application">BibleTime</span>-käsikirja on osa <span class="application">BibleTime</span>-ohjelmaa.</p></div></div><div><div class="abstract"><p class="title"><b>Abstract</b></p><p><span class="application">BibleTime</span> on tehokas Raamatun tutkimisen työkalu, joka perustuu
4384-Sword-kehykseen.</p></div></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="hdbk-intro.html">1. Johdanto</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">Tietoja BibleTime:stä</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Saatavana olevat tehtävät</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivaatiota</a></span></dt></dl></dd></dl></dd><dt><span class="chapter"><a href="hdbk-term.html">2. BibleTimen käynnistys</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-term.html#hdbk-start">Kuinka BibleTime käynnistetään</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start">BibleTimen käynnistys</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-otherwm">Muut ikkunamanagerit</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-custom">Käynnistyksen säätäminen</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-startsequence.html">Käynnistyssarja</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-op.html">3. Ohjelman toiminto</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-op.html#hdbk-op-overview">Yleiskatsaus ohjelmaan</a></span></dt><dt><span class="sect1"><a href="hdbk-op-parts.html">BibleTimen osa sovellusikkuna</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-bookshelf">Kirjahylly</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-mag">Suurennuslasi</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-desk">Työpöytä</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-search.html">Etsintä teoksista</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-intext">Tekstin haku avoimessa lukuikkunassa</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-access">Etsi-ikkunaan pääsy</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-config">Etsinnän asetukset</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-results">Etsinnän tulokset</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-bookshelfmanager.html">Kirjahyllyn hallinta</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-path">Kirjahyllyn polun/polkujen asetus</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-installupdate">Asenna/päivitä teos/teoksia</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-remove">Poista teos/teoksia</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-searchindexes">Etsii indeksejä</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-output.html">Vienti ja tulostus</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-config.html">4. BibleTime:n asetukset</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-config.html#hdbk-config-bt">Aseta BibleTime -ikkuna</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-display">
4385+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>BibleTime-käsikirja</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="description" content="BibleTime is a Bible study tool based on the Sword framework."><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="BibleTime-käsikirja"><link rel="next" href="hdbk-intro.html" title="Chapter 1. Johdanto"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">BibleTime-käsikirja</th></tr><tr><td width="20%" align="left"> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr></table><hr></div><div class="book" lang="en"><div class="titlepage"><div><div><h1 class="title"><a name="id11527980"></a><span class="application">BibleTime</span>-käsikirja</h1></div><div><div class="authorgroup"><div class="author"><h3 class="author"><span class="firstname">Fred</span> <span class="surname">Saalbach</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Jeffrey</span> <span class="surname">Hoyt</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Martin</span> <span class="surname">Gruner</span></h3></div><div class="author"><h3 class="author"><span class="firstname">Thomas</span> <span class="surname">Abthorpe</span></h3></div></div></div><div><p class="releaseinfo">2.0</p></div><div><p class="copyright">Copyright © 1999-2009 <span class="application">BibleTime</span>-työryhmä</p></div><div><div class="legalnotice"><a name="id11545563"></a><p><span class="application">BibleTime</span>-käsikirja on osa <span class="application">BibleTime</span>-ohjelmaa.</p></div></div><div><div class="abstract"><p class="title"><b>Abstract</b></p><p><span class="application">BibleTime</span> is a Bible study tool based on the Sword framework.</p></div></div></div><hr></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="chapter"><a href="hdbk-intro.html">1. Johdanto</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">Tietoja BibleTime:stä</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">Saatavana olevat tehtävät</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivaatiota</a></span></dt></dl></dd></dl></dd><dt><span class="chapter"><a href="hdbk-term.html">2. BibleTimen käynnistys</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-term.html#hdbk-start">Kuinka BibleTime käynnistetään</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start">BibleTimen käynnistys</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-otherwm">Muut ikkunamanagerit</a></span></dt><dt><span class="sect2"><a href="hdbk-term.html#hdbk-start-custom">Käynnistyksen säätäminen</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-startsequence.html">Käynnistyssarja</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-op.html">3. Ohjelman toiminto</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-op.html#hdbk-op-overview">Yleiskatsaus ohjelmaan</a></span></dt><dt><span class="sect1"><a href="hdbk-op-parts.html">BibleTimen osa sovellusikkuna</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-bookshelf">Kirjahylly</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-mag">Suurennuslasi</a></span></dt><dt><span class="sect2"><a href="hdbk-op-parts.html#hdbk-op-parts-desk">Työpöytä</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-search.html">Etsintä teoksista</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-intext">Tekstin haku avoimessa lukuikkunassa</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-access">Etsi-ikkunaan pääsy</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-config">Etsinnän asetukset</a></span></dt><dt><span class="sect2"><a href="hdbk-op-search.html#hdbk-op-search-results">Etsinnän tulokset</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-bookshelfmanager.html">Kirjahyllyn hallinta</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-path">Kirjahyllyn polun/polkujen asetus</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-installupdate">Asenna/päivitä teos/teoksia</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-remove">Poista teos/teoksia</a></span></dt><dt><span class="sect2"><a href="hdbk-op-bookshelfmanager.html#hdbk-op-bookshelfmanager-searchindexes">Etsii indeksejä</a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-op-output.html">Vienti ja tulostus</a></span></dt></dl></dd><dt><span class="chapter"><a href="hdbk-config.html">4. BibleTime:n asetukset</a></span></dt><dd><dl><dt><span class="sect1"><a href="hdbk-config.html#hdbk-config-bt">Aseta BibleTime -ikkuna</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-display">
4386 Display
4387 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">
4388 Languages
4389@@ -19,4 +18,4 @@
4390 Settings
4391 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
4392 Help
4393- </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-toolbar.html">Työkalupalkin viite</a></span></dt><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">Pikanäppäinten luettelo</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><b>List of Tables</b></p><dl><dt>3.1. <a href="hdbk-op-search.html#hd-op-search-config-syntax-table"></a></dt><dt>4.1. <a href="hdbk-config.html#hdbk-config-unicode-fonts-table">Unicode-kirjasimet</a></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Chapter 1. Johdanto</td></tr></table></div></body></html>
4394+ </a></span></dt></dl></dd><dt><span class="sect1"><a href="hdbk-reference-hotkeys.html">Pikanäppäinten luettelo</a></span></dt></dl></dd></dl></div><div class="list-of-tables"><p><b>List of Tables</b></p><dl><dt>3.1. <a href="hdbk-op-search.html#hd-op-search-config-syntax-table">Search Types</a></dt><dt>4.1. <a href="hdbk-config.html#hdbk-config-unicode-fonts-table">Unicode-kirjasimet</a></dt></dl></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"> </td><td width="20%" align="center"> </td><td width="40%" align="right"> <a accesskey="n" href="hdbk-intro.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top"> </td><td width="20%" align="center"> </td><td width="40%" align="right" valign="top"> Chapter 1. Johdanto</td></tr></table></div></body></html>
4395
4396=== modified file 'docs/handbook/fr/docbook/hdbk-config.docbook'
4397--- docs/handbook/fr/docbook/hdbk-config.docbook 2009-04-05 07:01:43 +0000
4398+++ docs/handbook/fr/docbook/hdbk-config.docbook 2009-04-24 02:10:38 +0000
4399@@ -31,7 +31,7 @@
4400 sentirez chez vous.</para>
4401
4402 <para>By default, &bibletime; uses the default system display font. You can
4403-override this font if neccessary. Some languages require special fonts to be
4404+override this font if necessary. Some languages require special fonts to be
4405 displayed correctly, and this dialog allows you to specify a custom font for
4406 each language.</para>
4407 <mediaobject>
4408@@ -110,14 +110,14 @@
4409 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">
4410 SIL unicode fonts</ulink>
4411 </entry>
4412- <entry>Excellentes polices Unicode du Summer Institute of Linguistics.</entry>
4413+ <entry>Excellent Unicode fonts from the Summer Institute of Linguistics.</entry>
4414 </row>
4415 <row>
4416 <entry>
4417 <ulink url="http://www.nongnu.org/freefont/">
4418 FreeFont</ulink>
4419 </entry>
4420- <entry>Une nouvelle initiative de police Unicode gratuite.</entry>
4421+ <entry>A new free Unicode font initiative.</entry>
4422 </row>
4423 <row>
4424 <entry>
4425@@ -161,14 +161,13 @@
4426 <title>
4427 <guimenu>Desk</guimenu>
4428 </title>
4429- <para>De nombreuses fonctionnalités de Sword peuvent être configurées dans
4430-&bibletime;. Ces fonctionnalités sont documentées dans le dialogue. Ces
4431-fonctionnalités Vous pouvez aussi désigner les modules standard à utiliser
4432-quand aucune module spécifique n'est mentionnée dans la référence. Par
4433-exemple, la bible standard est utilisée pour afficher le contenu de
4434-références croisées dans la bible. Quand le pointeur de la souris passe au
4435-dessus d'une de celles-ci, vous verrez le contenu des versets auquel il est
4436-fait référence, d'après la bible standard que vous avez désignée.</para>
4437+ <para>Many features provided by the Sword backend can now be customized in
4438+&bibletime;. These features are documented right in the dialog. You also
4439+have the possibility to specify standard works that should be used when no
4440+specific work is specified in a reference. An example: The standard Bible is
4441+used to display the content of cross references in the Bible. When you hover
4442+over then, the Mag will show the content of the verses referred to,
4443+according to the standard Bible you specified.</para>
4444 </sect2>
4445 <sect2 id="hdbk-config-bt-hotkeys">
4446 <title>
4447
4448=== modified file 'docs/handbook/fr/docbook/hdbk-intro.docbook'
4449--- docs/handbook/fr/docbook/hdbk-intro.docbook 2009-04-05 07:01:43 +0000
4450+++ docs/handbook/fr/docbook/hdbk-intro.docbook 2009-04-29 17:39:29 +0000
4451@@ -3,7 +3,7 @@
4452 <sect1 id="hdbk-intro-about">
4453 <title>About &bibletime;</title>
4454 <para>&bibletime; is a Bible study tool with support for different types of texts
4455-and languages. Even large amounts of works modules) are easy to install and
4456+and languages. Even large amounts of works modules are easy to install and
4457 manage. It is built on the <ulink
4458 url="http://www.crosswire.org/sword">Sword</ulink> library, which provides
4459 the back-end functionality for &bibletime;, such as viewing Bible text,
4460@@ -43,7 +43,7 @@
4461 <term>Commentaires</term>
4462 <listitem>
4463 <para>Commentaries available include classics like John Wesley's "Notes on the
4464-Bible", Matthew Henry`s commentary and Luther's "Commentary on Galatians."
4465+Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
4466 With the <emphasis>Personal</emphasis> commentary you can <link
4467 linkend="hdbk-op-parts-desk-write"> record your own personal notes</link> to
4468 sections of the Bible.</para>
4469@@ -60,12 +60,11 @@
4470 <varlistentry>
4471 <term>Lexiques et dictionnaires</term>
4472 <listitem>
4473- <para>Les lexiques comprennent: les "Morphological Analysis Codes" de Robinson, le
4474-"Hebrew Lexicon" de Brown-Driver-Briggs et l'"International Standard Bible
4475-Encyclopedia". Les dictionnaires disponibles comprennent le "Hebrew Bible
4476-Dictionary" de Strong, le "Greek Bible Dictionary"de Strong, "Unabridged
4477-Dictionary of the English Language" de Webster revu en 1913 et la "Topical
4478-Bible" de Nave.</para>
4479+ <para>Lexicons available include: Robinson's Morphological Analysis Codes,
4480+Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
4481+Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
4482+Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
4483+Dictionary of the English Language 1913, Nave's Topical Bible.</para>
4484 </listitem>
4485 </varlistentry>
4486 </variablelist></para>
4487
4488=== modified file 'docs/handbook/fr/docbook/hdbk-operation.docbook'
4489--- docs/handbook/fr/docbook/hdbk-operation.docbook 2009-04-05 07:01:43 +0000
4490+++ docs/handbook/fr/docbook/hdbk-operation.docbook 2009-04-29 17:39:29 +0000
4491@@ -113,7 +113,7 @@
4492 <title>Le bureau</title>
4493 <para>The Desk is where the real work with &bibletime; takes place. Here you can
4494 open works from the Bookshelf, read them, <link
4495-linkend="hdbk-op-search">search</link>in them, and even save your
4496+linkend="hdbk-op-search">search</link> in them, and even save your
4497 annotations in the personal commentary module (see <link
4498 linkend="hdbk-op-parts-desk-write">below</link>).</para>
4499
4500@@ -156,7 +156,7 @@
4501 <guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>
4502
4503 <tip>
4504- <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice>is
4505+ <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice> is
4506 deactivated, please check if you have write permission for the files of the
4507 personal commentary.</para>
4508 </tip>
4509@@ -237,6 +237,7 @@
4510 number H8077, use 'strong:H8077'.</para>
4511 <para>Available text types:
4512 <table id="hd-op-search-config-syntax-table">
4513+ <title>Search Types</title>
4514 <tgroup cols="2">
4515 <thead>
4516 <row>
4517@@ -314,18 +315,17 @@
4518 Bookshelf. You can install new works to your Bookshelf, and update or remove
4519 existing works from your Bookshelf. Access it by clicking <menuchoice>
4520 <guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem>
4521-</menuchoice>in the main menu.</para>
4522+</menuchoice> in the main menu.</para>
4523 <sect2 id="hdbk-op-bookshelfmanager-path">
4524 <title>Configurer les chemins vers les bibliothèques</title>
4525- <para>Vous pouvez désigner ici l'endroit où &bibletime; garde votre bibliothèque
4526-sur le disque dur. Vous pouvez même la placer dnas plusieurs répertoires. Le
4527-répertoire par défaut est "~/.sword/".</para>
4528+ <para>Here you can specify where &bibletime; may store your Bookshelf on the hard
4529+drive. You can even store it in multiple directories. Default is
4530+"~/.sword/".</para>
4531 <tip>
4532- <para>Si vous avez un CD Sword, mais que vous ne voulez pas installer les modules
4533-sur le disque mais plutôt les consulter directement sur le CD; vous pouvez
4534-ajouter le chemin du CD dans vos chemins vers les bibliothèques. Quand vous
4535-lancez &bibletime;, si le CD est présent, les modules qu'il contient
4536-s'afficheront dans la bibliothèque.</para>
4537+ <para>If you have a sword CD, but do not want to install all the works on the hard
4538+disk, but use them directly from the CD, then you can add the path to the CD
4539+as one of your bookshelf paths. When you start &bibletime;, it will show all
4540+works on the CD if it is present.</para>
4541 </tip>
4542 </sect2>
4543 <sect2 id="hdbk-op-bookshelfmanager-installupdate">
4544
4545=== modified file 'docs/handbook/fr/docbook/hdbk-reference.docbook'
4546--- docs/handbook/fr/docbook/hdbk-reference.docbook 2009-04-05 07:01:43 +0000
4547+++ docs/handbook/fr/docbook/hdbk-reference.docbook 2009-04-29 17:39:29 +0000
4548@@ -39,16 +39,47 @@
4549 </variablelist>
4550 </para>
4551 </sect2>
4552+
4553 <sect2 id="hdbk-reference-menus-view">
4554 <title>
4555 <guimenu>View</guimenu>
4556 </title>
4557+
4558 <variablelist>
4559+ <varlistentry id="hdbk-reference-menus-view-fullscreenmode">
4560+ <term>
4561+ <menuchoice>
4562+ <shortcut>
4563+ <keycombo action="simul">
4564+ <keycap>F5</keycap>
4565+ </keycombo>
4566+ </shortcut>
4567+ <guimenu>
4568+ <inlinemediaobject>
4569+ <imageobject>
4570+ <imagedata fileref="i_window_fullscreen.png" format="PNG" />
4571+ </imageobject>
4572+ </inlinemediaobject>View</guimenu>
4573+ <guimenuitem>Fullscreen mode</guimenuitem>
4574+ </menuchoice>
4575+ </term>
4576+ <listitem>
4577+ <para>
4578+ <action>Toggles full screen display.</action> Toggle this setting to
4579+maximize the &bibletime; window.</para>
4580+ </listitem>
4581+ </varlistentry>
4582+
4583 <varlistentry id="hdbk-reference-menus-view-showtoolbar">
4584 <term>
4585 <menuchoice>
4586+ <shortcut>
4587+ <keycombo action="simul">
4588+ <keycap>F6</keycap>
4589+ </keycombo>
4590+ </shortcut>
4591 <guimenu>View</guimenu>
4592- <guimenuitem>Show Toolbar</guimenuitem>
4593+ <guimenuitem>Show toolbar</guimenuitem>
4594 </menuchoice>
4595 </term>
4596 <listitem>
4597@@ -57,20 +88,11 @@
4598 de faire apparaître ou disparaître la barre d'outil.</para>
4599 </listitem>
4600 </varlistentry>
4601+
4602 <varlistentry id="hdbk-reference-menus-view-showbookshelf">
4603 <term>
4604 <menuchoice>
4605- <shortcut>
4606- <keycombo action="simul">
4607- <keycap>F9</keycap>
4608- </keycombo>
4609- </shortcut>
4610- <guimenu>
4611- <inlinemediaobject>
4612- <imageobject>
4613- <imagedata fileref="i_sidetree.png" format="PNG" />
4614- </imageobject>
4615- </inlinemediaobject>View</guimenu>
4616+ <guimenu>View</guimenu>
4617 <guimenuitem>Show Bookshelf</guimenuitem>
4618 </menuchoice>
4619 </term>
4620@@ -82,20 +104,11 @@
4621 zoom.</para>
4622 </listitem>
4623 </varlistentry>
4624+
4625 <varlistentry id="hdbk-reference-menus-view-showmag">
4626 <term>
4627 <menuchoice>
4628- <shortcut>
4629- <keycombo action="simul">
4630- <keycap>F8</keycap>
4631- </keycombo>
4632- </shortcut>
4633- <guimenu>
4634- <inlinemediaobject>
4635- <imageobject>
4636- <imagedata fileref="i_sidetree.png" format="PNG" />
4637- </imageobject>
4638- </inlinemediaobject>View</guimenu>
4639+ <guimenu>View</guimenu>
4640 <guimenuitem>Show Mag</guimenuitem>
4641 </menuchoice>
4642 </term>
4643@@ -290,30 +303,6 @@
4644 <guimenu>Settings</guimenu>
4645 </title>
4646 <variablelist>
4647- <varlistentry id="hdbk-reference-menus-settings-toolbars">
4648- <term>
4649- <menuchoice>
4650- <guimenu>
4651- <inlinemediaobject>
4652- <imageobject>
4653- <imagedata fileref="i_configuretoolbars.png"
4654- format="PNG" />
4655- </imageobject>
4656- </inlinemediaobject>Settings</guimenu>
4657- <guimenuitem>Configure toolbars</guimenuitem>
4658- </menuchoice>
4659- </term>
4660- <listitem>
4661- <para>
4662- <action>Opens a dialog where you can customize &bibletime;'s
4663-toolbar</action>. Just try it out, you can move around the toolbar buttons
4664-and even add new ones. Most of the entries available from the main menu can
4665-be put on the toolbar as buttons. If you need a certain feature often, you
4666-might want to put a button on the main menu, so that you can access it with
4667-only one click. Please see <link linkend="hdbk-config-toolbar">this
4668-section</link> for further information.</para>
4669- </listitem>
4670- </varlistentry>
4671 <varlistentry id="hdbk-reference-menus-settings-bibletime">
4672 <term>
4673 <menuchoice>
4674@@ -362,46 +351,90 @@
4675 </varlistentry>
4676 </variablelist>
4677 </sect2>
4678+
4679 <sect2 id="hdbk-reference-menus-help">
4680 <title>
4681 <guimenu>Help</guimenu>
4682- </title>TODO: ADD</sect2>
4683- </sect1>
4684- <sect1 id="hdbk-reference-toolbar">
4685- <title>Référence de la barre d'outils</title>
4686- <para>Consultez la <link linkend="hdbk-reference-menus">référence des menus</link>
4687-pour une explication des boutons de la barre d'outils. Vous pouvez aussi
4688-<action>placer le pointeur sur un bouton et attendre quelques
4689-seconde</action> pour afficher une courte description du bouton.</para>
4690- <para>Vous pouvez adapter la barre d'outils à vos besoins, par le choix suivant
4691-dans le menu principal:
4692- <variablelist>
4693- <varlistentry>
4694- <term>
4695- <menuchoice>
4696- <guimenu>
4697- <inlinemediaobject>
4698- <imageobject>
4699- <imagedata fileref="i_configuretoolbars.png"
4700- format="PNG" />
4701- </imageobject>
4702- </inlinemediaobject>Settings</guimenu>
4703- <guimenuitem>Configure toolbars</guimenuitem>
4704- </menuchoice>
4705- </term>
4706- <listitem>
4707- <para>Configurer les barres d'outils</para>
4708- </listitem>
4709- </varlistentry>
4710- </variablelist>Please see <link linkend="hdbk-reference-menus-settings-toolbars">this
4711-section</link> for detailed instructions.</para>
4712- </sect1>
4713+ </title>
4714+ <variablelist>
4715+ <varlistentry id="hdbk-reference-menus-help-bibletime">
4716+ <term>
4717+ <menuchoice>
4718+ <shortcut>
4719+ <keycombo action="simul">
4720+ <keycap>F1</keycap>
4721+ </keycombo>
4722+ </shortcut>
4723+ <guimenu>
4724+ <inlinemediaobject>
4725+ <imageobject>
4726+ <imagedata fileref="i_contents2.png" format="PNG" />
4727+ </imageobject>
4728+ </inlinemediaobject>Help</guimenu>
4729+ <guimenuitem>Handbook</guimenuitem>
4730+ </menuchoice>
4731+ </term>
4732+ <listitem>
4733+ <para>
4734+ <action>Opens &bibletime;'s user guide</action> You are reading it now.</para>
4735+ </listitem>
4736+ </varlistentry>
4737+
4738+ <varlistentry id="hdbk-reference-menus-help-bible_study_howto">
4739+ <term>
4740+ <menuchoice>
4741+ <shortcut>
4742+ <keycombo action="simul">
4743+ <keycap>F2</keycap>
4744+ </keycombo>
4745+ </shortcut>
4746+ <guimenu>
4747+ <inlinemediaobject>
4748+ <imageobject>
4749+ <imagedata fileref="i_contents2.png"
4750+ format="PNG" />
4751+ </imageobject>
4752+ </inlinemediaobject>Help</guimenu>
4753+ <guimenuitem>Bible Study Howto</guimenuitem>
4754+ </menuchoice>
4755+ </term>
4756+ <listitem>
4757+ <para>
4758+ <action>Opens a guide on how to study the Bible</action> It is the hope of
4759+the &bibletime; team that this HowTo will provoke the readers to study the
4760+scriptures to see what they say. This particular study guide has been chosen
4761+as it takes care not to advocate any particular denominational doctrine. We
4762+expect you to read and study the scriptures to understand what they say. If
4763+you start with the attitude that you want to have the Lord sow his word in
4764+your heart He will not disappoint you.</para>
4765+ </listitem>
4766+ </varlistentry>
4767+
4768+ <varlistentry id="hdbk-reference-menus-help-about">
4769+ <term>
4770+ <menuchoice>
4771+ <guimenu>Help</guimenu>
4772+ <guimenuitem>About</guimenuitem>
4773+ </menuchoice>
4774+ </term>
4775+ <listitem>
4776+ <para>
4777+ <action>Opens a window about &bibletime; project information</action>
4778+contains information about &bibletime; software version, project
4779+contributors, &sword; software version, &qt; software version and the
4780+license agreement.</para>
4781+ </listitem>
4782+ </varlistentry>
4783+ </variablelist>
4784+ </sect2>
4785+ </sect1>
4786+
4787 <sect1 id="hdbk-reference-hotkeys">
4788 <title>Index des raccourcis</title>
4789 <para>This is index of all hotkeys and their corresponding description in the
4790 handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
4791 directly find out which hotkey a certain menu item has, you can either look
4792-at the entry itelf in &bibletime; (as it always shows the hotkey), or you
4793+at the entry itself in &bibletime; (as it always shows the hotkey), or you
4794 can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>
4795 <informaltable>
4796 <tgroup cols="2">
4797
4798=== modified file 'docs/handbook/fr/docbook/hdbk-start.docbook'
4799--- docs/handbook/fr/docbook/hdbk-start.docbook 2009-04-05 07:01:43 +0000
4800+++ docs/handbook/fr/docbook/hdbk-start.docbook 2009-04-24 02:10:38 +0000
4801@@ -16,12 +16,12 @@
4802 </mediaobject></para>
4803 <para>&bibletime; can also be launched from a terminal command prompt. To launch
4804 &bibletime;, open a terminal window and type:
4805- <screen>bibletime</screen></para>
4806+ <screen>&bibletime;</screen></para>
4807 </sect2>
4808 <sect2 id="hdbk-start-otherwm">
4809 <title>Autres gestionnaires de fenêtres</title>
4810 <para>&bibletime; can be used with other window managers such as Gnome, BlackBox,
4811-Fluxbox, OpenBox or Sawfish, providing the appropriate base libarires are
4812+Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
4813 already installed on your computer.</para>
4814 </sect2>
4815 <sect2 id="hdbk-start-custom">
4816
4817=== modified file 'docs/handbook/fr/docbook/index.docbook'
4818--- docs/handbook/fr/docbook/index.docbook 2009-04-05 07:01:43 +0000
4819+++ docs/handbook/fr/docbook/index.docbook 2009-04-29 17:39:29 +0000
4820@@ -5,6 +5,7 @@
4821 <!ENTITY bibletime '<application>BibleTime</application>'>
4822 <!ENTITY sword '<application>Sword</application>'>
4823 <!ENTITY kde '<application>KDE</application>'>
4824+ <!ENTITY qt '<application>Qt</application>'>
4825
4826 <!ENTITY Shift 'Shift'>
4827 <!ENTITY Ctrl 'Ctrl'>
4828@@ -46,10 +47,10 @@
4829 <legalnotice>
4830 <para>Le manuel &bibletime; fait partie de &bibletime;.</para>
4831 </legalnotice>
4832- <date>2005-08</date>
4833+ <date>2009-04</date>
4834 <releaseinfo>2.0</releaseinfo>
4835 <abstract>
4836- <para>&bibletime; is a Bible study tool based on the Sword framwork.</para>
4837+ <para>&bibletime; is a Bible study tool based on the Sword framework.</para>
4838 </abstract>
4839 <keywordset>
4840 <keyword>QT4</keyword>
4841
4842=== modified file 'docs/handbook/fr/html/hdbk-config.html'
4843--- docs/handbook/fr/html/hdbk-config.html 2009-04-05 07:01:43 +0000
4844+++ docs/handbook/fr/html/hdbk-config.html 2009-04-24 02:10:38 +0000
4845@@ -20,7 +20,7 @@
4846 </h3></div></div></div><p>Vous pouvez choisir ici la langue utilisée pour afficher les noms de
4847 livres. Choisissez votre langue maternelle. Si elle est disponible vous vous
4848 sentirez chez vous.</p><p>By default, <span class="application">BibleTime</span> uses the default system display font. You can
4849-override this font if neccessary. Some languages require special fonts to be
4850+override this font if necessary. Some languages require special fonts to be
4851 displayed correctly, and this dialog allows you to specify a custom font for
4852 each language.</p><div class="mediaobject"><img src="ss_configfonts.png" alt="Options Dialog - fonts"><div class="caption"><p>Le dialogue Options - polices</p></div></div><p><span class="application">BibleTime</span> can now use all supported fonts. As long as the works you are
4853 interested in display correctly nothing needs to be done here. If a work
4854@@ -45,10 +45,10 @@
4855 spectre de caractères.</td></tr><tr><td>
4856 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">
4857 SIL unicode fonts</a>
4858- </td><td>Excellentes polices Unicode du Summer Institute of Linguistics.</td></tr><tr><td>
4859+ </td><td>Excellent Unicode fonts from the Summer Institute of Linguistics.</td></tr><tr><td>
4860 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">
4861 FreeFont</a>
4862- </td><td>Une nouvelle initiative de police Unicode gratuite.</td></tr><tr><td>
4863+ </td><td>A new free Unicode font initiative.</td></tr><tr><td>
4864 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">
4865 Crosswire's font directory</a>
4866 </td><td>Plusieurs polices sont disponibles sur le serveur ftp de la Crosswire Bible
4867@@ -65,14 +65,13 @@
4868 TrueType Fonts in the Internet</a>), or the one by Alan Wood ( <a class="ulink" href="http://www.alanwood.net/unicode/fontsbyrange.html" target="_top"> Unicode character
4869 ranges and the Unicode fonts that support them</a>).</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-desk"></a>
4870 <span class="guimenu">Desk</span>
4871- </h3></div></div></div><p>De nombreuses fonctionnalités de Sword peuvent être configurées dans
4872-<span class="application">BibleTime</span>. Ces fonctionnalités sont documentées dans le dialogue. Ces
4873-fonctionnalités Vous pouvez aussi désigner les modules standard à utiliser
4874-quand aucune module spécifique n'est mentionnée dans la référence. Par
4875-exemple, la bible standard est utilisée pour afficher le contenu de
4876-références croisées dans la bible. Quand le pointeur de la souris passe au
4877-dessus d'une de celles-ci, vous verrez le contenu des versets auquel il est
4878-fait référence, d'après la bible standard que vous avez désignée.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-hotkeys"></a>
4879+ </h3></div></div></div><p>Many features provided by the Sword backend can now be customized in
4880+<span class="application">BibleTime</span>. These features are documented right in the dialog. You also
4881+have the possibility to specify standard works that should be used when no
4882+specific work is specified in a reference. An example: The standard Bible is
4883+used to display the content of cross references in the Bible. When you hover
4884+over then, the Mag will show the content of the verses referred to,
4885+according to the standard Bible you specified.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-hotkeys"></a>
4886 <span class="guimenu">HotKeys</span>
4887 </h3></div></div></div><p>Les Racourcis sont des commandes au clavier qui peuvent être utilisée à la
4888 place des menus et des icônes. Plusieurs commandes <span class="application">BibleTime</span> onts des
4889
4890=== modified file 'docs/handbook/fr/html/hdbk-intro.html'
4891--- docs/handbook/fr/html/hdbk-intro.html 2009-04-05 07:01:43 +0000
4892+++ docs/handbook/fr/html/hdbk-intro.html 2009-04-29 17:39:29 +0000
4893@@ -1,5 +1,5 @@
4894 <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Chapter 1. Introduction</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="Le manuel de BibleTime"><link rel="up" href="index.html" title="Le manuel de BibleTime"><link rel="prev" href="index.html" title="Le manuel de BibleTime"><link rel="next" href="hdbk-term.html" title="Chapter 2. Lancer BibleTime"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 1. Introduction</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="index.html">Prev</a> </td><th width="60%" align="center"> </th><td width="20%" align="right"> <a accesskey="n" href="hdbk-term.html">Next</a></td></tr></table><hr></div><div class="chapter" lang="en"><div class="titlepage"><div><div><h2 class="title"><a name="hdbk-intro"></a>Chapter 1. Introduction</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="hdbk-intro.html#hdbk-intro-about">About BibleTime</a></span></dt><dd><dl><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-works">&#338;uvres disponibles</a></span></dt><dt><span class="sect2"><a href="hdbk-intro.html#hdbk-intro-motivation">Motivation</a></span></dt></dl></dd></dl></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-intro-about"></a>About <span class="application">BibleTime</span></h2></div></div></div><p><span class="application">BibleTime</span> is a Bible study tool with support for different types of texts
4895-and languages. Even large amounts of works modules) are easy to install and
4896+and languages. Even large amounts of works modules are easy to install and
4897 manage. It is built on the <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library, which provides
4898 the back-end functionality for <span class="application">BibleTime</span>, such as viewing Bible text,
4899 searching etc. Sword is the flagship product of the <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire Bible Society</a>.</p><p><span class="application">BibleTime</span> is designed to be used with works encoded in one of the formats
4900@@ -14,16 +14,15 @@
4901 Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is
4902 the most advanced section in the library of the Sword project.</p></dd><dt><span class="term">Livres</span></dt><dd><p>Books available include "Imitation of Christ", "Enuma Elish", and "Josephus:
4903 The Complete Works"</p></dd><dt><span class="term">Commentaires</span></dt><dd><p>Commentaries available include classics like John Wesley's "Notes on the
4904-Bible", Matthew Henry`s commentary and Luther's "Commentary on Galatians."
4905+Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
4906 With the <span class="emphasis"><em>Personal</em></span> commentary you can <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Éditer votre propre commentaire"> record your own personal notes</a> to
4907 sections of the Bible.</p></dd><dt><span class="term">Lectures quotidiennes</span></dt><dd><p>De nombreuses personnes apprécient ces rations quotidiennes de la parole de
4908 Dieu. Parmi les modules disponibles, Daily Light on the Daily Path, et les
4909-Losungen.</p></dd><dt><span class="term">Lexiques et dictionnaires</span></dt><dd><p>Les lexiques comprennent: les "Morphological Analysis Codes" de Robinson, le
4910-"Hebrew Lexicon" de Brown-Driver-Briggs et l'"International Standard Bible
4911-Encyclopedia". Les dictionnaires disponibles comprennent le "Hebrew Bible
4912-Dictionary" de Strong, le "Greek Bible Dictionary"de Strong, "Unabridged
4913-Dictionary of the English Language" de Webster revu en 1913 et la "Topical
4914-Bible" de Nave.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-intro-motivation"></a>Motivation</h3></div></div></div><p>Our desire is to serve God, and to do our part to help others grow in their
4915+Losungen.</p></dd><dt><span class="term">Lexiques et dictionnaires</span></dt><dd><p>Lexicons available include: Robinson's Morphological Analysis Codes,
4916+Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
4917+Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
4918+Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
4919+Dictionary of the English Language 1913, Nave's Topical Bible.</p></dd></dl></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-intro-motivation"></a>Motivation</h3></div></div></div><p>Our desire is to serve God, and to do our part to help others grow in their
4920 relationship with Him. We have striven to make this a powerful, quality
4921 program, and still make it simple and intuitive to operate. It is our desire
4922 that God be praised, as He is the source of all good things.</p><div class="blockquote"><table border="0" width="100%" cellspacing="0" cellpadding="0" class="blockquote" summary="Block quote"><tr><td width="10%" valign="top"> </td><td width="80%" valign="top"><p>Tout don de valeur et tout cadeau parfait descendent d'en haut, du Père des
4923
4924=== modified file 'docs/handbook/fr/html/hdbk-op-bookshelfmanager.html'
4925--- docs/handbook/fr/html/hdbk-op-bookshelfmanager.html 2009-04-05 07:01:43 +0000
4926+++ docs/handbook/fr/html/hdbk-op-bookshelfmanager.html 2009-04-29 17:39:29 +0000
4927@@ -1,12 +1,11 @@
4928 <html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Le Gestionnaire de Bibliothèque</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="Le manuel de BibleTime"><link rel="up" href="hdbk-op.html" title="Chapter 3. Utilisation du programme"><link rel="prev" href="hdbk-op-search.html" title="Rechercher dans des modules"><link rel="next" href="hdbk-op-output.html" title="Exporter et imprimer"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Le Gestionnaire de Bibliothèque</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-op-search.html">Prev</a> </td><th width="60%" align="center">Chapter 3. Utilisation du programme</th><td width="20%" align="right"> <a accesskey="n" href="hdbk-op-output.html">Next</a></td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-op-bookshelfmanager"></a>Le <span class="guimenuitem">Gestionnaire de Bibliothèque</span></h2></div></div></div><p>The <span class="guimenuitem">Bookshelf Manager</span> is a tool to manage your
4929 Bookshelf. You can install new works to your Bookshelf, and update or remove
4930-existing works from your Bookshelf. Access it by clicking <span class="guimenu">Settings</span> &#8594; <span class="guimenuitem">Bookshelf Manager</span>in the main menu.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-path"></a>Configurer les chemins vers les bibliothèques</h3></div></div></div><p>Vous pouvez désigner ici l'endroit où <span class="application">BibleTime</span> garde votre bibliothèque
4931-sur le disque dur. Vous pouvez même la placer dnas plusieurs répertoires. Le
4932-répertoire par défaut est "~/.sword/".</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Si vous avez un CD Sword, mais que vous ne voulez pas installer les modules
4933-sur le disque mais plutôt les consulter directement sur le CD; vous pouvez
4934-ajouter le chemin du CD dans vos chemins vers les bibliothèques. Quand vous
4935-lancez <span class="application">BibleTime</span>, si le CD est présent, les modules qu'il contient
4936-s'afficheront dans la bibliothèque.</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-installupdate"></a>Installer/mettre à jour module</h3></div></div></div><p>With this facility, you can connect to a repository of works (called
4937+existing works from your Bookshelf. Access it by clicking <span class="guimenu">Settings</span> &#8594; <span class="guimenuitem">Bookshelf Manager</span> in the main menu.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-path"></a>Configurer les chemins vers les bibliothèques</h3></div></div></div><p>Here you can specify where <span class="application">BibleTime</span> may store your Bookshelf on the hard
4938+drive. You can even store it in multiple directories. Default is
4939+"~/.sword/".</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If you have a sword CD, but do not want to install all the works on the hard
4940+disk, but use them directly from the CD, then you can add the path to the CD
4941+as one of your bookshelf paths. When you start <span class="application">BibleTime</span>, it will show all
4942+works on the CD if it is present.</p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-bookshelfmanager-installupdate"></a>Installer/mettre à jour module</h3></div></div></div><p>With this facility, you can connect to a repository of works (called
4943 "library"), and transfer one or more works to your local Bookshelf. These
4944 libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online
4945 repository of Sword modules, or another site offering Sword modules). You
4946
4947=== modified file 'docs/handbook/fr/html/hdbk-op-parts.html'
4948--- docs/handbook/fr/html/hdbk-op-parts.html 2009-04-05 07:01:43 +0000
4949+++ docs/handbook/fr/html/hdbk-op-parts.html 2009-04-29 17:39:29 +0000
4950@@ -42,7 +42,7 @@
4951 au-dessus d'un passage avec une information complémentaire (les uméros
4952 Strong par exemple), cette information est affichée dans le zoom, et pas
4953 dans le texte-même. Essayez.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-parts-desk"></a>Le bureau</h3></div></div></div><p>The Desk is where the real work with <span class="application">BibleTime</span> takes place. Here you can
4954-open works from the Bookshelf, read them, <a class="link" href="hdbk-op-search.html" title="Rechercher dans des modules">search</a>in them, and even save your
4955+open works from the Bookshelf, read them, <a class="link" href="hdbk-op-search.html" title="Rechercher dans des modules">search</a> in them, and even save your
4956 annotations in the personal commentary module (see <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Éditer votre propre commentaire">below</a>).</p><div class="sect3" lang="en"><div class="titlepage"><div><div><h4 class="title"><a name="hdbk-op-parts-desk-read"></a>Lire des modules</h4></div></div></div><p><a class="link" href="hdbk-op-parts.html#hdbk-op-parts-bookshelf-open" title="Lire des modules">Comme nous l'avons déjà
4957 vu</a>, vous pouvez ouvrir des modules pour les lire en cliquant
4958 simplement sur leur icône dans la bibliothèque. Une fenêtre de lecture
4959@@ -64,7 +64,7 @@
4960 <span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit
4961 this work</span>and then either <span class="guimenuitem">Plain
4962 text</span>(source code editor) or
4963-<span class="guimenuitem">HTML</span>(basic gui wysiwyg editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If <span class="guimenu">Edit this work</span>is
4964+<span class="guimenuitem">HTML</span>(basic gui wysiwyg editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If <span class="guimenu">Edit this work</span> is
4965 deactivated, please check if you have write permission for the files of the
4966 personal commentary.</p></div><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>Drag &amp; drop works here. Drop a verse reference and the text of the verse
4967 will be inserted.</p></div></div></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-op.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-op.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="hdbk-op-search.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Chapter 3. Utilisation du programme </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> Rechercher dans des modules</td></tr></table></div></body></html>
4968
4969=== modified file 'docs/handbook/fr/html/hdbk-op-search.html'
4970--- docs/handbook/fr/html/hdbk-op-search.html 2009-04-05 07:01:43 +0000
4971+++ docs/handbook/fr/html/hdbk-op-search.html 2009-04-29 17:39:29 +0000
4972@@ -24,7 +24,7 @@
4973 search terms, e.g. '(Jesus OR spirit) AND God'.</p><p>To search text other than the main text, enter the text type followed by
4974 ':', and then the search term. For example, to search for the Strong's
4975 number H8077, use 'strong:H8077'.</p><p>Available text types:
4976- </p><div class="table"><a name="hd-op-search-config-syntax-table"></a><p class="title"><b>Table 3.1. </b></p><div class="table-contents"><table border="1"><colgroup><col><col></colgroup><thead><tr><th>Prefix</th><th>Meaning</th></tr></thead><tbody><tr><td>heading:</td><td>searches headings</td></tr><tr><td>footnote:</td><td>searches footnotes</td></tr><tr><td>strong:</td><td>searches Strong's Numbers</td></tr><tr><td>morph:</td><td>searches morphology codes</td></tr></tbody></table></div></div><p><br class="table-break"></p><p>BibleTime uses the Lucene search engine to perform your searches. It has
4977+ </p><div class="table"><a name="hd-op-search-config-syntax-table"></a><p class="title"><b>Table 3.1. Search Types</b></p><div class="table-contents"><table summary="Search Types" border="1"><colgroup><col><col></colgroup><thead><tr><th>Prefix</th><th>Meaning</th></tr></thead><tbody><tr><td>heading:</td><td>searches headings</td></tr><tr><td>footnote:</td><td>searches footnotes</td></tr><tr><td>strong:</td><td>searches Strong's Numbers</td></tr><tr><td>morph:</td><td>searches morphology codes</td></tr></tbody></table></div></div><p><br class="table-break"></p><p>BibleTime uses the Lucene search engine to perform your searches. It has
4978 many advanced features, and you can read more about it here: <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top">
4979 http://lucene.apache.org/java/docs/index.html</a></p></div></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-op-search-results"></a>Résultats de recherche</h3></div></div></div><p>Here you can see how many instances of the search string were found, sorted
4980 by works. Clicking on a work with the <span class="mousebutton">right</span>mouse
4981
4982=== modified file 'docs/handbook/fr/html/hdbk-reference-hotkeys.html'
4983--- docs/handbook/fr/html/hdbk-reference-hotkeys.html 2009-04-05 07:01:43 +0000
4984+++ docs/handbook/fr/html/hdbk-reference-hotkeys.html 2009-04-29 17:39:29 +0000
4985@@ -1,7 +1,7 @@
4986-<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Index des raccourcis</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="Le manuel de BibleTime"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Référence"><link rel="prev" href="hdbk-reference-toolbar.html" title="Référence de la barre d'outils"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Index des raccourcis</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference-toolbar.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Référence</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-hotkeys"></a>Index des raccourcis</h2></div></div></div><p>This is index of all hotkeys and their corresponding description in the
4987+<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Index des raccourcis</title><meta name="generator" content="DocBook XSL Stylesheets V1.74.0"><meta name="keywords" content="QT4, bibletime, sword, crosswire, help dialog"><link rel="home" href="index.html" title="Le manuel de BibleTime"><link rel="up" href="hdbk-reference.html" title="Chapter 5. Référence"><link rel="prev" href="hdbk-reference.html" title="Chapter 5. Référence"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Index des raccourcis</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><th width="60%" align="center">Chapter 5. Référence</th><td width="20%" align="right"> </td></tr></table><hr></div><div class="sect1" lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="hdbk-reference-hotkeys"></a>Index des raccourcis</h2></div></div></div><p>This is index of all hotkeys and their corresponding description in the
4988 handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
4989 directly find out which hotkey a certain menu item has, you can either look
4990-at the entry itelf in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
4991+at the entry itself in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
4992 can look it up in <a class="link" href="hdbk-reference.html#hdbk-reference-menus" title="Référence du menu principal">this section</a>.</p><div class="informaltable"><table border="1"><colgroup><col><col></colgroup><thead><tr><th>Raccourci</th><th>Description</th></tr></thead><tbody><tr><td>
4993 <span class="keycap"><strong>Left</strong></span>
4994 </td><td>Retourne en arrière dans l'historique de la fenêtre de lecture.</td></tr><tr><td>
4995@@ -74,4 +74,4 @@
4996 <span class="keycap"><strong>F9</strong></span>
4997 </td><td>
4998 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag"> <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show mag</span>
4999-</a>equivalent; toggles display of the mag(nifying glass).</td></tr></tbody></table></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference-toolbar.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">Référence de la barre d'outils </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
5000+</a>equivalent; toggles display of the mag(nifying glass).</td></tr></tbody></table></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="hdbk-reference.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="hdbk-reference.html">Up</a></td><td width="40%" align="right"> </td></tr><tr><td width="40%" align="left" valign="top">Chapter 5. Référence </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> </td></tr></table></div></body></html>
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches