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
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2009-04-05 07:01:43 +0000
+++ CMakeLists.txt 2009-04-29 17:39:29 +0000
@@ -2,13 +2,13 @@
2CMAKE_MINIMUM_REQUIRED(VERSION 2.4.0)2CMAKE_MINIMUM_REQUIRED(VERSION 2.4.0)
33
4#Version4#Version
5SET(BT_VERSION "2.0.alpha2")5ADD_DEFINITIONS(-DBT_VERSION=\\\"2.0.beta2\\\")
66
7#Non-English locales to be processed and installed for UI, handbook and howto7#Non-English locales to be processed and installed for UI, handbook and howto
8LIST(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)8LIST(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)
9#WARNING: If you modify HANDBOOK_LOCALE_LANGS or HOWTO_LOCALE_LANGS,9#WARNING: If you modify HANDBOOK_LOCALE_LANGS or HOWTO_LOCALE_LANGS,
10#also modify the po4a conf files in cmake/docs/ to make sure all languages are processed.10#also modify the po4a conf files in cmake/docs/ to make sure all languages are processed.
11LIST(APPEND HANDBOOK_LOCALE_LANGS cs de fi fr nl)11LIST(APPEND HANDBOOK_LOCALE_LANGS cs de fi fr hu nl)
12LIST(APPEND HOWTO_LOCALE_LANGS bg cs de fi fr it ko nl pt-br ru)12LIST(APPEND HOWTO_LOCALE_LANGS bg cs de fi fr it ko nl pt-br ru)
1313
14######################################################14######################################################
@@ -18,13 +18,13 @@
18SET(QT_USE_QTXML 1)18SET(QT_USE_QTXML 1)
19SET(QT_USE_QTWEBKIT 1)19SET(QT_USE_QTWEBKIT 1)
20FIND_PACKAGE(Qt4 REQUIRED)20FIND_PACKAGE(Qt4 REQUIRED)
21IF (QT_QTDBUS_FOUND)21IF (QT_QTDBUS_FOUND AND NOT APPLE)
22 SET(QT_USE_QTDBUS 1)22 SET(QT_USE_QTDBUS 1)
23 MESSAGE("Using DBUS")23 MESSAGE("Using DBUS")
24ELSE (QT_QTDBUS_FOUND)24ELSE (QT_QTDBUS_FOUND AND NOT APPLE)
25 ADD_DEFINITIONS(-DNO_DBUS)25 ADD_DEFINITIONS(-DNO_DBUS)
26 MESSAGE("No DBUS found")26 MESSAGE("No DBUS found")
27ENDIF(QT_QTDBUS_FOUND)27ENDIF(QT_QTDBUS_FOUND AND NOT APPLE)
28#28#
29# If cmake says that qdbusxml2cpp is missing, uncomment the following line29# If cmake says that qdbusxml2cpp is missing, uncomment the following line
30#30#
@@ -54,12 +54,12 @@
54# The actual build options54# The actual build options
55#55#
56INCLUDE_DIRECTORIES(56INCLUDE_DIRECTORIES(
57 ${CMAKE_CURRENT_BINARY_DIR} #for .h files generated from .ui
58 ${CMAKE_CURRENT_SOURCE_DIR}/src # so that include paths like "frontend/..." work
57 ${CLUCENE_INCLUDE_DIR} #CLucene headers59 ${CLUCENE_INCLUDE_DIR} #CLucene headers
58 ${CLUCENE_LIBRARY_DIR} #CLucene/clucene-config.h60 ${CLUCENE_LIBRARY_DIR} #CLucene/clucene-config.h
59 ${Boost_INCLUDE_DIRS}61 ${Boost_INCLUDE_DIRS}
60 ${SWORD_INCLUDE_DIR}62 ${SWORD_INCLUDE_DIR}
61 ${CMAKE_CURRENT_BINARY_DIR} #for .h files generated from .ui
62 ${CMAKE_CURRENT_SOURCE_DIR}/src # so that include paths like "frontend/..." work
63)63)
6464
6565
@@ -72,34 +72,41 @@
72 ${CLUCENE_LIBRARY_DIR}72 ${CLUCENE_LIBRARY_DIR}
73)73)
7474
75IF(APPLE)
76 SET(EXECUTABLE_NAME "BibleTime")
77ELSE(APPLE)
78 SET(EXECUTABLE_NAME "bibletime")
79ENDIF(APPLE)
80
75#Link to QtTest only in debug builds81#Link to QtTest only in debug builds
76IF (CMAKE_BUILD_TYPE STREQUAL "Release")82IF (CMAKE_BUILD_TYPE STREQUAL "Release")
77 # this will run moc on source files83 # this will run moc on source files
78 QT4_AUTOMOC( ${bibletime_SOURCES} )84 QT4_WRAP_CPP(bibletime_MOC_SOURCES ${bibletime_MOCABLE_HEADERS})
79 ADD_EXECUTABLE(bibletime ${bibletime_SOURCES} ${bibletime_UIS_H})85 ADD_EXECUTABLE(${EXECUTABLE_NAME} ${bibletime_SOURCES} ${bibletime_UIS_H} ${bibletime_MOC_SOURCES})
80 SET_TARGET_PROPERTIES(bibletime86 SET_TARGET_PROPERTIES(${EXECUTABLE_NAME}
81 PROPERTIES87 PROPERTIES
82 COMPILE_FLAGS "-fexceptions ${SWORD_CFLAGS}" #Enable exception handling88 COMPILE_FLAGS "${SWORD_CFLAGS}" #Enable exception handling
83 )89 )
84 INCLUDE(${QT_USE_FILE})90 INCLUDE(${QT_USE_FILE})
85 TARGET_LINK_LIBRARIES(bibletime91 TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME}
86 ${QT_LIBRARIES}92 ${QT_LIBRARIES}
87 ${CLUCENE_LIBRARY}93 ${CLUCENE_LIBRARY}
88 ${SWORD_LIBS}94 ${SWORD_LIBS}
89 )95 )
90ELSE (CMAKE_BUILD_TYPE STREQUAL "Release")96ELSE (CMAKE_BUILD_TYPE STREQUAL "Release")
91 # this will run moc on source files97 # this will run moc on source files
92 QT4_AUTOMOC( ${bibletime_SOURCES} ${bibletime_test_SOURCES} )98 QT4_WRAP_CPP(bibletime_MOC_SOURCES ${bibletime_MOCABLE_HEADERS})
99 QT4_WRAP_CPP(bibletime_test_MOC_SOURCES ${bibletime_test_MOCABLE_HEADERS})
93 SET(CMAKE_BUILD_TYPE "Debug")100 SET(CMAKE_BUILD_TYPE "Debug")
94 ADD_EXECUTABLE(bibletime ${bibletime_SOURCES}101 ADD_EXECUTABLE(${EXECUTABLE_NAME} ${bibletime_SOURCES}
95 ${bibletime_test_SOURCES} ${bibletime_UIS_H})102 ${bibletime_test_SOURCES} ${bibletime_UIS_H} ${bibletime_MOC_SOURCES} ${bibletime_test_MOC_SOURCES})
96 SET_TARGET_PROPERTIES(bibletime103 SET_TARGET_PROPERTIES(${EXECUTABLE_NAME}
97 PROPERTIES104 PROPERTIES
98 COMPILE_FLAGS "-fexceptions -DBT_ENABLE_TESTING ${SWORD_CFLAGS}" #Enable exception handling and Testing105 COMPILE_FLAGS "-DBT_ENABLE_TESTING ${SWORD_CFLAGS}" #Enable exception handling and Testing
99 )106 )
100 SET(QT_USE_QTTEST 1)107 SET(QT_USE_QTTEST 1)
101 INCLUDE(${QT_USE_FILE})108 INCLUDE(${QT_USE_FILE})
102 TARGET_LINK_LIBRARIES(bibletime109 TARGET_LINK_LIBRARIES(${EXECUTABLE_NAME}
103 ${QT_LIBRARIES}110 ${QT_LIBRARIES}
104 ${QT_LIBRARIES_DEBUG}111 ${QT_LIBRARIES_DEBUG}
105 ${CLUCENE_LIBRARY}112 ${CLUCENE_LIBRARY}
@@ -107,7 +114,7 @@
107 )114 )
108 # Unit Tests115 # Unit Tests
109 ADD_CUSTOM_TARGET(test116 ADD_CUSTOM_TARGET(test
110 COMMAND "./bibletime --run-tests"117 COMMAND ./${EXECUTABLE_NAME} --run-tests
111 WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"118 WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
112 COMMENT "Running BibleTime Unit Tests"119 COMMENT "Running BibleTime Unit Tests"
113 )120 )
@@ -124,26 +131,22 @@
124 SET(CMAKE_INSTALL_PREFIX "install/") #install to ./build/install, allow override131 SET(CMAKE_INSTALL_PREFIX "install/") #install to ./build/install, allow override
125ENDIF (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)132ENDIF (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
126133
127SET(CMAKE_CXX_FLAGS_RELEASE "-W -O2")134IF (MSVC)
128IF (NOT APPLE)135 SET(CMAKE_CXX_FLAGS_RELEASE "${SWORD_CFLAGS} -DNO_DBUS -DSWUSINGDLL -DBT_VERSION=\\\"${BT_VERSION}\\\" /MD /Zc:wchar_t- /W1 /D_UNICODE /DUNICODE ")
129 SET(CMAKE_CXX_FLAGS_DEBUG "-Wall -O0 -g")136 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")
130ELSE (NOT APPLE)137ELSE (MSVC)
131 SET(CMAKE_CXX_FLAGS_DEBUG "-Wall -O0 -g")138 SET(CMAKE_CXX_FLAGS_RELEASE "-W -O2 -fexceptions ${SWORD_CFLAGS} ")
132ENDIF (NOT APPLE)139 SET(CMAKE_CXX_FLAGS_DEBUG "-Wall -O0 -g -fexceptions ${SWORD_CFLAGS} -DBT_ENABLE_TESTING")
140ENDIF (MSVC)
133141
134142
135######################################################143######################################################
136# Install files144# Install files
137#145#
138IF (APPLE)146SET (BT_DESTINATION "bin/")
139 SET (BT_DESTINATION "bibletime.app/Contents/MacOS")147SET (BT_SHARE_PATH "")
140 SET (BT_SHARE_PATH "bibletime.app/Contents/")
141ELSE (APPLE)
142 SET (BT_DESTINATION "bin/")
143 SET (BT_SHARE_PATH "")
144ENDIF (APPLE)
145148
146INSTALL(TARGETS "bibletime"149INSTALL(TARGETS "${EXECUTABLE_NAME}"
147 DESTINATION "${BT_DESTINATION}"150 DESTINATION "${BT_DESTINATION}"
148)151)
149152
@@ -278,3 +281,105 @@
278 )281 )
279ADD_CUSTOM_TARGET(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")282ADD_CUSTOM_TARGET(uninstall "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")
280######################################################283######################################################
284
285
286######################################################
287# This is the CPack section
288# Copied and modified from http://www.vtk.org/Wiki/CMake:Packaging_With_CPack
289
290SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "BibleTime for Windows Beta")
291SET(CPACK_PACKAGE_VENDOR "http://www.bibletime.info")
292SET(CPACK_PACKAGE_VERSION_MAJOR "2")
293SET(CPACK_PACKAGE_VERSION_MINOR "0")
294SET(CPACK_PACKAGE_VERSION_PATCH "0beta2")
295SET(CPACK_PACKAGE_INSTALL_DIRECTORY "BibleTime")
296
297######################################################
298# Windows segment
299######################################################
300IF(WIN32 AND NOT UNIX)
301 SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README")
302 SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/LICENSE")
303 # There is a bug in NSI that does not handle full unix paths properly. Make
304 # sure there is at least one set of four (4) backlasshes.
305
306 # We need the libraries, and they're not pulled in automatically
307 INCLUDE(${QT_USE_FILE})
308 IF(NOT CMAKE_BUILD_TYPE STREQUAL "Release")
309 SET(CMAKE_INSTALL_DEBUG_LIBRARIES TRUE)
310 INSTALL(FILES
311 "${QT_LIBRARY_DIR}/QtWebKitd4.dll"
312 "${QT_LIBRARY_DIR}/QtGuid4.dll"
313 "${QT_LIBRARY_DIR}/QtXmld4.dll"
314 "${QT_LIBRARY_DIR}/QtTestd4.dll"
315 "${QT_LIBRARY_DIR}/QtNetworkd4.dll"
316 "${QT_LIBRARY_DIR}/QtCored4.dll"
317 "${QT_LIBRARY_DIR}/phonond4.dll"
318 "${QT_LIBRARY_DIR}/QtSvgd4.dll"
319 DESTINATION "${BT_DESTINATION}"
320 )
321 ELSE(NOT CMAKE_BUILD_TYPE STREQAL "Release")
322 INSTALL(FILES
323 "${QT_LIBRARY_DIR}/QtWebKit4.dll"
324 "${QT_LIBRARY_DIR}/QtGui4.dll"
325 "${QT_LIBRARY_DIR}/QtXml4.dll"
326 "${QT_LIBRARY_DIR}/QtNetwork4.dll"
327 "${QT_LIBRARY_DIR}/QtCore4.dll"
328 "${QT_LIBRARY_DIR}/phonon4.dll"
329 "${QT_LIBRARY_DIR}/QtSvg4.dll"
330 DESTINATION "${BT_DESTINATION}")
331 ENDIF(NOT CMAKE_BUILD_TYPE STREQUAL "Release")
332
333 # This adds in the required Windows system libraries and libsword.dll
334 INCLUDE(InstallRequiredSystemLibraries)
335 STRING(REPLACE ".lib" ".dll" SWORD_DLL "${SWORD_LIBRARY}")
336 INSTALL(FILES ${SWORD_DLL} DESTINATION ${BT_DESTINATION}) # This will also take effect in the regular install
337
338 # Some options for the CPack system. These should be pretty self-evident
339 SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/pics/icons\\\\bibletime.png")
340 SET(CPACK_NSIS_INSTALLED_ICON_NAME "bin\\\\bibletime.exe")
341 SET(CPACK_NSIS_DISPLAY_NAME "${CPACK_PACKAGE_INSTALL_DIRECTORY} for Windows")
342 SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\www.bibletime.info")
343 SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\www.bibletime.info")
344 SET(CPACK_NSIS_CONTACT "bt-devel@crosswire.org")
345 SET(CPACK_NSIS_MODIFY_PATH OFF)
346 SET(CPACK_GENERATOR "NSIS")
347####################################
348# Apple Segment
349####################################
350ELSEIF(APPLE)
351 INCLUDE(${QT_USE_FILE})
352 SET(QT_FRAMEWORKS_USED "QtWebKit"
353 "QtGui"
354 "QtXml"
355 "QtTest"
356 "QtNetwork"
357 "QtCore"
358 "QtSvg")
359 FOREACH(QT_FRAME ${QT_FRAMEWORKS_USED})
360 INSTALL(DIRECTORY
361 "${QT_LIBRARY_DIR}/${QT_FRAME}.framework"
362 DESTINATION "${BT_DESTINATION}/../Library/Frameworks/")
363 ENDFOREACH(QT_FRAME ${QT_FRAMEWORKS_USED})
364 # Other libraries I need
365 INSTALL(FILES "${CLUCENE_LIBRARY}" "${CLUCENE_LIBRARY_DIR}/libclucene.0.0.0.dylib" "${CLUCENE_LIBRARY_DIR}/libclucene.0.dylib" "/opt/local/lib/libcurl.4.dylib"
366 "/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"
367 "/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"
368 "/opt/local/lib/libicudata.40.dylib" "/opt/local/lib/libicudata.40.0.dylib" "/opt/local/lib/libpng12.0.dylib"
369 DESTINATION "${BT_DESTINATION}/../Library")
370
371 # Qt Plugins
372 INSTALL(DIRECTORY "${QT_PLUGINS_DIR}/iconengines" "${QT_PLUGINS_DIR}/imageformats" DESTINATION "${BT_DESTINATION}/../../plugins")
373 # A file to execute that might get rid of the above mess
374 SET(CPACK_BUNDLE_STARTUP_COMMAND "${CMAKE_CURRENT_SOURCE_DIR}/cmake/platforms/macos/bt_start.sh")
375 SET(CPACK_BUNDLE_NAME "BibleTime")
376 SET(CPACK_PACKAGE_FILE_NAME "BibleTime_Mac_Beta")
377 SET(CPACK_BUNDLE_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/cmake/platforms/macos/Info.plist")
378 SET(CPACK_BUNDLE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/cmake/platforms/macos/BibleTime.icns")
379 SET(CPACK_PACKAGE_ICON "${CMAKE_CURRENT_SOURCE_DIR}/cmake/platforms/macos/BibleTime.icns")
380 SET(CPACK_GENERATOR "Bundle")
381ENDIF(WIN32 AND NOT UNIX)
382
383SET(CPACK_PACKAGE_EXECUTABLES "bibletime" "BibleTime")
384
385INCLUDE(CPack)
281386
=== modified file 'ChangeLog'
--- ChangeLog 2009-04-05 07:01:43 +0000
+++ ChangeLog 2009-04-29 17:39:29 +0000
@@ -1,3 +1,33 @@
12009-04-29 Martin Gruner <mgruner@crosswire.org>
2 * release 2.0.beta2
3
42009-04-26 Gary Holmlund
5 * Fix clicking of links in the Mag Window.
6
72009-04-25 Gary Holmlund
8 * Fix drag/drop onto the display window.
9
102009-04-25 Martin Gruner <mgruner@crosswire.org>
11 * include bugfix from Fabio Correa: fix cmake syntax for "make test" generation
12
132009-04-24 Thomas Abthorpe
14 * Add Hungarian Handbook translation to the build
15
162009-04-21 Martin Gruner <mgruner@crosswire.org>
17 * release 2.0.beta1
18
192009-04-21 Martin Gruner <mgruner@crosswire.org>
20 * Applied cmake patch from Greg Hellings with slight modifications
21 * Applied translation patches from Jaak Ristioja
22 * Applied patch from Jaak Ristioja which makes generated config.h obsolete
23 * Applied patch from Jaak Ristioja which simplifies .moc file generation
24
252009-04-09 Gary Holmlund
26 * Add translatable text for several dialogs
27 These words need transating:
28 Ok, Open, Save, Cancel, Close, Discard, Apply, Reset, Restore Defaults,
29 Help, Save All, Yes, Yes To All, No, No To All
30
12009-03-25 Martin Gruner <mgruner@crosswire.org>312009-03-25 Martin Gruner <mgruner@crosswire.org>
2 * release 2.0.alpha332 * release 2.0.alpha3
333
434
=== modified file 'cmake/FindCLucene.cmake'
--- cmake/FindCLucene.cmake 2009-04-05 07:01:43 +0000
+++ cmake/FindCLucene.cmake 2009-04-24 02:10:38 +0000
@@ -27,6 +27,18 @@
27 INCLUDE(${PROJECT_CMAKE}/CLuceneConfig.cmake)27 INCLUDE(${PROJECT_CMAKE}/CLuceneConfig.cmake)
28ENDIF(EXISTS ${PROJECT_CMAKE}/CLuceneConfig.cmake)28ENDIF(EXISTS ${PROJECT_CMAKE}/CLuceneConfig.cmake)
2929
30IF(MSVC)
31 IF(CMAKE_BUILD_TYPE STREQUAL "Release")
32 SET(WIN_CLUCENE_SEARCH_PATH ../clucene-core-0.9.21b/src/CLucene/Release)
33 ELSE(CMAKE_BUILD_TYPE STREQUAL "Release")
34 SET(WIN_CLUCENE_SEARCH_PATH ../clucene-core-0.9.21b/src/CLucene/debug)
35 ENDIF(CMAKE_BUILD_TYPE STREQUAL "Release")
36 SET(WIN_CLUCENE_INCLUDE_PATH ../clucene-core-0.9.21b/src)
37ELSE(MSVC)
38 SET(WIN_CLUCENE_SEARCH_PATH "")
39 SET(WIN_CLUCENE_INCLUDE_PATH "")
40ENDIF(MSVC)
41
30SET(TRIAL_LIBRARY_PATHS42SET(TRIAL_LIBRARY_PATHS
31 $ENV{CLUCENE_HOME}/lib${LIB_SUFFIX}43 $ENV{CLUCENE_HOME}/lib${LIB_SUFFIX}
32 ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}44 ${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}
@@ -36,6 +48,7 @@
36 /usr/lib6448 /usr/lib64
37 /sw/lib${LIB_SUFFIX}49 /sw/lib${LIB_SUFFIX}
38 /usr/pkg/lib${LIB_SUFFIX}50 /usr/pkg/lib${LIB_SUFFIX}
51 ${WIN_CLUCENE_SEARCH_PATH}
39 )52 )
40SET(TRIAL_INCLUDE_PATHS53SET(TRIAL_INCLUDE_PATHS
41 $ENV{CLUCENE_HOME}/include54 $ENV{CLUCENE_HOME}/include
@@ -44,9 +57,9 @@
44 /usr/include57 /usr/include
45 /sw/include58 /sw/include
46 /usr/pkg/include59 /usr/pkg/include
60 ${WIN_CLUCENE_INCLUDE_PATH}
47 )61 )
48FIND_LIBRARY_WITH_DEBUG(CLUCENE_LIBRARY62FIND_LIBRARY_WITH_DEBUG(CLUCENE_LIBRARY
49 WIN32_DEBUG_POSTFIX d
50 NAMES clucene clucene-core63 NAMES clucene clucene-core
51 PATHS ${TRIAL_LIBRARY_PATHS})64 PATHS ${TRIAL_LIBRARY_PATHS})
52IF (CLUCENE_LIBRARY)65IF (CLUCENE_LIBRARY)
5366
=== modified file 'cmake/FindSword.cmake'
--- cmake/FindSword.cmake 2009-04-05 07:01:43 +0000
+++ cmake/FindSword.cmake 2009-04-24 02:10:38 +0000
@@ -1,6 +1,8 @@
1SET (REQUIRED_SWORD_VERSION 1.5.9)1SET (REQUIRED_SWORD_VERSION 1.5.9)
2SET (SIMPLE_RENDER_SWORD_VERSION 1.5.10)2SET (SIMPLE_RENDER_SWORD_VERSION 1.5.10)
3SET (MULTIVERSE_SWORD_VERSION 1.5.11.1)3SET (MULTIVERSE_SWORD_VERSION 1.5.11.1)
4SET (SYSCONF_CHANGED_SWORD_VERSION 1.5.11.98)
5SET (INTERNET_WARNING_SWORD_VERSION 1.5.11.98)
46
5# This module looks for installed sword7# This module looks for installed sword
6#8#
@@ -16,21 +18,26 @@
16 /usr/lib${LIB_SUFFIX}18 /usr/lib${LIB_SUFFIX}
17 /usr/local/lib${LIB_SUFFIX}19 /usr/local/lib${LIB_SUFFIX}
18 /sw/lib${LIB_SUFFIX}20 /sw/lib${LIB_SUFFIX}
19 ) 21 ../sword-1.5.11/lib/vcppmake/vc8/ICUDebug
22 ../sword-1.5.11/lib/vcppmake/vc8/ICURelease
23 )
20 SET(TRIAL_INCLUDE_PATHS24 SET(TRIAL_INCLUDE_PATHS
25 $ENV{SWORD_HOME}/include/sword
21 $ENV{SWORD_HOME}/include26 $ENV{SWORD_HOME}/include
27 ${CMAKE_INSTALL_PREFIX}/include/sword
22 ${CMAKE_INSTALL_PREFIX}/include28 ${CMAKE_INSTALL_PREFIX}/include
23 /sw/include29 /sw/include
24 ) 30 ../sword-1.5.11/include
31 )
2532
26 FIND_LIBRARY(SWORD_LIBRARY sword33 FIND_LIBRARY(SWORD_LIBRARY sword
27 NAMES libsword34 NAMES libsword
28 PATHS ${TRIAL_LIBRARY_PATHS})35 PATHS ${TRIAL_LIBRARY_PATHS})
29 IF (SWORD_LIBRARY)36 IF (SWORD_LIBRARY)
30 MESSAGE(STATUS "Found CLucene library: ${CLUCENE_LIBRARY}")37 MESSAGE(STATUS "Found Sword library: ${SWORD_LIBRARY}")
31 ENDIF (SWORD_LIBRARY)38 ENDIF (SWORD_LIBRARY)
32 FIND_PATH(SWORD_INCLUDE_DIR39 FIND_PATH(SWORD_INCLUDE_DIR
33 NAMES sword/swmgr.h40 NAMES swmgr.h
34 PATHS ${TRIAL_INCLUDE_PATHS})41 PATHS ${TRIAL_INCLUDE_PATHS})
3542
36 IF (SWORD_INCLUDE_DIR)43 IF (SWORD_INCLUDE_DIR)
@@ -39,46 +46,57 @@
3946
40ELSE(WIN32)47ELSE(WIN32)
4148
42EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${REQUIRED_SWORD_VERSION} sword49 EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${REQUIRED_SWORD_VERSION} sword
43 RESULT_VARIABLE SWORD_VERSION_OK50 RESULT_VARIABLE SWORD_VERSION_OK
44)51 )
45EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${SIMPLE_RENDER_SWORD_VERSION} sword52 EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${SIMPLE_RENDER_SWORD_VERSION} sword
46 RESULT_VARIABLE SIMPLE_RENDER_SWORD_OK53 RESULT_VARIABLE SIMPLE_RENDER_SWORD_OK
47)54 )
48EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${MULTIVERSE_SWORD_VERSION} sword55 EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${MULTIVERSE_SWORD_VERSION} sword
49 RESULT_VARIABLE MULTIVERSE_SWORD_OK56 RESULT_VARIABLE MULTIVERSE_SWORD_OK
50)57 )
51EXECUTE_PROCESS(COMMAND pkg-config --modversion sword58 EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${SYSCONF_CHANGED_SWORD_VERSION} sword
52 OUTPUT_VARIABLE SWORD_VERSION59 RESULT_VARIABLE SYSCONF_CHANGED_SWORD_OK
53 OUTPUT_STRIP_TRAILING_WHITESPACE60 )
54)61 EXECUTE_PROCESS(COMMAND pkg-config --atleast-version=${INTERNET_WARNING_SWORD_VERSION} sword
5562 RESULT_VARIABLE INTERNET_WARNING_SWORD_OK
56IF (SWORD_VERSION_OK EQUAL 0)63 )
5764
58 EXECUTE_PROCESS(COMMAND pkg-config --variable=includedir sword65
59 OUTPUT_VARIABLE SWORD_INCLUDE_DIR66 EXECUTE_PROCESS(COMMAND pkg-config --modversion sword
60 OUTPUT_STRIP_TRAILING_WHITESPACE67 OUTPUT_VARIABLE SWORD_VERSION
61 )68 OUTPUT_STRIP_TRAILING_WHITESPACE
62 MESSAGE(STATUS "Sword version ${SWORD_VERSION} is ok")69 )
6370
64 EXECUTE_PROCESS(COMMAND pkg-config --libs sword71 IF (SWORD_VERSION_OK EQUAL 0)
65 OUTPUT_VARIABLE SWORD_LIBS72
66 OUTPUT_STRIP_TRAILING_WHITESPACE73 MESSAGE(STATUS "Sword version ${SWORD_VERSION} is ok")
67 )74
68 MESSAGE(STATUS "Sword lib linker flags to be used: ${SWORD_LIBS}")75 EXECUTE_PROCESS(COMMAND pkg-config --variable=includedir sword
6976 OUTPUT_VARIABLE SWORD_INCLUDE_DIR
70ELSE (SWORD_VERSION_OK EQUAL 0)77 OUTPUT_STRIP_TRAILING_WHITESPACE
71 IF (SWORD_VERSION)78 )
72 MESSAGE(FATAL_ERROR "Sword version ${SWORD_VERSION} does not match the required ${REQUIRED_SWORD_VERSION}")79 SET(SWORD_INCLUDE_DIR "${SWORD_INCLUDE_DIR}/sword")
73 ELSE (SWORD_VERSION)80 MESSAGE(STATUS "Sword include directory is ${SWORD_INCLUDE_DIR}")
74 MESSAGE(FATAL_ERROR "Sword not found")81
75 ENDIF (SWORD_VERSION)82 EXECUTE_PROCESS(COMMAND pkg-config --libs sword
76ENDIF (SWORD_VERSION_OK EQUAL 0)83 OUTPUT_VARIABLE SWORD_LIBS
84 OUTPUT_STRIP_TRAILING_WHITESPACE
85 )
86 MESSAGE(STATUS "Sword lib linker flags to be used: ${SWORD_LIBS}")
87
88 ELSE (SWORD_VERSION_OK EQUAL 0)
89
90 IF (SWORD_VERSION)
91 MESSAGE(FATAL_ERROR "Sword version ${SWORD_VERSION} does not match the required ${REQUIRED_SWORD_VERSION}")
92 ELSE (SWORD_VERSION)
93 MESSAGE(FATAL_ERROR "Sword not found")
94 ENDIF (SWORD_VERSION)
95
96 ENDIF (SWORD_VERSION_OK EQUAL 0)
7797
78ENDIF (WIN32)98ENDIF (WIN32)
7999
80SET(SWORD_INCLUDE_DIR "${SWORD_INCLUDE_DIR}/sword")
81MESSAGE(STATUS "Sword include directory is ${SWORD_INCLUDE_DIR}")
82100
83IF (MULTIVERSE_SWORD_OK EQUAL 0)101IF (MULTIVERSE_SWORD_OK EQUAL 0)
84 SET (SWORD_CFLAGS "${SWORD_CFLAGS} -DSWORD_MULTIVERSE")102 SET (SWORD_CFLAGS "${SWORD_CFLAGS} -DSWORD_MULTIVERSE")
@@ -86,6 +104,12 @@
86IF (SIMPLE_RENDER_SWORD_OK EQUAL 0)104IF (SIMPLE_RENDER_SWORD_OK EQUAL 0)
87 SET (SWORD_CFLAGS "${SWORD_CFLAGS} -DSWORD_SIMPLERENDER")105 SET (SWORD_CFLAGS "${SWORD_CFLAGS} -DSWORD_SIMPLERENDER")
88ENDIF (SIMPLE_RENDER_SWORD_OK EQUAL 0)106ENDIF (SIMPLE_RENDER_SWORD_OK EQUAL 0)
107IF (SYSCONF_CHANGED_SWORD_OK EQUAL 0)
108 SET (SWORD_CFLAGS "${SWORD_CFLAGS} -DSWORD_SYSCONF_CHANGED")
109ENDIF (SYSCONF_CHANGED_SWORD_OK EQUAL 0)
110IF (INTERNET_WARNING_SWORD_OK EQUAL 0)
111 SET (SWORD_CFLAGS "${SWORD_CFLAGS} -DSWORD_INTERNET_WARNING")
112ENDIF (INTERNET_WARNING_SWORD_OK EQUAL 0)
89113
90MARK_AS_ADVANCED(114MARK_AS_ADVANCED(
91 SWORD_INCLUDE_DIR115 SWORD_INCLUDE_DIR
92116
=== modified file 'cmake/bibletime_source_list.cmake'
--- cmake/bibletime_source_list.cmake 2009-04-05 07:01:43 +0000
+++ cmake/bibletime_source_list.cmake 2009-04-24 02:10:38 +0000
@@ -47,6 +47,7 @@
47 src/util/cresmgr.cpp47 src/util/cresmgr.cpp
48 src/util/cpointers.cpp48 src/util/cpointers.cpp
49 src/util/ctoolclass.cpp49 src/util/ctoolclass.cpp
50 src/util/dialogutil.cpp
50 src/util/directoryutil.cpp51 src/util/directoryutil.cpp
51 src/util/migrationutil.cpp52 src/util/migrationutil.cpp
52 53
@@ -183,6 +184,92 @@
183 src/main.cpp184 src/main.cpp
184)185)
185186
187# mocable headers
188SET(bibletime_MOCABLE_HEADERS
189 src/backend/drivers/cswordmoduleinfo.h
190 src/backend/managers/cswordbackend.h
191 src/backend/cswordmodulesearch.h
192 src/bibletime.h
193 src/bibletime_dbus_adaptor.h
194 src/frontend/searchdialog/csearchmodulechooserdialog.h
195 src/frontend/searchdialog/crangechooserdialog.h
196 src/frontend/searchdialog/btsearchresultarea.h
197 src/frontend/searchdialog/btsearchoptionsarea.h
198 src/frontend/searchdialog/cmoduleresultview.h
199 src/frontend/searchdialog/csearchdialog.h
200 src/frontend/searchdialog/analysis/csearchanalysisdialog.h
201 src/frontend/searchdialog/analysis/csearchanalysisscene.h
202 src/frontend/searchdialog/csearchresultview.h
203 src/frontend/searchdialog/chistorycombobox.h
204 src/frontend/cdragdrop.h
205 src/frontend/mainindex/bookshelf/chidemodulechooserdialog.h
206 src/frontend/mainindex/bookshelf/cbookshelfindex.h
207 src/frontend/mainindex/cmainindex.h
208 src/frontend/mainindex/bookmarks/cbookmarkindex.h
209 src/frontend/cmdiarea.h
210 src/frontend/cinfodisplay.h
211 src/frontend/cinputdialog.h
212 src/frontend/cmodulechooserdialog.h
213 src/frontend/keychooser/cscrollerwidgetset.h
214 src/frontend/keychooser/cbooktreechooser.h
215 src/frontend/keychooser/versekeychooser/btversekeymenu.h
216 src/frontend/keychooser/versekeychooser/cbiblekeychooser.h
217 src/frontend/keychooser/versekeychooser/ckeyreferencewidget.h
218 src/frontend/keychooser/versekeychooser/btdropdownchooserbutton.h
219 src/frontend/keychooser/cscrollbutton.h
220 src/frontend/keychooser/bthistory.h
221 src/frontend/keychooser/ckeychooserwidget.h
222 src/frontend/keychooser/cbookkeychooser.h
223 src/frontend/keychooser/ckeychooser.h
224 src/frontend/keychooser/clexiconkeychooser.h
225 src/frontend/cprinter.h
226 src/frontend/btaboutmoduledialog.h
227 src/frontend/htmldialogs/bttabhtmldialog.h
228 src/frontend/htmldialogs/btaboutdialog.h
229 src/frontend/display/cdisplay.h
230 src/frontend/display/bthtmlreaddisplay.h
231 src/frontend/display/btfontsizewidget.h
232 src/frontend/display/btcolorwidget.h
233 src/frontend/display/bthtmljsobject.h
234 src/frontend/display/chtmlwritedisplay.h
235 src/frontend/display/bthtmlfindtext.h
236 src/frontend/cmoduleindexdialog.h
237 src/frontend/settingsdialogs/cdisplaysettings.h
238 src/frontend/settingsdialogs/cswordsettings.h
239 src/frontend/settingsdialogs/clistwidget.h
240 src/frontend/settingsdialogs/cconfigurationdialog.h
241 #src/frontend/settingsdialogs/cacceleratorsettings.h.OFF
242 src/frontend/settingsdialogs/cfontchooser.h
243 src/frontend/settingsdialogs/clanguagesettings.h
244 src/frontend/displaywindow/cbookreadwindow.h
245 src/frontend/displaywindow/ccommentaryreadwindow.h
246 src/frontend/displaywindow/cmodulechooserbar.h
247 src/frontend/displaywindow/clexiconreadwindow.h
248 src/frontend/displaywindow/chtmlwritewindow.h
249 src/frontend/displaywindow/bttoolbarpopupaction.h
250 src/frontend/displaywindow/btactioncollection.h
251 src/frontend/displaywindow/creadwindow.h
252 src/frontend/displaywindow/cmodulechooserbutton.h
253 src/frontend/displaywindow/cbuttons.h
254 src/frontend/displaywindow/cbiblereadwindow.h
255 src/frontend/displaywindow/cplainwritewindow.h
256 src/frontend/displaywindow/cdisplaywindow.h
257 src/frontend/displaywindow/cwritewindow.h
258 src/frontend/bookshelfmanager/btconfigdialog.h
259 src/frontend/bookshelfmanager/removepage/btremovepage.h
260 src/frontend/bookshelfmanager/cswordsetupinstallsourcesdialog.h
261 src/frontend/bookshelfmanager/installpage/btsourcewidget.h
262 src/frontend/bookshelfmanager/installpage/btinstallpage.h
263 src/frontend/bookshelfmanager/installpage/btsourcearea.h
264 src/frontend/bookshelfmanager/installpage/btinstallmodulechooserdialog.h
265 src/frontend/bookshelfmanager/installpage/btinstallprogressdialog.h
266 src/frontend/bookshelfmanager/installpage/btinstallpathdialog.h
267 src/frontend/bookshelfmanager/installpage/btinstallthread.h
268 src/frontend/bookshelfmanager/btmodulemanagerdialog.h
269 src/frontend/bookshelfmanager/indexpage/btindexpage.h
270 src/frontend/bookshelfmanager/btinstallmgr.h
271)
272
186#unit tests273#unit tests
187SET(bibletime_test_SOURCES274SET(bibletime_test_SOURCES
188 #main file275 #main file
@@ -191,3 +278,6 @@
191 src/tests/backend/config/cbtconfig_test.cpp278 src/tests/backend/config/cbtconfig_test.cpp
192)279)
193280
281SET(bibletime_test_MOCABLE_HEADERS
282 src/tests/bibletime_test.h
283)
194284
=== modified file 'cmake/docs/handbook_po4a.conf'
--- cmake/docs/handbook_po4a.conf 2009-04-05 07:01:43 +0000
+++ cmake/docs/handbook_po4a.conf 2009-04-29 17:39:29 +0000
@@ -4,7 +4,7 @@
4# If you modify the language list here, make sure you also modify CMakeLists.txt4# If you modify the language list here, make sure you also modify CMakeLists.txt
5#5#
66
7[po4a_langs] cs de fi fr nl7[po4a_langs] cs de fi fr hu nl
8[po4a_paths] i18n/handbook/handbook.pot $lang:i18n/handbook/handbook-$lang.po8[po4a_paths] i18n/handbook/handbook.pot $lang:i18n/handbook/handbook-$lang.po
9[type: docbook] docs/handbook/en/docbook/hdbk-config.docbook $lang:docs/handbook/$lang/docbook/hdbk-config.docbook9[type: docbook] docs/handbook/en/docbook/hdbk-config.docbook $lang:docs/handbook/$lang/docbook/hdbk-config.docbook
10[type: docbook] docs/handbook/en/docbook/hdbk-intro.docbook $lang:docs/handbook/$lang/docbook/hdbk-intro.docbook10[type: docbook] docs/handbook/en/docbook/hdbk-intro.docbook $lang:docs/handbook/$lang/docbook/hdbk-intro.docbook
1111
=== modified file 'cmake/docs/howto_po4a.conf'
--- cmake/docs/howto_po4a.conf 2009-04-05 07:01:43 +0000
+++ cmake/docs/howto_po4a.conf 2009-04-29 17:39:29 +0000
@@ -4,7 +4,7 @@
4# If you modify the language list here, make sure you also modify CMakeLists.txt4# If you modify the language list here, make sure you also modify CMakeLists.txt
5#5#
66
7[po4a_langs] bg cs de fi fr it ko nl pt-br ru7[po4a_langs] bg cs de fi fr it hu ko nl pt-br ru
8[po4a_paths] i18n/howto/howto.pot $lang:i18n/howto/howto-$lang.po8[po4a_paths] i18n/howto/howto.pot $lang:i18n/howto/howto-$lang.po
9[type: docbook] docs/howto/en/docbook/howto-basics.docbook $lang:docs/howto/$lang/docbook/howto-basics.docbook9[type: docbook] docs/howto/en/docbook/howto-basics.docbook $lang:docs/howto/$lang/docbook/howto-basics.docbook
10[type: docbook] docs/howto/en/docbook/howto-importance.docbook $lang:docs/howto/$lang/docbook/howto-importance.docbook10[type: docbook] docs/howto/en/docbook/howto-importance.docbook $lang:docs/howto/$lang/docbook/howto-importance.docbook
1111
=== added directory 'cmake/platforms/macos'
=== added file 'cmake/platforms/macos/BibleTime.icns'
12Binary 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 differ12Binary 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
=== added file 'cmake/platforms/macos/Info.plist'
--- cmake/platforms/macos/Info.plist 1970-01-01 00:00:00 +0000
+++ cmake/platforms/macos/Info.plist 2009-04-29 17:39:29 +0000
@@ -0,0 +1,10 @@
1<?xml version="1.0" encoding="UTF-8"?>
2<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3<plist version="1.0">
4<dict>
5 <key>CFBundleIconFile</key>
6 <string>BibleTime.icns</string>
7 <key>CFBundleDevelopmentRegion</key>
8 <string>English</string>
9</dict>
10</plist>
011
=== added file 'cmake/platforms/macos/bt_start.sh'
--- cmake/platforms/macos/bt_start.sh 1970-01-01 00:00:00 +0000
+++ cmake/platforms/macos/bt_start.sh 2009-04-29 17:39:29 +0000
@@ -0,0 +1,21 @@
1#!/bin/bash
2# Author: Gregory Hellings
3# Copyright: BibleTime development team
4# Initial creation date: 23 April 2009
5# This is a Mac-only shell script that makes it possible for us to avoid having to run
6# lots of annoying commands on the Qt frameworks for the Mac build of BibleTime.
7# It is inspired and draws heavily from th example at http://www.cmake.org/Wiki/CMake:CPackPackageGenerators
8
9BT_BUNDLE="`echo "$0" | sed -e 's/\/Contents\/MacOS\/BibleTime//'`"
10
11echo "running $0"
12echo "BT_BUNDLE: $BT_BUNDLE"
13
14export DYLD_LIBRARY_PATH=$BT_BUNDLE/Contents/Resources/Library
15export DYLD_FRAMEWORK_PATH=$BT_BUNDLE/Contents/Resources/Library/Frameworks
16export PATH=$BT_BUNDLE/Contents/Resources/bin:$PATH
17export QT_PLUGIN_PATH=$BT_BUNDLE/Contents/plugins
18
19cd $BT_BUNDLE/Contents/Resources/bin
20# Run BibleTime
21exec "BibleTime"
022
=== modified file 'debian/changelog'
--- debian/changelog 2009-04-05 07:28:03 +0000
+++ debian/changelog 2009-04-29 17:39:29 +0000
@@ -1,4 +1,33 @@
1bibletime (2.0~alpha3-1) UNRELEASED; urgency=low1bibletime (2.0~beta2-1) UNRELEASED; urgency=low
2
3 * New upstream release
4 * debian/patches/01_sword_1.6.0rc2_api_change.patch:
5 - Remove patch, now included upstream.
6
7 -- Jonathan Marsden <jmarsden@fastmail.fm> Wed, 29 Apr 2009 10:31:33 -0700
8
9bibletime (2.0~beta1-1) UNRELEASED; urgency=low
10
11 * New upstream version.
12 * debian/patches/00_sysconfig.patch:
13 - Remove patch, now included upstream.
14 * debian/patches/01_sword_1.6.0rc2_api_change.patch:
15 - Create patch from bibletime svn revision 1201 to
16 handle SWORD 1.6.0RC2 API change.
17
18 -- Jonathan Marsden <jmarsden@fastmail.fm> Thu, 23 Apr 2009 19:08:08 -0700
19
20bibletime (2.0~alpha3-2~jmarsden1~intrepid1) intrepid; urgency=low
21
22 * debian/rules:
23 - Add simple-patchsys.mk
24 * debian/patches/00_sysconfig.patch:
25 - Fixes sysconfig -> &sysConfig for building against SWORD 1.6.0RC1
26 - This patch is expected to be included in upstream very soon.
27
28 -- Jonathan Marsden <jmarsden@fastmail.fm> Mon, 13 Apr 2009 19:12:12 -0700
29
30bibletime (2.0~alpha3-1) experimental; urgency=low
231
3 * New upstream version.32 * New upstream version.
4 * Relax version checks on libsword-dev Build-Depends:33 * Relax version checks on libsword-dev Build-Depends:
534
=== modified file 'debian/rules'
--- debian/rules 2009-04-05 06:47:19 +0000
+++ debian/rules 2009-04-14 02:33:16 +0000
@@ -2,6 +2,7 @@
22
3include /usr/share/cdbs/1/rules/debhelper.mk3include /usr/share/cdbs/1/rules/debhelper.mk
4include /usr/share/cdbs/1/class/cmake.mk4include /usr/share/cdbs/1/class/cmake.mk
5include /usr/share/cdbs/1/rules/simple-patchsys.mk
56
6install/bibletime::7install/bibletime::
7 dh_install debian/bibletime.xpm usr/share/bibletime8 dh_install debian/bibletime.xpm usr/share/bibletime
89
=== modified file 'docs/handbook/cs/docbook/hdbk-config.docbook'
--- docs/handbook/cs/docbook/hdbk-config.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/docbook/hdbk-config.docbook 2009-04-24 02:10:38 +0000
@@ -1,9 +1,9 @@
1<chapter id="hdbk-config">1<chapter id="hdbk-config">
2 <title>Nastavení &bibletime; </title>2 <title>Nastavení &bibletime; </title>
3 <para> V této sekci najdete úvod k nastavení &bibletime; které najdete pod 3 <para> V této sekci najdete úvod k nastavení &bibletime; které najdete pod volbou
4volbou<guimenu>Nastavení</guimenu> v hlavním menu.</para>4<guimenu>Nastavení</guimenu> v hlavním menu.</para>
5 <sect1 id="hdbk-config-bt">5 <sect1 id="hdbk-config-bt">
6 <title>Nastavení BibleTime Dialogu</title>6 <title>Nastavení Dialogu BibleTime</title>
7 <para>Uživatelské rozhraní programu &bibletime; může být uzpůsobeno mnoha směry v 7 <para>Uživatelské rozhraní programu &bibletime; může být uzpůsobeno mnoha směry v
8závislosti na vašich potřebách. K dialogu nastavení můžete přistoupit 8závislosti na vašich potřebách. K dialogu nastavení můžete přistoupit
9výběrem<menuchoice> <guimenu>Nastavení</guimenu> </menuchoice> 9výběrem<menuchoice> <guimenu>Nastavení</guimenu> </menuchoice>
@@ -29,10 +29,10 @@
29 <para>Zde můžete zvolit jazyk, který bude použit pro jména biblických knih. Pokud 29 <para>Zde můžete zvolit jazyk, který bude použit pro jména biblických knih. Pokud
30je dostupný, nastavte tuto možnost na váš jazyk, a budete se cítit doma.</para>30je dostupný, nastavte tuto možnost na váš jazyk, a budete se cítit doma.</para>
3131
32 <para>Ve výchozím nastavení používá &bibletime; systémové písmo. Pokud je to 32 <para>By default, &bibletime; uses the default system display font. You can
33nezbytné, můžete toto nastavení změnit. Některé jazyky vyžadují pro správné 33override this font if necessary. Some languages require special fonts to be
34zobrazení speciální písma, tento dialog vám umožní nastavit vlastní písmo 34displayed correctly, and this dialog allows you to specify a custom font for
35pro každý jazyk.</para>35each language.</para>
36 <mediaobject>36 <mediaobject>
37 <imageobject>37 <imageobject>
38 <imagedata fileref="ss_configfonts.png" format="PNG" />38 <imagedata fileref="ss_configfonts.png" format="PNG" />
@@ -106,14 +106,14 @@
106 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">106 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">
107 SIL unicode fonts</ulink>107 SIL unicode fonts</ulink>
108 </entry>108 </entry>
109 <entry>Výborné písmo Unicode z " Summer Institute of Linguistics".</entry>109 <entry>Excellent Unicode fonts from the Summer Institute of Linguistics.</entry>
110 </row>110 </row>
111 <row>111 <row>
112 <entry>112 <entry>
113 <ulink url="http://www.nongnu.org/freefont/">113 <ulink url="http://www.nongnu.org/freefont/">
114 FreeFont</ulink>114 FreeFont</ulink>
115 </entry>115 </entry>
116 <entry>Nové svobodné Unicode písmo.</entry>116 <entry>A new free Unicode font initiative.</entry>
117 </row>117 </row>
118 <row>118 <row>
119 <entry>119 <entry>
@@ -159,7 +159,7 @@
159&bibletime;. These features are documented right in the dialog. You also 159&bibletime;. These features are documented right in the dialog. You also
160have the possibility to specify standard works that should be used when no 160have the possibility to specify standard works that should be used when no
161specific work is specified in a reference. An example: The standard Bible is 161specific work is specified in a reference. An example: The standard Bible is
162used to display the content of crossreferences in the Bible. When you hover 162used to display the content of cross references in the Bible. When you hover
163over then, the Mag will show the content of the verses referred to, 163over then, the Mag will show the content of the verses referred to,
164according to the standard Bible you specified.</para>164according to the standard Bible you specified.</para>
165 </sect2>165 </sect2>
166166
=== modified file 'docs/handbook/cs/docbook/hdbk-intro.docbook'
--- docs/handbook/cs/docbook/hdbk-intro.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/docbook/hdbk-intro.docbook 2009-04-29 17:39:29 +0000
@@ -2,12 +2,12 @@
2 <title>Úvod</title>2 <title>Úvod</title>
3 <sect1 id="hdbk-intro-about">3 <sect1 id="hdbk-intro-about">
4 <title>O &bibletime;</title>4 <title>O &bibletime;</title>
5 <para>&bibletime; je nástroj pro studium Bible s podporou pro různé typy textů a 5 <para>&bibletime; is a Bible study tool with support for different types of texts
6jazyků. Právě velkému množství modulů děl, které je snadné nainstalovat a 6and languages. Even large amounts of works modules are easy to install and
7spravovat. Je založen na knihovně <ulink 7manage. It is built on the <ulink
8url="http://www.crosswire.org/sword">Sword</ulink>, která poskytuje 8url="http://www.crosswire.org/sword">Sword</ulink> library, which provides
9funkcionalitu pro &bibletime;, jako zobrazování biblických textů, 9the back-end functionality for &bibletime;, such as viewing Bible text,
10vyhledávání atd. Sword je vlajkovou lodí spole�nosti <ulink 10searching etc. Sword is the flagship product of the <ulink
11url="http://www.crosswire.org">Crosswire Bible Society</ulink>.</para>11url="http://www.crosswire.org">Crosswire Bible Society</ulink>.</para>
1212
13 <para>&bibletime; je navržen k použití s díly v jednom z formátů podporovaných 13 <para>&bibletime; je navržen k použití s díly v jednom z formátů podporovaných
@@ -24,11 +24,11 @@
24 <varlistentry>24 <varlistentry>
25 <term>Bible</term>25 <term>Bible</term>
26 <listitem>26 <listitem>
27 <para>The full Bible text, with optional things like Strong's Numbers, headings 27 <para>Úplný text Bible, s volitelnými věcmi jako Strongova �ísla, nadpisy, nebo
28and/or footnotes in the text. Bibles are available in many languages, and 28poznámky v textu. Bible jsou dostupné v mnoha jazycích, nejen v moderních
29include not only modern versions, but also ancient texts like the Codex 29verzích, ale také ve starověkých jako Codex Leningradensis ( Kodex
30Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is 30Leningradský; "WLC", Hebrejsky), nebo Septuaginta ("LXX", Řecky). Toto je
31the most advanced section in the library of the Sword project.</para>31nejmodernější sekce knihovny projektu Sword.</para>
32 </listitem>32 </listitem>
33 </varlistentry>33 </varlistentry>
34 <varlistentry>34 <varlistentry>
@@ -41,11 +41,11 @@
41 <varlistentry>41 <varlistentry>
42 <term>Komentáře</term>42 <term>Komentáře</term>
43 <listitem>43 <listitem>
44 <para>Dostupné komentáře zahrnují klasiky jako "Notes on the Bible" Johna 44 <para>Commentaries available include classics like John Wesley's "Notes on the
45Wesleyho, komentáře Matthewa Henryho a Lutherův "Komentář ke galatským." 45Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
46Pomocí <emphasis>Osobního</emphasis>komentáře můžete<link 46With the <emphasis>Personal</emphasis> commentary you can <link
47linkend="hdbk-op-parts-desk-write"> nahrát osobní poznámky</link> do 47linkend="hdbk-op-parts-desk-write"> record your own personal notes</link> to
48biblických sekcí.</para>48sections of the Bible.</para>
49 </listitem>49 </listitem>
50 </varlistentry>50 </varlistentry>
51 <varlistentry>51 <varlistentry>
@@ -58,11 +58,11 @@
58 <varlistentry>58 <varlistentry>
59 <term>Lexikony/slovníky</term>59 <term>Lexikony/slovníky</term>
60 <listitem>60 <listitem>
61 <para>Dostupné lexikony zahrnují: Robinson's Morphological Analysis Codes, 61 <para>Lexicons available include: Robinson's Morphological Analysis Codes,
62Brown-Driver-Briggs Hebrew Lexicon a International Standard Bible 62Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
63Encyclopedia. Dostupné slovníky zahrnují: Strong's Hebrew Bible Dictionary, 63Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
64Strong's Greek Bible Dictionary, Webster's Revised Unabridged Dictionary of 64Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
65the English Language 1913, Nave's Topical Bible.</para>65Dictionary of the English Language 1913, Nave's Topical Bible.</para>
66 </listitem>66 </listitem>
67 </varlistentry>67 </varlistentry>
68 </variablelist></para>68 </variablelist></para>
@@ -70,14 +70,14 @@
70 <sect2 id="hdbk-intro-motivation">70 <sect2 id="hdbk-intro-motivation">
71 <title>Motivace</title>71 <title>Motivace</title>
72 <para>Přejeme si sloužit Bohu a přispět svým dílem ostatním v růstu ve vztahu s 72 <para>Přejeme si sloužit Bohu a přispět svým dílem ostatním v růstu ve vztahu s
73Ním. Máme chuť udržet tento výkonný a kvalitní program stále jednoduchým a 73Ním. Chceme, aby byl tento výkonný a kvalitní program stále jednoduchý a
74intuitivním. Naším přáním je chválit Boha jako zdroj všech dobrých věcí.</para>74intuitivní. Přejeme si chválit Boha, neboť on je zdroj všeho dobrého.</para>
75 <blockquote>75 <blockquote>
76 <attribution>Jakubův 1:17</attribution>76 <attribution>Jakubův 1:17</attribution>
77 <para>Každý dobrý dar a každé dokonalé obdarování je shůry, sestupuje od Otce 77 <para>Každý dobrý dar a každé dokonalé obdarování je shůry, sestupuje od Otce
78nebeských světel. U něho není proměny ani střídání světla a stínu.</para>78nebeských světel. U něho není proměny ani střídání světla a stínu.</para>
79 </blockquote>79 </blockquote>
80 <para>God bless you as you use this program.</para>80 <para>Bůh vám žehnej při používání tohoto programu.</para>
81 </sect2>81 </sect2>
82 </sect1>82 </sect1>
83</chapter>83</chapter>
8484
=== modified file 'docs/handbook/cs/docbook/hdbk-operation.docbook'
--- docs/handbook/cs/docbook/hdbk-operation.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/docbook/hdbk-operation.docbook 2009-04-29 17:39:29 +0000
@@ -12,11 +12,11 @@
12 </textobject>12 </textobject>
13 </mediaobject>13 </mediaobject>
14 Můžete si jednoduše prohlédnout různé �ásti aplikace. Knihovna na levé 14 Můžete si jednoduše prohlédnout různé �ásti aplikace. Knihovna na levé
15straně se používá pro otevírání děl a správu vašich záložek. Malé "Mag" okno 15straně se používá pro otevírání děl a správu vašich záložek. Malé okno
16pod knihovnou se používá pro zobrazení dalších informací vložených do 16�aopisu pod knihovnou se používá pro zobrazení dalších informací vložených
17dokumentů. Když přemístíte myš například nad zna�ku poznámky, "Mag" zobrazí 17do dokumentů. Když přemístíte myš například nad zna�ku poznámky, �asopis
18aktuální obsah poznámky. Panel nástrojů vám umožňuje rychlý přístup k 18zobrazí aktuální obsah poznámky. Panel nástrojů vám umožňuje rychlý přístup
19důležitým funkcím, na ploše vpravo skute�ně pracujete.</para>19k důležitým funkcím, na ploše vpravo skute�ně pracujete.</para>
2020
21 <para>Nyní se podívejme na vzhled různých �ástí aplikace individuálně.</para>21 <para>Nyní se podívejme na vzhled různých �ástí aplikace individuálně.</para>
22 </sect1>22 </sect1>
@@ -37,7 +37,7 @@
37ploše.</para>37ploše.</para>
3838
39 <tip>39 <tip>
40 <para>Chyť &amp; pust dílo tady</para>40 <para>Chyť &amp; pust dílo</para>
41 </tip>41 </tip>
4242
43 <para>Pokud �tete nějaké dílo a chcete otevřít jiné dílo ve stejné pasáži, můžete 43 <para>Pokud �tete nějaké dílo a chcete otevřít jiné dílo ve stejné pasáži, můžete
@@ -77,7 +77,7 @@
77 <para>77 <para>
7878
79 <tip>79 <tip>
80 <para>Chyť &amp; pust dílo tady</para>80 <para>Chyť &amp; pust dílo</para>
81 </tip>81 </tip>
8282
83 Klikněte <mousebutton>pravým tla�ítkem myši</mousebutton> na kategorii 83 Klikněte <mousebutton>pravým tla�ítkem myši</mousebutton> na kategorii
@@ -110,7 +110,7 @@
110 <title>Plocha</title>110 <title>Plocha</title>
111 <para>The Desk is where the real work with &bibletime; takes place. Here you can 111 <para>The Desk is where the real work with &bibletime; takes place. Here you can
112open works from the Bookshelf, read them, <link 112open works from the Bookshelf, read them, <link
113linkend="hdbk-op-search">search</link>in them, and even save your 113linkend="hdbk-op-search">search</link> in them, and even save your
114annotations in the personal commentary module (see <link 114annotations in the personal commentary module (see <link
115linkend="hdbk-op-parts-desk-write">below</link>).</para>115linkend="hdbk-op-parts-desk-write">below</link>).</para>
116116
@@ -125,41 +125,39 @@
125125
126 <sect3 id="hdbk-op-parts-desk-placement">126 <sect3 id="hdbk-op-parts-desk-placement">
127 <title>Umístění aktivního okna</title>127 <title>Umístění aktivního okna</title>
128 <para>Of course, you can open multiple works at the same time. There are several 128 <para>Samozřejmě můžete mít otevřeno více děl ve stejné době. Máte několik
129possibilities for arranging the read windows on the desk. Please have a look 129možností jak umístit okna na ploše. Prosím podívejte se na položku
130at the entry <guimenu>Window</guimenu>in the main menu. There you can see 130<guimenu>Okno</guimenu> v hlavním menu. Tam uviděíte, že umístění oken
131that you can either control the placement of the read windows completely 131můžete ovládat bu� osobně, nebo zvolit automatické umístění &bibletime;. To
132yourself, or have &bibletime; handle the placement automatically. To achieve 132můžete cílit volbou jednoho z automatických můdů umístění, které jsou
133this, you have to select one of the automatic placement modes available at 133přístupné přes <menuchoice> <guimenu>Okno</guimenu> <guimenuitem>Mód
134<menuchoice> <guimenu>Window</guimenu> <guimenuitem>Arrangement 134rozvržení</guimenuitem> </menuchoice>. Prostě to vyzkoušejte, je to snadné a
135mode</guimenuitem> </menuchoice>. Just try it out, it's simple and works.</para>135funguje to.</para>
136 </sect3>136 </sect3>
137137
138 <sect3 id="hdbk-op-parts-desk-write">138 <sect3 id="hdbk-op-parts-desk-write">
139 <title>Úpravy vašich vlastních komentářů</title>139 <title>Úpravy vašich vlastních komentářů</title>
140 <para>To be able to store your own comments about parts of the Bible, you have 140 <para>Aby jste mohli ukládat vlastní komentáře �ástí Bible, musíte nainstalovat
141install a certain work from the library of the <ulink 141dílo z knihovny <ulink url="http://www.crosswire.org">Crosswire Bible
142url="http://www.crosswire.org">Crosswire Bible Society</ulink>. This work is 142Society</ulink>, které se jmenuje "Personal commentary".</para>
143called "Personal commentary".</para>
144143
145 <para>If you open the personal commentary by clicking on its symbol in the 144 <para>Pokud otevřete osobní komentář kliknutím <mousebutton>levým</mousebutton>
146Bookshelf with a <mousebutton>left</mousebutton>mouse button, it opens in 145tla�ítkem myši na jeho symbol v knihovně, otevře se pro �tení. V tomto módu
147read mode. You will not be able to edit it in this mode. Should you wish to 146není možné komentář editovat. Pokud si přejete do něj zapsat poznámku,
148write annotations into the personal commentary, you have to open it with the 147musíte ho otevřít pomocí <mousebutton>pravého</mousebutton> tla�ítka myši a
149<mousebutton>right</mousebutton>mouse button and then select <guimenu>Edit 148zvolit <guimenu>Editovat toto dílo</guimenu> a potom také
150this work</guimenu>and then either <guimenuitem>Plain 149<guimenuitem>Prostý text</guimenuitem> (editor zdrojového kódu) nebo
151text</guimenuitem>(source code editor) or 150<guimenuitem>HTML</guimenuitem>(jednoduchý gui wysiwyg editor).</para>
152<guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>
153151
154 <tip>152 <tip>
155 <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice>is 153 <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice> is
156deactivated, please check if you have write permission for the files of the 154deactivated, please check if you have write permission for the files of the
157personal commentary.</para>155personal commentary.</para>
158 </tip>156 </tip>
159157
160 <tip>158 <tip>
161 <para>Drag &amp; drop works here. Drop a verse reference and the text of the verse 159 <para>Přetáhněte &amp; upusťte díla zde. Pusťte odkaz verše a bude vložen jeho
162will be inserted.</para>160text.</para>
163 </tip>161 </tip>
164 </sect3>162 </sect3>
165 </sect2>163 </sect2>
@@ -168,38 +166,37 @@
168 <title>Vyhledávání v dílech</title>166 <title>Vyhledávání v dílech</title>
169167
170 <sect2 id="hdbk-op-search-intext">168 <sect2 id="hdbk-op-search-intext">
171 <title>Searching text in an open read window</title>169 <title>Vyhledávání textu v aktivním okně</title>
172 <para>You can look for a word or phrase in the open read window (e.g. the chapter 170 <para>Když chcete hledat slovo nebo frázi v otevřeném aktivním okně
173of a bible that you're reading) just like you are used to from other 171(např. kapitolu bible, kterou �tete), je to stejné jako v jiných
174programs. This function can be reached either by clicking with the 172programech. tuto funkci můžete vyvolat kliknutím
175<mousebutton>right</mousebutton>mouse button and selecting 173<mousebutton>pravým</mousebutton> tla�ítkem myši a vyráním
176<guimenuitem>Find...</guimenuitem>, or by using the hotkey <keycombo 174<guimenuitem>Najít...</guimenuitem>, nebo použitím horké klávesy <keycombo
177action="simul">&Ctrl; <keycap>F</keycap></keycombo>. Read on to learn how 175action="simul">&Ctrl; <keycap>F</keycap></keycombo>. Pře�těte si jak hledat
178you can search in entire works.</para>176v celých dílech.</para>
179 </sect2>177 </sect2>
180178
181 <sect2 id="hdbk-op-search-access">179 <sect2 id="hdbk-op-search-access">
182 <title>Přístup k dialogu vyhledávání</title>180 <title>Přístup k dialogu vyhledávání</title>
183 <para>You can search in a work by clicking with the 181 <para>V díle můžete hledat kliknutím <mousebutton>pravým</mousebutton> tla�ítkem
184<mousebutton>right</mousebutton>mouse button on its symbol in the 182myši na symbol v <guimenu>knihovně</guimenu> a vybráním <guimenuitem>Hledat
185<guimenu>Bookshelf</guimenu>and selecting <guimenuitem>Search in 183ve vybraných dílech</guimenuitem>. Přidržením &Shift; nebo &Ctrl; a
186work(s)</guimenuitem>. By holding &Shift; or &Ctrl; and clicking on other 184kliknutím na jména dalších děl můžete vybrat více než jedno dílo. Poté
187work's names you can select more than one. Then follow the same procedure to 185následuje stejný postup otevření dialogu hledání. Budete hledat ve všech
188open the search dialog. You will be searching in all of these works at the 186těchto dílech najednou.</para>
189same time.</para>187
190188 <para>Vyhledávací dialog spustíte kliknutím na <menuchoice>
191 <para>You can also access the search dialog by clicking on <menuchoice> 189<guimenu>Hledat</guimenu> </menuchoice> z hlavního menu a vybráním
192<guimenu>Search</guimenu> </menuchoice> from the main menu, and selecting 190odpovídající položky.</para>
193the appropriate entry.</para>191
194192 <para>Třetí možnost jak spustit vyhledávání je kliknutím na symbol hledání v
195 <para>A third possibility to start searches is to click on the search symbol in an 193aktuálním okně.</para>
196open read window.</para>
197 </sect2>194 </sect2>
198195
199 <sect2 id="hdbk-op-search-config">196 <sect2 id="hdbk-op-search-config">
200 <title>Nastavení vyhledávání</title>197 <title>Nastavení vyhledávání</title>
201 <screenshot>198 <screenshot>
202 <screeninfo>Search Text Dialog Options Tab</screeninfo>199 <screeninfo>Nastavení dialogu hledání</screeninfo>
203 <mediaobject>200 <mediaobject>
204 <imageobject>201 <imageobject>
205 <imagedata fileref="ss_searchopts.png" format="PNG" />202 <imagedata fileref="ss_searchopts.png" format="PNG" />
@@ -208,50 +205,53 @@
208 </screenshot>205 </screenshot>
209 <sect3 id="hdbk-op-search-config-works">206 <sect3 id="hdbk-op-search-config-works">
210 <title>Výběr děl</title>207 <title>Výběr děl</title>
211 <para>At the top of the options tab you will find 208 <para>Nahoře v okně nastavení vyhledávání najdete tla�ítko <guibutton>Vybrat (nebo
212<guibutton>Choose</guibutton>(works). If you would like to search in 209Choose)</guibutton> (díla). Pokud chcete vyhledávat ve více dílech, klikněte
213multiple works, click on this button and you will be offered a menu where 210na toto tla�ítko, poté vám bude nabídnuto menu s možností výběru děl ve
214you can select the works you want to search in.</para>211kterých chcete vyhledávat.</para>
215 </sect3>212 </sect3>
216 <sect3 id="hd-op-search-config-scope">213 <sect3 id="hd-op-search-config-scope">
217 <title>Using Search Scopes</title>214 <title>Použití oblastí vyhledávání</title>
218 <para>You can narrow the scope of your search to certain parts of the Bible by 215 <para>Můžete použít rozsah hledání zvolením ur�itých �ástí Bible pomocí jedné z
219selecting one of the predefined scopes from the list in <guimenu>Search 216definovaných oblastí v seznamv <guimenu>Rozsah hledání</guimenu> Můžete
220scope</guimenu>. You can define your own search ranges by clicking the 217definovat vlastní vyhledávací rozsahy kliknutím na tla�ítko
221<guibutton>Setup ranges</guibutton>button.</para>218<guibutton>Nastavit rozsah</guibutton>.></para>
222 </sect3>219 </sect3>
223 <sect3 id="hd-op-search-config-syntax">220 <sect3 id="hd-op-search-config-syntax">
224 <title>Basic Search Syntax Introduction</title>221 <title>Úvod do jednoduché vyhledávací syntaxe</title>
225 <para>Enter search terms separated by spaces. By default the search function will 222 <para>Vložte výrazy a oddělte je mezerami. Při výchozím nastavení, vyhledávání
226return results that match any of the search terms (OR). To search for all 223vrátí výsledky, které odpovídají libovolnému z vyhledávaných výrazů (logická
227the terms separate the terms by AND.</para>224spojka NEBO). pro vyhledání všech výrazů oddělte jednotlivá slova spojkou
228 <para>You can use wildcards: '*' matches any sequence of characters, while '?' 225AND.</para>
229matches any single character. The use of brackets allows you to group your 226 <para>Můžete využít znaky: '*' odpovídající libovolné posloupnosti znaků, '?'
230search terms, e.g. '(Jesus OR spirit) AND God'.</para>227zastupující libovolný jeden znak. Použití závorek vám dovoluje seskupovat
231 <para>To search text other than the main text, enter the text type followed by 228hledané výrazy, např. '(Ježíš OR duch) AND Bůh' --výsledky hledání budou
232':', and then the search term. For example, to search for the Strong's 229obsahovat nejméně jedno ze slov v závorce, Ježíš nebo duch, a slovo Bůh.</para>
233number H8077, use 'strong:H8077'.</para>230 <para>Pro vyhledávání jiného než hlavního textu vložte ur�itou předponu
234 <para>Dostupné typy textů: 231následovanou'dvojte�kou ':' a hledaným výrazem. Například pro vyhledávání
232Strongova �ísla H8077 použijte 'strong:H8077'</para>
233 <para>Dostupné předpony:
235 <table id="hd-op-search-config-syntax-table">234 <table id="hd-op-search-config-syntax-table">
235 <title>Search Types</title>
236 <tgroup cols="2">236 <tgroup cols="2">
237 <thead>237 <thead>
238 <row>238 <row>
239 <entry>Prefix</entry>239 <entry>Předpona</entry>
240 <entry>Meaning</entry>240 <entry>Význam</entry>
241 </row>241 </row>
242 </thead>242 </thead>
243 <tbody>243 <tbody>
244 <row>244 <row>
245 <entry>nadpis:</entry>245 <entry>heading:</entry>
246 <entry>hledá nadpisy</entry>246 <entry>hledá nadpisy</entry>
247 </row>247 </row>
248 <row>248 <row>
249 <entry>poznámka:</entry>249 <entry>footnote:</entry>
250 <entry>hledá poznámky</entry>250 <entry>hledá poznámky</entry>
251 </row>251 </row>
252 <row>252 <row>
253 <entry>strong:</entry>253 <entry>strong:</entry>
254 <entry>searches Strong's Numbers</entry>254 <entry>hledání Strongových �ísel</entry>
255 </row>255 </row>
256 <row>256 <row>
257 <entry>morph:</entry>257 <entry>morph:</entry>
@@ -267,13 +267,12 @@
267 </sect3>267 </sect3>
268 </sect2>268 </sect2>
269 <sect2 id="hdbk-op-search-results">269 <sect2 id="hdbk-op-search-results">
270 <title>Výsledky vyhledávání</title>270 <title>Výsledky hledání</title>
271 <para>Here you can see how many instances of the search string were found, sorted 271 <para>Zde vidíte kolik případů hledaného řetězce bylo nalezeno, setříděno podle
272by works. Clicking on a work with the <mousebutton>right</mousebutton>mouse 272děl. Kliknutí na dílo <mousebutton>pravým</mousebutton> tla�ítkem myši vám
273button allows you to copy, save, or print all verses that were found in a 273umožní kopírovat, uložit, nebo tisknout všechny verše které byli v daném
274certain work at once. This also works when you click on one or more of the 274díle nalezeny. To při kliknutí na jeden nebo více odkazů. Kliknutí na ur�itý
275references to copy, save or print them. Clicking on a particular reference 275odkaz otevře verš v jeho kontextu v okně náhledu.</para>
276opens that verse up in context in the preview window below.</para>
277 <tip>276 <tip>
278 <para>Přetáhněte odkaz a upusťte ho na symbol díla v knihovně k otevření díla na 277 <para>Přetáhněte odkaz a upusťte ho na symbol díla v knihovně k otevření díla na
279tomto verši v novém okně.</para>278tomto verši v novém okně.</para>
@@ -303,38 +302,40 @@
303 </sect1>302 </sect1>
304 <sect1 id="hdbk-op-bookshelfmanager">303 <sect1 id="hdbk-op-bookshelfmanager">
305 <title><guimenuitem>Správa knih</guimenuitem></title>304 <title><guimenuitem>Správa knih</guimenuitem></title>
306 <para><guimenuitem>Správa knih</guimenuitem> nástroj pro správu knihovny. Můžete 305 <para>The <guimenuitem>Bookshelf Manager</guimenuitem> is a tool to manage your
307do vaší knihovny nainstalovat nová díla, aktualizovat nebo odstranit ty 306Bookshelf. You can install new works to your Bookshelf, and update or remove
308existující. Přístupná pod <menuchoice> <guimenu>Nastavení</guimenu> 307existing works from your Bookshelf. Access it by clicking <menuchoice>
309<guimenuitem>Správa knih</guimenuitem> </menuchoice> v hlavním menu.</para>308<guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem>
309</menuchoice> in the main menu.</para>
310 <sect2 id="hdbk-op-bookshelfmanager-path">310 <sect2 id="hdbk-op-bookshelfmanager-path">
311 <title>Nastavení cesty ke knihám</title>311 <title>Nastavení cesty ke knihám</title>
312 <para>Zde lze nastavit, kam má &bibletime; uložit knihovnu. Můžete použít více 312 <para>Here you can specify where &bibletime; may store your Bookshelf on the hard
313adresářů. Výchozí je "~/.sword/".</para>313drive. You can even store it in multiple directories. Default is
314"~/.sword/".</para>
314 <tip>315 <tip>
315 <para>Pokud máte CD sword, ale nechcete všechna díla instalovat na disk, ale 316 <para>If you have a sword CD, but do not want to install all the works on the hard
316používat je přímo z CD, pak vložte cestu k CD jako jednu z cest. Když 317disk, but use them directly from the CD, then you can add the path to the CD
317zapnete &bibletime;, zobrazí se všechna díla, pokud je CD vloženo v 318as one of your bookshelf paths. When you start &bibletime;, it will show all
318mechanice.</para>319works on the CD if it is present.</para>
319 </tip>320 </tip>
320 </sect2>321 </sect2>
321 <sect2 id="hdbk-op-bookshelfmanager-installupdate">322 <sect2 id="hdbk-op-bookshelfmanager-installupdate">
322 <title>Instalace/aktualizace děl</title>323 <title>Instalace/aktualizace děl</title>
323 <para>With this facility, you can connect to a repository of works (called 324 <para>Tímto nástrojem se můžete připojit k repositáři děl (je zvaný "knihovna",
324"library"), and transfer one or more works to your local Bookshelf. These 325"library") a nahrát jedno nebo více děl do své lokální knihovny. Tyto
325libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online 326knihovny mohou být lokální (např. Sword CD) nebo vzdálené (např. Crosswire's
326repository of Sword modules, or another site offering Sword modules). You 327online repository of Sword modules nebo jiné stránky nabízející moduly
327can manage your libraries with <guibutton>Add library</guibutton> and 328Sword). Své knihovny můžete spravovat pomocí <guibutton>Přidat
328<guibutton>Delete library</guibutton>.</para>329knihovnu</guibutton> a <guibutton>Smazat knihovnu</guibutton>.</para>
329 <para>To begin the installation or update process, select a library you want to 330 <para>Pro zahájení procesu instalace nebo aktualizace vyberte knihovnu ke které se
330connect to and a local Bookshelf path to install the work(s) to. Then click 331chcete připojit a umístění lokální knihovny pro instalaci děl. Potom
331on <guibutton>Connect to library</guibutton>. &bibletime; will scan the 332klikněte na tla�ítko <guibutton>Spojit s knihovnou</guibutton>. &bibletime;
332contents of the library and present you with a list of works that you can 333prověří obsah knihovny a předloží vám seznam děl, které můžete do své
333add to your Bookshelf, or that you already have installed but are available 334knihovny přidat, nebo děl, které jsou již nainstalované, ale jsou dostupné v
334in a new version in the library, and thus can be updated. Then you can mark 335novější verzi, a tak mohou být aktualizovány. Poté můžete ozna�it všechna
335all works that you want to install or update, and click on 336díla, která chcete nainstalovat nebo aktualizovat a kliknout na
336<guibutton>Install works</guibutton>. They will then be transferred to your 337<guibutton>Instalovat díla</guibutton>. Ty budou poté nahrány do vaší
337Bookshelf.</para>338knihovny.</para>
338 </sect2>339 </sect2>
339 <sect2 id="hdbk-op-bookshelfmanager-remove">340 <sect2 id="hdbk-op-bookshelfmanager-remove">
340 <title>Odebrání děl</title>341 <title>Odebrání děl</title>
@@ -354,15 +355,15 @@
354 </sect1>355 </sect1>
355 <sect1 id="hdbk-op-output">356 <sect1 id="hdbk-op-output">
356 <title>Export a tisk</title>357 <title>Export a tisk</title>
357 <para>In many places, you can open a context menu by clicking with the 358 <para>Na mnoha místech můžete vyvolat kontextové menu kliknutím
358<mousebutton>right</mousebutton>mouse button. Depending on context, it will 359<mousebutton>pravým</mousebutton> tla�ítkem myši. V závislosti na kontextu
359allow you to <guimenuitem>Select</guimenuitem>, 360je možné <guimenuitem>Vybrat</guimenuitem>,
360<guimenuitem>Copy</guimenuitem> (to clipboard), 361<guimenuitem>Kopírovat</guimenuitem> (do schránky),
361<guimenuitem>Save</guimenuitem> or <guimenuitem>Print</guimenuitem> 362<guimenuitem>Uložit</guimenuitem> nebo
362text. This works for example in the read windows, when you click on the 363<guimenuitem>Tisknout</guimenuitem>. to funguje např. v aktivním okně když
363normal text or the verse reference, or in the search result page when you 364kliknete na běžný text nebo na odkaz verše, nebo na stránce výsledků hledání
364click on a work or one or more verse references. It is pretty 365při kliknutí na dílo nebo na jeden �i více odkazů veršů. Je to krásně
365straightforward, so just try it out.</para>366přímo�aré, prostě to vyzkoušejte.</para>
366367
367 <para>Tisk z &bibletime; spíše základní a je zamýšlen jako pomůcka. Pokud 368 <para>Tisk z &bibletime; spíše základní a je zamýšlen jako pomůcka. Pokud
368vytváříte dokument nebo prezentaci obsahující text děl z &bibletime;, 369vytváříte dokument nebo prezentaci obsahující text děl z &bibletime;,
369370
=== modified file 'docs/handbook/cs/docbook/hdbk-reference.docbook'
--- docs/handbook/cs/docbook/hdbk-reference.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/docbook/hdbk-reference.docbook 2009-04-29 17:39:29 +0000
@@ -39,16 +39,47 @@
39 </variablelist>39 </variablelist>
40 </para>40 </para>
41 </sect2>41 </sect2>
42
42 <sect2 id="hdbk-reference-menus-view">43 <sect2 id="hdbk-reference-menus-view">
43 <title>44 <title>
44 <guimenu>View</guimenu>45 <guimenu>View</guimenu>
45 </title>46 </title>
47
46 <variablelist>48 <variablelist>
49 <varlistentry id="hdbk-reference-menus-view-fullscreenmode">
50 <term>
51 <menuchoice>
52 <shortcut>
53 <keycombo action="simul">
54 <keycap>F5</keycap>
55 </keycombo>
56 </shortcut>
57 <guimenu>
58 <inlinemediaobject>
59 <imageobject>
60 <imagedata fileref="i_window_fullscreen.png" format="PNG" />
61 </imageobject>
62 </inlinemediaobject>View</guimenu>
63 <guimenuitem>Fullscreen mode</guimenuitem>
64 </menuchoice>
65 </term>
66 <listitem>
67 <para>
68 <action>Toggles full screen display.</action> Toggle this setting to
69maximize the &bibletime; window.</para>
70 </listitem>
71 </varlistentry>
72
47 <varlistentry id="hdbk-reference-menus-view-showtoolbar">73 <varlistentry id="hdbk-reference-menus-view-showtoolbar">
48 <term>74 <term>
49 <menuchoice>75 <menuchoice>
76 <shortcut>
77 <keycombo action="simul">
78 <keycap>F6</keycap>
79 </keycombo>
80 </shortcut>
50 <guimenu>View</guimenu>81 <guimenu>View</guimenu>
51 <guimenuitem>Show Toolbar</guimenuitem>82 <guimenuitem>Show toolbar</guimenuitem>
52 </menuchoice>83 </menuchoice>
53 </term>84 </term>
54 <listitem>85 <listitem>
@@ -57,20 +88,11 @@
57přejete zapnout nebo vypnout Hlavní nástrojovou lištu.</para>88přejete zapnout nebo vypnout Hlavní nástrojovou lištu.</para>
58 </listitem>89 </listitem>
59 </varlistentry>90 </varlistentry>
91
60 <varlistentry id="hdbk-reference-menus-view-showbookshelf">92 <varlistentry id="hdbk-reference-menus-view-showbookshelf">
61 <term>93 <term>
62 <menuchoice>94 <menuchoice>
63 <shortcut>95 <guimenu>View</guimenu>
64 <keycombo action="simul">
65 <keycap>F9</keycap>
66 </keycombo>
67 </shortcut>
68 <guimenu>
69 <inlinemediaobject>
70 <imageobject>
71 <imagedata fileref="i_sidetree.png" format="PNG" />
72 </imageobject>
73 </inlinemediaobject>View</guimenu>
74 <guimenuitem>Show Bookshelf</guimenuitem>96 <guimenuitem>Show Bookshelf</guimenuitem>
75 </menuchoice>97 </menuchoice>
76 </term>98 </term>
@@ -81,20 +103,11 @@
81potřebujete více �asu pro �asopis.</para>103potřebujete více �asu pro �asopis.</para>
82 </listitem>104 </listitem>
83 </varlistentry>105 </varlistentry>
106
84 <varlistentry id="hdbk-reference-menus-view-showmag">107 <varlistentry id="hdbk-reference-menus-view-showmag">
85 <term>108 <term>
86 <menuchoice>109 <menuchoice>
87 <shortcut>110 <guimenu>View</guimenu>
88 <keycombo action="simul">
89 <keycap>F8</keycap>
90 </keycombo>
91 </shortcut>
92 <guimenu>
93 <inlinemediaobject>
94 <imageobject>
95 <imagedata fileref="i_sidetree.png" format="PNG" />
96 </imageobject>
97 </inlinemediaobject>View</guimenu>
98 <guimenuitem>Show Mag</guimenuitem>111 <guimenuitem>Show Mag</guimenuitem>
99 </menuchoice>112 </menuchoice>
100 </term>113 </term>
@@ -254,10 +267,10 @@
254 </term>267 </term>
255 <listitem>268 <listitem>
256 <para>269 <para>
257 <action>Controls the basic window arrangement behaviour</action>. In the 270 <action>Ovládá chování jednoduchého rozvržení oken</action>. V otevřeném
258opening context menu, you can either specify that you want to take care of 271kontextovém menu můžete zvolit, že se chcete o rozvržení oken starat osobně
259the window arrangement yourself (Manual mode) or have &bibletime; handle it 272(Ru�ní mód) nebo použít připravené možnosti &bibletime; (Automatické módy,
260for you (Automatical modes, just try them out!).</para>273tak je vyzkoušejte!)</para>
261 </listitem>274 </listitem>
262 </varlistentry>275 </varlistentry>
263 <varlistentry id="hdbk-reference-menus-window-closeall">276 <varlistentry id="hdbk-reference-menus-window-closeall">
@@ -288,30 +301,6 @@
288 <guimenu>Settings</guimenu>301 <guimenu>Settings</guimenu>
289 </title>302 </title>
290 <variablelist>303 <variablelist>
291 <varlistentry id="hdbk-reference-menus-settings-toolbars">
292 <term>
293 <menuchoice>
294 <guimenu>
295 <inlinemediaobject>
296 <imageobject>
297 <imagedata fileref="i_configuretoolbars.png"
298 format="PNG" />
299 </imageobject>
300 </inlinemediaobject>Settings</guimenu>
301 <guimenuitem>Configure toolbars</guimenuitem>
302 </menuchoice>
303 </term>
304 <listitem>
305 <para>
306 <action>Opens a dialog where you can customize &bibletime;'s
307toolbar</action>. Just try it out, you can move around the toolbar buttons
308and even add new ones. Most of the entries available from the main menu can
309be put on the toolbar as buttons. If you need a certain feature often, you
310might want to put a button on the main menu, so that you can access it with
311only one click. Please see <link linkend="hdbk-config-toolbar">this
312section</link> for further information.</para>
313 </listitem>
314 </varlistentry>
315 <varlistentry id="hdbk-reference-menus-settings-bibletime">304 <varlistentry id="hdbk-reference-menus-settings-bibletime">
316 <term>305 <term>
317 <menuchoice>306 <menuchoice>
@@ -352,53 +341,97 @@
352 </term>341 </term>
353 <listitem>342 <listitem>
354 <para>343 <para>
355 <action>Opens a dialog where you can change your Sword configuration and 344 <action>Otevře dialog kde můžete změnit vaše nastavení Sword a spraovat svou
356manage your bookshelf</action>. Please see <link 345knihovnu</action>. Další inormace naleznete v <link
357linkend="hdbk-op-bookshelfmanager">this section</link> for details.</para>346linkend="hdbk-op-bookshelfmanager">této sekci</link>.</para>
358 </listitem>347 </listitem>
359 </varlistentry>348 </varlistentry>
360 </variablelist>349 </variablelist>
361 </sect2>350 </sect2>
351
362 <sect2 id="hdbk-reference-menus-help">352 <sect2 id="hdbk-reference-menus-help">
363 <title>353 <title>
364 <guimenu>Help</guimenu>354 <guimenu>Help</guimenu>
365 </title>TODO: ADD</sect2>355 </title>
366 </sect1>356 <variablelist>
367 <sect1 id="hdbk-reference-toolbar">357 <varlistentry id="hdbk-reference-menus-help-bibletime">
368 <title>Odkazy Nástrojové lišty</title>358 <term>
369 <para>Please review <link linkend="hdbk-reference-menus">the preceding 359 <menuchoice>
370section</link> for an explanation of the buttons that you find on the 360 <shortcut>
371toolbar. You can also <action>move the cursor over a button and wait a few 361 <keycombo action="simul">
372seconds</action> to activate the button's tooltip with a short description.</para>362 <keycap>F1</keycap>
373 <para>You can adapt the toolbar to your needs. Please use the following entry in 363 </keycombo>
374the main menu: 364 </shortcut>
375 <variablelist>365 <guimenu>
376 <varlistentry>366 <inlinemediaobject>
377 <term>367 <imageobject>
378 <menuchoice>368 <imagedata fileref="i_contents2.png" format="PNG" />
379 <guimenu>369 </imageobject>
380 <inlinemediaobject>370 </inlinemediaobject>Help</guimenu>
381 <imageobject>371 <guimenuitem>Handbook</guimenuitem>
382 <imagedata fileref="i_configuretoolbars.png"372 </menuchoice>
383 format="PNG" />373 </term>
384 </imageobject>374 <listitem>
385 </inlinemediaobject>Settings</guimenu>375 <para>
386 <guimenuitem>Configure toolbars</guimenuitem>376 <action>Opens &bibletime;'s user guide</action> You are reading it now.</para>
387 </menuchoice>377 </listitem>
388 </term>378 </varlistentry>
389 <listitem>379
390 <para>Nastavit nástrojové lišty</para>380 <varlistentry id="hdbk-reference-menus-help-bible_study_howto">
391 </listitem>381 <term>
392 </varlistentry>382 <menuchoice>
393 </variablelist>Please see <link linkend="hdbk-reference-menus-settings-toolbars">this 383 <shortcut>
394section</link> for detailed instructions.</para>384 <keycombo action="simul">
395 </sect1>385 <keycap>F2</keycap>
386 </keycombo>
387 </shortcut>
388 <guimenu>
389 <inlinemediaobject>
390 <imageobject>
391 <imagedata fileref="i_contents2.png"
392 format="PNG" />
393 </imageobject>
394 </inlinemediaobject>Help</guimenu>
395 <guimenuitem>Bible Study Howto</guimenuitem>
396 </menuchoice>
397 </term>
398 <listitem>
399 <para>
400 <action>Opens a guide on how to study the Bible</action> It is the hope of
401the &bibletime; team that this HowTo will provoke the readers to study the
402scriptures to see what they say. This particular study guide has been chosen
403as it takes care not to advocate any particular denominational doctrine. We
404expect you to read and study the scriptures to understand what they say. If
405you start with the attitude that you want to have the Lord sow his word in
406your heart He will not disappoint you.</para>
407 </listitem>
408 </varlistentry>
409
410 <varlistentry id="hdbk-reference-menus-help-about">
411 <term>
412 <menuchoice>
413 <guimenu>Help</guimenu>
414 <guimenuitem>About</guimenuitem>
415 </menuchoice>
416 </term>
417 <listitem>
418 <para>
419 <action>Opens a window about &bibletime; project information</action>
420contains information about &bibletime; software version, project
421contributors, &sword; software version, &qt; software version and the
422license agreement.</para>
423 </listitem>
424 </varlistentry>
425 </variablelist>
426 </sect2>
427 </sect1>
428
396 <sect1 id="hdbk-reference-hotkeys">429 <sect1 id="hdbk-reference-hotkeys">
397 <title>Seznam klávesových zkratek</title>430 <title>Seznam horkých kláves</title>
398 <para>This is index of all hotkeys and their corresponding description in the 431 <para>This is index of all hotkeys and their corresponding description in the
399handbook. The hotkeys are sorted (roughly) alphabetical. If you want to 432handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
400directly find out which hotkey a certain menu item has, you can either look 433directly find out which hotkey a certain menu item has, you can either look
401at the entry itelf in &bibletime; (as it always shows the hotkey), or you 434at the entry itself in &bibletime; (as it always shows the hotkey), or you
402can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>435can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>
403 <informaltable>436 <informaltable>
404 <tgroup cols="2">437 <tgroup cols="2">
@@ -529,7 +562,7 @@
529 <keycombo action="simul">&Ctrl;562 <keycombo action="simul">&Ctrl;
530 <keycap>F</keycap></keycombo>563 <keycap>F</keycap></keycombo>
531 </entry>564 </entry>
532 <entry>Search. This lets you search within the text of a read window.</entry>565 <entry>Hledat. Vyhledává v textu aktivního okna</entry>
533 </row>566 </row>
534 <row>567 <row>
535 <entry>568 <entry>
536569
=== modified file 'docs/handbook/cs/docbook/hdbk-start.docbook'
--- docs/handbook/cs/docbook/hdbk-start.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/docbook/hdbk-start.docbook 2009-04-24 02:10:38 +0000
@@ -16,20 +16,19 @@
16 </mediaobject></para>16 </mediaobject></para>
17 <para>&bibletime; může být spuštěn také z příkazové řádky. Pro spuštění 17 <para>&bibletime; může být spuštěn také z příkazové řádky. Pro spuštění
18&bibletime; otevřete okno terminálu a napište: 18&bibletime; otevřete okno terminálu a napište:
19 <screen>bibletime</screen></para>19 <screen>&bibletime;</screen></para>
20 </sect2>20 </sect2>
21 <sect2 id="hdbk-start-otherwm">21 <sect2 id="hdbk-start-otherwm">
22 <title>Další správci oken</title>22 <title>Další správci oken</title>
23 <para>&bibletime; může být používán také s dalšími okenními správci jako Gnome, 23 <para>&bibletime; can be used with other window managers such as Gnome, BlackBox,
24BlackBox, Fluxbox, OpenBox nebo Sawfish, pokud jsou požadované knihovny již 24Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
25nainstalovány na vašem po�íta�i.</para>25already installed on your computer.</para>
26 </sect2>26 </sect2>
27 <sect2 id="hdbk-start-custom">27 <sect2 id="hdbk-start-custom">
28 <title>Nastavení spuštění</title>28 <title>Nastavení spuštění</title>
29 <para>Z terminálu můžete použít &bibletime; k otevření příslušného verše ve 29 <para>Z terminálu můžete použít &bibletime; k otevření příslušného verše ve
30výchozí bibli: 30výchozí bibli:
31 <screen>bibletime --open-default-bible31 <screen>bibletime --open-default-bible</screen>Pro otevření v dané pasáži, jako například Jan 3:16, použijte:
32 "&lt;random&gt;"</screen>Pro otevření v dané pasáži, jako například Jan 3:16, použijte:
33 <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>32 <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>
34 </sect2>33 </sect2>
35 </sect1>34 </sect1>
@@ -44,13 +43,14 @@
44 </term>43 </term>
45 <listitem>44 <listitem>
46 <para>45 <para>
47 <action>Modifies your Bookshelf.</action> This dialog lets you modify your 46 <action>Upravit vaši knihovnu.</action> Tento dialog vám umožní upravovat
48Bookshelf, add or delete works from your system. It will only be shown if 47vaši knihovnu, přidávat nebo mazat díla ve vašem systému.This dialog lets
49no default Bookshelf can be found. Please see <link 48you modify your Bookshelf, add or delete works from your system. Bude
50linkend="hdbk-op-bookshelfmanager"> this section</link> for further 49zobrazen pouze v případě, že nebude nalezena výchozí knihovna. Prosím
51details. If you start off with an empty Bookshelf, it will be helpful to 50podívejte se do <link linkend="hdbk-op-bookshelfmanager"> této sekce</link>
52install at least one Bible, Commentary, Lexicon and one Book to get to know 51pokud chcete znát více detailů. Pokud za�ínáte s prázdnou knihovnou, bude
53&bibletime;'s basic features quickly.</para>52užite�né nainstalovat alespoň jednu Bibli, Komentář, Lexikon a knihu,
53abyste se rychle seznámili se základními vlastnostmi &bibletime;.</para>
54 </listitem>54 </listitem>
55 </varlistentry>55 </varlistentry>
56 <varlistentry>56 <varlistentry>
@@ -59,9 +59,9 @@
59 </term>59 </term>
60 <listitem>60 <listitem>
61 <para>61 <para>
62 <action>Customizes &bibletime;.</action>This dialog lets you adapt 62 <action>Přizpůsobí &bibletime;.</action>Tento dialog vám dovolí přizpůsobit
63&bibletime; to your needs. Please see <link linkend="hdbk-config-bt">the 63&bibletime; vašim potřebám. Prosím podívejte se na <link
64detailed description</link> of this dialog.</para>64linkend="hdbk-config-bt">detailní popis</link> tohoto dialogu.</para>
65 </listitem>65 </listitem>
66 </varlistentry>66 </varlistentry>
67 </variablelist>67 </variablelist>
6868
=== modified file 'docs/handbook/cs/docbook/index.docbook'
--- docs/handbook/cs/docbook/index.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/docbook/index.docbook 2009-04-29 17:39:29 +0000
@@ -5,6 +5,7 @@
5 <!ENTITY bibletime '<application>BibleTime</application>'>5 <!ENTITY bibletime '<application>BibleTime</application>'>
6 <!ENTITY sword '<application>Sword</application>'>6 <!ENTITY sword '<application>Sword</application>'>
7 <!ENTITY kde '<application>KDE</application>'>7 <!ENTITY kde '<application>KDE</application>'>
8 <!ENTITY qt '<application>Qt</application>'>
89
9 <!ENTITY Shift 'Shift'>10 <!ENTITY Shift 'Shift'>
10 <!ENTITY Ctrl 'Ctrl'>11 <!ENTITY Ctrl 'Ctrl'>
@@ -46,10 +47,10 @@
46 <legalnotice>47 <legalnotice>
47 <para>Příru�ka &bibletime; je sou�ástí &bibletime;.</para>48 <para>Příru�ka &bibletime; je sou�ástí &bibletime;.</para>
48 </legalnotice>49 </legalnotice>
49 <date>2005-08</date>50 <date>2009-04</date>
50 <releaseinfo>2.0</releaseinfo>51 <releaseinfo>2.0</releaseinfo>
51 <abstract>52 <abstract>
52 <para>&bibletime; je nástroj pro studium Bible založený na frameworku Sword.</para>53 <para>&bibletime; is a Bible study tool based on the Sword framework.</para>
53 </abstract>54 </abstract>
54 <keywordset>55 <keywordset>
55 <keyword>QT4</keyword>56 <keyword>QT4</keyword>
5657
=== modified file 'docs/handbook/cs/html/hdbk-config.html'
--- docs/handbook/cs/html/hdbk-config.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-config.html 2009-04-24 02:10:38 +0000
@@ -1,4 +1,4 @@
1<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">1<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">
2 Display2 Display
3 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">3 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">
4 Languages4 Languages
@@ -6,8 +6,8 @@
6 Desk6 Desk
7 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-hotkeys">7 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-hotkeys">
8 HotKeys8 HotKeys
9 </a></span></dt></dl></dd></dl></div><p> V této sekci najdete úvod k nastavení <span class="application">BibleTime</span> které najdete pod 9 </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
10volbou<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 10<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
11závislosti na va&#353;ich pot&#345;ebách. K dialogu nastavení m&#367;&#382;ete p&#345;istoupit 11závislosti na va&#353;ich pot&#345;ebách. K dialogu nastavení m&#367;&#382;ete p&#345;istoupit
12výb&#283;rem<span class="guimenu">Nastavení</span> 12výb&#283;rem<span class="guimenu">Nastavení</span>
13<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>13<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>
@@ -18,10 +18,10 @@
18ná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>18ná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>
19 <span class="guimenu">Languages</span>19 <span class="guimenu">Languages</span>
20 </h3></div></div></div><p>Zde m&#367;&#382;ete zvolit jazyk, který bude pou&#382;it pro jména biblických knih. Pokud 20 </h3></div></div></div><p>Zde m&#367;&#382;ete zvolit jazyk, který bude pou&#382;it pro jména biblických knih. Pokud
21je 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 21je 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
22nezbytné, m&#367;&#382;ete toto nastavení zm&#283;nit. N&#283;které jazyky vy&#382;adují pro správné 22override this font if necessary. Some languages require special fonts to be
23zobrazení speciální písma, tento dialog vám umo&#382;ní nastavit vlastní písmo 23displayed correctly, and this dialog allows you to specify a custom font for
24pro 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é 24each 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é
25se zajímáte zobrazena správn&#283;, není pot&#345;eba zde nic m&#283;nit.Pokud se dílo 25se zajímáte zobrazena správn&#283;, není pot&#345;eba zde nic m&#283;nit.Pokud se dílo
26zobrazuje jen jako &#345;et&#283;zec otazník&#367; (?????) nebo prázdných &#269;tverc&#367;, pak 26zobrazuje jen jako &#345;et&#283;zec otazník&#367; (?????) nebo prázdných &#269;tverc&#367;, pak
27ví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 27ví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
@@ -40,10 +40,10 @@
40 </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>40 </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>
41 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">41 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">
42 SIL unicode fonts</a>42 SIL unicode fonts</a>
43 </td><td>Výborné písmo Unicode z " Summer Institute of Linguistics".</td></tr><tr><td>43 </td><td>Excellent Unicode fonts from the Summer Institute of Linguistics.</td></tr><tr><td>
44 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">44 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">
45 FreeFont</a>45 FreeFont</a>
46 </td><td>Nové svobodné Unicode písmo.</td></tr><tr><td>46 </td><td>A new free Unicode font initiative.</td></tr><tr><td>
47 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">47 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">
48 Crosswire's font directory</a>48 Crosswire's font directory</a>
49 </td><td>R&#367;zná písma p&#345;ístupná z ftp Crosswire Bible Society.</td></tr><tr><td>49 </td><td>R&#367;zná písma p&#345;ístupná z ftp Crosswire Bible Society.</td></tr><tr><td>
@@ -62,12 +62,12 @@
62<span class="application">BibleTime</span>. These features are documented right in the dialog. You also 62<span class="application">BibleTime</span>. These features are documented right in the dialog. You also
63have the possibility to specify standard works that should be used when no 63have the possibility to specify standard works that should be used when no
64specific work is specified in a reference. An example: The standard Bible is 64specific work is specified in a reference. An example: The standard Bible is
65used to display the content of crossreferences in the Bible. When you hover 65used to display the content of cross references in the Bible. When you hover
66over then, the Mag will show the content of the verses referred to, 66over then, the Mag will show the content of the verses referred to,
67according 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>67according 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>
68 <span class="guimenu">HotKeys</span>68 <span class="guimenu">HotKeys</span>
69 </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 69 </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
70polo&#382;ek v menu, nebo ikon. Mnoho p&#345;íkaz&#367; v <span class="application">BibleTime</span> má definovány horké 70polo&#382;ek v menu, nebo ikon. Mnoho p&#345;íkaz&#367; v <span class="application">BibleTime</span> má definovány horké
71klá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; 71klá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;
72<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ý 72<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ý
73p&#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>73p&#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>
7474
=== modified file 'docs/handbook/cs/html/hdbk-intro.html'
--- docs/handbook/cs/html/hdbk-intro.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-intro.html 2009-04-29 17:39:29 +0000
@@ -1,26 +1,26 @@
1<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 1<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
2jazyk&#367;. Práv&#283; velkému mno&#382;ství modul&#367; d&#283;l, které je snadné nainstalovat a 2and languages. Even large amounts of works modules are easy to install and
3spravovat. Je zalo&#382;en na knihovn&#283; <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a>, která poskytuje 3manage. It is built on the <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library, which provides
4funkcionalitu pro <span class="application">BibleTime</span>, jako zobrazování biblických text&#367;, 4the back-end functionality for <span class="application">BibleTime</span>, such as viewing Bible text,
5vyhledá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 5searching 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
6projektem Sword. Kompletní informace o podporovaných formátech dokument&#367; 6projektem Sword. Kompletní informace o podporovaných formátech dokument&#367;
7naleznete ve<a class="ulink" href="http://www.crosswire.org/sword/develop/index.jsp" target="_top"> 7naleznete ve<a class="ulink" href="http://www.crosswire.org/sword/develop/index.jsp" target="_top">
8vývojá&#345;ské sekci</a> na stránkách projektu Sword, Crosswire Bible 8vývojá&#345;ské sekci</a> na stránkách projektu Sword, Crosswire Bible
9Society.</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: 9Society.</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:
10 </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 10 </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
11and/or footnotes in the text. Bibles are available in many languages, and 11poznámky v textu. Bible jsou dostupné v mnoha jazycích, nejen v moderních
12include not only modern versions, but also ancient texts like the Codex 12verzích, ale také ve starov&#283;kých jako Codex Leningradensis ( Kodex
13Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is 13Leningradský; "WLC", Hebrejsky), nebo Septuaginta ("LXX", &#344;ecky). Toto je
14the 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 14nejmodern&#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
15Complete 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 15Complete 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
16Wesleyho, komentá&#345;e Matthewa Henryho a Luther&#367;v "Komentá&#345; ke galatským." 16Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
17Pomocí <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 17With 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
18biblický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;í 18sections 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;í
19"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, 19"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,
20Brown-Driver-Briggs Hebrew Lexicon a International Standard Bible 20Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
21Encyclopedia. Dostupné slovníky zahrnují: Strong's Hebrew Bible Dictionary, 21Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
22Strong's Greek Bible Dictionary, Webster's Revised Unabridged Dictionary of 22Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
23the 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 23Dictionary 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
24Ním. Máme chu&#357; udr&#382;et tento výkonný a kvalitní program stále jednoduchým a 24Ním. Chceme, aby byl tento výkonný a kvalitní program stále jednoduchý a
25intuitivní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 25intuitivní. 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
26nebeský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>26nebeský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>
2727
=== modified file 'docs/handbook/cs/html/hdbk-op-bookshelfmanager.html'
--- docs/handbook/cs/html/hdbk-op-bookshelfmanager.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-op-bookshelfmanager.html 2009-04-29 17:39:29 +0000
@@ -1,23 +1,24 @@
1<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 1<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
2do va&#353;í knihovny nainstalovat nová díla, aktualizovat nebo odstranit ty 2Bookshelf. You can install new works to your Bookshelf, and update or remove
3existují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 3existing 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
4adresá&#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 4drive. You can even store it in multiple directories. Default is
5pou&#382;ívat je p&#345;ímo z CD, pak vlo&#382;te cestu k CD jako jednu z cest. Kdy&#382; 5"~/.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
6zapnete <span class="application">BibleTime</span>, zobrazí se v&#353;echna díla, pokud je CD vlo&#382;eno v 6disk, but use them directly from the CD, then you can add the path to the CD
7mechanice.</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 7as one of your bookshelf paths. When you start <span class="application">BibleTime</span>, it will show all
8"library"), and transfer one or more works to your local Bookshelf. These 8works 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",
9libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online 9"library") a nahrát jedno nebo více d&#283;l do své lokální knihovny. Tyto
10repository of Sword modules, or another site offering Sword modules). You 10knihovny mohou být lokální (nap&#345;. Sword CD) nebo vzdálené (nap&#345;. Crosswire's
11can manage your libraries with <span class="guibutton">Add library</span> and 11online repository of Sword modules nebo jiné stránky nabízející moduly
12<span class="guibutton">Delete library</span>.</p><p>To begin the installation or update process, select a library you want to 12Sword). Své knihovny m&#367;&#382;ete spravovat pomocí <span class="guibutton">P&#345;idat
13connect to and a local Bookshelf path to install the work(s) to. Then click 13knihovnu</span> a <span class="guibutton">Smazat knihovnu</span>.</p><p>Pro zahájení procesu instalace nebo aktualizace vyberte knihovnu ke které se
14on <span class="guibutton">Connect to library</span>. <span class="application">BibleTime</span> will scan the 14chcete p&#345;ipojit a umíst&#283;ní lokální knihovny pro instalaci d&#283;l. Potom
15contents of the library and present you with a list of works that you can 15klikn&#283;te na tla&#269;ítko <span class="guibutton">Spojit s knihovnou</span>. <span class="application">BibleTime</span>
16add to your Bookshelf, or that you already have installed but are available 16prov&#283;&#345;í obsah knihovny a p&#345;edlo&#382;í vám seznam d&#283;l, které m&#367;&#382;ete do své
17in a new version in the library, and thus can be updated. Then you can mark 17knihovny p&#345;idat, nebo d&#283;l, které jsou ji&#382; nainstalované, ale jsou dostupné v
18all works that you want to install or update, and click on 18nov&#283;j&#353;í verzi, a tak mohou být aktualizovány. Poté m&#367;&#382;ete ozna&#269;it v&#353;echna
19<span class="guibutton">Install works</span>. They will then be transferred to your 19díla, která chcete nainstalovat nebo aktualizovat a kliknout na
20Bookshelf.</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í 20<span class="guibutton">Instalovat díla</span>. Ty budou poté nahrány do va&#353;í
21knihovny.</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í
21místo na disku. Jednodu&#353;e ozna&#269;te polo&#382;ky a klikn&#283;te na <span class="guibutton">Odstranit 22místo na disku. Jednodu&#353;e ozna&#269;te polo&#382;ky a klikn&#283;te na <span class="guibutton">Odstranit
22dí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é 23dí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é
23indexy smazaných d&#283;l.</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3>24indexy smazaných d&#283;l.</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3>
2425
=== modified file 'docs/handbook/cs/html/hdbk-op-output.html'
--- docs/handbook/cs/html/hdbk-op-output.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-op-output.html 2009-04-24 02:10:38 +0000
@@ -1,12 +1,12 @@
1<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 1<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
2<span class="mousebutton">right</span>mouse button. Depending on context, it will 2<span class="mousebutton">pravým</span> tla&#269;ítkem my&#353;i. V závislosti na kontextu
3allow you to <span class="guimenuitem">Select</span>, 3je mo&#382;né <span class="guimenuitem">Vybrat</span>,
4<span class="guimenuitem">Copy</span> (to clipboard), 4<span class="guimenuitem">Kopírovat</span> (do schránky),
5<span class="guimenuitem">Save</span> or <span class="guimenuitem">Print</span> 5<span class="guimenuitem">Ulo&#382;it</span> nebo
6text. This works for example in the read windows, when you click on the 6<span class="guimenuitem">Tisknout</span>. to funguje nap&#345;. v aktivním okn&#283; kdy&#382;
7normal text or the verse reference, or in the search result page when you 7kliknete na b&#283;&#382;ný text nebo na odkaz ver&#353;e, nebo na stránce výsledk&#367; hledání
8click on a work or one or more verse references. It is pretty 8p&#345;i kliknutí na dílo nebo na jeden &#269;i více odkaz&#367; ver&#353;&#367;. Je to krásn&#283;
9straightforward, 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 9p&#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
10vytvá&#345;íte dokument nebo prezentaci obsahující text d&#283;l z <span class="application">BibleTime</span>, 10vytvá&#345;íte dokument nebo prezentaci obsahující text d&#283;l z <span class="application">BibleTime</span>,
11doporu&#269;ujeme formátovat dokument za pou&#382;ití systémových nástroj&#367; pro tvorbu 11doporu&#269;ujeme formátovat dokument za pou&#382;ití systémových nástroj&#367; pro tvorbu
12prezentací, 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>12prezentací, 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>
1313
=== modified file 'docs/handbook/cs/html/hdbk-op-parts.html'
--- docs/handbook/cs/html/hdbk-op-parts.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-op-parts.html 2009-04-29 17:39:29 +0000
@@ -4,7 +4,7 @@
4my&#353;i</span> na po&#382;adovanou kategorii (Bible, Komentá&#345;e, Lexikony, 4my&#353;i</span> na po&#382;adovanou kategorii (Bible, Komentá&#345;e, Lexikony,
5Knihy, Zamy&#353;lení nebo Glosá&#345;e) pro zobrazení jejího obsahu. Poté klikn&#283;te na 5Knihy, Zamy&#353;lení nebo Glosá&#345;e) pro zobrazení jejího obsahu. Poté klikn&#283;te na
6jedno z d&#283;l k jeho otev&#345;ení pro &#269;tení. Okno pro &#269;tení díla se objeví na 6jedno z d&#283;l k jeho otev&#345;ení pro &#269;tení. Okno pro &#269;tení díla se objeví na
7plo&#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 7plo&#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
8pou&#382;ít zkratku. jednodu&#353;e klikn&#283;te <span class="mousebutton">levým tla&#269;ítkem 8pou&#382;ít zkratku. jednodu&#353;e klikn&#283;te <span class="mousebutton">levým tla&#269;ítkem
9my&#353;i</span> na odkaz ver&#353;e nebo kapitoly (kurzor se zm&#283;ní v ruku) a 9my&#353;i</span> na odkaz ver&#353;e nebo kapitoly (kurzor se zm&#283;ní v ruku) a
10p&#345;etáhn&#283;te ho do knihovny. Upus&#357;te ho na dílo, které chcete otev&#345;ít ,a to 10p&#345;etáhn&#283;te ho do knihovny. Upus&#357;te ho na dílo, které chcete otev&#345;ít ,a to
@@ -23,7 +23,7 @@
23vyhledávacího dialogu. Budete vyhledávat ve v&#353;ech t&#283;chto 23vyhledávacího dialogu. Budete vyhledávat ve v&#353;ech t&#283;chto
24dokumentech. 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>24dokumentech. 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>
2525
26 </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>26 </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>
2727
28 Klikn&#283;te <span class="mousebutton">pravým tla&#269;ítkem my&#353;i</span> na kategorii 28 Klikn&#283;te <span class="mousebutton">pravým tla&#269;ítkem my&#353;i</span> na kategorii
29zálo&#382;ek v knihovn&#283; a vyberte <span class="guimenuitem">"Vytvo&#345;it novou 29zálo&#382;ek v knihovn&#283; a vyberte <span class="guimenuitem">"Vytvo&#345;it novou
@@ -39,28 +39,27 @@
39kurzor umíst&#283;n nad n&#283;jakým textem s dal&#353;ími informacemi (e.g., Strong's 39kurzor umíst&#283;n nad n&#283;jakým textem s dal&#353;ími informacemi (e.g., Strong's
40numbers), potom budou tyto informace zobrazeny v okn&#283; &#269;asopisu, ne v textu 40numbers), potom budou tyto informace zobrazeny v okn&#283; &#269;asopisu, ne v textu
41samotné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 41samotné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
42open 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 42open 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
43annotations 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>, 43annotations 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>,
44m&#367;&#382;ete jednodu&#353;e otevírat díla pro &#269;tení kliknutím na jejich symbol v 44m&#367;&#382;ete jednodu&#353;e otevírat díla pro &#269;tení kliknutím na jejich symbol v
45knihovn&#283;. Okno díla se otev&#345;e na plo&#353;e. Ka&#382;dé okno díla má nástrojovou 45knihovn&#283;. Okno díla se otev&#345;e na plo&#353;e. Ka&#382;dé okno díla má nástrojovou
46li&#353;tu. Zde najdete nástroje k navigaci propojené s dílem, nap&#345;íklad tla&#269;ítka 46li&#353;tu. Zde najdete nástroje k navigaci propojené s dílem, nap&#345;íklad tla&#269;ítka
47historie 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 47historie 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
48possibilities for arranging the read windows on the desk. Please have a look 48mo&#382;ností jak umístit okna na plo&#353;e. Prosím podívejte se na polo&#382;ku
49at the entry <span class="guimenu">Window</span>in the main menu. There you can see 49<span class="guimenu">Okno</span> v hlavním menu. Tam uvid&#283;íte, &#382;e umíst&#283;ní oken
50that you can either control the placement of the read windows completely 50m&#367;&#382;ete ovládat bu&#271; osobn&#283;, nebo zvolit automatické umíst&#283;ní <span class="application">BibleTime</span>. To
51yourself, or have <span class="application">BibleTime</span> handle the placement automatically. To achieve 51m&#367;&#382;ete cílit volbou jednoho z automatických m&#367;d&#367; umíst&#283;ní, které jsou
52this, you have to select one of the automatic placement modes available at 52p&#345;ístupné p&#345;es <span class="guimenu">Okno</span> &#8594; <span class="guimenuitem">Mód
53<span class="guimenu">Window</span> &#8594; <span class="guimenuitem">Arrangement 53rozvr&#382;ení</span>. Prost&#283; to vyzkou&#353;ejte, je to snadné a
54mode</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 54funguje 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
55install 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 55dílo z knihovny <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire Bible
56called "Personal commentary".</p><p>If you open the personal commentary by clicking on its symbol in the 56Society</a>, které se jmenuje "Personal commentary".</p><p>Pokud otev&#345;ete osobní komentá&#345; kliknutím <span class="mousebutton">levým</span>
57Bookshelf with a <span class="mousebutton">left</span>mouse button, it opens in 57tla&#269;ítkem my&#353;i na jeho symbol v knihovn&#283;, otev&#345;e se pro &#269;tení. V tomto módu
58read mode. You will not be able to edit it in this mode. Should you wish to 58není mo&#382;né komentá&#345; editovat. Pokud si p&#345;ejete do n&#283;j zapsat poznámku,
59write annotations into the personal commentary, you have to open it with the 59musíte ho otev&#345;ít pomocí <span class="mousebutton">pravého</span> tla&#269;ítka my&#353;i a
60<span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit 60zvolit <span class="guimenu">Editovat toto dílo</span> a potom také
61this work</span>and then either <span class="guimenuitem">Plain 61<span class="guimenuitem">Prostý text</span> (editor zdrojového kódu) nebo
62text</span>(source code editor) or 62<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
63<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
64deactivated, please check if you have write permission for the files of the 63deactivated, please check if you have write permission for the files of the
65personal 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 64personal 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
66will 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>65text.</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>
6766
=== modified file 'docs/handbook/cs/html/hdbk-op-search.html'
--- docs/handbook/cs/html/hdbk-op-search.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-op-search.html 2009-04-29 17:39:29 +0000
@@ -1,37 +1,37 @@
1<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 1<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;
2of a bible that you're reading) just like you are used to from other 2(nap&#345;. kapitolu bible, kterou &#269;tete), je to stejné jako v jiných
3programs. This function can be reached either by clicking with the 3programech. tuto funkci m&#367;&#382;ete vyvolat kliknutím
4<span class="mousebutton">right</span>mouse button and selecting 4<span class="mousebutton">pravým</span> tla&#269;ítkem my&#353;i a vyráním
5<span class="guimenuitem">Find...</span>, or by using the hotkey <span class="keycap"><strong>F</strong></span>. Read on to learn how 5<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
6you 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 6v 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
7<span class="mousebutton">right</span>mouse button on its symbol in the 7my&#353;i na symbol v <span class="guimenu">knihovn&#283;</span> a vybráním <span class="guimenuitem">Hledat
8<span class="guimenu">Bookshelf</span>and selecting <span class="guimenuitem">Search in 8ve vybraných dílech</span>. P&#345;idr&#382;ením Shift nebo Ctrl a
9work(s)</span>. By holding Shift or Ctrl and clicking on other 9kliknutím na jména dal&#353;ích d&#283;l m&#367;&#382;ete vybrat více ne&#382; jedno dílo. Poté
10work's names you can select more than one. Then follow the same procedure to 10následuje stejný postup otev&#345;ení dialogu hledání. Budete hledat ve v&#353;ech
11open the search dialog. You will be searching in all of these works at the 11t&#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
12same time.</p><p>You can also access the search dialog by clicking on <span class="guimenu">Search</span> from the main menu, and selecting 12odpoví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
13the appropriate entry.</p><p>A third possibility to start searches is to click on the search symbol in an 13aktuá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
14open 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 14Choose)</span> (díla). Pokud chcete vyhledávat ve více dílech, klikn&#283;te
15<span class="guibutton">Choose</span>(works). If you would like to search in 15na toto tla&#269;ítko, poté vám bude nabídnuto menu s mo&#382;ností výb&#283;ru d&#283;l ve
16multiple works, click on this button and you will be offered a menu where 16který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
17you 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 17definovaných oblastí v seznamv <span class="guimenu">Rozsah hledání</span> M&#367;&#382;ete
18selecting one of the predefined scopes from the list in <span class="guimenu">Search 18definovat vlastní vyhledávací rozsahy kliknutím na tla&#269;ítko
19scope</span>. You can define your own search ranges by clicking the 19<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í
20<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 20vrátí výsledky, které odpovídají libovolnému z vyhledávaných výraz&#367; (logická
21return results that match any of the search terms (OR). To search for all 21spojka NEBO). pro vyhledání v&#353;ech výraz&#367; odd&#283;lte jednotlivá slova spojkou
22the terms separate the terms by AND.</p><p>You can use wildcards: '*' matches any sequence of characters, while '?' 22AND.</p><p>M&#367;&#382;ete vyu&#382;ít znaky: '*' odpovídající libovolné posloupnosti znak&#367;, '?'
23matches any single character. The use of brackets allows you to group your 23zastupující libovolný jeden znak. Pou&#382;ití závorek vám dovoluje seskupovat
24search terms, e.g. '(Jesus OR spirit) AND God'.</p><p>To search text other than the main text, enter the text type followed by 24hledané výrazy, nap&#345;. '(Je&#382;í&#353; OR duch) AND B&#367;h' --výsledky hledání budou
25':', and then the search term. For example, to search for the Strong's 25obsahovat 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
26number H8077, use 'strong:H8077'.</p><p>Dostupné typy text&#367;: 26následovanou'dvojte&#269;kou ':' a hledaným výrazem. Nap&#345;íklad pro vyhledávání
27 </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 27Strongova &#269;ísla H8077 pou&#382;ijte 'strong:H8077'</p><p>Dostupné p&#345;edpony:
28 </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
28pokro&#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"> 29pokro&#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">
29http://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 30http://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
30by works. Clicking on a work with the <span class="mousebutton">right</span>mouse 31d&#283;l. Kliknutí na dílo <span class="mousebutton">pravým</span> tla&#269;ítkem my&#353;i vám
31button allows you to copy, save, or print all verses that were found in a 32umo&#382;ní kopírovat, ulo&#382;it, nebo tisknout v&#353;echny ver&#353;e které byli v daném
32certain work at once. This also works when you click on one or more of the 33díle nalezeny. To p&#345;i kliknutí na jeden nebo více odkaz&#367;. Kliknutí na ur&#269;itý
33references to copy, save or print them. Clicking on a particular reference 34odkaz 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
34opens 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
35tomto 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 35tomto 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
36po&#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 36po&#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
37vyhledávání. Zobrazí jednoduchou grafickou analýzu mno&#382;ství nalezených 37vyhledávání. Zobrazí jednoduchou grafickou analýzu mno&#382;ství nalezených
3838
=== modified file 'docs/handbook/cs/html/hdbk-op.html'
--- docs/handbook/cs/html/hdbk-op.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-op.html 2009-04-24 02:10:38 +0000
@@ -1,8 +1,8 @@
1<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>: 1<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>:
2 </p><div class="mediaobject"><img src="ss_mainterms.png" alt="Okno aplikace BibleTime"></div><p>2 </p><div class="mediaobject"><img src="ss_mainterms.png" alt="Okno aplikace BibleTime"></div><p>
3 M&#367;&#382;ete si jednodu&#353;e prohlédnout r&#367;zné &#269;ásti aplikace. Knihovna na levé 3 M&#367;&#382;ete si jednodu&#353;e prohlédnout r&#367;zné &#269;ásti aplikace. Knihovna na levé
4stran&#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 4stran&#283; se pou&#382;ívá pro otevírání d&#283;l a správu va&#353;ich zálo&#382;ek. Malé okno
5pod knihovnou se pou&#382;ívá pro zobrazení dal&#353;ích informací vlo&#382;ených do 5&#269;aopisu pod knihovnou se pou&#382;ívá pro zobrazení dal&#353;ích informací vlo&#382;ených
6dokument&#367;. Kdy&#382; p&#345;emístíte my&#353; nap&#345;íklad nad zna&#269;ku poznámky, "Mag" zobrazí 6do dokument&#367;. Kdy&#382; p&#345;emístíte my&#353; nap&#345;íklad nad zna&#269;ku poznámky, &#269;asopis
7aktuální obsah poznámky. Panel nástroj&#367; vám umo&#382;&#328;uje rychlý p&#345;ístup k 7zobrazí aktuální obsah poznámky. Panel nástroj&#367; vám umo&#382;&#328;uje rychlý p&#345;ístup
8d&#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>8k 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>
99
=== modified file 'docs/handbook/cs/html/hdbk-reference-hotkeys.html'
--- docs/handbook/cs/html/hdbk-reference-hotkeys.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-reference-hotkeys.html 2009-04-29 17:39:29 +0000
@@ -1,7 +1,7 @@
1<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 1<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
2handbook. The hotkeys are sorted (roughly) alphabetical. If you want to 2handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
3directly find out which hotkey a certain menu item has, you can either look 3directly find out which hotkey a certain menu item has, you can either look
4at the entry itelf in <span class="application">BibleTime</span> (as it always shows the hotkey), or you 4at the entry itself in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
5can 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>5can 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>
6 <span class="keycap"><strong>Left</strong></span>6 <span class="keycap"><strong>Left</strong></span>
7 </td><td>Posune zp&#283;t v historii aktivního okna.</td></tr><tr><td>7 </td><td>Posune zp&#283;t v historii aktivního okna.</td></tr><tr><td>
@@ -47,7 +47,7 @@
47 <span class="keycap"><strong>C</strong></span>47 <span class="keycap"><strong>C</strong></span>
48 </td><td>Kopírovat. Zkopíruje vybraný text do schránky.</td></tr><tr><td>48 </td><td>Kopírovat. Zkopíruje vybraný text do schránky.</td></tr><tr><td>
49 <span class="keycap"><strong>F</strong></span>49 <span class="keycap"><strong>F</strong></span>
50 </td><td>Search. This lets you search within the text of a read window.</td></tr><tr><td>50 </td><td>Hledat. Vyhledává v textu aktivního okna</td></tr><tr><td>
51 <span class="keycap"><strong>O</strong></span>51 <span class="keycap"><strong>O</strong></span>
52 </td><td>52 </td><td>
53 <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 53 <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
@@ -76,4 +76,4 @@
76 <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>76 <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>
77 <span class="keycap"><strong>F9</strong></span>77 <span class="keycap"><strong>F9</strong></span>
78 </td><td>78 </td><td>
79 <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>79 <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>
8080
=== modified file 'docs/handbook/cs/html/hdbk-reference-toolbar.html'
--- docs/handbook/cs/html/hdbk-reference-toolbar.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-reference-toolbar.html 2009-04-29 17:39:29 +0000
@@ -1,10 +1,10 @@
1<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 1<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;,
2section</a> for an explanation of the buttons that you find on the 2podívejte se prosím do <a class="link" href="hdbk-reference.html#hdbk-reference-menus" title="Odkazy Hlavního menu">p&#345;edeslé
3toolbar. You can also <span class="action">move the cursor over a button and wait a few 3sekce</a>. M&#367;&#382;ete také <span class="action">p&#345;esunout kurzor nad tla&#269;ítko a po&#269;kt
4seconds</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 4n&#283;kolik sekund</span>, tím se aktivuje nástrojový tip k tla&#269;ítku s jeho
5the main menu: 5krá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
6následující polo&#382;ku hlavního menu:
6 </p><div class="variablelist"><dl><dt><span class="term">7 </p><div class="variablelist"><dl><dt><span class="term">
7 <span class="guimenu">8 <span class="guimenu">
8 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>9 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
9 </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 10 </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>
10section</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>
1111
=== modified file 'docs/handbook/cs/html/hdbk-reference.html'
--- docs/handbook/cs/html/hdbk-reference.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-reference.html 2009-04-29 17:39:29 +0000
@@ -1,4 +1,4 @@
1<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">1<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">
2 File2 File
3 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">3 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">
4 View4 View
@@ -10,11 +10,11 @@
10 Settings10 Settings
11 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">11 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
12 Help12 Help
13 </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 13 </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
14<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; 14<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;
15pod&#345;ízených polo&#382;ek zaznamenaných pod hlavní polo&#382;kou menu ke které 15pod&#345;ízených polo&#382;ek zaznamenaných pod hlavní polo&#382;kou menu ke které
16nále&#382;í. Horké klávesy m&#367;&#382;ete vid&#283;t u ka&#382;dé polo&#382;ky; kompletní seznam v&#353;ech 16nále&#382;í. Horké klávesy m&#367;&#382;ete vid&#283;t u ka&#382;dé polo&#382;ky; kompletní seznam v&#353;ech
17horkých kláves naleznete v <a class="link" href="hdbk-reference-hotkeys.html" title="Seznam klávesových zkratek">této 17horkých kláves naleznete v <a class="link" href="hdbk-reference-hotkeys.html" title="Seznam horkých kláves">této
18sekci</a>.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-file"></a>18sekci</a>.</p><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-file"></a>
19 <span class="guimenu">File</span>19 <span class="guimenu">File</span>
20 </h3></div></div></div><p>20 </h3></div></div></div><p>
@@ -26,19 +26,22 @@
26zapsat neulo&#382;ené zm&#283;ny na disk.</p></dd></dl></div><p>26zapsat neulo&#382;ené zm&#283;ny na disk.</p></dd></dl></div><p>
27 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>27 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>
28 <span class="guimenu">View</span>28 <span class="guimenu">View</span>
29 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">29 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-fullscreenmode"></a><span class="term">
30 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Toolbar</span>30 <span class="guimenu">
31 <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>)
32 </span></dt><dd><p>
33 <span class="action">Toggles full screen display.</span> Toggle this setting to
34maximize the <span class="application">BibleTime</span> window.</p></dd><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
35 <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>)
31 </span></dt><dd><p>36 </span></dt><dd><p>
32 <span class="action">P&#345;epíná zobrazení nástroj&#367;.</span> Aktivujte tuto mo&#382;nost pokud si 37 <span class="action">P&#345;epíná zobrazení nástroj&#367;.</span> Aktivujte tuto mo&#382;nost pokud si
33p&#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">38p&#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">
34 <span class="guimenu">39 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span>
35 <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>)
36 </span></dt><dd><p>40 </span></dt><dd><p>
37 <span class="action">Zapne zobrazení knihovny.</span> Zvolte tuto mo&#382;nost pro zapnutí, 41 <span class="action">Zapne zobrazení knihovny.</span> Zvolte tuto mo&#382;nost pro zapnutí,
38nebo vypnutí zobrazení knihovny vlevo. To m&#367;&#382;e být praktické pokud 42nebo vypnutí zobrazení knihovny vlevo. To m&#367;&#382;e být praktické pokud
39pot&#345;ebujete více &#269;asu pro &#269;asopis.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">43pot&#345;ebujete více &#269;asu pro &#269;asopis.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">
40 <span class="guimenu">44 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Mag</span>
41 <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>)
42 </span></dt><dd><p>45 </span></dt><dd><p>
43 <span class="action">Zapne zobrazení &#269;asopisu.</span> Zvolte tuto mo&#382;nost pro zapnutí 46 <span class="action">Zapne zobrazení &#269;asopisu.</span> Zvolte tuto mo&#382;nost pro zapnutí
44nebo 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>47nebo 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>
@@ -80,36 +83,46 @@
80 <span class="guimenu">83 <span class="guimenu">
81 <span class="inlinemediaobject"><img src="i_cascade_auto.png"></span>Window</span> &#8594; <span class="guimenuitem">Arrangement mode</span>84 <span class="inlinemediaobject"><img src="i_cascade_auto.png"></span>Window</span> &#8594; <span class="guimenuitem">Arrangement mode</span>
82 </span></dt><dd><p>85 </span></dt><dd><p>
83 <span class="action">Controls the basic window arrangement behaviour</span>. In the 86 <span class="action">Ovládá chování jednoduchého rozvr&#382;ení oken</span>. V otev&#345;eném
84opening context menu, you can either specify that you want to take care of 87kontextovém menu m&#367;&#382;ete zvolit, &#382;e se chcete o rozvr&#382;ení oken starat osobn&#283;
85the window arrangement yourself (Manual mode) or have <span class="application">BibleTime</span> handle it 88(Ru&#269;ní mód) nebo pou&#382;ít p&#345;ipravené mo&#382;nosti <span class="application">BibleTime</span> (Automatické módy,
86for you (Automatical modes, just try them out!).</p></dd><dt><a name="hdbk-reference-menus-window-closeall"></a><span class="term">89tak je vyzkou&#353;ejte!)</p></dd><dt><a name="hdbk-reference-menus-window-closeall"></a><span class="term">
87 <span class="guimenu">90 <span class="guimenu">
88 <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>)91 <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>)
89 </span></dt><dd><p>92 </span></dt><dd><p>
90 <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>93 <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>
91 <span class="guimenu">Settings</span>94 <span class="guimenu">Settings</span>
92 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-toolbars"></a><span class="term">95 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
93 <span class="guimenu">
94 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
95 </span></dt><dd><p>
96 <span class="action">Opens a dialog where you can customize <span class="application">BibleTime</span>'s
97toolbar</span>. Just try it out, you can move around the toolbar buttons
98and even add new ones. Most of the entries available from the main menu can
99be put on the toolbar as buttons. If you need a certain feature often, you
100might want to put a button on the main menu, so that you can access it with
101only one click. Please see <a class="link" href="">this
102section</a> for further information.</p></dd><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
103 <span class="guimenu">96 <span class="guimenu">
104 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>97 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>
105 </span></dt><dd><p>98 </span></dt><dd><p>
106 <span class="action">Otev&#345;e hlavní konfigura&#269;ní dialog <span class="application">BibleTime</span></span>. M&#367;&#382;ete 99 <span class="action">Otev&#345;e hlavní konfigura&#269;ní dialog <span class="application">BibleTime</span></span>. M&#367;&#382;ete
107nastavit v&#353;echny vlastnosti <span class="application">BibleTime</span>, které pot&#345;ebujete. Prosím nav&#353;tivte 100nastavit v&#353;echny vlastnosti <span class="application">BibleTime</span>, které pot&#345;ebujete. Prosím nav&#353;tivte
108<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">101<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">
109 <span class="guimenu">102 <span class="guimenu">
110 <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>)103 <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>)
111 </span></dt><dd><p>104 </span></dt><dd><p>
112 <span class="action">Opens a dialog where you can change your Sword configuration and 105 <span class="action">Otev&#345;e dialog kde m&#367;&#382;ete zm&#283;nit va&#353;e nastavení Sword a spraovat svou
113manage 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>106knihovnu</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>
114 <span class="guimenu">Help</span>107 <span class="guimenu">Help</span>
115 </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>108 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-help-bibletime"></a><span class="term">
109 <span class="guimenu">
110 <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>)
111 </span></dt><dd><p>
112 <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">
113 <span class="guimenu">
114 <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>)
115 </span></dt><dd><p>
116 <span class="action">Opens a guide on how to study the Bible</span> It is the hope of
117the <span class="application">BibleTime</span> team that this HowTo will provoke the readers to study the
118scriptures to see what they say. This particular study guide has been chosen
119as it takes care not to advocate any particular denominational doctrine. We
120expect you to read and study the scriptures to understand what they say. If
121you start with the attitude that you want to have the Lord sow his word in
122your heart He will not disappoint you.</p></dd><dt><a name="hdbk-reference-menus-help-about"></a><span class="term">
123 <span class="guimenu">Help</span> &#8594; <span class="guimenuitem">About</span>
124 </span></dt><dd><p>
125 <span class="action">Opens a window about <span class="application">BibleTime</span> project information</span>
126contains information about <span class="application">BibleTime</span> software version, project
127contributors, <span class="application">Sword</span> software version, <span class="application">Qt</span> software version and the
128license 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>
116129
=== modified file 'docs/handbook/cs/html/hdbk-startsequence.html'
--- docs/handbook/cs/html/hdbk-startsequence.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-startsequence.html 2009-04-24 02:10:38 +0000
@@ -2,14 +2,15 @@
2se otev&#345;e hlavní okno <span class="application">BibleTime</span>:</p><div class="variablelist"><dl><dt><span class="term">2se otev&#345;e hlavní okno <span class="application">BibleTime</span>:</p><div class="variablelist"><dl><dt><span class="term">
3 <span class="interface">Bookshelf Manager</span>3 <span class="interface">Bookshelf Manager</span>
4 </span></dt><dd><p>4 </span></dt><dd><p>
5 <span class="action">Modifies your Bookshelf.</span> This dialog lets you modify your 5 <span class="action">Upravit va&#353;i knihovnu.</span> Tento dialog vám umo&#382;ní upravovat
6Bookshelf, add or delete works from your system. It will only be shown if 6va&#353;i knihovnu, p&#345;idávat nebo mazat díla ve va&#353;em systému.This dialog lets
7no default Bookshelf can be found. Please see <a class="link" href="hdbk-op-bookshelfmanager.html" title="Správa knih"> this section</a> for further 7you modify your Bookshelf, add or delete works from your system. Bude
8details. If you start off with an empty Bookshelf, it will be helpful to 8zobrazen pouze v p&#345;ípad&#283;, &#382;e nebude nalezena výchozí knihovna. Prosím
9install at least one Bible, Commentary, Lexicon and one Book to get to know 9podívejte se do <a class="link" href="hdbk-op-bookshelfmanager.html" title="Správa knih"> této sekce</a>
10<span class="application">BibleTime</span>'s basic features quickly.</p></dd><dt><span class="term">10pokud chcete znát více detail&#367;. Pokud za&#269;ínáte s prázdnou knihovnou, bude
11u&#382;ite&#269;né nainstalovat alespo&#328; jednu Bibli, Komentá&#345;, Lexikon a knihu,
12abyste se rychle seznámili se základními vlastnostmi <span class="application">BibleTime</span>.</p></dd><dt><span class="term">
11 <span class="interface">Configure <span class="application">BibleTime</span> dialog</span>13 <span class="interface">Configure <span class="application">BibleTime</span> dialog</span>
12 </span></dt><dd><p>14 </span></dt><dd><p>
13 <span class="action">Customizes <span class="application">BibleTime</span>.</span>This dialog lets you adapt 15 <span class="action">P&#345;izp&#367;sobí <span class="application">BibleTime</span>.</span>Tento dialog vám dovolí p&#345;izp&#367;sobit
14<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 16<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>
15detailed 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>
1617
=== modified file 'docs/handbook/cs/html/hdbk-term.html'
--- docs/handbook/cs/html/hdbk-term.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/hdbk-term.html 2009-04-24 02:10:38 +0000
@@ -2,10 +2,9 @@
2prost&#345;edí. <span class="application">BibleTime</span> m&#367;&#382;ete spustit z menu Start touto ikonou: 2prost&#345;edí. <span class="application">BibleTime</span> m&#367;&#382;ete spustit z menu Start touto ikonou:
3 </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í 3 </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í
4<span class="application">BibleTime</span> otev&#345;ete okno terminálu a napi&#353;te: 4<span class="application">BibleTime</span> otev&#345;ete okno terminálu a napi&#353;te:
5 </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, 5 </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,
6BlackBox, Fluxbox, OpenBox nebo Sawfish, pokud jsou po&#382;adované knihovny ji&#382; 6Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
7nainstalová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 7already 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
8výchozí bibli: 8výchozí bibli:
9 </p><pre class="screen">bibletime --open-default-bible9 </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:
10 "&lt;random&gt;"</pre><p>Pro otev&#345;ení v dané pasá&#382;i, jako nap&#345;íklad Jan 3:16, pou&#382;ijte:
11 </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>10 </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>
1211
=== modified file 'docs/handbook/cs/html/index.html'
--- docs/handbook/cs/html/index.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/cs/html/index.html 2009-04-29 17:39:29 +0000
@@ -1,4 +1,4 @@
1<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">1<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">
2 Display2 Display
3 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">3 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">
4 Languages4 Languages
@@ -18,4 +18,4 @@
18 Settings18 Settings
19 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">19 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
20 Help20 Help
21 </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>21 </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>
2222
=== modified file 'docs/handbook/de/docbook/hdbk-config.docbook'
--- docs/handbook/de/docbook/hdbk-config.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/docbook/hdbk-config.docbook 2009-04-24 02:10:38 +0000
@@ -32,7 +32,7 @@
32und sie werden sich gleich zu Hause fühlen.</para>32und sie werden sich gleich zu Hause fühlen.</para>
3333
34 <para>By default, &bibletime; uses the default system display font. You can 34 <para>By default, &bibletime; uses the default system display font. You can
35override this font if neccessary. Some languages require special fonts to be 35override this font if necessary. Some languages require special fonts to be
36displayed correctly, and this dialog allows you to specify a custom font for 36displayed correctly, and this dialog allows you to specify a custom font for
37each language.</para>37each language.</para>
38 <mediaobject>38 <mediaobject>
@@ -112,14 +112,14 @@
112 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">112 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">
113 SIL unicode fonts</ulink>113 SIL unicode fonts</ulink>
114 </entry>114 </entry>
115 <entry>Exzellente Schriftarten des Summer Institute of Linguistics.</entry>115 <entry>Excellent Unicode fonts from the Summer Institute of Linguistics.</entry>
116 </row>116 </row>
117 <row>117 <row>
118 <entry>118 <entry>
119 <ulink url="http://www.nongnu.org/freefont/">119 <ulink url="http://www.nongnu.org/freefont/">
120 FreeFont</ulink>120 FreeFont</ulink>
121 </entry>121 </entry>
122 <entry>Eine neue Initiative für eine freie Unicode-Schriftart.</entry>122 <entry>A new free Unicode font initiative.</entry>
123 </row>123 </row>
124 <row>124 <row>
125 <entry>125 <entry>
@@ -166,7 +166,7 @@
166&bibletime;. These features are documented right in the dialog. You also 166&bibletime;. These features are documented right in the dialog. You also
167have the possibility to specify standard works that should be used when no 167have the possibility to specify standard works that should be used when no
168specific work is specified in a reference. An example: The standard Bible is 168specific work is specified in a reference. An example: The standard Bible is
169used to display the content of crossreferences in the Bible. When you hover 169used to display the content of cross references in the Bible. When you hover
170over then, the Mag will show the content of the verses referred to, 170over then, the Mag will show the content of the verses referred to,
171according to the standard Bible you specified.</para>171according to the standard Bible you specified.</para>
172 </sect2>172 </sect2>
173173
=== modified file 'docs/handbook/de/docbook/hdbk-intro.docbook'
--- docs/handbook/de/docbook/hdbk-intro.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/docbook/hdbk-intro.docbook 2009-04-29 17:39:29 +0000
@@ -3,7 +3,7 @@
3 <sect1 id="hdbk-intro-about">3 <sect1 id="hdbk-intro-about">
4 <title>About &bibletime;</title>4 <title>About &bibletime;</title>
5 <para>&bibletime; is a Bible study tool with support for different types of texts 5 <para>&bibletime; is a Bible study tool with support for different types of texts
6and languages. Even large amounts of works modules) are easy to install and 6and languages. Even large amounts of works modules are easy to install and
7manage. It is built on the <ulink 7manage. It is built on the <ulink
8url="http://www.crosswire.org/sword">Sword</ulink> library, which provides 8url="http://www.crosswire.org/sword">Sword</ulink> library, which provides
9the back-end functionality for &bibletime;, such as viewing Bible text, 9the back-end functionality for &bibletime;, such as viewing Bible text,
@@ -43,7 +43,7 @@
43 <term>Kommentare</term>43 <term>Kommentare</term>
44 <listitem>44 <listitem>
45 <para>Commentaries available include classics like John Wesley's "Notes on the 45 <para>Commentaries available include classics like John Wesley's "Notes on the
46Bible", Matthew Henry`s commentary and Luther's "Commentary on Galatians." 46Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
47With the <emphasis>Personal</emphasis> commentary you can <link 47With the <emphasis>Personal</emphasis> commentary you can <link
48linkend="hdbk-op-parts-desk-write"> record your own personal notes</link> to 48linkend="hdbk-op-parts-desk-write"> record your own personal notes</link> to
49sections of the Bible.</para>49sections of the Bible.</para>
@@ -59,9 +59,11 @@
59 <varlistentry>59 <varlistentry>
60 <term>Lexika / Wörterbücher</term>60 <term>Lexika / Wörterbücher</term>
61 <listitem>61 <listitem>
62 <para>Zu den verfügbaren Wörterbüchern gehören: Strong's Hebrew Bible Dictionary, 62 <para>Lexicons available include: Robinson's Morphological Analysis Codes,
63Strong's Greek Bible Dictionary, Webster's Revised Unabridged Dictionary of 63Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
64the English Language 1913, Nave's Topical Bible.</para>64Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
65Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
66Dictionary of the English Language 1913, Nave's Topical Bible.</para>
65 </listitem>67 </listitem>
66 </varlistentry>68 </varlistentry>
67 </variablelist></para>69 </variablelist></para>
6870
=== modified file 'docs/handbook/de/docbook/hdbk-operation.docbook'
--- docs/handbook/de/docbook/hdbk-operation.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/docbook/hdbk-operation.docbook 2009-04-29 17:39:29 +0000
@@ -113,7 +113,7 @@
113 <title>Die Arbeitsfläche</title>113 <title>Die Arbeitsfläche</title>
114 <para>The Desk is where the real work with &bibletime; takes place. Here you can 114 <para>The Desk is where the real work with &bibletime; takes place. Here you can
115open works from the Bookshelf, read them, <link 115open works from the Bookshelf, read them, <link
116linkend="hdbk-op-search">search</link>in them, and even save your 116linkend="hdbk-op-search">search</link> in them, and even save your
117annotations in the personal commentary module (see <link 117annotations in the personal commentary module (see <link
118linkend="hdbk-op-parts-desk-write">below</link>).</para>118linkend="hdbk-op-parts-desk-write">below</link>).</para>
119119
@@ -156,7 +156,7 @@
156<guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>156<guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>
157157
158 <tip>158 <tip>
159 <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice>is 159 <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice> is
160deactivated, please check if you have write permission for the files of the 160deactivated, please check if you have write permission for the files of the
161personal commentary.</para>161personal commentary.</para>
162 </tip>162 </tip>
@@ -237,6 +237,7 @@
237number H8077, use 'strong:H8077'.</para>237number H8077, use 'strong:H8077'.</para>
238 <para>Available text types: 238 <para>Available text types:
239 <table id="hd-op-search-config-syntax-table">239 <table id="hd-op-search-config-syntax-table">
240 <title>Search Types</title>
240 <tgroup cols="2">241 <tgroup cols="2">
241 <thead>242 <thead>
242 <row>243 <row>
@@ -312,17 +313,17 @@
312Bookshelf. You can install new works to your Bookshelf, and update or remove 313Bookshelf. You can install new works to your Bookshelf, and update or remove
313existing works from your Bookshelf. Access it by clicking <menuchoice> 314existing works from your Bookshelf. Access it by clicking <menuchoice>
314<guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem> 315<guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem>
315</menuchoice>in the main menu.</para>316</menuchoice> in the main menu.</para>
316 <sect2 id="hdbk-op-bookshelfmanager-path">317 <sect2 id="hdbk-op-bookshelfmanager-path">
317 <title>Bookshelf path(s) setup</title>318 <title>Bookshelf path(s) setup</title>
318 <para>Here you can specify where &bibletime; may store your Bookshelf on the 319 <para>Here you can specify where &bibletime; may store your Bookshelf on the hard
319harddrive. You can even store it in multiple directories. Default is 320drive. You can even store it in multiple directories. Default is
320"~/.sword/".</para>321"~/.sword/".</para>
321 <tip>322 <tip>
322 <para>If you have a sword CD, but do not want to install all the works on the 323 <para>If you have a sword CD, but do not want to install all the works on the hard
323harddisk, but use them directly from the CD, then you can add the path to 324disk, but use them directly from the CD, then you can add the path to the CD
324the CD as one of your bookshelf paths. When you start &bibletime;, it will 325as one of your bookshelf paths. When you start &bibletime;, it will show all
325show all works on the CD if it is present.</para>326works on the CD if it is present.</para>
326 </tip>327 </tip>
327 </sect2>328 </sect2>
328 <sect2 id="hdbk-op-bookshelfmanager-installupdate">329 <sect2 id="hdbk-op-bookshelfmanager-installupdate">
329330
=== modified file 'docs/handbook/de/docbook/hdbk-reference.docbook'
--- docs/handbook/de/docbook/hdbk-reference.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/docbook/hdbk-reference.docbook 2009-04-29 17:39:29 +0000
@@ -39,16 +39,47 @@
39 </variablelist>39 </variablelist>
40 </para>40 </para>
41 </sect2>41 </sect2>
42
42 <sect2 id="hdbk-reference-menus-view">43 <sect2 id="hdbk-reference-menus-view">
43 <title>44 <title>
44 <guimenu>View</guimenu>45 <guimenu>View</guimenu>
45 </title>46 </title>
47
46 <variablelist>48 <variablelist>
49 <varlistentry id="hdbk-reference-menus-view-fullscreenmode">
50 <term>
51 <menuchoice>
52 <shortcut>
53 <keycombo action="simul">
54 <keycap>F5</keycap>
55 </keycombo>
56 </shortcut>
57 <guimenu>
58 <inlinemediaobject>
59 <imageobject>
60 <imagedata fileref="i_window_fullscreen.png" format="PNG" />
61 </imageobject>
62 </inlinemediaobject>View</guimenu>
63 <guimenuitem>Fullscreen mode</guimenuitem>
64 </menuchoice>
65 </term>
66 <listitem>
67 <para>
68 <action>Toggles full screen display.</action> Toggle this setting to
69maximize the &bibletime; window.</para>
70 </listitem>
71 </varlistentry>
72
47 <varlistentry id="hdbk-reference-menus-view-showtoolbar">73 <varlistentry id="hdbk-reference-menus-view-showtoolbar">
48 <term>74 <term>
49 <menuchoice>75 <menuchoice>
76 <shortcut>
77 <keycombo action="simul">
78 <keycap>F6</keycap>
79 </keycombo>
80 </shortcut>
50 <guimenu>View</guimenu>81 <guimenu>View</guimenu>
51 <guimenuitem>Show Toolbar</guimenuitem>82 <guimenuitem>Show toolbar</guimenuitem>
52 </menuchoice>83 </menuchoice>
53 </term>84 </term>
54 <listitem>85 <listitem>
@@ -57,20 +88,11 @@
57main toolbar on or off.</para>88main toolbar on or off.</para>
58 </listitem>89 </listitem>
59 </varlistentry>90 </varlistentry>
91
60 <varlistentry id="hdbk-reference-menus-view-showbookshelf">92 <varlistentry id="hdbk-reference-menus-view-showbookshelf">
61 <term>93 <term>
62 <menuchoice>94 <menuchoice>
63 <shortcut>95 <guimenu>View</guimenu>
64 <keycombo action="simul">
65 <keycap>F9</keycap>
66 </keycombo>
67 </shortcut>
68 <guimenu>
69 <inlinemediaobject>
70 <imageobject>
71 <imagedata fileref="i_sidetree.png" format="PNG" />
72 </imageobject>
73 </inlinemediaobject>View</guimenu>
74 <guimenuitem>Show Bookshelf</guimenuitem>96 <guimenuitem>Show Bookshelf</guimenuitem>
75 </menuchoice>97 </menuchoice>
76 </term>98 </term>
@@ -81,20 +103,11 @@
81more space for the Mag.</para>103more space for the Mag.</para>
82 </listitem>104 </listitem>
83 </varlistentry>105 </varlistentry>
106
84 <varlistentry id="hdbk-reference-menus-view-showmag">107 <varlistentry id="hdbk-reference-menus-view-showmag">
85 <term>108 <term>
86 <menuchoice>109 <menuchoice>
87 <shortcut>110 <guimenu>View</guimenu>
88 <keycombo action="simul">
89 <keycap>F8</keycap>
90 </keycombo>
91 </shortcut>
92 <guimenu>
93 <inlinemediaobject>
94 <imageobject>
95 <imagedata fileref="i_sidetree.png" format="PNG" />
96 </imageobject>
97 </inlinemediaobject>View</guimenu>
98 <guimenuitem>Show Mag</guimenuitem>111 <guimenuitem>Show Mag</guimenuitem>
99 </menuchoice>112 </menuchoice>
100 </term>113 </term>
@@ -289,30 +302,6 @@
289 <guimenu>Settings</guimenu>302 <guimenu>Settings</guimenu>
290 </title>303 </title>
291 <variablelist>304 <variablelist>
292 <varlistentry id="hdbk-reference-menus-settings-toolbars">
293 <term>
294 <menuchoice>
295 <guimenu>
296 <inlinemediaobject>
297 <imageobject>
298 <imagedata fileref="i_configuretoolbars.png"
299 format="PNG" />
300 </imageobject>
301 </inlinemediaobject>Settings</guimenu>
302 <guimenuitem>Configure toolbars</guimenuitem>
303 </menuchoice>
304 </term>
305 <listitem>
306 <para>
307 <action>Opens a dialog where you can customize &bibletime;'s
308toolbar</action>. Just try it out, you can move around the toolbar buttons
309and even add new ones. Most of the entries available from the main menu can
310be put on the toolbar as buttons. If you need a certain feature often, you
311might want to put a button on the main menu, so that you can access it with
312only one click. Please see <link linkend="hdbk-config-toolbar">this
313section</link> for further information.</para>
314 </listitem>
315 </varlistentry>
316 <varlistentry id="hdbk-reference-menus-settings-bibletime">305 <varlistentry id="hdbk-reference-menus-settings-bibletime">
317 <term>306 <term>
318 <menuchoice>307 <menuchoice>
@@ -361,46 +350,90 @@
361 </varlistentry>350 </varlistentry>
362 </variablelist>351 </variablelist>
363 </sect2>352 </sect2>
353
364 <sect2 id="hdbk-reference-menus-help">354 <sect2 id="hdbk-reference-menus-help">
365 <title>355 <title>
366 <guimenu>Help</guimenu>356 <guimenu>Help</guimenu>
367 </title>TODO: ADD</sect2>357 </title>
368 </sect1>358 <variablelist>
369 <sect1 id="hdbk-reference-toolbar">359 <varlistentry id="hdbk-reference-menus-help-bibletime">
370 <title>Toolbar reference</title>360 <term>
371 <para>Please review <link linkend="hdbk-reference-menus">the preceding 361 <menuchoice>
372section</link> for an explanation of the buttons that you find on the 362 <shortcut>
373toolbar. You can also <action>move the cursor over a button and wait a few 363 <keycombo action="simul">
374seconds</action> to activate the button's tooltip with a short description.</para>364 <keycap>F1</keycap>
375 <para>Sie können die Werkzeugleiste ihren Bedürfnissen anpassen. Bitte benutzen 365 </keycombo>
376Sie den folgenden Eintrag aus dem Hauptmenü: 366 </shortcut>
377 <variablelist>367 <guimenu>
378 <varlistentry>368 <inlinemediaobject>
379 <term>369 <imageobject>
380 <menuchoice>370 <imagedata fileref="i_contents2.png" format="PNG" />
381 <guimenu>371 </imageobject>
382 <inlinemediaobject>372 </inlinemediaobject>Help</guimenu>
383 <imageobject>373 <guimenuitem>Handbook</guimenuitem>
384 <imagedata fileref="i_configuretoolbars.png"374 </menuchoice>
385 format="PNG" />375 </term>
386 </imageobject>376 <listitem>
387 </inlinemediaobject>Settings</guimenu>377 <para>
388 <guimenuitem>Configure toolbars</guimenuitem>378 <action>Opens &bibletime;'s user guide</action> You are reading it now.</para>
389 </menuchoice>379 </listitem>
390 </term>380 </varlistentry>
391 <listitem>381
392 <para>Werkzeugleisten einrichten</para>382 <varlistentry id="hdbk-reference-menus-help-bible_study_howto">
393 </listitem>383 <term>
394 </varlistentry>384 <menuchoice>
395 </variablelist>Please see <link linkend="hdbk-reference-menus-settings-toolbars">this 385 <shortcut>
396section</link> for detailed instructions.</para>386 <keycombo action="simul">
397 </sect1>387 <keycap>F2</keycap>
388 </keycombo>
389 </shortcut>
390 <guimenu>
391 <inlinemediaobject>
392 <imageobject>
393 <imagedata fileref="i_contents2.png"
394 format="PNG" />
395 </imageobject>
396 </inlinemediaobject>Help</guimenu>
397 <guimenuitem>Bible Study Howto</guimenuitem>
398 </menuchoice>
399 </term>
400 <listitem>
401 <para>
402 <action>Opens a guide on how to study the Bible</action> It is the hope of
403the &bibletime; team that this HowTo will provoke the readers to study the
404scriptures to see what they say. This particular study guide has been chosen
405as it takes care not to advocate any particular denominational doctrine. We
406expect you to read and study the scriptures to understand what they say. If
407you start with the attitude that you want to have the Lord sow his word in
408your heart He will not disappoint you.</para>
409 </listitem>
410 </varlistentry>
411
412 <varlistentry id="hdbk-reference-menus-help-about">
413 <term>
414 <menuchoice>
415 <guimenu>Help</guimenu>
416 <guimenuitem>About</guimenuitem>
417 </menuchoice>
418 </term>
419 <listitem>
420 <para>
421 <action>Opens a window about &bibletime; project information</action>
422contains information about &bibletime; software version, project
423contributors, &sword; software version, &qt; software version and the
424license agreement.</para>
425 </listitem>
426 </varlistentry>
427 </variablelist>
428 </sect2>
429 </sect1>
430
398 <sect1 id="hdbk-reference-hotkeys">431 <sect1 id="hdbk-reference-hotkeys">
399 <title>HotKeys index</title>432 <title>HotKeys index</title>
400 <para>This is index of all hotkeys and their corresponding description in the 433 <para>This is index of all hotkeys and their corresponding description in the
401handbook. The hotkeys are sorted (roughly) alphabetical. If you want to 434handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
402directly find out which hotkey a certain menu item has, you can either look 435directly find out which hotkey a certain menu item has, you can either look
403at the entry itelf in &bibletime; (as it always shows the hotkey), or you 436at the entry itself in &bibletime; (as it always shows the hotkey), or you
404can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>437can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>
405 <informaltable>438 <informaltable>
406 <tgroup cols="2">439 <tgroup cols="2">
407440
=== modified file 'docs/handbook/de/docbook/hdbk-start.docbook'
--- docs/handbook/de/docbook/hdbk-start.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/docbook/hdbk-start.docbook 2009-04-24 02:10:38 +0000
@@ -16,12 +16,12 @@
16 </mediaobject></para>16 </mediaobject></para>
17 <para>&bibletime; can also be launched from a terminal command prompt. To launch 17 <para>&bibletime; can also be launched from a terminal command prompt. To launch
18&bibletime;, open a terminal window and type: 18&bibletime;, open a terminal window and type:
19 <screen>bibletime</screen></para>19 <screen>&bibletime;</screen></para>
20 </sect2>20 </sect2>
21 <sect2 id="hdbk-start-otherwm">21 <sect2 id="hdbk-start-otherwm">
22 <title>Other window managers</title>22 <title>Other window managers</title>
23 <para>&bibletime; can be used with other window managers such as Gnome, BlackBox, 23 <para>&bibletime; can be used with other window managers such as Gnome, BlackBox,
24Fluxbox, OpenBox or Sawfish, providing the appropriate base libarires are 24Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
25already installed on your computer.</para>25already installed on your computer.</para>
26 </sect2>26 </sect2>
27 <sect2 id="hdbk-start-custom">27 <sect2 id="hdbk-start-custom">
2828
=== modified file 'docs/handbook/de/docbook/index.docbook'
--- docs/handbook/de/docbook/index.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/docbook/index.docbook 2009-04-29 17:39:29 +0000
@@ -5,6 +5,7 @@
5 <!ENTITY bibletime '<application>BibleTime</application>'>5 <!ENTITY bibletime '<application>BibleTime</application>'>
6 <!ENTITY sword '<application>Sword</application>'>6 <!ENTITY sword '<application>Sword</application>'>
7 <!ENTITY kde '<application>KDE</application>'>7 <!ENTITY kde '<application>KDE</application>'>
8 <!ENTITY qt '<application>Qt</application>'>
89
9 <!ENTITY Shift 'Shift'>10 <!ENTITY Shift 'Shift'>
10 <!ENTITY Ctrl 'Ctrl'>11 <!ENTITY Ctrl 'Ctrl'>
@@ -46,10 +47,10 @@
46 <legalnotice>47 <legalnotice>
47 <para>Der &bibletime;-Hilfedialog ist ein Teil von &bibletime;.</para>48 <para>Der &bibletime;-Hilfedialog ist ein Teil von &bibletime;.</para>
48 </legalnotice>49 </legalnotice>
49 <date>2005-08</date>50 <date>2009-04</date>
50 <releaseinfo>2.0</releaseinfo>51 <releaseinfo>2.0</releaseinfo>
51 <abstract>52 <abstract>
52 <para>&bibletime; is a Bible study tool based on the Sword framwork.</para>53 <para>&bibletime; is a Bible study tool based on the Sword framework.</para>
53 </abstract>54 </abstract>
54 <keywordset>55 <keywordset>
55 <keyword>QT4</keyword>56 <keyword>QT4</keyword>
5657
=== modified file 'docs/handbook/de/html/hdbk-config.html'
--- docs/handbook/de/html/hdbk-config.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/html/hdbk-config.html 2009-04-24 02:10:38 +0000
@@ -21,7 +21,7 @@
21 </h3></div></div></div><p>Hier können Sie angeben, welche Sprache für die Buchnamen der Bibel 21 </h3></div></div></div><p>Hier können Sie angeben, welche Sprache für die Buchnamen der Bibel
22verwendet werden soll. Stellen Sie (falls verfügbar) ihre Muttersprache ein, 22verwendet werden soll. Stellen Sie (falls verfügbar) ihre Muttersprache ein,
23und 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 23und 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
24override this font if neccessary. Some languages require special fonts to be 24override this font if necessary. Some languages require special fonts to be
25displayed correctly, and this dialog allows you to specify a custom font for 25displayed correctly, and this dialog allows you to specify a custom font for
26each 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 26each 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
27interested in display correctly nothing needs to be done here. If a work 27interested in display correctly nothing needs to be done here. If a work
@@ -47,10 +47,10 @@
47Zeichenbereich ab.</td></tr><tr><td>47Zeichenbereich ab.</td></tr><tr><td>
48 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">48 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">
49 SIL unicode fonts</a>49 SIL unicode fonts</a>
50 </td><td>Exzellente Schriftarten des Summer Institute of Linguistics.</td></tr><tr><td>50 </td><td>Excellent Unicode fonts from the Summer Institute of Linguistics.</td></tr><tr><td>
51 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">51 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">
52 FreeFont</a>52 FreeFont</a>
53 </td><td>Eine neue Initiative für eine freie Unicode-Schriftart.</td></tr><tr><td>53 </td><td>A new free Unicode font initiative.</td></tr><tr><td>
54 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">54 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">
55 Crosswire's font directory</a>55 Crosswire's font directory</a>
56 </td><td>Verschiedene Schriften sind auf der FTP-Seite von Crosswire verfügbar.</td></tr><tr><td>56 </td><td>Verschiedene Schriften sind auf der FTP-Seite von Crosswire verfügbar.</td></tr><tr><td>
@@ -70,7 +70,7 @@
70<span class="application">BibleTime</span>. These features are documented right in the dialog. You also 70<span class="application">BibleTime</span>. These features are documented right in the dialog. You also
71have the possibility to specify standard works that should be used when no 71have the possibility to specify standard works that should be used when no
72specific work is specified in a reference. An example: The standard Bible is 72specific work is specified in a reference. An example: The standard Bible is
73used to display the content of crossreferences in the Bible. When you hover 73used to display the content of cross references in the Bible. When you hover
74over then, the Mag will show the content of the verses referred to, 74over then, the Mag will show the content of the verses referred to,
75according 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>75according 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>
76 <span class="guimenu">HotKeys</span>76 <span class="guimenu">HotKeys</span>
7777
=== modified file 'docs/handbook/de/html/hdbk-intro.html'
--- docs/handbook/de/html/hdbk-intro.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/html/hdbk-intro.html 2009-04-29 17:39:29 +0000
@@ -1,5 +1,5 @@
1<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 1<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
2and languages. Even large amounts of works modules) are easy to install and 2and languages. Even large amounts of works modules are easy to install and
3manage. It is built on the <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library, which provides 3manage. It is built on the <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library, which provides
4the back-end functionality for <span class="application">BibleTime</span>, such as viewing Bible text, 4the back-end functionality for <span class="application">BibleTime</span>, such as viewing Bible text,
5searching 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 5searching 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
@@ -13,12 +13,14 @@
13Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is 13Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is
14the 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: 14the 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:
15The Complete Works"</p></dd><dt><span class="term">Kommentare</span></dt><dd><p>Commentaries available include classics like John Wesley's "Notes on the 15The Complete Works"</p></dd><dt><span class="term">Kommentare</span></dt><dd><p>Commentaries available include classics like John Wesley's "Notes on the
16Bible", Matthew Henry`s commentary and Luther's "Commentary on Galatians." 16Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
17With 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 17With 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
18sections 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 18sections 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
19Wort. 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, 19Wort. 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,
20Strong's Greek Bible Dictionary, Webster's Revised Unabridged Dictionary of 20Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
21the 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 21Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
22Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
23Dictionary 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
22relationship with Him. We have striven to make this a powerful, quality 24relationship with Him. We have striven to make this a powerful, quality
23program, and still make it simple and intuitive to operate. It is our desire 25program, and still make it simple and intuitive to operate. It is our desire
24that 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, 26that 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,
2527
=== modified file 'docs/handbook/de/html/hdbk-op-bookshelfmanager.html'
--- docs/handbook/de/html/hdbk-op-bookshelfmanager.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/html/hdbk-op-bookshelfmanager.html 2009-04-29 17:39:29 +0000
@@ -1,11 +1,11 @@
1<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 1<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
2Bookshelf. You can install new works to your Bookshelf, and update or remove 2Bookshelf. You can install new works to your Bookshelf, and update or remove
3existing 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 3existing 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
4harddrive. You can even store it in multiple directories. Default is 4drive. You can even store it in multiple directories. Default is
5"~/.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 5"~/.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
6harddisk, but use them directly from the CD, then you can add the path to 6disk, but use them directly from the CD, then you can add the path to the CD
7the CD as one of your bookshelf paths. When you start <span class="application">BibleTime</span>, it will 7as one of your bookshelf paths. When you start <span class="application">BibleTime</span>, it will show all
8show 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 8works 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
9"library"), and transfer one or more works to your local Bookshelf. These 9"library"), and transfer one or more works to your local Bookshelf. These
10libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online 10libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online
11repository of Sword modules, or another site offering Sword modules). You 11repository of Sword modules, or another site offering Sword modules). You
1212
=== modified file 'docs/handbook/de/html/hdbk-op-parts.html'
--- docs/handbook/de/html/hdbk-op-parts.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/html/hdbk-op-parts.html 2009-04-29 17:39:29 +0000
@@ -41,7 +41,7 @@
41zusätzliche Informationen (z.B. Strongnummern) enthält, dann werden eben 41zusätzliche Informationen (z.B. Strongnummern) enthält, dann werden eben
42diese in der Lupe dargestellt, nicht jedoch der Text selbst. Probieren sie 42diese in der Lupe dargestellt, nicht jedoch der Text selbst. Probieren sie
43es 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 43es 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
44open 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 44open 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
45annotations 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>, 45annotations 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>,
46you can open works for reading simply by clicking on their symbol in the 46you can open works for reading simply by clicking on their symbol in the
47Bookshelf. A read window will open in the Desk's area. Every read window has 47Bookshelf. A read window will open in the Desk's area. Every read window has
@@ -63,7 +63,7 @@
63<span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit 63<span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit
64this work</span>and then either <span class="guimenuitem">Plain 64this work</span>and then either <span class="guimenuitem">Plain
65text</span>(source code editor) or 65text</span>(source code editor) or
66<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 66<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
67deactivated, please check if you have write permission for the files of the 67deactivated, please check if you have write permission for the files of the
68personal 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 68personal 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
69will 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>69will 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>
7070
=== modified file 'docs/handbook/de/html/hdbk-op-search.html'
--- docs/handbook/de/html/hdbk-op-search.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/html/hdbk-op-search.html 2009-04-29 17:39:29 +0000
@@ -24,7 +24,7 @@
24search terms, e.g. '(Jesus OR spirit) AND God'.</p><p>To search text other than the main text, enter the text type followed by 24search terms, e.g. '(Jesus OR spirit) AND God'.</p><p>To search text other than the main text, enter the text type followed by
25':', and then the search term. For example, to search for the Strong's 25':', and then the search term. For example, to search for the Strong's
26number H8077, use 'strong:H8077'.</p><p>Available text types: 26number H8077, use 'strong:H8077'.</p><p>Available text types:
27 </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 27 </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
28many advanced features, and you can read more about it here: <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top"> 28many advanced features, and you can read more about it here: <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top">
29http://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 29http://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
30by works. Clicking on a work with the <span class="mousebutton">right</span>mouse 30by works. Clicking on a work with the <span class="mousebutton">right</span>mouse
3131
=== modified file 'docs/handbook/de/html/hdbk-reference-hotkeys.html'
--- docs/handbook/de/html/hdbk-reference-hotkeys.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/html/hdbk-reference-hotkeys.html 2009-04-29 17:39:29 +0000
@@ -1,7 +1,7 @@
1<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 1<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
2handbook. The hotkeys are sorted (roughly) alphabetical. If you want to 2handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
3directly find out which hotkey a certain menu item has, you can either look 3directly find out which hotkey a certain menu item has, you can either look
4at the entry itelf in <span class="application">BibleTime</span> (as it always shows the hotkey), or you 4at the entry itself in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
5can 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>5can 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>
6 <span class="keycap"><strong>Left</strong></span>6 <span class="keycap"><strong>Left</strong></span>
7 </td><td>Moves back in the history of read windows.</td></tr><tr><td>7 </td><td>Moves back in the history of read windows.</td></tr><tr><td>
@@ -73,4 +73,4 @@
73 <span class="keycap"><strong>F9</strong></span>73 <span class="keycap"><strong>F9</strong></span>
74 </td><td>74 </td><td>
75 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag"> <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show mag</span> 75 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag"> <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show mag</span>
76</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>76</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>
7777
=== modified file 'docs/handbook/de/html/hdbk-reference-toolbar.html'
--- docs/handbook/de/html/hdbk-reference-toolbar.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/html/hdbk-reference-toolbar.html 2009-04-29 17:39:29 +0000
@@ -6,5 +6,5 @@
6 </p><div class="variablelist"><dl><dt><span class="term">6 </p><div class="variablelist"><dl><dt><span class="term">
7 <span class="guimenu">7 <span class="guimenu">
8 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>8 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
9 </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 9 </span></dt><dd><p>Werkzeugleisten einrichten</p></dd></dl></div><p>Please see <a class="link" href="">this
10section</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>10section</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>
1111
=== modified file 'docs/handbook/de/html/hdbk-reference.html'
--- docs/handbook/de/html/hdbk-reference.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/html/hdbk-reference.html 2009-04-29 17:39:29 +0000
@@ -1,4 +1,4 @@
1<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">1<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">
2 File2 File
3 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">3 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">
4 View4 View
@@ -10,7 +10,7 @@
10 Settings10 Settings
11 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">11 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
12 Help12 Help
13 </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 13 </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
14main menu of <span class="application">BibleTime</span>. They are ordered in just the way they appear in 14main menu of <span class="application">BibleTime</span>. They are ordered in just the way they appear in
15<span class="application">BibleTime</span>, with all the sub-items listed under the major menu item they 15<span class="application">BibleTime</span>, with all the sub-items listed under the major menu item they
16belong to. You can also see the hotkey of each item;a complete listing of 16belong to. You can also see the hotkey of each item;a complete listing of
@@ -26,19 +26,22 @@
26ungesicherte Änderungen abspeichern möchten.</p></dd></dl></div><p>26ungesicherte Änderungen abspeichern möchten.</p></dd></dl></div><p>
27 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>27 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>
28 <span class="guimenu">View</span>28 <span class="guimenu">View</span>
29 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">29 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-fullscreenmode"></a><span class="term">
30 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Toolbar</span>30 <span class="guimenu">
31 <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>)
32 </span></dt><dd><p>
33 <span class="action">Toggles full screen display.</span> Toggle this setting to
34maximize the <span class="application">BibleTime</span> window.</p></dd><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
35 <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>)
31 </span></dt><dd><p>36 </span></dt><dd><p>
32 <span class="action">Toggles Toolbar display.</span> Toggle this setting to turn the 37 <span class="action">Toggles Toolbar display.</span> Toggle this setting to turn the
33main toolbar on or off.</p></dd><dt><a name="hdbk-reference-menus-view-showbookshelf"></a><span class="term">38main toolbar on or off.</p></dd><dt><a name="hdbk-reference-menus-view-showbookshelf"></a><span class="term">
34 <span class="guimenu">39 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span>
35 <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>)
36 </span></dt><dd><p>40 </span></dt><dd><p>
37 <span class="action">Toggles display of the Bookshelf.</span> Toggle this setting to 41 <span class="action">Toggles display of the Bookshelf.</span> Toggle this setting to
38turn the Bookshelf on the left pane on or off. This can be handy if you need 42turn the Bookshelf on the left pane on or off. This can be handy if you need
39more space for the Mag.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">43more space for the Mag.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">
40 <span class="guimenu">44 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Mag</span>
41 <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>)
42 </span></dt><dd><p>45 </span></dt><dd><p>
43 <span class="action">Toggles display of the Mag(nifying glass).</span> Toggle this 46 <span class="action">Toggles display of the Mag(nifying glass).</span> Toggle this
44setting 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>47setting 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>
@@ -90,17 +93,7 @@
90 </span></dt><dd><p>93 </span></dt><dd><p>
91 <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>94 <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>
92 <span class="guimenu">Settings</span>95 <span class="guimenu">Settings</span>
93 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-toolbars"></a><span class="term">96 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
94 <span class="guimenu">
95 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
96 </span></dt><dd><p>
97 <span class="action">Opens a dialog where you can customize <span class="application">BibleTime</span>'s
98toolbar</span>. Just try it out, you can move around the toolbar buttons
99and even add new ones. Most of the entries available from the main menu can
100be put on the toolbar as buttons. If you need a certain feature often, you
101might want to put a button on the main menu, so that you can access it with
102only one click. Please see <a class="link" href="">this
103section</a> for further information.</p></dd><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
104 <span class="guimenu">97 <span class="guimenu">
105 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>98 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>
106 </span></dt><dd><p>99 </span></dt><dd><p>
@@ -114,4 +107,24 @@
114 <span class="action">Opens a dialog where you can change your Sword configuration and 107 <span class="action">Opens a dialog where you can change your Sword configuration and
115manage 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>108manage 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>
116 <span class="guimenu">Help</span>109 <span class="guimenu">Help</span>
117 </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>110 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-help-bibletime"></a><span class="term">
111 <span class="guimenu">
112 <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>)
113 </span></dt><dd><p>
114 <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">
115 <span class="guimenu">
116 <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>)
117 </span></dt><dd><p>
118 <span class="action">Opens a guide on how to study the Bible</span> It is the hope of
119the <span class="application">BibleTime</span> team that this HowTo will provoke the readers to study the
120scriptures to see what they say. This particular study guide has been chosen
121as it takes care not to advocate any particular denominational doctrine. We
122expect you to read and study the scriptures to understand what they say. If
123you start with the attitude that you want to have the Lord sow his word in
124your heart He will not disappoint you.</p></dd><dt><a name="hdbk-reference-menus-help-about"></a><span class="term">
125 <span class="guimenu">Help</span> &#8594; <span class="guimenuitem">About</span>
126 </span></dt><dd><p>
127 <span class="action">Opens a window about <span class="application">BibleTime</span> project information</span>
128contains information about <span class="application">BibleTime</span> software version, project
129contributors, <span class="application">Sword</span> software version, <span class="application">Qt</span> software version and the
130license 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>
118131
=== modified file 'docs/handbook/de/html/hdbk-term.html'
--- docs/handbook/de/html/hdbk-term.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/html/hdbk-term.html 2009-04-24 02:10:38 +0000
@@ -2,8 +2,8 @@
2can launch <span class="application">BibleTime</span> from the Start Menu with this icon: 2can launch <span class="application">BibleTime</span> from the Start Menu with this icon:
3 </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 3 </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
4<span class="application">BibleTime</span>, open a terminal window and type: 4<span class="application">BibleTime</span>, open a terminal window and type:
5 </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, 5 </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,
6Fluxbox, OpenBox or Sawfish, providing the appropriate base libarires are 6Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
7already 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 7already 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
8default bible: 8default bible:
9 </p><pre class="screen">bibletime --open-default-bible9 </p><pre class="screen">bibletime --open-default-bible
1010
=== modified file 'docs/handbook/de/html/index.html'
--- docs/handbook/de/html/index.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/de/html/index.html 2009-04-29 17:39:29 +0000
@@ -1,4 +1,4 @@
1<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">1<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">
2 Display2 Display
3 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">3 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">
4 Languages4 Languages
@@ -18,4 +18,4 @@
18 Settings18 Settings
19 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">19 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
20 Help20 Help
21 </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>21 </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>
2222
=== modified file 'docs/handbook/en/docbook/hdbk-config.docbook'
--- docs/handbook/en/docbook/hdbk-config.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/docbook/hdbk-config.docbook 2009-04-24 02:10:38 +0000
@@ -37,7 +37,7 @@
3737
38 <para>By default, &bibletime; uses the default system38 <para>By default, &bibletime; uses the default system
39 display font. You39 display font. You
40 can override this font if neccessary. Some languages require40 can override this font if necessary. Some languages require
41 special fonts to be displayed correctly, and this dialog allows41 special fonts to be displayed correctly, and this dialog allows
42 you to specify a custom font for each language.</para>42 you to specify a custom font for each language.</para>
43 <mediaobject>43 <mediaobject>
@@ -124,7 +124,7 @@
124 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">124 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">
125 SIL unicode fonts</ulink>125 SIL unicode fonts</ulink>
126 </entry>126 </entry>
127 <entry>Excellent unicode fonts from the Summer127 <entry>Excellent Unicode fonts from the Summer
128 Institute of Linguistics.</entry>128 Institute of Linguistics.</entry>
129 </row>129 </row>
130 <row>130 <row>
@@ -132,7 +132,7 @@
132 <ulink url="http://www.nongnu.org/freefont/">132 <ulink url="http://www.nongnu.org/freefont/">
133 FreeFont</ulink>133 FreeFont</ulink>
134 </entry>134 </entry>
135 <entry>A new free unicode font initiative.</entry>135 <entry>A new free Unicode font initiative.</entry>
136 </row>136 </row>
137 <row>137 <row>
138 <entry>138 <entry>
@@ -186,7 +186,7 @@
186 right in the dialog. You also have the possibility to specify186 right in the dialog. You also have the possibility to specify
187 standard works that should be used when no specific work is187 standard works that should be used when no specific work is
188 specified in a reference. An example: The standard Bible is used188 specified in a reference. An example: The standard Bible is used
189 to display the content of crossreferences in the Bible. When you189 to display the content of cross references in the Bible. When you
190 hover over then, the Mag will show the content of the verses190 hover over then, the Mag will show the content of the verses
191 referred to, according to the standard Bible you191 referred to, according to the standard Bible you
192 specified.</para>192 specified.</para>
193193
=== modified file 'docs/handbook/en/docbook/hdbk-intro.docbook'
--- docs/handbook/en/docbook/hdbk-intro.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/docbook/hdbk-intro.docbook 2009-04-29 17:39:29 +0000
@@ -4,7 +4,7 @@
4 <title>About &bibletime;</title>4 <title>About &bibletime;</title>
5 <para>&bibletime; is a Bible study tool with support for5 <para>&bibletime; is a Bible study tool with support for
6 different types of texts and languages. Even large amounts of works6 different types of texts and languages. Even large amounts of works
7 modules) are easy to install and manage. It is built on the7 modules are easy to install and manage. It is built on the
8 <ulink url="http://www.crosswire.org/sword">Sword</ulink> library,8 <ulink url="http://www.crosswire.org/sword">Sword</ulink> library,
9 which provides the back-end functionality for &bibletime;, such9 which provides the back-end functionality for &bibletime;, such
10 as viewing Bible text, searching etc. Sword is the flagship product10 as viewing Bible text, searching etc. Sword is the flagship product
@@ -47,7 +47,7 @@
47 <term>Commentaries</term>47 <term>Commentaries</term>
48 <listitem>48 <listitem>
49 <para>Commentaries available include classics like John49 <para>Commentaries available include classics like John
50 Wesley's "Notes on the Bible", Matthew Henry`s commentary50 Wesley's "Notes on the Bible", Matthew Henry's commentary
51 and Luther's "Commentary on Galatians." With the 51 and Luther's "Commentary on Galatians." With the
52 <emphasis>Personal</emphasis> commentary you can 52 <emphasis>Personal</emphasis> commentary you can
53 <link linkend="hdbk-op-parts-desk-write"> record your own53 <link linkend="hdbk-op-parts-desk-write"> record your own
@@ -67,7 +67,7 @@
67 <listitem>67 <listitem>
68 <para>Lexicons available include: Robinson's Morphological68 <para>Lexicons available include: Robinson's Morphological
69 Analysis Codes, Brown-Driver-Briggs Hebrew Lexicon and the69 Analysis Codes, Brown-Driver-Briggs Hebrew Lexicon and the
70 International Standard Bible Encyclopedia. Dictionaries70 International Standard Bible Encyclopaedia. Dictionaries
71 available include Strong's Hebrew Bible Dictionary,71 available include Strong's Hebrew Bible Dictionary,
72 Strong's Greek Bible Dictionary, Webster's Revised72 Strong's Greek Bible Dictionary, Webster's Revised
73 Unabridged Dictionary of the English Language 1913, Nave's73 Unabridged Dictionary of the English Language 1913, Nave's
7474
=== modified file 'docs/handbook/en/docbook/hdbk-operation.docbook'
--- docs/handbook/en/docbook/hdbk-operation.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/docbook/hdbk-operation.docbook 2009-04-29 17:39:29 +0000
@@ -133,7 +133,7 @@
133 <title>The Desk</title>133 <title>The Desk</title>
134 <para>The Desk is where the real work with &bibletime; takes134 <para>The Desk is where the real work with &bibletime; takes
135 place. Here you can open works from the Bookshelf, read them, 135 place. Here you can open works from the Bookshelf, read them,
136 <link linkend="hdbk-op-search">search</link>in them, and even136 <link linkend="hdbk-op-search">search</link> in them, and even
137 save your annotations in the personal commentary module (see 137 save your annotations in the personal commentary module (see
138 <link linkend="hdbk-op-parts-desk-write">below</link>).</para>138 <link linkend="hdbk-op-parts-desk-write">below</link>).</para>
139139
@@ -189,7 +189,7 @@
189 <para>If 189 <para>If
190 <menuchoice>190 <menuchoice>
191 <guimenu>Edit this work</guimenu>191 <guimenu>Edit this work</guimenu>
192 </menuchoice>is deactivated, please check if you have write192 </menuchoice> is deactivated, please check if you have write
193 permission for the files of the personal commentary.</para>193 permission for the files of the personal commentary.</para>
194 </tip>194 </tip>
195195
@@ -281,6 +281,7 @@
281 'strong:H8077'.</para>281 'strong:H8077'.</para>
282 <para>Available text types: 282 <para>Available text types:
283 <table id="hd-op-search-config-syntax-table">283 <table id="hd-op-search-config-syntax-table">
284 <title>Search Types</title>
284 <tgroup cols="2">285 <tgroup cols="2">
285 <thead>286 <thead>
286 <row>287 <row>
@@ -367,15 +368,15 @@
367 <menuchoice>368 <menuchoice>
368 <guimenu>Settings</guimenu>369 <guimenu>Settings</guimenu>
369 <guimenuitem>Bookshelf Manager</guimenuitem>370 <guimenuitem>Bookshelf Manager</guimenuitem>
370 </menuchoice>in the main menu.</para>371 </menuchoice> in the main menu.</para>
371 <sect2 id="hdbk-op-bookshelfmanager-path">372 <sect2 id="hdbk-op-bookshelfmanager-path">
372 <title>Bookshelf path(s) setup</title>373 <title>Bookshelf path(s) setup</title>
373 <para>Here you can specify where &bibletime; may store your374 <para>Here you can specify where &bibletime; may store your
374 Bookshelf on the harddrive. You can even store it in multiple375 Bookshelf on the hard drive. You can even store it in multiple
375 directories. Default is "~/.sword/".</para>376 directories. Default is "~/.sword/".</para>
376 <tip>377 <tip>
377 <para>If you have a sword CD, but do not want to install all378 <para>If you have a sword CD, but do not want to install all
378 the works on the harddisk, but use them directly from the CD,379 the works on the hard disk, but use them directly from the CD,
379 then you can add the path to the CD as one of your bookshelf380 then you can add the path to the CD as one of your bookshelf
380 paths. When you start &bibletime;, it will show all works381 paths. When you start &bibletime;, it will show all works
381 on the CD if it is present.</para>382 on the CD if it is present.</para>
382383
=== modified file 'docs/handbook/en/docbook/hdbk-reference.docbook'
--- docs/handbook/en/docbook/hdbk-reference.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/docbook/hdbk-reference.docbook 2009-04-29 17:39:29 +0000
@@ -40,16 +40,47 @@
40 </variablelist>40 </variablelist>
41 </para>41 </para>
42 </sect2>42 </sect2>
43
43 <sect2 id="hdbk-reference-menus-view">44 <sect2 id="hdbk-reference-menus-view">
44 <title>45 <title>
45 <guimenu>View</guimenu>46 <guimenu>View</guimenu>
46 </title>47 </title>
48
47 <variablelist>49 <variablelist>
50 <varlistentry id="hdbk-reference-menus-view-fullscreenmode">
51 <term>
52 <menuchoice>
53 <shortcut>
54 <keycombo action="simul">
55 <keycap>F5</keycap>
56 </keycombo>
57 </shortcut>
58 <guimenu>
59 <inlinemediaobject>
60 <imageobject>
61 <imagedata fileref="i_window_fullscreen.png" format="PNG" />
62 </imageobject>
63 </inlinemediaobject>View</guimenu>
64 <guimenuitem>Fullscreen mode</guimenuitem>
65 </menuchoice>
66 </term>
67 <listitem>
68 <para>
69 <action>Toggles full screen display.</action> Toggle this
70 setting to maximize the &bibletime; window.</para>
71 </listitem>
72 </varlistentry>
73
48 <varlistentry id="hdbk-reference-menus-view-showtoolbar">74 <varlistentry id="hdbk-reference-menus-view-showtoolbar">
49 <term>75 <term>
50 <menuchoice>76 <menuchoice>
77 <shortcut>
78 <keycombo action="simul">
79 <keycap>F6</keycap>
80 </keycombo>
81 </shortcut>
51 <guimenu>View</guimenu>82 <guimenu>View</guimenu>
52 <guimenuitem>Show Toolbar</guimenuitem>83 <guimenuitem>Show toolbar</guimenuitem>
53 </menuchoice>84 </menuchoice>
54 </term>85 </term>
55 <listitem>86 <listitem>
@@ -58,20 +89,11 @@
58 setting to turn the main toolbar on or off.</para>89 setting to turn the main toolbar on or off.</para>
59 </listitem>90 </listitem>
60 </varlistentry>91 </varlistentry>
92
61 <varlistentry id="hdbk-reference-menus-view-showbookshelf">93 <varlistentry id="hdbk-reference-menus-view-showbookshelf">
62 <term>94 <term>
63 <menuchoice>95 <menuchoice>
64 <shortcut>96 <guimenu>View</guimenu>
65 <keycombo action="simul">
66 <keycap>F9</keycap>
67 </keycombo>
68 </shortcut>
69 <guimenu>
70 <inlinemediaobject>
71 <imageobject>
72 <imagedata fileref="i_sidetree.png" format="PNG" />
73 </imageobject>
74 </inlinemediaobject>View</guimenu>
75 <guimenuitem>Show Bookshelf</guimenuitem>97 <guimenuitem>Show Bookshelf</guimenuitem>
76 </menuchoice>98 </menuchoice>
77 </term>99 </term>
@@ -83,20 +105,11 @@
83 Mag.</para>105 Mag.</para>
84 </listitem>106 </listitem>
85 </varlistentry>107 </varlistentry>
108
86 <varlistentry id="hdbk-reference-menus-view-showmag">109 <varlistentry id="hdbk-reference-menus-view-showmag">
87 <term>110 <term>
88 <menuchoice>111 <menuchoice>
89 <shortcut>112 <guimenu>View</guimenu>
90 <keycombo action="simul">
91 <keycap>F8</keycap>
92 </keycombo>
93 </shortcut>
94 <guimenu>
95 <inlinemediaobject>
96 <imageobject>
97 <imagedata fileref="i_sidetree.png" format="PNG" />
98 </imageobject>
99 </inlinemediaobject>View</guimenu>
100 <guimenuitem>Show Mag</guimenuitem>113 <guimenuitem>Show Mag</guimenuitem>
101 </menuchoice>114 </menuchoice>
102 </term>115 </term>
@@ -300,32 +313,6 @@
300 <guimenu>Settings</guimenu>313 <guimenu>Settings</guimenu>
301 </title>314 </title>
302 <variablelist>315 <variablelist>
303 <varlistentry id="hdbk-reference-menus-settings-toolbars">
304 <term>
305 <menuchoice>
306 <guimenu>
307 <inlinemediaobject>
308 <imageobject>
309 <imagedata fileref="i_configuretoolbars.png"
310 format="PNG" />
311 </imageobject>
312 </inlinemediaobject>Settings</guimenu>
313 <guimenuitem>Configure toolbars</guimenuitem>
314 </menuchoice>
315 </term>
316 <listitem>
317 <para>
318 <action>Opens a dialog where you can customize
319 &bibletime;'s toolbar</action>. Just try it out, you
320 can move around the toolbar buttons and even add new ones.
321 Most of the entries available from the main menu can be put
322 on the toolbar as buttons. If you need a certain feature
323 often, you might want to put a button on the main menu, so
324 that you can access it with only one click. Please see
325 <link linkend="hdbk-config-toolbar">this section</link> for
326 further information.</para>
327 </listitem>
328 </varlistentry>
329 <varlistentry id="hdbk-reference-menus-settings-bibletime">316 <varlistentry id="hdbk-reference-menus-settings-bibletime">
330 <term>317 <term>
331 <menuchoice>318 <menuchoice>
@@ -371,57 +358,100 @@
371 <para>358 <para>
372 <action>Opens a dialog where you can change your Sword359 <action>Opens a dialog where you can change your Sword
373 configuration and manage your bookshelf</action>. Please360 configuration and manage your bookshelf</action>. Please
374 see 361 see <link linkend="hdbk-op-bookshelfmanager">this
375 <link linkend="hdbk-op-bookshelfmanager">this
376 section</link> for details.</para>362 section</link> for details.</para>
377 </listitem>363 </listitem>
378 </varlistentry>364 </varlistentry>
379 </variablelist>365 </variablelist>
380 </sect2>366 </sect2>
367
381 <sect2 id="hdbk-reference-menus-help">368 <sect2 id="hdbk-reference-menus-help">
382 <title>369 <title>
383 <guimenu>Help</guimenu>370 <guimenu>Help</guimenu>
384 </title>TODO: ADD</sect2>371 </title>
385 </sect1>372 <variablelist>
386 <sect1 id="hdbk-reference-toolbar">373 <varlistentry id="hdbk-reference-menus-help-bibletime">
387 <title>Toolbar reference</title>374 <term>
388 <para>Please review 375 <menuchoice>
389 <link linkend="hdbk-reference-menus">the preceding376 <shortcut>
390 section</link> for an explanation of the buttons that you find on377 <keycombo action="simul">
391 the toolbar. You can also 378 <keycap>F1</keycap>
392 <action>move the cursor over a button and wait a few379 </keycombo>
393 seconds</action> to activate the button's tooltip with a short380 </shortcut>
394 description.</para>381 <guimenu>
395 <para>You can adapt the toolbar to your needs. Please use the382 <inlinemediaobject>
396 following entry in the main menu: 383 <imageobject>
397 <variablelist>384 <imagedata fileref="i_contents2.png" format="PNG" />
398 <varlistentry>385 </imageobject>
399 <term>386 </inlinemediaobject>Help</guimenu>
400 <menuchoice>387 <guimenuitem>Handbook</guimenuitem>
401 <guimenu>388 </menuchoice>
402 <inlinemediaobject>389 </term>
403 <imageobject>390 <listitem>
404 <imagedata fileref="i_configuretoolbars.png"391 <para>
405 format="PNG" />392 <action>Opens &bibletime;'s user guide</action>
406 </imageobject>393 You are reading it now.</para>
407 </inlinemediaobject>Settings</guimenu>394 </listitem>
408 <guimenuitem>Configure toolbars</guimenuitem>395 </varlistentry>
409 </menuchoice>396
410 </term>397 <varlistentry id="hdbk-reference-menus-help-bible_study_howto">
411 <listitem>398 <term>
412 <para>Configure toolbars</para>399 <menuchoice>
413 </listitem>400 <shortcut>
414 </varlistentry>401 <keycombo action="simul">
415 </variablelist>Please see 402 <keycap>F2</keycap>
416 <link linkend="hdbk-reference-menus-settings-toolbars">this403 </keycombo>
417 section</link> for detailed instructions.</para>404 </shortcut>
418 </sect1>405 <guimenu>
406 <inlinemediaobject>
407 <imageobject>
408 <imagedata fileref="i_contents2.png"
409 format="PNG" />
410 </imageobject>
411 </inlinemediaobject>Help</guimenu>
412 <guimenuitem>Bible Study Howto</guimenuitem>
413 </menuchoice>
414 </term>
415 <listitem>
416 <para>
417 <action>Opens a guide on how to study the Bible</action>
418 It is the hope of the &bibletime; team that this HowTo will
419 provoke the readers to study the scriptures to see what
420 they say. This particular study guide has been chosen as
421 it takes care not to advocate any particular
422 denominational doctrine. We expect you to read and study
423 the scriptures to understand what they say. If you start
424 with the attitude that you want to have the Lord sow his
425 word in your heart He will not disappoint you.</para>
426 </listitem>
427 </varlistentry>
428
429 <varlistentry id="hdbk-reference-menus-help-about">
430 <term>
431 <menuchoice>
432 <guimenu>Help</guimenu>
433 <guimenuitem>About</guimenuitem>
434 </menuchoice>
435 </term>
436 <listitem>
437 <para>
438 <action>Opens a window about &bibletime; project
439 information</action>
440 contains information about &bibletime; software version,
441 project contributors, &sword; software version, &qt; software
442 version and the license agreement.</para>
443 </listitem>
444 </varlistentry>
445 </variablelist>
446 </sect2>
447 </sect1>
448
419 <sect1 id="hdbk-reference-hotkeys">449 <sect1 id="hdbk-reference-hotkeys">
420 <title>HotKeys index</title>450 <title>HotKeys index</title>
421 <para>This is index of all hotkeys and their corresponding451 <para>This is index of all hotkeys and their corresponding
422 description in the handbook. The hotkeys are sorted (roughly)452 description in the handbook. The hotkeys are sorted (roughly)
423 alphabetical. If you want to directly find out which hotkey a453 alphabetical. If you want to directly find out which hotkey a
424 certain menu item has, you can either look at the entry itelf in454 certain menu item has, you can either look at the entry itself in
425 &bibletime; (as it always shows the hotkey), or you can look it455 &bibletime; (as it always shows the hotkey), or you can look it
426 up in 456 up in
427 <link linkend="hdbk-reference-menus">this section</link>.</para>457 <link linkend="hdbk-reference-menus">this section</link>.</para>
428458
=== modified file 'docs/handbook/en/docbook/hdbk-start.docbook'
--- docs/handbook/en/docbook/hdbk-start.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/docbook/hdbk-start.docbook 2009-04-24 02:10:38 +0000
@@ -18,13 +18,13 @@
18 <para>&bibletime; can also be launched from a terminal18 <para>&bibletime; can also be launched from a terminal
19 command prompt. To launch &bibletime;, open a terminal window19 command prompt. To launch &bibletime;, open a terminal window
20 and type: 20 and type:
21 <screen>bibletime</screen></para>21 <screen>&bibletime;</screen></para>
22 </sect2>22 </sect2>
23 <sect2 id="hdbk-start-otherwm">23 <sect2 id="hdbk-start-otherwm">
24 <title>Other window managers</title>24 <title>Other window managers</title>
25 <para>&bibletime; can be used with other window managers such25 <para>&bibletime; can be used with other window managers such
26 as Gnome, BlackBox, Fluxbox, OpenBox or Sawfish, providing the26 as Gnome, BlackBox, Fluxbox, OpenBox or Sawfish, providing the
27 appropriate base libarires are already27 appropriate base libraries are already
28 installed on your computer.</para>28 installed on your computer.</para>
29 </sect2>29 </sect2>
30 <sect2 id="hdbk-start-custom">30 <sect2 id="hdbk-start-custom">
3131
=== modified file 'docs/handbook/en/docbook/index.docbook'
--- docs/handbook/en/docbook/index.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/docbook/index.docbook 2009-04-29 17:39:29 +0000
@@ -5,6 +5,7 @@
5 <!ENTITY bibletime '<application>BibleTime</application>'>5 <!ENTITY bibletime '<application>BibleTime</application>'>
6 <!ENTITY sword '<application>Sword</application>'>6 <!ENTITY sword '<application>Sword</application>'>
7 <!ENTITY kde '<application>KDE</application>'>7 <!ENTITY kde '<application>KDE</application>'>
8 <!ENTITY qt '<application>Qt</application>'>
89
9 <!ENTITY Shift 'Shift'>10 <!ENTITY Shift 'Shift'>
10 <!ENTITY Ctrl 'Ctrl'>11 <!ENTITY Ctrl 'Ctrl'>
@@ -46,11 +47,11 @@
46 <para>The &bibletime; handbook is part of47 <para>The &bibletime; handbook is part of
47 &bibletime;.</para>48 &bibletime;.</para>
48 </legalnotice>49 </legalnotice>
49 <date>2005-08</date>50 <date>2009-04</date>
50 <releaseinfo>2.0</releaseinfo>51 <releaseinfo>2.0</releaseinfo>
51 <abstract>52 <abstract>
52 <para>&bibletime; is a Bible study tool based on the Sword53 <para>&bibletime; is a Bible study tool based on the Sword
53 framwork.</para>54 framework.</para>
54 </abstract>55 </abstract>
55 <keywordset>56 <keywordset>
56 <keyword>QT4</keyword>57 <keyword>QT4</keyword>
5758
=== modified file 'docs/handbook/en/html/hdbk-config.html'
--- docs/handbook/en/html/hdbk-config.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/html/hdbk-config.html 2009-04-29 17:39:29 +0000
@@ -24,7 +24,7 @@
24 biblical booknames. Set this to your native language, if it is24 biblical booknames. Set this to your native language, if it is
25 available, and you'll feel at home.</p><p>By default, <span class="application">BibleTime</span> uses the default system25 available, and you'll feel at home.</p><p>By default, <span class="application">BibleTime</span> uses the default system
26 display font. You26 display font. You
27 can override this font if neccessary. Some languages require27 can override this font if necessary. Some languages require
28 special fonts to be displayed correctly, and this dialog allows28 special fonts to be displayed correctly, and this dialog allows
29 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.29 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.
30 As long as the works you are interested in display correctly30 As long as the works you are interested in display correctly
@@ -58,11 +58,11 @@
58 wide range of characters.</td></tr><tr><td>58 wide range of characters.</td></tr><tr><td>
59 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">59 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">
60 SIL unicode fonts</a>60 SIL unicode fonts</a>
61 </td><td>Excellent unicode fonts from the Summer61 </td><td>Excellent Unicode fonts from the Summer
62 Institute of Linguistics.</td></tr><tr><td>62 Institute of Linguistics.</td></tr><tr><td>
63 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">63 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">
64 FreeFont</a>64 FreeFont</a>
65 </td><td>A new free unicode font initiative.</td></tr><tr><td>65 </td><td>A new free Unicode font initiative.</td></tr><tr><td>
66 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">66 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">
67 Crosswire's font directory</a>67 Crosswire's font directory</a>
68 </td><td>Several fonts available from the Crosswire Bible68 </td><td>Several fonts available from the Crosswire Bible
@@ -90,7 +90,7 @@
90 right in the dialog. You also have the possibility to specify90 right in the dialog. You also have the possibility to specify
91 standard works that should be used when no specific work is91 standard works that should be used when no specific work is
92 specified in a reference. An example: The standard Bible is used92 specified in a reference. An example: The standard Bible is used
93 to display the content of crossreferences in the Bible. When you93 to display the content of cross references in the Bible. When you
94 hover over then, the Mag will show the content of the verses94 hover over then, the Mag will show the content of the verses
95 referred to, according to the standard Bible you95 referred to, according to the standard Bible you
96 specified.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-hotkeys"></a>96 specified.</p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-config-bt-hotkeys"></a>
9797
=== modified file 'docs/handbook/en/html/hdbk-intro.html'
--- docs/handbook/en/html/hdbk-intro.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/html/hdbk-intro.html 2009-04-29 17:39:29 +0000
@@ -1,6 +1,6 @@
1<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 for1<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
2 different types of texts and languages. Even large amounts of works2 different types of texts and languages. Even large amounts of works
3 modules) are easy to install and manage. It is built on the3 modules are easy to install and manage. It is built on the
4 <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library,4 <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library,
5 which provides the back-end functionality for <span class="application">BibleTime</span>, such5 which provides the back-end functionality for <span class="application">BibleTime</span>, such
6 as viewing Bible text, searching etc. Sword is the flagship product6 as viewing Bible text, searching etc. Sword is the flagship product
@@ -21,7 +21,7 @@
21 Greek). This is the most advanced section in the library of21 Greek). This is the most advanced section in the library of
22 the Sword project.</p></dd><dt><span class="term">Books</span></dt><dd><p>Books available include "Imitation of Christ", "Enuma22 the Sword project.</p></dd><dt><span class="term">Books</span></dt><dd><p>Books available include "Imitation of Christ", "Enuma
23 Elish", and "Josephus: The Complete Works"</p></dd><dt><span class="term">Commentaries</span></dt><dd><p>Commentaries available include classics like John23 Elish", and "Josephus: The Complete Works"</p></dd><dt><span class="term">Commentaries</span></dt><dd><p>Commentaries available include classics like John
24 Wesley's "Notes on the Bible", Matthew Henry`s commentary24 Wesley's "Notes on the Bible", Matthew Henry's commentary
25 and Luther's "Commentary on Galatians." With the 25 and Luther's "Commentary on Galatians." With the
26 <span class="emphasis"><em>Personal</em></span> commentary you can 26 <span class="emphasis"><em>Personal</em></span> commentary you can
27 <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Editing your own commentary"> record your own27 <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-desk-write" title="Editing your own commentary"> record your own
@@ -29,7 +29,7 @@
29 God's word. Available works include Daily Light on the29 God's word. Available works include Daily Light on the
30 Daily Path, and the Losungen.</p></dd><dt><span class="term">Lexicons/Dictionaries</span></dt><dd><p>Lexicons available include: Robinson's Morphological30 Daily Path, and the Losungen.</p></dd><dt><span class="term">Lexicons/Dictionaries</span></dt><dd><p>Lexicons available include: Robinson's Morphological
31 Analysis Codes, Brown-Driver-Briggs Hebrew Lexicon and the31 Analysis Codes, Brown-Driver-Briggs Hebrew Lexicon and the
32 International Standard Bible Encyclopedia. Dictionaries32 International Standard Bible Encyclopaedia. Dictionaries
33 available include Strong's Hebrew Bible Dictionary,33 available include Strong's Hebrew Bible Dictionary,
34 Strong's Greek Bible Dictionary, Webster's Revised34 Strong's Greek Bible Dictionary, Webster's Revised
35 Unabridged Dictionary of the English Language 1913, Nave's35 Unabridged Dictionary of the English Language 1913, Nave's
3636
=== modified file 'docs/handbook/en/html/hdbk-op-bookshelfmanager.html'
--- docs/handbook/en/html/hdbk-op-bookshelfmanager.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/html/hdbk-op-bookshelfmanager.html 2009-04-29 17:39:29 +0000
@@ -5,10 +5,10 @@
5 your Bookshelf. You can install new works to your Bookshelf, and5 your Bookshelf. You can install new works to your Bookshelf, and
6 update or remove existing works from your Bookshelf. Access it by6 update or remove existing works from your Bookshelf. Access it by
7 clicking 7 clicking
8 <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 your8 <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
9 Bookshelf on the harddrive. You can even store it in multiple9 Bookshelf on the hard drive. You can even store it in multiple
10 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 all10 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
11 the works on the harddisk, but use them directly from the CD,11 the works on the hard disk, but use them directly from the CD,
12 then you can add the path to the CD as one of your bookshelf12 then you can add the path to the CD as one of your bookshelf
13 paths. When you start <span class="application">BibleTime</span>, it will show all works13 paths. When you start <span class="application">BibleTime</span>, it will show all works
14 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 of14 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
1515
=== modified file 'docs/handbook/en/html/hdbk-op-parts.html'
--- docs/handbook/en/html/hdbk-op-parts.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/html/hdbk-op-parts.html 2009-04-29 17:39:29 +0000
@@ -61,7 +61,7 @@
61 be displayed in the Mag, and not in the text itself. Just try it61 be displayed in the Mag, and not in the text itself. Just try it
62 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> takes62 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
63 place. Here you can open works from the Bookshelf, read them, 63 place. Here you can open works from the Bookshelf, read them,
64 <a class="link" href="hdbk-op-search.html" title="Searching in works">search</a>in them, and even64 <a class="link" href="hdbk-op-search.html" title="Searching in works">search</a> in them, and even
65 save your annotations in the personal commentary module (see 65 save your annotations in the personal commentary module (see
66 <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 66 <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
67 <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-bookshelf-open" title="Reading works">already67 <a class="link" href="hdbk-op-parts.html#hdbk-op-parts-bookshelf-open" title="Reading works">already
@@ -93,6 +93,6 @@
93 <span class="guimenuitem">Plain text</span>(source code editor) or 93 <span class="guimenuitem">Plain text</span>(source code editor) or
94 <span class="guimenuitem">HTML</span>(basic gui wysiwyg94 <span class="guimenuitem">HTML</span>(basic gui wysiwyg
95 editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If 95 editor).</p><div class="tip" style="margin-left: 0.5in; margin-right: 0.5in;"><h3 class="title">Tip</h3><p>If
96 <span class="guimenu">Edit this work</span>is deactivated, please check if you have write96 <span class="guimenu">Edit this work</span> is deactivated, please check if you have write
97 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 and97 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
98 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>98 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>
9999
=== modified file 'docs/handbook/en/html/hdbk-op-search.html'
--- docs/handbook/en/html/hdbk-op-search.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/html/hdbk-op-search.html 2009-04-29 17:39:29 +0000
@@ -35,7 +35,7 @@
35 type followed by ':', and then the search term. For example, to35 type followed by ':', and then the search term. For example, to
36 search for the Strong's number H8077, use36 search for the Strong's number H8077, use
37 'strong:H8077'.</p><p>Available text types: 37 'strong:H8077'.</p><p>Available text types:
38 </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 your38 </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
39 searches. It has many advanced features, and you can read more39 searches. It has many advanced features, and you can read more
40 about it here: 40 about it here:
41 <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top">41 <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top">
4242
=== modified file 'docs/handbook/en/html/hdbk-reference-hotkeys.html'
--- docs/handbook/en/html/hdbk-reference-hotkeys.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/html/hdbk-reference-hotkeys.html 2009-04-29 17:39:29 +0000
@@ -1,7 +1,7 @@
1<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 corresponding1<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
2 description in the handbook. The hotkeys are sorted (roughly)2 description in the handbook. The hotkeys are sorted (roughly)
3 alphabetical. If you want to directly find out which hotkey a3 alphabetical. If you want to directly find out which hotkey a
4 certain menu item has, you can either look at the entry itelf in4 certain menu item has, you can either look at the entry itself in
5 <span class="application">BibleTime</span> (as it always shows the hotkey), or you can look it5 <span class="application">BibleTime</span> (as it always shows the hotkey), or you can look it
6 up in 6 up in
7 <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>7 <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>
@@ -95,4 +95,4 @@
95 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag">95 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag">
96 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show mag</span>96 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show mag</span>
97 </a>equivalent; toggles display of the mag(nifying97 </a>equivalent; toggles display of the mag(nifying
98 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>98 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>
9999
=== modified file 'docs/handbook/en/html/hdbk-reference-toolbar.html'
--- docs/handbook/en/html/hdbk-reference-toolbar.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/html/hdbk-reference-toolbar.html 2009-04-29 17:39:29 +0000
@@ -10,5 +10,5 @@
10 <span class="guimenu">10 <span class="guimenu">
11 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>11 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
12 </span></dt><dd><p>Configure toolbars</p></dd></dl></div><p>Please see 12 </span></dt><dd><p>Configure toolbars</p></dd></dl></div><p>Please see
13 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-settings-toolbars">this13 <a class="link" href="">this
14 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>14 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>
1515
=== modified file 'docs/handbook/en/html/hdbk-reference.html'
--- docs/handbook/en/html/hdbk-reference.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/html/hdbk-reference.html 2009-04-29 17:39:29 +0000
@@ -1,4 +1,4 @@
1<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">1<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">
2 File2 File
3 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">3 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">
4 View4 View
@@ -10,7 +10,7 @@
10 Settings10 Settings
11 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">11 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
12 Help12 Help
13 </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 all13 </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
14 entries in the main menu of <span class="application">BibleTime</span>. They are ordered in14 entries in the main menu of <span class="application">BibleTime</span>. They are ordered in
15 just the way they appear in <span class="application">BibleTime</span>, with all the sub-items15 just the way they appear in <span class="application">BibleTime</span>, with all the sub-items
16 listed under the major menu item they belong to. You can also see16 listed under the major menu item they belong to. You can also see
@@ -27,20 +27,23 @@
27 if you want to write unsaved changes to disk.</p></dd></dl></div><p>27 if you want to write unsaved changes to disk.</p></dd></dl></div><p>
28 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>28 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>
29 <span class="guimenu">View</span>29 <span class="guimenu">View</span>
30 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">30 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-fullscreenmode"></a><span class="term">
31 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Toolbar</span>31 <span class="guimenu">
32 <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>)
33 </span></dt><dd><p>
34 <span class="action">Toggles full screen display.</span> Toggle this
35 setting to maximize the <span class="application">BibleTime</span> window.</p></dd><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
36 <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>)
32 </span></dt><dd><p>37 </span></dt><dd><p>
33 <span class="action">Toggles Toolbar display.</span> Toggle this38 <span class="action">Toggles Toolbar display.</span> Toggle this
34 setting to turn the main toolbar on or off.</p></dd><dt><a name="hdbk-reference-menus-view-showbookshelf"></a><span class="term">39 setting to turn the main toolbar on or off.</p></dd><dt><a name="hdbk-reference-menus-view-showbookshelf"></a><span class="term">
35 <span class="guimenu">40 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span>
36 <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>)
37 </span></dt><dd><p>41 </span></dt><dd><p>
38 <span class="action">Toggles display of the Bookshelf.</span> Toggle42 <span class="action">Toggles display of the Bookshelf.</span> Toggle
39 this setting to turn the Bookshelf on the left pane on or43 this setting to turn the Bookshelf on the left pane on or
40 off. This can be handy if you need more space for the44 off. This can be handy if you need more space for the
41 Mag.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">45 Mag.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">
42 <span class="guimenu">46 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Mag</span>
43 <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>)
44 </span></dt><dd><p>47 </span></dt><dd><p>
45 <span class="action">Toggles display of the Mag(nifying48 <span class="action">Toggles display of the Mag(nifying
46 glass).</span> Toggle this setting to turn the Mag on the49 glass).</span> Toggle this setting to turn the Mag on the
@@ -101,19 +104,7 @@
101 </span></dt><dd><p>104 </span></dt><dd><p>
102 <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>105 <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>
103 <span class="guimenu">Settings</span>106 <span class="guimenu">Settings</span>
104 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-toolbars"></a><span class="term">107 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
105 <span class="guimenu">
106 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
107 </span></dt><dd><p>
108 <span class="action">Opens a dialog where you can customize
109 <span class="application">BibleTime</span>'s toolbar</span>. Just try it out, you
110 can move around the toolbar buttons and even add new ones.
111 Most of the entries available from the main menu can be put
112 on the toolbar as buttons. If you need a certain feature
113 often, you might want to put a button on the main menu, so
114 that you can access it with only one click. Please see
115 <a class="link" href="">this section</a> for
116 further information.</p></dd><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
117 <span class="guimenu">108 <span class="guimenu">
118 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>109 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>
119 </span></dt><dd><p>110 </span></dt><dd><p>
@@ -128,8 +119,31 @@
128 </span></dt><dd><p>119 </span></dt><dd><p>
129 <span class="action">Opens a dialog where you can change your Sword120 <span class="action">Opens a dialog where you can change your Sword
130 configuration and manage your bookshelf</span>. Please121 configuration and manage your bookshelf</span>. Please
131 see 122 see <a class="link" href="hdbk-op-bookshelfmanager.html" title="The Bookshelf Manager">this
132 <a class="link" href="hdbk-op-bookshelfmanager.html" title="The Bookshelf Manager">this
133 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>123 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>
134 <span class="guimenu">Help</span>124 <span class="guimenu">Help</span>
135 </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>125 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-help-bibletime"></a><span class="term">
126 <span class="guimenu">
127 <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>)
128 </span></dt><dd><p>
129 <span class="action">Opens <span class="application">BibleTime</span>'s user guide</span>
130 You are reading it now.</p></dd><dt><a name="hdbk-reference-menus-help-bible_study_howto"></a><span class="term">
131 <span class="guimenu">
132 <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>)
133 </span></dt><dd><p>
134 <span class="action">Opens a guide on how to study the Bible</span>
135 It is the hope of the <span class="application">BibleTime</span> team that this HowTo will
136 provoke the readers to study the scriptures to see what
137 they say. This particular study guide has been chosen as
138 it takes care not to advocate any particular
139 denominational doctrine. We expect you to read and study
140 the scriptures to understand what they say. If you start
141 with the attitude that you want to have the Lord sow his
142 word in your heart He will not disappoint you.</p></dd><dt><a name="hdbk-reference-menus-help-about"></a><span class="term">
143 <span class="guimenu">Help</span> &#8594; <span class="guimenuitem">About</span>
144 </span></dt><dd><p>
145 <span class="action">Opens a window about <span class="application">BibleTime</span> project
146 information</span>
147 contains information about <span class="application">BibleTime</span> software version,
148 project contributors, <span class="application">Sword</span> software version, <span class="application">Qt</span> software
149 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>
136150
=== modified file 'docs/handbook/en/html/hdbk-term.html'
--- docs/handbook/en/html/hdbk-term.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/html/hdbk-term.html 2009-04-29 17:39:29 +0000
@@ -4,9 +4,9 @@
4 </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 terminal4 </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
5 command prompt. To launch <span class="application">BibleTime</span>, open a terminal window5 command prompt. To launch <span class="application">BibleTime</span>, open a terminal window
6 and type: 6 and type:
7 </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 such7 </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
8 as Gnome, BlackBox, Fluxbox, OpenBox or Sawfish, providing the8 as Gnome, BlackBox, Fluxbox, OpenBox or Sawfish, providing the
9 appropriate base libarires are already9 appropriate base libraries are already
10 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 a10 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
11 random verse in the default bible: 11 random verse in the default bible:
12 </p><pre class="screen">bibletime --open-default-bible12 </p><pre class="screen">bibletime --open-default-bible
1313
=== added file 'docs/handbook/en/html/i_contents2.png'
14Binary 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 differ14Binary 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
=== modified file 'docs/handbook/en/html/i_find.png'
15Binary 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 differ15Binary 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
=== added file 'docs/handbook/en/html/i_view_index.png'
16Binary 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 differ16Binary 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
=== added file 'docs/handbook/en/html/i_view_mag.png'
17Binary 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 differ17Binary 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
=== added file 'docs/handbook/en/html/i_window_fullscreen.png'
18Binary 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 differ18Binary 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
=== modified file 'docs/handbook/en/html/index.html'
--- docs/handbook/en/html/index.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/en/html/index.html 2009-04-29 17:39:29 +0000
@@ -1,6 +1,6 @@
1<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 of1<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
2 <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 Sword2 <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
3 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 3 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
4 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">4 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">
5 Display5 Display
6 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">6 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">
@@ -21,4 +21,4 @@
21 Settings21 Settings
22 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">22 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
23 Help23 Help
24 </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>24 </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>
2525
=== modified file 'docs/handbook/fi/docbook/hdbk-config.docbook'
--- docs/handbook/fi/docbook/hdbk-config.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/docbook/hdbk-config.docbook 2009-04-24 02:10:38 +0000
@@ -31,7 +31,7 @@
31äidinkieleksesi, jos se on saatavilla. Silloin tunnet olosi kotoisaksi.</para>31äidinkieleksesi, jos se on saatavilla. Silloin tunnet olosi kotoisaksi.</para>
3232
33 <para>By default, &bibletime; uses the default system display font. You can 33 <para>By default, &bibletime; uses the default system display font. You can
34override this font if neccessary. Some languages require special fonts to be 34override this font if necessary. Some languages require special fonts to be
35displayed correctly, and this dialog allows you to specify a custom font for 35displayed correctly, and this dialog allows you to specify a custom font for
36each language.</para>36each language.</para>
37 <mediaobject>37 <mediaobject>
@@ -109,14 +109,14 @@
109 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">109 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">
110 SIL unicode fonts</ulink>110 SIL unicode fonts</ulink>
111 </entry>111 </entry>
112 <entry>Erinomainen lingvistiikan kesäinstituutin unicode-kirjasin.</entry>112 <entry>Excellent Unicode fonts from the Summer Institute of Linguistics.</entry>
113 </row>113 </row>
114 <row>114 <row>
115 <entry>115 <entry>
116 <ulink url="http://www.nongnu.org/freefont/">116 <ulink url="http://www.nongnu.org/freefont/">
117 FreeFont</ulink>117 FreeFont</ulink>
118 </entry>118 </entry>
119 <entry>Uusi vapaa unicode-kirjasinaloite.</entry>119 <entry>A new free Unicode font initiative.</entry>
120 </row>120 </row>
121 <row>121 <row>
122 <entry>122 <entry>
@@ -159,13 +159,13 @@
159 <title>159 <title>
160 <guimenu>Desk</guimenu>160 <guimenu>Desk</guimenu>
161 </title>161 </title>
162 <para>Monia Sword-taustaohjelman ominaisuuksia voidaan 162 <para>Many features provided by the Sword backend can now be customized in
163räätälöidä&bibletime;-ohjelmassa. Nämä ominaisuudet on dokumentoitu oikealla 163&bibletime;. These features are documented right in the dialog. You also
164ikkunassa. Sinulla on mahdollisuus määritellä oletusteokset, joita 164have the possibility to specify standard works that should be used when no
165käytetään, jos yhtään teosta ei ole määritelty viitteenä. Esimerkki: 165specific work is specified in a reference. An example: The standard Bible is
166standardia Raamattua käytetään näyttämään Raamatun ristiviittauksien 166used to display the content of cross references in the Bible. When you hover
167sisältöjä. Kun siirrät hiiren niiden ylle, suurennuslasi näyttää viitattujen 167over then, the Mag will show the content of the verses referred to,
168jakeiden sisällön standardista Raamatusta, jonka olet määritellyt.</para>168according to the standard Bible you specified.</para>
169 </sect2>169 </sect2>
170 <sect2 id="hdbk-config-bt-hotkeys">170 <sect2 id="hdbk-config-bt-hotkeys">
171 <title>171 <title>
172172
=== modified file 'docs/handbook/fi/docbook/hdbk-intro.docbook'
--- docs/handbook/fi/docbook/hdbk-intro.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/docbook/hdbk-intro.docbook 2009-04-29 17:39:29 +0000
@@ -2,13 +2,13 @@
2 <title>Johdanto</title>2 <title>Johdanto</title>
3 <sect1 id="hdbk-intro-about">3 <sect1 id="hdbk-intro-about">
4 <title>Tietoja &bibletime;:stä</title>4 <title>Tietoja &bibletime;:stä</title>
5 <para>&bibletime; on Raamattuohjelma erilaisten tekstien tuella ja 5 <para>&bibletime; is a Bible study tool with support for different types of texts
6kielillä. Edelleen laaja joukko teoksia on helppo asentaa ja hallinnoida 6and languages. Even large amounts of works modules are easy to install and
7moduuleina. Se on rakennettu <ulink 7manage. It is built on the <ulink
8url="http://www.crosswire.org/sword">Sword</ulink>-kirjastoon, joka tarjoaa 8url="http://www.crosswire.org/sword">Sword</ulink> library, which provides
9toiminnallisuuden &bibletime;:lle, kuten Raamatun tekstin näyttämiseen, 9the back-end functionality for &bibletime;, such as viewing Bible text,
10etsintään, jne. Sword on <ulink url="http://www.crosswire.org">Crosswire 10searching etc. Sword is the flagship product of the <ulink
11Bible Societyn</ulink> lippulaiva.</para>11url="http://www.crosswire.org">Crosswire Bible Society</ulink>.</para>
1212
13 <para>&bibletime; on suunniteltu käyttämään Sword-projektin mallien mukaisia 13 <para>&bibletime; on suunniteltu käyttämään Sword-projektin mallien mukaisia
14teoksia. Tuettujen asiakirjamuotojen täydelliset tiedot löytyvät osoitteesta 14teoksia. Tuettujen asiakirjamuotojen täydelliset tiedot löytyvät osoitteesta
@@ -42,11 +42,11 @@
42 <varlistentry>42 <varlistentry>
43 <term>Kommentaareja</term>43 <term>Kommentaareja</term>
44 <listitem>44 <listitem>
45 <para>Saatavillaolevat kommentaarit sisältävät klassikkoja kutenJohn Wesleyn 45 <para>Commentaries available include classics like John Wesley's "Notes on the
46"Notes on the Bible", Matthew Henryn kommentaarin ja Lutherin "Commentary on 46Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
47Galatians." <emphasis>Omalla</emphasis> kommentaarilla voit <link 47With the <emphasis>Personal</emphasis> commentary you can <link
48linkend="hdbk-op-parts-desk-write"> tallettaa omat persoonalliset 48linkend="hdbk-op-parts-desk-write"> record your own personal notes</link> to
49muistiinpanosi</link> Raamatun eri osioihin.</para>49sections of the Bible.</para>
50 </listitem>50 </listitem>
51 </varlistentry>51 </varlistentry>
52 <varlistentry>52 <varlistentry>
@@ -61,7 +61,7 @@
61 <listitem>61 <listitem>
62 <para>Lexicons available include: Robinson's Morphological Analysis Codes, 62 <para>Lexicons available include: Robinson's Morphological Analysis Codes,
63Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible 63Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
64Encyclopedia. Dictionaries available include Strong's Hebrew Bible 64Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
65Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged 65Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
66Dictionary of the English Language 1913, Nave's Topical Bible.</para>66Dictionary of the English Language 1913, Nave's Topical Bible.</para>
67 </listitem>67 </listitem>
6868
=== modified file 'docs/handbook/fi/docbook/hdbk-operation.docbook'
--- docs/handbook/fi/docbook/hdbk-operation.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/docbook/hdbk-operation.docbook 2009-04-29 17:39:29 +0000
@@ -114,7 +114,7 @@
114 <title>Työpöytä</title>114 <title>Työpöytä</title>
115 <para>The Desk is where the real work with &bibletime; takes place. Here you can 115 <para>The Desk is where the real work with &bibletime; takes place. Here you can
116open works from the Bookshelf, read them, <link 116open works from the Bookshelf, read them, <link
117linkend="hdbk-op-search">search</link>in them, and even save your 117linkend="hdbk-op-search">search</link> in them, and even save your
118annotations in the personal commentary module (see <link 118annotations in the personal commentary module (see <link
119linkend="hdbk-op-parts-desk-write">below</link>).</para>119linkend="hdbk-op-parts-desk-write">below</link>).</para>
120120
@@ -156,7 +156,7 @@
156<guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>156<guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>
157157
158 <tip>158 <tip>
159 <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice>is 159 <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice> is
160deactivated, please check if you have write permission for the files of the 160deactivated, please check if you have write permission for the files of the
161personal commentary.</para>161personal commentary.</para>
162 </tip>162 </tip>
@@ -236,6 +236,7 @@
236number H8077, use 'strong:H8077'.</para>236number H8077, use 'strong:H8077'.</para>
237 <para>Saatavana olevat tekstityypit: 237 <para>Saatavana olevat tekstityypit:
238 <table id="hd-op-search-config-syntax-table">238 <table id="hd-op-search-config-syntax-table">
239 <title>Search Types</title>
239 <tgroup cols="2">240 <tgroup cols="2">
240 <thead>241 <thead>
241 <row>242 <row>
@@ -311,17 +312,17 @@
311Bookshelf. You can install new works to your Bookshelf, and update or remove 312Bookshelf. You can install new works to your Bookshelf, and update or remove
312existing works from your Bookshelf. Access it by clicking <menuchoice> 313existing works from your Bookshelf. Access it by clicking <menuchoice>
313<guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem> 314<guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem>
314</menuchoice>in the main menu.</para>315</menuchoice> in the main menu.</para>
315 <sect2 id="hdbk-op-bookshelfmanager-path">316 <sect2 id="hdbk-op-bookshelfmanager-path">
316 <title>Kirjahyllyn polun/polkujen asetus</title>317 <title>Kirjahyllyn polun/polkujen asetus</title>
317 <para>Tässä voit määritellä, minne &bibletime; tallettaa kirjahyllysi 318 <para>Here you can specify where &bibletime; may store your Bookshelf on the hard
318levyllä. Voit tallentaa sen jopa useampiin kansioihin. Oletus on 319drive. You can even store it in multiple directories. Default is
319"~/.sword/".</para>320"~/.sword/".</para>
320 <tip>321 <tip>
321 <para>Jos sinulla on Sword-CD, mutta et halua asentaa kaikkia teoksia 322 <para>If you have a sword CD, but do not want to install all the works on the hard
322kovalevyllesi vaan käyttää niitä suoraan CD:ltä, voit lisätä polun CD:lle 323disk, but use them directly from the CD, then you can add the path to the CD
323yhtenä kirjahyllyn polkuna. Kun aloitat &bibletime;-ohjelman, se näyttää 324as one of your bookshelf paths. When you start &bibletime;, it will show all
324sinulle kaikki CD:llä olevat teokset, jos CD on asemassa.</para>325works on the CD if it is present.</para>
325 </tip>326 </tip>
326 </sect2>327 </sect2>
327 <sect2 id="hdbk-op-bookshelfmanager-installupdate">328 <sect2 id="hdbk-op-bookshelfmanager-installupdate">
328329
=== modified file 'docs/handbook/fi/docbook/hdbk-reference.docbook'
--- docs/handbook/fi/docbook/hdbk-reference.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/docbook/hdbk-reference.docbook 2009-04-29 17:39:29 +0000
@@ -39,16 +39,47 @@
39 </variablelist>39 </variablelist>
40 </para>40 </para>
41 </sect2>41 </sect2>
42
42 <sect2 id="hdbk-reference-menus-view">43 <sect2 id="hdbk-reference-menus-view">
43 <title>44 <title>
44 <guimenu>View</guimenu>45 <guimenu>View</guimenu>
45 </title>46 </title>
47
46 <variablelist>48 <variablelist>
49 <varlistentry id="hdbk-reference-menus-view-fullscreenmode">
50 <term>
51 <menuchoice>
52 <shortcut>
53 <keycombo action="simul">
54 <keycap>F5</keycap>
55 </keycombo>
56 </shortcut>
57 <guimenu>
58 <inlinemediaobject>
59 <imageobject>
60 <imagedata fileref="i_window_fullscreen.png" format="PNG" />
61 </imageobject>
62 </inlinemediaobject>View</guimenu>
63 <guimenuitem>Fullscreen mode</guimenuitem>
64 </menuchoice>
65 </term>
66 <listitem>
67 <para>
68 <action>Toggles full screen display.</action> Toggle this setting to
69maximize the &bibletime; window.</para>
70 </listitem>
71 </varlistentry>
72
47 <varlistentry id="hdbk-reference-menus-view-showtoolbar">73 <varlistentry id="hdbk-reference-menus-view-showtoolbar">
48 <term>74 <term>
49 <menuchoice>75 <menuchoice>
76 <shortcut>
77 <keycombo action="simul">
78 <keycap>F6</keycap>
79 </keycombo>
80 </shortcut>
50 <guimenu>View</guimenu>81 <guimenu>View</guimenu>
51 <guimenuitem>Show Toolbar</guimenuitem>82 <guimenuitem>Show toolbar</guimenuitem>
52 </menuchoice>83 </menuchoice>
53 </term>84 </term>
54 <listitem>85 <listitem>
@@ -57,20 +88,11 @@
57asettaaksesi päätyökalupalkin näkyviin tai piilotetuksi.</para>88asettaaksesi päätyökalupalkin näkyviin tai piilotetuksi.</para>
58 </listitem>89 </listitem>
59 </varlistentry>90 </varlistentry>
91
60 <varlistentry id="hdbk-reference-menus-view-showbookshelf">92 <varlistentry id="hdbk-reference-menus-view-showbookshelf">
61 <term>93 <term>
62 <menuchoice>94 <menuchoice>
63 <shortcut>95 <guimenu>View</guimenu>
64 <keycombo action="simul">
65 <keycap>F9</keycap>
66 </keycombo>
67 </shortcut>
68 <guimenu>
69 <inlinemediaobject>
70 <imageobject>
71 <imagedata fileref="i_sidetree.png" format="PNG" />
72 </imageobject>
73 </inlinemediaobject>View</guimenu>
74 <guimenuitem>Show Bookshelf</guimenuitem>96 <guimenuitem>Show Bookshelf</guimenuitem>
75 </menuchoice>97 </menuchoice>
76 </term>98 </term>
@@ -81,20 +103,11 @@
81haluat lisää tilaa suurennuslasille.</para>103haluat lisää tilaa suurennuslasille.</para>
82 </listitem>104 </listitem>
83 </varlistentry>105 </varlistentry>
106
84 <varlistentry id="hdbk-reference-menus-view-showmag">107 <varlistentry id="hdbk-reference-menus-view-showmag">
85 <term>108 <term>
86 <menuchoice>109 <menuchoice>
87 <shortcut>110 <guimenu>View</guimenu>
88 <keycombo action="simul">
89 <keycap>F8</keycap>
90 </keycombo>
91 </shortcut>
92 <guimenu>
93 <inlinemediaobject>
94 <imageobject>
95 <imagedata fileref="i_sidetree.png" format="PNG" />
96 </imageobject>
97 </inlinemediaobject>View</guimenu>
98 <guimenuitem>Show Mag</guimenuitem>111 <guimenuitem>Show Mag</guimenuitem>
99 </menuchoice>112 </menuchoice>
100 </term>113 </term>
@@ -290,30 +303,6 @@
290 <guimenu>Settings</guimenu>303 <guimenu>Settings</guimenu>
291 </title>304 </title>
292 <variablelist>305 <variablelist>
293 <varlistentry id="hdbk-reference-menus-settings-toolbars">
294 <term>
295 <menuchoice>
296 <guimenu>
297 <inlinemediaobject>
298 <imageobject>
299 <imagedata fileref="i_configuretoolbars.png"
300 format="PNG" />
301 </imageobject>
302 </inlinemediaobject>Settings</guimenu>
303 <guimenuitem>Configure toolbars</guimenuitem>
304 </menuchoice>
305 </term>
306 <listitem>
307 <para>
308 <action>Opens a dialog where you can customize &bibletime;'s
309toolbar</action>. Just try it out, you can move around the toolbar buttons
310and even add new ones. Most of the entries available from the main menu can
311be put on the toolbar as buttons. If you need a certain feature often, you
312might want to put a button on the main menu, so that you can access it with
313only one click. Please see <link linkend="hdbk-config-toolbar">this
314section</link> for further information.</para>
315 </listitem>
316 </varlistentry>
317 <varlistentry id="hdbk-reference-menus-settings-bibletime">306 <varlistentry id="hdbk-reference-menus-settings-bibletime">
318 <term>307 <term>
319 <menuchoice>308 <menuchoice>
@@ -362,46 +351,90 @@
362 </varlistentry>351 </varlistentry>
363 </variablelist>352 </variablelist>
364 </sect2>353 </sect2>
354
365 <sect2 id="hdbk-reference-menus-help">355 <sect2 id="hdbk-reference-menus-help">
366 <title>356 <title>
367 <guimenu>Help</guimenu>357 <guimenu>Help</guimenu>
368 </title>TODO: ADD</sect2>358 </title>
369 </sect1>359 <variablelist>
370 <sect1 id="hdbk-reference-toolbar">360 <varlistentry id="hdbk-reference-menus-help-bibletime">
371 <title>Työkalupalkin viite</title>361 <term>
372 <para>Please review <link linkend="hdbk-reference-menus">the preceding 362 <menuchoice>
373section</link> for an explanation of the buttons that you find on the 363 <shortcut>
374toolbar. You can also <action>move the cursor over a button and wait a few 364 <keycombo action="simul">
375seconds</action> to activate the button's tooltip with a short description.</para>365 <keycap>F1</keycap>
376 <para>Voit mukauttaa työkalupalkin tarpeitasi vastaavaksi. Käytä seuraavaa kohtaa 366 </keycombo>
377päävalikossa: 367 </shortcut>
378 <variablelist>368 <guimenu>
379 <varlistentry>369 <inlinemediaobject>
380 <term>370 <imageobject>
381 <menuchoice>371 <imagedata fileref="i_contents2.png" format="PNG" />
382 <guimenu>372 </imageobject>
383 <inlinemediaobject>373 </inlinemediaobject>Help</guimenu>
384 <imageobject>374 <guimenuitem>Handbook</guimenuitem>
385 <imagedata fileref="i_configuretoolbars.png"375 </menuchoice>
386 format="PNG" />376 </term>
387 </imageobject>377 <listitem>
388 </inlinemediaobject>Settings</guimenu>378 <para>
389 <guimenuitem>Configure toolbars</guimenuitem>379 <action>Opens &bibletime;'s user guide</action> You are reading it now.</para>
390 </menuchoice>380 </listitem>
391 </term>381 </varlistentry>
392 <listitem>382
393 <para>Aseta työkalupalkit</para>383 <varlistentry id="hdbk-reference-menus-help-bible_study_howto">
394 </listitem>384 <term>
395 </varlistentry>385 <menuchoice>
396 </variablelist>Katso <link linkend="hdbk-reference-menus-settings-toolbars">tämä 386 <shortcut>
397osio</link> yksityiskohtaisten ohjeiden saamiseksi.</para>387 <keycombo action="simul">
398 </sect1>388 <keycap>F2</keycap>
389 </keycombo>
390 </shortcut>
391 <guimenu>
392 <inlinemediaobject>
393 <imageobject>
394 <imagedata fileref="i_contents2.png"
395 format="PNG" />
396 </imageobject>
397 </inlinemediaobject>Help</guimenu>
398 <guimenuitem>Bible Study Howto</guimenuitem>
399 </menuchoice>
400 </term>
401 <listitem>
402 <para>
403 <action>Opens a guide on how to study the Bible</action> It is the hope of
404the &bibletime; team that this HowTo will provoke the readers to study the
405scriptures to see what they say. This particular study guide has been chosen
406as it takes care not to advocate any particular denominational doctrine. We
407expect you to read and study the scriptures to understand what they say. If
408you start with the attitude that you want to have the Lord sow his word in
409your heart He will not disappoint you.</para>
410 </listitem>
411 </varlistentry>
412
413 <varlistentry id="hdbk-reference-menus-help-about">
414 <term>
415 <menuchoice>
416 <guimenu>Help</guimenu>
417 <guimenuitem>About</guimenuitem>
418 </menuchoice>
419 </term>
420 <listitem>
421 <para>
422 <action>Opens a window about &bibletime; project information</action>
423contains information about &bibletime; software version, project
424contributors, &sword; software version, &qt; software version and the
425license agreement.</para>
426 </listitem>
427 </varlistentry>
428 </variablelist>
429 </sect2>
430 </sect1>
431
399 <sect1 id="hdbk-reference-hotkeys">432 <sect1 id="hdbk-reference-hotkeys">
400 <title>Pikanäppäinten luettelo</title>433 <title>Pikanäppäinten luettelo</title>
401 <para>This is index of all hotkeys and their corresponding description in the 434 <para>This is index of all hotkeys and their corresponding description in the
402handbook. The hotkeys are sorted (roughly) alphabetical. If you want to 435handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
403directly find out which hotkey a certain menu item has, you can either look 436directly find out which hotkey a certain menu item has, you can either look
404at the entry itelf in &bibletime; (as it always shows the hotkey), or you 437at the entry itself in &bibletime; (as it always shows the hotkey), or you
405can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>438can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>
406 <informaltable>439 <informaltable>
407 <tgroup cols="2">440 <tgroup cols="2">
408441
=== modified file 'docs/handbook/fi/docbook/hdbk-start.docbook'
--- docs/handbook/fi/docbook/hdbk-start.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/docbook/hdbk-start.docbook 2009-04-24 02:10:38 +0000
@@ -17,12 +17,12 @@
17 <para>&bibletime;-ohjelman voi käynnistää terminaali-ikkunan 17 <para>&bibletime;-ohjelman voi käynnistää terminaali-ikkunan
18komentoriviltä. Käynnistääksesi &bibletime;-ohjelman, avaa terminaali-ikkuna 18komentoriviltä. Käynnistääksesi &bibletime;-ohjelman, avaa terminaali-ikkuna
19ja kirjoita: 19ja kirjoita:
20 <screen>bibletime</screen></para>20 <screen>&bibletime;</screen></para>
21 </sect2>21 </sect2>
22 <sect2 id="hdbk-start-otherwm">22 <sect2 id="hdbk-start-otherwm">
23 <title>Muut ikkunamanagerit</title>23 <title>Muut ikkunamanagerit</title>
24 <para>&bibletime; can be used with other window managers such as Gnome, BlackBox, 24 <para>&bibletime; can be used with other window managers such as Gnome, BlackBox,
25Fluxbox, OpenBox or Sawfish, providing the appropriate base libarires are 25Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
26already installed on your computer.</para>26already installed on your computer.</para>
27 </sect2>27 </sect2>
28 <sect2 id="hdbk-start-custom">28 <sect2 id="hdbk-start-custom">
2929
=== modified file 'docs/handbook/fi/docbook/index.docbook'
--- docs/handbook/fi/docbook/index.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/docbook/index.docbook 2009-04-29 17:39:29 +0000
@@ -5,6 +5,7 @@
5 <!ENTITY bibletime '<application>BibleTime</application>'>5 <!ENTITY bibletime '<application>BibleTime</application>'>
6 <!ENTITY sword '<application>Sword</application>'>6 <!ENTITY sword '<application>Sword</application>'>
7 <!ENTITY kde '<application>KDE</application>'>7 <!ENTITY kde '<application>KDE</application>'>
8 <!ENTITY qt '<application>Qt</application>'>
89
9 <!ENTITY Shift 'Shift'>10 <!ENTITY Shift 'Shift'>
10 <!ENTITY Ctrl 'Ctrl'>11 <!ENTITY Ctrl 'Ctrl'>
@@ -46,11 +47,10 @@
46 <legalnotice>47 <legalnotice>
47 <para>&bibletime;-käsikirja on osa &bibletime;-ohjelmaa.</para>48 <para>&bibletime;-käsikirja on osa &bibletime;-ohjelmaa.</para>
48 </legalnotice>49 </legalnotice>
49 <date>elokuu 2005</date>50 <date>2009-04</date>
50 <releaseinfo>2.0</releaseinfo>51 <releaseinfo>2.0</releaseinfo>
51 <abstract>52 <abstract>
52 <para>&bibletime; on tehokas Raamatun tutkimisen työkalu, joka perustuu 53 <para>&bibletime; is a Bible study tool based on the Sword framework.</para>
53Sword-kehykseen.</para>
54 </abstract>54 </abstract>
55 <keywordset>55 <keywordset>
56 <keyword>QT4</keyword>56 <keyword>QT4</keyword>
5757
=== modified file 'docs/handbook/fi/html/hdbk-config.html'
--- docs/handbook/fi/html/hdbk-config.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/html/hdbk-config.html 2009-04-24 02:10:38 +0000
@@ -20,7 +20,7 @@
20 <span class="guimenu">Languages</span>20 <span class="guimenu">Languages</span>
21 </h3></div></div></div><p>Tässä voit määritellä, mitä kieltä käytetään kirjojen nimissä. Aseta tämä 21 </h3></div></div></div><p>Tässä voit määritellä, mitä kieltä käytetään kirjojen nimissä. Aseta tämä
22ä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 22ä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
23override this font if neccessary. Some languages require special fonts to be 23override this font if necessary. Some languages require special fonts to be
24displayed correctly, and this dialog allows you to specify a custom font for 24displayed correctly, and this dialog allows you to specify a custom font for
25each 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 25each 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
26interested in display correctly nothing needs to be done here. If a work 26interested in display correctly nothing needs to be done here. If a work
@@ -44,10 +44,10 @@
44 </td><td>Ehkä paras ilmainen Unicode-kirjasin, käsittää laajan joukon merkkejä.</td></tr><tr><td>44 </td><td>Ehkä paras ilmainen Unicode-kirjasin, käsittää laajan joukon merkkejä.</td></tr><tr><td>
45 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">45 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">
46 SIL unicode fonts</a>46 SIL unicode fonts</a>
47 </td><td>Erinomainen lingvistiikan kesäinstituutin unicode-kirjasin.</td></tr><tr><td>47 </td><td>Excellent Unicode fonts from the Summer Institute of Linguistics.</td></tr><tr><td>
48 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">48 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">
49 FreeFont</a>49 FreeFont</a>
50 </td><td>Uusi vapaa unicode-kirjasinaloite.</td></tr><tr><td>50 </td><td>A new free Unicode font initiative.</td></tr><tr><td>
51 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">51 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">
52 Crosswire's font directory</a>52 Crosswire's font directory</a>
53 </td><td>Useita kirjasimia saatavana Crosswire Bible Society Ftp -palvelimella.</td></tr><tr><td>53 </td><td>Useita kirjasimia saatavana Crosswire Bible Society Ftp -palvelimella.</td></tr><tr><td>
@@ -63,13 +63,13 @@
63TrueType Fonts in the Internet</a>), tai Alan Woodin (<a class="ulink" href="http://www.alanwood.net/unicode/fontsbyrange.html" target="_top"> Unicode character 63TrueType Fonts in the Internet</a>), tai Alan Woodin (<a class="ulink" href="http://www.alanwood.net/unicode/fontsbyrange.html" target="_top"> Unicode character
64ranges 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>64ranges 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>
65 <span class="guimenu">Desk</span>65 <span class="guimenu">Desk</span>
66 </h3></div></div></div><p>Monia Sword-taustaohjelman ominaisuuksia voidaan 66 </h3></div></div></div><p>Many features provided by the Sword backend can now be customized in
67räätälöidä<span class="application">BibleTime</span>-ohjelmassa. Nämä ominaisuudet on dokumentoitu oikealla 67<span class="application">BibleTime</span>. These features are documented right in the dialog. You also
68ikkunassa. Sinulla on mahdollisuus määritellä oletusteokset, joita 68have the possibility to specify standard works that should be used when no
69käytetään, jos yhtään teosta ei ole määritelty viitteenä. Esimerkki: 69specific work is specified in a reference. An example: The standard Bible is
70standardia Raamattua käytetään näyttämään Raamatun ristiviittauksien 70used to display the content of cross references in the Bible. When you hover
71sisältöjä. Kun siirrät hiiren niiden ylle, suurennuslasi näyttää viitattujen 71over then, the Mag will show the content of the verses referred to,
72jakeiden 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>72according 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>
73 <span class="guimenu">HotKeys</span>73 <span class="guimenu">HotKeys</span>
74 </h3></div></div></div><p>HotKeys are special key commands that can be used in the place of the menu 74 </h3></div></div></div><p>HotKeys are special key commands that can be used in the place of the menu
75items and icons. A number of <span class="application">BibleTime</span>'s commands have predefined HotKeys 75items and icons. A number of <span class="application">BibleTime</span>'s commands have predefined HotKeys
7676
=== modified file 'docs/handbook/fi/html/hdbk-intro.html'
--- docs/handbook/fi/html/hdbk-intro.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/html/hdbk-intro.html 2009-04-29 17:39:29 +0000
@@ -1,9 +1,8 @@
1<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 1<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
2kielillä. Edelleen laaja joukko teoksia on helppo asentaa ja hallinnoida 2and languages. Even large amounts of works modules are easy to install and
3moduuleina. Se on rakennettu <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a>-kirjastoon, joka tarjoaa 3manage. It is built on the <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library, which provides
4toiminnallisuuden <span class="application">BibleTime</span>:lle, kuten Raamatun tekstin näyttämiseen, 4the back-end functionality for <span class="application">BibleTime</span>, such as viewing Bible text,
5etsintään, jne. Sword on <a class="ulink" href="http://www.crosswire.org" target="_top">Crosswire 5searching 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
6Bible Societyn</a> lippulaiva.</p><p><span class="application">BibleTime</span> on suunniteltu käyttämään Sword-projektin mallien mukaisia
7teoksia. Tuettujen asiakirjamuotojen täydelliset tiedot löytyvät osoitteesta 6teoksia. Tuettujen asiakirjamuotojen täydelliset tiedot löytyvät osoitteesta
8Crosswire Bible Societyn Sword-projektin <a class="ulink" href="http://www.crosswire.org/sword/develop/index.jsp" target="_top">kehittäjien 7Crosswire Bible Societyn Sword-projektin <a class="ulink" href="http://www.crosswire.org/sword/develop/index.jsp" target="_top">kehittäjien
9osio</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> 8osio</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>
@@ -13,13 +12,13 @@
13include not only modern versions, but also ancient texts like the Codex 12include not only modern versions, but also ancient texts like the Codex
14Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is 13Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is
15the 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 14the 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
16Elish", 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 15Elish", 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
17"Notes on the Bible", Matthew Henryn kommentaarin ja Lutherin "Commentary on 16Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
18Galatians." <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 17With 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
19muistiinpanosi</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 18sections 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
20sisä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, 19sisä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,
21Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible 20Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
22Encyclopedia. Dictionaries available include Strong's Hebrew Bible 21Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
23Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged 22Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
24Dictionary 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 23Dictionary 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
25Jumalasuhteen kasvussa. Yritämme päästä siihen tehokkaalla, laadukkaalla 24Jumalasuhteen kasvussa. Yritämme päästä siihen tehokkaalla, laadukkaalla
2625
=== modified file 'docs/handbook/fi/html/hdbk-op-bookshelfmanager.html'
--- docs/handbook/fi/html/hdbk-op-bookshelfmanager.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/html/hdbk-op-bookshelfmanager.html 2009-04-29 17:39:29 +0000
@@ -1,11 +1,11 @@
1<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 1<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
2Bookshelf. You can install new works to your Bookshelf, and update or remove 2Bookshelf. You can install new works to your Bookshelf, and update or remove
3existing 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 3existing 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
4levyllä. Voit tallentaa sen jopa useampiin kansioihin. Oletus on 4drive. You can even store it in multiple directories. Default is
5"~/.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 5"~/.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
6kovalevyllesi vaan käyttää niitä suoraan CD:ltä, voit lisätä polun CD:lle 6disk, but use them directly from the CD, then you can add the path to the CD
7yhtenä kirjahyllyn polkuna. Kun aloitat <span class="application">BibleTime</span>-ohjelman, se näyttää 7as one of your bookshelf paths. When you start <span class="application">BibleTime</span>, it will show all
8sinulle 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 8works 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
9"library"), and transfer one or more works to your local Bookshelf. These 9"library"), and transfer one or more works to your local Bookshelf. These
10libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online 10libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online
11repository of Sword modules, or another site offering Sword modules). You 11repository of Sword modules, or another site offering Sword modules). You
1212
=== modified file 'docs/handbook/fi/html/hdbk-op-parts.html'
--- docs/handbook/fi/html/hdbk-op-parts.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/html/hdbk-op-parts.html 2009-04-29 17:39:29 +0000
@@ -42,7 +42,7 @@
42additional information (e.g., Strong's numbers), then this additional 42additional information (e.g., Strong's numbers), then this additional
43information will be displayed in the Mag, and not in the text itself. Just 43information will be displayed in the Mag, and not in the text itself. Just
44try 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 44try 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
45open 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 45open 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
46annotations 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>, 46annotations 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>,
47you can open works for reading simply by clicking on their symbol in the 47you can open works for reading simply by clicking on their symbol in the
48Bookshelf. A read window will open in the Desk's area. Every read window has 48Bookshelf. A read window will open in the Desk's area. Every read window has
@@ -64,6 +64,6 @@
64<span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit 64<span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit
65this work</span>and then either <span class="guimenuitem">Plain 65this work</span>and then either <span class="guimenuitem">Plain
66text</span>(source code editor) or 66text</span>(source code editor) or
67<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 67<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
68deactivated, please check if you have write permission for the files of the 68deactivated, please check if you have write permission for the files of the
69personal 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>69personal 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>
7070
=== modified file 'docs/handbook/fi/html/hdbk-op-search.html'
--- docs/handbook/fi/html/hdbk-op-search.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/html/hdbk-op-search.html 2009-04-29 17:39:29 +0000
@@ -24,7 +24,7 @@
24hakusanojen ryhmittelyn. Esim. '(Jeesus OR henki) AND Jumala'.</p><p>To search text other than the main text, enter the text type followed by 24hakusanojen ryhmittelyn. Esim. '(Jeesus OR henki) AND Jumala'.</p><p>To search text other than the main text, enter the text type followed by
25':', and then the search term. For example, to search for the Strong's 25':', and then the search term. For example, to search for the Strong's
26number H8077, use 'strong:H8077'.</p><p>Saatavana olevat tekstityypit: 26number H8077, use 'strong:H8077'.</p><p>Saatavana olevat tekstityypit:
27 </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 27 </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
28edistyksellistä ominaisuutta ja voit lukea niistä lisää osoitteessa: <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top"> 28edistyksellistä ominaisuutta ja voit lukea niistä lisää osoitteessa: <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top">
29http://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 29http://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
30by works. Clicking on a work with the <span class="mousebutton">right</span>mouse 30by works. Clicking on a work with the <span class="mousebutton">right</span>mouse
3131
=== modified file 'docs/handbook/fi/html/hdbk-reference-hotkeys.html'
--- docs/handbook/fi/html/hdbk-reference-hotkeys.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/html/hdbk-reference-hotkeys.html 2009-04-29 17:39:29 +0000
@@ -1,7 +1,7 @@
1<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 1<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
2handbook. The hotkeys are sorted (roughly) alphabetical. If you want to 2handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
3directly find out which hotkey a certain menu item has, you can either look 3directly find out which hotkey a certain menu item has, you can either look
4at the entry itelf in <span class="application">BibleTime</span> (as it always shows the hotkey), or you 4at the entry itself in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
5can 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>5can 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>
6 <span class="keycap"><strong>Left</strong></span>6 <span class="keycap"><strong>Left</strong></span>
7 </td><td>Siirtyy lukuikkunan historiassa taaksepäin.</td></tr><tr><td>7 </td><td>Siirtyy lukuikkunan historiassa taaksepäin.</td></tr><tr><td>
@@ -73,4 +73,4 @@
73 <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>73 <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>
74 <span class="keycap"><strong>F9</strong></span>74 <span class="keycap"><strong>F9</strong></span>
75 </td><td>75 </td><td>
76 <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>76 <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>
7777
=== modified file 'docs/handbook/fi/html/hdbk-reference-toolbar.html'
--- docs/handbook/fi/html/hdbk-reference-toolbar.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/html/hdbk-reference-toolbar.html 2009-04-29 17:39:29 +0000
@@ -6,5 +6,5 @@
6 </p><div class="variablelist"><dl><dt><span class="term">6 </p><div class="variablelist"><dl><dt><span class="term">
7 <span class="guimenu">7 <span class="guimenu">
8 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>8 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
9 </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ä 9 </span></dt><dd><p>Aseta työkalupalkit</p></dd></dl></div><p>Katso <a class="link" href="">tämä
10osio</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>10osio</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>
1111
=== modified file 'docs/handbook/fi/html/hdbk-reference.html'
--- docs/handbook/fi/html/hdbk-reference.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/html/hdbk-reference.html 2009-04-29 17:39:29 +0000
@@ -1,4 +1,4 @@
1<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">1<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">
2 File2 File
3 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">3 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-view">
4 View4 View
@@ -10,7 +10,7 @@
10 Settings10 Settings
11 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">11 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
12 Help12 Help
13 </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 13 </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
14main menu of <span class="application">BibleTime</span>. They are ordered in just the way they appear in 14main menu of <span class="application">BibleTime</span>. They are ordered in just the way they appear in
15<span class="application">BibleTime</span>, with all the sub-items listed under the major menu item they 15<span class="application">BibleTime</span>, with all the sub-items listed under the major menu item they
16belong to. You can also see the hotkey of each item;a complete listing of 16belong to. You can also see the hotkey of each item;a complete listing of
@@ -26,19 +26,22 @@
26haluatko tallettaa tallentamattomat muutokset levylle.</p></dd></dl></div><p>26haluatko tallettaa tallentamattomat muutokset levylle.</p></dd></dl></div><p>
27 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>27 </p></div><div class="sect2" lang="en"><div class="titlepage"><div><div><h3 class="title"><a name="hdbk-reference-menus-view"></a>
28 <span class="guimenu">View</span>28 <span class="guimenu">View</span>
29 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">29 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-view-fullscreenmode"></a><span class="term">
30 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Toolbar</span>30 <span class="guimenu">
31 <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>)
32 </span></dt><dd><p>
33 <span class="action">Toggles full screen display.</span> Toggle this setting to
34maximize the <span class="application">BibleTime</span> window.</p></dd><dt><a name="hdbk-reference-menus-view-showtoolbar"></a><span class="term">
35 <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>)
31 </span></dt><dd><p>36 </span></dt><dd><p>
32 <span class="action">Vaihtaa työkalupalkin näkymisen.</span> Vaihda tätä asetusta 37 <span class="action">Vaihtaa työkalupalkin näkymisen.</span> Vaihda tätä asetusta
33asettaaksesi päätyökalupalkin näkyviin tai piilotetuksi.</p></dd><dt><a name="hdbk-reference-menus-view-showbookshelf"></a><span class="term">38asettaaksesi päätyökalupalkin näkyviin tai piilotetuksi.</p></dd><dt><a name="hdbk-reference-menus-view-showbookshelf"></a><span class="term">
34 <span class="guimenu">39 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Bookshelf</span>
35 <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>)
36 </span></dt><dd><p>40 </span></dt><dd><p>
37 <span class="action">Vaihtaa kirjahyllyn näkymisen.</span> Vaihda tätä asetusta 41 <span class="action">Vaihtaa kirjahyllyn näkymisen.</span> Vaihda tätä asetusta
38asettaaksesi kirjahyllyn näkyviin tai piilotetuksi. Tämä on kätevää, jos 42asettaaksesi kirjahyllyn näkyviin tai piilotetuksi. Tämä on kätevää, jos
39haluat lisää tilaa suurennuslasille.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">43haluat lisää tilaa suurennuslasille.</p></dd><dt><a name="hdbk-reference-menus-view-showmag"></a><span class="term">
40 <span class="guimenu">44 <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show Mag</span>
41 <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>)
42 </span></dt><dd><p>45 </span></dt><dd><p>
43 <span class="action">Vaihtaa suurennuslasin näkymisen.</span> Vaihda tätä asetusta 46 <span class="action">Vaihtaa suurennuslasin näkymisen.</span> Vaihda tätä asetusta
44asettaaksesi suurennuslasin vasemmassa paneelissa näkyväksi tai 47asettaaksesi suurennuslasin vasemmassa paneelissa näkyväksi tai
@@ -91,17 +94,7 @@
91 </span></dt><dd><p>94 </span></dt><dd><p>
92 <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>95 <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>
93 <span class="guimenu">Settings</span>96 <span class="guimenu">Settings</span>
94 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-toolbars"></a><span class="term">97 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
95 <span class="guimenu">
96 <span class="inlinemediaobject"><img src="i_configuretoolbars.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure toolbars</span>
97 </span></dt><dd><p>
98 <span class="action">Opens a dialog where you can customize <span class="application">BibleTime</span>'s
99toolbar</span>. Just try it out, you can move around the toolbar buttons
100and even add new ones. Most of the entries available from the main menu can
101be put on the toolbar as buttons. If you need a certain feature often, you
102might want to put a button on the main menu, so that you can access it with
103only one click. Please see <a class="link" href="">this
104section</a> for further information.</p></dd><dt><a name="hdbk-reference-menus-settings-bibletime"></a><span class="term">
105 <span class="guimenu">98 <span class="guimenu">
106 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>99 <span class="inlinemediaobject"><img src="i_configure.png"></span>Settings</span> &#8594; <span class="guimenuitem">Configure <span class="application">BibleTime</span></span>
107 </span></dt><dd><p>100 </span></dt><dd><p>
@@ -115,4 +108,24 @@
115 <span class="action">Opens a dialog where you can change your Sword configuration and 108 <span class="action">Opens a dialog where you can change your Sword configuration and
116manage 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>109manage 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>
117 <span class="guimenu">Help</span>110 <span class="guimenu">Help</span>
118 </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>111 </h3></div></div></div><div class="variablelist"><dl><dt><a name="hdbk-reference-menus-help-bibletime"></a><span class="term">
112 <span class="guimenu">
113 <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>)
114 </span></dt><dd><p>
115 <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">
116 <span class="guimenu">
117 <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>)
118 </span></dt><dd><p>
119 <span class="action">Opens a guide on how to study the Bible</span> It is the hope of
120the <span class="application">BibleTime</span> team that this HowTo will provoke the readers to study the
121scriptures to see what they say. This particular study guide has been chosen
122as it takes care not to advocate any particular denominational doctrine. We
123expect you to read and study the scriptures to understand what they say. If
124you start with the attitude that you want to have the Lord sow his word in
125your heart He will not disappoint you.</p></dd><dt><a name="hdbk-reference-menus-help-about"></a><span class="term">
126 <span class="guimenu">Help</span> &#8594; <span class="guimenuitem">About</span>
127 </span></dt><dd><p>
128 <span class="action">Opens a window about <span class="application">BibleTime</span> project information</span>
129contains information about <span class="application">BibleTime</span> software version, project
130contributors, <span class="application">Sword</span> software version, <span class="application">Qt</span> software version and the
131license 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>
119132
=== modified file 'docs/handbook/fi/html/hdbk-term.html'
--- docs/handbook/fi/html/hdbk-term.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/html/hdbk-term.html 2009-04-24 02:10:38 +0000
@@ -3,8 +3,8 @@
3 </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 3 </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
4komentoriviltä. Käynnistääksesi <span class="application">BibleTime</span>-ohjelman, avaa terminaali-ikkuna 4komentoriviltä. Käynnistääksesi <span class="application">BibleTime</span>-ohjelman, avaa terminaali-ikkuna
5ja kirjoita: 5ja kirjoita:
6 </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, 6 </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,
7Fluxbox, OpenBox or Sawfish, providing the appropriate base libarires are 7Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
8already 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 8already 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
9<span class="application">BibleTime</span>n komennolla: 9<span class="application">BibleTime</span>n komennolla:
10 </p><pre class="screen">bibletime --open-default-bible10 </p><pre class="screen">bibletime --open-default-bible
1111
=== modified file 'docs/handbook/fi/html/index.html'
--- docs/handbook/fi/html/index.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fi/html/index.html 2009-04-29 17:39:29 +0000
@@ -1,5 +1,4 @@
1<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 1<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">
2Sword-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">
3 Display2 Display
4 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">3 </a></span></dt><dt><span class="sect2"><a href="hdbk-config.html#hdbk-config-bt-languages">
5 Languages4 Languages
@@ -19,4 +18,4 @@
19 Settings18 Settings
20 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">19 </a></span></dt><dt><span class="sect2"><a href="hdbk-reference.html#hdbk-reference-menus-help">
21 Help20 Help
22 </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>21 </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>
2322
=== modified file 'docs/handbook/fr/docbook/hdbk-config.docbook'
--- docs/handbook/fr/docbook/hdbk-config.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/docbook/hdbk-config.docbook 2009-04-24 02:10:38 +0000
@@ -31,7 +31,7 @@
31sentirez chez vous.</para>31sentirez chez vous.</para>
3232
33 <para>By default, &bibletime; uses the default system display font. You can 33 <para>By default, &bibletime; uses the default system display font. You can
34override this font if neccessary. Some languages require special fonts to be 34override this font if necessary. Some languages require special fonts to be
35displayed correctly, and this dialog allows you to specify a custom font for 35displayed correctly, and this dialog allows you to specify a custom font for
36each language.</para>36each language.</para>
37 <mediaobject>37 <mediaobject>
@@ -110,14 +110,14 @@
110 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">110 <ulink url="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads">
111 SIL unicode fonts</ulink>111 SIL unicode fonts</ulink>
112 </entry>112 </entry>
113 <entry>Excellentes polices Unicode du Summer Institute of Linguistics.</entry>113 <entry>Excellent Unicode fonts from the Summer Institute of Linguistics.</entry>
114 </row>114 </row>
115 <row>115 <row>
116 <entry>116 <entry>
117 <ulink url="http://www.nongnu.org/freefont/">117 <ulink url="http://www.nongnu.org/freefont/">
118 FreeFont</ulink>118 FreeFont</ulink>
119 </entry>119 </entry>
120 <entry>Une nouvelle initiative de police Unicode gratuite.</entry>120 <entry>A new free Unicode font initiative.</entry>
121 </row>121 </row>
122 <row>122 <row>
123 <entry>123 <entry>
@@ -161,14 +161,13 @@
161 <title>161 <title>
162 <guimenu>Desk</guimenu>162 <guimenu>Desk</guimenu>
163 </title>163 </title>
164 <para>De nombreuses fonctionnalités de Sword peuvent être configurées dans 164 <para>Many features provided by the Sword backend can now be customized in
165&bibletime;. Ces fonctionnalités sont documentées dans le dialogue. Ces 165&bibletime;. These features are documented right in the dialog. You also
166fonctionnalités Vous pouvez aussi désigner les modules standard à utiliser 166have the possibility to specify standard works that should be used when no
167quand aucune module spécifique n'est mentionnée dans la référence. Par 167specific work is specified in a reference. An example: The standard Bible is
168exemple, la bible standard est utilisée pour afficher le contenu de 168used to display the content of cross references in the Bible. When you hover
169références croisées dans la bible. Quand le pointeur de la souris passe au 169over then, the Mag will show the content of the verses referred to,
170dessus d'une de celles-ci, vous verrez le contenu des versets auquel il est 170according to the standard Bible you specified.</para>
171fait référence, d'après la bible standard que vous avez désignée.</para>
172 </sect2>171 </sect2>
173 <sect2 id="hdbk-config-bt-hotkeys">172 <sect2 id="hdbk-config-bt-hotkeys">
174 <title>173 <title>
175174
=== modified file 'docs/handbook/fr/docbook/hdbk-intro.docbook'
--- docs/handbook/fr/docbook/hdbk-intro.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/docbook/hdbk-intro.docbook 2009-04-29 17:39:29 +0000
@@ -3,7 +3,7 @@
3 <sect1 id="hdbk-intro-about">3 <sect1 id="hdbk-intro-about">
4 <title>About &bibletime;</title>4 <title>About &bibletime;</title>
5 <para>&bibletime; is a Bible study tool with support for different types of texts 5 <para>&bibletime; is a Bible study tool with support for different types of texts
6and languages. Even large amounts of works modules) are easy to install and 6and languages. Even large amounts of works modules are easy to install and
7manage. It is built on the <ulink 7manage. It is built on the <ulink
8url="http://www.crosswire.org/sword">Sword</ulink> library, which provides 8url="http://www.crosswire.org/sword">Sword</ulink> library, which provides
9the back-end functionality for &bibletime;, such as viewing Bible text, 9the back-end functionality for &bibletime;, such as viewing Bible text,
@@ -43,7 +43,7 @@
43 <term>Commentaires</term>43 <term>Commentaires</term>
44 <listitem>44 <listitem>
45 <para>Commentaries available include classics like John Wesley's "Notes on the 45 <para>Commentaries available include classics like John Wesley's "Notes on the
46Bible", Matthew Henry`s commentary and Luther's "Commentary on Galatians." 46Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
47With the <emphasis>Personal</emphasis> commentary you can <link 47With the <emphasis>Personal</emphasis> commentary you can <link
48linkend="hdbk-op-parts-desk-write"> record your own personal notes</link> to 48linkend="hdbk-op-parts-desk-write"> record your own personal notes</link> to
49sections of the Bible.</para>49sections of the Bible.</para>
@@ -60,12 +60,11 @@
60 <varlistentry>60 <varlistentry>
61 <term>Lexiques et dictionnaires</term>61 <term>Lexiques et dictionnaires</term>
62 <listitem>62 <listitem>
63 <para>Les lexiques comprennent: les "Morphological Analysis Codes" de Robinson, le 63 <para>Lexicons available include: Robinson's Morphological Analysis Codes,
64"Hebrew Lexicon" de Brown-Driver-Briggs et l'"International Standard Bible 64Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
65Encyclopedia". Les dictionnaires disponibles comprennent le "Hebrew Bible 65Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
66Dictionary" de Strong, le "Greek Bible Dictionary"de Strong, "Unabridged 66Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
67Dictionary of the English Language" de Webster revu en 1913 et la "Topical 67Dictionary of the English Language 1913, Nave's Topical Bible.</para>
68Bible" de Nave.</para>
69 </listitem>68 </listitem>
70 </varlistentry>69 </varlistentry>
71 </variablelist></para>70 </variablelist></para>
7271
=== modified file 'docs/handbook/fr/docbook/hdbk-operation.docbook'
--- docs/handbook/fr/docbook/hdbk-operation.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/docbook/hdbk-operation.docbook 2009-04-29 17:39:29 +0000
@@ -113,7 +113,7 @@
113 <title>Le bureau</title>113 <title>Le bureau</title>
114 <para>The Desk is where the real work with &bibletime; takes place. Here you can 114 <para>The Desk is where the real work with &bibletime; takes place. Here you can
115open works from the Bookshelf, read them, <link 115open works from the Bookshelf, read them, <link
116linkend="hdbk-op-search">search</link>in them, and even save your 116linkend="hdbk-op-search">search</link> in them, and even save your
117annotations in the personal commentary module (see <link 117annotations in the personal commentary module (see <link
118linkend="hdbk-op-parts-desk-write">below</link>).</para>118linkend="hdbk-op-parts-desk-write">below</link>).</para>
119119
@@ -156,7 +156,7 @@
156<guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>156<guimenuitem>HTML</guimenuitem>(basic gui wysiwyg editor).</para>
157157
158 <tip>158 <tip>
159 <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice>is 159 <para>If <menuchoice> <guimenu>Edit this work</guimenu> </menuchoice> is
160deactivated, please check if you have write permission for the files of the 160deactivated, please check if you have write permission for the files of the
161personal commentary.</para>161personal commentary.</para>
162 </tip>162 </tip>
@@ -237,6 +237,7 @@
237number H8077, use 'strong:H8077'.</para>237number H8077, use 'strong:H8077'.</para>
238 <para>Available text types: 238 <para>Available text types:
239 <table id="hd-op-search-config-syntax-table">239 <table id="hd-op-search-config-syntax-table">
240 <title>Search Types</title>
240 <tgroup cols="2">241 <tgroup cols="2">
241 <thead>242 <thead>
242 <row>243 <row>
@@ -314,18 +315,17 @@
314Bookshelf. You can install new works to your Bookshelf, and update or remove 315Bookshelf. You can install new works to your Bookshelf, and update or remove
315existing works from your Bookshelf. Access it by clicking <menuchoice> 316existing works from your Bookshelf. Access it by clicking <menuchoice>
316<guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem> 317<guimenu>Settings</guimenu> <guimenuitem>Bookshelf Manager</guimenuitem>
317</menuchoice>in the main menu.</para>318</menuchoice> in the main menu.</para>
318 <sect2 id="hdbk-op-bookshelfmanager-path">319 <sect2 id="hdbk-op-bookshelfmanager-path">
319 <title>Configurer les chemins vers les bibliothèques</title>320 <title>Configurer les chemins vers les bibliothèques</title>
320 <para>Vous pouvez désigner ici l'endroit où &bibletime; garde votre bibliothèque 321 <para>Here you can specify where &bibletime; may store your Bookshelf on the hard
321sur le disque dur. Vous pouvez même la placer dnas plusieurs répertoires. Le 322drive. You can even store it in multiple directories. Default is
322répertoire par défaut est "~/.sword/".</para>323"~/.sword/".</para>
323 <tip>324 <tip>
324 <para>Si vous avez un CD Sword, mais que vous ne voulez pas installer les modules 325 <para>If you have a sword CD, but do not want to install all the works on the hard
325sur le disque mais plutôt les consulter directement sur le CD; vous pouvez 326disk, but use them directly from the CD, then you can add the path to the CD
326ajouter le chemin du CD dans vos chemins vers les bibliothèques. Quand vous 327as one of your bookshelf paths. When you start &bibletime;, it will show all
327lancez &bibletime;, si le CD est présent, les modules qu'il contient 328works on the CD if it is present.</para>
328s'afficheront dans la bibliothèque.</para>
329 </tip>329 </tip>
330 </sect2>330 </sect2>
331 <sect2 id="hdbk-op-bookshelfmanager-installupdate">331 <sect2 id="hdbk-op-bookshelfmanager-installupdate">
332332
=== modified file 'docs/handbook/fr/docbook/hdbk-reference.docbook'
--- docs/handbook/fr/docbook/hdbk-reference.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/docbook/hdbk-reference.docbook 2009-04-29 17:39:29 +0000
@@ -39,16 +39,47 @@
39 </variablelist>39 </variablelist>
40 </para>40 </para>
41 </sect2>41 </sect2>
42
42 <sect2 id="hdbk-reference-menus-view">43 <sect2 id="hdbk-reference-menus-view">
43 <title>44 <title>
44 <guimenu>View</guimenu>45 <guimenu>View</guimenu>
45 </title>46 </title>
47
46 <variablelist>48 <variablelist>
49 <varlistentry id="hdbk-reference-menus-view-fullscreenmode">
50 <term>
51 <menuchoice>
52 <shortcut>
53 <keycombo action="simul">
54 <keycap>F5</keycap>
55 </keycombo>
56 </shortcut>
57 <guimenu>
58 <inlinemediaobject>
59 <imageobject>
60 <imagedata fileref="i_window_fullscreen.png" format="PNG" />
61 </imageobject>
62 </inlinemediaobject>View</guimenu>
63 <guimenuitem>Fullscreen mode</guimenuitem>
64 </menuchoice>
65 </term>
66 <listitem>
67 <para>
68 <action>Toggles full screen display.</action> Toggle this setting to
69maximize the &bibletime; window.</para>
70 </listitem>
71 </varlistentry>
72
47 <varlistentry id="hdbk-reference-menus-view-showtoolbar">73 <varlistentry id="hdbk-reference-menus-view-showtoolbar">
48 <term>74 <term>
49 <menuchoice>75 <menuchoice>
76 <shortcut>
77 <keycombo action="simul">
78 <keycap>F6</keycap>
79 </keycombo>
80 </shortcut>
50 <guimenu>View</guimenu>81 <guimenu>View</guimenu>
51 <guimenuitem>Show Toolbar</guimenuitem>82 <guimenuitem>Show toolbar</guimenuitem>
52 </menuchoice>83 </menuchoice>
53 </term>84 </term>
54 <listitem>85 <listitem>
@@ -57,20 +88,11 @@
57de faire apparaître ou disparaître la barre d'outil.</para>88de faire apparaître ou disparaître la barre d'outil.</para>
58 </listitem>89 </listitem>
59 </varlistentry>90 </varlistentry>
91
60 <varlistentry id="hdbk-reference-menus-view-showbookshelf">92 <varlistentry id="hdbk-reference-menus-view-showbookshelf">
61 <term>93 <term>
62 <menuchoice>94 <menuchoice>
63 <shortcut>95 <guimenu>View</guimenu>
64 <keycombo action="simul">
65 <keycap>F9</keycap>
66 </keycombo>
67 </shortcut>
68 <guimenu>
69 <inlinemediaobject>
70 <imageobject>
71 <imagedata fileref="i_sidetree.png" format="PNG" />
72 </imageobject>
73 </inlinemediaobject>View</guimenu>
74 <guimenuitem>Show Bookshelf</guimenuitem>96 <guimenuitem>Show Bookshelf</guimenuitem>
75 </menuchoice>97 </menuchoice>
76 </term>98 </term>
@@ -82,20 +104,11 @@
82zoom.</para>104zoom.</para>
83 </listitem>105 </listitem>
84 </varlistentry>106 </varlistentry>
107
85 <varlistentry id="hdbk-reference-menus-view-showmag">108 <varlistentry id="hdbk-reference-menus-view-showmag">
86 <term>109 <term>
87 <menuchoice>110 <menuchoice>
88 <shortcut>111 <guimenu>View</guimenu>
89 <keycombo action="simul">
90 <keycap>F8</keycap>
91 </keycombo>
92 </shortcut>
93 <guimenu>
94 <inlinemediaobject>
95 <imageobject>
96 <imagedata fileref="i_sidetree.png" format="PNG" />
97 </imageobject>
98 </inlinemediaobject>View</guimenu>
99 <guimenuitem>Show Mag</guimenuitem>112 <guimenuitem>Show Mag</guimenuitem>
100 </menuchoice>113 </menuchoice>
101 </term>114 </term>
@@ -290,30 +303,6 @@
290 <guimenu>Settings</guimenu>303 <guimenu>Settings</guimenu>
291 </title>304 </title>
292 <variablelist>305 <variablelist>
293 <varlistentry id="hdbk-reference-menus-settings-toolbars">
294 <term>
295 <menuchoice>
296 <guimenu>
297 <inlinemediaobject>
298 <imageobject>
299 <imagedata fileref="i_configuretoolbars.png"
300 format="PNG" />
301 </imageobject>
302 </inlinemediaobject>Settings</guimenu>
303 <guimenuitem>Configure toolbars</guimenuitem>
304 </menuchoice>
305 </term>
306 <listitem>
307 <para>
308 <action>Opens a dialog where you can customize &bibletime;'s
309toolbar</action>. Just try it out, you can move around the toolbar buttons
310and even add new ones. Most of the entries available from the main menu can
311be put on the toolbar as buttons. If you need a certain feature often, you
312might want to put a button on the main menu, so that you can access it with
313only one click. Please see <link linkend="hdbk-config-toolbar">this
314section</link> for further information.</para>
315 </listitem>
316 </varlistentry>
317 <varlistentry id="hdbk-reference-menus-settings-bibletime">306 <varlistentry id="hdbk-reference-menus-settings-bibletime">
318 <term>307 <term>
319 <menuchoice>308 <menuchoice>
@@ -362,46 +351,90 @@
362 </varlistentry>351 </varlistentry>
363 </variablelist>352 </variablelist>
364 </sect2>353 </sect2>
354
365 <sect2 id="hdbk-reference-menus-help">355 <sect2 id="hdbk-reference-menus-help">
366 <title>356 <title>
367 <guimenu>Help</guimenu>357 <guimenu>Help</guimenu>
368 </title>TODO: ADD</sect2>358 </title>
369 </sect1>359 <variablelist>
370 <sect1 id="hdbk-reference-toolbar">360 <varlistentry id="hdbk-reference-menus-help-bibletime">
371 <title>Référence de la barre d'outils</title>361 <term>
372 <para>Consultez la <link linkend="hdbk-reference-menus">référence des menus</link> 362 <menuchoice>
373pour une explication des boutons de la barre d'outils. Vous pouvez aussi 363 <shortcut>
374<action>placer le pointeur sur un bouton et attendre quelques 364 <keycombo action="simul">
375seconde</action> pour afficher une courte description du bouton.</para>365 <keycap>F1</keycap>
376 <para>Vous pouvez adapter la barre d'outils à vos besoins, par le choix suivant 366 </keycombo>
377dans le menu principal: 367 </shortcut>
378 <variablelist>368 <guimenu>
379 <varlistentry>369 <inlinemediaobject>
380 <term>370 <imageobject>
381 <menuchoice>371 <imagedata fileref="i_contents2.png" format="PNG" />
382 <guimenu>372 </imageobject>
383 <inlinemediaobject>373 </inlinemediaobject>Help</guimenu>
384 <imageobject>374 <guimenuitem>Handbook</guimenuitem>
385 <imagedata fileref="i_configuretoolbars.png"375 </menuchoice>
386 format="PNG" />376 </term>
387 </imageobject>377 <listitem>
388 </inlinemediaobject>Settings</guimenu>378 <para>
389 <guimenuitem>Configure toolbars</guimenuitem>379 <action>Opens &bibletime;'s user guide</action> You are reading it now.</para>
390 </menuchoice>380 </listitem>
391 </term>381 </varlistentry>
392 <listitem>382
393 <para>Configurer les barres d'outils</para>383 <varlistentry id="hdbk-reference-menus-help-bible_study_howto">
394 </listitem>384 <term>
395 </varlistentry>385 <menuchoice>
396 </variablelist>Please see <link linkend="hdbk-reference-menus-settings-toolbars">this 386 <shortcut>
397section</link> for detailed instructions.</para>387 <keycombo action="simul">
398 </sect1>388 <keycap>F2</keycap>
389 </keycombo>
390 </shortcut>
391 <guimenu>
392 <inlinemediaobject>
393 <imageobject>
394 <imagedata fileref="i_contents2.png"
395 format="PNG" />
396 </imageobject>
397 </inlinemediaobject>Help</guimenu>
398 <guimenuitem>Bible Study Howto</guimenuitem>
399 </menuchoice>
400 </term>
401 <listitem>
402 <para>
403 <action>Opens a guide on how to study the Bible</action> It is the hope of
404the &bibletime; team that this HowTo will provoke the readers to study the
405scriptures to see what they say. This particular study guide has been chosen
406as it takes care not to advocate any particular denominational doctrine. We
407expect you to read and study the scriptures to understand what they say. If
408you start with the attitude that you want to have the Lord sow his word in
409your heart He will not disappoint you.</para>
410 </listitem>
411 </varlistentry>
412
413 <varlistentry id="hdbk-reference-menus-help-about">
414 <term>
415 <menuchoice>
416 <guimenu>Help</guimenu>
417 <guimenuitem>About</guimenuitem>
418 </menuchoice>
419 </term>
420 <listitem>
421 <para>
422 <action>Opens a window about &bibletime; project information</action>
423contains information about &bibletime; software version, project
424contributors, &sword; software version, &qt; software version and the
425license agreement.</para>
426 </listitem>
427 </varlistentry>
428 </variablelist>
429 </sect2>
430 </sect1>
431
399 <sect1 id="hdbk-reference-hotkeys">432 <sect1 id="hdbk-reference-hotkeys">
400 <title>Index des raccourcis</title>433 <title>Index des raccourcis</title>
401 <para>This is index of all hotkeys and their corresponding description in the 434 <para>This is index of all hotkeys and their corresponding description in the
402handbook. The hotkeys are sorted (roughly) alphabetical. If you want to 435handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
403directly find out which hotkey a certain menu item has, you can either look 436directly find out which hotkey a certain menu item has, you can either look
404at the entry itelf in &bibletime; (as it always shows the hotkey), or you 437at the entry itself in &bibletime; (as it always shows the hotkey), or you
405can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>438can look it up in <link linkend="hdbk-reference-menus">this section</link>.</para>
406 <informaltable>439 <informaltable>
407 <tgroup cols="2">440 <tgroup cols="2">
408441
=== modified file 'docs/handbook/fr/docbook/hdbk-start.docbook'
--- docs/handbook/fr/docbook/hdbk-start.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/docbook/hdbk-start.docbook 2009-04-24 02:10:38 +0000
@@ -16,12 +16,12 @@
16 </mediaobject></para>16 </mediaobject></para>
17 <para>&bibletime; can also be launched from a terminal command prompt. To launch 17 <para>&bibletime; can also be launched from a terminal command prompt. To launch
18&bibletime;, open a terminal window and type: 18&bibletime;, open a terminal window and type:
19 <screen>bibletime</screen></para>19 <screen>&bibletime;</screen></para>
20 </sect2>20 </sect2>
21 <sect2 id="hdbk-start-otherwm">21 <sect2 id="hdbk-start-otherwm">
22 <title>Autres gestionnaires de fenêtres</title>22 <title>Autres gestionnaires de fenêtres</title>
23 <para>&bibletime; can be used with other window managers such as Gnome, BlackBox, 23 <para>&bibletime; can be used with other window managers such as Gnome, BlackBox,
24Fluxbox, OpenBox or Sawfish, providing the appropriate base libarires are 24Fluxbox, OpenBox or Sawfish, providing the appropriate base libraries are
25already installed on your computer.</para>25already installed on your computer.</para>
26 </sect2>26 </sect2>
27 <sect2 id="hdbk-start-custom">27 <sect2 id="hdbk-start-custom">
2828
=== modified file 'docs/handbook/fr/docbook/index.docbook'
--- docs/handbook/fr/docbook/index.docbook 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/docbook/index.docbook 2009-04-29 17:39:29 +0000
@@ -5,6 +5,7 @@
5 <!ENTITY bibletime '<application>BibleTime</application>'>5 <!ENTITY bibletime '<application>BibleTime</application>'>
6 <!ENTITY sword '<application>Sword</application>'>6 <!ENTITY sword '<application>Sword</application>'>
7 <!ENTITY kde '<application>KDE</application>'>7 <!ENTITY kde '<application>KDE</application>'>
8 <!ENTITY qt '<application>Qt</application>'>
89
9 <!ENTITY Shift 'Shift'>10 <!ENTITY Shift 'Shift'>
10 <!ENTITY Ctrl 'Ctrl'>11 <!ENTITY Ctrl 'Ctrl'>
@@ -46,10 +47,10 @@
46 <legalnotice>47 <legalnotice>
47 <para>Le manuel &bibletime; fait partie de &bibletime;.</para>48 <para>Le manuel &bibletime; fait partie de &bibletime;.</para>
48 </legalnotice>49 </legalnotice>
49 <date>2005-08</date>50 <date>2009-04</date>
50 <releaseinfo>2.0</releaseinfo>51 <releaseinfo>2.0</releaseinfo>
51 <abstract>52 <abstract>
52 <para>&bibletime; is a Bible study tool based on the Sword framwork.</para>53 <para>&bibletime; is a Bible study tool based on the Sword framework.</para>
53 </abstract>54 </abstract>
54 <keywordset>55 <keywordset>
55 <keyword>QT4</keyword>56 <keyword>QT4</keyword>
5657
=== modified file 'docs/handbook/fr/html/hdbk-config.html'
--- docs/handbook/fr/html/hdbk-config.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/html/hdbk-config.html 2009-04-24 02:10:38 +0000
@@ -20,7 +20,7 @@
20 </h3></div></div></div><p>Vous pouvez choisir ici la langue utilisée pour afficher les noms de 20 </h3></div></div></div><p>Vous pouvez choisir ici la langue utilisée pour afficher les noms de
21livres. Choisissez votre langue maternelle. Si elle est disponible vous vous 21livres. Choisissez votre langue maternelle. Si elle est disponible vous vous
22sentirez chez vous.</p><p>By default, <span class="application">BibleTime</span> uses the default system display font. You can 22sentirez chez vous.</p><p>By default, <span class="application">BibleTime</span> uses the default system display font. You can
23override this font if neccessary. Some languages require special fonts to be 23override this font if necessary. Some languages require special fonts to be
24displayed correctly, and this dialog allows you to specify a custom font for 24displayed correctly, and this dialog allows you to specify a custom font for
25each 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 25each 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
26interested in display correctly nothing needs to be done here. If a work 26interested in display correctly nothing needs to be done here. If a work
@@ -45,10 +45,10 @@
45spectre de caractères.</td></tr><tr><td>45spectre de caractères.</td></tr><tr><td>
46 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">46 <a class="ulink" href="http://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&amp;cat_id=FontDownloads" target="_top">
47 SIL unicode fonts</a>47 SIL unicode fonts</a>
48 </td><td>Excellentes polices Unicode du Summer Institute of Linguistics.</td></tr><tr><td>48 </td><td>Excellent Unicode fonts from the Summer Institute of Linguistics.</td></tr><tr><td>
49 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">49 <a class="ulink" href="http://www.nongnu.org/freefont/" target="_top">
50 FreeFont</a>50 FreeFont</a>
51 </td><td>Une nouvelle initiative de police Unicode gratuite.</td></tr><tr><td>51 </td><td>A new free Unicode font initiative.</td></tr><tr><td>
52 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">52 <a class="ulink" href="ftp://ftp.crosswire.org/pub/sword/iso/latest/FONTS" target="_top">
53 Crosswire's font directory</a>53 Crosswire's font directory</a>
54 </td><td>Plusieurs polices sont disponibles sur le serveur ftp de la Crosswire Bible 54 </td><td>Plusieurs polices sont disponibles sur le serveur ftp de la Crosswire Bible
@@ -65,14 +65,13 @@
65TrueType 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 65TrueType 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
66ranges 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>66ranges 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>
67 <span class="guimenu">Desk</span>67 <span class="guimenu">Desk</span>
68 </h3></div></div></div><p>De nombreuses fonctionnalités de Sword peuvent être configurées dans 68 </h3></div></div></div><p>Many features provided by the Sword backend can now be customized in
69<span class="application">BibleTime</span>. Ces fonctionnalités sont documentées dans le dialogue. Ces 69<span class="application">BibleTime</span>. These features are documented right in the dialog. You also
70fonctionnalités Vous pouvez aussi désigner les modules standard à utiliser 70have the possibility to specify standard works that should be used when no
71quand aucune module spécifique n'est mentionnée dans la référence. Par 71specific work is specified in a reference. An example: The standard Bible is
72exemple, la bible standard est utilisée pour afficher le contenu de 72used to display the content of cross references in the Bible. When you hover
73références croisées dans la bible. Quand le pointeur de la souris passe au 73over then, the Mag will show the content of the verses referred to,
74dessus d'une de celles-ci, vous verrez le contenu des versets auquel il est 74according 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>
75fait 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>
76 <span class="guimenu">HotKeys</span>75 <span class="guimenu">HotKeys</span>
77 </h3></div></div></div><p>Les Racourcis sont des commandes au clavier qui peuvent être utilisée à la 76 </h3></div></div></div><p>Les Racourcis sont des commandes au clavier qui peuvent être utilisée à la
78place des menus et des icônes. Plusieurs commandes <span class="application">BibleTime</span> onts des 77place des menus et des icônes. Plusieurs commandes <span class="application">BibleTime</span> onts des
7978
=== modified file 'docs/handbook/fr/html/hdbk-intro.html'
--- docs/handbook/fr/html/hdbk-intro.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/html/hdbk-intro.html 2009-04-29 17:39:29 +0000
@@ -1,5 +1,5 @@
1<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 1<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
2and languages. Even large amounts of works modules) are easy to install and 2and languages. Even large amounts of works modules are easy to install and
3manage. It is built on the <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library, which provides 3manage. It is built on the <a class="ulink" href="http://www.crosswire.org/sword" target="_top">Sword</a> library, which provides
4the back-end functionality for <span class="application">BibleTime</span>, such as viewing Bible text, 4the back-end functionality for <span class="application">BibleTime</span>, such as viewing Bible text,
5searching 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 5searching 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
@@ -14,16 +14,15 @@
14Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is 14Leningradensis ("WLC", Hebrew), and the Septuagint ("LXX", Greek). This is
15the 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: 15the 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:
16The Complete Works"</p></dd><dt><span class="term">Commentaires</span></dt><dd><p>Commentaries available include classics like John Wesley's "Notes on the 16The Complete Works"</p></dd><dt><span class="term">Commentaires</span></dt><dd><p>Commentaries available include classics like John Wesley's "Notes on the
17Bible", Matthew Henry`s commentary and Luther's "Commentary on Galatians." 17Bible", Matthew Henry's commentary and Luther's "Commentary on Galatians."
18With 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 18With 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
19sections 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 19sections 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
20Dieu. Parmi les modules disponibles, Daily Light on the Daily Path, et les 20Dieu. Parmi les modules disponibles, Daily Light on the Daily Path, et les
21Losungen.</p></dd><dt><span class="term">Lexiques et dictionnaires</span></dt><dd><p>Les lexiques comprennent: les "Morphological Analysis Codes" de Robinson, le 21Losungen.</p></dd><dt><span class="term">Lexiques et dictionnaires</span></dt><dd><p>Lexicons available include: Robinson's Morphological Analysis Codes,
22"Hebrew Lexicon" de Brown-Driver-Briggs et l'"International Standard Bible 22Brown-Driver-Briggs Hebrew Lexicon and the International Standard Bible
23Encyclopedia". Les dictionnaires disponibles comprennent le "Hebrew Bible 23Encyclopaedia. Dictionaries available include Strong's Hebrew Bible
24Dictionary" de Strong, le "Greek Bible Dictionary"de Strong, "Unabridged 24Dictionary, Strong's Greek Bible Dictionary, Webster's Revised Unabridged
25Dictionary of the English Language" de Webster revu en 1913 et la "Topical 25Dictionary 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
26Bible" 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
27relationship with Him. We have striven to make this a powerful, quality 26relationship with Him. We have striven to make this a powerful, quality
28program, and still make it simple and intuitive to operate. It is our desire 27program, and still make it simple and intuitive to operate. It is our desire
29that 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 28that 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
3029
=== modified file 'docs/handbook/fr/html/hdbk-op-bookshelfmanager.html'
--- docs/handbook/fr/html/hdbk-op-bookshelfmanager.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/html/hdbk-op-bookshelfmanager.html 2009-04-29 17:39:29 +0000
@@ -1,12 +1,11 @@
1<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 1<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
2Bookshelf. You can install new works to your Bookshelf, and update or remove 2Bookshelf. You can install new works to your Bookshelf, and update or remove
3existing 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 3existing 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
4sur le disque dur. Vous pouvez même la placer dnas plusieurs répertoires. Le 4drive. You can even store it in multiple directories. Default is
5ré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 5"~/.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
6sur le disque mais plutôt les consulter directement sur le CD; vous pouvez 6disk, but use them directly from the CD, then you can add the path to the CD
7ajouter le chemin du CD dans vos chemins vers les bibliothèques. Quand vous 7as one of your bookshelf paths. When you start <span class="application">BibleTime</span>, it will show all
8lancez <span class="application">BibleTime</span>, si le CD est présent, les modules qu'il contient 8works 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
9s'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
10"library"), and transfer one or more works to your local Bookshelf. These 9"library"), and transfer one or more works to your local Bookshelf. These
11libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online 10libraries may be local (e.g. a Sword CD), or remote (e.g. Crosswire's online
12repository of Sword modules, or another site offering Sword modules). You 11repository of Sword modules, or another site offering Sword modules). You
1312
=== modified file 'docs/handbook/fr/html/hdbk-op-parts.html'
--- docs/handbook/fr/html/hdbk-op-parts.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/html/hdbk-op-parts.html 2009-04-29 17:39:29 +0000
@@ -42,7 +42,7 @@
42au-dessus d'un passage avec une information complémentaire (les uméros 42au-dessus d'un passage avec une information complémentaire (les uméros
43Strong par exemple), cette information est affichée dans le zoom, et pas 43Strong par exemple), cette information est affichée dans le zoom, et pas
44dans 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 44dans 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
45open 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 45open 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
46annotations 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à 46annotations 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à
47vu</a>, vous pouvez ouvrir des modules pour les lire en cliquant 47vu</a>, vous pouvez ouvrir des modules pour les lire en cliquant
48simplement sur leur icône dans la bibliothèque. Une fenêtre de lecture 48simplement sur leur icône dans la bibliothèque. Une fenêtre de lecture
@@ -64,7 +64,7 @@
64<span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit 64<span class="mousebutton">right</span>mouse button and then select <span class="guimenu">Edit
65this work</span>and then either <span class="guimenuitem">Plain 65this work</span>and then either <span class="guimenuitem">Plain
66text</span>(source code editor) or 66text</span>(source code editor) or
67<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 67<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
68deactivated, please check if you have write permission for the files of the 68deactivated, please check if you have write permission for the files of the
69personal 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 69personal 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
70will 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>70will 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>
7171
=== modified file 'docs/handbook/fr/html/hdbk-op-search.html'
--- docs/handbook/fr/html/hdbk-op-search.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/html/hdbk-op-search.html 2009-04-29 17:39:29 +0000
@@ -24,7 +24,7 @@
24search terms, e.g. '(Jesus OR spirit) AND God'.</p><p>To search text other than the main text, enter the text type followed by 24search terms, e.g. '(Jesus OR spirit) AND God'.</p><p>To search text other than the main text, enter the text type followed by
25':', and then the search term. For example, to search for the Strong's 25':', and then the search term. For example, to search for the Strong's
26number H8077, use 'strong:H8077'.</p><p>Available text types: 26number H8077, use 'strong:H8077'.</p><p>Available text types:
27 </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 27 </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
28many advanced features, and you can read more about it here: <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top"> 28many advanced features, and you can read more about it here: <a class="ulink" href="http://lucene.apache.org/java/docs/index.html" target="_top">
29http://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 29http://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
30by works. Clicking on a work with the <span class="mousebutton">right</span>mouse 30by works. Clicking on a work with the <span class="mousebutton">right</span>mouse
3131
=== modified file 'docs/handbook/fr/html/hdbk-reference-hotkeys.html'
--- docs/handbook/fr/html/hdbk-reference-hotkeys.html 2009-04-05 07:01:43 +0000
+++ docs/handbook/fr/html/hdbk-reference-hotkeys.html 2009-04-29 17:39:29 +0000
@@ -1,7 +1,7 @@
1<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 1<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
2handbook. The hotkeys are sorted (roughly) alphabetical. If you want to 2handbook. The hotkeys are sorted (roughly) alphabetical. If you want to
3directly find out which hotkey a certain menu item has, you can either look 3directly find out which hotkey a certain menu item has, you can either look
4at the entry itelf in <span class="application">BibleTime</span> (as it always shows the hotkey), or you 4at the entry itself in <span class="application">BibleTime</span> (as it always shows the hotkey), or you
5can 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>5can 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>
6 <span class="keycap"><strong>Left</strong></span>6 <span class="keycap"><strong>Left</strong></span>
7 </td><td>Retourne en arrière dans l'historique de la fenêtre de lecture.</td></tr><tr><td>7 </td><td>Retourne en arrière dans l'historique de la fenêtre de lecture.</td></tr><tr><td>
@@ -74,4 +74,4 @@
74 <span class="keycap"><strong>F9</strong></span>74 <span class="keycap"><strong>F9</strong></span>
75 </td><td>75 </td><td>
76 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag"> <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show mag</span> 76 <a class="link" href="hdbk-reference.html#hdbk-reference-menus-view-showmag"> <span class="guimenu">View</span> &#8594; <span class="guimenuitem">Show mag</span>
77</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>77</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