You can subscribe to this list here.
| 2003 |
Jan
(30) |
Feb
(48) |
Mar
(18) |
Apr
(25) |
May
(17) |
Jun
(22) |
Jul
(52) |
Aug
(39) |
Sep
(31) |
Oct
(18) |
Nov
(99) |
Dec
(232) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(88) |
Feb
(63) |
Mar
(65) |
Apr
(24) |
May
(30) |
Jun
(6) |
Jul
(14) |
Aug
(27) |
Sep
(9) |
Oct
(20) |
Nov
(4) |
Dec
(11) |
| 2005 |
Jan
(57) |
Feb
(79) |
Mar
(81) |
Apr
(11) |
May
(8) |
Jun
(9) |
Jul
(31) |
Aug
(2) |
Sep
|
Oct
|
Nov
(7) |
Dec
(63) |
| 2006 |
Jan
|
Feb
(10) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(6) |
Aug
(36) |
Sep
(44) |
Oct
(9) |
Nov
(5) |
Dec
(14) |
| 2008 |
Jan
(44) |
Feb
(6) |
Mar
(25) |
Apr
(17) |
May
(24) |
Jun
(9) |
Jul
(62) |
Aug
(51) |
Sep
(39) |
Oct
(17) |
Nov
(90) |
Dec
(165) |
| 2009 |
Jan
(92) |
Feb
(150) |
Mar
(106) |
Apr
(107) |
May
(95) |
Jun
(22) |
Jul
(54) |
Aug
(80) |
Sep
(133) |
Oct
(42) |
Nov
(26) |
Dec
(153) |
| 2010 |
Jan
(72) |
Feb
(1) |
Mar
(58) |
Apr
(77) |
May
(57) |
Jun
(12) |
Jul
(19) |
Aug
(61) |
Sep
(57) |
Oct
(66) |
Nov
(14) |
Dec
(9) |
| 2011 |
Jan
(6) |
Feb
(3) |
Mar
(5) |
Apr
(8) |
May
(6) |
Jun
(73) |
Jul
(33) |
Aug
(5) |
Sep
(21) |
Oct
(6) |
Nov
(7) |
Dec
(22) |
| 2012 |
Jan
(20) |
Feb
(18) |
Mar
(11) |
Apr
|
May
|
Jun
|
Jul
(9) |
Aug
(8) |
Sep
(15) |
Oct
(12) |
Nov
(6) |
Dec
(1) |
| 2013 |
Jan
(9) |
Feb
|
Mar
(3) |
Apr
(3) |
May
(12) |
Jun
(15) |
Jul
(8) |
Aug
(3) |
Sep
|
Oct
(20) |
Nov
(3) |
Dec
|
| 2014 |
Jan
(4) |
Feb
|
Mar
(2) |
Apr
(32) |
May
(62) |
Jun
(21) |
Jul
|
Aug
(6) |
Sep
|
Oct
(9) |
Nov
(9) |
Dec
(130) |
| 2015 |
Jan
(50) |
Feb
(40) |
Mar
(10) |
Apr
(5) |
May
(2) |
Jun
(7) |
Jul
(1) |
Aug
(22) |
Sep
|
Oct
|
Nov
|
Dec
|
| 2016 |
Jan
(2) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <cha...@us...> - 2016-01-13 20:31:02
|
Revision: 4935
http://sourceforge.net/p/gnomesword/code/4935
Author: charcoal
Date: 2016-01-13 20:31:00 +0000 (Wed, 13 Jan 2016)
Log Message:
-----------
update to replace stcmp/strcoll sort with unicode support
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/gnome2/utilities.c
trunk/src/gui/utilities.h
trunk/src/main/sword.cc
trunk/wscript
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2016-01-01 20:28:48 UTC (rev 4934)
+++ trunk/ChangeLog 2016-01-13 20:31:00 UTC (rev 4935)
@@ -1,10 +1,10 @@
-2016-01-01 karl <cha...@us...>
+2016-01-13 karl <cha...@us...>
- * change module list sort from strcmp() to strcoll().
+ * change module lang sort from strcmp/strcoll to ICU ucol_strcollUTF8.
2015-08-30 karl <cha...@us...>
- * 4.0.3 release.
+ * 4.0.4 release.
2015-08-17 karl <cha...@us...>
Modified: trunk/src/gnome2/utilities.c
===================================================================
--- trunk/src/gnome2/utilities.c 2016-01-01 20:28:48 UTC (rev 4934)
+++ trunk/src/gnome2/utilities.c 2016-01-13 20:31:00 UTC (rev 4935)
@@ -1094,14 +1094,19 @@
++(language_set[module_type].count);
}
-/* comparator function pulled verbatim from qsort(3). */
+/* comparator function pulled verbatim from qsort(3) */
+/* but with function changed to ucol_strcollUTF8(3). */
+/* http://icu-project.org/apiref/icu4c/ucol_8h.html */
static int cmpstringp(const void *p1, const void *p2)
{
/* The actual arguments to this function are "pointers to
pointers to char", but strcmp(3) arguments are "pointers
to char", hence the following cast plus dereference */
- return strcoll(*(char *const *)p1, *(char *const *)p2);
+ return ucol_strcollUTF8(collator,
+ *(char *const *)p1, -1,
+ *(char *const *)p2, -1,
+ &collator_status);
}
/* retrieve the language set specific to the module type requested */
Modified: trunk/src/gui/utilities.h
===================================================================
--- trunk/src/gui/utilities.h 2016-01-01 20:28:48 UTC (rev 4934)
+++ trunk/src/gui/utilities.h 2016-01-13 20:31:00 UTC (rev 4935)
@@ -27,6 +27,18 @@
#include "main/module_dialogs.h"
#include <gsf/gsf-outfile.h>
+/* Unicode collation necessities */
+#include "unicode/utypes.h"
+#include "unicode/unorm.h"
+#include "unicode/localpointer.h"
+#include "unicode/parseerr.h"
+#include "unicode/uloc.h"
+#include "unicode/uset.h"
+#include "unicode/uscript.h"
+#include "unicode/ucol.h"
+extern UCollator* collator;
+extern UErrorCode collator_status;
+
#ifdef __cplusplus
extern "C" {
#endif
Modified: trunk/src/main/sword.cc
===================================================================
--- trunk/src/main/sword.cc 2016-01-01 20:28:48 UTC (rev 4934)
+++ trunk/src/main/sword.cc 2016-01-13 20:31:00 UTC (rev 4935)
@@ -88,6 +88,10 @@
char *sword_locale = NULL;
gboolean companion_activity = FALSE;
+/* Unicode collation necessities. */
+UCollator* collator;
+UErrorCode collator_status;
+
extern gboolean valid_scripture_key;
// these track together. when one changes, so does the other.
@@ -787,6 +791,7 @@
if (!lang)
lang = "C";
sword_locale = set_sword_locale(lang);
+ collator = ucol_open(sword_locale, &collator_status);
lang = LocaleMgr::getSystemLocaleMgr()->getDefaultLocaleName();
backend = new BackEnd();
Modified: trunk/wscript
===================================================================
--- trunk/wscript 2016-01-01 20:28:48 UTC (rev 4934)
+++ trunk/wscript 2016-01-13 20:31:00 UTC (rev 4935)
@@ -411,6 +411,13 @@
mandatory=True)
env.append_value('ALL_LIBS', 'SWORD')
+ conf.check_cfg(package='icu-i18n',
+ args='--cflags --libs',
+ uselib_store='ICUI18N',
+ errmsg='fail',
+ mandatory=True)
+ env.append_value('ALL_LIBS', 'ICUI18N')
+
conf.check_cfg(package='biblesync',
args='"biblesync >= 1.1.2" --cflags --libs',
uselib_store='BIBLESYNC',
|
|
From: <cha...@us...> - 2016-01-01 20:28:51
|
Revision: 4934
http://sourceforge.net/p/gnomesword/code/4934
Author: charcoal
Date: 2016-01-01 20:28:48 +0000 (Fri, 01 Jan 2016)
Log Message:
-----------
fix module list sort to be UTF-compatible.
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/gnome2/utilities.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-08-30 17:49:22 UTC (rev 4933)
+++ trunk/ChangeLog 2016-01-01 20:28:48 UTC (rev 4934)
@@ -1,3 +1,7 @@
+2016-01-01 karl <cha...@us...>
+
+ * change module list sort from strcmp() to strcoll().
+
2015-08-30 karl <cha...@us...>
* 4.0.3 release.
Modified: trunk/src/gnome2/utilities.c
===================================================================
--- trunk/src/gnome2/utilities.c 2015-08-30 17:49:22 UTC (rev 4933)
+++ trunk/src/gnome2/utilities.c 2016-01-01 20:28:48 UTC (rev 4934)
@@ -1101,7 +1101,7 @@
pointers to char", but strcmp(3) arguments are "pointers
to char", hence the following cast plus dereference */
- return strcmp(*(char *const *)p1, *(char *const *)p2);
+ return strcoll(*(char *const *)p1, *(char *const *)p2);
}
/* retrieve the language set specific to the module type requested */
|
|
From: <cha...@us...> - 2015-08-30 17:49:23
|
Revision: 4933
http://sourceforge.net/p/gnomesword/code/4933
Author: charcoal
Date: 2015-08-30 17:49:22 +0000 (Sun, 30 Aug 2015)
Log Message:
-----------
tag 4.0.3
Added Paths:
-----------
tags/4.0.3/
Index: tags/4.0.3
===================================================================
--- trunk 2015-08-07 02:18:21 UTC (rev 4914)
+++ tags/4.0.3 2015-08-30 17:49:22 UTC (rev 4933)
Property changes on: tags/4.0.3
___________________________________________________________________
Added: bzr:pointless
## -0,0 +1 ##
+3
\ No newline at end of property
Added: svn:mergeinfo
## -0,0 +1,4 ##
+/branches/matysek:3290-3291,3299
+/branches/remove-gtkhtml:4691-4696
+/branches/webkit:3914-4379
+/trunk:3424,3486-3490,3507-3509,3530-3532,3537,3620
\ No newline at end of property
Added: svk:merge
## -0,0 +1,5 ##
+95a4280c-1b0e-0410-9f8f-80a059958c3c:/trunk:3424
+95a4280c-1b0e-0410-9f8f-80a059958c3c:/trunk:3490
+95a4280c-1b0e-0410-9f8f-80a059958c3c:/trunk:3509
+95a4280c-1b0e-0410-9f8f-80a059958c3c:/trunk:3537
+95a4280c-1b0e-0410-9f8f-80a059958c3c:/trunk:3620
|
|
From: <cha...@us...> - 2015-08-30 17:15:54
|
Revision: 4932
http://sourceforge.net/p/gnomesword/code/4932
Author: charcoal
Date: 2015-08-30 17:15:52 +0000 (Sun, 30 Aug 2015)
Log Message:
-----------
tag 4.0.4 w/1 gtk update past version stamp change
Added Paths:
-----------
tags/4.0.4/
Index: tags/4.0.4
===================================================================
--- trunk 2015-08-30 16:29:43 UTC (rev 4931)
+++ tags/4.0.4 2015-08-30 17:15:52 UTC (rev 4932)
Property changes on: tags/4.0.4
___________________________________________________________________
Added: bzr:pointless
## -0,0 +1 ##
+3
\ No newline at end of property
Added: svn:mergeinfo
## -0,0 +1,4 ##
+/branches/matysek:3290-3291,3299
+/branches/remove-gtkhtml:4691-4696
+/branches/webkit:3914-4379
+/trunk:3424,3486-3490,3507-3509,3530-3532,3537,3620
\ No newline at end of property
Added: svk:merge
## -0,0 +1,5 ##
+95a4280c-1b0e-0410-9f8f-80a059958c3c:/trunk:3424
+95a4280c-1b0e-0410-9f8f-80a059958c3c:/trunk:3490
+95a4280c-1b0e-0410-9f8f-80a059958c3c:/trunk:3509
+95a4280c-1b0e-0410-9f8f-80a059958c3c:/trunk:3537
+95a4280c-1b0e-0410-9f8f-80a059958c3c:/trunk:3620
|
|
From: <cha...@us...> - 2015-08-30 16:29:45
|
Revision: 4931
http://sourceforge.net/p/gnomesword/code/4931
Author: charcoal
Date: 2015-08-30 16:29:43 +0000 (Sun, 30 Aug 2015)
Log Message:
-----------
late catch: gtk_window_is_maximized is gtk >= 3.12 only
Modified Paths:
--------------
trunk/src/gnome2/main_window.c
Modified: trunk/src/gnome2/main_window.c
===================================================================
--- trunk/src/gnome2/main_window.c 2015-08-30 16:15:59 UTC (rev 4930)
+++ trunk/src/gnome2/main_window.c 2015-08-30 16:29:43 UTC (rev 4931)
@@ -456,7 +456,7 @@
settings.app_x = x;
settings.app_y = y;
-#ifdef USE_GTK_3
+#ifdef HAVE_GTK_312
sprintf(layout, "%d", gtk_window_is_maximized(GTK_WINDOW(widgets.app)));
xml_set_value("Xiphos", "layout", "maximized", layout);
#endif
|
|
From: <cha...@us...> - 2015-08-30 16:16:01
|
Revision: 4930
http://sourceforge.net/p/gnomesword/code/4930
Author: charcoal
Date: 2015-08-30 16:15:59 +0000 (Sun, 30 Aug 2015)
Log Message:
-----------
4.0.3 release
Modified Paths:
--------------
trunk/ChangeLog
trunk/RELEASE-NOTES
trunk/debian/changelog
trunk/win32/nsis/installer32.nsi
trunk/win32/nsis/installer64.nsi
trunk/wscript
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-08-29 01:21:55 UTC (rev 4929)
+++ trunk/ChangeLog 2015-08-30 16:15:59 UTC (rev 4930)
@@ -1,3 +1,7 @@
+2015-08-30 karl <cha...@us...>
+
+ * 4.0.3 release.
+
2015-08-17 karl <cha...@us...>
* change language_set to grow dynamically, no limit.
Modified: trunk/RELEASE-NOTES
===================================================================
--- trunk/RELEASE-NOTES 2015-08-29 01:21:55 UTC (rev 4929)
+++ trunk/RELEASE-NOTES 2015-08-30 16:15:59 UTC (rev 4930)
@@ -3,6 +3,16 @@
XIPHOS RELEASE NOTES
____________________
+Release 4.0.4
+30 Aug 2015
+
+- Implemented dynamic allocation enhancement to replace survivability fix.
+- Updated language abbreviations to eliminate unknowns.
+- Fixed module installation messages so they are not lost.
+- Fixed abbrev support, to show abbrevs in all non-essential contexts.
+- Fixed maximization restoral (mostly gtk3; partial for gtk2).
+________________________________________________________________
+
Release 4.0.3
06 Aug 2015
@@ -25,34 +35,19 @@
30 Mar 2015
- Completed webkit editor, due to replace gtkhtml editor.
-
- Added Abbreviation module configuration support.
-
- Added Glosses (Ruby) and Morpheme Segmentation display support.
-
- Added obsolete module audit, during install and on maintenance page.
-
- Added more informative "About" for modules.
-
- Added status bar en/disable.
-
-- Removed BibleSync from Xiphos' source tree. It must be referenced as a
- proper library.
-
+- Removed BibleSync from Xiphos' source, now referenced as a proper library.
- Fixed studypad directory choice.
-
- Fixed mis-handling of unreal "multiple verse" reference in URL handling.
-
- Fixed editor's mis-handling of the link editor subdialog.
-
- Updated Win32 URL clickability; updated "About Sword" URL properly.
-
- Huge GTK3 compatibility cleanliness hackery.
-
- WebKit2 compatibility hackery.
-
- Fix compiler flag choices.
-
- Numerous code internals updates due to cppcheck(1) diagnostics.
________________________________________________________________
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2015-08-29 01:21:55 UTC (rev 4929)
+++ trunk/debian/changelog 2015-08-30 16:15:59 UTC (rev 4930)
@@ -1,3 +1,9 @@
+xiphos-svn (4.0.4-0~svn) unstable; urgency=low
+
+ * New upstream release
+
+ -- Karl Kleinpaste <cha...@us...> Sun, 30 Aug 2015 12:13:00 +0000
+
xiphos-svn (4.0.3-0~svn) unstable; urgency=low
* New upstream release, urgent bugfix only
Modified: trunk/win32/nsis/installer32.nsi
===================================================================
--- trunk/win32/nsis/installer32.nsi 2015-08-29 01:21:55 UTC (rev 4929)
+++ trunk/win32/nsis/installer32.nsi 2015-08-30 16:15:59 UTC (rev 4930)
@@ -44,7 +44,7 @@
!define APP_NAME "Xiphos"
!define INSTALLER_NAME "xiphos"
!define APP_BINARY_NAME "xiphos.exe"
- !define APP_VERS "4.0.3"
+ !define APP_VERS "4.0.4"
!define APP_EDITION "win32"
!define APP_URL "http://xiphos.org"
Modified: trunk/win32/nsis/installer64.nsi
===================================================================
--- trunk/win32/nsis/installer64.nsi 2015-08-29 01:21:55 UTC (rev 4929)
+++ trunk/win32/nsis/installer64.nsi 2015-08-30 16:15:59 UTC (rev 4930)
@@ -44,7 +44,7 @@
!define APP_NAME "Xiphos"
!define INSTALLER_NAME "xiphos"
!define APP_BINARY_NAME "xiphos.exe"
- !define APP_VERS "4.0.3"
+ !define APP_VERS "4.0.4"
!define APP_EDITION "win64"
!define APP_URL "http://xiphos.org"
Modified: trunk/wscript
===================================================================
--- trunk/wscript 2015-08-29 01:21:55 UTC (rev 4929)
+++ trunk/wscript 2015-08-30 16:15:59 UTC (rev 4930)
@@ -14,7 +14,7 @@
import waffles.misc
import waffles.gnome as gnome
-VERSION='4.0.3'
+VERSION='4.0.4'
APPNAME='xiphos'
PACKAGE='xiphos'
|
|
From: <cha...@us...> - 2015-08-29 01:21:57
|
Revision: 4929
http://sourceforge.net/p/gnomesword/code/4929
Author: charcoal
Date: 2015-08-29 01:21:55 +0000 (Sat, 29 Aug 2015)
Log Message:
-----------
about_modules.c: move abbreviation to just below formal name
Modified Paths:
--------------
trunk/src/gnome2/about_modules.c
Modified: trunk/src/gnome2/about_modules.c
===================================================================
--- trunk/src/gnome2/about_modules.c 2015-08-28 02:45:36 UTC (rev 4928)
+++ trunk/src/gnome2/about_modules.c 2015-08-29 01:21:55 UTC (rev 4929)
@@ -412,6 +412,14 @@
info = g_string_append(info, modname);
info = g_string_append(info, "<br/>");
+ if (abbreviation && *abbreviation) {
+ info =
+ g_string_append(info,
+ _("<b>Module abbreviation:</b> "));
+ info = g_string_append(info, abbreviation);
+ info = g_string_append(info, "<br/>");
+ }
+
info = g_string_append(info, _("<b>Version:</b> "));
info = g_string_append(info, ((version && *version)
? version
@@ -460,14 +468,6 @@
}
info = g_string_append(info, "<br/>");
- if (abbreviation && *abbreviation) {
- info =
- g_string_append(info,
- _("<b>Module abbreviation:</b> "));
- info = g_string_append(info, abbreviation);
- info = g_string_append(info, "<br/>");
- }
-
info = g_string_append(info, _("<b>Language:</b> "));
info = g_string_append(info, ((language && *language)
? language
|
|
From: <cha...@us...> - 2015-08-28 02:45:39
|
Revision: 4928
http://sourceforge.net/p/gnomesword/code/4928
Author: charcoal
Date: 2015-08-28 02:45:36 +0000 (Fri, 28 Aug 2015)
Log Message:
-----------
handle abbrev going both ways in parallel possibilities
Modified Paths:
--------------
trunk/src/main/parallel_view.cc
Modified: trunk/src/main/parallel_view.cc
===================================================================
--- trunk/src/main/parallel_view.cc 2015-08-28 02:13:15 UTC (rev 4927)
+++ trunk/src/main/parallel_view.cc 2015-08-28 02:45:36 UTC (rev 4928)
@@ -665,9 +665,12 @@
if (settings.parallel_list) {
gchar *mod_name;
for (modidx = 0;
- (mod_name = settings.parallel_list[modidx]);
+ mod_name = settings.parallel_list[modidx];
modidx++) {
const gchar *rowcolor;
+ const char *real_mod = main_get_name(mod_name);
+ if (real_mod)
+ mod_name = (gchar *)real_mod;
// if a module was deleted, but still in parallels list,
// we will segfault when looking for content for the
@@ -721,12 +724,12 @@
g_string_append(data, "<br/><div align=right>");
// does this verse exist for this module?
- if (!backend_p->is_Bible_key(settings.parallel_list[modidx],
+ if (!backend_p->is_Bible_key(mod_name,
settings.cvparallel, settings.cvparallel)) {
g_string_append(data, no_content);
} else {
SWBuf text("");
- backend_p->set_module_key(settings.parallel_list[modidx], settings.cvparallel);
+ backend_p->set_module_key(mod_name, settings.cvparallel);
get_heading(text, backend_p, modidx);
g_string_append(data, text.c_str());
@@ -780,13 +783,14 @@
// should be 1st parallel module.
// it would be really weird if that's missing, but be ready anyhow.
char *module_name = (settings.parallel_list
- ? settings.parallel_list[0]
- : settings.MainWindowModule);
+ ? settings.parallel_list[0]
+ : settings.MainWindowModule);
+ // might have an abbrev. get the real.
+ const char *real_mod = main_get_name(module_name);
+ if (real_mod)
+ module_name = (gchar *)real_mod;
- gchar *utf8str,
- *textColor,
- *tmpkey,
- tmpbuf[256];
+ gchar *utf8str, *textColor, *tmpkey, tmpbuf[256];
const gchar *bgColor;
gchar str[500];
gint cur_verse, cur_chapter, verse, modidx;
@@ -817,17 +821,22 @@
// quick cache of fonts/rtol/type info.
for (modidx = 0; modidx < parallel_count; ++modidx) {
+ gchar *mod = settings.parallel_list[modidx];
+ // might have an abbrev. get the real.
+ const char *real_mod = main_get_name(mod);
+ if (real_mod)
+ mod = (gchar *)real_mod;
+
// determine module presence once each.
- is_module[modidx] = backend->is_module(settings.parallel_list[modidx]);
+ is_module[modidx] = backend->is_module(mod);
if (is_module[modidx]) {
- is_rtol[modidx] = main_is_mod_rtol(settings.parallel_list[modidx]);
- mf[modidx] = get_font(settings.parallel_list[modidx]);
+ is_rtol[modidx] = main_is_mod_rtol(mod);
+ mf[modidx] = get_font(mod);
is_bible_text[modidx] =
- (main_get_mod_type(settings.parallel_list[modidx]) == TEXT_TYPE);
+ (main_get_mod_type(mod) == TEXT_TYPE);
} else {
- gui_generic_warning((unknown_parallel +
- (SWBuf)settings.parallel_list[modidx]).c_str());
+ gui_generic_warning((unknown_parallel + (SWBuf)mod).c_str());
}
}
@@ -858,6 +867,12 @@
bgColor = settings.bible_bg_color;
for (modidx = 0; modidx < parallel_count; modidx++) {
+ gchar *mod = settings.parallel_list[modidx];
+ // might have an abbrev. get the real.
+ const char *real_mod = main_get_name(mod);
+ if (real_mod)
+ mod = (gchar *)real_mod;
+
if (is_module[modidx]) {
// mark current verse properly.
@@ -891,10 +906,10 @@
if (is_rtol[modidx])
text += "<br/><div align=right>";
- backend_p->set_module_key(settings.parallel_list[modidx], tmpkey);
+ backend_p->set_module_key(mod, tmpkey);
get_heading(text, backend_p, modidx);
- utf8str = backend_p->get_render_text(settings.parallel_list[modidx], tmpkey);
+ utf8str = backend_p->get_render_text(mod, tmpkey);
if (utf8str) {
text += utf8str;
g_free(utf8str);
|
|
From: <cha...@us...> - 2015-08-28 02:13:17
|
Revision: 4927
http://sourceforge.net/p/gnomesword/code/4927
Author: charcoal
Date: 2015-08-28 02:13:15 +0000 (Fri, 28 Aug 2015)
Log Message:
-----------
handle abbrevs in adv.search modnames
Modified Paths:
--------------
trunk/src/main/search_dialog.cc
Modified: trunk/src/main/search_dialog.cc
===================================================================
--- trunk/src/main/search_dialog.cc 2015-08-25 08:39:44 UTC (rev 4926)
+++ trunk/src/main/search_dialog.cc 2015-08-28 02:13:15 UTC (rev 4927)
@@ -1365,6 +1365,11 @@
while (search_mods != NULL) {
module = (gchar *)search_mods->data;
+ const char *real_mod = main_get_name(module);
+ if (real_mod) {
+ g_free(module);
+ module = g_strdup((gchar *)real_mod);
+ }
if (terminate_search) {
// we simply wrap through the remaining
|
|
From: <do...@us...> - 2015-08-25 08:39:47
|
Revision: 4926
http://sourceforge.net/p/gnomesword/code/4926
Author: domcox
Date: 2015-08-25 08:39:44 +0000 (Tue, 25 Aug 2015)
Log Message:
-----------
French translation: fix typo
Modified Paths:
--------------
trunk/po/fr.po
Modified: trunk/po/fr.po
===================================================================
--- trunk/po/fr.po 2015-08-25 01:23:58 UTC (rev 4925)
+++ trunk/po/fr.po 2015-08-25 08:39:44 UTC (rev 4926)
@@ -25,7 +25,7 @@
"Project-Id-Version: Xiphos 4.0.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-06-16 13:36-0400\n"
-"PO-Revision-Date: 2015-08-05 14:49+0200\n"
+"PO-Revision-Date: 2015-08-25 10:39+0200\n"
"Last-Translator: Dominique Corbex <do...@us...>\n"
"Language-Team: emacs + po-mode <gn...@tr...>\n"
"Language: \n"
@@ -173,7 +173,7 @@
#: ../src/gnome2/about_modules.c:466
msgid "<b>Module abbreviation:</b> "
-msgstr "<b>Abbrรฉviation du module :</b>"
+msgstr "<b>Abrรฉviation :</b>"
#: ../src/gnome2/about_modules.c:471
msgid "<b>Language:</b> "
|
|
From: <cha...@us...> - 2015-08-25 01:24:01
|
Revision: 4925
http://sourceforge.net/p/gnomesword/code/4925
Author: charcoal
Date: 2015-08-25 01:23:58 +0000 (Tue, 25 Aug 2015)
Log Message:
-----------
add maximization detection, for startup restoral
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/gnome2/main_window.c
trunk/src/gnome2/xiphos.c
trunk/src/main/settings.c
trunk/src/main/settings.h
trunk/src/main/xml.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-08-23 23:50:28 UTC (rev 4924)
+++ trunk/ChangeLog 2015-08-25 01:23:58 UTC (rev 4925)
@@ -3,6 +3,9 @@
* change language_set to grow dynamically, no limit.
* improve abbrev support: use abbrev in parallel page, parallel
dialog/tab, main window non-Bible (comm/book/dict), bookmarks.
+ * fixed module installation messages' display, so they're not lost.
+ * update language abbreviations to eliminate more unknowns.
+ * added gtk3 maximization detection.
2015-08-06 karl <cha...@us...>
Modified: trunk/src/gnome2/main_window.c
===================================================================
--- trunk/src/gnome2/main_window.c 2015-08-23 23:50:28 UTC (rev 4924)
+++ trunk/src/gnome2/main_window.c 2015-08-25 01:23:58 UTC (rev 4925)
@@ -449,14 +449,18 @@
gint x;
gint y;
- gdk_window_get_root_origin(gtk_widget_get_window(widgets.app), &x,
- &y);
+ gdk_window_get_root_origin(gtk_widget_get_window(widgets.app), &x, &y);
settings.gs_width = event->width;
settings.gs_height = event->height;
settings.app_x = x;
settings.app_y = y;
+#ifdef USE_GTK_3
+ sprintf(layout, "%d", gtk_window_is_maximized(GTK_WINDOW(widgets.app)));
+ xml_set_value("Xiphos", "layout", "maximized", layout);
+#endif
+
sprintf(layout, "%d", settings.gs_width);
xml_set_value("Xiphos", "layout", "width", layout);
Modified: trunk/src/gnome2/xiphos.c
===================================================================
--- trunk/src/gnome2/xiphos.c 2015-08-23 23:50:28 UTC (rev 4924)
+++ trunk/src/gnome2/xiphos.c 2015-08-25 01:23:58 UTC (rev 4925)
@@ -179,13 +179,15 @@
* especially if it's due to just shutting linux down.
*/
if (settings.app_x < 0)
- settings.app_x = 10;
+ settings.app_x = 0;
if (settings.app_x > (screen_width - 100))
settings.app_x = screen_width - 100;
if (settings.app_y < 0)
- settings.app_y = 10;
+ settings.app_y = 0;
if (settings.app_y > (screen_height - 100))
settings.app_y = screen_height - 100;
+ if (settings.maximized)
+ gtk_window_maximize(GTK_WINDOW(widgets.app));
gtk_window_move(GTK_WINDOW(widgets.app), settings.app_x,
settings.app_y);
Modified: trunk/src/main/settings.c
===================================================================
--- trunk/src/main/settings.c 2015-08-23 23:50:28 UTC (rev 4924)
+++ trunk/src/main/settings.c 2015-08-25 01:23:58 UTC (rev 4925)
@@ -637,6 +637,12 @@
}
/* main window placement */
+ if ((buf = xml_get_value("layout", "maximized")))
+ settings.app_x = atoi(buf);
+ else {
+ xml_add_new_item_to_section("layout", "maximized", "0");
+ settings.maximized = 0;
+ }
if ((buf = xml_get_value("layout", "app_x")))
settings.app_x = atoi(buf);
else {
Modified: trunk/src/main/settings.h
===================================================================
--- trunk/src/main/settings.h 2015-08-23 23:50:28 UTC (rev 4924)
+++ trunk/src/main/settings.h 2015-08-25 01:23:58 UTC (rev 4925)
@@ -174,6 +174,7 @@
/* window location at close */
int app_x, app_y;
+ int maximized; /* gboolean */
int parallel_x, parallel_y;
int modmgr_x, modmgr_y;
int advsearch_x, advsearch_y;
Modified: trunk/src/main/xml.c
===================================================================
--- trunk/src/main/xml.c 2015-08-23 23:50:28 UTC (rev 4924)
+++ trunk/src/main/xml.c 2015-08-25 01:23:58 UTC (rev 4925)
@@ -720,6 +720,8 @@
section_node =
xmlNewChild(root_node, NULL, (const xmlChar *)"layout", NULL);
+ xmlNewTextChild(section_node, NULL, (const xmlChar *)"maximized",
+ (const xmlChar *)"0");
xmlNewTextChild(section_node, NULL, (const xmlChar *)"height",
(const xmlChar *)"600");
xmlNewTextChild(section_node, NULL, (const xmlChar *)"width",
|
|
From: <cha...@us...> - 2015-08-23 23:50:30
|
Revision: 4924
http://sourceforge.net/p/gnomesword/code/4924
Author: charcoal
Date: 2015-08-23 23:50:28 +0000 (Sun, 23 Aug 2015)
Log Message:
-----------
abbrev sanity tweak: catch module-internal abbrev refs
Modified Paths:
--------------
trunk/src/main/url.cc
Modified: trunk/src/main/url.cc
===================================================================
--- trunk/src/main/url.cc 2015-08-23 23:14:03 UTC (rev 4923)
+++ trunk/src/main/url.cc 2015-08-23 23:50:28 UTC (rev 4924)
@@ -774,6 +774,10 @@
? work_buf[MODULE]
: settings.MainWindowModule);
+ const char *real_mod = main_get_name(mod);
+ if (real_mod)
+ mod = (gchar *)real_mod;
+
if (strpbrk(tmpkey, "-;,") && // >1 verse marked
(main_get_mod_type(mod) == TEXT_TYPE)) {
main_display_verse_list_in_sidebar(settings.currentverse, mod, tmpkey);
@@ -922,7 +926,7 @@
passage = g_strdup((gchar *)m_url.getParameterValue("passage"));
// no module specified => use main module.
- if (!strcmp(module, "")) {
+ if (!module || !strcmp(module, "")) {
g_free(module);
module = g_strdup(settings.MainWindowModule);
}
|
|
From: <cha...@us...> - 2015-08-23 23:14:05
|
Revision: 4923
http://sourceforge.net/p/gnomesword/code/4923
Author: charcoal
Date: 2015-08-23 23:14:03 +0000 (Sun, 23 Aug 2015)
Log Message:
-----------
abbrev sanity tweak: bookmark modules, get real from potential abbrev.
Modified Paths:
--------------
trunk/src/gnome2/bookmarks_treeview.c
Modified: trunk/src/gnome2/bookmarks_treeview.c
===================================================================
--- trunk/src/gnome2/bookmarks_treeview.c 2015-08-23 03:58:43 UTC (rev 4922)
+++ trunk/src/gnome2/bookmarks_treeview.c 2015-08-23 23:14:03 UTC (rev 4923)
@@ -777,13 +777,18 @@
}
if (is_selected) {
if (!gtk_tree_model_iter_has_child(GTK_TREE_MODEL(model), &selected) && key != NULL) {
+ // might have an abbrev. get the real.
+ const gchar *real_mod = main_get_name(module);
gchar *url = NULL;
+
if (!strcmp(module, "studypad"))
url =
g_strdup_printf("passagestudy.jsp?action=showStudypad&"
"type=9&value=%s&module=%s",
main_url_encode(key),
- main_url_encode(module));
+ main_url_encode((real_mod
+ ? real_mod
+ : module)));
else if (button_one)
url =
@@ -791,7 +796,9 @@
"type=%s&value=%s&module=%s",
"currentTab",
main_url_encode(key),
- main_url_encode(module));
+ main_url_encode((real_mod
+ ? real_mod
+ : module)));
if (url) {
main_url_handler(url, TRUE);
g_free(url);
|
|
From: <cha...@us...> - 2015-08-23 03:58:45
|
Revision: 4922
http://sourceforge.net/p/gnomesword/code/4922
Author: charcoal
Date: 2015-08-23 03:58:43 +0000 (Sun, 23 Aug 2015)
Log Message:
-----------
more abbrev completeness hacking
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/main/previewer.cc
trunk/src/main/url.cc
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-08-21 12:08:29 UTC (rev 4921)
+++ trunk/ChangeLog 2015-08-23 03:58:43 UTC (rev 4922)
@@ -1,8 +1,8 @@
2015-08-17 karl <cha...@us...>
* change language_set to grow dynamically, no limit.
- * improve abbreviation support: use abbrev in parallel page,
- parallel dialog/tab, and in main window non-Bible (comm/book/dict).
+ * improve abbrev support: use abbrev in parallel page, parallel
+ dialog/tab, main window non-Bible (comm/book/dict), bookmarks.
2015-08-06 karl <cha...@us...>
Modified: trunk/src/main/previewer.cc
===================================================================
--- trunk/src/main/previewer.cc 2015-08-21 12:08:29 UTC (rev 4921)
+++ trunk/src/main/previewer.cc 2015-08-23 03:58:43 UTC (rev 4922)
@@ -209,9 +209,11 @@
str = g_string_append(str, tmp_str->str);
}
} else {
+ const char *abbreviation = main_get_abbreviation(mod_name);
g_string_printf(tmp_str,
"<font color=\"grey\">%s: %s</font><hr/>",
- mod_name, key);
+ (abbreviation ? abbreviation : mod_name),
+ key);
str = g_string_append(str, tmp_str->str);
}
@@ -433,6 +435,7 @@
/* show key in html widget */
if (show_key) {
+ const char *abbreviation = main_get_abbreviation(mod_name);
if ((settings.displaySearchResults)) {
g_string_printf(tmp_str,
"<a href=\"sword://%s/%s\">"
@@ -440,7 +443,8 @@
mod_name,
key,
settings.link_color,
- mod_name, key);
+ (abbreviation ? abbreviation : mod_name),
+ key);
} else {
g_string_printf(tmp_str,
"<a href=\"passagestudy.jsp?action=showModInfo&value=%s&module=%s\">"
@@ -448,7 +452,8 @@
backend->module_description(mod_name),
mod_name,
settings.link_color,
- mod_name, key);
+ (abbreviation ? abbreviation : mod_name),
+ key);
}
str = g_string_append(str, tmp_str->str);
}
Modified: trunk/src/main/url.cc
===================================================================
--- trunk/src/main/url.cc 2015-08-21 12:08:29 UTC (rev 4921)
+++ trunk/src/main/url.cc 2015-08-23 03:58:43 UTC (rev 4922)
@@ -401,16 +401,16 @@
/******************************************************************************
* Name
- * note_uri
+ * show_note
*
* Synopsis
* #include "main/url.hh"
*
- * gint note_uri(const gchar * url)
+ * gint show_note(module, passage, stype, svalue, gblooean clicked)
*
* Description
+ * show a footnote in the previewer.
*
- *
* Return value
* gint
*/
@@ -668,11 +668,15 @@
work_buf = g_strsplit(url, "/", 4);
- mybuf = main_get_rendered_text(work_buf[MODULE], work_buf[KEY]);
+ // might be an abbrev. get the real.
+ const char *real_mod = main_get_name(work_buf[MODULE]);
+ mybuf = main_get_rendered_text((real_mod ? real_mod : work_buf[MODULE]),
+ work_buf[KEY]);
+
if (mybuf) {
main_information_viewer(
- (gchar *)work_buf[MODULE],
+ (gchar *)(real_mod ? real_mod : work_buf[MODULE]),
mybuf,
(gchar *)work_buf[KEY],
NULL,
@@ -729,14 +733,19 @@
gchar *slash = g_strstr_len(name, 20, "/");
if (slash)
*slash = '\0'; // limit to name end.
- int mod_type = backend->module_type(name);
+
+ // might be an abbrev. get the real.
+ const char *real_mod = main_get_name(name);
+
+ int mod_type = backend->module_type(real_mod ? real_mod : name);
+
if (slash)
*slash = '/';
if (mod_type == DICTIONARY_TYPE)
show_in_previewer(url);
else
- gui_set_statusbar(url);
+ gui_set_statusbar(name + ((*name == '/') ? 1 : 0));
}
handling_uri = FALSE;
return 1;
@@ -773,12 +782,12 @@
}
verse_count = 1; //backend->is_Bible_key(mykey, settings.currentverse);
- if (backend->is_module(work_buf[MODULE])) {
- mod_type = backend->module_type(work_buf[MODULE]);
+ if (backend->is_module(mod)) {
+ mod_type = backend->module_type(mod);
switch (mod_type) {
case TEXT_TYPE:
- key = main_update_nav_controls(work_buf[MODULE], tmpkey);
- main_display_bible(work_buf[MODULE], key);
+ key = main_update_nav_controls(mod, tmpkey);
+ main_display_bible(mod, key);
if (settings.comm_showing)
main_display_commentary(NULL, key);
main_keep_bibletext_dialog_in_sync((gchar *)key);
@@ -795,16 +804,15 @@
settings.special_anchor = save;
}
settings.comm_showing = TRUE;
- key = main_update_nav_controls(work_buf[MODULE], tmpkey);
- main_display_commentary(work_buf[MODULE], key);
+ key = main_update_nav_controls(mod, tmpkey);
+ main_display_commentary(mod, key);
main_display_bible(NULL, key);
main_keep_bibletext_dialog_in_sync((gchar *)key);
if (key)
g_free((gchar *)key);
break;
case DICTIONARY_TYPE:
- main_display_dictionary(work_buf[MODULE],
- tmpkey);
+ main_display_dictionary(mod, tmpkey);
break;
case BOOK_TYPE:
if (gtk_notebook_get_current_page(GTK_NOTEBOOK(widgets.notebook_comm_book)) != 1) {
@@ -814,7 +822,7 @@
settings.special_anchor = save;
}
settings.comm_showing = FALSE;
- main_display_book(work_buf[MODULE], tmpkey);
+ main_display_book(mod, tmpkey);
break;
}
} else { /* module name not found or not given */
@@ -905,12 +913,20 @@
/* passagestudy.jsp?action=showStrongs&type= */
URL m_url((const char *)tmpstr->str);
- action = g_strdup(m_url.getParameterValue("action"));
- morph = g_strdup((gchar *)m_url.getParameterValue("morph"));
+ action = g_strdup((gchar *)m_url.getParameterValue("action"));
+ morph = g_strdup((gchar *)m_url.getParameterValue("morph"));
strongs = g_strdup((gchar *)m_url.getParameterValue("lemma"));
- stype = g_strdup((gchar *)m_url.getParameterValue("type"));
- svalue = g_strdup((gchar *)m_url.getParameterValue("value"));
+ stype = g_strdup((gchar *)m_url.getParameterValue("type"));
+ svalue = g_strdup((gchar *)m_url.getParameterValue("value"));
+ module = g_strdup((gchar *)m_url.getParameterValue("module"));
+ passage = g_strdup((gchar *)m_url.getParameterValue("passage"));
+ // no module specified => use main module.
+ if (!strcmp(module, "")) {
+ g_free(module);
+ module = g_strdup(settings.MainWindowModule);
+ }
+
// XXX gross hack-fix
// AraSVD is named "Smith & Van Dyke", using a literal '&'.
// this is technically a Sword bug: Sword should encode it.
@@ -919,38 +935,28 @@
// *(svalue+1) = '-';
XI_message(("action = %s", action));
+ XI_message(("morph = %s", morph));
+ XI_message(("strongs = %s", strongs));
XI_message(("type = %s", stype));
XI_message(("value = %s", svalue));
- XI_message(("strongs = %s", strongs));
- XI_message(("morph = %s", morph));
+ XI_message(("module = %s", module));
+ XI_message(("passage = %s", passage));
if (!strcmp(action, "showStrongs")) {
show_strongs(stype, svalue, clicked);
}
else if (!strcmp(action, "showMorph")) {
- show_morph(settings.MainWindowModule,
- stype, svalue, clicked);
+ show_morph(module, stype, svalue, clicked);
}
else if (!strcmp(action, "showNote")) {
- module = g_strdup(m_url.getParameterValue("module"));
- passage = g_strdup((gchar *)m_url.getParameterValue("passage"));
show_note(module, passage, stype, svalue, clicked);
- if (module)
- g_free(module);
- if (passage)
- g_free(passage);
}
else if (!strcmp(action, "showUserNote")) {
- module = g_strdup(m_url.getParameterValue("module"));
- passage = g_strdup((gchar *)m_url.getParameterValue("passage"));
-
// need localized key, not the osisref that we've got.
- ModMap::iterator it = backend->get_mgr()->Modules.find((module && *module)
- ? module
- : settings.MainWindowModule);
+ ModMap::iterator it = backend->get_mgr()->Modules.find(module);
SWModule *m = (*it).second;
VerseKey *vk = (VerseKey *)m->getKey();
*vk = passage;
@@ -962,32 +968,19 @@
(gchar *)"u",
NULL,
NULL);
- if (module)
- g_free(module);
- if (passage)
- g_free(passage);
}
else if (!strcmp(action, "showRef")) {
- module = g_strdup(m_url.getParameterValue("module"));
if (!strcmp(stype, "scripRef"))
show_ref(module, svalue, clicked);
- if (module)
- g_free(module);
}
else if (!strcmp(action, "showBookmark")) {
- module = g_strdup(m_url.getParameterValue("module"));
show_module_and_key(module, svalue, stype, clicked);
- if (module)
- g_free(module);
}
else if (!strcmp(action, "showModInfo")) {
- module = g_strdup(m_url.getParameterValue("module"));
show_mod_info(module, svalue, clicked);
- if (module)
- g_free(module);
}
else if (!strcmp(action, "showParallel")) {
@@ -1015,6 +1008,11 @@
g_free(strongs);
if (morph)
g_free(morph);
+ if (module)
+ g_free(module);
+ if (passage)
+ g_free(passage);
+
g_string_free(tmpstr, TRUE);
retval = 1;
} else if (clicked)
|
|
From: <cha...@us...> - 2015-08-21 12:08:31
|
Revision: 4921
http://sourceforge.net/p/gnomesword/code/4921
Author: charcoal
Date: 2015-08-21 12:08:29 +0000 (Fri, 21 Aug 2015)
Log Message:
-----------
update abbrev support to show abbrevs in all contexts
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/main/display.cc
trunk/src/main/parallel_view.cc
trunk/src/main/sword.cc
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-08-20 01:28:31 UTC (rev 4920)
+++ trunk/ChangeLog 2015-08-21 12:08:29 UTC (rev 4921)
@@ -1,6 +1,8 @@
2015-08-17 karl <cha...@us...>
* change language_set to grow dynamically, no limit.
+ * improve abbreviation support: use abbrev in parallel page,
+ parallel dialog/tab, and in main window non-Bible (comm/book/dict).
2015-08-06 karl <cha...@us...>
Modified: trunk/src/main/display.cc
===================================================================
--- trunk/src/main/display.cc 2015-08-20 01:28:31 UTC (rev 4920)
+++ trunk/src/main/display.cc 2015-08-21 12:08:29 UTC (rev 4921)
@@ -939,6 +939,7 @@
if (!gtk_widget_get_realized(GTK_WIDGET(gtkText)))
gtk_widget_realize(gtkText);
+ const char *abbreviation = main_get_abbreviation(imodule.getName());
gchar *buf;
mf = get_font(imodule.getName());
swbuf = "";
@@ -980,7 +981,7 @@
imodule.getDescription(),
imodule.getName(),
settings.bible_verse_num_color,
- imodule.getName());
+ (abbreviation ? abbreviation : imodule.getName()));
swbuf.append(buf);
g_free(buf);
Modified: trunk/src/main/parallel_view.cc
===================================================================
--- trunk/src/main/parallel_view.cc 2015-08-20 01:28:31 UTC (rev 4920)
+++ trunk/src/main/parallel_view.cc 2015-08-21 12:08:29 UTC (rev 4921)
@@ -703,6 +703,7 @@
mf->old_font_size_value, mf->old_font);
free_font(mf);
+ const char *abbreviation = main_get_abbreviation(mod_name);
tmpBuf = g_strdup_printf(
"<tr bgcolor=\"%s\"><td>%s<b><a href=\"passagestudy.jsp?action=showModInfo&value=%s&module=%s\"><font color=\"%s\" size=\"%+d\">[%s]</font></a></b><br/>",
rowcolor,
@@ -711,7 +712,7 @@
mod_name,
settings.bible_verse_num_color,
settings.verse_num_font_size + settings.base_font_size,
- mod_name);
+ (abbreviation ? abbreviation : mod_name));
g_free(fontstring);
g_string_append(data, tmpBuf);
g_free(tmpBuf);
@@ -964,12 +965,13 @@
text += buf;
for (modidx = 0; settings.parallel_list[modidx]; ++modidx) {
+ const char *abbreviation = main_get_abbreviation(settings.parallel_list[modidx]);
snprintf(buf, 499,
"<td valign=\"top\" width=\"%d%%\" bgcolor=\"#c0c0c0\"><font color=\"%s\" size=\"%+d\"><b>%s</b></font></td>",
fraction,
settings.bible_verse_num_color,
settings.verse_num_font_size + settings.base_font_size,
- settings.parallel_list[modidx]);
+ (abbreviation ? abbreviation : settings.parallel_list[modidx]));
text += buf;
}
Modified: trunk/src/main/sword.cc
===================================================================
--- trunk/src/main/sword.cc 2015-08-20 01:28:31 UTC (rev 4920)
+++ trunk/src/main/sword.cc 2015-08-21 12:08:29 UTC (rev 4921)
@@ -129,7 +129,7 @@
* const char * main_get_abbreviation(const char *name)
*
* Description
- * gets abbreviation, if available.
+ * gets abbreviation from real module, if available.
*
* Return value
* const char *
@@ -156,7 +156,7 @@
* const char * main_get_name(const char *abbreviation)
*
* Description
- * gets abbreviation, if available.
+ * gets real module name from abbreviation, if available.
*
* Return value
* const char *
|
|
From: <cha...@us...> - 2015-08-20 01:28:33
|
Revision: 4920
http://sourceforge.net/p/gnomesword/code/4920
Author: charcoal
Date: 2015-08-20 01:28:31 +0000 (Thu, 20 Aug 2015)
Log Message:
-----------
mod.mgr sync_windows() to avoid losing last install messages
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/gnome2/mod_mgr.c
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-08-19 01:51:53 UTC (rev 4919)
+++ trunk/ChangeLog 2015-08-20 01:28:31 UTC (rev 4920)
@@ -5,6 +5,8 @@
2015-08-06 karl <cha...@us...>
* survivability fix: increase LANGSET_COUNT to 2000 (eBible repo).
+ * updated French translation.
+ * added Korean translation.
* 4.0.3 release.
2015-06-15 karl <cha...@us...>
Modified: trunk/src/gnome2/mod_mgr.c
===================================================================
--- trunk/src/gnome2/mod_mgr.c 2015-08-19 01:51:53 UTC (rev 4919)
+++ trunk/src/gnome2/mod_mgr.c 2015-08-20 01:28:31 UTC (rev 4920)
@@ -963,6 +963,9 @@
source,
module_name));
+ /* do gtk refresh, to make sure last messages display */
+ sync_windows();
+
/* try to re-use a saved key. */
if ((result != -1) && preserved_cipherkey) {
main_save_module_key(module_name,
|
|
From: <cha...@us...> - 2015-08-19 01:51:55
|
Revision: 4919
http://sourceforge.net/p/gnomesword/code/4919
Author: charcoal
Date: 2015-08-19 01:51:53 +0000 (Wed, 19 Aug 2015)
Log Message:
-----------
improve dyn.alloc: avoid potential fencepost, ensure 1 more present
Modified Paths:
--------------
trunk/src/gnome2/utilities.c
Modified: trunk/src/gnome2/utilities.c
===================================================================
--- trunk/src/gnome2/utilities.c 2015-08-18 02:12:43 UTC (rev 4918)
+++ trunk/src/gnome2/utilities.c 2015-08-19 01:51:53 UTC (rev 4919)
@@ -1040,7 +1040,7 @@
int i;
for (i = 0; i < N_LANGSET_MODTYPES; ++i) {
language_set[i].ptr =
- calloc(LANGSET_STRIDE, sizeof(char *));
+ calloc(LANGSET_STRIDE + 1, sizeof(char *));
language_set[i].count = 0;
language_set[i].max = LANGSET_STRIDE; /* initial limit */
}
@@ -1079,17 +1079,15 @@
// grow the set dynamically as we run out of space.
if (j >= language_set[module_type].max) {
- // in bytes.
- int old_size = language_set[module_type].max * sizeof(char*);
+ int old_max = language_set[module_type].max;
language_set[module_type].max += LANGSET_STRIDE;
s = language_set[module_type].ptr =
realloc(language_set[module_type].ptr,
- language_set[module_type].max *
+ (language_set[module_type].max + 1) *
sizeof(char*));
// realloc() does not set newly-alloc'd mem to zeroes.
- // must use (void*), otherwise arithmetic will use pointer size.
- memset((void*)s + old_size, '\0', LANGSET_STRIDE * sizeof(char*));
+ memset(s + old_max, '\0', (LANGSET_STRIDE + 1) * sizeof(char*));
}
s[j] = g_strdup(language);
|
|
From: <cha...@us...> - 2015-08-18 02:12:45
|
Revision: 4918
http://sourceforge.net/p/gnomesword/code/4918
Author: charcoal
Date: 2015-08-18 02:12:43 +0000 (Tue, 18 Aug 2015)
Log Message:
-----------
language survivability fix replaced with dynamic allocation
Modified Paths:
--------------
trunk/ChangeLog
trunk/src/gnome2/utilities.c
trunk/src/gui/utilities.h
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2015-08-18 00:26:40 UTC (rev 4917)
+++ trunk/ChangeLog 2015-08-18 02:12:43 UTC (rev 4918)
@@ -1,3 +1,28 @@
+2015-08-17 karl <cha...@us...>
+
+ * change language_set to grow dynamically, no limit.
+
+2015-08-06 karl <cha...@us...>
+
+ * survivability fix: increase LANGSET_COUNT to 2000 (eBible repo).
+ * 4.0.3 release.
+
+2015-06-15 karl <cha...@us...>
+
+ * fixed detached parallel "close" button visual overreach.
+ * updated Slovenian translation (marjan savli).
+ * add toolkit identifications to "about xiphos."
+ * generic, all-purpose makeDistro.sh; deleted makeDistro3.sh.
+
+2015-04-15 karl <cha...@us...>
+
+ * emergency fix mem alloc error in editor.
+ * 4.0.2 release.
+
+2015-03-29 karl <cha...@us...>
+
+ * 4.0.1 release.
+
2015-02-20 karl <cha...@us...>
* consequent to use of cppcheck, made many updates for efficiency,
Modified: trunk/src/gnome2/utilities.c
===================================================================
--- trunk/src/gnome2/utilities.c 2015-08-18 00:26:40 UTC (rev 4917)
+++ trunk/src/gnome2/utilities.c 2015-08-18 02:12:43 UTC (rev 4918)
@@ -1031,6 +1031,7 @@
{
gchar **ptr;
int count;
+ int max;
} language_set[N_LANGSET_MODTYPES];
/* one-shot setup during initialization. */
@@ -1039,8 +1040,9 @@
int i;
for (i = 0; i < N_LANGSET_MODTYPES; ++i) {
language_set[i].ptr =
- calloc(LANGSET_COUNT, sizeof(char *));
+ calloc(LANGSET_STRIDE, sizeof(char *));
language_set[i].count = 0;
+ language_set[i].max = LANGSET_STRIDE; /* initial limit */
}
}
@@ -1068,12 +1070,28 @@
if ((language == NULL) || (*language == '\0'))
language = _("Unknown");
assert((module_type >= 0) && (module_type < N_LANGSET_MODTYPES));
+
s = language_set[module_type].ptr;
for (j = 0; j < language_set[module_type].count; ++j) {
if (!strcmp(s[j], language))
return; /* found -- duplicate. */
}
- assert(j < LANGSET_COUNT); /* let's not overrun the set. */
+
+ // grow the set dynamically as we run out of space.
+ if (j >= language_set[module_type].max) {
+ // in bytes.
+ int old_size = language_set[module_type].max * sizeof(char*);
+
+ language_set[module_type].max += LANGSET_STRIDE;
+ s = language_set[module_type].ptr =
+ realloc(language_set[module_type].ptr,
+ language_set[module_type].max *
+ sizeof(char*));
+ // realloc() does not set newly-alloc'd mem to zeroes.
+ // must use (void*), otherwise arithmetic will use pointer size.
+ memset((void*)s + old_size, '\0', LANGSET_STRIDE * sizeof(char*));
+ }
+
s[j] = g_strdup(language);
++(language_set[module_type].count);
}
Modified: trunk/src/gui/utilities.h
===================================================================
--- trunk/src/gui/utilities.h 2015-08-18 00:26:40 UTC (rev 4917)
+++ trunk/src/gui/utilities.h 2015-08-18 02:12:43 UTC (rev 4918)
@@ -146,7 +146,7 @@
UTIL_N_COLUMNS
};
-#define LANGSET_COUNT 2000
+#define LANGSET_STRIDE 100
void language_init(void);
|
|
From: <cha...@us...> - 2015-08-18 00:26:43
|
Revision: 4917
http://sourceforge.net/p/gnomesword/code/4917
Author: charcoal
Date: 2015-08-18 00:26:40 +0000 (Tue, 18 Aug 2015)
Log Message:
-----------
add yrk-cyrl
Modified Paths:
--------------
trunk/ui/languages
Modified: trunk/ui/languages
===================================================================
--- trunk/ui/languages 2015-08-10 15:23:48 UTC (rev 4916)
+++ trunk/ui/languages 2015-08-18 00:26:40 UTC (rev 4917)
@@ -8008,6 +8008,8 @@
yre Yaourรฉ
yri Yarรญ
yrk Nenets
+# add dup for cyrillic version
+yrk-Cyrl Nenets
yrl Nhengatu
yrn Yerong
yrs Yarsun
|
|
From: <cha...@us...> - 2015-08-10 15:23:51
|
Revision: 4916
http://sourceforge.net/p/gnomesword/code/4916
Author: charcoal
Date: 2015-08-10 15:23:48 +0000 (Mon, 10 Aug 2015)
Log Message:
-----------
fix editing glitch in language
Modified Paths:
--------------
trunk/ui/languages
Modified: trunk/ui/languages
===================================================================
--- trunk/ui/languages 2015-08-10 14:48:08 UTC (rev 4915)
+++ trunk/ui/languages 2015-08-10 15:23:48 UTC (rev 4916)
@@ -3780,7 +3780,7 @@
kub Kutep
kuc Kwinsu
# remove leading ' (consequent to eBible repo discoveries)
-kud 'Auhelawa
+kud Auhelawa
kue Kuman
kuf Western Katu
kug Kupa
|
|
From: <cha...@us...> - 2015-08-10 14:48:10
|
Revision: 4915
http://sourceforge.net/p/gnomesword/code/4915
Author: charcoal
Date: 2015-08-10 14:48:08 +0000 (Mon, 10 Aug 2015)
Log Message:
-----------
languages updates consequent to eBible discoveries
Modified Paths:
--------------
trunk/ui/languages
Modified: trunk/ui/languages
===================================================================
--- trunk/ui/languages 2015-08-07 02:18:21 UTC (rev 4914)
+++ trunk/ui/languages 2015-08-10 14:48:08 UTC (rev 4915)
@@ -698,7 +698,8 @@
alr Alutor
als Tosk Albanian
alt Southern Altai
-alu 'Are'are
+# remove leading ' (consequent to eBible repo discoveries)
+alu Are'are
alw Alaba-Kโabeena
alx Amol
aly Alyawarr
@@ -881,7 +882,8 @@
aub Alugu
auc Waorani
aud Anuta
-aue =/Kx'au//'ein
+# remove leading =/ (consequent to eBible repo discoveries)
+aue Kx'au//'ein
aug Aguna
auh Aushi
aui Anuki
@@ -1220,6 +1222,8 @@
bjm Bajelani
bjn Banjar
bjo Mid-Southern Banda
+# addition from eBible repo
+bjp Tangga
bjq Southern Betsimisaraka Malagasy
bjr Binumarien
bjs Bajan
@@ -2219,6 +2223,8 @@
dva Duau
dwa Diri
dwl Walo Kumbe Dogon
+# addition from eBible repo
+dwr Dawro
dws Dutton World Speedwords
dww Dawawa
dya Dyan
@@ -2238,6 +2244,8 @@
dzn Dzando
dzo Dzongkha
ebg Ebughu
+# addition from eBible repo
+ebk Eastern Bontok
ebo Teke-Ebo
ebr Ebriรฉ
ebu Embu
@@ -2614,6 +2622,8 @@
gmn Gimnime
gmo Gamo-Gofa-Dawro
gmu Gumalu
+# addition from eBible repo
+gmv Gamo
gmx Magoma
gmy Mycenaean Greek
gna Kaansa
@@ -2624,7 +2634,8 @@
gng Ngangam
gnh Lere
gni Gooniyandi
-gnk //Gana
+# remove leading // (consequent to eBible repo discoveries)
+gnk Gana
gnl Gangulu
gnm Ginuman
gnn Gumatj
@@ -2640,6 +2651,8 @@
goc Gorakor
god Godiรฉ
goe Gongduk
+# addition from eBible repo
+gof Gofa
gog Gogo
goh Old High German (ca. 750-1050)
goi Gobasi
@@ -2743,7 +2756,8 @@
gwf Gowro
gwg Moo
gwi Gwichสผin
-gwj /Gwi
+# remove leading / (consequent to eBible repo discoveries)
+gwj Gwi
gwn Gwandara
gwr Gwere
gwt Gawar-Bati
@@ -2874,7 +2888,8 @@
hna Mina (Cameroon)
hnd Southern Hindko
hne Chhattisgarhi
-hnh //Ani
+# remove leading // (consequent to eBible repo discoveries)
+hnh Ani
hni Hani
hnj Hmong Njua
hnn Hanunoo
@@ -2925,7 +2940,8 @@
htu Hitu
htx Middle Hittite
hub Huambisa
-huc =/Hua
+# remove leading =/ (consequent to eBible repo discoveries)
+huc Hua
hud Huaulu
hue San Francisco Del Mar Huave
huf Humene
@@ -3763,6 +3779,7 @@
kua Kuanyama
kub Kutep
kuc Kwinsu
+# remove leading ' (consequent to eBible repo discoveries)
kud 'Auhelawa
kue Kuman
kuf Western Katu
@@ -3950,6 +3967,8 @@
lbg Laopang
lbi La'bi
lbj Ladakhi
+# addition from eBible repo
+lbk Central Bontok
lbm Lodhi
lbn Lamet
lbo Laven
@@ -5169,7 +5188,8 @@
nmk Namakura
nml Ndemli
nmm Manangba
-nmn !Xรณรต
+# remove leading ! (consequent to eBible repo discoveries)
+nmn Xรณรต
nmo Moyon Naga
nmp Nimanbur
nmq Nambya
@@ -5528,7 +5548,8 @@
oue Oune
oui Old Uighur
oum Ouma
-oun !O!ung
+# remove leading ! (consequent to eBible repo discoveries)
+oun O!ung
owi Owiniga
owl Old Welsh
oyb Oy
@@ -5796,6 +5817,8 @@
prc Parachi
prd Parsi-Dari
pre Principense
+# addition from eBible repo
+prf Paranan
prg Prussian
prh Porohanon
pri Paicรฎ
@@ -6903,6 +6926,8 @@
tnx Tanema
tny Tongwe
tnz Tonga (Thailand)
+# addition from eBible repo
+to Tongan
tob Toba
toc Coyutla Totonac
tod Toma
@@ -7568,7 +7593,8 @@
xag Aghwan
xai Kaimbรฉ
xal Kalmyk
-xam /Xam
+# remove leading / (consequent to eBible repo discoveries)
+xam Xam
xan Xamtanga
xao Khao
xap Apalachee
@@ -7608,7 +7634,8 @@
xdy Malayic Dayak
xeb Eblan
xed Hdi
-xeg //Xegwi
+# remove leading // (consequent to eBible repo discoveries)
+xeg Xegwi
xel Kelo
xem Kembayan
xep Epi-Olmec
|
|
From: <cha...@us...> - 2015-08-07 02:18:23
|
Revision: 4914
http://sourceforge.net/p/gnomesword/code/4914
Author: charcoal
Date: 2015-08-07 02:18:21 +0000 (Fri, 07 Aug 2015)
Log Message:
-----------
4.0.3 release
Modified Paths:
--------------
trunk/RELEASE-NOTES
trunk/debian/changelog
trunk/win32/nsis/installer32.nsi
trunk/win32/nsis/installer64.nsi
trunk/wscript
Modified: trunk/RELEASE-NOTES
===================================================================
--- trunk/RELEASE-NOTES 2015-08-05 13:08:03 UTC (rev 4913)
+++ trunk/RELEASE-NOTES 2015-08-07 02:18:21 UTC (rev 4914)
@@ -3,6 +3,16 @@
XIPHOS RELEASE NOTES
____________________
+Release 4.0.3
+06 Aug 2015
+
+Another bugfix release, induced by the discovery that a hard limit on the
+number of language groups that can be supported is too small with respect
+to newer repositories supporting far larger groups of modules. The code
+involved will be re-factored for a better near-term future release but
+this is an immediate survivability fix.
+________________________________________________________________
+
Release 4.0.2
15 Apr 2015
Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog 2015-08-05 13:08:03 UTC (rev 4913)
+++ trunk/debian/changelog 2015-08-07 02:18:21 UTC (rev 4914)
@@ -1,3 +1,9 @@
+xiphos-svn (4.0.3-0~svn) unstable; urgency=low
+
+ * New upstream release, urgent bugfix only
+
+ -- Karl Kleinpaste <cha...@us...> Thu, 06 Aug 2015 07:15:00 +0000
+
xiphos-svn (4.0.2-0~svn) unstable; urgency=low
* New upstream release, urgent bugfix only
Modified: trunk/win32/nsis/installer32.nsi
===================================================================
--- trunk/win32/nsis/installer32.nsi 2015-08-05 13:08:03 UTC (rev 4913)
+++ trunk/win32/nsis/installer32.nsi 2015-08-07 02:18:21 UTC (rev 4914)
@@ -44,7 +44,7 @@
!define APP_NAME "Xiphos"
!define INSTALLER_NAME "xiphos"
!define APP_BINARY_NAME "xiphos.exe"
- !define APP_VERS "4.0.2"
+ !define APP_VERS "4.0.3"
!define APP_EDITION "win32"
!define APP_URL "http://xiphos.org"
Modified: trunk/win32/nsis/installer64.nsi
===================================================================
--- trunk/win32/nsis/installer64.nsi 2015-08-05 13:08:03 UTC (rev 4913)
+++ trunk/win32/nsis/installer64.nsi 2015-08-07 02:18:21 UTC (rev 4914)
@@ -44,7 +44,7 @@
!define APP_NAME "Xiphos"
!define INSTALLER_NAME "xiphos"
!define APP_BINARY_NAME "xiphos.exe"
- !define APP_VERS "4.0.2"
+ !define APP_VERS "4.0.3"
!define APP_EDITION "win64"
!define APP_URL "http://xiphos.org"
Modified: trunk/wscript
===================================================================
--- trunk/wscript 2015-08-05 13:08:03 UTC (rev 4913)
+++ trunk/wscript 2015-08-07 02:18:21 UTC (rev 4914)
@@ -14,7 +14,7 @@
import waffles.misc
import waffles.gnome as gnome
-VERSION='4.0.2'
+VERSION='4.0.3'
APPNAME='xiphos'
PACKAGE='xiphos'
|
|
From: <do...@us...> - 2015-08-05 13:08:05
|
Revision: 4913
http://sourceforge.net/p/gnomesword/code/4913
Author: domcox
Date: 2015-08-05 13:08:03 +0000 (Wed, 05 Aug 2015)
Log Message:
-----------
French translation update
Modified Paths:
--------------
trunk/po/fr.po
Modified: trunk/po/fr.po
===================================================================
--- trunk/po/fr.po 2015-08-04 22:18:17 UTC (rev 4912)
+++ trunk/po/fr.po 2015-08-05 13:08:03 UTC (rev 4913)
@@ -1,5 +1,5 @@
# French translation for Xiphos
-# Copyright (C) 2002, 2014 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2015 Free Software Foundation, Inc.
# Contributions are welcome.
#
# Translation Notes (Any comment welcome)
@@ -13,18 +13,19 @@
# Viewer -> Aperรงu
# Biblical Text -> Textes bibliques
# Lemma -> Lemme
+# Glosse -> Annotation
# Daily Devotion -> Calendrier biblique
-# Speaker -> Orateur
+# Speaker -> Intervenant
# Audience -> Audience
#
-# Dominique Corbex <do...@us...>, 2002, 2014.
+# Dominique Corbex <do...@us...>, 2002, 2015.
#
msgid ""
msgstr ""
-"Project-Id-Version: Xiphos 3.4.0\n"
+"Project-Id-Version: Xiphos 4.0.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-06-16 13:36-0400\n"
-"PO-Revision-Date: 2014-12-19 21:51+0100\n"
+"PO-Revision-Date: 2015-08-05 14:49+0200\n"
"Last-Translator: Dominique Corbex <do...@us...>\n"
"Language-Team: emacs + po-mode <gn...@tr...>\n"
"Language: \n"
@@ -98,29 +99,25 @@
#: ../src/gnome2/about_modules.c:219 ../src/gnome2/about_trans.c:168
#: ../src/gnome2/find_dialog.c:288
msgid "Close"
-msgstr ""
+msgstr "Fermer"
#: ../src/gnome2/about_modules.c:411
-#, fuzzy
msgid "<b>Module name:</b> "
-msgstr "<b>Gestionnaire de modules</b>"
+msgstr "<b>Module :</b>"
#: ../src/gnome2/about_modules.c:415
-#, fuzzy
msgid "<b>Version:</b> "
-msgstr "<b>Options de la requรชte</b>"
+msgstr "<b>Version :</b>"
#: ../src/gnome2/about_modules.c:418
msgid "No version stamp found"
-msgstr ""
+msgstr "Pas d'indication trouvรฉe"
#: ../src/gnome2/about_modules.c:421
-#, fuzzy
msgid "<b>Type:</b> "
-msgstr "<b>Plage de versets</b>"
+msgstr "<b>Type :</b>"
#: ../src/gnome2/about_modules.c:423
-#, fuzzy
msgid "Daily Devotion"
msgstr "Calendrier biblique"
@@ -137,17 +134,16 @@
msgstr "Images"
#: ../src/gnome2/about_modules.c:429
-#, fuzzy
msgid "Glossary"
-msgstr "Glossaires"
+msgstr "Glossaire"
#: ../src/gnome2/about_modules.c:433
msgid "Cult"
-msgstr ""
+msgstr "Culte"
#: ../src/gnome2/about_modules.c:437 ../src/gnome2/search_sidebar.c:261
msgid "Bible"
-msgstr "Texte biblique"
+msgstr "Bible"
#: ../src/gnome2/about_modules.c:440 ../src/gnome2/search_sidebar.c:269
#: ../ui/prefs.glade.h:134 ../ui/prefs.gtkbuilder.h:134
@@ -160,139 +156,116 @@
msgstr "Dictionnaire"
#: ../src/gnome2/about_modules.c:446
-#, fuzzy
msgid "General Book"
-msgstr "Livres"
+msgstr "Livre"
#: ../src/gnome2/about_modules.c:451
-#, fuzzy
msgid "Personal Commentary"
-msgstr "Renommer le commentaire"
+msgstr "Commentaire personnel"
#: ../src/gnome2/about_modules.c:454
-#, fuzzy
msgid "Journal"
-msgstr "JournalQuotidien"
+msgstr "Journal"
#: ../src/gnome2/about_modules.c:457
-#, fuzzy
msgid "Unknown type"
-msgstr "Inconnu"
+msgstr "Type inconnu"
#: ../src/gnome2/about_modules.c:466
-#, fuzzy
msgid "<b>Module abbreviation:</b> "
-msgstr "<b>Listes de modules</b>"
+msgstr "<b>Abbrรฉviation du module :</b>"
#: ../src/gnome2/about_modules.c:471
-#, fuzzy
msgid "<b>Language:</b> "
-msgstr "<b>Plages de versets</b>"
+msgstr "<b>Langue :</b>"
#: ../src/gnome2/about_modules.c:474
msgid "Not specified"
-msgstr ""
+msgstr "Non spรฉcifiรฉe"
#: ../src/gnome2/about_modules.c:483
-#, fuzzy
msgid "<b>Installed size:</b> "
-msgstr "<b>Source des dรฉpรดts</b>"
+msgstr "<b>Taille :</b>"
#: ../src/gnome2/about_modules.c:491
-#, fuzzy
msgid "<b>Companion module(s):</b></br>"
-msgstr "<b>Modules de base</b>"
+msgstr "<b>Modules compagnons :</b></br>"
#: ../src/gnome2/about_modules.c:501
-#, fuzzy
msgid "<b>Features:</b>"
-msgstr "<b>Format</b>"
+msgstr "<b>Options :</b>"
#: ../src/gnome2/about_modules.c:505
-#, fuzzy
msgid "* Headings"
-msgstr "En-tรชtes"
+msgstr "* En-tรชtes"
#: ../src/gnome2/about_modules.c:513
-#, fuzzy
msgid "* Footnotes"
-msgstr "Notes de bas de page"
+msgstr "* Notes de bas de page"
#: ../src/gnome2/about_modules.c:519
-#, fuzzy
msgid "* Cross references"
-msgstr "Rรฉfรฉrences croisรฉes"
+msgstr "* Rรฉfรฉrences croisรฉes"
#: ../src/gnome2/about_modules.c:526
-#, fuzzy
msgid "* Strong's numbers"
-msgstr "Nombres de Strong"
+msgstr "* Nombres de Strong"
#: ../src/gnome2/about_modules.c:534
-#, fuzzy
msgid "* Morphological tags"
-msgstr "รtiquettes morphologiques"
+msgstr "* รtiquettes morphologiques"
#: ../src/gnome2/about_modules.c:540
-#, fuzzy
msgid "* Lemmas"
-msgstr "Lemmes"
+msgstr "* Lemmes"
#: ../src/gnome2/about_modules.c:548
-#, fuzzy
msgid "* Words of Christ in red"
-msgstr "Paroles de Christ en rouge"
+msgstr "* Paroles de Christ en rouge"
#: ../src/gnome2/about_modules.c:553
-#, fuzzy
msgid "* Greek accents"
-msgstr "Accents grecs"
+msgstr "* Accents grecs"
#: ../src/gnome2/about_modules.c:559
-#, fuzzy
msgid "* Hebrew Vowel Points"
-msgstr "Ponctuation des voyelles en hรฉbreu"
+msgstr "* Ponctuation des voyelles en hรฉbreu"
#: ../src/gnome2/about_modules.c:565
-#, fuzzy
msgid "* Hebrew Cantillation"
-msgstr "Vocalisations en hรฉbreu"
+msgstr "* Vocalisations en hรฉbreu"
#: ../src/gnome2/about_modules.c:571
msgid "* Variant readings"
-msgstr ""
+msgstr "* Variantes"
#: ../src/gnome2/about_modules.c:578
-#, fuzzy
msgid "* Transliteration forms"
-msgstr "Translittรฉration"
+msgstr "* Translittรฉration"
#: ../src/gnome2/about_modules.c:583
msgid "* Enumerations"
-msgstr ""
+msgstr "* รnumรฉrations"
#: ../src/gnome2/about_modules.c:588
msgid "* Glosses"
-msgstr ""
+msgstr "* Annotations"
#: ../src/gnome2/about_modules.c:595
-#, fuzzy
msgid "* Morpheme Segmentation"
-msgstr "Segmentation de morphรจme"
+msgstr "* Segmentation de morphรจme"
#: ../src/gnome2/about_modules.c:602
msgid "* <i>No features found</i>"
-msgstr ""
+msgstr "* <i>Aucune option</i>"
#: ../src/gnome2/about_modules.c:612
-#, fuzzy
msgid "<b>Distribution license:</b>"
-msgstr "<b>Type d'attribut</b>"
+msgstr "<b>Licence de distribution :</b>"
#: ../src/gnome2/about_modules.c:625
-#, fuzzy
msgid "<b>Promotional:</b> "
-msgstr "<b>Options de la requรชte</b>"
+msgstr "<b>Promotion :</b>"
#: ../src/gnome2/about_sword.c:79
msgid ""
@@ -305,25 +278,19 @@
"\n"
" Books can be downloaded from the SWORD Project."
msgstr ""
-"Le Projet SWORD a pour objectif la crรฉation d'un ensemble de logiciels "
-"destinรฉs ร l'รฉtude de Dieu et de Sa Parole.\n"
+"Le Projet SWORD a pour objectif la crรฉation d'un ensemble de logiciels destinรฉs ร l'รฉtude de Dieu et de Sa Parole.\n"
"\n"
-"La bibliothรจque logicielle du Projet SWORD donne les moyens d'utiliser et "
-"รฉtudier aisรฉment textes bibliques, commentaires, dictionnaires ou autres "
-"documents.\n"
+"La plateforme logicielle du Projet SWORD apporte les moyens de construire des outils permettant d'utiliser et d'รฉtudier aisรฉment les textes bibliques, commentaires, dictionnaires ou autres ouvrages.\n"
"\n"
-"De nombreux logiciels utilisateurs sont dรฉveloppรฉs sur cette bibliothรจque. "
-"L'installation d'une seule collection de textes est ainsi exploitable par "
-"tous ces logiciels.\n"
+"De nombreux logiciels utilisateurs sont dรฉveloppรฉs ร partir de cette plateforme. Une collection de documents installรฉe est ainsi exploitable par tous ces logiciels.\n"
"\n"
-"Les textes peuvent รชtre tรฉlรฉchargรฉs depuis le Projet SWORD."
+"Les documents peuvent รชtre tรฉlรฉchargรฉs depuis le Projet SWORD."
#: ../src/gnome2/about_sword.c:98
msgid "The SWORD Project"
msgstr "The SWORD Project"
#: ../src/gnome2/about_trans.c:82
-#, fuzzy
msgid ""
"Do you like using Xiphos to study the Bible? Would you like to see its user "
"interface in your native language? You could translate Xiphos! \n"
@@ -333,13 +300,9 @@
"below, contact us, and get involved with our efforts. Your help will be much "
"appreciated!"
msgstr ""
-"Si vous apprรฉciez Xiphos, vous aimeriez peut-รชtre le voir s'afficher dans "
-"votre langue maternelle ? Sachez que vous pouvez participer ร sa "
-"traduction !\n"
+"Si vous apprรฉciez Xiphos, vous aimeriez peut-รชtre le voir s'afficher dans votre langue maternelle ? Sachez que vous pouvez participer ร sa traduction !\n"
"\n"
-"Toute nouvelle contribution ร la traduction de Xiphos est la bienvenue. Si "
-"vous souhaitez apporter votre aide, suivez le lien ci-dessous. N'hรฉsitez pas "
-"ร nous contacter et nous rejoindre."
+"Toute nouvelle contribution ร la traduction de Xiphos est la bienvenue. Si vous souhaitez apporter votre aide, suivez le lien ci-dessous. N'hรฉsitez pas ร nous contacter et nous rejoindre. Votre aide sera trรจs apprรฉciรฉe."
#: ../src/gnome2/about_trans.c:96
msgid "About Xiphos Translation"
@@ -575,7 +538,7 @@
#: ../src/gnome2/main_window.c:972
msgid "Open a new tab"
-msgstr "Ouvrir un nouvel onglet"
+msgstr "Ouvre un nouvel onglet"
#: ../src/gnome2/main_window.c:1052 ../src/gnome2/sidebar.c:614
#: ../src/gnome2/sidebar.c:619 ../src/main/sidebar.cc:656
@@ -689,30 +652,21 @@
"Live Chat, or (if no one is responsive in chat) send mail to our users' "
"mailing list.\n"
msgstr ""
-"<b>Bienvenue dans le Gestionnaire de modules</b>\n"
+"<b>Bienvenue dans le Gestionnaire de modules!</b>\n"
"\n"
-"C'est le mรฉcanisme de Xiphos pour obtenir du contenu et le mettre ร jour. Si "
-"vous ne l'avez pas encore utilisรฉ, prenez quelques instants pour le "
-"connaรฎtre.\n"
+"C'est le moyen utilisรฉ dans Xiphos pour installer et mettre ร jour les modules de bibles, commentaires ou autres. Si vous ne l'avez pas encore utilisรฉ, prenez quelques instants pour le dรฉcouvrir.\n"
" \n"
-"Les modules proviennent de diffรฉrents <u>dรฉpots</u>. \n"
+"Les modules proviennent de diverses sources appelรฉes <i>dรฉpots</i>. \n"
"\n"
-"<b>Dรฉpots : Ajouter/Supprimer</b> indique quels dรฉpots sont actuellement "
-"rรฉpertoriรฉs.\n"
+"<b>Dรฉpots โ Ajouter/Supprimer</b> liste les dรฉpots actuellement rรฉpertoriรฉs.\n"
"\n"
-"<b>Dรฉpots : Sรฉlection</b> permet de dรฉfinir d'oรน les modules doivent "
-"provenir, c'est-ร -dire de quel dรฉpรดt Xiphos doit les rapatrier, ainsi que "
-"l'endroit oรน ils doivent รชtre placรฉs sur le systรจme. Sรฉlectionnez <i>Source "
-"des dรฉpots</i> et <i>Dossier d'installation</i>, puis ensuite <i>Actualiser</"
-"i>.\n"
+"<b>Dรฉpots โ Sรฉlection</b> permet de dรฉfinir d'oรน les modules doivent provenir, c'est-ร -dire de quel dรฉpรดt Xiphos doit les rapatrier, ainsi que l'endroit oรน ils doivent รชtre placรฉs sur le systรจme. Sรฉlectionnez <i>Source des dรฉpots</i> et <i>Dossier d'installation</i>, puis ensuite <b>Actualiser</b>.\n"
"\n"
-"<b>Modules : Installer</b> permet de sรฉlectionner et d'obtenir des modules "
-"aprรจs avoir choisi la source et le dossier d'installation.\n"
+"<b>Modules โ Installer/Maj</b> permet de sรฉlectionner et d'installer des modules aprรจs avoir choisi la source et le dossier d'installation.\n"
"\n"
-"<b>Modules : Maintenance</b> sert ร l'archivage et la crรฉation d'index.\n"
+"<b>Modules โ Maintenance</b> sert ร l'archivage et la crรฉation d'index.\n"
"\n"
-"Pour plus d'informations ร propos du gestionnaire de modules, voir la "
-"section 5 du manuel d'aide. \n"
+"Pour plus d'informations ร propos du gestionnaire de modules, voir la section 5 du manuel d'aide. \n"
#: ../src/gnome2/mod_mgr.c:67
msgid ""
@@ -750,36 +704,26 @@
msgstr ""
"<b>Bienvenue dans Xiphos.</b>\n"
"\n"
-"Aucune Bible n'est installรฉe. Pour achever son initialisation, Xiphos a "
-"besoin d'au moins un module de texte biblique. \n"
-"Le gestionnaire de modules a donc รฉtรฉ ouvert pour pouvoir installer une ou "
-"plusieurs Bibles depuis soit un dรฉpot local (cdrom, disque flash) soit par "
-"internet depuis le serveur de Crosswire Bible Society.\n"
-"Merci de se rรฉfรฉrer aux instructions suivantes, ainsi qu'ร celles prรฉsentes "
-"dans la vue d'ensemble du gestionnaire de modules รฉgalement ouverte.\n"
+"Aucune Bible n'a รฉtรฉ trouvรฉe. Pour achever son initialisation, Xiphos a besoin d'au moins un module de texte biblique. \n"
+"Le <i>Gestionnaire de modules</i> a donc รฉtรฉ ouvert pour vous permettre d'installer une ou plusieurs Bibles soit ร partir d'un dรฉpot local (cdrom, disque flash) soit par tรฉlรฉchargement depuis le serveur de la Crosswire Bible Society.\n"
+"Merci de se rรฉfรฉrer aux instructions suivantes, ainsi qu'ร celles prรฉsentes dans l'รฉcran de bienvenue du <i>Gestionnaire de modules</i> ouvert en arriรจre-plan.\n"
"\n"
"<u>Installation locale :</u>\n"
-"- Dans <i>Dรฉpรดts : Ajouter/Supprimer</i>, ajouter le nom du nouveau "
-"rรฉpertoire local oรน se trouvent les modules. (Rรฉpertoire contenant les "
-"dossiers nommรฉs <i>mods.d</i> et <i>modules</i>)\n"
-"- Dans <i>Dรฉpรดts : Sรฉlection</i>, sรฉlectionner ยซ Dรฉpot local ยป puis le nom "
-"du rรฉpertoire dans le menu dรฉroulant.\n"
+"- Dans <b>Dรฉpรดts โ Ajouter/Supprimer</b>, ajouter le nom du nouveau rรฉpertoire local oรน se trouvent les modules. (Rรฉpertoire contenant les dossiers nommรฉs <i>mods.d</i> et <i>modules</i>)\n"
+"- Dans <b>Dรฉpรดts โ Sรฉlection</b>, sรฉlectionner ยซ Dรฉpot local ยป puis le nom du rรฉpertoire dans le menu dรฉroulant.\n"
"\n"
-"<u>Installation par Internet :</u>\n"
-"- Dans <i>Dรฉpรดts : Sรฉlection</i>, sรฉlectionner ยซ Dรฉpot distant ยป puis ยซ "
-"Crosswire ยป dans le menu dรฉroulant.\n"
-"- Cliquer ยซ Actualiser ยป au bas de la fenรชtre. \n"
+"<u>Installation par tรฉlรฉchargement :</u>\n"
+"- Dans <b>Dรฉpรดts โ Sรฉlection</b>, sรฉlectionner ยซ Dรฉpot distant ยป puis ยซ Crosswire ยป dans le menu dรฉroulant.\n"
+"- Cliquer sur <b>Actualiser</b> au bas de la fenรชtre. \n"
"\n"
"<u>Dans les 2 cas :</u>\n"
-"- Dans <i>Modules : Installer</i>, sรฉlectionner la Bible et les autres "
-"modules de votre choix.\n"
-"- Cliquer ยซ Installer ยป.\n"
-"- Fermer le Gestionnaire de modules quand vous avez terminรฉ.\n"
+"- Dans <b>Modules โ Installer/Maj</b>, sรฉlectionner la Bible et les autres modules de votre choix.\n"
+"- Cliquer sur <b>Installer</b>.\n"
+"- Fermer le <i>Gestionnaire de modules</i> quand vous avez terminรฉ.\n"
"\n"
-"<u>Attention</u> : Prudence dans les pays de persรฉcution.\n"
+"<u>Attention</u> : La plus extrรชme prudence est requise dans les pays de persรฉcution.\n"
"\n"
-"Cette fenรชtre d'aide ainsi que la vue d'ensemble du gestionnaire de modules "
-"peuvent รชtre fermรฉes ร tout moment."
+" "
#: ../src/gnome2/mod_mgr.c:191
msgid "Remove these modules?"
@@ -1142,10 +1086,13 @@
"Would you like to delete %s?\n"
"Beware: This cannot be undone."
msgstr ""
+"%s remplace %s.\n"
+"Effacer %s?\n"
+"Attention: pas de retour en arriรจre possible"
#: ../src/gnome2/mod_mgr.c:2682
msgid "No obsolete modules were found."
-msgstr ""
+msgstr "Aucun module pรฉrimรฉ trouvรฉ."
#: ../src/gnome2/mod_mgr.c:2704
msgid "Standard remote sources have been loaded."
@@ -1281,7 +1228,7 @@
#: ../src/gnome2/preferences_dialog.c:997
msgid "Speaker"
-msgstr "Orateur"
+msgstr "Intervenant"
#: ../src/gnome2/preferences_dialog.c:998
msgid "Audience"
@@ -1432,7 +1379,7 @@
"For complete details, search the web for \"lucene search syntax\"."
msgstr ""
"<b>Aperรงu de la syntaxe des requรชtes optimisรฉes ยซ lucene ยป</b>\n"
-"Rechercher des versets qui contiennent ...\n"
+"Correspondance des recherches de versets :\n"
"\n"
"est amour\n"
"\tยซ est ยป ou ยซ amour ยป\n"
@@ -1458,8 +1405,7 @@
"\tSรฉlectionner aussi l'affichage ยซ Avec nombres \n"
"\tde Strong ยป dans l'onglet ยซ Attributs ยป\n"
"\n"
-"Pour plus d'amples dรฉtails, rechercher sur Internet : ยซ Syntaxe requรชte "
-"Lucene ยป."
+"Pour plus d'amples dรฉtails, rechercher sur Internet : ยซ Syntaxe requรชte Lucene ยป."
#. *****************************************************************************
#. * Name
@@ -1609,7 +1555,7 @@
#: ../src/gnome2/sidebar.c:934
msgid "Paste verse references"
-msgstr "Copier les rรฉfรฉrences de verset"
+msgstr "Coller les rรฉfรฉrences de verset"
#: ../src/gnome2/sidebar.c:936
msgid "List:"
@@ -1705,94 +1651,90 @@
msgid ""
"Mismatched packet\n"
"\n"
-msgstr ""
+msgstr "Paquet incohรฉrent :\n\n"
#: ../src/main/biblesync_glue.cc:118
msgid ""
"Presence announcement:\n"
"\n"
-msgstr ""
+msgstr "Annonce de prรฉsence :\n\n"
#: ../src/main/biblesync_glue.cc:128
msgid ""
"Navigation packet:\n"
"\n"
-msgstr ""
+msgstr "Paquet de navigation :\n\n"
#: ../src/main/biblesync_glue.cc:179
-#, fuzzy
msgid "Unknown module "
-msgstr "Pas de module"
+msgstr "Module inconnu"
#: ../src/main/biblesync_glue.cc:179
msgid ""
".\n"
"Navigated indirectly using verse list."
msgstr ""
+".\n"
+"Navigation indirecte en utilisant la liste de versets."
#: ../src/main/biblesync_glue.cc:255
msgid "ERROR: unknown BibleSync indicator: "
-msgstr ""
+msgstr "ERREUR : indicateur BibleSync inconnu : "
#: ../src/main/biblesync_glue.cc:255
msgid "Other indications are:"
-msgstr ""
+msgstr "Les autres indications sont :"
#: ../src/main/biblesync_glue.cc:530
-#, fuzzy
msgid "Check the box to listen to this Speaker"
-msgstr "Cocher la case pour travailler avec ce module"
+msgstr "Cocher la case pour suivre cet intervenant"
#: ../src/main/biblesync_glue.cc:543
-#, fuzzy
msgid "Available Speakers"
-msgstr "Dispo"
+msgstr "Intervenants disponibles"
#: ../src/main/biblesync_glue.cc:552
msgid "D/I"
-msgstr ""
+msgstr "D/I"
#: ../src/main/biblesync_glue.cc:562
msgid "Last navigation was Direct or Indirect"
-msgstr ""
+msgstr "La derniรจre navigation รฉtait directe ou indirecte"
#: ../src/main/biblesync_glue.cc:571
-#, fuzzy
msgid "Last Navigation"
-msgstr "Naviguer"
+msgstr "Derniรจre navigation"
#: ../src/main/biblesync_glue.cc:590
msgid "UUID"
-msgstr ""
+msgstr "UUID"
#: ../src/main/biblesync_glue.cc:610
-#, fuzzy
msgid "IP address: "
-msgstr "Adresse"
+msgstr "Adresse IP :"
#: ../src/main/biblesync_glue.cc:610
-#, fuzzy
msgid ""
"\n"
"Application: "
-msgstr "ร propos de cette application"
+msgstr "\nApplication : "
#: ../src/main/biblesync_glue.cc:610
msgid ""
"\n"
"Device: "
-msgstr ""
+msgstr "\nPรฉriphรฉrique :"
#: ../src/main/biblesync_glue.cc:610
msgid ""
"\n"
"UUID: "
-msgstr ""
+msgstr "\nUUID : "
#: ../src/main/display.cc:89
msgid ""
"<br/><br/><center><i>This module has no content at this point.</i></center>"
-msgstr ""
+msgstr "<br/><br/><center><i>Ce module n'a aucun contenu ร cette rรฉfรฉrence.</i></center>"
#: ../src/main/display.cc:249
#, c-format
@@ -1865,7 +1807,7 @@
#: ../src/main/parallel_view.cc:61
msgid "Unknown parallel module: "
-msgstr ""
+msgstr "Module parallรจle inconnu : "
#: ../src/main/parallel_view.cc:400 ../ui/xi-menus.glade.h:68
#: ../ui/xi-menus-popup.gtkbuilder.h:47
@@ -1950,20 +1892,18 @@
#: ../src/main/parallel_view.cc:547 ../ui/xi-menus.glade.h:83
#: ../ui/xi-menus-popup.gtkbuilder.h:61
-#, fuzzy
msgid "Transliterated Forms"
-msgstr "Translittรฉration"
+msgstr "Formes translittรฉrรฉes"
#: ../src/main/parallel_view.cc:556 ../ui/xi-menus.glade.h:84
#: ../ui/xi-menus-popup.gtkbuilder.h:62
msgid "Enumerations"
-msgstr ""
+msgstr "รnumรฉrations"
#: ../src/main/parallel_view.cc:565 ../ui/xi-menus.glade.h:85
#: ../ui/xi-menus-popup.gtkbuilder.h:63
-#, fuzzy
msgid "Glosses"
-msgstr "Glossaires"
+msgstr "Annotations"
#: ../src/main/parallel_view.cc:745
msgid "view context"
@@ -2245,11 +2185,9 @@
msgstr "$HOME n'est pas dรฉfini!"
#: ../src/main/settings.c:120
-#, fuzzy, c-format
+#, c-format
msgid "Xiphos can not create directory "
-msgstr ""
-"Impossible de crรฉer le chemin d'accรจs au module:\n"
-"%s"
+msgstr "Impossible de crรฉer le dossier"
#: ../src/main/settings.c:134 ../src/main/settings.c:144
#: ../src/main/settings.c:155
@@ -2278,18 +2216,14 @@
"Xiphos cannot proceed,\n"
"and will now exit."
msgstr ""
-"Aucun module de texte biblique\n"
-"n'a รฉtรฉ installรฉ, suite ร un\n"
-"ajournement opรฉrateur.\n"
+"Aucune Bible trouvรฉe!\n"
"\n"
-"Sans aucun module de Bible ร \n"
-"visualiser, Xiphos ne peut\n"
-"fonctionner, et va maintenant\n"
-"se terminer."
+"Xiphos ne peut fonctionner sans Bible,\n"
+"et va maintenant se terminer."
#: ../src/main/settings.c:223
msgid "Bible module installation complete."
-msgstr "Installation de module terminรฉe."
+msgstr "L'installation des modules est terminรฉe."
#: ../src/main/sidebar.cc:146
msgid ""
@@ -2411,9 +2345,8 @@
msgstr "Effacer l'historique"
#: ../src/main/tab_history.c:308
-#, fuzzy
msgid "History โ Verse List"
-msgstr "_Versets"
+msgstr "Historique โ Liste de versets"
#: ../src/main/url.cc:106
msgid "URL not found:"
@@ -2930,7 +2863,7 @@
#: ../ui/export-dialog.glade.h:32
msgid "Include Version"
-msgstr "Nom de la version de la Bible"
+msgstr "Nom de la version de Bible"
#: ../ui/export-dialog.glade.h:33 ../ui/export-dialog.gtkbuilder.h:33
msgid "Version button"
@@ -3341,7 +3274,6 @@
msgstr "Liste alphabรฉtique"
#: ../ui/gtk2_webedit.ui.h:103 ../ui/gtk_webedit.ui.h:103
-#, fuzzy
msgid "Strike"
msgstr "Barrรฉ"
@@ -3375,9 +3307,7 @@
#: ../ui/module-manager.glade.h:3 ../ui/module-manager.gtkbuilder.h:3
msgid "Open a brief introductory explanation of how the Module Manager works."
-msgstr ""
-"Ouvre une brรจve explication introduisant la faรงon dont le gestionnaire de "
-"modules fonctionne."
+msgstr "Ouvre l'aide d'introduction du gestionnaire de modules."
#: ../ui/module-manager.glade.h:4 ../ui/module-manager.gtkbuilder.h:4
msgid "_Load Standard"
@@ -3395,9 +3325,7 @@
msgid ""
"Refresh Xiphos' knowledge of what modules are available at the selected "
"remote repository"
-msgstr ""
-"Actualise l'information dans ยซ Xiphos ยป au sujet des modules disponibles "
-"dans les dรฉpรดts."
+msgstr "Actualise la liste des modules disponibles dans les dรฉpรดts."
#: ../ui/module-manager.glade.h:7 ../ui/module-manager.gtkbuilder.h:8
msgid "_Install"
@@ -3409,7 +3337,7 @@
#: ../ui/module-manager.glade.h:9 ../ui/module-manager.gtkbuilder.h:9
msgid "Remove the selected modules from your system"
-msgstr "Supprime les modules sรฉlectionnรฉs de votre systรจme"
+msgstr "Enlรจve les modules sรฉlectionnรฉs."
#: ../ui/module-manager.glade.h:10 ../ui/module-manager.gtkbuilder.h:10
msgid "_Archive"
@@ -3426,9 +3354,7 @@
#: ../ui/module-manager.glade.h:13 ../ui/module-manager.gtkbuilder.h:13
msgid ""
"Build an index of the selected modules, for optimized (\"lucene\") searching."
-msgstr ""
-"Construit un index des modules sรฉlectionnรฉs, pour une recherche optimisรฉe "
-"(ยซ lucรจne ยป)."
+msgstr "Construit un index des modules sรฉlectionnรฉs, pour optimiser les recherches."
#: ../ui/module-manager.glade.h:14 ../ui/module-manager.gtkbuilder.h:14
msgid "_Delete Index"
@@ -3440,11 +3366,11 @@
#: ../ui/module-manager.glade.h:16 ../ui/module-manager.gtkbuilder.h:16
msgid "Scan _Obsolete"
-msgstr ""
+msgstr "Vรฉrifier"
#: ../ui/module-manager.glade.h:17 ../ui/module-manager.gtkbuilder.h:17
msgid "Scan for obsolete modules and offer to delete them."
-msgstr ""
+msgstr "Vรฉrifie les modules et propose d'enlever les modules pรฉrimรฉs."
#: ../ui/module-manager.glade.h:18 ../ui/module-manager.gtkbuilder.h:19
msgid "Continue"
@@ -3461,7 +3387,7 @@
#: ../ui/module-manager.glade.h:22 ../ui/module-manager.gtkbuilder.h:23
msgid "<b>WARNING:</b> If you live in a persecuted country use with care."
-msgstr "<b>Attention :</b> Prudence dans les pays de persรฉcution"
+msgstr "<b>Attention :</b> Prudence requise dans les pays de persรฉcution."
#: ../ui/module-manager.glade.h:23 ../ui/module-manager.gtkbuilder.h:24
msgid "<b>Add and Remove Sources</b>"
@@ -3536,9 +3462,7 @@
msgid ""
"<b>Warning:</b> If you live in a persecuted country and do not wish to risk "
"detection you should NOT use the remote installation feature! "
-msgstr ""
-"<b>Attention :</b> Ne pas utiliser les dรฉpรดts distants depuis les pays oรน il "
-"est dangereux d'รชtre repรฉrรฉ! "
+msgstr "<b>Attention :</b> Ne pas utiliser les dรฉpรดts distants dans les pays de persรฉcution!"
#: ../ui/module-manager.glade.h:39 ../ui/module-manager.gtkbuilder.h:40
msgid "Local Install Folder"
@@ -3546,7 +3470,7 @@
#: ../ui/module-manager.gtkbuilder.h:18
msgid "_Cancel"
-msgstr ""
+msgstr "_Annuler"
#: ../ui/navbar_versekey.glade.h:1 ../ui/navbar_versekey.gtkbuilder.h:1
msgid "Drop down history list"
@@ -3620,7 +3544,7 @@
#: ../ui/prefs.glade.h:8 ../ui/prefs.gtkbuilder.h:16
msgid "Verse Number"
-msgstr "Numรฉros de verset"
+msgstr "Numรฉro de verset"
#: ../ui/prefs.glade.h:9 ../ui/prefs.gtkbuilder.h:17
msgid "Links"
@@ -3694,13 +3618,11 @@
msgid ""
"Name and size choice for any module in a given language; still overridden by "
"a specific choice on a particular module"
-msgstr ""
-"Choix de police et taille pour n'importe quel module dans une langue donnรฉe; "
-"toujours remplacรฉes par un choix spรฉcifique sur une module particulier"
+msgstr "Sรฉlectionne les choix de police pour tout module dans une langue donnรฉe; toujours remplaรงable par un choix spรฉcifique sur un module particulier"
#: ../ui/prefs.glade.h:30 ../ui/prefs.gtkbuilder.h:30
msgid "Font preferences, per language"
-msgstr "Prรฉfรฉrences de police, par langue"
+msgstr "Police prรฉfรฉrรฉe par langue"
#: ../ui/prefs.glade.h:31 ../ui/prefs.gtkbuilder.h:31
msgid "Language Font Combo"
@@ -3725,30 +3647,22 @@
"audience's Bible programs to follow along; Audience, to receive the "
"speaker's navigation."
msgstr ""
-"Xiphos est le premier programme d'รฉtude biblique ร fournir une "
-"implรฉmentation de \n"
-"BibleSync, un protocole de synchronisation pour programmes Bibliques. Si "
-"vous\n"
-"utilisez plusieurs programmes Bibliques, ou travaillez en รฉquipe, ou si vous "
-"avez\n"
-"en classe des รฉtudes mutualisรฉes, BibleSync peut รชtre un outil utile pour "
-"vous.\n"
-"BibleSync opรจre dans un de ces trois modes : Personnel, pour synchroniser "
-"plusieurs\n"
-"programmes Bibliques, les vรดtres ou au sein d'une รฉquipe de travail ; "
-"Orateur,\n"
-"pour piloter les programmes bibliques du public d'une confรฉrence ; Audience, "
-"pour\n"
-"recevoir la navigation de l'orateur."
+"BibleSync est un protocole de synchronisation entre programmes bibliques. Si vous\n"
+"utilisez plusieurs logiciels bibliques, travaillez en รฉquipe, ou participez ร des\n"
+"รฉtudes en commun, BibleSync est un outil intรฉressant.\n"
+"BibleSync opรจre dans trois modes distincts : Personnel, pour synchroniser plusieurs\n"
+"logiciels bibliques entre eux ou au sein d'une รฉquipe de travail ; Intervenant,\n"
+"pour piloter ร distance les logiciels bibliques d'un auditoire ; Audience, pour\n"
+"recevoir la navigation de l'intervenant.\n"
+"Xiphos est le premier programme d'รฉtude biblique ร disposer de BibleSync."
#: ../ui/prefs.glade.h:35 ../ui/prefs.gtkbuilder.h:36
-#, fuzzy
msgid "<i>Mode:</i>"
-msgstr "<b>Modules</b>"
+msgstr "<i>Mode :</i>"
#: ../ui/prefs.glade.h:36 ../ui/prefs.gtkbuilder.h:35
msgid "Select the mode in which BibleSync should operate."
-msgstr "Sรฉlectionne le mode dans lequel BibleSync doit opรฉrer."
+msgstr "Sรฉlectionne le mode de fonctionnement de BibleSync"
#: ../ui/prefs.glade.h:37 ../ui/prefs.gtkbuilder.h:37
msgid "_Off"
@@ -3756,7 +3670,7 @@
#: ../ui/prefs.glade.h:38 ../ui/prefs.gtkbuilder.h:38
msgid "Disable BibleSync."
-msgstr "Dรฉsactive BibleSync"
+msgstr "BibleSync est dรฉsactivรฉ"
#: ../ui/prefs.glade.h:39 ../ui/prefs.gtkbuilder.h:39
msgid "BSP off radio button"
@@ -3764,15 +3678,15 @@
#: ../ui/prefs.glade.h:40 ../ui/prefs.gtkbuilder.h:40
msgid "_Speaker"
-msgstr "_Orateur"
+msgstr "_Intervenant"
#: ../ui/prefs.glade.h:41 ../ui/prefs.gtkbuilder.h:41
msgid "Enable BibleSync as the speaker."
-msgstr "Active BibleSync en tant que Orateur."
+msgstr "Biblesync est activรฉ en mode intervenant"
#: ../ui/prefs.glade.h:42 ../ui/prefs.gtkbuilder.h:42
msgid "BSP speaker radio button"
-msgstr "Bouton radio Orateur BSP"
+msgstr "Bouton radio Intervenant BSP"
#: ../ui/prefs.glade.h:43 ../ui/prefs.gtkbuilder.h:43
msgid "_Audience"
@@ -3780,7 +3694,7 @@
#: ../ui/prefs.glade.h:44 ../ui/prefs.gtkbuilder.h:44
msgid "Enable BibleSync as a member of the audience."
-msgstr "Active BibleSync comme membre de l'audience."
+msgstr "BibleSync est activรฉ en mode membre de l'audience"
#: ../ui/prefs.glade.h:45 ../ui/prefs.gtkbuilder.h:45
msgid "BSP audience radio button"
@@ -3792,7 +3706,7 @@
#: ../ui/prefs.glade.h:47 ../ui/prefs.gtkbuilder.h:47
msgid "Enable BibleSync for personal or team use."
-msgstr "Active BibleSync pour une utilisation personnelle ou en รฉquipe."
+msgstr "BibleSync est activรฉ en mode utilisation personnelle ou d'รฉquipe"
#: ../ui/prefs.glade.h:48 ../ui/prefs.gtkbuilder.h:48
msgid "BSP personal radio button"
@@ -3815,13 +3729,12 @@
msgstr "Bouton BSP privรฉ"
#: ../ui/prefs.glade.h:52 ../ui/prefs.gtkbuilder.h:53
-#, fuzzy
msgid "<i>Navigate:</i>"
-msgstr "Naviguer"
+msgstr "<i>Navigation :</i>"
#: ../ui/prefs.glade.h:53 ../ui/prefs.gtkbuilder.h:52
msgid "Choose how to accept incoming navigation synchronization."
-msgstr "Choisir comment accepter la synchronisation de navigation entrante."
+msgstr "Sรฉlectionne le type de navigation entrante"
# src/gs_preferences_dlg.c
#: ../ui/prefs.glade.h:54 ../ui/prefs.gtkbuilder.h:54
@@ -3830,7 +3743,7 @@
#: ../ui/prefs.glade.h:55 ../ui/prefs.gtkbuilder.h:55
msgid "BibleSync navigation will send Xiphos directly to the verse indicated."
-msgstr "La navigation BibleSync enverra Xiphos directement au verset indiquรฉ."
+msgstr "Le verset indiquรฉ s'affiche directement dans Xiphos"
#: ../ui/prefs.glade.h:56 ../ui/prefs.gtkbuilder.h:56
msgid "BSP nav direct radio button"
@@ -3842,22 +3755,19 @@
#: ../ui/prefs.glade.h:58 ../ui/prefs.gtkbuilder.h:58
msgid "BibleSync navigation will use Xiphos' sidebar verse list."
-msgstr ""
-"La navigation BibleSync utilisera la liste de versets de la barre latรฉrale "
-"de Xiphos. "
+msgstr "Le verset indiquรฉ s'affiche dans la liste de versets"
#: ../ui/prefs.glade.h:59 ../ui/prefs.gtkbuilder.h:59
msgid "BSP nav verse list radio button"
msgstr "Bouton radio BSP navigation liste de versets"
#: ../ui/prefs.glade.h:60 ../ui/prefs.gtkbuilder.h:61
-#, fuzzy
msgid "<i>Listen:</i>"
-msgstr "<b>Nom de la liste</b>"
+msgstr "<i>Suivi :</i>"
#: ../ui/prefs.glade.h:61 ../ui/prefs.gtkbuilder.h:60
msgid "Xiphos will listen to Speakers according to choice here."
-msgstr "Xiphos va รฉcouter les Orateurs en fonction du choix prรฉsent."
+msgstr "Sรฉlectionne le suivi des intervenants"
#: ../ui/prefs.glade.h:62 ../ui/prefs.gtkbuilder.h:62
msgid "Selective"
@@ -3865,11 +3775,11 @@
#: ../ui/prefs.glade.h:63 ../ui/prefs.gtkbuilder.h:63
msgid "Choose the Speakers to be followed."
-msgstr "Choisir les Orateurs ร suivre."
+msgstr "Choix sรฉlectif de la liste des intervenants ร suivre"
#: ../ui/prefs.glade.h:64 ../ui/prefs.gtkbuilder.h:64
msgid "BSP listen some radio button"
-msgstr "Bouton radio BSP รฉcouter certains orateurs"
+msgstr "Bouton radio BSP รฉcouter certains intervenants"
#: ../ui/prefs.glade.h:65 ../ui/prefs.gtkbuilder.h:65
msgid "All"
@@ -3877,7 +3787,7 @@
#: ../ui/prefs.glade.h:66 ../ui/prefs.gtkbuilder.h:66
msgid "All Speakers will be followed."
-msgstr "Tous les orateurs seront reรงus."
+msgstr "Tous les intervenants sont suivis"
#: ../ui/prefs.glade.h:67 ../ui/prefs.gtkbuilder.h:67
msgid "BSP listen all radio button"
@@ -3889,30 +3799,22 @@
#: ../ui/prefs.glade.h:69 ../ui/prefs.gtkbuilder.h:69
msgid "No Speakers will be followed."
-msgstr "Aucun orateur ne sera reรงu."
+msgstr "Aucun intervenant n'est suivi"
#: ../ui/prefs.glade.h:70 ../ui/prefs.gtkbuilder.h:70
msgid "BSP listen none radio button"
msgstr "Bouton radio BSP ecouter aucun"
#: ../ui/prefs.glade.h:71 ../ui/prefs.gtkbuilder.h:72
-#, fuzzy
msgid "<i>Special:</i>"
-msgstr "Spรฉcial"
+msgstr "<i>Spรฉcial :</i>"
#: ../ui/prefs.glade.h:72 ../ui/prefs.gtkbuilder.h:71
msgid ""
"Additional traces can be presented during BibleSync operation by enabling "
"presence, mismatch, and debug. Beware enabling these, they can be very "
"chatty. Also, decide whether to allow group parameter as Xiphos' tab number."
-msgstr ""
-"Des traces supplรฉmentaires peuvent รชtre afichรฉes pendant le fonctionnement "
-"de \n"
-"BibleSync en autorisant prรฉsence, incohรฉrences, et dรฉbogage. Attention ceux-"
-"ci\n"
-"peuvent รชtre trรจs bavards. Voir aussi s'il faut autoriser le paramรจtre de "
-"groupe \n"
-"comme numรฉro d'onglet de Xiphos."
+msgstr "Des informations supplรฉmentaires peuvent รชtre affichรฉes pendant le fonctionnement de BibleSync en activant ces options. Attention ces informations peuvent รชtre trรจs denses."
#: ../ui/prefs.glade.h:73 ../ui/prefs.gtkbuilder.h:73
msgid "Presence"
@@ -3920,7 +3822,7 @@
#: ../ui/prefs.glade.h:74 ../ui/prefs.gtkbuilder.h:74
msgid "Presence announcements will be shown in dialogs."
-msgstr "Les indications de prรฉsence seront affichรฉes."
+msgstr "Les fenรชtres d'indication de prรฉsence seront affichรฉes."
#: ../ui/prefs.glade.h:75 ../ui/prefs.gtkbuilder.h:75
msgid "BSP presence button"
@@ -3932,7 +3834,7 @@
#: ../ui/prefs.glade.h:77 ../ui/prefs.gtkbuilder.h:77
msgid "Mismatches from your session will be shown in dialogs."
-msgstr "Les incohรฉrences survenant pendant une session seront affichรฉes."
+msgstr "Les fenรชtres d'incohรฉrences survenant pendant une session seront affichรฉes"
#: ../ui/prefs.glade.h:78 ../ui/prefs.gtkbuilder.h:78
msgid "BSP mismatch button"
@@ -3944,7 +3846,7 @@
#: ../ui/prefs.glade.h:80 ../ui/prefs.gtkbuilder.h:80
msgid "Packet tracing."
-msgstr "Traรงage de paquets."
+msgstr "Traรงage des paquets sur le rรฉseau"
#: ../ui/prefs.glade.h:81 ../ui/prefs.gtkbuilder.h:81
msgid "BSP event debug button"
@@ -3952,20 +3854,14 @@
#: ../ui/prefs.glade.h:82 ../ui/prefs.gtkbuilder.h:82
msgid "_Group as tab"
-msgstr "_Grouper en onglets"
+msgstr "_Groupe en onglet"
#: ../ui/prefs.glade.h:83 ../ui/prefs.gtkbuilder.h:83
msgid ""
"Interpret the protocol's group number parameter as Xiphos' tab number. "
"Disabling this may be necessary if some Speakers' use of group number is not "
"appropriate as a tab number."
-msgstr ""
-"Interprรฉte le paramรจtre du numรฉro du groupe du protocole comme le numรฉro "
-"d'onglet de \n"
-"Xiphos.\"\n"
-"Il sera peut รชtre nรฉcessaire de dรฉsactiver cette option si le numรฉro de "
-"groupe utilisรฉ par \n"
-"certains orateurs n'est pas appropriรฉ comme numรฉro d'onglet.\""
+msgstr "Traduit le numรฉro de groupe de BibleSync en numรฉro d'onglet de Xiphos. Cette option sera peut-รชtre ร dรฉsactiver si le numรฉro de groupe utilisรฉ par certains intervenants n'est pas appropriรฉ"
#: ../ui/prefs.glade.h:84 ../ui/prefs.gtkbuilder.h:84
msgid "BSP event group-as-tab button"
@@ -3979,13 +3875,11 @@
msgid ""
"Select a particular language for interface display, other than your usual "
"setting"
-msgstr ""
-"Sรฉlection d'une langue spรฉcifique pour affichage de l'interface, autre que "
-"celle de la configuration habituelle"
+msgstr "Sรฉlectionne une langue diffรฉrente de la configuration habituelle pour l'affichage de l'interface."
#: ../ui/prefs.glade.h:88 ../ui/prefs.gtkbuilder.h:88
msgid "Special Locale (requires restart)"
-msgstr "Langue spรฉcifique (Nรฉcessite un redรฉmarrage)"
+msgstr "Langue diffรฉrente (Nรฉcessite un redรฉmarrage)"
#: ../ui/prefs.glade.h:89 ../ui/prefs.gtkbuilder.h:89
msgid "Special Locale Combo"
@@ -3993,7 +3887,7 @@
#: ../ui/prefs.glade.h:90 ../ui/prefs.gtkbuilder.h:90
msgid "Show splash screen at start up"
-msgstr "Afficher l'รฉcran de dรฉmarrage"
+msgstr "Afficher l'รฉcran d'accueil au dรฉmarrage"
#: ../ui/prefs.glade.h:91 ../ui/prefs.gtkbuilder.h:91
msgid "Show Daily Devotion at start up"
@@ -4003,9 +3897,7 @@
msgid ""
"If you have set a preferred daily devotion module, its entry for today will "
"be shown at startup."
-msgstr ""
-"Si un module de calendrier biblique a รฉtรฉ spรฉcifiรฉ, l'entrรฉe d'aujourd'hui "
-"sera affichรฉe au dรฉmarrage"
+msgstr "Le calendrier biblique du jour sera affichรฉ au dรฉmarrage"
# src/gs_preferences_dlg.c
#: ../ui/prefs.glade.h:93 ../ui/prefs.gtkbuilder.h:93
@@ -4016,9 +3908,7 @@
msgid ""
"Make double-click of a word always use default dictionary instead of "
"dictionary currently displayed"
-msgstr ""
-"Un double-clic sur un mot utilise toujours le dictionnaire par dรฉfaut ร la "
-"place du dictionnaire actuellement affichรฉ"
+msgstr "Un double-clic sur un mot activera le dictionnaire par dรฉfaut ร la place du dictionnaire en cours"
# src/gs_preferences_dlg.c
#: ../ui/prefs.glade.h:95 ../ui/prefs.gtkbuilder.h:95
@@ -4085,9 +3975,7 @@
#: ../ui/prefs.glade.h:109 ../ui/prefs.gtkbuilder.h:109
msgid "Use the verse list for Bible cross-references instead of the previewer"
-msgstr ""
-"Utilise la liste de versets pour afficher les rรฉfรฉrences-croisรฉes au lieu du "
-"volet Aperรงu"
+msgstr "Utilise la liste de versets ร la place du volet Aperรงu pour afficher les rรฉfรฉrences-croisรฉes"
#: ../ui/prefs.glade.h:110 ../ui/prefs.gtkbuilder.h:110
msgid "Xrefs in verse list check box"
@@ -4099,7 +3987,7 @@
#: ../ui/prefs.glade.h:112 ../ui/prefs.gtkbuilder.h:112
msgid "Make journals/prayer lists available"
-msgstr "Autorise les listes de priรจres et les journaux"
+msgstr "Active les listes de priรจres et les journaux"
#: ../ui/prefs.glade.h:113 ../ui/prefs.gtkbuilder.h:113
msgid "Enable Prayer Lists Checkbox"
@@ -4107,11 +3995,11 @@
#: ../ui/prefs.glade.h:114 ../ui/prefs.gtkbuilder.h:114
msgid "Enable Statusbar"
-msgstr ""
+msgstr "Afficher la barre de statut"
#: ../ui/prefs.glade.h:115
msgid "Enable/Disable Statusbar."
-msgstr ""
+msgstr "Affiche/cache la barre de statut."
#: ../ui/prefs.glade.h:116 ../ui/prefs.gtkbuilder.h:117
msgid "Verse number"
@@ -4119,11 +4007,11 @@
#: ../ui/prefs.glade.h:117 ../ui/prefs.gtkbuilder.h:116
msgid "Offset the verse number in several ways"
-msgstr "Dรฉcore le numรฉro du verset de plusieurs faรงons"
+msgstr "Modifie l'affichage du numรฉro du verset"
#: ../ui/prefs.glade.h:119 ../ui/prefs.gtkbuilder.h:119
msgid "Show verse number in bold text"
-msgstr "Affiche les numรฉros de verset en gras"
+msgstr "Affiche le numรฉro de verset en gras"
#: ../ui/prefs.glade.h:120 ../ui/prefs.gtkbuilder.h:120
msgid "Verse number bold checkbox"
@@ -4135,7 +4023,7 @@
#: ../ui/prefs.glade.h:122 ../ui/prefs.gtkbuilder.h:122
msgid "Show verse number with [surrounding brackets]"
-msgstr "Affiche les numรฉros de versets entourรฉs de [parenthรจses]"
+msgstr "Affiche le numรฉro de verset entourรฉ de [parenthรจses]"
#: ../ui/prefs.glade.h:123 ../ui/prefs.gtkbuilder.h:123
msgid "Verse number bracket checkbox"
@@ -4147,7 +4035,7 @@
#: ../ui/prefs.glade.h:125 ../ui/prefs.gtkbuilder.h:125
msgid "Show verse number as a superscript"
-msgstr "Affiche les numรฉros de verset en exposant"
+msgstr "Affiche le numรฉro de verset en exposant"
#: ../ui/prefs.glade.h:126 ../ui/prefs.gtkbuilder.h:126
msgid "Verse number superscript checkbox"
@@ -4318,9 +4206,8 @@
msgstr "+5"
#: ../ui/prefs.gtkbuilder.h:115
-#, fuzzy
msgid "Enable/disable the Statusbar"
-msgstr "Active BibleSync en tant que Orateur."
+msgstr "Affiche la barre de statut au bas de la fenรชtre principale"
#: ../ui/search-dialog.glade.h:1 ../ui/search-dialog.gtkbuilder.h:1
msgid "Advanced Search"
@@ -4373,7 +4260,7 @@
#: ../ui/search-dialog.glade.h:12 ../ui/search-dialog.gtkbuilder.h:14
msgid "Search entire module"
-msgstr "La requรชte s'exรฉcute sur tous les versets"
+msgstr "Recherche dans tous les versets"
#: ../ui/search-dialog.glade.h:13 ../ui/search-dialog.gtkbuilder.h:13
msgid "Entire module"
@@ -4385,9 +4272,7 @@
#: ../ui/search-dialog.glade.h:15 ../ui/search-dialog.gtkbuilder.h:17
msgid "Use the results of the last search as the scope of the search"
-msgstr ""
-"La requรชte s'exรฉcute uniquement sur les versets retournรฉs lors de la requรชte "
-"prรฉcรฉdente"
+msgstr "Recherche uniquement dans les versets retournรฉs lors de la requรชte prรฉcรฉdente"
#: ../ui/search-dialog.glade.h:16 ../ui/search-dialog.gtkbuilder.h:16
msgid "Current results"
@@ -4399,7 +4284,7 @@
#: ../ui/search-dialog.glade.h:18 ../ui/search-dialog.gtkbuilder.h:20
msgid "Use a custom range for the scope of the search"
-msgstr "La requรชte s'exรฉcute sur une plage prรฉdรฉfinie de versets"
+msgstr "Recherche dans une plage prรฉdรฉfinie de versets"
#: ../ui/search-dialog.glade.h:19 ../ui/search-dialog.gtkbuilder.h:19
msgid "Custom verse range"
@@ -4415,7 +4300,7 @@
#: ../ui/search-dialog.glade.h:23 ../ui/search-dialog.gtkbuilder.h:25
msgid "Use a single module for the search"
-msgstr "La requรชte s'exรฉcute sur un seul module"
+msgstr "Recherche dans un seul module"
#: ../ui/search-dialog.glade.h:24 ../ui/search-dialog.gtkbuilder.h:24
msgid "Single module"
@@ -4427,7 +4312,7 @@
#: ../ui/search-dialog.glade.h:26 ../ui/search-dialog.gtkbuilder.h:28
msgid "Use the current module list for the search"
-msgstr "La requรชte s'exรฉcute sur plusieurs modules"
+msgstr "Recherche dans plusieurs modules"
#: ../ui/search-dialog.glade.h:27 ../ui/search-dialog.gtkbuilder.h:27
msgid "Module list"
@@ -4439,7 +4324,7 @@
#: ../ui/search-dialog.glade.h:29 ../ui/search-dialog.gtkbuilder.h:31
msgid "Use a custom module list for the search"
-msgstr "La requรชte s'exรฉcute dans une liste de modules prรฉdรฉfinie"
+msgstr "Recherche dans une liste de modules prรฉdรฉfinie"
#: ../ui/search-dialog.glade.h:30 ../ui/search-dialog.gtkbuilder.h:30
msgid "Custom module list"
@@ -4464,7 +4349,7 @@
"See Module Manager's maintenance functions"
msgstr ""
"Recherche optimisรฉe basรฉe sur les index,\n"
-"les index doivent รชtre prรฉalablement construits.\n"
+"les index doivent avoir รฉtรฉ gรฉnรฉrรฉs auparavant.\n"
"Voir l'onglet Gรฉrer du gestionnaire de modules."
#: ../ui/search-dialog.glade.h:37 ../ui/search-dialog.gtkbuilder.h:34
@@ -4697,7 +4582,7 @@
#: ../ui/search-dialog.glade.h:105 ../ui/search-dialog.gtkbuilder.h:106
msgid "In modules that have Strong's Numbers"
-msgstr "Pour les modules avec nombres de Strong"
+msgstr "Pour les modules comprenant des nombres de Strong"
#: ../ui/search-dialog.glade.h:106 ../ui/search-dialog.gtkbuilder.h:105
msgid "Show Strong's Numbers"
@@ -4709,7 +4594,7 @@
#: ../ui/search-dialog.glade.h:108 ../ui/search-dialog.gtkbuilder.h:109
msgid "In modules that have Morphological Tags"
-msgstr "Pour les modules avec รฉtiquettes morphologiques"
+msgstr "Pour les modules comprenant des รฉtiquettes morphologiques"
#: ../ui/search-dialog.glade.h:109 ../ui/search-dialog.gtkbuilder.h:108
msgid "Show Morphological Tags"
@@ -4721,7 +4606,7 @@
#: ../ui/search-dialog.glade.h:111 ../ui/search-dialog.gtkbuilder.h:112
msgid "In modules that have Footnotes"
-msgstr "Pour les modules avec notes de bas de page"
+msgstr "Pour les modules comprenant des notes de bas de page"
#: ../ui/search-dialog.glade.h:112 ../ui/search-dialog.gtkbuilder.h:111
msgid "Show Footnotes"
@@ -4883,7 +4768,7 @@
#: ../ui/xi-menus.glade.h:28 ../ui/xi-menus.gtkbuilder.h:19
msgid "Show Verse _Numbers"
-msgstr "Affiche les numรฉros de verset"
+msgstr "Afficher les numรฉros de verset"
#: ../ui/xi-menus.glade.h:29
msgid "Display verse numbers in the text"
@@ -5078,7 +4963,7 @@
#: ../ui/xi-menus.glade.h:101 ../ui/xi-menus-popup.gtkbuilder.h:90
msgid "Save list as a single bookmark"
-msgstr "Enregistre la liste sous un seul signet"
+msgstr "Enregistrer la liste sous un seul signet"
#: ../ui/xi-menus.glade.h:102 ../ui/xi-menus-popup.gtkbuilder.h:93
msgid "Save these results as a series of bookmarks in their own folder"
@@ -5087,15 +4972,13 @@
#: ../ui/xi-menus.glade.h:103 ../ui/xi-menus-popup.gtkbuilder.h:92
msgid "Save list as a series of bookmarks"
-msgstr "Enregistre la liste dans une sรฉrie de signets"
+msgstr "Enregistrer la liste dans une sรฉrie de signets"
#: ../ui/xi-menus.glade.h:104 ../ui/xi-menus-popup.gtkbuilder.h:95
msgid ""
"Provide a dialog in which to paste a line of verse references, to fill the "
"verse list."
-msgstr ""
-"Ouvre une boรฎte de dialogue dans laquelle coller une ligne de rรฉfรฉrences de "
-"versets, permet de remplir la liste de versets."
+msgstr "Remplit la liste de versets au moyen d'une boรฎte de dialogue dans laquelle sera collรฉe une ligne de rรฉfรฉrences de versets"
#: ../ui/xi-menus.glade.h:105 ../ui/xi-menus-popup.gtkbuilder.h:94
msgid "Populate verse list"
@@ -5103,24 +4986,21 @@
#: ../ui/xi-menus.glade.h:106 ../ui/xi-menus-popup.gtkbuilder.h:97
msgid "Push the entire verse list contents directly into the history list."
-msgstr ""
+msgstr "Place le contenu entier de la liste de versets dans l'historique de consultation."
#: ../ui/xi-menus.glade.h:107 ../ui/xi-menus-popup.gtkbuilder.h:96
-#, fuzzy
msgid "Preload history from verse list"
-msgstr "Efface l'historique des versets consultรฉs"
+msgstr "Charger la liste de versets dans l'historique"
#: ../ui/xi-menus.glade.h:108 ../ui/xi-menus-popup.gtkbuilder.h:99
msgid ""
"Send this verse list via BibleSync to others, if you are in Personal or "
"Speaker mode."
-msgstr ""
-"Envoie cette liste de versets via BibleSync ร d'autres, si vous รชtes en mode "
-"Personnel ou Orateur."
+msgstr "Envoie cette liste de versets via BibleSync si vous รชtes en mode Personnel ou Intervenant."
#: ../ui/xi-menus.glade.h:109 ../ui/xi-menus-popup.gtkbuilder.h:98
msgid "Send list via BibleSync"
-msgstr "Envoyer la liste vi BibleSync"
+msgstr "Envoyer la liste via BibleSync"
#: ../ui/xi-menus.glade.h:110 ../ui/xi-menus-popup.gtkbuilder.h:100
msgid "Export List"
@@ -5192,7 +5072,7 @@
#: ../ui/xi-menus.glade.h:129 ../ui/xi-menus-popup.gtkbuilder.h:20
msgid "Load other bookmarks file (default: from BibleTime)"
-msgstr "Importe un autre fichier de signets (par dรฉfaut: de Bibletime)"
+msgstr "Importe un fichier de signets (par dรฉfaut: de BibleTime)"
#: ../ui/xi-menus.glade.h:130 ../ui/xi-menus-popup.gtkbuilder.h:19
msgid "Import Bookmarks"
@@ -5638,12 +5518,9 @@
#~ msgstr ""
#~ "Bienvenue dans Xiphos.\n"
#~ "\n"
-#~ "Aucun module de texte biblique n'est installรฉ. Xiphos a besoin d'au moins "
-#~ "un module de ce type pour fonctionner.\n"
+#~ "Aucun module de texte biblique n'est installรฉ. Xiphos a besoin d'au moins un module de ce type pour fonctionner.\n"
#~ "\n"
-#~ "Avec votre permission, Xiphos va lancer le gestionnaire de modules pour "
-#~ "tรฉlรฉcharger des modules depuis le site de Crosswire, les opรฉrations ร "
-#~ "effectuer sont :\n"
+#~ "Avec votre permission, Xiphos va lancer le gestionnaire de modules pour tรฉlรฉcharger des modules depuis le site de Crosswire, les opรฉrations ร effectuer sont :\n"
#~ "1. Configuration du dรฉpรดt distant\n"
#~ "2. Connexion\n"
#~ "3. Choix d'un texte biblique dans la langue dรฉsirรฉe\n"
@@ -5651,8 +5528,7 @@
#~ "\n"
#~ "Attention : Prudence dans les pays de persรฉcution.\n"
#~ "\n"
-#~ "Autorisez-vous Xiphos ร lancer le gestionnaire de modules pour "
-#~ "tรฉlรฉcharger un texte biblique?"
+#~ "Autorisez-vous Xiphos ร lancer le gestionnaire de modules pour tรฉlรฉcharger un texte biblique?"
#~ msgid "<b>Parallel View</b>"
#~ msgstr "<b>Vue parallรจle</b>"
|
|
From: <cha...@us...> - 2015-08-04 22:18:18
|
Revision: 4912
http://sourceforge.net/p/gnomesword/code/4912
Author: charcoal
Date: 2015-08-04 22:18:17 +0000 (Tue, 04 Aug 2015)
Log Message:
-----------
max language count usable *= 10
Modified Paths:
--------------
trunk/src/gui/utilities.h
Modified: trunk/src/gui/utilities.h
===================================================================
--- trunk/src/gui/utilities.h 2015-07-15 14:34:17 UTC (rev 4911)
+++ trunk/src/gui/utilities.h 2015-08-04 22:18:17 UTC (rev 4912)
@@ -146,7 +146,7 @@
UTIL_N_COLUMNS
};
-#define LANGSET_COUNT 200
+#define LANGSET_COUNT 2000
void language_init(void);
|
|
From: <cha...@us...> - 2015-07-15 14:34:20
|
Revision: 4911
http://sourceforge.net/p/gnomesword/code/4911
Author: charcoal
Date: 2015-07-15 14:34:17 +0000 (Wed, 15 Jul 2015)
Log Message:
-----------
add korean translation
Modified Paths:
--------------
trunk/po/LINGUAS
Added Paths:
-----------
trunk/po/ko_KR.po
Modified: trunk/po/LINGUAS
===================================================================
--- trunk/po/LINGUAS 2015-06-16 17:54:43 UTC (rev 4910)
+++ trunk/po/LINGUAS 2015-07-15 14:34:17 UTC (rev 4911)
@@ -1 +1 @@
-ar cs cy da de en_GB es fa fi fr he hu ja lt lv nb nl pl pt pt_BR ro ru sk sl sv tr zh_CN zh_TW
+ar cs cy da de en_GB es fa fi fr he hu ja ko_KR lt lv nb nl pl pt pt_BR ro ru sk sl sv tr zh_CN zh_TW
Added: trunk/po/ko_KR.po
===================================================================
--- trunk/po/ko_KR.po (rev 0)
+++ trunk/po/ko_KR.po 2015-07-15 14:34:17 UTC (rev 4911)
@@ -0,0 +1,5153 @@
+# Korean translarion for the Xiphos.
+# Copyright (C) 2015 Xiphos Developer Team and the Korean Translator.
+# This file is distributed under the same license as the Xiphos package.
+# Seong-ho Cho <sh...@gn...>, 2015.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: Xiphos 4.0.2\n"
+"Report-Msgid-Bugs-To: Seong-ho Cho <sh...@gn...>\n"
+"POT-Creation-Date: 2015-07-15 17:14+0900\n"
+"PO-Revision-Date: 2015-07-15 20:56+0900\n"
+"Last-Translator: Seong-ho Cho <sh...@gn...>\n"
+"Language-Team: Seong-ho Cho <sh...@gn...>\n"
+"Language: ko_KR\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Poedit 1.5.5\n"
+
+#: ../src/backend/sword_main.cc:792
+msgid ""
+"Xiphos failure: \"can't happen\", display_mod: null\n"
+"Please report this. sword_main.cc:set_treekey\n"
+"What were you doing when this occurred?"
+msgstr ""
+"xiphos ์น๋ช
์ ์ค๋ฅ: \"๋์์ ์ํํ ์ ์์\", display_mod: null\n"
+"์ด ๋ฌธ์ ๋ฅผ ๋ณด๊ณ ํ์ญ์์ค: sword_main.cc:set_treekey\n"
+"์ด ๋ฌธ์ ๊ฐ ์ผ์ด๋ฌ์๋ ๋ฌด์ผ ํ๊ณ ์์์ต๋๊น?"
+
+#: ../src/backend/sword_main.cc:1149
+msgid "Configuration not found"
+msgstr "์ค์ ์ด ์์ต๋๋ค"
+
+#: ../src/editor/webkit_editor.c:311
+msgid "Are you sure you want to delete the note for"
+msgstr "์ ๋ง๋ก ํด๋น ๋ฉ๋ชจ๋ฅผ ์ญ์ ํ์๊ฒ ์ต๋๊น?"
+
+#: ../src/editor/webkit_editor.c:605 ../ui/editor_studypad.xml.h:9
+#: ../ui/gtk2_webedit.ui.h:58 ../ui/gtk_webedit.ui.h:58
+msgid "Open"
+msgstr "์ด๊ธฐ"
+
+#: ../src/editor/webkit_editor.c:688
+msgid "Untitled document"
+msgstr "์ ๋ชฉ ์๋ ๋ฌธ์"
+
+#: ../src/editor/webkit_editor.c:1173 ../src/editor/webkit_editor.c:1213
+msgid "Save the changes to document"
+msgstr "๋ฐ๋ ๋ด์ฉ ๋ฌธ์๋ก ์ ์ฅ"
+
+#: ../src/editor/webkit_editor.c:1174 ../src/editor/webkit_editor.c:1214
+msgid "before closing?"
+msgstr "๋ซ๊ธฐ ์ ์ ํ์ธํ์
จ์ต๋๊น?"
+
+#: ../src/editor/webkit_editor.c:1178 ../src/editor/webkit_editor.c:1218
+msgid "If you don't save, changes will be permanently lost."
+msgstr "์ ์ฅํ์ง ์์ผ๋ฉด, ๋ฐ๊พผ ๋ด์ฉ์ด ์์ ํ ์์ด์ง๋๋ค."
+
+#: ../src/editor/webkit_editor.c:1212 ../ui/xi-menus.glade.h:59
+#: ../ui/xi-menus-popup.gtkbuilder.h:39
+msgid "File"
+msgstr "ํ์ผ"
+
+#: ../src/editor/webkit_editor.c:1255
+msgid "StudyPad"
+msgstr "ํ์ต์ฅ"
+
+#: ../src/editor/webkit_editor.c:1270
+msgid "Note Editor"
+msgstr "๋ฉ๋ชจ ํธ์ง๊ธฐ"
+
+#: ../src/editor/webkit_editor.c:1287
+msgid "Prayer List/Journal Editor"
+msgstr "๊ธฐ๋ ๋ชฉ๋ก/๋ฌต์ ์ผ๊ธฐ ํธ์ง๊ธฐ"
+
+#: ../src/gnome2/about_modules.c:138
+msgid "About Sword Module"
+msgstr "sword ๋ชจ๋ ์ ๋ณด"
+
+#. Don't use an icon with GTK3
+#: ../src/gnome2/about_modules.c:219 ../src/gnome2/about_trans.c:168
+#: ../src/gnome2/find_dialog.c:288
+msgid "Close"
+msgstr "๋ซ๊ธฐ"
+
+#: ../src/gnome2/about_modules.c:411
+msgid "<b>Module name:</b> "
+msgstr "<b>๋ชจ๋ ์ด๋ฆ:</b>"
+
+#: ../src/gnome2/about_modules.c:415
+msgid "<b>Version:</b> "
+msgstr "<b>๋ฒ์ :</b>"
+
+#: ../src/gnome2/about_modules.c:418
+msgid "No version stamp found"
+msgstr "๋ฒ์ ์คํฌํ๊ฐ ์์ต๋๋ค"
+
+#: ../src/gnome2/about_modules.c:421
+msgid "<b>Type:</b> "
+msgstr "<b>ํ์:</b>"
+
+#: ../src/gnome2/about_modules.c:423
+msgid "Daily Devotion"
+msgstr "๋งค์ผ ๋ฌต์"
+
+#: ../src/gnome2/about_modules.c:425 ../src/gnome2/mod_mgr.c:1558
+#: ../src/gnome2/utilities.c:612 ../src/main/sidebar.cc:1030
+#: ../src/main/sidebar.cc:1032
+msgid "Maps"
+msgstr "์ง๋"
+
+#: ../src/gnome2/about_modules.c:427 ../src/gnome2/mod_mgr.c:1562
+#: ../src/gnome2/utilities.c:618 ../src/main/sidebar.cc:1039
+#: ../src/main/sidebar.cc:1041
+msgid "Images"
+msgstr "๊ทธ๋ฆผ"
+
+#: ../src/gnome2/about_modules.c:429
+msgid "Glossary"
+msgstr "์ฉ์ด์ง"
+
+#: ../src/gnome2/about_modules.c:433
+msgid "Cult"
+msgstr "์ด๋จ"
+
+#: ../src/gnome2/about_modules.c:437 ../src/gnome2/search_sidebar.c:261
+msgid "Bible"
+msgstr "์ฑ์"
+
+#: ../src/gnome2/about_modules.c:440 ../src/gnome2/search_sidebar.c:269
+#: ../ui/prefs.glade.h:134 ../ui/prefs.gtkbuilder.h:134
+msgid "Commentary"
+msgstr "ํด์ค"
+
+#: ../src/gnome2/about_modules.c:443 ../ui/prefs.glade.h:136
+#: ../ui/prefs.gtkbuilder.h:136
+msgid "Dictionary"
+msgstr "์ฌ์ "
+
+#: ../src/gnome2/about_modules.c:446
+msgid "General Book"
+msgstr "์ผ๋ฐ ์์ "
+
+#: ../src/gnome2/about_modules.c:451
+msgid "Personal Commentary"
+msgstr "๊ฐ๋ณ ํด์ค"
+
+#: ../src/gnome2/about_modules.c:454
+msgid "Journal"
+msgstr "์ ๋"
+
+#: ../src/gnome2/about_modules.c:457
+msgid "Unknown type"
+msgstr "์ ์ ์๋ ํ์"
+
+#: ../src/gnome2/about_modules.c:466
+msgid "<b>Module abbreviation:</b> "
+msgstr "<b>๋ชจ๋ ์ฝ์:</b>"
+
+#: ../src/gnome2/about_modules.c:471
+msgid "<b>Language:</b> "
+msgstr "<b>์ธ์ด:</b>"
+
+#: ../src/gnome2/about_modules.c:474
+msgid "Not specified"
+msgstr "์ง์ ์ํจ"
+
+#: ../src/gnome2/about_modules.c:483
+msgid "<b>Installed size:</b> "
+msgstr "<b>์ค์น ํฌ๊ธฐ:</b>"
+
+#: ../src/gnome2/about_modules.c:491
+msgid "<b>Companion module(s):</b></br>"
+msgstr "<b>๋ถ๋ก ๋ชจ๋:</b></br>"
+
+#: ../src/gnome2/about_modules.c:501
+msgid "<b>Features:</b>"
+msgstr "<b>๊ธฐ๋ฅ:</b>"
+
+#: ../src/gnome2/about_modules.c:505
+msgid "* Headings"
+msgstr "* ์ ๋ชฉ"
+
+#: ../src/gnome2/about_modules.c:513
+msgid "* Footnotes"
+msgstr "* ๊ฐ์ฃผ"
+
+#: ../src/gnome2/about_modules.c:519
+msgid "* Cross references"
+msgstr "* ์ํธ ์ฐธ์กฐ"
+
+#: ../src/gnome2/about_modules.c:526
+msgid "* Strong's numbers"
+msgstr "* ๋ถ๊ท์น ๋ณํ ์"
+
+#: ../src/gnome2/about_modules.c:534
+msgid "* Morphological tags"
+msgstr "* ์ดํ๋ก ์ ํ๊ทธ"
+
+#: ../src/gnome2/about_modules.c:540
+msgid "* Lemmas"
+msgstr "* ๋ถ๋ช
์ "
+
+#: ../src/gnome2/about_modules.c:548
+msgid "* Words of Christ in red"
+msgstr "* ์ ๊ทธ๋ฆฌ์ค๋ ๊ตฌ์ "
+
+#: ../src/gnome2/about_modules.c:553
+msgid "* Greek accents"
+msgstr "* ๊ทธ๋ฆฌ์ค์ด ๊ฐ์ธ ๋ถํธ"
+
+#: ../src/gnome2/about_modules.c:559
+msgid "* Hebrew Vowel Points"
+msgstr "* ํ๋ธ๋ฆฌ์ด ๋ชจ์ ๋ถํธ"
+
+#: ../src/gnome2/about_modules.c:565
+msgid "* Hebrew Cantillation"
+msgstr "* ํ๋ธ๋ฆฌ์ด ๊ฐ์ฌ"
+
+#: ../src/gnome2/about_modules.c:571
+msgid "* Variant readings"
+msgstr "* ์ด๋ฌธ(็ฐๆ)"
+
+#: ../src/gnome2/about_modules.c:578
+msgid "* Transliteration forms"
+msgstr "* ์์ญ ์์"
+
+#: ../src/gnome2/about_modules.c:583
+msgid "* Enumerations"
+msgstr "* ๋ชฉ๋ก"
+
+#: ../src/gnome2/about_modules.c:588
+msgid "* Glosses"
+msgstr "* ํด์ค ๋ชฉ๋ก"
+
+#: ../src/gnome2/about_modules.c:595
+msgid "* Morpheme Segmentation"
+msgstr "* ํํ์ ๋ถ๋ฆฌ"
+
+#: ../src/gnome2/about_modules.c:602
+msgid "* <i>No features found</i>"
+msgstr "* <i>๊ธฐ๋ฅ์ด ์์ต๋๋ค</i>"
+
+#: ../src/gnome2/about_modules.c:612
+msgid "<b>Distribution license:</b>"
+msgstr "<b>๋ฐฐํฌ ๋ผ์ด์ ์ค:</b>"
+
+#: ../src/gnome2/about_modules.c:625
+msgid "<b>Promotional:</b> "
+msgstr "<b>ํ๋ณด๋ฌธ:</b>"
+
+#: ../src/gnome2/about_sword.c:79
+msgid ""
+"The SWORD Project is an effort to create an ever-expanding software package "
+"for research and study of God and His Word. The SWORD Project framework "
+"allows easy use and study of Bible texts, commentaries, lexicons, "
+"dictionaries, and other books. Many frontends are built using this "
+"framework. An installed set of books may be shared among all frontends using "
+"the framework.\n"
+"\n"
+" Books can be downloaded from the SWORD Project."
+msgstr ""
+"SWORD ํ๋ก์ ํธ๋ ํ๋๋๊ณผ ๊ทธ๋ถ์ ๋ง์์ ์ฐ๊ตฌํ๊ณ ํ์ตํ๋ ํ์ฅ์ฑ์ ์ง๋ ํ๋ก"
+"๊ทธ๋จ ๋ชจ์์ด์ ๋
ธ๋ ฅ์ ์ฐ๋ฌผ์
๋๋ค. SWORD ํ๋ก์ ํธ ํ๋ ์์ํฌ๋ ์ฑ๊ฒฝ ๋ง์, ํด"
+"์ค, ์ดํ ๋ชฉ๋ก, ์ฌ์ , ๊ธฐํ ์์ ์ ๋ด์ฉ์ ๊ณต๋ถํ๊ณ ์ฝ๊ฒ ํ์ฉํ ์ ์๊ฒ ํฉ๋๋ค. "
+"๋๋ถ๋ถ์ ํ๋ก ํธ์๋๋ ์ด ํ๋ ์์ํฌ๋ฅผ ๊ธฐ๋ฐ์ผ๋ก ๋ง๋ญ๋๋ค. ์ค์นํ ์์ ๋ชฉ๋ก์ "
+"ํ๋ ์์ํฌ๋ฅผ ์ฌ์ฉํ์ฌ ๋ชจ๋ ํ๋ก ํธ์๋์์ ๊ณต์ ํ ์ ์์ต๋๋ค.\n"
+"\n"
+"์์ ์ SWORD ํ๋ก์ ํธ์์ ๋ค์ด๋ก๋ํ ์ ์์ต๋๋ค."
+
+#: ../src/gnome2/about_sword.c:98
+msgid "The SWORD Project"
+msgstr "SWORD ํ๋ก์ ํธ"
+
+#: ../src/gnome2/about_trans.c:82
+msgid ""
+"Do you like using Xiphos to study the Bible? Would you like to see its user "
+"interface in your native language? You could translate Xiphos! \n"
+"\n"
+"We are always looking for contributions of new translations of Xiphos into "
+"other languages. If you are able to translate for us, please see the link "
+"below, contact us, and get involved with our efforts. Your help will be much "
+"appreciated!"
+msgstr ""
+"์ฑ๊ฒฝ์ ๊ณต๋ถํ ๋ xiphos๋ฅผ ์ฐ๊ณ ์ถ์ผ์ธ์? ๋ชจ๊ตญ์ด๋ก ๋ ์ฌ์ฉ์ ์ธํฐํ์ด์ค๋ฅผ ์ฌ์ฉ"
+"ํ๊ณ ์ถ์ผ์ธ์? xiphos๋ฅผ ๋ฒ์ญํ ์ ์์ต๋๋ค!\n"
+"\n"
+"xiphos๋ฅผ ๋ค๋ฅธ ์ธ์ด๋ก ๋ฒ์ญํด์ค ๋ถ์ ํญ์ ์ฐพ๊ณ ์์ต๋๋ค. ๋ฒ์ญํด์ฃผ์ค ์ ์๋ค๋ฉด "
+"์๋ ๋งํฌ๋ฅผ ๋ฐฉ๋ฌธํ์ฌ ์ ํฌ์๊ฒ ์ฐ๋ฝ์ฃผ์ญ์์ค. ๊ทธ๋ฆฌ๊ณ xiphosํ์ ์ด์ ์ ํจ๊ปํด์ฃผ์ญ์"
+"์ค. ์ฌ๋ฌ๋ถ์ ๋์์ ๊ฐ์ฌํ๊ฒ ์๊ฐํฉ๋๋ค!"
+
+#: ../src/gnome2/about_trans.c:96
+msgid "About Xiphos Translation"
+msgstr "xiphos ๋ฒ์ญ ์ฐธ๊ณ "
+
+#: ../src/gnome2/about_trans.c:135
+msgid "See TRANSLATION-HOWTO in Xiphos source"
+msgstr "xiphos ์์ค ์ฝ๋์ TRANSLATION-HOWTO๋ฅผ ์ฐธ๊ณ ํ์ญ์์ค"
+
+#: ../src/gnome2/about_trans.c:141
+msgid "Xiphos development"
+msgstr "xiphos ๊ฐ๋ฐ"
+
+#: ../src/gnome2/about_xiphos.c:129
+msgid "Copyright ยฉ 2000-2015 Xiphos Development Team"
+msgstr "Copyright ยฉ 2000-2015 Xiphos Development Team"
+
+#: ../src/gnome2/about_xiphos.c:131
+msgid ""
+"\n"
+"Powered by The SWORD Project.\n"
+"We would like to thank Troy Griffitts and all the other folks who have given "
+"us The SWORD Project."
+msgstr ""
+"\n"
+"SWORD ํ๋ก์ ํธ ์ ๊ณต.\n"
+"Troy Griffitts๊ณผ SWORD ํ๋ก์ ํธ์ ๋์์ ์ค ๋ชจ๋ ๋ถ๊ป ๊ฐ์ฌ๋๋ฆฝ๋๋ค."
+
+#. info->stock_icon = GTK_STOCK_OPEN;
+#: ../src/gnome2/bookmark_dialog.c:163 ../src/gnome2/bookmarks_menu.c:361
+#: ../src/gnome2/bookmarks_menu.c:653 ../src/gnome2/bookmarks_menu.c:753
+#: ../src/gnome2/bookmarks_treeview.c:138 ../ui/editor_studypad.xml.h:15
+#: ../ui/xi-menus.glade.h:56 ../ui/xi-menus-popup.gtkbuilder.h:36
+msgid "Bookmark"
+msgstr "์ฑ
๊ฐํผ"
+
+#: ../src/gnome2/bookmark_dialog.c:165 ../src/gnome2/bookmarks_menu.c:755
+#: ../src/gnome2/bookmarks_treeview.c:139
+msgid "Enter Folder Name"
+msgstr "ํด๋ ์ด๋ฆ์ ์
๋ ฅํ์ญ์์ค"
+
+#: ../src/gnome2/bookmark_dialog.c:167 ../src/gnome2/bookmarks_menu.c:757
+msgid "Folder Name"
+msgstr "ํด๋ ์ด๋ฆ"
+
+#: ../src/gnome2/bookmark_dialog.c:168 ../src/gnome2/bookmarks_menu.c:758
+#: ../src/gnome2/bookmarks_treeview.c:141
+msgid "Folder: "
+msgstr "ํด๋: "
+
+#: ../src/gnome2/bookmarks_menu.c:200
+msgid "Specify bookmarks file"
+msgstr "์ฑ
๊ฐํผ ํ์ผ์ ์ง์ ํ์ญ์์ค"
+
+#: ../src/gnome2/bookmarks_menu.c:350 ../ui/xi-menus.glade.h:61
+#: ../ui/xi-menus-popup.gtkbuilder.h:29
+msgid "Edit"
+msgstr "ํธ์ง"
+
+#: ../src/gnome2/bookmarks_menu.c:364
+msgid "Folder name: "
+msgstr "ํด๋ ์ด๋ฆ: "
+
+#: ../src/gnome2/bookmarks_menu.c:367
+msgid "Bookmark name: "
+msgstr "์ฑ
๊ฐํผ ์ด๋ฆ: "
+
+#: ../src/gnome2/bookmarks_menu.c:370 ../src/gnome2/bookmarks_menu.c:661
+msgid "Verse: "
+msgstr "์ : "
+
+#: ../src/gnome2/bookmarks_menu.c:371 ../src/gnome2/bookmarks_menu.c:662
+msgid "Module: "
+msgstr "๋ชจ๋: "
+
+#: ../src/gnome2/bookmarks_menu.c:493
+msgid "Remove the selected folder"
+msgstr "์ ํํ ํด๋๋ฅผ ์ ๊ฑฐํฉ๋๊น"
+
+#: ../src/gnome2/bookmarks_menu.c:494
+msgid "(and all its contents)?"
+msgstr "(ํด๋์ ๋ชจ๋ ๋ด์ฉ ํฌํจ)?"
+
+#: ../src/gnome2/bookmarks_menu.c:498
+msgid "Remove the selected bookmark"
+msgstr "์ ํํ ์ฑ
๊ฐํผ๋ฅผ ์ ๊ฑฐํฉ๋๊น"
+
+#: ../src/gnome2/bookmarks_menu.c:654
+msgid "Add"
+msgstr "์ถ๊ฐ"
+
+#: ../src/gnome2/bookmarks_menu.c:660
+msgid "Label: "
+msgstr "๋ ์ด๋ธ: "
+
+#: ../src/gnome2/bookmarks_treeview.c:102 ../src/gnome2/export_bookmarks.c:172
+#: ../src/gnome2/export_bookmarks.c:229
+#, c-format
+msgid "Search result: %s"
+msgstr "๊ฒ์ ๊ฒฐ๊ณผ: %s"
+
+#: ../src/gnome2/bookmarks_treeview.c:747
+msgid ""
+"Opening a multi-reference bookmark in\n"
+"separate tabs is not supported."
+msgstr ""
+"๋ค์ค ์ฐธ์กฐ ์ฑ
๊ฐํผ์์ ์ฌ๋ ์ค์ด๋ฉฐ\n"
+"ํญ ๋ถ๋ฆฌ๋ฅผ ์ง์ํ์ง์์ต๋๋ค."
+
+#: ../src/gnome2/bookmarks_treeview.c:839 ../src/gnome2/sidebar.c:1500
+#: ../src/gnome2/sidebar.c:1536
+msgid "Bookmarks"
+msgstr "์ฑ
๊ฐํผ"
+
+#: ../src/gnome2/cipher_key_dialog.c:63
+#, c-format
+msgid "Cipher key for module %s"
+msgstr "%s ๋ชจ๋์ ์ํธ ํค"
+
+#: ../src/gnome2/cipher_key_dialog.c:64
+msgid "for:"
+msgstr "๋ค์์ ๋ํด:"
+
+#: ../src/gnome2/cipher_key_dialog.c:67
+msgid "Enter Key: "
+msgstr "ํค ์
๋ ฅ: "
+
+#: ../src/gnome2/dialog.c:289
+msgid "Close without Saving"
+msgstr "์ ์ฅ ์๊ณ ๋ซ๊ธฐ"
+
+#: ../src/gnome2/dialog.c:724
+msgid "Xiphos:"
+msgstr "xiphos:"
+
+#: ../src/gnome2/dialog.c:854
+msgid "Close _without Saving"
+msgstr "์ ์ฅ ์๊ณ ๋ซ๊ธฐ(_W)"
+
+#: ../src/gnome2/export_bookmarks.c:175 ../src/gnome2/export_bookmarks.c:232
+#: ../src/gnome2/sidebar.c:1514 ../src/gnome2/sidebar.c:1554
+#, c-format
+msgid "Verse List"
+msgstr "์ ๋ชฉ๋ก"
+
+#: ../src/gnome2/export_bookmarks.c:659
+msgid "VerseList"
+msgstr "์ ๋ชฉ๋ก"
+
+#: ../src/gnome2/export_bookmarks.c:663
+msgid "SearchResults"
+msgstr "๊ฒ์ ๊ฒฐ๊ณผ"
+
+#: ../src/gnome2/export_dialog.c:325 ../ui/export-dialog.glade.h:4
+#: ../ui/export-dialog.gtkbuilder.h:4
+msgid "Please check copyright before exporting!"
+msgstr "๋ด๋ณด๋ด๊ธฐ ์ ์ ์ ์๊ถ์ ํ์ธํ์ญ์์ค!"
+
+#: ../src/gnome2/find_dialog.c:183 ../src/gnome2/find_dialog.c:359
+#: ../ui/gtk2_webedit.ui.h:18 ../ui/gtk_webedit.ui.h:18
+msgid "Find"
+msgstr "์ฐพ๊ธฐ"
+
+#: ../src/gnome2/find_dialog.c:202
+msgid "Enter Word or Phrase"
+msgstr "๋จ์ด ๋๋ ์ด๊ตฌ๋ฅผ ์
๋ ฅํ์ญ์์ค"
+
+#: ../src/gnome2/find_dialog.c:217
+msgid "Search backwards"
+msgstr "ํ๋ฐฉ ๊ฒ์"
+
+#: ../src/gnome2/find_dialog.c:280
+msgid "Find Next"
+msgstr "๋ค์ ๊ฒ์"
+
+#: ../src/gnome2/font_dialog.c:296
+msgid "Set Module Font"
+msgstr "๋ชจ๋ ๊ธ๊ผด ์ค์ "
+
+#: ../src/gnome2/font_dialog.c:330
+msgid "Change font for"
+msgstr "๋ค์์ ๋ํ ๊ธ๊ผด ๋ฐ๊พธ๊ธฐ"
+
+#: ../src/gnome2/font_dialog.c:334 ../ui/editor_link_dialog.xml.h:3
+msgid "Module"
+msgstr "๋ชจ๋"
+
+#: ../src/gnome2/font_dialog.c:338
+msgid "Current font: "
+msgstr "ํ์ฌ ๊ธ๊ผด: "
+
+#: ../src/gnome2/font_dialog.c:379 ../src/gnome2/font_dialog.c:395
+#: ../ui/prefs.gtkbuilder.h:3
+msgid "+0"
+msgstr "+0"
+
+#: ../src/gnome2/font_dialog.c:398
+msgid "Use the default font for this module"
+msgstr "์ด ๋ชจ๋์ ๊ธฐ๋ณธ ๊ธ๊ผด๋ก ์ฌ์ฉ"
+
+#: ../src/gnome2/gui.c:173
+msgid "BUG! Xiphos is about to crash due to a \"STRDUP\" error."
+msgstr "๋ฒ๊ทธ๋ค์?! \"STRDUP\" ์ค๋ฅ ๋๋ฌธ์ xiphos๊ฐ ๊นจ์ง ๊ฒ ๊ฐ์ต๋๋ค."
+
+#: ../src/gnome2/gui.c:174 ../src/gnome2/gui.c:204
+msgid "Please report this error to the Xiphos team with:"
+msgstr "๋ค์ ๋ด์ฉ์ ์ฒจ๋ถํ์ฌ xiphos ํ์๊ฒ ์ค๋ฅ๋ฅผ ๋ณด๊ณ ํ์ญ์์ค:"
+
+#: ../src/gnome2/gui.c:203
+msgid "BUG! Xiphos is about to crash due to a \"STRING\" error."
+msgstr "๋ฒ๊ทธ๋ค์?! \"STRING\" ์ค๋ฅ ๋๋ฌธ์ xiphos๊ฐ ๊นจ์ง ๊ฒ ๊ฐ์ต๋๋ค."
+
+#: ../src/gnome2/main_window.c:583
+#, c-format
+msgid "Module has no support for %s."
+msgstr "๋ชจ๋์ %s์(๋ฅผ) ์ง์ํ์ง ์์ต๋๋ค."
+
+#: ../src/gnome2/main_window.c:656
+msgid "Xiphos: No windows."
+msgstr "xiphos: ์ฐฝ์ด ์์ต๋๋ค."
+
+#: ../src/gnome2/main_window.c:708
+msgid "BibleSync: Current navigation sent."
+msgstr "BibleSync: ํ์ฌ ๋ด๋น๊ฒ์ด์
์ ๋ณด๋์ต๋๋ค."
+
+#: ../src/gnome2/main_window.c:710
+msgid "BibleSync: Not speaking."
+msgstr "BibleSync: ์คํผ์ปค๋ก ์ถ๋ ฅํ์ง ์์ต๋๋ค."
+
+#: ../src/gnome2/main_window.c:897
+msgid "Xiphos - Bible Study Software"
+msgstr "xiphos - ์ฑ๊ฒฝ ๊ณต๋ถ ํ๋ก๊ทธ๋จ"
+
+#: ../src/gnome2/main_window.c:972
+msgid "Open a new tab"
+msgstr "์ ํญ ์ด๊ธฐ"
+
+#: ../src/gnome2/main_window.c:1052 ../src/gnome2/sidebar.c:614
+#: ../src/gnome2/sidebar.c:619 ../src/main/sidebar.cc:656
+#: ../src/main/sidebar.cc:976 ../src/main/sidebar.cc:977
+#: ../src/main/sidebar.cc:978
+msgid "Standard View"
+msgstr "ํ์ค ๋ณด๊ธฐ"
+
+#: ../src/gnome2/main_window.c:1109
+msgid "Commentary View"
+msgstr "ํด์ค ๋ณด๊ธฐ"
+
+#: ../src/gnome2/main_window.c:1123
+msgid "Book View"
+msgstr "์ฑ
๋ณด๊ธฐ"
+
+#: ../src/gnome2/main_window.c:1152
+msgid "Welcome to Xiphos"
+msgstr "xiphos๋ฅผ ์ฌ์ฉํ์๋ ์ฌ๋ฌ๋ถ ๋ฐ๊ฐ์ต๋๋ค"
+
+#: ../src/gnome2/menu_popup.c:1296
+msgid ""
+"Renaming is not available in Windows.\n"
+"\n"
+"Xiphos is limited by Windows' filesystem,\n"
+"because it disallows the renaming of filename\n"
+"components of currently-open files,\n"
+"such as the contents of this commentary.\n"
+"Therefore, personal commentary renaming is\n"
+"not available in the Windows environment."
+msgstr ""
+"์๋์ฐ ์ด์์ฒด์ ์์๋ ์ด๋ฆ์ ๋ฐ๊ฟ ์ ์์ต๋๋ค.\n"
+"\n"
+"xiphos๋ ์๋์ฐ ํ์ผ ์์คํ
์์ ๊ธฐ๋ฅ์ ์ ํ์ด ์๋๋ฐ,\n"
+"๊ฐ๋ณ ํด์ค ๊ฐ์ ๋ด์ฉ์ด ์๋ ์ด๋ฏธ ์ด๋ฆฐ ํ์ผ์ ์ด๋ฆ์\n"
+"๋ฐ๊ฟ ์ ์๊ธฐ ๋๋ฌธ์
๋๋ค.\n"
+"๋ฐ๋ผ์ ์๋์ฐ ์ด์์ฒด์ ํ๊ฒฝ์์๋ ๊ฐ๋ณ ํด์ค์ ์ด๋ฆ์\n"
+"๋ฐ๊ฟ ์ ์์ต๋๋ค."
+
+#: ../src/gnome2/menu_popup.c:1315
+msgid "Rename Commentary"
+msgstr "ํด์ค ์ด๋ฆ ๋ฐ๊พธ๊ธฐ"
+
+#: ../src/gnome2/menu_popup.c:1318
+msgid "Choose Commentary Name"
+msgstr "ํด์ค ์ด๋ฆ ์ ํ"
+
+#: ../src/gnome2/menu_popup.c:1320
+msgid "New Name"
+msgstr "์ ์ด๋ฆ ๋ถ์ฌํ๊ธฐ"
+
+#: ../src/gnome2/menu_popup.c:1321 ../src/gnome2/treekey-editor.c:138
+#: ../src/gnome2/treekey-editor.c:195 ../src/gnome2/treekey-editor.c:293
+#: ../src/main/prayerlists.cc:230
+msgid "Name: "
+msgstr "์ด๋ฆ: "
+
+#: ../src/gnome2/menu_popup.c:1330 ../src/main/prayerlists.cc:243
+msgid "Module names must contain [A-Za-z0-9_] only."
+msgstr "๋ชจ๋ ์ด๋ฆ์ ์๋ฌธ ๋์๋ฌธ์, ์ซ์, ๋ฐ์ค๋ฌธ์๋ง ๊ฐ๋ฅํฉ๋๋ค."
+
+#: ../src/gnome2/menu_popup.c:1336 ../src/main/prayerlists.cc:249
+msgid "Xiphos already knows a module by that name."
+msgstr "xiphos์ ์ด๋ฏธ ํด๋น ์ด๋ฆ์ ๊ฐ์ง ๋ชจ๋์ด ์์ต๋๋ค."
+
+#: ../src/gnome2/menu_popup.c:1378
+#, c-format
+msgid ""
+"Failed to create new configuration:\n"
+"%s"
+msgstr ""
+"์ ์ค์ ์ ์คํจํ์ต๋๋ค:\n"
+"%s"
+
+#: ../src/gnome2/menu_popup.c:1387
+msgid ""
+"Configuration build error:\n"
+"\n"
+msgstr ""
+"์ค์ ๋น๋ ์ค๋ฅ:\n"
+"\n"
+
+#: ../src/gnome2/menu_popup.c:2032
+msgid "No module in this pane."
+msgstr "์ด ์ฐฝ์ ๋ชจ๋์ด ์์ต๋๋ค."
+
+#. *****************************************************************************
+#. * defines
+#.
+#: ../src/gnome2/mod_mgr.c:64
+msgid ""
+"<b>Overview of the Module Manager.</b>\n"
+"\n"
+"This is Xiphos' mechanism to get new and updated content.\n"
+"If you have never been here before, please take a moment to look it over.\n"
+"\n"
+"Modules come from different <u>repositories</u>. <b>Module Sources: Add/"
+"Remove</b> will show you what repositories are currently known.\n"
+"\n"
+"<b>Module Sources: Choose</b> is for deciding from where modules should "
+"come, that is, from which repository Xiphos should obtain them, as well as "
+"where they should be placed on your system. Set <i>Install Source</i> and "
+"<i>Install Destination</i>, then click <i>Refresh</i>.\n"
+"\n"
+"<b>Modules: Install/Update</b> is for selecting and obtaining modules after "
+"choosing source and destination.\n"
+"\n"
+"<b>Modules: Maintenance</b> is for archive and index creation.\n"
+"\n"
+"See section 5 of our manual for Module Manager detail, or ask for help via "
+"Live Chat, or (if no one is responsive in chat) send mail to our users' "
+"mailing list.\n"
+msgstr ""
+"<b>๋ชจ๋ ๊ด๋ฆฌ์ ์ดํด๋ณด๊ธฐ์
๋๋ค.</b>\n"
+"\n"
+"xiphos์์ ์ ์ปจํ
ํธ๋ฅผ ๊ฐ์ ธ์ค๋ ๋ฐฉ์์ ๋ํ ๋ด์ฉ์
๋๋ค.\n"
+"์ด ๋ด์ฉ์ ๋ณธ ์ ์ด ์๋ค๋ฉด ์ ๊น ์ดํด๋ณด์ญ์์ค.\n"
+"\n"
+"๋ชจ๋์ ๊ฐ๋ณ <u>์ ์ฅ์</u>์์ ๊ฐ์ ธ์ต๋๋ค. <b>๋ชจ๋ ๊ณต๊ธ์: ์ถ๊ฐ/์ ๊ฑฐ</b> ํญ๋ชฉ"
+"์์๋ ํ์ฌ ์๋ ค์ง ์ ์ฅ์๋ฅผ ๋ณด์ฌ์ค๋๋ค.\n"
+"\n"
+"<b>๋ชจ๋ ๊ณต๊ธ์: ์ ํ</b> ํญ๋ชฉ์ ๋ชจ๋์ ๊ฐ์ ธ์ฌ ์์น๋ฅผ ์ ํํ๋๋ฐ, ์์คํ
์ ์ด"
+"๋ค ์์น์ ๋ชจ๋์ ์ ์ฅํ ์ง ์ค์ ํ๋ ๊ฒ์ฒ๋ผ xiphos๊ฐ ๋ชจ๋์ ๊ฐ์ ธ์ฌ ์ ์ฅ์๋ฅผ ์ธ"
+"๊ธํฉ๋๋ค. <i>์ค์น ์๋ณธ</i> ๊ณผ <i>์ค์น ๋์</i>์ ์ค์ ํ์๊ณ , <i>์๋ก ๊ณ ์นจ</i>"
+"์ ๋๋ฅด์ญ์์ค.\n"
+"\n"
+"<b>๋ชจ๋: ์ค์น/์
๋ฐ์ดํธ</b> ๋ ์๋ณธ๊ณผ ๋์์ ์ ํํ ํ ๋ชจ๋์ ์ ํํ๊ณ ๊ฐ์ ธ์ฌ "
+"๋ ํ์ํ ์ค์ ํญ๋ชฉ์
๋๋ค.\n"
+"\n"
+"<b>๋ชจ๋: ๊ด๋ฆฌ</b> ๋ ์ ์ฅ ๋ชจ๋์ ๊ด๋ฆฌํ๋ฉฐ ์ธ๋ฑ์ค๋ฅผ ๋ง๋ญ๋๋ค.\n"
+"\n"
+"๋ชจ๋ ๊ด๋ฆฌ์ ์ค๋ช
์ ๋ ์์ธํ๊ฒ ์ดํด๋ณด๋ ค๋ฉด ์ค๋ช
์ 5์ ์ ์ฐธ๊ณ ํ์๊ฑฐ๋, ์ค์๊ฐ "
+"๋ํ๋ฐฉ์์ ๋์์ ๊ตฌํ์๋ ์ง, (๋ํ๋ฐฉ์์ ์๋ฌด๋ ๋ฐ์ํ์ง ์๋๋ค๋ฉด) ์ฌ์ฉ์ ๋ฉ"
+"์ผ๋ง ๋ฆฌ์คํธ์ ์ ์๋ฉ์ผ์ ๋ณด๋ด์ญ์์ค.\n"
+
+#: ../src/gnome2/mod_mgr.c:67
+msgid ""
+"<b>Welcome to Xiphos.</b>\n"
+"\n"
+"There are no Bibles installed. In order to initialize, Xiphos needs at least "
+"one Bible module. To facilitate this, the Module Manager has been opened so "
+"that you may install one or more Bibles, either from a local module set "
+"(cdrom, flash drive) or over the network from CrossWire Bible Society. "
+"Please refer to these step-by-step instructions, and to the general module "
+"manager overview that has also been opened.\n"
+"\n"
+"<u>For local install:</u>\n"
+"- In <i>Module Sources: Add/Remove</i>, add a new local folder name where "
+"modules can be found.\n"
+" (This is where folders exist named <i>mods.d</i> and <i>modules</i>.)\n"
+"- In <i>Module Sources: Choose</i>, click the \"Local\" button, and select "
+"your folder from the pulldown.\n"
+"\n"
+"<u>For network install from CrossWire:</u>\n"
+"- In <i>Module Sources: Choose</i>, click the \"Remote\" button and select "
+"CrossWire from the pulldown.\n"
+"- Click the \"Refresh\" button at the bottom.\n"
+"\n"
+"<u>In either case:</u>\n"
+"- In <i>Modules: Install/Update</i>, select Bibles and other modules of your "
+"preference.\n"
+"- Click \"Install\".\n"
+"- Close the Module Manager when you are done.\n"
+"\n"
+"<u>Warning</u>: If you live in a persecuted country, use with care.\n"
+"\n"
+"Both this step-by-step instruction dialog and the general introduction "
+"dialog may be closed at any time."
+msgstr ""
+"<b>xiphos๋ฅผ ์ฌ์ฉํ์๋ ์ฌ๋ฌ๋ถ ๋ฐ๊ฐ์ต๋๋ค.</b>\n"
+"\n"
+"์ค์นํ ์ฑ๊ฒฝ์ด ์์ต๋๋ค. ์ด๊ธฐํํ๋ ค๋ฉด, ์ต์ํ ํ๊ฐ์ง ์ฑ๊ฒฝ ๋ชจ๋์ด ํ์ํฉ๋๋ค. "
+"์ฑ๊ฒฝ ๋ชจ๋์ ์ค์นํ๋ ค ๋ชจ๋ ๊ด๋ฆฌ์๋ฅผ ์ฐ ํ, ์ง์ญ ๋ชจ๋ ์งํฉ(CD-ROM, ๋๋ USB ๋ฉ"
+"๋ชจ๋ฆฌ) ๋๋ CrossWire ์ฑ์ ๊ณตํ ๋คํธ์ํฌ๋ก๋ถํฐ ํ๋ ์ด์์ ์ฑ๊ฒฝ์ ์ค์นํฉ๋๋ค. "
+"์๋์ ์ ์ฐจ์ ์์ ์ด์ด๋์ ์ผ๋ฐ ๋ชจ๋ ๊ด๋ฆฌ์๋ฅผ ์ฐธ๊ณ ํ์ญ์์ค.\n"
+"\n"
+"<u>๋ก์ปฌ ์ค์น:</u>\n"
+"- <i>๋ชจ๋ ๊ณต๊ธ์: ์ถ๊ฐ/์ ๊ฑฐ</i>๋ฅผ ํตํด ๋ชจ๋์ ์ฐพ์ ์ ์๋ ์์น์ ๋ก์ปฌ ํด๋ "
+"์ด๋ฆ์ ์ถ๊ฐํ์ญ์์ค.\n"
+" (์ด ์์น๋ ๊ธฐ์กด์ <i>mods.d</i> ๊ทธ๋ฆฌ๊ณ <i>modules</i> ํด๋์
๋๋ค.)\n"
+"- <i>๋ชจ๋ ๊ณต๊ธ์: ์ ํ</i>์ ํตํด \"๋ก์ปฌ\" ๋จ์ถ๋ฅผ ๋๋ฅธ ํ ํ ๋ค์ด ํญ๋ชฉ์์ ํด"
+"๋๋ฅผ ์ ํํ์ญ์์ค.\n"
+"\n"
+"<u>CrossWire ๋คํธ์ํฌ๋ก ์ค์น:</u>\n"
+"- <i>๋ชจ๋ ๊ณต๊ธ์: ์ ํ</i>์์ \"์๊ฒฉ\" ๋จ์ถ๋ฅผ ๋๋ฅธ ํ ํ ๋ค์ด ํญ๋ชฉ์์ "
+"CrossWire๋ฅผ ์ ํํ์ญ์์ค.\n"
+"- ํ๋จ์ \"์๋ก ๊ณ ์นจ\" ๋จ์ถ๋ฅผ ๋๋ฅด์ญ์์ค.\n"
+"\n"
+"<u>๋ ๊ฐ์ง ๊ฒฝ์ฐ์ ๋ํด:</u>\n"
+"- <i>๋ชจ๋: ์ค์น/์
๋ฐ์ดํธ</i>์์ ์ฑ๊ฒฝ ๋๋ ์ํ๋ ๋ค๋ฅธ ๋ชจ๋์ ์ ํํ์ญ์์ค.\n"
+"- \"์ค์น\"๋ฅผ ๋๋ฅด์ญ์์ค.\n"
+"- ๋ค ๋ง์ณค์ผ๋ฉด ๋ชจ๋ ๊ด๋ฆฌ์๋ฅผ ๋ซ์ผ์ญ์์ค.\n"
+"\n"
+"<u>๊ฒฝ๊ณ </u>: ๋ค๋ฅธ ๊ตญ๊ฐ์ ์ด๊ณ ์๋ค๋ฉด ์ ์๊ถ์ ์ ์ํ์ฌ ์ฌ์ฉํ์ญ์์ค.\n"
+"\n"
+"์ ์ฐจ ๋ํ์์์ ์ผ๋ฐ ์๊ฐ ๋ํ์์๋ ์ธ์ ๋ ๋ซ์ ์ ์์ต๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:191
+msgid "Remove these modules?"
+msgstr "์ด ๋ชจ๋์ ์ ๊ฑฐํฉ๋๊น?"
+
+#: ../src/gnome2/mod_mgr.c:192
+msgid "Preparing to remove"
+msgstr "์ ๊ฑฐ ์ค๋น ์ค"
+
+#: ../src/gnome2/mod_mgr.c:193
+msgid "Removing"
+msgstr "์ ๊ฑฐ ์ค"
+
+#: ../src/gnome2/mod_mgr.c:194 ../ui/xi-menus.glade.h:154
+#: ../ui/xi-menus-popup.gtkbuilder.h:27
+msgid "Remove"
+msgstr "์ ๊ฑฐ"
+
+#: ../src/gnome2/mod_mgr.c:195
+msgid "Install these modules?"
+msgstr "์ด ๋ชจ๋์ ์ค์นํฉ๋๊น?"
+
+#: ../src/gnome2/mod_mgr.c:196
+msgid "Preparing to install"
+msgstr "์ค์น ์ค๋น ์ค"
+
+#: ../src/gnome2/mod_mgr.c:197
+msgid "Installing"
+msgstr "์ค์น ์ค"
+
+#: ../src/gnome2/mod_mgr.c:198
+msgid "Install"
+msgstr "์ค์น"
+
+#: ../src/gnome2/mod_mgr.c:199
+msgid "Archive these modules?"
+msgstr "์ด ๋ชจ๋์ ๋ณด๊ด์ฒ๋ฆฌ ํฉ๋๊น?"
+
+#: ../src/gnome2/mod_mgr.c:200
+msgid "Preparing to archive"
+msgstr "๋ณด๊ด์ฒ๋ฆฌ ์ค๋น ์ค"
+
+#: ../src/gnome2/mod_mgr.c:201
+msgid "Archiving"
+msgstr "๋ณด๊ด์ฒ๋ฆฌ ์ค"
+
+#: ../src/gnome2/mod_mgr.c:202
+msgid "Archive"
+msgstr "๋ณด๊ด์ฒ๋ฆฌ"
+
+#: ../src/gnome2/mod_mgr.c:203
+msgid ""
+"Build fast-search index for these\n"
+"modules (may take minutes/module)?"
+msgstr ""
+"์ด ๋ชจ๋์ ๋ํ ๊ณ ์ ๊ฒ์ ์ธ๋ฑ์ค๋ฅผ\n"
+"๋ง๋์๊ฒ ์ต๋๊น(๋ชจ๋์ ๋ํด ์ ๋ถ์ด ๊ฑธ๋ฆผ)?"
+
+#: ../src/gnome2/mod_mgr.c:204
+msgid "Preparing to index"
+msgstr "์์ธ ์ค๋น ์ค"
+
+#: ../src/gnome2/mod_mgr.c:205
+msgid "Indexing"
+msgstr "์์ธ ์ค"
+
+#: ../src/gnome2/mod_mgr.c:206
+msgid "Index"
+msgstr "์์ธ"
+
+#: ../src/gnome2/mod_mgr.c:207
+msgid "Delete fast-search index for these modules?"
+msgstr "์ด ๋ชจ๋์ ๋ํ ๋น ๋ฅธ ๊ฒ์ ์์ธ์ ์ญ์ ํ์๊ฒ ์ต๋๊น?"
+
+#: ../src/gnome2/mod_mgr.c:208
+msgid "Preparing to delete index"
+msgstr "์์ธ ์ญ์ ์ค๋น ์ค"
+
+#: ../src/gnome2/mod_mgr.c:209
+msgid "Deleting index"
+msgstr "์์ธ์ ์ญ์ ํฉ๋๋ค"
+
+#: ../src/gnome2/mod_mgr.c:210
+msgid "Deletion"
+msgstr "์ญ์ "
+
+#: ../src/gnome2/mod_mgr.c:311
+msgid "The module has no About information."
+msgstr "๋ชจ๋ ์ ๋ณด๊ฐ ์์ต๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:533
+msgid "Module Name"
+msgstr "๋ชจ๋ ์ด๋ฆ"
+
+#: ../src/gnome2/mod_mgr.c:562
+msgid "A checkmark means this module is already installed"
+msgstr "ํ์ ๊ธฐํธ๋ ์ด ๋ชจ๋์ ์ด๋ฏธ ์ค์นํ๋ค๋ ๋ป์
๋๋ค"
+
+#: ../src/gnome2/mod_mgr.c:589
+msgid "Click the box to work on this module"
+msgstr "์ด ๋ชจ๋์ ๋ค๋ฃจ๋ ค๋ฉด ๋ฐ์ค๋ฅผ ๋๋ฅด์ญ์์ค"
+
+#: ../src/gnome2/mod_mgr.c:590
+msgid "Click the box to select this module for install/update"
+msgstr "์ค์น/์
๋ฐ์ดํธํ ๋ชจ๋์ ์ ํํ๋ ค๋ฉด ๋ฐ์ค๋ฅผ ์ฃผ๋ฅด์ญ์์ค"
+
+#: ../src/gnome2/mod_mgr.c:608
+msgid "Installed"
+msgstr "์ค์นํจ"
+
+#: ../src/gnome2/mod_mgr.c:625
+msgid ""
+"The index icon means you have built an optimized ('lucene') index for this "
+"module for fast searching (see the Maintenance pane for this function)"
+msgstr ""
+"์์ธ ์์ด์ฝ์ ๊ณ ์ ๊ฒ์ ๋ชฉ์ ์ผ๋ก ์ด ๋ชจ๋์ ๋ํด ์ต์ ํ('๋ฃจ์ฌ') ์์ธ์ ๋ง๋ค์"
+"๋ค๋ ๋ป์
๋๋ค(์ด ๊ธฐ๋ฅ์ ๋ํด์๋ ๊ด๋ฆฌ์ ์ฐฝ์ ์ดํด๋ณด์ญ์์ค)"
+
+#: ../src/gnome2/mod_mgr.c:649
+msgid ""
+"The lock icon means this module is encrypted, and requires that you purchase "
+"an unlock key from the content owner"
+msgstr ""
+"์ ๊ธ ์์ด์ฝ์ ๋ชจ๋์ ์ํธํํ๋ค๋ ๋ป์ด๋ฉฐ, ์ด ์์ด์ฝ์ด ๋ํ๋๋ฉด ์ปจํ
๋ ์์ ์ "
+"๋ก๋ถํฐ ์ ๊ธ ํด์ ํค๋ฅผ ๊ตฌ๋งคํด์ผํฉ๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:664 ../src/main/biblesync_glue.cc:580
+#: ../ui/gtk2_webedit.ui.h:2 ../ui/gtk_webedit.ui.h:2 ../ui/xi-menus.glade.h:55
+#: ../ui/xi-menus-popup.gtkbuilder.h:35
+msgid "About"
+msgstr "์ ๋ณด"
+
+#: ../src/gnome2/mod_mgr.c:688
+msgid ""
+"The refresh icon means the Installed module is older than the newer "
+"Available module: You should update the module"
+msgstr ""
+"์๋ก ๊ณ ์นจ ์์ด์ฝ์ ์ค์นํ ๋ชจ๋์ด ์ ๋ฒ์ ์ ๋ชจ๋๋ณด๋ค ์ค๋๋๋ค๋ ๋ป์
๋๋ค: ๋ชจ๋"
+"์ ์
๋ฐ์ดํธํด์ผํฉ๋๋ค"
+
+#: ../src/gnome2/mod_mgr.c:700
+msgid "Available"
+msgstr "๊ฐ์ฉ์ฑ"
+
+#: ../src/gnome2/mod_mgr.c:709
+msgid "Size"
+msgstr "ํฌ๊ธฐ"
+
+#: ../src/gnome2/mod_mgr.c:718
+msgid "Description"
+msgstr "์ค๋ช
"
+
+#: ../src/gnome2/mod_mgr.c:872
+#, c-format
+msgid ""
+"`mkdir %s' failed:\n"
+"%s."
+msgstr ""
+"`mkdir %s' ์คํจ\n"
+"%s."
+
+#: ../src/gnome2/mod_mgr.c:906
+msgid " archived in: \n"
+msgstr " ๋ค์์ ๋ณด๊ด: \n"
+
+#: ../src/gnome2/mod_mgr.c:985
+msgid "Journals and prayer lists cannot be indexed."
+msgstr "๋ฌต์ ์ผ๊ธฐ ๋ฐ ๊ธฐ๋ ๋ชฉ๋ก์ ์์ธํ ์ ์์ต๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:1016
+#, c-format
+msgid "%s failed"
+msgstr "%s ์คํจ"
+
+#: ../src/gnome2/mod_mgr.c:1019 ../src/gnome2/mod_mgr.c:1784
+msgid "Finished"
+msgstr "๋ง์นจ"
+
+#: ../src/gnome2/mod_mgr.c:1192 ../src/gnome2/mod_mgr.c:1194
+#: ../src/gnome2/mod_mgr.c:1304 ../src/gnome2/mod_mgr.c:1337
+#: ../src/gnome2/mod_mgr.c:1339 ../src/gnome2/utilities.c:432
+#: ../src/gnome2/utilities.c:495 ../src/gnome2/utilities.c:497
+#: ../src/gnome2/utilities.c:1069 ../src/main/sidebar.cc:808
+#: ../src/main/sidebar.cc:879 ../src/main/sidebar.cc:881
+msgid "Unknown"
+msgstr "์ ์ ์์"
+
+#: ../src/gnome2/mod_mgr.c:1515
+#, c-format
+msgid ""
+"Repository:\n"
+"%s"
+msgstr ""
+"์ ์ฅ์:\n"
+"%s"
+
+#: ../src/gnome2/mod_mgr.c:1528
+msgid ""
+"Categorized by\n"
+"Module Type"
+msgstr ""
+"๋ชจ๋ ํ์๋ณ\n"
+"๋ถ๋ฅ"
+
+#: ../src/gnome2/mod_mgr.c:1533 ../src/gnome2/utilities.c:574
+#: ../src/main/sidebar.cc:960 ../src/main/sidebar.cc:962
+msgid "Biblical Texts"
+msgstr "์ฑ๊ฒฝ"
+
+#: ../src/gnome2/mod_mgr.c:1537 ../src/gnome2/utilities.c:580
+#: ../src/main/sidebar.cc:667 ../src/main/sidebar.cc:985
+#: ../src/main/sidebar.cc:987
+msgid "Commentaries"
+msgstr "ํด์ค"
+
+#: ../src/gnome2/mod_mgr.c:1541 ../src/gnome2/utilities.c:587
+#: ../src/main/sidebar.cc:994 ../src/main/sidebar.cc:996
+msgid "Dictionaries"
+msgstr "์ฌ์ "
+
+#: ../src/gnome2/mod_mgr.c:1545 ../src/gnome2/utilities.c:593
+#: ../src/main/sidebar.cc:1003 ../src/main/sidebar.cc:1005
+msgid "Glossaries"
+msgstr "์ฉ์ด์ง"
+
+#: ../src/gnome2/mod_mgr.c:1549 ../src/gnome2/utilities.c:600
+#: ../src/main/sidebar.cc:1012 ../src/main/sidebar.cc:1014
+msgid "Daily Devotionals"
+msgstr "๋งค์ผ ๋ฌต์"
+
+#: ../src/gnome2/mod_mgr.c:1554 ../src/gnome2/utilities.c:606
+#: ../src/main/sidebar.cc:675 ../src/main/sidebar.cc:1021
+#: ../src/main/sidebar.cc:1023
+msgid "General Books"
+msgstr "์ผ๋ฐ ์์ "
+
+#: ../src/gnome2/mod_mgr.c:1566 ../src/gnome2/utilities.c:624
+#: ../src/main/sidebar.cc:1048 ../src/main/sidebar.cc:1050
+msgid "Cult/Unorthodox"
+msgstr "๊ด์ ๋/์ด๋จ"
+
+#: ../src/gnome2/mod_mgr.c:1575
+msgid ""
+"Categorized by\n"
+"Availability"
+msgstr ""
+"๊ฐ์ฉ์ฑ๋ณ\n"
+"๋ถ๋ฅ"
+
+#: ../src/gnome2/mod_mgr.c:1579
+msgid "Updates"
+msgstr "์
๋ฐ์ดํธ"
+
+#: ../src/gnome2/mod_mgr.c:1584
+msgid "Uninstalled"
+msgstr "์ค์นํ์ง ์์"
+
+#: ../src/gnome2/mod_mgr.c:1589 ../src/gnome2/sidebar.c:630
+#: ../src/gnome2/utilities.c:632 ../src/main/prayerlists.cc:228
+#: ../src/main/sidebar.cc:1058 ../src/main/sidebar.cc:1060
+msgid "Prayer List/Journal"
+msgstr "๊ธฐ๋ ๋ชฉ๋ก/๋ฌต์ ์ผ๊ธฐ"
+
+#: ../src/gnome2/mod_mgr.c:1767
+msgid "Refreshing from remote source"
+msgstr "์๊ฒฉ ์๋ณธ์ผ๋ก ์๋ก ๊ณ ์น๋ ์ค"
+
+#: ../src/gnome2/mod_mgr.c:1779
+msgid "Remote source not found"
+msgstr "์๊ฒฉ ์๋ณธ์ด ์์ต๋๋ค"
+
+#: ../src/gnome2/mod_mgr.c:1850
+msgid "Configure"
+msgstr "์ค์ "
+
+#: ../src/gnome2/mod_mgr.c:1879
+msgid "Type"
+msgstr "ํ์"
+
+#: ../src/gnome2/mod_mgr.c:1886
+msgid "Caption"
+msgstr "์ค๋ช
์ ๋ชฉ"
+
+#: ../src/gnome2/mod_mgr.c:1893
+msgid "Source"
+msgstr "์๋ณธ"
+
+#: ../src/gnome2/mod_mgr.c:1900
+msgid "Directory"
+msgstr "๋๋ ํฐ๋ฆฌ"
+
+#: ../src/gnome2/mod_mgr.c:1908
+msgid "User"
+msgstr "์ฌ์ฉ์"
+
+#: ../src/gnome2/mod_mgr.c:1915
+msgid "Password"
+msgstr "์ํธ"
+
+#: ../src/gnome2/mod_mgr.c:1922
+msgid "UID"
+msgstr "UID"
+
+#: ../src/gnome2/mod_mgr.c:1937
+msgid "Module Sources"
+msgstr "๋ชจ๋ ์๋ณธ"
+
+#: ../src/gnome2/mod_mgr.c:1940
+msgid "Add/Remove"
+msgstr "์ถ๊ฐ/์ ๊ฑฐ"
+
+#: ../src/gnome2/mod_mgr.c:1943
+msgid "Choose"
+msgstr "์ ํ"
+
+#: ../src/gnome2/mod_mgr.c:1946 ../src/gnome2/preferences_dialog.c:2023
+#: ../src/gnome2/sidebar.c:1520 ../src/gnome2/sidebar.c:1562
+msgid "Modules"
+msgstr "๋ชจ๋"
+
+#: ../src/gnome2/mod_mgr.c:1948
+msgid "Install/Update"
+msgstr "์ค์น/์
๋ฐ์ดํธ"
+
+#: ../src/gnome2/mod_mgr.c:1951
+msgid "Maintenance"
+msgstr "๊ด๋ฆฌ"
+
+#: ../src/gnome2/mod_mgr.c:2167
+msgid "Please Refresh"
+msgstr "์๋ก ๊ณ ์น์ญ์์ค"
+
+#: ../src/gnome2/mod_mgr.c:2168
+msgid "Your module list is not up to date!"
+msgstr "๋ชจ๋ ๋ชฉ๋ก์ด ์ต์ ์ด ์๋๋๋ค!"
+
+#. Zero Bibles is just not workable in Xiphos.
+#: ../src/gnome2/mod_mgr.c:2485
+msgid ""
+"You have uninstalled your last Bible.\n"
+"Xiphos requires at least one."
+msgstr ""
+"๋ง์ง๋ง ์ฑ๊ฒฝ์ ์ ๊ฑฐํ์ต๋๋ค.\n"
+"xiphos์๋ ์ต์ํ ํ๋์ ์ฑ๊ฒฝ์ด ํ์ํฉ๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:2491
+msgid ""
+"There are still no Bibles installed.\n"
+"Xiphos cannot continue without one."
+msgstr ""
+"์ฌ์ ํ ์ค์นํ ์ฑ๊ฒฝ์ด ์์ต๋๋ค.\n"
+"xiphos๋ ์ฑ๊ฒฝ์ด ์๋ฌด๊ฒ๋ ์์ผ๋ฉด ๊ณ์ ์คํํ ์ ์์ต๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:2616
+#, c-format
+msgid ""
+"%s obsoletes %s.\n"
+"Would you like to delete %s?\n"
+"Beware: This cannot be undone."
+msgstr ""
+"%2$s์(๋) %1$s์ ์ค๋๋ ๋ฒ์ ์
๋๋ค.\n"
+"%3$s์(๋ฅผ) ์ญ์ ํ์๊ฒ ์ต๋๊น?\n"
+"์ฐธ๊ณ : ๋๋๋ฆด ์ ์์ต๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:2682
+msgid "No obsolete modules were found."
+msgstr "์ค๋๋ ๋ชจ๋์ด ์์ต๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:2704
+msgid "Standard remote sources have been loaded."
+msgstr "ํ์ค ์๊ฒฉ ์๋ณธ์ ๋ถ๋ฌ์์ต๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:2713
+msgid "Could not load standard sources from CrossWire."
+msgstr "CrossWire์์ ํ์ค ์๋ณธ์ ๋ถ๋ฌ์ฌ ์ ์์ต๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:2864 ../src/gnome2/mod_mgr.c:3120
+msgid "Remove the selected source"
+msgstr "์ ํํ ์๋ณธ ์ ๊ฑฐ"
+
+#: ../src/gnome2/mod_mgr.c:2930
+msgid "Enter a remote source"
+msgstr "์๊ฒฉ ์๋ณธ ์ ๋ณด๋ฅผ ์
๋ ฅํ์ญ์์ค"
+
+#: ../src/gnome2/mod_mgr.c:2939
+msgid "Caption:"
+msgstr "์ค๋ช
์ ๋ชฉ:"
+
+#: ../src/gnome2/mod_mgr.c:2940
+msgid "Type:"
+msgstr "ํ์:"
+
+#: ../src/gnome2/mod_mgr.c:2941
+msgid "Host:"
+msgstr "ํธ์คํธ:"
+
+#: ../src/gnome2/mod_mgr.c:2942
+msgid "Directory:"
+msgstr "๋๋ ํฐ๋ฆฌ:"
+
+#: ../src/gnome2/mod_mgr.c:2943
+msgid "User (optional):"
+msgstr "์ฌ์ฉ์(์ ํ):"
+
+#: ../src/gnome2/mod_mgr.c:2944
+msgid "Password (optional):"
+msgstr "์ํธ(์ ํ):"
+
+#. this can happen at most once
+#: ../src/gnome2/mod_mgr.c:2970
+msgid "A source by that name already exists."
+msgstr "ํด๋น ์ด๋ฆ์ ๊ฐ์ง ๊ณต๊ธ์์ด ์ด๋ฏธ ์์ต๋๋ค."
+
+#: ../src/gnome2/mod_mgr.c:3117
+msgid "Delete a remote source"
+msgstr "์๊ฒฉ ๊ณต๊ธ์ ์ญ์ "
+
+#: ../src/gnome2/mod_mgr.c:3636
+msgid "[no module]"
+msgstr "[๋ชจ๋ ์์]"
+
+#: ../src/gnome2/navbar_book.c:356 ../src/gnome2/navbar_book_dialog.c:300
+msgid "Go outward, to the section containing this one"
+msgstr "์ด ์ ์ด ๋ค์ด์๋ ์ ๋ฐ๊นฅ ์ฅ์ผ๋ก ์ด๋"
+
+#: ../src/gnome2/navbar_book.c:377 ../src/gnome2/navbar_book_dialog.c:322
+msgid "Go to previous item"
+msgstr "์ด์ ํญ๋ชฉ์ผ๋ก ์ด๋"
+
+#: ../src/gnome2/navbar_book.c:397 ../src/gnome2/navbar_book_dialog.c:342
+msgid "Go to next item"
+msgstr "๋ค์ ํญ๋ชฉ์ผ๋ก ์ด๋"
+
+#: ../src/gnome2/navbar_book.c:418 ../src/gnome2/navbar_book_dialog.c:362
+msgid "Go inward, to the first subsection"
+msgstr "์ฒซ๋ฒ์งธ ํ์ ์ ์ด ์๋ ์์ชฝ์ผ๋ก ์ด๋"
+
+#: ../src/gnome2/navbar_versekey_dialog.c:898
+#: ../src/gnome2/navbar_versekey_editor.c:926
+#: ../src/gnome2/navbar_versekey_parallel.c:847
+msgid "Synchronize this window's scrolling with the main window"
+msgstr "์ด ๋๊ธฐํ์ ์คํฌ๋กค์ ๋ฉ์ธ ์ฐฝ์ ์คํฌ๋กค๊ณผ ๋๊ธฐํ"
+
+#: ../src/gnome2/parallel_dialog.c:346 ../src/gnome2/preferences_dialog.c:2030
+msgid "Parallel"
+msgstr "๋๋ํ ๋ณด๊ธฐ"
+
+#: ../src/gnome2/parallel_view.c:112
+msgid "Detach/Attach"
+msgstr "๋ถ์ด๊ธฐ/๋ผ์ด๋ด๊ธฐ"
+
+#: ../src/gnome2/parallel_view.c:117 ../ui/xi-menus.glade.h:64
+#: ../ui/xi-menus-popup.gtkbuilder.h:43
+msgid "Module Options"
+msgstr "๋ชจ๋ ์ต์
"
+
+#: ../src/gnome2/parallel_view.c:206 ../src/gnome2/sidebar.c:614
+#: ../src/gnome2/sidebar.c:619 ../src/gnome2/tabbed_browser.c:254
+#: ../src/main/sidebar.cc:639 ../src/main/sidebar.cc:968
+#: ../src/main/sidebar.cc:969 ../src/main/sidebar.cc:970
+msgid "Parallel View"
+msgstr "๋๋ํ ๋ณด๊ธฐ"
+
+#: ../src/gnome2/preferences_dialog.c:860
+msgid "BibleSync session passphrase"
+msgstr "BiboeSync ์ธ์
์ํธ"
+
+#: ../src/gnome2/preferences_dialog.c:862
+msgid "Phrase:"
+msgstr "์ด๊ตฌ:"
+
+#. mode selection failed? probably dead interface
+#: ../src/gnome2/preferences_dialog.c:933
+msgid ""
+"Mode selection failed.\n"
+"Set \"Debug\" and try again to see why."
+msgstr ""
+"๋ชจ๋ ์ ํ์ ์คํจํ์ต๋๋ค.\n"
+"\"๋๋ฒ๊น
\"๋ฅผ ์ค์ ํ๊ณ ์์ธ์ ์ดํด๋ณด์ญ์์ค."
+
+#: ../src/gnome2/preferences_dialog.c:988
+msgid "Mode selection failed.\n"
+msgstr "๋ชจ๋ ์ ํ์ ์คํจํ์ต๋๋ค.\n"
+
+#: ../src/gnome2/preferences_dialog.c:991
+#, c-format
+msgid "BibleSync: %s (passphrase \"%s\")."
+msgstr "BibleSync: %s (์ํธ: \"%s\"),"
+
+#: ../src/gnome2/preferences_dialog.c:993
+msgid "Disabled"
+msgstr "๋นํ์ฑ"
+
+#: ../src/gnome2/preferences_dialog.c:995 ../src/main/xml.c:96
+msgid "Personal"
+msgstr "๊ฐ์ธ"
+
+#: ../src/gnome2/preferences_dialog.c:997
+msgid "Speaker"
+msgstr "๋
์์"
+
+#: ../src/gnome2/preferences_dialog.c:998
+msgid "Audience"
+msgstr "์ฒญ์"
+
+#: ../src/gnome2/preferences_dialog.c:1584
+#: ../src/gnome2/preferences_dialog.c:1618
+#: ../src/gnome2/preferences_dialog.c:1651
+#: ../src/gnome2/preferences_dialog.c:1683
+#: ../src/gnome2/preferences_dialog.c:1714
+#: ../src/gnome2/preferences_dialog.c:1745
+#: ../src/gnome2/preferences_dialog.c:1776
+#: ../src/gnome2/preferences_dialog.c:1808
+#: ../src/gnome2/preferences_dialog.c:1841
+#: ../src/gnome2/preferences_dialog.c:1892
+#: ../src/gnome2/preferences_dialog.c:2340
+msgid "-- Select --"
+msgstr "-- ์ ํ --"
+
+#: ../src/gnome2/preferences_dialog.c:1855
+msgid "Locale will take effect after restart."
+msgstr "๋ค์ ์์ํ๊ณ ๋์ ๋ก์บ์ ์ ์ฉํฉ๋๋ค."
+
+#: ../src/gnome2/preferences_dialog.c:1925 ../ui/prefs.glade.h:1
+#: ../ui/prefs.gtkbuilder.h:9
+msgid "Preferences"
+msgstr "๊ธฐ๋ณธ ์ค์ "
+
+#: ../src/gnome2/preferences_dialog.c:2003
+msgid "General"
+msgstr "์ผ๋ฐ"
+
+#: ../src/gnome2/preferences_dialog.c:2006
+msgid "Options"
+msgstr "์ต์
"
+
+# ์ฃผ: ๊ณ ์ ๋ช
์ฌ์ด๋ฏ๋ก ๋ฒ์ญํด์ ์๋จ. xiphos๋ ์์ญํ์ง ์์์ผ๋ฏ๋ก ์ฉ์ด ๋ฒ์ญ ์ผ๊ด์ฑ์ ๋ฐ๋ฅด๊ธฐ ์ํด ๋ฒ์ญํ์ง ๋ง์ญ์์ค.
+#: ../src/gnome2/preferences_dialog.c:2009 ../ui/prefs.glade.h:85
+#: ../ui/prefs.gtkbuilder.h:85
+msgid "BibleSync"
+msgstr "BibleSync"
+
+#: ../src/gnome2/preferences_dialog.c:2013
+msgid "Fonts"
+msgstr "๊ธ๊ผด"
+
+#: ../src/gnome2/preferences_dialog.c:2016
+msgid "Color"
+msgstr "์์"
+
+#: ../src/gnome2/preferences_dialog.c:2019
+msgid "Sizes and Faces"
+msgstr "ํฌ๊ธฐ ๋ฐ ๋ชจ์์"
+
+#: ../src/gnome2/preferences_dialog.c:2033
+msgid "Special"
+msgstr "ํน์"
+
+#: ../src/gnome2/preferences_dialog.c:2721 ../src/gnome2/search_dialog.c:519
+msgid "Clear List?"
+msgstr "๋ชฉ๋ก์ ์ง์๋๊น?"
+
+#: ../src/gnome2/preferences_dialog.c:2722 ../src/gnome2/search_dialog.c:520
+msgid "Are you sure you want to clear the module list?"
+msgstr "์ ๋ง๋ก ๋ชจ๋ ๋ชฉ๋ก์ ์ง์ฐ์๊ฒ ์ต๋๊น?"
+
+#: ../src/gnome2/preferences_dialog.c:2773 ../src/main/search_dialog.cc:658
+msgid "Remove Module?"
+msgstr "๋ชจ๋์ ์ ๊ฑฐํฉ๋๊น?"
+
+#: ../src/gnome2/preferences_dialog.c:2774 ../src/main/search_dialog.cc:659
+msgid "Are you sure you want to remove the selected module?"
+msgstr "์ ๋ง๋ก ์ ํํ ๋ชจ๋์ ์ ๊ฑฐํ์๊ฒ ์ต๋๊น?"
+
+#: ../src/gnome2/search_dialog.c:62 ../src/main/search_dialog.cc:52
+#: ../src/main/search_sidebar.cc:51
+msgid "Searching the "
+msgstr "๊ฒ์ "
+
+#: ../src/gnome2/search_dialog.c:63 ../src/main/search_dialog.cc:53
+#: ../src/main/search_sidebar.cc:52
+msgid " Module"
+msgstr " ๋ชจ๋"
+
+#: ../src/gnome2/search_dialog.c:64 ../src/main/search_dialog.cc:54
+#: ../src/main/search_sidebar.cc:53
+msgid "found in "
+msgstr "๋ค์์์ ์ฐพ์ "
+
+#: ../src/gnome2/search_dialog.c:483
+#, c-format
+msgid "New List %s"
+msgstr "์ ๋ชฉ๋ก %s"
+
+#: ../src/gnome2/search_dialog.c:700
+msgid "The last module list may not be deleted"
+msgstr "๋ง์ง๋ง ๋ชจ๋ ๋ชฉ๋ก์ ์ญ์ ํ์ง ์์ ์๋ ์์ต๋๋ค"
+
+#: ../src/gnome2/search_dialog.c:715
+msgid "Delete list?"
+msgstr "๋ชฉ๋ก์ ์ญ์ ํฉ๋๊น?"
+
+#: ../src/gnome2/search_dialog.c:716
+msgid "Are you sure you want to delete:"
+msgstr "์ ๋ง๋ก ๋ค์์ ์ญ์ ํ์๊ฒ ์ต๋๊น:"
+
+#. *****************************************************************************
+#. * Name
+#. * on_lucene_intro_clicked
+#. *
+#. * Synopsis
+#. * #include "gui/search_dialog.h"
+#. *
+#. * void on_lucene_intro_clicked(GtkToggleButton *button,
+#. * gpointer user_data)
+#. *
+#. * Description
+#. *
+#. *
+#. * Return value
+#. * void
+#.
+#: ../src/gnome2/search_dialog.c:842
+msgid ""
+"<b>Syntax overview for optimized \"lucene\" searches</b>\n"
+"Search for verses that contain...\n"
+"\n"
+"loved one\n"
+"\t \"loved\" or \"one\"\n"
+"\tThis is the same as searching for loved OR one\n"
+"\"loved one\"\n"
+"\tThe phrase \"loved one\"\n"
+"love*\n"
+"\tA word starting with \"love\"\n"
+"\t(love OR loves OR loved OR etc...)\n"
+"loved AND one\n"
+"\tThe word \"loved\" and the word \"one\"\n"
+"\t&& can be used in place of AND\n"
+"+loved one\n"
+"\tVerses that <b>must</b> contain \"loved\" and <b>may</b> contain \"one\"\n"
+"loved NOT one\n"
+"\t\"loved\" but not \"one\"\n"
+"(loved one) AND God\n"
+"\t\"loved\" or \"one\" and \"God\"\n"
+"lemma:G2316\n"
+"\tSearch for the Strong's Greek (\"G\") word number 2316.\n"
+"\tAlso, select Strong's display on the <i>Attribute Search</i> tab.\n"
+"\n"
+"For complete details, search the web for \"lucene search syntax\"."
+msgstr ""
+"<b>์ ์ ๋ฆฌ๋ \"๋ฃจ์ฌ\" ๊ฒ์ ๋ฌธ๋ฒ ์ ๋ฆฌ</b>\n"
+"๋ค์ ๋ด์ฉ์ด ๋ค์ด์๋ ๊ตฌ์ ์ ๊ฒ์ํ ๊ฒฝ์ฐ...\n"
+"\n"
+"loved one\n"
+"\t \"loved\" or \"one\"\n"
+"\t์ด ๋ฐฉ์์ loved OR one์ ๊ฒ์ํ๋ ๋ฐฉ์๊ณผ ๊ฐ์ต๋๋ค\n"
+"\"loved one\"\n"
+"\t\"loved one\" ๊ตฌ์ \n"
+"love*\n"
+"\t\"love\"๋ก ์์ํ๋ ๋จ์ด\n"
+"\t(love OR loves OR loved ๋ฑ๋ฑ...)\n"
+"loved AND one\n"
+"\t\"loved\" ๋จ์ด์ \"one\" ๋จ์ด\n"
+"\t&& ์ฐ์ฐ์๋ฅผ AND ์์น์ ๋์ ์ ์์ต๋๋ค\n"
+"+loved one\n"
+"\t \"loved\"๊ฐ ๋ค์ด <b>์์ด์ผ</b> ํ๊ณ \"one\"์ ํฌํจ <b>ํ ์</b> ์์ต๋๋ค\n"
+"loved NOT one\n"
+"\t\"loved\"๋ ์์ง๋ง \"one\"์ ์๋ ๊ตฌ์ \n"
+"(loved one) AND God\n"
+"\t\"loved\" or \"one\" and \"God\"\n"
+"lemma:G2316\n"
+"\t์คํธ๋กฑ ๋จ์ด๊ธฐํธ ํฌ๋ผ(\"G\") ๋ฒํธ 2316์ ๊ฒ์ ๊ฒฐ๊ณผ๋ฅผ ๋ณด์ฌ์ค๋๋ค.\n"
+"\t๋ํ <i>์์ฑ ๊ฒ์</i> ํญ์์ ์คํธ๋กฑ ํ์ ๋ฐฉ์์ผ๋ก ๋ณด์ฌ์ค๋๋ค.\n"
+"\n"
+"์๋ฒฝํ ๋ด์ฉ์ ์์ธํ ์ดํด๋ณด์๋ ค๋ฉด \"๋ฃจ์ฌ ๊ฒ์ ๋ฌธ๋ฒ\"์ ์น์์ ์ฐพ์๋ณด์ธ์."
+
+#. *****************************************************************************
+#. * Name
+#. * on_attributes_intro_clicked
+#. *
+#. * Synopsis
+#. * #include "gui/search_dialog.h"
+#. *
+#. * void on_attributes_intro_clicked(GtkToggleButton *button,
+#. * gpointer user_data)
+#. *
+#. * Description
+#. *
+#. *
+#. * Return value
+#. * void
+#.
+#: ../src/gnome2/search_dialog.c:900
+msgid ""
+"<b>Attribute-based searches</b>\n"
+"Searches for content contained in markup outside the main text. Attributes "
+"are footnotes, Strong's numbers, and morphological symbols.\n"
+"\n"
+"Be aware that most such searches can now be done faster via optimized "
+"\"lucene\" searches using keyword qualifiers.\n"
+"\n"
+"To use attribute searches, you must select the appropriate button on the "
+"<i>Attribute Search</i> tab.\n"
+"* Footnote text is searched just like regular text.\n"
+"* Strong's words are specified as a prefix letter H or G (Hebrew or Greek) "
+"and the numeric word identifier, e.g. G2316 to find \"ฮธฮตแฝนฯ\" (\"God\").\n"
+"* Morphological tags are identified literally, e.g. N-ASF for \"noun, "
+"accusative singular feminine\" -- see the Robinson module for details."
+msgstr ""
+"<b>์์ฑ ๊ธฐ๋ฐ ๊ฒ์</b>\n"
+"๋ณธ์ง์ ์ธ ๋ด์ฉ ๋ฐ์ ์๋ ๋งํฌ์
์ ์ผ๋ถ ๋ด์ฉ์ด ์๋๋ฐ ์ด ๋ด์ฉ์ ๊ฒ์ํฉ๋๋ค. ์"
+"์ฑ์๋ ๊ฐ์ฃผ, ์คํธ๋กฑ ๋ฒํธ, ์ดํ๋ก ์ ๊ธฐํธ๊ฐ ์์ต๋๋ค.\n"
+"\n"
+"๋๋ถ๋ถ์ ๊ฒ์ ๊ฒฐ๊ณผ๋ ํค์๋ ๊ฒ์ฆ์๋ก ์ต์ ํ๋ \"๋ฃจ์ฌ\" ๊ฒ์์ด ๋ ๋น ๋ฅผ ์ ์์"
+"์ ์ฐธ๊ณ ํ์ญ์์ค.\n"
+"\n"
+"์์ฑ ๊ฒ์์ ์ฌ์ฉํ๋ ค๋ฉด, <i>์์ฑ ๊ฒ์</i> ํญ์ ์ ์ ํ ๋จ์ถ๋ฅผ ์ ํํด์ผํฉ๋๋ค.\n"
+"* ๊ฐ์ฃผ ๋ด์ฉ์ ์ผ๋ฐ ๋ด์ฉ์ฒ๋ผ ๊ฒ์ํฉ๋๋ค.\n"
+"* \"ฮธฮตแฝนฯ\"(\"God\")๋ฅผ ๊ฒ์ํ๋๋ฐ ์ฌ์ฉํ๋ ์คํธ๋กฑ ๊ธฐํธ์์ ๋ฌธ์(๋จ์ด)๋ H ๋"
+"๋ G ์ ๋๋ฌธ์(ํฌ๋, ํฌ๋ผ), ๊ทธ๋ฆฌ๊ณ ์๋ณ ์ซ์(์: G2316)๋ฅผ ์ฌ์ฉํฉ๋๋ค.\n"
+"* ์ดํ๋ก ์ ํ๊ทธ๋ ๋ฌธ์ฅ์ ๋จ์ด์ฒ๋ผ ์ธ์ํฉ๋๋ค. ์๋ฅผ ๋ค๋ฉด, N-ASF๋\"noun, "
+"accusative singular feminine\" ์
๋๋ค. ์์ธํ ์ฌ์ฉ๋ฒ์ Robinson ๋ชจ๋์ ์ดํด๋ณด"
+"์ญ์์ค."
+
+#: ../src/gnome2/search_dialog.c:1195
+msgid "Module is neither Bible nor commentary"
+msgstr "๋ชจ๋์ด ์ฑ๊ฒฝ ๋๋ ํด์ค์ด ์๋๋๋ค."
+
+#: ../src/gnome2/search_dialog.c:1213 ../src/gnome2/sidebar.c:973
+msgid "BibleSync is not active for transmit."
+msgstr "BibleSync์์ ์ ์ก ์ค๋น๋ฅผ ํ์ง ์์์ต๋๋ค."
+
+#: ../src/gnome2/search_sidebar.c:215
+msgid ""
+"This is an inclusive (\"AND\") search:\n"
+"Find matches showing all words."
+msgstr ""
+"ํฌํจ(\"AND\") ๊ฒ์ ๋ฐฉ์์
๋๋ค:\n"
+"๋ชจ๋ ๋จ์ด๊ฐ ๋ค์ด์๋ ๊ฒฐ๊ณผ๋ฅผ ์ฐพ์ต๋๋ค."
+
+#: ../src/gnome2/search_sidebar.c:227
+msgid "_Open Advanced Search"
+msgstr "๊ณ ๊ธ ๊ฒ์ ์ด๊ธฐ(_O)"
+
+#: ../src/gnome2/search_sidebar.c:232
+msgid "Open the separate Advanced Search dialog."
+msgstr "๊ณ ๊ธ ๊ฒ์ ๋ํ์์๋ฅผ ๋ฐ๋ก ์ฝ๋๋ค."
+
+#: ../src/gnome2/search_sidebar.c:248
+msgid "Search Module"
+msgstr "๋ชจ๋ ๊ฒ์"
+
+#: ../src/gnome2/search_sidebar.c:285
+msgid "Search Type"
+msgstr "๊ฒ์ ํ์"
+
+#: ../src/gnome2/search_sidebar.c:298 ../ui/search-dialog.glade.h:39
+#: ../ui/search-dialog.gtkbuilder.h:39
+msgid "Multi word"
+msgstr "์ฌ๋ฌ ๋จ์ด ์ผ์น"
+
+#: ../src/gnome2/search_sidebar.c:307 ../ui/search-dialog.glade.h:41
+#: ../ui/search-dialog.gtkbuilder.h:41
+msgid "Regular expression"
+msgstr "์ ๊ท ํํ์"
+
+#: ../src/gnome2/search_sidebar.c:314 ../ui/search-dialog.glade.h:43
+#: ../ui/search-dialog.gtkbuilder.h:43
+msgid "Exact phrase"
+msgstr "์ด๊ตฌ ์ผ์น"
+
+#: ../src/gnome2/search_sidebar.c:330
+msgid "Search Options"
+msgstr "๊ฒ์ ์ต์
"
+
+#: ../src/gnome2/search_sidebar.c:343 ../ui/search-dialog.glade.h:49
+#: ../ui/search-dialog.gtkbuilder.h:49
+msgid "Match case"
+msgstr "๋์๋ฌธ์ ์ผ์น"
+
+#: ../src/gnome2/search_sidebar.c:359
+msgid "Search Scope"
+msgstr "๊ฒ์ ๋ฒ์"
+
+#: ../src/gnome2/search_sidebar.c:372
+msgid "No scope"
+msgstr "๋ฒ์ ์์"
+
+#: ../src/gnome2/search_sidebar.c:381
+msgid "Use bounds"
+msgstr "๋ฒ์ ์ฌ์ฉ"
+
+#: ../src/gnome2/search_sidebar.c:389
+msgid "Last search"
+msgstr "๋ง์ง๋ง ๊ฒ์"
+
+#: ../src/gnome2/search_sidebar.c:406
+msgid "Bounds"
+msgstr "๋ฒ์"
+
+#: ../src/gnome2/search_sidebar.c:421 ../src/gnome2/search_sidebar.c:453
+msgid "Lower"
+msgstr "์๋๋ก"
+
+#: ../src/gnome2/search_sidebar.c:433 ../src/gnome2/search_sidebar.c:460
+msgid "Upper"
+msgstr "์๋ก"
+
+#: ../src/gnome2/sidebar.c:834
+msgid "Open module in editor?"
+msgstr "ํธ์ง๊ธฐ์์ ๋ชจ๋์ ์ฌ์๊ฒ ์ต๋๊น?"
+
+#: ../src/gnome2/sidebar.c:835
+msgid "If no, it will open for display only."
+msgstr "๊ทธ๋ ์ง ์์ผ๋ฉด, ๋์คํ๋ ์ด๋ง ์ฝ๋๋ค."
+
+#: ../src/gnome2/sidebar.c:934
+msgid "Paste verse references"
+msgstr "์ ์ฐธ์กฐ ๋ถ์ฌ๋ฃ๊ธฐ"
+
+#: ../src/gnome2/sidebar.c:936
+msgid "List:"
+msgstr "๋ชฉ๋ก:"
+
+#: ../src/gnome2/sidebar.c:1507 ../src/gnome2/sidebar.c:1545
+msgid "Search"
+msgstr "๊ฒ์"
+
+#: ../src/gnome2/sidebar_dialog.c:170 ../src/gnome2/sidebar_dialog.c:180
+msgid "Sidebar"
+msgstr "๊ฐ์ฅ์๋ฆฌ ํ์์ค"
+
+#: ../src/gnome2/splash.c:403
+msgid "Powered by the SWORD Project"
+msgstr "SWORD ํ๋ก์ ํธ์์ ๊ธฐ์ ์ ๊ณตํจ"
+
+#: ../src/gnome2/tabbed_browser.c:358
+msgid "Can't create tabs dir."
+msgstr "ํญ ๋๋ ํฐ๋ฆฌ๋ฅผ ๋ง๋ค ์ ์์ต๋๋ค."
+
+#: ../src/gnome2/treekey-editor.c:136 ../src/gnome2/treekey-editor.c:193
+#: ../src/gnome2/treekey-editor.c:291
+msgid "Prayer List/Journal Item"
+msgstr "๊ธฐ๋ ๋ชฉ๋ก/๋ฌต์ ์ผ๊ธฐ ํญ๋ชฉ"
+
+#: ../src/gnome2/treekey-editor.c:137 ../src/gnome2/treekey-editor.c:194
+#: ../src/gnome2/treekey-editor.c:292
+msgid "New name"
+msgstr "์ ์ด๋ฆ"
+
+#: ../src/gnome2/treekey-editor.c:252
+msgid "Remove the selected item"
+msgstr "์ ํํ ํญ๋ชฉ ์ ๊ฑฐ"
+
+#: ../src/gnome2/utilities.c:86
+msgid "January"
+msgstr "1์"
+
+#: ../src/gnome2/utilities.c:87
+msgid "February"
+msgstr "2์"
+
+#: ../src/gnome2/utilities.c:88
+msgid "March"
+msgstr "3์"
+
+#: ../src/gnome2/utilities.c:89
+msgid "April"
+msgstr "4์"
+
+#: ../src/gnome2/utilities.c:90
+msgid "May"
+msgstr "5์"
+
+#: ../src/gnome2/utilities.c:91
+msgid "June"
+msgstr "6์"
+
+#: ../src/gnome2/utilities.c:92
+msgid "July"
+msgstr "7์"
+
+#: ../src/gnome2/utilities.c:93
+msgid "August"
+msgstr "8์"
+
+#: ../src/gnome2/utilities.c:94
+msgid "September"
+msgstr "9์"
+
+#: ../src/gnome2/utilities.c:94
+msgid "October"
+msgstr "10์"
+
+#: ../src/gnome2/utilities.c:94
+msgid "November"
+msgstr "11์"
+
+#: ../src/gnome2/utilities.c:94
+msgid "December"
+msgstr "12์"
+
+#: ../src/gnome2/utilities.c:2038
+msgid ""
+"An image file's size could not be determined.\n"
+"Xiphos cannot resize images to fit window."
+msgstr ""
+"๊ทธ๋ฆผ ํ์ผ์ ํฌ๊ธฐ๋ฅผ ์ ์ ์์ต๋๋ค.\n"
+"xiphos์์ ์ฐฝ ํฌ๊ธฐ์ ๋ง์ถฐ ๊ทธ๋ฆผ์ ํฌ๊ธฐ์กฐ์ ํ ์ ์์ต๋๋ค."
+
+#: ../src/main/biblesync_glue.cc:104
+msgid ""
+"Mismatched packet\n"
+"\n"
+msgstr ""
+"์ผ์นํ์ง ์๋ ํจํท\n"
+"\n"
+
+#: ../src/main/biblesync_glue.cc:118
+msgid ""
+"Presence announcement:\n"
+"\n"
+msgstr ""
+"์กด์ฌ ์๋ฆผ:\n"
+"\n"
+
+#: ../src/main/biblesync_glue.cc:128
+msgid ""
+"Navigation packet:\n"
+"\n"
+msgstr ""
+"ํ์ ํจํท:\n"
+"\n"
+
+#: ../src/main/biblesync_glue.cc:179
+msgid "Unknown module "
+msgstr "์ ์ ์๋ ๋ชจ๋"
+
+#: ../src/main/biblesync_glue.cc:179
+msgid ""
+".\n"
+"Navigated indirectly using verse list."
+msgstr ""
+".\n"
+"์ ๋ชฉ๋ก์ผ๋ก ๊ฐ์ ํ์ํ์ต๋๋ค."
+
+#: ../src/main/biblesync_glue.cc:255
+msgid "ERROR: unknown BibleSync indicator: "
+msgstr "์ค๋ฅ: ์ ์ ์๋ BibleSync ํ์์: "
+
+#: ../src/main/biblesync_glue.cc:255
+msgid "Other indications are:"
+msgstr "๋ค๋ฅธ ํ์:"
+
+#: ../src/main/biblesync_glue.cc:530
+msgid "Check the box to listen to this Speaker"
+msgstr "์ด ๋
์์์ ์ฝ๊ธฐ๋ฅผ ๋ค์ผ๋ ค๋ฉด ์์์ ํ์ํ์ญ์์ค"
+
+#: ../src/main/biblesync_glue.cc:543
+msgid "Available Speakers"
+msgstr "์กด์ฌํ๋ ๋
์์"
+
+#: ../src/main/biblesync_glue.cc:552
+msgid "D/I"
+msgstr "D/I"
+
+#: ../src/main/biblesync_glue.cc:562
+msgid "Last navigation was Direct or Indirect"
+msgstr "๋ง์ง๋ง ํ์์ ์ง๊ฐ์ ์ ์ธ ๋ฐฉ์์
๋๋ค"
+
+#: ../src/main/biblesync_glue.cc:571
+msgid "Last Navigation"
+msgstr "๋ง์ง๋ง ํ์"
+
+#: ../src/main/biblesync_glue.cc:590
+msgid "UUID"
+msgstr "UUID"
+
+#: ../src/main/biblesync_glue.cc:610
+msgid "IP address: "
+msgstr "IP ์ฃผ์: "
+
+#: ../src/main/biblesync_glue.cc:610
+msgid ""
+"\n"
+"Application: "
+msgstr ""
+"\n"
+"ํ๋ก๊ทธ๋จ: "
+
+#: ../src/main/biblesync_glue.cc:610
+msgid ""
+"\n"
+"Device: "
+msgstr ""
+"\n"
+"์ฅ์น: "
+
+#: ../src/main/biblesync_glue.cc:610
+msgid ""
+"\n"
+"UUID: "
+msgstr ""
+"\n"
+"UUID"
+
+#: ../src/main/display.cc:89
+msgid ""
+"<br/><br/><center><i>This module has no content at this point.</i></center>"
+msgstr "<br/><br/><center><i>์ด ๋ชจ๋์ ํ์ฌ ๋ด์ฉ์ด ์์ต๋๋ค</i></center>"
+
+#: ../src/main/display.cc:249
+#, c-format
+msgid ""
+"Improperly encoded personal annotation label:\n"
+"'%s'"
+msgstr ""
+"๊ฐ์ธ ์ฃผ์์ ์ฌ๋ฒ๋ฅด์ง ๋ชปํ ๋ฐฉ๋ฒ์ผ๋ก ์ธ์ฝ๋ฉํ์ต๋๋ค:\n"
+"'%s'"
+
+#: ../src/main/display.cc:1115 ../src/main/display.cc:1156
+#: ../src/main/display.cc:1240 ../ui/export-dialog.glade.h:14
+#: ../ui/export-dialog.gtkbuilder.h:13
+msgid "Chapter"
+msgstr "์ฅ"
+
+#: ../src/main/main.c:129
+msgid "Xiphos does not understand more than one argument."
+msgstr "xiphos์์ ํ๋ ์ด์์ ๋งค๊ฐ๋ณ์๋ฅผ ์ธ์ํ ์ ์์ต๋๋ค."
+
+#: ../src/main/main.c:240
+msgid "Initiating HTML"
+msgstr "HTML ์ด๊ธฐํ ์ค"
+
+#: ../src/main/main.c:245
+msgid "Building Interface"
+msgstr "์ธ๋ํ์ด์ค ๋น๋ ์ค"
+
+#: ../src/main/main.c:248
+msgid "Starting Sword"
+msgstr "sword ์์ ์ค"
+
+#: ../src/main/main.c:251
+msgid "Loading Settings"
+msgstr "์ค์ ๋ถ๋ฌ์ค๋ ์ค"
+
+#: ../src/main/main.c:254
+msgid "Displaying Xiphos"
+msgstr "xiphos ์ฐฝ ํ์ ์ค"
+
+#: ../src/main/module_dialogs.cc:186 ../src/main/previewer.cc:100
+msgid "Previewer"
+msgstr "๋ฏธ๋ฆฌ๋ณด๊ธฐ"
+
+#: ../src/main/module_dialogs.cc:240 ../src/main/module_dialogs.cc:344
+#: ../src/main/previewer.cc:188
+msgid "Footnote"
+msgstr "๊ฐ์ฃผ"
+
+#: ../src/main/module_dialogs.cc:246 ../src/main/module_dialogs.cc:349
+#: ../src/main/previewer.cc:198
+msgid "Cross Reference"
+msgstr "๊ต์ฐจ ์ฐธ์กฐ"
+
+#: ../src/main/module_dialogs.cc:252 ../src/main/module_dialogs.cc:266
+#: ../src/main/module_dialogs.cc:354 ../src/main/module_dialogs.cc:366
+#: ../src/main/previewer.cc:203 ../src/main/previewer.cc:221
+msgid "Strongs"
+msgstr "๋ถ๊ท์น ๋ณํ"
+
+#: ../src/main/module_dialogs.cc:258 ../src/main/module_dialogs.cc:277
+#: ../src/main/module_dialogs.cc:359 ../src/main/module_dialogs.cc:376
+#: ../src/main/previewer.cc:208 ../src/main/previewer.cc:227
+msgid "Morphology"
+msgstr "์ดํ๋ก "
+
+#: ../src/main/module_dialogs.cc:986 ../src/main/url.cc:515
+msgid "Back to "
+msgstr "๋์๊ฐ๊ธฐ"
+
+#: ../src/main/parallel_view.cc:61
+msgid "Unknown parallel module: "
+msgstr "์ ์ ์๋ ๋ณ๋ ฌ ๋ชจ๋:"
+
+#: ../src/main/parallel_view.cc:400 ../ui/xi-menus.glade.h:68
+#: ../ui/xi-menus-popup.gtkbuilder.h:47
+msgid "Strong's Numbers"
+msgstr "๋ถ๊ท์น ๋ณํ ์"
+
+#: ../src/main/parallel_view.cc:409 ../ui/search-dialog.glade.h:102
+#: ../ui/search-dialog.gtkbuilder.h:101 ../ui/xi-menus.glade.h:71
+#: ../ui/xi-menus-popup.gtkbuilder.h:50
+msgid "Footnotes"
+msgstr "๊ฐ์ฃผ"
+
+#: ../src/main/parallel_view.cc:418 ../ui/search-dialog.glade.h:99
+#: ../ui/search-dialog.gtkbuilder.h:98 ../ui/xi-menus.glade.h:70
+#: ../ui/xi-menus-popup.gtkbuilder.h:49
+msgid "Morphological Tags"
+msgstr "์ดํ๋ก ์ ํ๊ทธ"
+
+#: ../src/main/parallel_view.cc:427 ../ui/xi-menus.glade.h:76
+#: ../ui/xi-menus-popup.gtkbuilder.h:54
+msgid "Hebrew Vowel Points"
+msgstr "ํ๋ธ๋ฆฌ์ด ๋ชจ์ ๋ถํธ"
+
+#: ../src/main/parallel_view.cc:436 ../ui/xi-menus.glade.h:77
+#: ../ui/xi-menus-popup.gtkbuilder.h:55
+msgid "Hebrew Cantillation"
+msgstr "ํ๋ธ๋ฆฌ์ด ๊ฐ์ฌ"
+
+#: ../src/main/parallel_view.cc:445 ../ui/xi-menus.glade.h:75
+#: ../ui/xi-menus-popup.gtkbuilder.h:53
+msgid "Greek Accents"
+msgstr "๊ทธ๋ฆฌ์ค์ด ๊ฐ์ธ"
+
+#: ../src/main/parallel_view.cc:454 ../ui/xi-menus.glade.h:72
+#: ../ui/xi-menus-popup.gtkbuilder.h:51
+msgid "Cross-references"
+msgstr "๊ต์ฐจ ๋ชฉ๋ก"
+
+#: ../src/main/parallel_view.cc:463 ../ui/xi-menus.glade.h:69
+#: ../ui/xi-menus-popup.gtkbuilder.h:48
+msgid "Lemmas"
+msgstr "๊ธฐ๋ณธํ"
+
+#: ../src/main/parallel_view.cc:472 ../ui/xi-menus.glade.h:66
+#: ../ui/xi-menus-popup.gtkbuilder.h:45
+msgid "Headings"
+msgstr "์ ๋ชฉ"
+
+#: ../src/main/parallel_view.cc:481 ../src/main/parallel_view.cc:574
+#: ../ui/xi-menus.glade.h:86 ../ui/xi-menus-popup.gtkbuilder.h:64
+msgid "Morpheme Segmentation"
+msgstr "ํํ์ ๋ถ๋ฆฌ"
+
+#: ../src/main/parallel_view.cc:494 ../ui/xi-menus.glade.h:67
+#: ../ui/xi-menus-popup.gtkbuilder.h:46
+msgid "Words of Christ in Red"
+msgstr "์ ๊ทธ๋ฆฌ์ค๋ ๊ตฌ์ "
+
+#: ../src/main/parallel_view.cc:503 ../ui/xi-menus.glade.h:78
+#: ../ui/xi-menus-popup.gtkbuilder.h:56
+msgid "Transliteration"
+msgstr "์์ญ"
+
+#: ../src/main/parallel_view.cc:512
+msgid "Textual Variants"
+msgstr "์๋ฌธ ๋ณํ"
+
+#: ../src/main/parallel_view.cc:520 ../ui/xi-menus.glade.h:80
+#: ../ui/xi-menus-popup.gtkbuilder.h:58
+msgid "Primary Reading"
+msgstr "์ 1๋
์"
+
+#: ../src/main/parallel_view.cc:529 ../ui/xi-menus.glade.h:81
+#: ../ui/xi-menus-popup.gtkbuilder.h:59
+msgid "Secondary Reading"
+msgstr "์ 2๋
์"
+
+#: ../src/main/parallel_view.cc:538 ../ui/xi-menus.glade.h:82
+#: ../ui/xi-menus-popup.gtkbuilder.h:60
+msgid "All Readings"
+msgstr "๋ชจ๋ ๋
์"
+
+#: ../src/main/parallel_view.cc:547 ../ui/xi-menus.glade.h:83
+#: ../ui/xi-menus-popup.gtkbuilder.h:61
+msgid "Transliterated Forms"
+msgstr "์์ญ ์์"
+
+#: ../src/main/parallel_view.cc:556 ../ui/xi-menus.glade.h:84
+#: ../ui/xi-menus-popup.gtkbuilder.h:62
+msgid "Enumerations"
+msgstr "๋ชฉ๋ก"
+
+#: ../src/main/parallel_view.cc:565 ../ui/xi-menus.glade.h:85
+#: ../ui/xi-menus-popup.gtkbuilder.h:63
+msgid "Glosses"
+msgstr "ํด์ค ๋ชฉ๋ก"
+
+#: ../src/main/parallel_view.cc:745
+msgid "view context"
+msgstr "๋ทฐ ์ปจํ
์คํธ"
+
+#: ../src/main/prayerlists.cc:107
+msgid "Growth"
+msgstr "์ฑ์"
+
+#: ../src/main/prayerlists.cc:108
+msgid "<b>For Growth</b><br/>"
+msgstr "<b>์ฑ์</b><br/>"
+
+#: ../src/main/prayerlists.cc:109 ../src/main/prayerlists.cc:361
+msgid "Salvation"
+msgstr "๊ตฌ์"
+
+#: ../src/main/prayerlists.cc:110
+msgid "<b>For Salvation</b><br/>"
+msgstr "<b>๊ตฌ์</b><br/>"
+
+#: ../src/main/prayerlists.cc:111 ../src/main/prayerlists.cc:365
+msgid "Health"
+msgstr "๊ฑด๊ฐ"
+
+#: ../src/main/prayerlists.cc:112
+msgid "<b>For Health</b><br/>"
+msgstr "<b>๊ฑด๊ฐ</b><br/>"
+
+#: ../src/main/prayerlists.cc:113
+msgid "Misc"
+msgstr "๊ธฐํ"
+
+#: ../src/main/prayerlists.cc:114
+msgid "<b>Miscellaneous</b><br/>"
+msgstr "<b>๊ธฐํ</b><br/>"
+
+#: ../src/main/prayerlists.cc:122
+msgid "Point x"
+msgstr "x ์ง์ "
+
+#: ../src/main/prayerlists.cc:123
+msgid "<b>(x)</b><br/>"
+msgstr "<b>(x)</b><br/>"
+
+#: ../src/main/prayerlists.cc:124
+msgid "Point y"
+msgstr "y ์ง์ "
+
+#: ../src/main/prayerlists.cc:125
+msgid "<b>(y)</b><br/>"
+msgstr "<b>(y)</b><br/>"
+
+#: ../src/main/prayerlists.cc:126
+msgid "Point z"
+msgstr "z ์ง์ "
+
+#: ../src/main/prayerlists.cc:127
+msgid "<b>(z)</b><br/>"
+msgstr "<b>(z)</b><br/>"
+
+#: ../src/main/prayerlists.cc:135
+msgid "Minor Topic 1"
+msgstr "๋ถ ์ฃผ์ 1"
+
+#: ../src/main/prayerlists.cc:136
+msgid "<b>Subtopic 1</b><br/>"
+msgstr "<b>ํ์ ์ฃผ์ 1</b><br/>"
+
+#: ../src/main/prayerlists.cc:138
+msgid "Minor Topic 2"
+msgstr "๋ถ ์ฃผ์ 2"
+
+#: ../src/main/prayerlists.cc:139
+msgid "<b>Subtopic 2</b><br/>"
+msgstr "<b>ํ์ ์ฃผ์ 2</b><br/>"
+
+#: ../src/main/prayerlists.cc:141
+msgid "Minor Topic 3"
+msgstr "๋ถ ์ฃผ์ 3"
+
+#: ../src/main/prayerlists.cc:142
+msgid "<b>Subtopic 3</b><br/>"
+msgstr "<b>ํ์ ์ฃผ์ 3</b><br/>"
+
+#: ../src/main/prayerlists.cc:144
+msgid "Minor Topic 4"
+msgstr "๋ถ ์ฃผ์ 4"
+
+#: ../src/main/prayerlists.cc:145
+msgid "<b>Subtopic 4</b><br/>"
+msgstr "<b>ํ์ ์ฃผ์ 4</b><br/>"
+
+#: ../src/main/prayerlists.cc:229
+msgid "Name for new prayer list or journal"
+msgstr "์ ๊ธฐ๋ ๋ชฉ๋ก ๋๋ ๋ฌต์ ์ผ๊ธฐ์ ์ด๋ฆ"
+
+#: ../src/main/prayerlists.cc:257
+msgid "Xiphos finds that prayer list already."
+msgstr "xiphos์์ ์ด๋ฏธ ๊ธฐ๋ ๋ชฉ๋ก์ ์ฐพ์์ต๋๋ค."
+
+#. this one matters.
+#: ../src/main/prayerlists.cc:269
+#, c-format
+msgid ""
+"Xiphos cannot create module's path:\n"
+"%s"
+msgstr ""
+"xiphos์์ ๋ชจ๋ ๊ฒฝ๋ก๋ฅผ ๋ง๋ค ์ ์์ต๋๋ค:\n"
+"%s"
+
+#: ../src/main/prayerlists.cc:308
+msgid "A basic prayer list. \\par\\par Module created by Xiphos."
+msgstr "๊ธฐ๋ณธ ๊ธฐ๋ ๋ชฉ๋ก. \\par\\par xiphos๊ฐ ๋ง๋ ๋ชจ๋์."
+
+#: ../src/main/prayerlists.cc:309
+msgid "BasicPrayerList"
+msgstr "๊ธฐ๋ณธ ๊ธฐ๋ ๋ชฉ๋ก"
+
+#: ../src/main/prayerlists.cc:322
+msgid "MyPrayerList"
+msgstr "๋ด ๊ธฐ๋ ๋ชฉ๋ก"
+
+#: ../src/main/prayerlists.cc:323
+msgid ""
+"<b>People:</b><br/>Bob<br/>Sam<br/>Sue<br/><br/><b>Church:</b><br/>pews<br/"
+">fellowship<br/>Bibles for missionaries<br/><br/><br/>"
+msgstr ""
+"<b>์ฑ๋:</b><br/>Bob<br/>Sam<br/>Sue<br/><br/><b>๊ตํ:</b><br/>pews<br/"
+">fellowship<br/>Bibles for missionaries<br/><br/><br/>"
+
+#: ../src/main/prayerlists.cc:347
+msgid "A subject-based prayer list. \\par\\par Module created by Xiphos."
+msgstr "์ ๋ชฉ ๊ธฐ๋ฐ ๊ธฐ๋ ๋ชฉ๋ก. \\par\\par xiphos๊ฐ ๋ง๋ ๋ชจ๋์."
+
+#: ../src/main/prayerlists.cc:348
+msgid "SubjectPrayerList"
+msgstr "๊ธฐ๋ ์ ๋ชฉ ๋ชฉ๋ก"
+
+#: ../src/main/prayerlists.cc:362
+msgid "Bob<br/>Sam<br/>Sue<br/>John<br/>"
+msgstr "Bob<br/>Sam<br/>Sue<br/>John<br/>"
+
+#: ../src/main/prayerlists.cc:363
+msgid "Spiritual Growth"
+msgstr "์์ ์ฑ์"
+
+#: ../src/main/prayerlists.cc:364
+msgid "Mike<br/>Steve<br/>"
+msgstr "Mike<br/>Steve<br/>"
+
+#: ../src/main/prayerlists.cc:366
+msgid "Sue<br/>John<br/>"
+msgstr "Sue<br/>John<br/>"
+
+#: ../src/main/prayerlists.cc:390
+msgid "A monthly prayer list. \\par\\par Module created by Xiphos."
+msgstr "์๋ณ ๊ธฐ๋ ๋ชฉ๋ก. \\par\\par xiphos๊ฐ ๋ง๋ ๋ชจ๋์."
+
+#: ../src/main/prayerlists.cc:391
+msgid "MonthlyPrayerList"
+msgstr "์๊ฐ ๊ธฐ๋ ๋ชฉ๋ก"
+
+#: ../src/main/prayerlists.cc:439
+msgid "A daily journal. \\par\\par Module created by Xiphos."
+msgstr "๋งค์ผ ์ ๋. \\par\\par xiphos๊ฐ ๋ง๋ ๋ชจ๋์."
+
+#: ../src/main/prayerlists.cc:440
+msgid "DailyJournal"
+msgstr "๋ฌต์ ์ผ๊ธฐ"
+
+#: ../src/main/prayerlists.cc:501
+msgid "An outlined topic (e.g. sermon). \\par\\par Module created by Xiphos."
+msgstr "์ฃผ์ (์: ์ค๊ต) ์ค๊ณฝ์ก๊ธฐ. \\par\\par xiphos๊ฐ ๋ง๋ ๋ชจ๋์."
+
+#: ../src/main/prayerlists.cc:502
+msgid "OutlinedTopic"
+msgstr "๊ฐ์์ฃผ์ "
+
+#: ../src/main/prayerlists.cc:515
+msgid "Major Topic A"
+msgstr "์ฃผ์ ๊ฐ"
+
+#: ../src/main/prayerlists.cc:516
+msgid "<b>Major Topic A</b><br/>"
+msgstr "<b>์ฃผ์ ๊ฐ</b><br/>"
+
+#: ../src/main/prayerlists.cc:518
+msgid "Major Topic B"
+msgstr "์ฃผ์ ๋"
+
+#: ../src/main/prayerlists.cc:519
+msgid "<b>Major Topic B</b><br/>"
+msgstr "<b>์ฃผ์ ๋</b><br/>"
+
+#: ../src/main/prayerlists.cc:521
+msgid "Major Topic C"
+msgstr "์ฃผ์ ๋ค"
+
+#: ../src/main/prayerlists.cc:522
+msgid "<b>Major Topic C</b><br/>"
+msgstr "<b>์ฃผ์ ๋ค</b><br/.>"
+
+#: ../src/main/previewer.cc:193
+msgid "User Annotation"
+msgstr "์ฌ์ฉ์ ์ฃผ์"
+
+#: ../src/main/search_dialog.cc:188
+#, c-format
+msgid "Search result %s: %s"
+msgstr "%s ๊ฒ์ ๊ฒฐ๊ณผ: %s"
+
+#: ../src/main/search_dialog.cc:404
+msgid "Delete Range?"
+msgstr "๋ฒ์๋ฅผ ์ญ์ ํฉ๋๊น?"
+
+#: ../src/main/search_dialog.cc:405
+msgid "Are you sure you want to delete this range?"
+msgstr "์ ๋ง๋ก ์ด ๋ฒ์๋ฅผ ์ญ์ ํ์๊ฒ ์ต๋๊น?"
+
+#: ../src/main/search_dialog.cc:618 ../src/main/search_dialog.cc:1021
+#: ../src/main/search_dialog.cc:1024 ../src/main/search_dialog.cc:1044
+#: ../src/main/search_dialog.cc:1047
+msgid "Search: "
+msgstr "๊ฒ์:"
+
+#: ../src/main/search_dialog.cc:1376
+#, c-format
+msgid ""
+"%s:\n"
+"No such module is installed.\n"
+"%s"
+msgstr ""
+"%s:\n"
+"์ค์นํ ๋ชจ๋์ด ์์ต๋๋ค.\n"
+"%s"
+
+#: ../src/main/search_dialog.cc:1378
+msgid "Please adjust the module list."
+msgstr "๋ชจ๋ ๋ชฉ๋ก์ ์กฐ์ ํ์ญ์์ค."
+
+#: ../src/main/search_dialog.cc:1394
+#, c-format
+msgid "No fast-search index exists for %s.%s%s"
+msgstr "%s.%s%s์ ๋น ๊ณ ์ ๊ฒ์ ์ธ๋ฑ์ค๊ฐ ์์ต๋๋ค"
+
+#: ../src/main/search_dialog.cc:1396
+msgid ""
+"\n"
+"Search on this module is now `multi word'."
+msgstr ""
+"\n"
+"์ด ๋ชจ๋ ๊ฒ์ ๋ฐฉ์์ ์ด์ `์ฌ๋ฌ ๋จ์ด'๋ฅผ ์ฌ์ฉํ ๋ฐฉ์์
๋๋ค."
+
+#: ../src/main/search_dialog.cc:1397
+msgid ""
+"\n"
+"See the Module Manager, Maintenance pane."
+msgstr ""
+"\n"
+"๊ด๋ฆฌ ์ฐฝ์ ๋ชจ๋ ๊ด๋ฆฌ์๋ฅผ ์ฐธ๊ณ ํ์ญ์์ค."
+
+#: ../src/main/search_dialog.cc:1458
+msgid "Search finished"
+msgstr "๊ฒ์์ด ๋๋ฌ์ต๋๋ค"
+
+#: ../src/main/search_sidebar.cc:88
+msgid "matches"
+msgstr "์ผ์น ๊ฑด์"
+
+#: ../src/main/search_sidebar.cc:203
+msgid "There is no commentary module."
+msgstr "ํด์ค ๋ชจ๋์ด ์์ต๋๋ค."
+
+#: ../src/main/settings.c:106
+msgid "$HOME is not set!"
+msgstr "$HOME์ ์ค์ ํ์ง ์์์ต๋๋ค"
+
+#: ../src/main/settings.c:120
+#, c-format
+msgid "Xiphos can not create directory "
+msgstr "xiphos์์ ๋๋ ํฐ๋ฆฌ๋ฅผ ๋ง๋ค ์ ์์ต๋๋ค"
+
+#: ../src/main/settings.c:134 ../src/main/settings.c:144
+#: ../src/main/settings.c:155
+msgid "can not create "
+msgstr "๋ง๋ค ์ ์์ต๋๋ค"
+
+#: ../src/main/settings.c:187
+msgid ""
+"Empty settings file -- backup recovery attempted.\n"
+"Some information may have been lost."
+msgstr ""
+"์ค์ ํ์ผ์ด ๋น์์ต๋๋ค -- ๋ฐฑ์
๋ณต๊ตฌ๋ฅผ ์๋ํ์ต๋๋ค.\n"
+"์ผ๋ถ ์ ๋ณด๋ฅผ ์์ ์ ์์ต๋๋ค."
+
+#: ../src/main/settings.c:190
+msgid "Empty settings file -- no backup?!? Information lost!"
+msgstr "์ค์ ํ์ผ์ด ๋น์์ต๋๋ค -- ๋ฐฑ์
์ด ์๋์?!? ์ ๋ณด๊ฐ ์์ต๋๋ค!"
+
+#: ../src/main/settings.c:217
+msgid ""
+"There are no Bibles installed.\n"
+"Evidently, you declined to install any.\n"
+"\n"
+"Without any Bible modules to display,\n"
+"Xiphos cannot proceed,\n"
+"and will now exit."
+msgstr ""
+"์ค์นํ ์ฑ๊ฒฝ์ด ์์ต๋๋ค.\n"
+"๋ถ๋ช
ํ๊ฒ๋ ์ด๋ค ์ฑ๊ฒฝ ๋ชจ๋์ด๋ \n"
+"\n"
+"ํ์ํ ์ฑ๊ฒฝ์ ์ค์น๋ฅผ ๊ฑฐ๋ถํ๊ธฐ ๋๋ฌธ์,\n"
+"xiphos๋ ๊ณ์ ์งํํ ์ ์์ผ๋ฉฐ,\n"
+"๋น ์ ธ๋๊ฐ๊ฒ ์ต๋๋ค."
+
+#: ../src/main/settings.c:223
+msgid "Bible module installation complete."
+msgstr "์ฑ๊ฒฝ ๋ชจ๋ ์ค์น๊ฐ ๋๋ฌ์ต๋๋ค."
+
+#: ../src/main/sidebar.cc:146
+msgid ""
+"Module error: Unusable xref encoding.\n"
+"Please report this, with module & verse"
+msgstr ""
+"๋ชจ๋ ์ค๋ฅ: xref ์ธ์ฝ๋ฉ์ด ๋ฌด์ฉ์ง๋ฌผ์
๋๋ค.\n"
+"๋ชจ๋๊ณผ ํด๋น ์ ์ ๋ฌธ์ ๋ฅผ ๋ณด๊ณ ํ์ญ์์ค"
+
+#: ../src/main/sidebar.cc:411
+msgid "verse"
+msgstr "์ "
+
+#: ../src/main/sidebar.cc:471
+msgid "chapter"
+msgstr "์ฅ"
+
+#: ../src/main/sword.cc:654
+msgid ""
+"Xiphos's file for language\n"
+"abbreviations is missing."
+msgstr ""
+"xiphos ์ธ์ด ์ฝ์ด ํ์ผ์ด\n"
+"๋น ์ก์ต๋๋ค"
+
+#: ../src/main/sword.cc:660
+msgid ""
+"Xiphos's language abbreviation\n"
+"file cannot be opened."
+msgstr ""
+"xiphos ์ธ์ด ์ฝ์ด ํ์ผ์\n"
+"์ด ์ ์์ต๋๋ค"
+
+#: ../src/main/sword.cc:672
+msgid ""
+"Xiphos cannot allocate space\n"
+"for language abbreviations."
+msgstr ""
+"xiphos์์ ์ธ์ด ์ฝ์ด๋ฅผ ์ ์ฅํ \n"
+"๊ณต๊ฐ์ ํ๋ณดํ ์ ์์ต๋๋ค"
+
+#: ../src/main/sword.cc:678
+msgid ""
+"Xiphos cannot read the\n"
+"language abbreviation file."
+msgstr ""
+"xiphos์์ ์ธ์ด ์ฝ์ด ํ์ผ์\n"
+"์ฝ์ ์ ์์ต๋๋ค."
+
+#. either we were given a null sys_locale, or it didn't match anything.
+#: ../src/main/sword.cc:758
+#, c-format
+msgid ""
+"No matching locale found for `%s'.\n"
+"%s"
+msgstr ""
+"`%s'์ ์ผ์นํ๋ ๋ก์บ์ด ์์ต๋๋ค.\n"
+"%s"
+
+#: ../src/main/sword.cc:760
+msgid "Book names and menus may not be translated."
+msgstr "์ฑ
์ด๋ฆ๊ณผ ๋ฉ๋ด๋ ๋ฒ์ญํ๋ฉด ์๋ฉ๋๋ค."
+
+#: ../src/main/sword.cc:1114 ../src/main/sword.cc:1283
+#, c-format
+msgid ""
+"Module %s has companion modules:\n"
+"%s.\n"
+"Would you like to open these as well?%s"
+msgstr ""
+"%s ๋ชจ๋์ ๋ถ๋ก ๋ชจ๋์
๋๋ค:\n"
+"%s.\n"
+"์ด ๋ชจ๋ ์ญ์ ๋ง์ฐฌ๊ฐ์ง๋ก ์ฌ์๊ฒ ์ต๋๊น?%s"
+
+#: ../src/main/sword.cc:1118 ../src/main/sword.cc:1287
+msgid ""
+"\n"
+"\n"
+"The first will open in the main window\n"
+...
[truncated message content] |