Ubuntu (new upstream) gtksourceview 1.8.2-0ubuntu1



This e-mail has been sent due to an upload to Ubuntu of a new upstream
version which still contains Ubuntu changes.  It contains the difference
between the Ubuntu version and the equivalent base version in Debian, note
that this difference may include the upstream changes.
Format: 1.7
Date: Wed, 13 Dec 2006 13:58:08 +0100
Source: gtksourceview
Binary: libgtksourceview-dev libgtksourceview-common libgtksourceview1.0-0 libgtksourceview-doc
Architecture: source
Version: 1.8.2-0ubuntu1
Distribution: feisty
Urgency: low
Maintainer: Andrew Lau <netsnipe users sourceforge net>
Changed-By: Daniel Holbach <daniel holbach ubuntu com>
Description: 
 libgtksourceview-common - common files for the GTK+ syntax highlighting widget
 libgtksourceview-dev - development files for the GTK+ syntax highlighting widget
 libgtksourceview-doc - documentation for the GTK+ syntax highlighting widget
 libgtksourceview1.0-0 - shared libraries for the GTK+ syntax highlighting widget
Changes: 
 gtksourceview (1.8.2-0ubuntu1) feisty; urgency=low
 .
   * New upstream release:
     - Fixed bug "Errors in Java/Verilog syntax files" (Malone: #75393)
     - Fixed bug "language.dtd needs more comments"
     - Added a RNG schema for the .lang file format
     - Fixes bug "allow fullstop in xml tag highlighting"
     - Updated translations
Files: 
 05817875a8bb6b333a1ff95b28979267 1614 libs optional gtksourceview_1.8.2-0ubuntu1.dsc
 1b890f9f03def32c29acf5b7c97def7a 6879 libs optional gtksourceview_1.8.2-0ubuntu1.diff.gz
diff -pruN 1.8.1-2/aclocal.m4 1.8.2-0ubuntu1/aclocal.m4
--- 1.8.1-2/aclocal.m4	2006-10-01 18:52:06.000000000 +0100
+++ 1.8.2-0ubuntu1/aclocal.m4	2006-12-13 12:03:05.000000000 +0000
@@ -1267,8 +1267,10 @@ glib_DEFUN([GLIB_DEFINE_LOCALEDIR],
 [glib_REQUIRE([GLIB_GNU_GETTEXT])dnl
 glib_save_prefix="$prefix"
 glib_save_exec_prefix="$exec_prefix"
+glib_save_datarootdir="$datarootdir"
 test "x$prefix" = xNONE && prefix=$ac_default_prefix
 test "x$exec_prefix" = xNONE && exec_prefix=$prefix
+datarootdir=`eval echo "${datarootdir}"`
 if test "x$CATOBJEXT" = "x.mo" ; then
   localedir=`eval echo "${libdir}/locale"`
 else
@@ -1276,6 +1278,7 @@ else
 fi
 prefix="$glib_save_prefix"
 exec_prefix="$glib_save_exec_prefix"
+datarootdir="$glib_save_datarootdir"
 AC_DEFINE_UNQUOTED($1, "$localedir",
   [Define the location where the catalogs will be installed])
 ])
@@ -1624,7 +1627,30 @@ AC_PATH_PROG(INTLTOOL_XGETTEXT, xgettext
 
 # Substitute ALL_LINGUAS so we can use it in po/Makefile
 AC_SUBST(ALL_LINGUAS)
-    
+
+# Set DATADIRNAME correctly if it is not set yet
+# (copied from glib-gettext.m4)
+if test -z "$DATADIRNAME"; then
+  AC_TRY_LINK(, [extern int _nl_msg_cat_cntr;
+                 return _nl_msg_cat_cntr],
+    [DATADIRNAME=share],
+    [case $host in
+    *-*-solaris*)
+    dnl On Solaris, if bind_textdomain_codeset is in libc,
+    dnl GNU format message catalog is always supported,
+    dnl since both are added to the libc all together.
+    dnl Hence, we'd like to go with DATADIRNAME=share
+    dnl in this case.
+    AC_CHECK_FUNC(bind_textdomain_codeset,
+      [DATADIRNAME=share], [DATADIRNAME=lib])
+    ;;
+    *)
+    [DATADIRNAME=lib]
+    ;;
+    esac])
+fi
+AC_SUBST(DATADIRNAME)
+
 IT_PO_SUBDIR([po])
 
 dnl The following is very similar to
diff -pruN 1.8.1-2/ChangeLog 1.8.2-0ubuntu1/ChangeLog
--- 1.8.1-2/ChangeLog	2006-10-01 18:33:57.000000000 +0100
+++ 1.8.2-0ubuntu1/ChangeLog	2006-12-13 12:01:54.000000000 +0000
@@ -1,3 +1,47 @@
+=== gtksourceview 1.8.2 ===
+
+2006-12-13  Paolo Maggi  <paolo gnome org>
+
+	* gtksourceview/configure.in:
+	* gtksourceview/README:
+	* gtksourceview/NEWS:
+
+	release 1.8.2
+	
+2006-12-11  Paolo Maggi  <paolo gnome org>
+
+	Fixes bug #375515 â?? PATCH: allow fullstop in xml tag highlighting
+	
+	* gtksourceview/language-specs/xml.lang: allow fullstop in XML tags
+	and attribute names. Patch by Carey O'Shea <carey internode on net>
+
+2006-12-11  Paolo Maggi  <paolo gnome org>
+
+	* gtksourceview/language-specs/language.rng: first try to a RNG schema
+	for the .lang file format
+	
+	* gtksourceview/language-specs/Makefile.am: distribute language.rng
+
+2006-12-11  Paolo Maggi  <paolo gnome org>
+
+	Fixes bug #380996 â?? language.dtd needs more comments
+	
+	* gtksourceview/language-specs/language.dtd: rewritten and documented,
+	based on a patch by 
+	Leonardo Ferreira Fontenelle <leo fontenelle gmail com>
+	
+	* gtksourceview/language-specs/R.lang:
+	* gtksourceview/language-specs/nemerle.lang:
+	* gtksourceview/language-specs/pascal.lang: fixed to be valid according
+	to the new DTD
+
+2006-10-14  Paolo Borelli  <pborelli katamail com>
+
+	* gtksourceview/language-specs/java.lang:
+	* gtksourceview/language-specs/verilog.lang:
+
+	Add some missing keywords. Bug #360495, patch by Jeff Walden.
+
 === gtksourceview 1.8.1 ===
 
 2006-09-04  Paolo Maggi  <paolo gnome org>
diff -pruN 1.8.1-2/configure 1.8.2-0ubuntu1/configure
--- 1.8.1-2/configure	2006-10-01 18:52:10.000000000 +0100
+++ 1.8.2-0ubuntu1/configure	2006-12-13 12:03:09.000000000 +0000
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.59 for gtksourceview 1.8.1.
+# Generated by GNU Autoconf 2.59 for gtksourceview 1.8.2.
 #
 # Report bugs to <http://bugzilla.gnome.org/enter_bug.cgi?product=gtksourceview>.
 #
@@ -423,8 +423,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
 # Identity of this package.
 PACKAGE_NAME='gtksourceview'
 PACKAGE_TARNAME='gtksourceview'
-PACKAGE_VERSION='1.8.1'
-PACKAGE_STRING='gtksourceview 1.8.1'
+PACKAGE_VERSION='1.8.2'
+PACKAGE_STRING='gtksourceview 1.8.2'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=gtksourceview'
 
 ac_unique_file="gtksourceview/gtksourcebuffer.h"
@@ -465,7 +465,7 @@ ac_includes_default="\
 # include <unistd.h>
 #endif"
 
-ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar ACLOCAL_AMFLAGS MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL INTLTOOL_DESKTOP_RULE INTLTOOL_DIRECTORY_RULE INTLTOOL_KEYS_RULE INTLTOOL_PROP_RULE INTLTOOL_OAF_RULE INTLTOOL_PONG_RULE INTLTOOL_SERVER_RULE INTLTOOL_SHEET_RULE INTLTOOL_SOUNDLIST_RULE INTLTOOL_UI_RULE INTLTOOL_XAM_RULE INTLTOOL_KBD_RULE INTLTOOL_XML_RULE INTLTOOL_XML_NOMERGE_RULE INTLTOOL_CAVES_RULE INTLTOOL_SCHEMAS_RULE INTLTOOL_THEME_RULE INTLTOOL_SERVICE_RULE INTLTOOL_EXTRACT INTLTOOL_MERGE INTLTOOL_UPDATE INTLTOOL_PERL INTLTOOL_ICONV INTLTOOL_MSGFMT INTLTOOL_MSGMERGE INTLTOOL_XGETTEXT ALL_LINGUAS GTK_REQUIRED_VERSION GNOME_VFS_REQUIRED_VERSION LIBXML_REQUIRED_VERSION GNOME_PRINT_REQUIRED_VERSION GLIB_GENMARSHAL GLIB_MKENUMS WARN_CFLAGS DEPRECATED_FLAGS PKG_CONFIG ac_pt_PKG_CONFIG DEP_CFLAGS DEP_LIBS HAVE_GNOMEPRINT_TRUE HAVE_GNOMEPRINT_FALSE GNOMEPRINT_CFLAGS GNOMEPRINT_LIBS BUILD_GNU_REGEX_TRUE BUILD_GNU_REGEX_FALSE BUILD_TESTS_TRUE BUILD_TESTS_FALSE TESTS_CFLAGS TESTS_LIBS GETTEXT_PACKAGE USE_NLS MSGFMT GMSGFMT XGETTEXT CATALOGS CATOBJEXT DATADIRNAME GMOFILES INSTOBJEXT INTLLIBS PO_IN_DATADIR_TRUE PO_IN_DATADIR_FALSE POFILES POSUB MKINSTALLDIRS HTML_DIR ENABLE_GTK_DOC_TRUE ENABLE_GTK_DOC_FALSE GTK_DOC_USE_LIBTOOL_TRUE GTK_DOC_USE_LIBTOOL_FALSE LIBOBJS LTLIBOBJS'
+ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS INSTALL_PROGRAM INSTALL_SCRIPT INSTALL_DATA CYGPATH_W PACKAGE VERSION ACLOCAL AUTOCONF AUTOMAKE AUTOHEADER MAKEINFO install_sh STRIP ac_ct_STRIP INSTALL_STRIP_PROGRAM mkdir_p AWK SET_MAKE am__leading_dot AMTAR am__tar am__untar ACLOCAL_AMFLAGS MAINTAINER_MODE_TRUE MAINTAINER_MODE_FALSE MAINT CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT DEPDIR am__include am__quote AMDEP_TRUE AMDEP_FALSE AMDEPBACKSLASH CCDEPMODE am__fastdepCC_TRUE am__fastdepCC_FALSE build build_cpu build_vendor build_os host host_cpu host_vendor host_os EGREP LN_S ECHO AR ac_ct_AR RANLIB ac_ct_RANLIB CPP CXX CXXFLAGS ac_ct_CXX CXXDEPMODE am__fastdepCXX_TRUE am__fastdepCXX_FALSE CXXCPP F77 FFLAGS ac_ct_F77 LIBTOOL INTLTOOL_DESKTOP_RULE INTLTOOL_DIRECTORY_RULE INTLTOOL_KEYS_RULE INTLTOOL_PROP_RULE INTLTOOL_OAF_RULE INTLTOOL_PONG_RULE INTLTOOL_SERVER_RULE INTLTOOL_SHEET_RULE INTLTOOL_SOUNDLIST_RULE INTLTOOL_UI_RULE INTLTOOL_XAM_RULE INTLTOOL_KBD_RULE INTLTOOL_XML_RULE INTLTOOL_XML_NOMERGE_RULE INTLTOOL_CAVES_RULE INTLTOOL_SCHEMAS_RULE INTLTOOL_THEME_RULE INTLTOOL_SERVICE_RULE INTLTOOL_EXTRACT INTLTOOL_MERGE INTLTOOL_UPDATE INTLTOOL_PERL INTLTOOL_ICONV INTLTOOL_MSGFMT INTLTOOL_MSGMERGE INTLTOOL_XGETTEXT ALL_LINGUAS DATADIRNAME GTK_REQUIRED_VERSION GNOME_VFS_REQUIRED_VERSION LIBXML_REQUIRED_VERSION GNOME_PRINT_REQUIRED_VERSION GLIB_GENMARSHAL GLIB_MKENUMS WARN_CFLAGS DEPRECATED_FLAGS PKG_CONFIG ac_pt_PKG_CONFIG DEP_CFLAGS DEP_LIBS HAVE_GNOMEPRINT_TRUE HAVE_GNOMEPRINT_FALSE GNOMEPRINT_CFLAGS GNOMEPRINT_LIBS BUILD_GNU_REGEX_TRUE BUILD_GNU_REGEX_FALSE BUILD_TESTS_TRUE BUILD_TESTS_FALSE TESTS_CFLAGS TESTS_LIBS GETTEXT_PACKAGE USE_NLS MSGFMT GMSGFMT XGETTEXT CATALOGS CATOBJEXT GMOFILES INSTOBJEXT INTLLIBS PO_IN_DATADIR_TRUE PO_IN_DATADIR_FALSE POFILES POSUB MKINSTALLDIRS HTML_DIR ENABLE_GTK_DOC_TRUE ENABLE_GTK_DOC_FALSE GTK_DOC_USE_LIBTOOL_TRUE GTK_DOC_USE_LIBTOOL_FALSE LIBOBJS LTLIBOBJS'
 ac_subst_files=''
 
 # Initialize some variables set by options.
@@ -982,7 +982,7 @@ if test "$ac_init_help" = "long"; then
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures gtksourceview 1.8.1 to adapt to many kinds of systems.
+\`configure' configures gtksourceview 1.8.2 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1048,7 +1048,7 @@ fi
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
-     short | recursive ) echo "Configuration of gtksourceview 1.8.1:";;
+     short | recursive ) echo "Configuration of gtksourceview 1.8.2:";;
    esac
   cat <<\_ACEOF
 
@@ -1207,7 +1207,7 @@ fi
 test -n "$ac_init_help" && exit 0
 if $ac_init_version; then
   cat <<\_ACEOF
-gtksourceview configure 1.8.1
+gtksourceview configure 1.8.2
 generated by GNU Autoconf 2.59
 
 Copyright (C) 2003 Free Software Foundation, Inc.
@@ -1221,7 +1221,7 @@ cat >&5 <<_ACEOF
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by gtksourceview $as_me 1.8.1, which was
+It was created by gtksourceview $as_me 1.8.2, which was
 generated by GNU Autoconf 2.59.  Invocation command line was
 
   $ $0 $@
@@ -1868,7 +1868,7 @@ fi
 
 # Define the identity of the package.
  PACKAGE=gtksourceview
- VERSION=1.8.1
+ VERSION=1.8.2
 
 
 cat >>confdefs.h <<_ACEOF
@@ -19054,6 +19054,161 @@ fi
 # Substitute ALL_LINGUAS so we can use it in po/Makefile
 
 
+# Set DATADIRNAME correctly if it is not set yet
+# (copied from glib-gettext.m4)
+if test -z "$DATADIRNAME"; then
+  cat >conftest.$ac_ext <<_ACEOF
+/* confdefs.h.  */
+_ACEOF
+cat confdefs.h >>conftest.$ac_ext
+cat >>conftest.$ac_ext <<_ACEOF
+/* end confdefs.h.  */
+
+int
+main ()
+{
+extern int _nl_msg_cat_cntr;
+                 return _nl_msg_cat_cntr
+  ;
+  return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+  (eval $ac_link) 2>conftest.er1
+  ac_status=$?
+  grep -v '^ *+' conftest.er1 >conftest.err
+  rm -f conftest.er1
+  cat conftest.err >&5
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); } &&
+	 { ac_try='test -z "$ac_c_werror_flag"
+			 || test ! -s conftest.err'
+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+  (eval $ac_try) 2>&5
+  ac_status=$?
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); }; } &&
+	 { ac_try='test -s conftest$ac_exeext'
+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+  (eval $ac_try) 2>&5
+  ac_status=$?
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); }; }; then
+  DATADIRNAME=share
+else
+  echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+case $host in
+    *-*-solaris*)
+                        echo "$as_me:$LINENO: checking for bind_textdomain_codeset" >&5
+echo $ECHO_N "checking for bind_textdomain_codeset... $ECHO_C" >&6
+if test "${ac_cv_func_bind_textdomain_codeset+set}" = set; then
+  echo $ECHO_N "(cached) $ECHO_C" >&6
+else
+  cat >conftest.$ac_ext <<_ACEOF
+/* confdefs.h.  */
+_ACEOF
+cat confdefs.h >>conftest.$ac_ext
+cat >>conftest.$ac_ext <<_ACEOF
+/* end confdefs.h.  */
+/* Define bind_textdomain_codeset to an innocuous variant, in case <limits.h> declares bind_textdomain_codeset.
+   For example, HP-UX 11i <limits.h> declares gettimeofday.  */
+#define bind_textdomain_codeset innocuous_bind_textdomain_codeset
+
+/* System header to define __stub macros and hopefully few prototypes,
+    which can conflict with char bind_textdomain_codeset (); below.
+    Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
+    <limits.h> exists even on freestanding compilers.  */
+
+#ifdef __STDC__
+# include <limits.h>
+#else
+# include <assert.h>
+#endif
+
+#undef bind_textdomain_codeset
+
+/* Override any gcc2 internal prototype to avoid an error.  */
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+/* We use char because int might match the return type of a gcc2
+   builtin and then its argument prototype would still apply.  */
+char bind_textdomain_codeset ();
+/* The GNU C library defines this for functions which it implements
+    to always fail with ENOSYS.  Some functions are actually named
+    something starting with __ and the normal name is an alias.  */
+#if defined (__stub_bind_textdomain_codeset) || defined (__stub___bind_textdomain_codeset)
+choke me
+#else
+char (*f) () = bind_textdomain_codeset;
+#endif
+#ifdef __cplusplus
+}
+#endif
+
+int
+main ()
+{
+return f != bind_textdomain_codeset;
+  ;
+  return 0;
+}
+_ACEOF
+rm -f conftest.$ac_objext conftest$ac_exeext
+if { (eval echo "$as_me:$LINENO: \"$ac_link\"") >&5
+  (eval $ac_link) 2>conftest.er1
+  ac_status=$?
+  grep -v '^ *+' conftest.er1 >conftest.err
+  rm -f conftest.er1
+  cat conftest.err >&5
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); } &&
+	 { ac_try='test -z "$ac_c_werror_flag"
+			 || test ! -s conftest.err'
+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+  (eval $ac_try) 2>&5
+  ac_status=$?
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); }; } &&
+	 { ac_try='test -s conftest$ac_exeext'
+  { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
+  (eval $ac_try) 2>&5
+  ac_status=$?
+  echo "$as_me:$LINENO: \$? = $ac_status" >&5
+  (exit $ac_status); }; }; then
+  ac_cv_func_bind_textdomain_codeset=yes
+else
+  echo "$as_me: failed program was:" >&5
+sed 's/^/| /' conftest.$ac_ext >&5
+
+ac_cv_func_bind_textdomain_codeset=no
+fi
+rm -f conftest.err conftest.$ac_objext \
+      conftest$ac_exeext conftest.$ac_ext
+fi
+echo "$as_me:$LINENO: result: $ac_cv_func_bind_textdomain_codeset" >&5
+echo "${ECHO_T}$ac_cv_func_bind_textdomain_codeset" >&6
+if test $ac_cv_func_bind_textdomain_codeset = yes; then
+  DATADIRNAME=share
+else
+  DATADIRNAME=lib
+fi
+
+    ;;
+    *)
+    DATADIRNAME=lib
+    ;;
+    esac
+fi
+rm -f conftest.err conftest.$ac_objext \
+      conftest$ac_exeext conftest.$ac_ext
+fi
+
+
 
 
 
@@ -22081,8 +22236,10 @@ echo "${ECHO_T}$LINGUAS" >&6
 
 glib_save_prefix="$prefix"
 glib_save_exec_prefix="$exec_prefix"
+glib_save_datarootdir="$datarootdir"
 test "x$prefix" = xNONE && prefix=$ac_default_prefix
 test "x$exec_prefix" = xNONE && exec_prefix=$prefix
+datarootdir=`eval echo "${datarootdir}"`
 if test "x$CATOBJEXT" = "x.mo" ; then
   localedir=`eval echo "${libdir}/locale"`
 else
@@ -22090,6 +22247,7 @@ else
 fi
 prefix="$glib_save_prefix"
 exec_prefix="$glib_save_exec_prefix"
+datarootdir="$glib_save_datarootdir"
 
 cat >>confdefs.h <<_ACEOF
 #define LOCALEDIR "$localedir"
@@ -22682,7 +22840,7 @@ _ASBOX
 } >&5
 cat >&5 <<_CSEOF
 
-This file was extended by gtksourceview $as_me 1.8.1, which was
+This file was extended by gtksourceview $as_me 1.8.2, which was
 generated by GNU Autoconf 2.59.  Invocation command line was
 
   CONFIG_FILES    = $CONFIG_FILES
@@ -22745,7 +22903,7 @@ _ACEOF
 
 cat >>$CONFIG_STATUS <<_ACEOF
 ac_cs_version="\\
-gtksourceview config.status 1.8.1
+gtksourceview config.status 1.8.2
 configured by $0, generated by GNU Autoconf 2.59,
   with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
 
@@ -23058,6 +23216,7 @@ s,@INTLTOOL_MSGFMT@,$INTLTOOL_MSGFMT,;t 
 s,@INTLTOOL_MSGMERGE@,$INTLTOOL_MSGMERGE,;t t
 s,@INTLTOOL_XGETTEXT@,$INTLTOOL_XGETTEXT,;t t
 s,@ALL_LINGUAS@,$ALL_LINGUAS,;t t
+s,@DATADIRNAME@,$DATADIRNAME,;t t
 s,@GTK_REQUIRED_VERSION@,$GTK_REQUIRED_VERSION,;t t
 s,@GNOME_VFS_REQUIRED_VERSION@,$GNOME_VFS_REQUIRED_VERSION,;t t
 s,@LIBXML_REQUIRED_VERSION@,$LIBXML_REQUIRED_VERSION,;t t
@@ -23087,7 +23246,6 @@ s,@GMSGFMT@,$GMSGFMT,;t t
 s,@XGETTEXT@,$XGETTEXT,;t t
 s,@CATALOGS@,$CATALOGS,;t t
 s,@CATOBJEXT@,$CATOBJEXT,;t t
-s,@DATADIRNAME@,$DATADIRNAME,;t t
 s,@GMOFILES@,$GMOFILES,;t t
 s,@INSTOBJEXT@,$INSTOBJEXT,;t t
 s,@INTLLIBS@,$INTLLIBS,;t t
diff -pruN 1.8.1-2/configure.in 1.8.2-0ubuntu1/configure.in
--- 1.8.1-2/configure.in	2006-10-01 18:33:59.000000000 +0100
+++ 1.8.2-0ubuntu1/configure.in	2006-12-13 12:01:28.000000000 +0000
@@ -3,7 +3,7 @@ dnl Process this file with autoconf to p
 AC_PREREQ(2.53)
 
 # Initialization and versioning
-AC_INIT(gtksourceview, 1.8.1, http://bugzilla.gnome.org/enter_bug.cgi?product=gtksourceview)
+AC_INIT(gtksourceview, 1.8.2, http://bugzilla.gnome.org/enter_bug.cgi?product=gtksourceview)
 AC_CONFIG_SRCDIR([gtksourceview/gtksourcebuffer.h])
 AM_CONFIG_HEADER(config.h)
 
diff -pruN 1.8.1-2/debian/changelog 1.8.2-0ubuntu1/debian/changelog
--- 1.8.1-2/debian/changelog	2006-12-13 15:08:47.000000000 +0000
+++ 1.8.2-0ubuntu1/debian/changelog	2006-12-13 15:08:34.000000000 +0000
@@ -1,3 +1,14 @@
+gtksourceview (1.8.2-0ubuntu1) feisty; urgency=low
+
+  * New upstream release:
+    - Fixed bug "Errors in Java/Verilog syntax files" (Malone: #75393)
+    - Fixed bug "language.dtd needs more comments"
+    - Added a RNG schema for the .lang file format
+    - Fixes bug "allow fullstop in xml tag highlighting"
+    - Updated translations
+
+ -- Daniel Holbach <daniel holbach ubuntu com>  Wed, 13 Dec 2006 13:58:08 +0100
+
 gtksourceview (1.8.1-2) unstable; urgency=low
 
   * Upload to unstable.
diff -pruN 1.8.1-2/docs/reference/html/GtkSourceBuffer.html 1.8.2-0ubuntu1/docs/reference/html/GtkSourceBuffer.html
--- 1.8.1-2/docs/reference/html/GtkSourceBuffer.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/GtkSourceBuffer.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,22 +21,22 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td><a accesskey="n" href="gtksourceview-Searching-in-a-GtkSourceBuffer.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2538329" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2538352" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2568773" class="shortcut">Description</a>
+                  <a href="#id2568794" class="shortcut">Description</a>
                   &#160;|&#160;
-                  <a href="#id2476852" class="shortcut">Object Hierarchy</a>
+                  <a href="#id2476881" class="shortcut">Object Hierarchy</a>
                   &#160;|&#160;
-                  <a href="#id2476883" class="shortcut">Properties</a>
+                  <a href="#id2476912" class="shortcut">Properties</a>
                   &#160;|&#160;
-                  <a href="#id2476964" class="shortcut">Signals</a></nobr></td></tr>
+                  <a href="#id2476993" class="shortcut">Signals</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="GtkSourceBuffer"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2538329"></a><span class="refentrytitle">GtkSourceBuffer</span>
+<a name="id2538352"></a><span class="refentrytitle">GtkSourceBuffer</span>
 </h2>
 <p>GtkSourceBuffer &#8212; Text buffer object for <a href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a></p>
 </td>
@@ -121,7 +121,7 @@ void        <a href="GtkSourceBuffer.htm
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2476852"></a><h2>Object Hierarchy</h2>
+<a name="id2476881"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
 
   GObject
@@ -130,7 +130,7 @@ void        <a href="GtkSourceBuffer.htm
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2476883"></a><h2>Properties</h2>
+<a name="id2476912"></a><h2>Properties</h2>
 <pre class="synopsis">
 
   "<a href="GtkSourceBuffer.html#GtkSourceBuffer--check-brackets">check-brackets</a>"       gboolean              : Read / Write
@@ -141,7 +141,7 @@ void        <a href="GtkSourceBuffer.htm
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2476964"></a><h2>Signals</h2>
+<a name="id2476993"></a><h2>Signals</h2>
 <pre class="synopsis">
 
 "<a href="GtkSourceBuffer.html#GtkSourceBuffer-can-redo">can-redo</a>"  void        user_function      (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *sourcebuffer,
@@ -162,7 +162,7 @@ void        <a href="GtkSourceBuffer.htm
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2568773"></a><h2>Description</h2>
+<a name="id2568794"></a><h2>Description</h2>
 <p>
 The <a href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a> object is the model for <a href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> widgets.
 It extends the <span class="type">GtkTextBuffer</span> object by adding features necessary to
@@ -184,20 +184,20 @@ tag table.
 </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2568881"></a><h2>Details</h2>
+<a name="id2568903"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2568892"></a><h3>
+<a name="id2568914"></a><h3>
 <a name="GtkSourceBuffer-struct"></a>GtkSourceBuffer</h3>
-<a class="indexterm" name="id2568904"></a><pre class="programlisting">typedef struct _GtkSourceBuffer GtkSourceBuffer;</pre>
+<a class="indexterm" name="id2568925"></a><pre class="programlisting">typedef struct _GtkSourceBuffer GtkSourceBuffer;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2568920"></a><h3>
+<a name="id2568942"></a><h3>
 <a name="gtk-source-buffer-new"></a>gtk_source_buffer_new ()</h3>
-<a class="indexterm" name="id2568931"></a><pre class="programlisting"><a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>* gtk_source_buffer_new      (<a href="GtkSourceTagTable.html" title="GtkSourceTagTable">GtkSourceTagTable</a> *table);</pre>
+<a class="indexterm" name="id2568953"></a><pre class="programlisting"><a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>* gtk_source_buffer_new      (<a href="GtkSourceTagTable.html" title="GtkSourceTagTable">GtkSourceTagTable</a> *table);</pre>
 <p>
 Creates a new source buffer.</p>
 <p>
@@ -221,9 +221,9 @@ Creates a new source buffer.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2569008"></a><h3>
+<a name="id2569030"></a><h3>
 <a name="gtk-source-buffer-new-with-language"></a>gtk_source_buffer_new_with_language ()</h3>
-<a class="indexterm" name="id2569022"></a><pre class="programlisting"><a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>* gtk_source_buffer_new_with_language
+<a class="indexterm" name="id2569044"></a><pre class="programlisting"><a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>* gtk_source_buffer_new_with_language
                                             (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
 <p>
 Creates a new source buffer using the highlighting patterns in
@@ -252,9 +252,9 @@ according to <em class="parameter"><code
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2569116"></a><h3>
+<a name="id2569138"></a><h3>
 <a name="gtk-source-buffer-get-check-brackets"></a>gtk_source_buffer_get_check_brackets ()</h3>
-<a class="indexterm" name="id2569130"></a><pre class="programlisting">gboolean    gtk_source_buffer_get_check_brackets
+<a class="indexterm" name="id2569151"></a><pre class="programlisting">gboolean    gtk_source_buffer_get_check_brackets
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Determines whether bracket match highlighting is activated for the
@@ -281,9 +281,9 @@ brackets.
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2569210"></a><h3>
+<a name="id2569232"></a><h3>
 <a name="gtk-source-buffer-set-check-brackets"></a>gtk_source_buffer_set_check_brackets ()</h3>
-<a class="indexterm" name="id2569224"></a><pre class="programlisting">void        gtk_source_buffer_set_check_brackets
+<a class="indexterm" name="id2569245"></a><pre class="programlisting">void        gtk_source_buffer_set_check_brackets
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              gboolean check_brackets);</pre>
 <p>
@@ -314,9 +314,9 @@ function.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2569328"></a><h3>
+<a name="id2569350"></a><h3>
 <a name="gtk-source-buffer-set-bracket-match-style"></a>gtk_source_buffer_set_bracket_match_style ()</h3>
-<a class="indexterm" name="id2569343"></a><pre class="programlisting">void        gtk_source_buffer_set_bracket_match_style
+<a class="indexterm" name="id2569364"></a><pre class="programlisting">void        gtk_source_buffer_set_bracket_match_style
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *source_buffer,
                                              const <a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a> *style);</pre>
 <p>
@@ -343,9 +343,9 @@ attributes.
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2569431"></a><h3>
+<a name="id2569453"></a><h3>
 <a name="gtk-source-buffer-get-highlight"></a>gtk_source_buffer_get_highlight ()</h3>
-<a class="indexterm" name="id2569444"></a><pre class="programlisting">gboolean    gtk_source_buffer_get_highlight (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
+<a class="indexterm" name="id2569466"></a><pre class="programlisting">gboolean    gtk_source_buffer_get_highlight (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Determines whether text highlighting is activated in the source
 buffer.</p>
@@ -370,9 +370,9 @@ buffer.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2569523"></a><h3>
+<a name="id2569545"></a><h3>
 <a name="gtk-source-buffer-set-highlight"></a>gtk_source_buffer_set_highlight ()</h3>
-<a class="indexterm" name="id2569536"></a><pre class="programlisting">void        gtk_source_buffer_set_highlight (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
+<a class="indexterm" name="id2569558"></a><pre class="programlisting">void        gtk_source_buffer_set_highlight (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              gboolean highlight);</pre>
 <p>
 Controls whether text is highlighted in the buffer.  If <em class="parameter"><code>highlight</code></em>
@@ -414,9 +414,9 @@ and enable it when finished.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2569703"></a><h3>
+<a name="id2569724"></a><h3>
 <a name="gtk-source-buffer-get-max-undo-levels"></a>gtk_source_buffer_get_max_undo_levels ()</h3>
-<a class="indexterm" name="id2569716"></a><pre class="programlisting">gint        gtk_source_buffer_get_max_undo_levels
+<a class="indexterm" name="id2569738"></a><pre class="programlisting">gint        gtk_source_buffer_get_max_undo_levels
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Determines the number of undo levels the buffer will track for
@@ -442,9 +442,9 @@ buffer edits.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2569787"></a><h3>
+<a name="id2569809"></a><h3>
 <a name="gtk-source-buffer-set-max-undo-levels"></a>gtk_source_buffer_set_max_undo_levels ()</h3>
-<a class="indexterm" name="id2569801"></a><pre class="programlisting">void        gtk_source_buffer_set_max_undo_levels
+<a class="indexterm" name="id2569822"></a><pre class="programlisting">void        gtk_source_buffer_set_max_undo_levels
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              gint max_undo_levels);</pre>
 <p>
@@ -480,9 +480,9 @@ But, inserting a newline does start a ne
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2569903"></a><h3>
+<a name="id2569925"></a><h3>
 <a name="gtk-source-buffer-get-language"></a>gtk_source_buffer_get_language ()</h3>
-<a class="indexterm" name="id2569916"></a><pre class="programlisting"><a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>* gtk_source_buffer_get_language
+<a class="indexterm" name="id2569938"></a><pre class="programlisting"><a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>* gtk_source_buffer_get_language
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Determines the <a href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> used by the buffer.  The returned
@@ -509,9 +509,9 @@ object should not be unreferenced by the
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2570021"></a><h3>
+<a name="id2570042"></a><h3>
 <a name="gtk-source-buffer-set-language"></a>gtk_source_buffer_set_language ()</h3>
-<a class="indexterm" name="id2570034"></a><pre class="programlisting">void        gtk_source_buffer_set_language  (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
+<a class="indexterm" name="id2570056"></a><pre class="programlisting">void        gtk_source_buffer_set_language  (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              <a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
 <p>
 Sets the <a href="GtkSourceLanguage.html" title="GtkSourceLanguage"><span class="type">GtkSourceLanguage</span></a> the source buffer will use, adding
@@ -541,9 +541,9 @@ set.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2570171"></a><h3>
+<a name="id2570193"></a><h3>
 <a name="gtk-source-buffer-get-escape-char"></a>gtk_source_buffer_get_escape_char ()</h3>
-<a class="indexterm" name="id2570185"></a><pre class="programlisting">gunichar    gtk_source_buffer_get_escape_char
+<a class="indexterm" name="id2570207"></a><pre class="programlisting">gunichar    gtk_source_buffer_get_escape_char
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Determines the escaping character used by the source buffer
@@ -570,9 +570,9 @@ buffer is using.
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2570255"></a><h3>
+<a name="id2570277"></a><h3>
 <a name="gtk-source-buffer-set-escape-char"></a>gtk_source_buffer_set_escape_char ()</h3>
-<a class="indexterm" name="id2570269"></a><pre class="programlisting">void        gtk_source_buffer_set_escape_char
+<a class="indexterm" name="id2570291"></a><pre class="programlisting">void        gtk_source_buffer_set_escape_char
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              gunichar escape_char);</pre>
 <p>
@@ -608,9 +608,9 @@ This setting affects only syntax pattern
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2570369"></a><h3>
+<a name="id2570391"></a><h3>
 <a name="gtk-source-buffer-can-undo"></a>gtk_source_buffer_can_undo ()</h3>
-<a class="indexterm" name="id2570381"></a><pre class="programlisting">gboolean    gtk_source_buffer_can_undo      (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
+<a class="indexterm" name="id2570403"></a><pre class="programlisting">gboolean    gtk_source_buffer_can_undo      (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Determines whether a source buffer can undo the last action.</p>
 <p>
@@ -634,9 +634,9 @@ Determines whether a source buffer can u
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2570459"></a><h3>
+<a name="id2570481"></a><h3>
 <a name="gtk-source-buffer-can-redo"></a>gtk_source_buffer_can_redo ()</h3>
-<a class="indexterm" name="id2570471"></a><pre class="programlisting">gboolean    gtk_source_buffer_can_redo      (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
+<a class="indexterm" name="id2570493"></a><pre class="programlisting">gboolean    gtk_source_buffer_can_redo      (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Determines whether a source buffer can redo the last action
 (i.e. if the last operation was an undo).</p>
@@ -661,9 +661,9 @@ Determines whether a source buffer can r
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2570549"></a><h3>
+<a name="id2570571"></a><h3>
 <a name="gtk-source-buffer-undo"></a>gtk_source_buffer_undo ()</h3>
-<a class="indexterm" name="id2570561"></a><pre class="programlisting">void        gtk_source_buffer_undo          (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
+<a class="indexterm" name="id2570582"></a><pre class="programlisting">void        gtk_source_buffer_undo          (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Undoes the last user action which modified the buffer.  Use
 <a href="GtkSourceBuffer.html#gtk-source-buffer-can-undo"><code class="function">gtk_source_buffer_can_undo()</code></a> to check whether a call to this
@@ -688,9 +688,9 @@ Actions are defined as groups of operati
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2570655"></a><h3>
+<a name="id2570676"></a><h3>
 <a name="gtk-source-buffer-redo"></a>gtk_source_buffer_redo ()</h3>
-<a class="indexterm" name="id2570666"></a><pre class="programlisting">void        gtk_source_buffer_redo          (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
+<a class="indexterm" name="id2570687"></a><pre class="programlisting">void        gtk_source_buffer_redo          (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Redoes the last undo operation.  Use <a href="GtkSourceBuffer.html#gtk-source-buffer-can-redo"><code class="function">gtk_source_buffer_can_redo()</code></a>
 to check whether a call to this function will have any effect.</p>
@@ -708,9 +708,9 @@ to check whether a call to this function
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2570734"></a><h3>
+<a name="id2570755"></a><h3>
 <a name="gtk-source-buffer-begin-not-undoable-action"></a>gtk_source_buffer_begin_not_undoable_action ()</h3>
-<a class="indexterm" name="id2570748"></a><pre class="programlisting">void        gtk_source_buffer_begin_not_undoable_action
+<a class="indexterm" name="id2570770"></a><pre class="programlisting">void        gtk_source_buffer_begin_not_undoable_action
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Marks the beginning of a not undoable action on the buffer,
@@ -735,9 +735,9 @@ You may nest <a href="GtkSourceBuffer.ht
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2570834"></a><h3>
+<a name="id2549231"></a><h3>
 <a name="gtk-source-buffer-end-not-undoable-action"></a>gtk_source_buffer_end_not_undoable_action ()</h3>
-<a class="indexterm" name="id2570849"></a><pre class="programlisting">void        gtk_source_buffer_end_not_undoable_action
+<a class="indexterm" name="id2548545"></a><pre class="programlisting">void        gtk_source_buffer_end_not_undoable_action
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Marks the end of a not undoable action on the buffer.  When the
@@ -758,9 +758,9 @@ is re-enabled.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2570888"></a><h3>
+<a name="id2570907"></a><h3>
 <a name="gtk-source-buffer-create-marker"></a>gtk_source_buffer_create_marker ()</h3>
-<a class="indexterm" name="id2570900"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_create_marker
+<a class="indexterm" name="id2570920"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_create_marker
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              const gchar *name,
                                              const gchar *type,
@@ -830,9 +830,9 @@ executing instruction indication in a so
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2571129"></a><h3>
+<a name="id2571148"></a><h3>
 <a name="gtk-source-buffer-move-marker"></a>gtk_source_buffer_move_marker ()</h3>
-<a class="indexterm" name="id2571141"></a><pre class="programlisting">void        gtk_source_buffer_move_marker   (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
+<a class="indexterm" name="id2571161"></a><pre class="programlisting">void        gtk_source_buffer_move_marker   (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              <a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker,
                                              const GtkTextIter *where);</pre>
 <p>
@@ -863,9 +863,9 @@ Moves <em class="parameter"><code>marker
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2571253"></a><h3>
+<a name="id2571272"></a><h3>
 <a name="gtk-source-buffer-delete-marker"></a>gtk_source_buffer_delete_marker ()</h3>
-<a class="indexterm" name="id2571265"></a><pre class="programlisting">void        gtk_source_buffer_delete_marker (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
+<a class="indexterm" name="id2571284"></a><pre class="programlisting">void        gtk_source_buffer_delete_marker (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              <a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
 <p>
 Deletes <em class="parameter"><code>marker</code></em> from the source buffer.  The same conditions as for
@@ -893,9 +893,9 @@ destroyed.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2571361"></a><h3>
+<a name="id2571380"></a><h3>
 <a name="gtk-source-buffer-get-marker"></a>gtk_source_buffer_get_marker ()</h3>
-<a class="indexterm" name="id2571373"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_get_marker
+<a class="indexterm" name="id2571393"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_get_marker
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              const gchar *name);</pre>
 <p>
@@ -927,9 +927,9 @@ Looks up the <a href="gtksourceview-GtkS
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2571499"></a><h3>
+<a name="id2571518"></a><h3>
 <a name="gtk-source-buffer-get-markers-in-region"></a>gtk_source_buffer_get_markers_in_region ()</h3>
-<a class="indexterm" name="id2571511"></a><pre class="programlisting">GSList*     gtk_source_buffer_get_markers_in_region
+<a class="indexterm" name="id2571531"></a><pre class="programlisting">GSList*     gtk_source_buffer_get_markers_in_region
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              const GtkTextIter *begin,
                                              const GtkTextIter *end);</pre>
@@ -968,9 +968,9 @@ Returns an <span class="emphasis"><em>or
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2571657"></a><h3>
+<a name="id2571677"></a><h3>
 <a name="gtk-source-buffer-get-first-marker"></a>gtk_source_buffer_get_first_marker ()</h3>
-<a class="indexterm" name="id2571670"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_get_first_marker
+<a class="indexterm" name="id2571690"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_get_first_marker
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Returns the first (nearest to the top of the buffer) marker in
@@ -997,9 +997,9 @@ there are no markers in the buffer.
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2571752"></a><h3>
+<a name="id2571772"></a><h3>
 <a name="gtk-source-buffer-get-last-marker"></a>gtk_source_buffer_get_last_marker ()</h3>
-<a class="indexterm" name="id2571766"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_get_last_marker
+<a class="indexterm" name="id2571785"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_get_last_marker
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Returns the last (nearest to the bottom of the buffer) marker in
@@ -1026,9 +1026,9 @@ there are no markers in the buffer.
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2571848"></a><h3>
+<a name="id2571867"></a><h3>
 <a name="gtk-source-buffer-get-iter-at-marker"></a>gtk_source_buffer_get_iter_at_marker ()</h3>
-<a class="indexterm" name="id2571860"></a><pre class="programlisting">void        gtk_source_buffer_get_iter_at_marker
+<a class="indexterm" name="id2571880"></a><pre class="programlisting">void        gtk_source_buffer_get_iter_at_marker
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              GtkTextIter *iter,
                                              <a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
@@ -1060,9 +1060,9 @@ Initializes <em class="parameter"><code>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2571978"></a><h3>
+<a name="id2571997"></a><h3>
 <a name="gtk-source-buffer-get-next-marker"></a>gtk_source_buffer_get_next_marker ()</h3>
-<a class="indexterm" name="id2571991"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_get_next_marker
+<a class="indexterm" name="id2572011"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_get_next_marker
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              GtkTextIter *iter);</pre>
 <p>
@@ -1098,9 +1098,9 @@ or <code class="literal">NULL</code> if 
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2572115"></a><h3>
+<a name="id2572134"></a><h3>
 <a name="gtk-source-buffer-get-prev-marker"></a>gtk_source_buffer_get_prev_marker ()</h3>
-<a class="indexterm" name="id2572128"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_get_prev_marker
+<a class="indexterm" name="id2572148"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_buffer_get_prev_marker
                                             (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer,
                                              GtkTextIter *iter);</pre>
 <p>
@@ -1136,53 +1136,53 @@ or <code class="literal">NULL</code> if 
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2572253"></a><h2>Property Details</h2>
+<a name="id2572272"></a><h2>Property Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2572262"></a><h3>
+<a name="id2572282"></a><h3>
 <a name="GtkSourceBuffer--check-brackets"></a>The "<code class="literal">check-brackets</code>" property</h3>
-<a class="indexterm" name="id2572277"></a><pre class="programlisting">  "check-brackets"       gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2572296"></a><pre class="programlisting">  "check-brackets"       gboolean              : Read / Write</pre>
 <p>Whether to check and highlight matching brackets.</p>
 <p>Default value: TRUE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2572301"></a><h3>
+<a name="id2572320"></a><h3>
 <a name="GtkSourceBuffer--escape-char"></a>The "<code class="literal">escape-char</code>" property</h3>
-<a class="indexterm" name="id2572315"></a><pre class="programlisting">  "escape-char"          guint                 : Read / Write</pre>
+<a class="indexterm" name="id2572334"></a><pre class="programlisting">  "escape-char"          guint                 : Read / Write</pre>
 <p>Escaping character for syntax patterns.</p>
 <p>Default value: 0</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2572338"></a><h3>
+<a name="id2572357"></a><h3>
 <a name="GtkSourceBuffer--highlight"></a>The "<code class="literal">highlight</code>" property</h3>
-<a class="indexterm" name="id2572350"></a><pre class="programlisting">  "highlight"            gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2572370"></a><pre class="programlisting">  "highlight"            gboolean              : Read / Write</pre>
 <p>Whether to highlight syntax in the buffer.</p>
 <p>Default value: FALSE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2572374"></a><h3>
+<a name="id2572393"></a><h3>
 <a name="GtkSourceBuffer--language"></a>The "<code class="literal">language</code>" property</h3>
-<a class="indexterm" name="id2572386"></a><pre class="programlisting">  "language"             <a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>     : Read / Write</pre>
+<a class="indexterm" name="id2572406"></a><pre class="programlisting">  "language"             <a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>     : Read / Write</pre>
 <p>Language object to get highlighting patterns from.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2572406"></a><h3>
+<a name="id2572426"></a><h3>
 <a name="GtkSourceBuffer--max-undo-levels"></a>The "<code class="literal">max-undo-levels</code>" property</h3>
-<a class="indexterm" name="id2572421"></a><pre class="programlisting">  "max-undo-levels"      gint                  : Read / Write</pre>
+<a class="indexterm" name="id2572440"></a><pre class="programlisting">  "max-undo-levels"      gint                  : Read / Write</pre>
 <p>Number of undo levels for the buffer.</p>
 <p>Allowed values: [0,200]</p>
 <p>Default value: 25</p>
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2572448"></a><h2>Signal Details</h2>
+<a name="id2572468"></a><h2>Signal Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2572458"></a><h3>
+<a name="id2572477"></a><h3>
 <a name="GtkSourceBuffer-can-redo"></a>The "can-redo" signal</h3>
-<a class="indexterm" name="id2572465"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *sourcebuffer,
+<a class="indexterm" name="id2572484"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *sourcebuffer,
                                             gboolean         arg1,
                                             gpointer         user_data)         : Run last</pre>
 <p>
@@ -1212,9 +1212,9 @@ operation.
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2572548"></a><h3>
+<a name="id2572567"></a><h3>
 <a name="GtkSourceBuffer-can-undo"></a>The "can-undo" signal</h3>
-<a class="indexterm" name="id2572555"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *sourcebuffer,
+<a class="indexterm" name="id2572574"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *sourcebuffer,
                                             gboolean         arg1,
                                             gpointer         user_data)         : Run last</pre>
 <p>
@@ -1244,9 +1244,9 @@ operation.
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2572638"></a><h3>
+<a name="id2572657"></a><h3>
 <a name="GtkSourceBuffer-highlight-updated"></a>The "highlight-updated" signal</h3>
-<a class="indexterm" name="id2572647"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *sourcebuffer,
+<a class="indexterm" name="id2572666"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *sourcebuffer,
                                             GtkTextIter     *arg1,
                                             GtkTextIter     *arg2,
                                             gpointer         user_data)         : Run last</pre>
@@ -1286,9 +1286,9 @@ this signal.
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2572762"></a><h3>
+<a name="id2572782"></a><h3>
 <a name="GtkSourceBuffer-marker-updated"></a>The "marker-updated" signal</h3>
-<a class="indexterm" name="id2572772"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *sourcebuffer,
+<a class="indexterm" name="id2572791"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *sourcebuffer,
                                             GtkTextIter     *arg1,
                                             gpointer         user_data)         : Run last</pre>
 <p>
@@ -1324,7 +1324,7 @@ one for the old location and one for the
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2572873"></a><h2>See Also</h2>
+<a name="id2572893"></a><h2>See Also</h2>
 <p>
 There is an introduction document
 describing the basic concepts of the buffer/view interactions.
diff -pruN 1.8.1-2/docs/reference/html/GtkSourceLanguage.html 1.8.2-0ubuntu1/docs/reference/html/GtkSourceLanguage.html
--- 1.8.1-2/docs/reference/html/GtkSourceLanguage.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/GtkSourceLanguage.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,20 +21,20 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td><a accesskey="n" href="GtkSourceLanguagesManager.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2537520" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2531317" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2538182" class="shortcut">Description</a>
+                  <a href="#id2533647" class="shortcut">Description</a>
                   &#160;|&#160;
-                  <a href="#id2538106" class="shortcut">Object Hierarchy</a>
+                  <a href="#id2533571" class="shortcut">Object Hierarchy</a>
                   &#160;|&#160;
-                  <a href="#id2538130" class="shortcut">Signals</a></nobr></td></tr>
+                  <a href="#id2533595" class="shortcut">Signals</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="GtkSourceLanguage"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2537520"></a><span class="refentrytitle">GtkSourceLanguage</span>
+<a name="id2531317"></a><span class="refentrytitle">GtkSourceLanguage</span>
 </h2>
 <p>GtkSourceLanguage &#8212; </p>
 </td>
@@ -77,7 +77,7 @@ void        <a href="GtkSourceLanguage.h
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2538106"></a><h2>Object Hierarchy</h2>
+<a name="id2533571"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
 
   GObject
@@ -85,7 +85,7 @@ void        <a href="GtkSourceLanguage.h
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2538130"></a><h2>Signals</h2>
+<a name="id2533595"></a><h2>Signals</h2>
 <pre class="synopsis">
 
 "<a href="GtkSourceLanguage.html#GtkSourceLanguage-tag-style-changed">tag-style-changed</a>"
@@ -95,26 +95,26 @@ void        <a href="GtkSourceLanguage.h
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2538182"></a><h2>Description</h2>
+<a name="id2533647"></a><h2>Description</h2>
 <p>
 
 </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2564591"></a><h2>Details</h2>
+<a name="id2527727"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2564602"></a><h3>
+<a name="id2527738"></a><h3>
 <a name="GtkSourceLanguage-struct"></a>GtkSourceLanguage</h3>
-<a class="indexterm" name="id2564614"></a><pre class="programlisting">typedef struct _GtkSourceLanguage GtkSourceLanguage;</pre>
+<a class="indexterm" name="id2527750"></a><pre class="programlisting">typedef struct _GtkSourceLanguage GtkSourceLanguage;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2564630"></a><h3>
+<a name="id2527766"></a><h3>
 <a name="gtk-source-language-get-name"></a>gtk_source_language_get_name ()</h3>
-<a class="indexterm" name="id2564643"></a><pre class="programlisting">gchar*      gtk_source_language_get_name    (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
+<a class="indexterm" name="id2527780"></a><pre class="programlisting">gchar*      gtk_source_language_get_name    (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
 <p>
 Returns the localized name of the language.</p>
 <p>
@@ -138,9 +138,9 @@ Returns the localized name of the langua
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2564718"></a><h3>
+<a name="id2527855"></a><h3>
 <a name="gtk-source-language-get-section"></a>gtk_source_language_get_section ()</h3>
-<a class="indexterm" name="id2564732"></a><pre class="programlisting">gchar*      gtk_source_language_get_section (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
+<a class="indexterm" name="id2527868"></a><pre class="programlisting">gchar*      gtk_source_language_get_section (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
 <p>
 Returns the localized section of the language.
 Each language belong to a section (ex. HTML belogs to the
@@ -166,9 +166,9 @@ Markup section).</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2564808"></a><h3>
+<a name="id2527944"></a><h3>
 <a name="gtk-source-language-get-tags"></a>gtk_source_language_get_tags ()</h3>
-<a class="indexterm" name="id2564821"></a><pre class="programlisting">GSList*     gtk_source_language_get_tags    (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
+<a class="indexterm" name="id2527957"></a><pre class="programlisting">GSList*     gtk_source_language_get_tags    (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
 <p>
 Returns a list of tags for the given <em class="parameter"><code>language</code></em>.  You should unref the tags
 and free the list after usage.</p>
@@ -193,9 +193,9 @@ and free the list after usage.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2536196"></a><h3>
+<a name="id2542421"></a><h3>
 <a name="gtk-source-language-get-escape-char"></a>gtk_source_language_get_escape_char ()</h3>
-<a class="indexterm" name="id2536210"></a><pre class="programlisting">gunichar    gtk_source_language_get_escape_char
+<a class="indexterm" name="id2542435"></a><pre class="programlisting">gunichar    gtk_source_language_get_escape_char
                                             (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
 <p>
 Gets the value of the ESC character in the given <em class="parameter"><code>language</code></em>.</p>
@@ -220,9 +220,9 @@ Gets the value of the ESC character in t
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2536286"></a><h3>
+<a name="id2542511"></a><h3>
 <a name="gtk-source-language-get-mime-types"></a>gtk_source_language_get_mime_types ()</h3>
-<a class="indexterm" name="id2536300"></a><pre class="programlisting">GSList*     gtk_source_language_get_mime_types
+<a class="indexterm" name="id2542525"></a><pre class="programlisting">GSList*     gtk_source_language_get_mime_types
                                             (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
 <p>
 Returns a list of mime types for the given <em class="parameter"><code>language</code></em>.  After usage you should
@@ -248,9 +248,9 @@ free each element of the list as well as
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2536376"></a><h3>
+<a name="id2542601"></a><h3>
 <a name="gtk-source-language-set-mime-types"></a>gtk_source_language_set_mime_types ()</h3>
-<a class="indexterm" name="id2536390"></a><pre class="programlisting">void        gtk_source_language_set_mime_types
+<a class="indexterm" name="id2542615"></a><pre class="programlisting">void        gtk_source_language_set_mime_types
                                             (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language,
                                              const GSList *mime_types);</pre>
 <p>
@@ -278,9 +278,9 @@ types from the language file.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2527716"></a><h3>
+<a name="id2536825"></a><h3>
 <a name="gtk-source-language-get-style-scheme"></a>gtk_source_language_get_style_scheme ()</h3>
-<a class="indexterm" name="id2527729"></a><pre class="programlisting"><a href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>* gtk_source_language_get_style_scheme
+<a class="indexterm" name="id2536838"></a><pre class="programlisting"><a href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>* gtk_source_language_get_style_scheme
                                             (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language);</pre>
 <p>
 Gets the style scheme associated with the given <em class="parameter"><code>language</code></em>.</p>
@@ -305,9 +305,9 @@ Gets the style scheme associated with th
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2527811"></a><h3>
+<a name="id2536920"></a><h3>
 <a name="gtk-source-language-set-style-scheme"></a>gtk_source_language_set_style_scheme ()</h3>
-<a class="indexterm" name="id2527825"></a><pre class="programlisting">void        gtk_source_language_set_style_scheme
+<a class="indexterm" name="id2536934"></a><pre class="programlisting">void        gtk_source_language_set_style_scheme
                                             (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language,
                                              <a href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a> *scheme);</pre>
 <p>
@@ -333,9 +333,9 @@ Sets the style scheme of the given <em c
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2527917"></a><h3>
+<a name="id2573768"></a><h3>
 <a name="gtk-source-language-get-tag-style"></a>gtk_source_language_get_tag_style ()</h3>
-<a class="indexterm" name="id2573756"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_language_get_tag_style
+<a class="indexterm" name="id2573782"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_language_get_tag_style
                                             (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language,
                                              const gchar *tag_id);</pre>
 <p>
@@ -367,9 +367,9 @@ not defined then returns the default sty
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2573867"></a><h3>
+<a name="id2573894"></a><h3>
 <a name="gtk-source-language-set-tag-style"></a>gtk_source_language_set_tag_style ()</h3>
-<a class="indexterm" name="id2573881"></a><pre class="programlisting">void        gtk_source_language_set_tag_style
+<a class="indexterm" name="id2573908"></a><pre class="programlisting">void        gtk_source_language_set_tag_style
                                             (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language,
                                              const gchar *tag_id,
                                              const <a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a> *style);</pre>
@@ -402,9 +402,9 @@ restore the default style.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574023"></a><h3>
+<a name="id2574049"></a><h3>
 <a name="gtk-source-language-get-tag-default-style"></a>gtk_source_language_get_tag_default_style ()</h3>
-<a class="indexterm" name="id2574038"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_language_get_tag_default_style
+<a class="indexterm" name="id2574064"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_language_get_tag_default_style
                                             (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *language,
                                              const gchar *tag_id);</pre>
 <p>
@@ -435,11 +435,11 @@ Gets the default style of the tag whose 
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2574150"></a><h2>Signal Details</h2>
+<a name="id2574176"></a><h2>Signal Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2574161"></a><h3>
+<a name="id2574187"></a><h3>
 <a name="GtkSourceLanguage-tag-style-changed"></a>The "tag-style-changed" signal</h3>
-<a class="indexterm" name="id2574171"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *sourcelanguage,
+<a class="indexterm" name="id2574197"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a> *sourcelanguage,
                                             gchar             *arg1,
                                             gpointer           user_data)           : Run last</pre>
 <p>
diff -pruN 1.8.1-2/docs/reference/html/GtkSourceLanguagesManager.html 1.8.2-0ubuntu1/docs/reference/html/GtkSourceLanguagesManager.html
--- 1.8.1-2/docs/reference/html/GtkSourceLanguagesManager.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/GtkSourceLanguagesManager.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,20 +21,20 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td><a accesskey="n" href="GtkSourceStyleScheme.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2541728" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2566600" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2540087" class="shortcut">Description</a>
+                  <a href="#id2542158" class="shortcut">Description</a>
                   &#160;|&#160;
-                  <a href="#id2540032" class="shortcut">Object Hierarchy</a>
+                  <a href="#id2542104" class="shortcut">Object Hierarchy</a>
                   &#160;|&#160;
-                  <a href="#id2540056" class="shortcut">Properties</a></nobr></td></tr>
+                  <a href="#id2542127" class="shortcut">Properties</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="GtkSourceLanguagesManager"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2541728"></a><span class="refentrytitle">GtkSourceLanguagesManager</span>
+<a name="id2566600"></a><span class="refentrytitle">GtkSourceLanguagesManager</span>
 </h2>
 <p>GtkSourceLanguagesManager &#8212; </p>
 </td>
@@ -61,7 +61,7 @@ const GSList* <a href="GtkSourceLanguage
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2540032"></a><h2>Object Hierarchy</h2>
+<a name="id2542104"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
 
   GObject
@@ -69,33 +69,33 @@ const GSList* <a href="GtkSourceLanguage
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2540056"></a><h2>Properties</h2>
+<a name="id2542127"></a><h2>Properties</h2>
 <pre class="synopsis">
 
   "<a href="GtkSourceLanguagesManager.html#GtkSourceLanguagesManager--lang-files-dirs">lang-files-dirs</a>"      gpointer              : Read / Write / Construct Only
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2540087"></a><h2>Description</h2>
+<a name="id2542158"></a><h2>Description</h2>
 <p>
 
 </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2540103"></a><h2>Details</h2>
+<a name="id2542174"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2540114"></a><h3>
+<a name="id2542185"></a><h3>
 <a name="GtkSourceLanguagesManager-struct"></a>GtkSourceLanguagesManager</h3>
-<a class="indexterm" name="id2527306"></a><pre class="programlisting">typedef struct _GtkSourceLanguagesManager GtkSourceLanguagesManager;</pre>
+<a class="indexterm" name="id2536417"></a><pre class="programlisting">typedef struct _GtkSourceLanguagesManager GtkSourceLanguagesManager;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2527323"></a><h3>
+<a name="id2536433"></a><h3>
 <a name="gtk-source-languages-manager-new"></a>gtk_source_languages_manager_new ()</h3>
-<a class="indexterm" name="id2527334"></a><pre class="programlisting"><a href="GtkSourceLanguagesManager.html" title="GtkSourceLanguagesManager">GtkSourceLanguagesManager</a>* gtk_source_languages_manager_new
+<a class="indexterm" name="id2536444"></a><pre class="programlisting"><a href="GtkSourceLanguagesManager.html" title="GtkSourceLanguagesManager">GtkSourceLanguagesManager</a>* gtk_source_languages_manager_new
                                             (void);</pre>
 <p>
 Creates a new language manager.</p>
@@ -113,9 +113,9 @@ Creates a new language manager.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2527380"></a><h3>
+<a name="id2536490"></a><h3>
 <a name="gtk-source-languages-manager-get-available-languages"></a>gtk_source_languages_manager_get_available_languages ()</h3>
-<a class="indexterm" name="id2527394"></a><pre class="programlisting">const GSList* gtk_source_languages_manager_get_available_languages
+<a class="indexterm" name="id2536505"></a><pre class="programlisting">const GSList* gtk_source_languages_manager_get_available_languages
                                             (<a href="GtkSourceLanguagesManager.html" title="GtkSourceLanguagesManager">GtkSourceLanguagesManager</a> *lm);</pre>
 <p>
 Gets a list of available languages for the given language manager.
@@ -142,9 +142,9 @@ free it after usage.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2564161"></a><h3>
+<a name="id2528094"></a><h3>
 <a name="gtk-source-languages-manager-get-language-from-mime-type"></a>gtk_source_languages_manager_get_language_from_mime_type ()</h3>
-<a class="indexterm" name="id2564175"></a><pre class="programlisting"><a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>* gtk_source_languages_manager_get_language_from_mime_type
+<a class="indexterm" name="id2528109"></a><pre class="programlisting"><a href="GtkSourceLanguage.html" title="GtkSourceLanguage">GtkSourceLanguage</a>* gtk_source_languages_manager_get_language_from_mime_type
                                             (<a href="GtkSourceLanguagesManager.html" title="GtkSourceLanguagesManager">GtkSourceLanguagesManager</a> *lm,
                                              const gchar *mime_type);</pre>
 <p>
@@ -177,9 +177,9 @@ associated with the given <em class="par
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2564301"></a><h3>
+<a name="id2528234"></a><h3>
 <a name="gtk-source-languages-manager-get-lang-files-dirs"></a>gtk_source_languages_manager_get_lang_files_dirs ()</h3>
-<a class="indexterm" name="id2564315"></a><pre class="programlisting">const GSList* gtk_source_languages_manager_get_lang_files_dirs
+<a class="indexterm" name="id2528248"></a><pre class="programlisting">const GSList* gtk_source_languages_manager_get_lang_files_dirs
                                             (<a href="GtkSourceLanguagesManager.html" title="GtkSourceLanguagesManager">GtkSourceLanguagesManager</a> *lm);</pre>
 <p>
 Gets a list of language files directories for the given language manager.</p>
@@ -204,11 +204,11 @@ Gets a list of language files directorie
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2564387"></a><h2>Property Details</h2>
+<a name="id2528321"></a><h2>Property Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2564398"></a><h3>
+<a name="id2528331"></a><h3>
 <a name="GtkSourceLanguagesManager--lang-files-dirs"></a>The "<code class="literal">lang-files-dirs</code>" property</h3>
-<a class="indexterm" name="id2564412"></a><pre class="programlisting">  "lang-files-dirs"      gpointer              : Read / Write / Construct Only</pre>
+<a class="indexterm" name="id2528346"></a><pre class="programlisting">  "lang-files-dirs"      gpointer              : Read / Write / Construct Only</pre>
 <p>List of directories where the language specification files (.lang) are located.</p>
 </div>
 </div>
diff -pruN 1.8.1-2/docs/reference/html/GtkSourcePrintJob.html 1.8.2-0ubuntu1/docs/reference/html/GtkSourcePrintJob.html
--- 1.8.1-2/docs/reference/html/GtkSourcePrintJob.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/GtkSourcePrintJob.html	2006-12-13 12:05:11.000000000 +0000
@@ -20,22 +20,22 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td>&#160;</td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2557548" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2545683" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2589806" class="shortcut">Description</a>
+                  <a href="#id2589944" class="shortcut">Description</a>
                   &#160;|&#160;
-                  <a href="#id2589518" class="shortcut">Object Hierarchy</a>
+                  <a href="#id2589687" class="shortcut">Object Hierarchy</a>
                   &#160;|&#160;
-                  <a href="#id2589542" class="shortcut">Properties</a>
+                  <a href="#id2589708" class="shortcut">Properties</a>
                   &#160;|&#160;
-                  <a href="#id2589734" class="shortcut">Signals</a></nobr></td></tr>
+                  <a href="#id2589880" class="shortcut">Signals</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="GtkSourcePrintJob"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2557548"></a><span class="refentrytitle">GtkSourcePrintJob</span>
+<a name="id2545683"></a><span class="refentrytitle">GtkSourcePrintJob</span>
 </h2>
 <p>GtkSourcePrintJob &#8212; Printing a <a href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a>.</p>
 </td>
@@ -183,7 +183,7 @@ void        <a href="GtkSourcePrintJob.h
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2589518"></a><h2>Object Hierarchy</h2>
+<a name="id2589687"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
 
   GObject
@@ -191,7 +191,7 @@ void        <a href="GtkSourcePrintJob.h
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2589542"></a><h2>Properties</h2>
+<a name="id2589708"></a><h2>Properties</h2>
 <pre class="synopsis">
 
   "<a href="GtkSourcePrintJob.html#GtkSourcePrintJob--buffer">buffer</a>"               <a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>       : Read / Write
@@ -213,7 +213,7 @@ href="../libgnomeprint/libgnomeprint-gno
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2589734"></a><h2>Signals</h2>
+<a name="id2589880"></a><h2>Signals</h2>
 <pre class="synopsis">
 
 "<a href="GtkSourcePrintJob.html#GtkSourcePrintJob-begin-page">begin-page</a>"
@@ -224,7 +224,7 @@ href="../libgnomeprint/libgnomeprint-gno
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2589806"></a><h2>Description</h2>
+<a name="id2589944"></a><h2>Description</h2>
 <p>
 The <a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob"><span class="type">GtkSourcePrintJob</span></a> object is used to print the contents of a
 <a href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a>.  You can set various configuration options to
@@ -337,20 +337,20 @@ print_source_buffer_from_view (GtkSource
 </pre></div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2590095"></a><h2>Details</h2>
+<a name="id2590228"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2590105"></a><h3>
+<a name="id2590237"></a><h3>
 <a name="GtkSourcePrintJob-struct"></a>GtkSourcePrintJob</h3>
-<a class="indexterm" name="id2590115"></a><pre class="programlisting">typedef struct _GtkSourcePrintJob GtkSourcePrintJob;</pre>
+<a class="indexterm" name="id2590247"></a><pre class="programlisting">typedef struct _GtkSourcePrintJob GtkSourcePrintJob;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2590130"></a><h3>
+<a name="id2590262"></a><h3>
 <a name="gtk-source-print-job-new"></a>gtk_source_print_job_new ()</h3>
-<a class="indexterm" name="id2590140"></a><pre class="programlisting"><a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a>* gtk_source_print_job_new (<a
+<a class="indexterm" name="id2590272"></a><pre class="programlisting"><a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a>* gtk_source_print_job_new (<a
 href="../libgnomeprint/libgnomeprint-gnome-print-config.html#GnomePrintConfig"
 >GnomePrintConfig</a> *config);</pre>
 <p>
@@ -378,9 +378,9 @@ href="../libgnomeprint/libgnomeprint-gno
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2590201"></a><h3>
+<a name="id2590333"></a><h3>
 <a name="gtk-source-print-job-new-with-buffer"></a>gtk_source_print_job_new_with_buffer ()</h3>
-<a class="indexterm" name="id2590214"></a><pre class="programlisting"><a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a>* gtk_source_print_job_new_with_buffer
+<a class="indexterm" name="id2590346"></a><pre class="programlisting"><a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a>* gtk_source_print_job_new_with_buffer
                                             (<a
 href="../libgnomeprint/libgnomeprint-gnome-print-config.html#GnomePrintConfig"
 >GnomePrintConfig</a> *config,
@@ -415,9 +415,9 @@ href="../libgnomeprint/libgnomeprint-gno
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2590314"></a><h3>
+<a name="id2590446"></a><h3>
 <a name="gtk-source-print-job-set-config"></a>gtk_source_print_job_set_config ()</h3>
-<a class="indexterm" name="id2590327"></a><pre class="programlisting">void        gtk_source_print_job_set_config (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
+<a class="indexterm" name="id2590459"></a><pre class="programlisting">void        gtk_source_print_job_set_config (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              <a
 href="../libgnomeprint/libgnomeprint-gnome-print-config.html#GnomePrintConfig"
 >GnomePrintConfig</a> *config);</pre>
@@ -450,9 +450,9 @@ href="../libgnomeprint/libgnomeprint-gno
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2590415"></a><h3>
+<a name="id2590547"></a><h3>
 <a name="gtk-source-print-job-get-config"></a>gtk_source_print_job_get_config ()</h3>
-<a class="indexterm" name="id2590427"></a><pre class="programlisting"><a
+<a class="indexterm" name="id2590560"></a><pre class="programlisting"><a
 href="../libgnomeprint/libgnomeprint-gnome-print-config.html#GnomePrintConfig"
 >GnomePrintConfig</a>* gtk_source_print_job_get_config
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
@@ -485,9 +485,9 @@ href="../libgnomeprint/libgnomeprint-gno
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2590504"></a><h3>
+<a name="id2590636"></a><h3>
 <a name="gtk-source-print-job-set-buffer"></a>gtk_source_print_job_set_buffer ()</h3>
-<a class="indexterm" name="id2590516"></a><pre class="programlisting">void        gtk_source_print_job_set_buffer (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
+<a class="indexterm" name="id2590648"></a><pre class="programlisting">void        gtk_source_print_job_set_buffer (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              <a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Sets the <a href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a> the print job will print.  You need to
@@ -514,9 +514,9 @@ creating the print job with <a href="Gtk
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2590610"></a><h3>
+<a name="id2590743"></a><h3>
 <a name="gtk-source-print-job-get-buffer"></a>gtk_source_print_job_get_buffer ()</h3>
-<a class="indexterm" name="id2590623"></a><pre class="programlisting"><a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>* gtk_source_print_job_get_buffer
+<a class="indexterm" name="id2590755"></a><pre class="programlisting"><a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>* gtk_source_print_job_get_buffer
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Gets the <a href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a> the print job would print.  The returned
@@ -543,9 +543,9 @@ should not be unreferenced.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2590707"></a><h3>
+<a name="id2590839"></a><h3>
 <a name="gtk-source-print-job-setup-from-view"></a>gtk_source_print_job_setup_from_view ()</h3>
-<a class="indexterm" name="id2590720"></a><pre class="programlisting">void        gtk_source_print_job_setup_from_view
+<a class="indexterm" name="id2590852"></a><pre class="programlisting">void        gtk_source_print_job_setup_from_view
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              <a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
@@ -574,9 +574,9 @@ and default font.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2590806"></a><h3>
+<a name="id2590938"></a><h3>
 <a name="gtk-source-print-job-set-tabs-width"></a>gtk_source_print_job_set_tabs_width ()</h3>
-<a class="indexterm" name="id2590819"></a><pre class="programlisting">void        gtk_source_print_job_set_tabs_width
+<a class="indexterm" name="id2590952"></a><pre class="programlisting">void        gtk_source_print_job_set_tabs_width
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              guint tabs_width);</pre>
 <p>
@@ -605,9 +605,9 @@ font.  Tabulation stops are set for the 
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2590900"></a><h3>
+<a name="id2591032"></a><h3>
 <a name="gtk-source-print-job-get-tabs-width"></a>gtk_source_print_job_get_tabs_width ()</h3>
-<a class="indexterm" name="id2590913"></a><pre class="programlisting">guint       gtk_source_print_job_get_tabs_width
+<a class="indexterm" name="id2591045"></a><pre class="programlisting">guint       gtk_source_print_job_get_tabs_width
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the configured width (in equivalent spaces) of
@@ -633,9 +633,9 @@ tabulations.  The default value is 8.</p
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2590976"></a><h3>
+<a name="id2591108"></a><h3>
 <a name="gtk-source-print-job-set-wrap-mode"></a>gtk_source_print_job_set_wrap_mode ()</h3>
-<a class="indexterm" name="id2590989"></a><pre class="programlisting">void        gtk_source_print_job_set_wrap_mode
+<a class="indexterm" name="id2591121"></a><pre class="programlisting">void        gtk_source_print_job_set_wrap_mode
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              GtkWrapMode wrap);</pre>
 <p>
@@ -662,9 +662,9 @@ width.  See <span class="type">GtkWrapMo
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2591067"></a><h3>
+<a name="id2591200"></a><h3>
 <a name="gtk-source-print-job-get-wrap-mode"></a>gtk_source_print_job_get_wrap_mode ()</h3>
-<a class="indexterm" name="id2591080"></a><pre class="programlisting">GtkWrapMode gtk_source_print_job_get_wrap_mode
+<a class="indexterm" name="id2591213"></a><pre class="programlisting">GtkWrapMode gtk_source_print_job_get_wrap_mode
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the wrapping style for text lines wider than the
@@ -690,9 +690,9 @@ printable width.  The default is no wrap
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2591144"></a><h3>
+<a name="id2591276"></a><h3>
 <a name="gtk-source-print-job-set-highlight"></a>gtk_source_print_job_set_highlight ()</h3>
-<a class="indexterm" name="id2591157"></a><pre class="programlisting">void        gtk_source_print_job_set_highlight
+<a class="indexterm" name="id2591289"></a><pre class="programlisting">void        gtk_source_print_job_set_highlight
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              gboolean highlight);</pre>
 <p>
@@ -719,9 +719,9 @@ buffer rules.  Both color and font style
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2591238"></a><h3>
+<a name="id2591370"></a><h3>
 <a name="gtk-source-print-job-get-highlight"></a>gtk_source_print_job_get_highlight ()</h3>
-<a class="indexterm" name="id2591251"></a><pre class="programlisting">gboolean    gtk_source_print_job_get_highlight
+<a class="indexterm" name="id2591383"></a><pre class="programlisting">gboolean    gtk_source_print_job_get_highlight
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines if the job is configured to print the text highlighted
@@ -748,9 +748,9 @@ only if the buffer to print has highligh
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2591324"></a><h3>
+<a name="id2591456"></a><h3>
 <a name="gtk-source-print-job-set-font-desc"></a>gtk_source_print_job_set_font_desc ()</h3>
-<a class="indexterm" name="id2591337"></a><pre class="programlisting">void        gtk_source_print_job_set_font_desc
+<a class="indexterm" name="id2591469"></a><pre class="programlisting">void        gtk_source_print_job_set_font_desc
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              PangoFontDescription *desc);</pre>
 <p>
@@ -776,9 +776,9 @@ Sets the default font for the printed te
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2591414"></a><h3>
+<a name="id2591546"></a><h3>
 <a name="gtk-source-print-job-set-font"></a>gtk_source_print_job_set_font ()</h3>
-<a class="indexterm" name="id2591426"></a><pre class="programlisting">void        gtk_source_print_job_set_font   (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
+<a class="indexterm" name="id2591559"></a><pre class="programlisting">void        gtk_source_print_job_set_font   (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              const gchar *font_name);</pre>
 <p>
 Sets the default font for the printed text.  <em class="parameter"><code>font_name</code></em> should be a
@@ -815,9 +815,9 @@ should use <a href="GtkSourcePrintJob.ht
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2591541"></a><h3>
+<a name="id2591673"></a><h3>
 <a name="gtk-source-print-job-get-font-desc"></a>gtk_source_print_job_get_font_desc ()</h3>
-<a class="indexterm" name="id2591554"></a><pre class="programlisting">PangoFontDescription* gtk_source_print_job_get_font_desc
+<a class="indexterm" name="id2591686"></a><pre class="programlisting">PangoFontDescription* gtk_source_print_job_get_font_desc
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the default font to be used for the printed text.  The
@@ -846,9 +846,9 @@ should be freed when no longer needed.</
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2591620"></a><h3>
+<a name="id2591752"></a><h3>
 <a name="gtk-source-print-job-get-font"></a>gtk_source_print_job_get_font ()</h3>
-<a class="indexterm" name="id2591632"></a><pre class="programlisting">gchar*      gtk_source_print_job_get_font   (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
+<a class="indexterm" name="id2591764"></a><pre class="programlisting">gchar*      gtk_source_print_job_get_font   (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the default font to be used for the printed text.  The
 returned string is of the form "Fontfamily Style Size",
@@ -886,9 +886,9 @@ text font.
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2591726"></a><h3>
+<a name="id2591858"></a><h3>
 <a name="gtk-source-print-job-set-numbers-font-desc"></a>gtk_source_print_job_set_numbers_font_desc ()</h3>
-<a class="indexterm" name="id2591740"></a><pre class="programlisting">void        gtk_source_print_job_set_numbers_font_desc
+<a class="indexterm" name="id2591872"></a><pre class="programlisting">void        gtk_source_print_job_set_numbers_font_desc
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              PangoFontDescription *desc);</pre>
 <p>
@@ -916,9 +916,9 @@ text) will be used instead.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2591828"></a><h3>
+<a name="id2591960"></a><h3>
 <a name="gtk-source-print-job-set-numbers-font"></a>gtk_source_print_job_set_numbers_font ()</h3>
-<a class="indexterm" name="id2591840"></a><pre class="programlisting">void        gtk_source_print_job_set_numbers_font
+<a class="indexterm" name="id2591973"></a><pre class="programlisting">void        gtk_source_print_job_set_numbers_font
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              const gchar *font_name);</pre>
 <p>
@@ -956,9 +956,9 @@ should use <a href="GtkSourcePrintJob.ht
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2591965"></a><h3>
+<a name="id2592097"></a><h3>
 <a name="gtk-source-print-job-get-numbers-font-desc"></a>gtk_source_print_job_get_numbers_font_desc ()</h3>
-<a class="indexterm" name="id2591979"></a><pre class="programlisting">PangoFontDescription* gtk_source_print_job_get_numbers_font_desc
+<a class="indexterm" name="id2592111"></a><pre class="programlisting">PangoFontDescription* gtk_source_print_job_get_numbers_font_desc
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the font to be used for the line numbers. This function
@@ -985,9 +985,9 @@ owned by the job and must not be modifie
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2592060"></a><h3>
+<a name="id2592193"></a><h3>
 <a name="gtk-source-print-job-get-numbers-font"></a>gtk_source_print_job_get_numbers_font ()</h3>
-<a class="indexterm" name="id2592073"></a><pre class="programlisting">gchar*      gtk_source_print_job_get_numbers_font
+<a class="indexterm" name="id2592205"></a><pre class="programlisting">gchar*      gtk_source_print_job_get_numbers_font
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the font to be used for the line numbers.  The returned
@@ -1027,9 +1027,9 @@ line numbers font, or <code class="liter
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2592186"></a><h3>
+<a name="id2592318"></a><h3>
 <a name="gtk-source-print-job-set-print-numbers"></a>gtk_source_print_job_set_print_numbers ()</h3>
-<a class="indexterm" name="id2592199"></a><pre class="programlisting">void        gtk_source_print_job_set_print_numbers
+<a class="indexterm" name="id2592331"></a><pre class="programlisting">void        gtk_source_print_job_set_print_numbers
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              guint interval);</pre>
 <p>
@@ -1057,9 +1057,9 @@ printed every <em class="parameter"><cod
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2592284"></a><h3>
+<a name="id2592426"></a><h3>
 <a name="gtk-source-print-job-get-print-numbers"></a>gtk_source_print_job_get_print_numbers ()</h3>
-<a class="indexterm" name="id2592297"></a><pre class="programlisting">guint       gtk_source_print_job_get_print_numbers
+<a class="indexterm" name="id2592441"></a><pre class="programlisting">guint       gtk_source_print_job_get_print_numbers
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the interval used for line number printing.  If the
@@ -1086,9 +1086,9 @@ value is 0, no line numbers will be prin
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2592362"></a><h3>
+<a name="id2592513"></a><h3>
 <a name="gtk-source-print-job-set-text-margins"></a>gtk_source_print_job_set_text_margins ()</h3>
-<a class="indexterm" name="id2592375"></a><pre class="programlisting">void        gtk_source_print_job_set_text_margins
+<a class="indexterm" name="id2592527"></a><pre class="programlisting">void        gtk_source_print_job_set_text_margins
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              gdouble top,
                                              gdouble bottom,
@@ -1147,9 +1147,9 @@ this function.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2592533"></a><h3>
+<a name="id2592704"></a><h3>
 <a name="gtk-source-print-job-get-text-margins"></a>gtk_source_print_job_get_text_margins ()</h3>
-<a class="indexterm" name="id2592546"></a><pre class="programlisting">void        gtk_source_print_job_get_text_margins
+<a class="indexterm" name="id2592718"></a><pre class="programlisting">void        gtk_source_print_job_get_text_margins
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              gdouble *top,
                                              gdouble *bottom,
@@ -1197,9 +1197,9 @@ ignore that value.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2592722"></a><h3>
+<a name="id2592914"></a><h3>
 <a name="gtk-source-print-job-print"></a>gtk_source_print_job_print ()</h3>
-<a class="indexterm" name="id2592733"></a><pre class="programlisting"><a
+<a class="indexterm" name="id2592928"></a><pre class="programlisting"><a
 href="../libgnomeprint/libgnomeprint-gnome-print-job.html#GnomePrintJob"
 >GnomePrintJob</a>* gtk_source_print_job_print   (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
@@ -1238,9 +1238,9 @@ href="../libgnomeprint/libgnomeprint-gno
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2592845"></a><h3>
+<a name="id2593050"></a><h3>
 <a name="gtk-source-print-job-print-range"></a>gtk_source_print_job_print_range ()</h3>
-<a class="indexterm" name="id2592858"></a><pre class="programlisting"><a
+<a class="indexterm" name="id2593064"></a><pre class="programlisting"><a
 href="../libgnomeprint/libgnomeprint-gnome-print-job.html#GnomePrintJob"
 >GnomePrintJob</a>* gtk_source_print_job_print_range
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
@@ -1284,9 +1284,9 @@ href="../libgnomeprint/libgnomeprint-gno
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2593025"></a><h3>
+<a name="id2593230"></a><h3>
 <a name="gtk-source-print-job-print-range-async"></a>gtk_source_print_job_print_range_async ()</h3>
-<a class="indexterm" name="id2593039"></a><pre class="programlisting">gboolean    gtk_source_print_job_print_range_async
+<a class="indexterm" name="id2593244"></a><pre class="programlisting">gboolean    gtk_source_print_job_print_range_async
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              const GtkTextIter *start,
                                              const GtkTextIter *end);</pre>
@@ -1340,9 +1340,9 @@ You may cancel the job with <a href="Gtk
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2593223"></a><h3>
+<a name="id2593428"></a><h3>
 <a name="gtk-source-print-job-cancel"></a>gtk_source_print_job_cancel ()</h3>
-<a class="indexterm" name="id2593237"></a><pre class="programlisting">void        gtk_source_print_job_cancel     (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
+<a class="indexterm" name="id2593442"></a><pre class="programlisting">void        gtk_source_print_job_cancel     (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Cancels an asynchronous printing operation.  This will remove any
 pending print idle handler and unref the current <a
@@ -1375,9 +1375,9 @@ print operation.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2593333"></a><h3>
+<a name="id2593538"></a><h3>
 <a name="gtk-source-print-job-get-print-job"></a>gtk_source_print_job_get_print_job ()</h3>
-<a class="indexterm" name="id2593348"></a><pre class="programlisting"><a
+<a class="indexterm" name="id2593553"></a><pre class="programlisting"><a
 href="../libgnomeprint/libgnomeprint-gnome-print-job.html#GnomePrintJob"
 >GnomePrintJob</a>* gtk_source_print_job_get_print_job
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
@@ -1419,9 +1419,9 @@ href="../libgnomeprint/libgnomeprint-gno
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2593474"></a><h3>
+<a name="id2593679"></a><h3>
 <a name="gtk-source-print-job-get-page"></a>gtk_source_print_job_get_page ()</h3>
-<a class="indexterm" name="id2593488"></a><pre class="programlisting">guint       gtk_source_print_job_get_page   (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
+<a class="indexterm" name="id2593693"></a><pre class="programlisting">guint       gtk_source_print_job_get_page   (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the currently printing page number.  This function is
 only valid while printing (either synchronously or asynchronously).</p>
@@ -1446,9 +1446,9 @@ only valid while printing (either synchr
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2593558"></a><h3>
+<a name="id2593764"></a><h3>
 <a name="gtk-source-print-job-get-page-count"></a>gtk_source_print_job_get_page_count ()</h3>
-<a class="indexterm" name="id2593573"></a><pre class="programlisting">guint       gtk_source_print_job_get_page_count
+<a class="indexterm" name="id2593778"></a><pre class="programlisting">guint       gtk_source_print_job_get_page_count
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the total number of pages the job will print.  The
@@ -1477,9 +1477,9 @@ returned.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2593662"></a><h3>
+<a name="id2593867"></a><h3>
 <a name="gtk-source-print-job-get-print-context"></a>gtk_source_print_job_get_print_context ()</h3>
-<a class="indexterm" name="id2593677"></a><pre class="programlisting"><a
+<a class="indexterm" name="id2593882"></a><pre class="programlisting"><a
 href="../libgnomeprint/libgnomeprint-gnome-print.html#GnomePrintContext"
 >GnomePrintContext</a>* gtk_source_print_job_get_print_context
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
@@ -1515,9 +1515,9 @@ is owned by <em class="parameter"><code>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2593787"></a><h3>
+<a name="id2593992"></a><h3>
 <a name="gtk-source-print-job-set-print-header"></a>gtk_source_print_job_set_print_header ()</h3>
-<a class="indexterm" name="id2593801"></a><pre class="programlisting">void        gtk_source_print_job_set_print_header
+<a class="indexterm" name="id2594006"></a><pre class="programlisting">void        gtk_source_print_job_set_print_header
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              gboolean setting);</pre>
 <p>
@@ -1550,9 +1550,9 @@ empty it will not be printed, regardless
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2593909"></a><h3>
+<a name="id2594114"></a><h3>
 <a name="gtk-source-print-job-get-print-header"></a>gtk_source_print_job_get_print_header ()</h3>
-<a class="indexterm" name="id2593923"></a><pre class="programlisting">gboolean    gtk_source_print_job_get_print_header
+<a class="indexterm" name="id2594128"></a><pre class="programlisting">gboolean    gtk_source_print_job_get_print_header
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines if a header is set to be printed for each page.  A
@@ -1580,9 +1580,9 @@ with <a href="GtkSourcePrintJob.html#gtk
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2594028"></a><h3>
+<a name="id2594233"></a><h3>
 <a name="gtk-source-print-job-set-print-footer"></a>gtk_source_print_job_set_print_footer ()</h3>
-<a class="indexterm" name="id2594042"></a><pre class="programlisting">void        gtk_source_print_job_set_print_footer
+<a class="indexterm" name="id2594247"></a><pre class="programlisting">void        gtk_source_print_job_set_print_footer
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              gboolean setting);</pre>
 <p>
@@ -1615,9 +1615,9 @@ empty it will not be printed, regardless
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2594150"></a><h3>
+<a name="id2594355"></a><h3>
 <a name="gtk-source-print-job-get-print-footer"></a>gtk_source_print_job_get_print_footer ()</h3>
-<a class="indexterm" name="id2594164"></a><pre class="programlisting">gboolean    gtk_source_print_job_get_print_footer
+<a class="indexterm" name="id2594370"></a><pre class="programlisting">gboolean    gtk_source_print_job_get_print_footer
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines if a footer is set to be printed for each page.  A
@@ -1645,9 +1645,9 @@ with <a href="GtkSourcePrintJob.html#gtk
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2594269"></a><h3>
+<a name="id2594474"></a><h3>
 <a name="gtk-source-print-job-set-header-footer-font-desc"></a>gtk_source_print_job_set_header_footer_font_desc ()</h3>
-<a class="indexterm" name="id2594284"></a><pre class="programlisting">void        gtk_source_print_job_set_header_footer_font_desc
+<a class="indexterm" name="id2594489"></a><pre class="programlisting">void        gtk_source_print_job_set_header_footer_font_desc
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              PangoFontDescription *desc);</pre>
 <p>
@@ -1675,9 +1675,9 @@ will be used instead.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2594394"></a><h3>
+<a name="id2594599"></a><h3>
 <a name="gtk-source-print-job-set-header-footer-font"></a>gtk_source_print_job_set_header_footer_font ()</h3>
-<a class="indexterm" name="id2594409"></a><pre class="programlisting">void        gtk_source_print_job_set_header_footer_font
+<a class="indexterm" name="id2594614"></a><pre class="programlisting">void        gtk_source_print_job_set_header_footer_font
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              const gchar *font_name);</pre>
 <p>
@@ -1715,9 +1715,9 @@ should use <a href="GtkSourcePrintJob.ht
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2594547"></a><h3>
+<a name="id2594752"></a><h3>
 <a name="gtk-source-print-job-get-header-footer-font-desc"></a>gtk_source_print_job_get_header_footer_font_desc ()</h3>
-<a class="indexterm" name="id2594561"></a><pre class="programlisting">PangoFontDescription* gtk_source_print_job_get_header_footer_font_desc
+<a class="indexterm" name="id2594766"></a><pre class="programlisting">PangoFontDescription* gtk_source_print_job_get_header_footer_font_desc
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the font to be used for the header and footer.  This function
@@ -1744,9 +1744,9 @@ owned by the job and must not be modifie
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2594653"></a><h3>
+<a name="id2594858"></a><h3>
 <a name="gtk-source-print-job-get-header-footer-font"></a>gtk_source_print_job_get_header_footer_font ()</h3>
-<a class="indexterm" name="id2594668"></a><pre class="programlisting">gchar*      gtk_source_print_job_get_header_footer_font
+<a class="indexterm" name="id2594873"></a><pre class="programlisting">gchar*      gtk_source_print_job_get_header_footer_font
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job);</pre>
 <p>
 Determines the font to be used for the header and footer.  The
@@ -1786,9 +1786,9 @@ header and footer font, or <code class="
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2594792"></a><h3>
+<a name="id2594997"></a><h3>
 <a name="gtk-source-print-job-set-header-format"></a>gtk_source_print_job_set_header_format ()</h3>
-<a class="indexterm" name="id2594806"></a><pre class="programlisting">void        gtk_source_print_job_set_header_format
+<a class="indexterm" name="id2595012"></a><pre class="programlisting">void        gtk_source_print_job_set_header_format
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              const gchar *left,
                                              const gchar *center,
@@ -1846,9 +1846,9 @@ printing with <a href="GtkSourcePrintJob
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595032"></a><h3>
+<a name="id2595237"></a><h3>
 <a name="gtk-source-print-job-set-footer-format"></a>gtk_source_print_job_set_footer_format ()</h3>
-<a class="indexterm" name="id2595047"></a><pre class="programlisting">void        gtk_source_print_job_set_footer_format
+<a class="indexterm" name="id2595252"></a><pre class="programlisting">void        gtk_source_print_job_set_footer_format
                                             (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *job,
                                              const gchar *left,
                                              const gchar *center,
@@ -1892,124 +1892,124 @@ Like <a href="GtkSourcePrintJob.html#gtk
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2595214"></a><h2>Property Details</h2>
+<a name="id2595419"></a><h2>Property Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2595225"></a><h3>
+<a name="id2595430"></a><h3>
 <a name="GtkSourcePrintJob--buffer"></a>The "<code class="literal">buffer</code>" property</h3>
-<a class="indexterm" name="id2595241"></a><pre class="programlisting">  "buffer"               <a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>       : Read / Write</pre>
+<a class="indexterm" name="id2595446"></a><pre class="programlisting">  "buffer"               <a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>       : Read / Write</pre>
 <p>GtkSourceBuffer object to print.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595264"></a><h3>
+<a name="id2595469"></a><h3>
 <a name="GtkSourcePrintJob--config"></a>The "<code class="literal">config</code>" property</h3>
-<a class="indexterm" name="id2595280"></a><pre class="programlisting">  "config"               <a
+<a class="indexterm" name="id2595485"></a><pre class="programlisting">  "config"               <a
 href="../libgnomeprint/libgnomeprint-gnome-print-config.html#GnomePrintConfig"
 >GnomePrintConfig</a>      : Read / Write</pre>
 <p>Configuration options for the print job.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595303"></a><h3>
+<a name="id2595508"></a><h3>
 <a name="GtkSourcePrintJob--font"></a>The "<code class="literal">font</code>" property</h3>
-<a class="indexterm" name="id2595319"></a><pre class="programlisting">  "font"                 gchararray            : Read / Write</pre>
+<a class="indexterm" name="id2595524"></a><pre class="programlisting">  "font"                 gchararray            : Read / Write</pre>
 <p>GnomeFont name to use for the document text (deprecated).</p>
 <p>Default value: NULL</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595346"></a><h3>
+<a name="id2595551"></a><h3>
 <a name="GtkSourcePrintJob--font-desc"></a>The "<code class="literal">font-desc</code>" property</h3>
-<a class="indexterm" name="id2595362"></a><pre class="programlisting">  "font-desc"            PangoFontDescription  : Read / Write</pre>
+<a class="indexterm" name="id2595567"></a><pre class="programlisting">  "font-desc"            PangoFontDescription  : Read / Write</pre>
 <p>Font to use for the document text (e.g. "Monospace 10").</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595386"></a><h3>
+<a name="id2595591"></a><h3>
 <a name="GtkSourcePrintJob--header-footer-font"></a>The "<code class="literal">header-footer-font</code>" property</h3>
-<a class="indexterm" name="id2595402"></a><pre class="programlisting">  "header-footer-font"   gchararray            : Read / Write</pre>
+<a class="indexterm" name="id2595608"></a><pre class="programlisting">  "header-footer-font"   gchararray            : Read / Write</pre>
 <p>GnomeFont name to use for the header and footer (deprecated).</p>
 <p>Default value: NULL</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595429"></a><h3>
+<a name="id2595634"></a><h3>
 <a name="GtkSourcePrintJob--header-footer-font-desc"></a>The "<code class="literal">header-footer-font-desc</code>" property</h3>
-<a class="indexterm" name="id2595447"></a><pre class="programlisting">  "header-footer-font-desc" PangoFontDescription  : Read / Write</pre>
+<a class="indexterm" name="id2595652"></a><pre class="programlisting">  "header-footer-font-desc" PangoFontDescription  : Read / Write</pre>
 <p>Font to use for headers and footers (e.g. "Monospace 10").</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595469"></a><h3>
+<a name="id2595674"></a><h3>
 <a name="GtkSourcePrintJob--highlight"></a>The "<code class="literal">highlight</code>" property</h3>
-<a class="indexterm" name="id2595486"></a><pre class="programlisting">  "highlight"            gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2595691"></a><pre class="programlisting">  "highlight"            gboolean              : Read / Write</pre>
 <p>Whether to print the document with highlighted syntax.</p>
 <p>Default value: TRUE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595512"></a><h3>
+<a name="id2595717"></a><h3>
 <a name="GtkSourcePrintJob--numbers-font"></a>The "<code class="literal">numbers-font</code>" property</h3>
-<a class="indexterm" name="id2595529"></a><pre class="programlisting">  "numbers-font"         gchararray            : Read / Write</pre>
+<a class="indexterm" name="id2595734"></a><pre class="programlisting">  "numbers-font"         gchararray            : Read / Write</pre>
 <p>GnomeFont name to use for the line numbers (deprecated).</p>
 <p>Default value: NULL</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595556"></a><h3>
+<a name="id2595761"></a><h3>
 <a name="GtkSourcePrintJob--numbers-font-desc"></a>The "<code class="literal">numbers-font-desc</code>" property</h3>
-<a class="indexterm" name="id2595573"></a><pre class="programlisting">  "numbers-font-desc"    PangoFontDescription  : Read / Write</pre>
+<a class="indexterm" name="id2595778"></a><pre class="programlisting">  "numbers-font-desc"    PangoFontDescription  : Read / Write</pre>
 <p>Font description to use for the line numbers.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595596"></a><h3>
+<a name="id2595801"></a><h3>
 <a name="GtkSourcePrintJob--print-footer"></a>The "<code class="literal">print-footer</code>" property</h3>
-<a class="indexterm" name="id2595613"></a><pre class="programlisting">  "print-footer"         gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2595818"></a><pre class="programlisting">  "print-footer"         gboolean              : Read / Write</pre>
 <p>Whether to print a footer in each page.</p>
 <p>Default value: FALSE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595639"></a><h3>
+<a name="id2595844"></a><h3>
 <a name="GtkSourcePrintJob--print-header"></a>The "<code class="literal">print-header</code>" property</h3>
-<a class="indexterm" name="id2595656"></a><pre class="programlisting">  "print-header"         gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2595861"></a><pre class="programlisting">  "print-header"         gboolean              : Read / Write</pre>
 <p>Whether to print a header in each page.</p>
 <p>Default value: FALSE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595682"></a><h3>
+<a name="id2595887"></a><h3>
 <a name="GtkSourcePrintJob--print-numbers"></a>The "<code class="literal">print-numbers</code>" property</h3>
-<a class="indexterm" name="id2595699"></a><pre class="programlisting">  "print-numbers"        guint                 : Read / Write</pre>
+<a class="indexterm" name="id2595904"></a><pre class="programlisting">  "print-numbers"        guint                 : Read / Write</pre>
 <p>Interval of printed line numbers (0 means no numbers).</p>
 <p>Allowed values: &lt;= 100</p>
 <p>Default value: 1</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595729"></a><h3>
+<a name="id2595934"></a><h3>
 <a name="GtkSourcePrintJob--tabs-width"></a>The "<code class="literal">tabs-width</code>" property</h3>
-<a class="indexterm" name="id2595746"></a><pre class="programlisting">  "tabs-width"           guint                 : Read / Write</pre>
+<a class="indexterm" name="id2595951"></a><pre class="programlisting">  "tabs-width"           guint                 : Read / Write</pre>
 <p>Width in equivalent space characters of tabs.</p>
 <p>Allowed values: &lt;= 100</p>
 <p>Default value: 8</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595777"></a><h3>
+<a name="id2595982"></a><h3>
 <a name="GtkSourcePrintJob--wrap-mode"></a>The "<code class="literal">wrap-mode</code>" property</h3>
-<a class="indexterm" name="id2595794"></a><pre class="programlisting">  "wrap-mode"            GtkWrapMode           : Read / Write</pre>
+<a class="indexterm" name="id2595999"></a><pre class="programlisting">  "wrap-mode"            GtkWrapMode           : Read / Write</pre>
 <p>Word wrapping mode.</p>
 <p>Default value: GTK_WRAP_NONE</p>
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2595821"></a><h2>Signal Details</h2>
+<a name="id2596026"></a><h2>Signal Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2595832"></a><h3>
+<a name="id2596037"></a><h3>
 <a name="GtkSourcePrintJob-begin-page"></a>The "begin-page" signal</h3>
-<a class="indexterm" name="id2595843"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *sourceprintjob,
+<a class="indexterm" name="id2596048"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *sourceprintjob,
                                             gpointer           user_data)           : Run last</pre>
 <p>
 Emitted whenever the <em class="parameter"><code>sourceprintjob</code></em> is about to print a new text
@@ -2035,9 +2035,9 @@ page by for example, printing your own h
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2595920"></a><h3>
+<a name="id2596125"></a><h3>
 <a name="GtkSourcePrintJob-finished"></a>The "finished" signal</h3>
-<a class="indexterm" name="id2595930"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *sourceprintjob,
+<a class="indexterm" name="id2596135"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourcePrintJob.html" title="GtkSourcePrintJob">GtkSourcePrintJob</a> *sourceprintjob,
                                             gpointer           user_data)           : Run first</pre>
 <p>
 Emitted whenever an asynchronous print job has finished.  You can
@@ -2066,7 +2066,7 @@ printed to the physical device.
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2596018"></a><h2>See Also</h2>
+<a name="id2596224"></a><h2>See Also</h2>
 <p>
 The reference documentation for <a href="GtkSourceBuffer.html" title="GtkSourceBuffer"><span class="type">GtkSourceBuffer</span></a>.  You might also want
 to check the Gnome Print library reference
diff -pruN 1.8.1-2/docs/reference/html/GtkSourceStyleScheme.html 1.8.2-0ubuntu1/docs/reference/html/GtkSourceStyleScheme.html
--- 1.8.1-2/docs/reference/html/GtkSourceStyleScheme.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/GtkSourceStyleScheme.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,18 +21,20 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td><a accesskey="n" href="GtkSourceTag.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2562905" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2529429" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2565023" class="shortcut">Description</a>
+                  <a href="#id2535883" class="shortcut">Description</a>
                   &#160;|&#160;
-                  <a href="#id2564999" class="shortcut">Object Hierarchy</a></nobr></td></tr>
+                  <a href="#id2535809" class="shortcut">Object Hierarchy</a>
+                  &#160;|&#160;
+                  <a href="#id2535833" class="shortcut">Signals</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="GtkSourceStyleScheme"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2562905"></a><span class="refentrytitle">GtkSourceStyleScheme</span>
+<a name="id2529429"></a><span class="refentrytitle">GtkSourceStyleScheme</span>
 </h2>
 <p>GtkSourceStyleScheme &#8212; </p>
 </td>
@@ -58,7 +60,7 @@ const gchar* <a href="GtkSourceStyleSche
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2564999"></a><h2>Object Hierarchy</h2>
+<a name="id2535809"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
 
   GInterface
@@ -66,26 +68,36 @@ const gchar* <a href="GtkSourceStyleSche
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2565023"></a><h2>Description</h2>
+<a name="id2535833"></a><h2>Signals</h2>
+<pre class="synopsis">
+
+"<a href="GtkSourceStyleScheme.html#GtkSourceStyleScheme-style-changed">style-changed</a>"
+            void        user_function      (<a href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a> *sourcestylescheme,
+                                            gchar                *arg1,
+                                            gpointer              user_data)              : Run last
+</pre>
+</div>
+<div class="refsect1" lang="en">
+<a name="id2535883"></a><h2>Description</h2>
 <p>
 
 </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2565039"></a><h2>Details</h2>
+<a name="id2535899"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2565050"></a><h3>
+<a name="id2535910"></a><h3>
 <a name="GtkSourceStyleScheme-struct"></a>GtkSourceStyleScheme</h3>
-<a class="indexterm" name="id2577867"></a><pre class="programlisting">typedef struct _GtkSourceStyleScheme GtkSourceStyleScheme;</pre>
+<a class="indexterm" name="id2527468"></a><pre class="programlisting">typedef struct _GtkSourceStyleScheme GtkSourceStyleScheme;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577883"></a><h3>
+<a name="id2527484"></a><h3>
 <a name="GtkSourceStyleSchemeClass"></a>GtkSourceStyleSchemeClass</h3>
-<a class="indexterm" name="id2577894"></a><pre class="programlisting">typedef struct {
+<a class="indexterm" name="id2527495"></a><pre class="programlisting">typedef struct {
 	GTypeInterface	base_iface;
 
 	/* signals */
@@ -111,9 +123,9 @@ const gchar* <a href="GtkSourceStyleSche
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2552173"></a><h3>
+<a name="id2546543"></a><h3>
 <a name="gtk-source-style-scheme-get-tag-style"></a>gtk_source_style_scheme_get_tag_style ()</h3>
-<a class="indexterm" name="id2561202"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_style_scheme_get_tag_style
+<a class="indexterm" name="id2528506"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_style_scheme_get_tag_style
                                             (<a href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a> *scheme,
                                              const gchar *style_name);</pre>
 <p>
@@ -144,9 +156,9 @@ Gets the tag associated with the given <
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577996"></a><h3>
+<a name="id2527603"></a><h3>
 <a name="gtk-source-style-scheme-get-name"></a>gtk_source_style_scheme_get_name ()</h3>
-<a class="indexterm" name="id2578007"></a><pre class="programlisting">const gchar* gtk_source_style_scheme_get_name
+<a class="indexterm" name="id2527614"></a><pre class="programlisting">const gchar* gtk_source_style_scheme_get_name
                                             (<a href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a> *scheme);</pre>
 <p>
 Gets the name of the given style <em class="parameter"><code>scheme</code></em>.</p>
@@ -171,9 +183,9 @@ Gets the name of the given style <em cla
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2578081"></a><h3>
+<a name="id2527687"></a><h3>
 <a name="gtk-source-style-scheme-get-default"></a>gtk_source_style_scheme_get_default ()</h3>
-<a class="indexterm" name="id2578094"></a><pre class="programlisting"><a href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>* gtk_source_style_scheme_get_default
+<a class="indexterm" name="id2527699"></a><pre class="programlisting"><a href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a>* gtk_source_style_scheme_get_default
                                             (void);</pre>
 <p>
 Gets the default style scheme.</p>
@@ -190,6 +202,39 @@ Gets the default style scheme.</p>
 </table></div>
 </div>
 </div>
+<div class="refsect1" lang="en">
+<a name="id2527087"></a><h2>Signal Details</h2>
+<div class="refsect2" lang="en">
+<a name="id2527098"></a><h3>
+<a name="GtkSourceStyleScheme-style-changed"></a>The "style-changed" signal</h3>
+<a class="indexterm" name="id2527107"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceStyleScheme.html" title="GtkSourceStyleScheme">GtkSourceStyleScheme</a> *sourcestylescheme,
+                                            gchar                *arg1,
+                                            gpointer              user_data)              : Run last</pre>
+<p>
+
+</p>
+<div class="variablelist"><table border="0">
+<col align="left" valign="top">
+<tbody>
+<tr>
+<td><span class="term"><em class="parameter"><code>sourcestylescheme</code></em>&#160;:</span></td>
+<td>the object which received the signal.
+</td>
+</tr>
+<tr>
+<td><span class="term"><em class="parameter"><code>arg1</code></em>&#160;:</span></td>
+<td>
+
+</td>
+</tr>
+<tr>
+<td><span class="term"><em class="parameter"><code>user_data</code></em>&#160;:</span></td>
+<td>user data set when the signal handler was connected.</td>
+</tr>
+</tbody>
+</table></div>
+</div>
+</div>
 </div>
 </body>
 </html>
diff -pruN 1.8.1-2/docs/reference/html/GtkSourceTag.html 1.8.2-0ubuntu1/docs/reference/html/GtkSourceTag.html
--- 1.8.1-2/docs/reference/html/GtkSourceTag.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/GtkSourceTag.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,20 +21,20 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td><a accesskey="n" href="GtkSourceTagTable.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2533852" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2553337" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2574340" class="shortcut">Description</a>
+                  <a href="#id2578009" class="shortcut">Description</a>
                   &#160;|&#160;
-                  <a href="#id2578258" class="shortcut">Object Hierarchy</a>
+                  <a href="#id2527032" class="shortcut">Object Hierarchy</a>
                   &#160;|&#160;
-                  <a href="#id2578349" class="shortcut">Properties</a></nobr></td></tr>
+                  <a href="#id2577966" class="shortcut">Properties</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="GtkSourceTag"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2533852"></a><span class="refentrytitle">GtkSourceTag</span>
+<a name="id2553337"></a><span class="refentrytitle">GtkSourceTag</span>
 </h2>
 <p>GtkSourceTag &#8212; </p>
 </td>
@@ -84,7 +84,7 @@ GtkTextTag* <a href="GtkSourceTag.html#g
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2578258"></a><h2>Object Hierarchy</h2>
+<a name="id2527032"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
 
   GObject
@@ -109,7 +109,7 @@ GtkTextTag* <a href="GtkSourceTag.html#g
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2578349"></a><h2>Properties</h2>
+<a name="id2577966"></a><h2>Properties</h2>
 <pre class="synopsis">
 
   "<a href="GtkSourceTag.html#GtkSourceTag--id">id</a>"                   gchararray            : Read / Write / Construct Only
@@ -117,71 +117,71 @@ GtkTextTag* <a href="GtkSourceTag.html#g
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2574340"></a><h2>Description</h2>
+<a name="id2578009"></a><h2>Description</h2>
 <p>
 
 </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2574356"></a><h2>Details</h2>
+<a name="id2578025"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2574366"></a><h3>
+<a name="id2578036"></a><h3>
 <a name="GtkSourceTag-struct"></a>GtkSourceTag</h3>
-<a class="indexterm" name="id2574379"></a><pre class="programlisting">typedef struct _GtkSourceTag GtkSourceTag;</pre>
+<a class="indexterm" name="id2578048"></a><pre class="programlisting">typedef struct _GtkSourceTag GtkSourceTag;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574394"></a><h3>
+<a name="id2578064"></a><h3>
 <a name="GtkSourceTagClass"></a>GtkSourceTagClass</h3>
-<a class="indexterm" name="id2574407"></a><pre class="programlisting">typedef struct _GtkSourceTagClass GtkSourceTagClass;</pre>
+<a class="indexterm" name="id2578076"></a><pre class="programlisting">typedef struct _GtkSourceTagClass GtkSourceTagClass;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574423"></a><h3>
+<a name="id2578092"></a><h3>
 <a name="GtkSyntaxTag-struct"></a>GtkSyntaxTag</h3>
-<a class="indexterm" name="id2574436"></a><pre class="programlisting">typedef struct _GtkSyntaxTag GtkSyntaxTag;</pre>
+<a class="indexterm" name="id2578105"></a><pre class="programlisting">typedef struct _GtkSyntaxTag GtkSyntaxTag;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574451"></a><h3>
+<a name="id2578120"></a><h3>
 <a name="GtkSyntaxTagClass"></a>GtkSyntaxTagClass</h3>
-<a class="indexterm" name="id2574463"></a><pre class="programlisting">typedef struct _GtkSyntaxTagClass GtkSyntaxTagClass;</pre>
+<a class="indexterm" name="id2578133"></a><pre class="programlisting">typedef struct _GtkSyntaxTagClass GtkSyntaxTagClass;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574480"></a><h3>
+<a name="id2578149"></a><h3>
 <a name="GtkPatternTag-struct"></a>GtkPatternTag</h3>
-<a class="indexterm" name="id2574492"></a><pre class="programlisting">typedef struct _GtkPatternTag GtkPatternTag;</pre>
+<a class="indexterm" name="id2574326"></a><pre class="programlisting">typedef struct _GtkPatternTag GtkPatternTag;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574508"></a><h3>
+<a name="id2574342"></a><h3>
 <a name="GtkPatternTagClass"></a>GtkPatternTagClass</h3>
-<a class="indexterm" name="id2574520"></a><pre class="programlisting">typedef struct _GtkPatternTagClass GtkPatternTagClass;</pre>
+<a class="indexterm" name="id2574355"></a><pre class="programlisting">typedef struct _GtkPatternTagClass GtkPatternTagClass;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574537"></a><h3>
+<a name="id2574371"></a><h3>
 <a name="gtk-source-tag-get-style"></a>gtk_source_tag_get_style ()</h3>
-<a class="indexterm" name="id2574548"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_tag_get_style (<a href="GtkSourceTag.html" title="GtkSourceTag">GtkSourceTag</a> *tag);</pre>
+<a class="indexterm" name="id2574383"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_tag_get_style (<a href="GtkSourceTag.html" title="GtkSourceTag">GtkSourceTag</a> *tag);</pre>
 <p>
 Gets the style associated with the given <em class="parameter"><code>tag</code></em>.</p>
 <p>
@@ -205,9 +205,9 @@ Gets the style associated with the given
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574638"></a><h3>
+<a name="id2574472"></a><h3>
 <a name="gtk-source-tag-set-style"></a>gtk_source_tag_set_style ()</h3>
-<a class="indexterm" name="id2574649"></a><pre class="programlisting">void        gtk_source_tag_set_style        (<a href="GtkSourceTag.html" title="GtkSourceTag">GtkSourceTag</a> *tag,
+<a class="indexterm" name="id2574483"></a><pre class="programlisting">void        gtk_source_tag_set_style        (<a href="GtkSourceTag.html" title="GtkSourceTag">GtkSourceTag</a> *tag,
                                              const <a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a> *style);</pre>
 <p>
 Associates a given <em class="parameter"><code>style</code></em> with the given <em class="parameter"><code>tag</code></em>.</p>
@@ -232,9 +232,9 @@ Associates a given <em class="parameter"
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574745"></a><h3>
+<a name="id2574580"></a><h3>
 <a name="gtk-syntax-tag-new"></a>gtk_syntax_tag_new ()</h3>
-<a class="indexterm" name="id2579629"></a><pre class="programlisting">GtkTextTag* gtk_syntax_tag_new              (const gchar *id,
+<a class="indexterm" name="id2579832"></a><pre class="programlisting">GtkTextTag* gtk_syntax_tag_new              (const gchar *id,
                                              const gchar *name,
                                              const gchar *pattern_start,
                                              const gchar *pattern_end);</pre>
@@ -276,9 +276,9 @@ Creates a new syntax tag object with the
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2579746"></a><h3>
+<a name="id2579921"></a><h3>
 <a name="gtk-pattern-tag-new"></a>gtk_pattern_tag_new ()</h3>
-<a class="indexterm" name="id2579756"></a><pre class="programlisting">GtkTextTag* gtk_pattern_tag_new             (const gchar *id,
+<a class="indexterm" name="id2579931"></a><pre class="programlisting">GtkTextTag* gtk_pattern_tag_new             (const gchar *id,
                                              const gchar *name,
                                              const gchar *pattern);</pre>
 <p>
@@ -314,9 +314,9 @@ Creates a new pattern tag object with th
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2579864"></a><h3>
+<a name="id2580029"></a><h3>
 <a name="gtk-keyword-list-tag-new"></a>gtk_keyword_list_tag_new ()</h3>
-<a class="indexterm" name="id2556289"></a><pre class="programlisting">GtkTextTag* gtk_keyword_list_tag_new        (const gchar *id,
+<a class="indexterm" name="id2580039"></a><pre class="programlisting">GtkTextTag* gtk_keyword_list_tag_new        (const gchar *id,
                                              const gchar *name,
                                              const GSList *keywords,
                                              gboolean case_sensitive,
@@ -384,18 +384,19 @@ string at the end. 
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2580056"></a><h3>
+<a name="id2580237"></a><h3>
 <a name="gtk-block-comment-tag-new"></a>gtk_block_comment_tag_new</h3>
-<a class="indexterm" name="id2580067"></a><pre class="programlisting">#define     gtk_block_comment_tag_new</pre>
+<a class="indexterm" name="id2580247"></a><pre class="programlisting">#define gtk_block_comment_tag_new	gtk_syntax_tag_new
+</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2580081"></a><h3>
+<a name="id2580262"></a><h3>
 <a name="gtk-line-comment-tag-new"></a>gtk_line_comment_tag_new ()</h3>
-<a class="indexterm" name="id2580092"></a><pre class="programlisting">GtkTextTag* gtk_line_comment_tag_new        (const gchar *id,
+<a class="indexterm" name="id2580272"></a><pre class="programlisting">GtkTextTag* gtk_line_comment_tag_new        (const gchar *id,
                                              const gchar *name,
                                              const gchar *pattern_start);</pre>
 <p>
@@ -431,9 +432,9 @@ Creates a new line comment tag object wi
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2580191"></a><h3>
+<a name="id2580371"></a><h3>
 <a name="gtk-string-tag-new"></a>gtk_string_tag_new ()</h3>
-<a class="indexterm" name="id2580201"></a><pre class="programlisting">GtkTextTag* gtk_string_tag_new              (const gchar *id,
+<a class="indexterm" name="id2580381"></a><pre class="programlisting">GtkTextTag* gtk_string_tag_new              (const gchar *id,
                                              const gchar *name,
                                              const gchar *pattern_start,
                                              const gchar *pattern_end,
@@ -481,19 +482,19 @@ Creates a new string tag object with the
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2580341"></a><h2>Property Details</h2>
+<a name="id2580521"></a><h2>Property Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2580350"></a><h3>
+<a name="id2580530"></a><h3>
 <a name="GtkSourceTag--id"></a>The "<code class="literal">id</code>" property</h3>
-<a class="indexterm" name="id2580363"></a><pre class="programlisting">  "id"                   gchararray            : Read / Write / Construct Only</pre>
+<a class="indexterm" name="id2580543"></a><pre class="programlisting">  "id"                   gchararray            : Read / Write / Construct Only</pre>
 <p>ID used to refer to the source tag.</p>
 <p>Default value: NULL</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2580386"></a><h3>
+<a name="id2580566"></a><h3>
 <a name="GtkSourceTag--tag-style"></a>The "<code class="literal">tag-style</code>" property</h3>
-<a class="indexterm" name="id2580399"></a><pre class="programlisting">  "tag-style"            <a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>     : Read / Write</pre>
+<a class="indexterm" name="id2580578"></a><pre class="programlisting">  "tag-style"            <a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>     : Read / Write</pre>
 <p>The style associated with the source tag.</p>
 </div>
 </div>
diff -pruN 1.8.1-2/docs/reference/html/GtkSourceTagTable.html 1.8.2-0ubuntu1/docs/reference/html/GtkSourceTagTable.html
--- 1.8.1-2/docs/reference/html/GtkSourceTagTable.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/GtkSourceTagTable.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,20 +21,20 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td><a accesskey="n" href="gtksourceview-GtkSourceTagStyle.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2524145" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2532154" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2573065" class="shortcut">Description</a>
+                  <a href="#id2566256" class="shortcut">Description</a>
                   &#160;|&#160;
-                  <a href="#id2572992" class="shortcut">Object Hierarchy</a>
+                  <a href="#id2566183" class="shortcut">Object Hierarchy</a>
                   &#160;|&#160;
-                  <a href="#id2573022" class="shortcut">Signals</a></nobr></td></tr>
+                  <a href="#id2566214" class="shortcut">Signals</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="GtkSourceTagTable"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2524145"></a><span class="refentrytitle">GtkSourceTagTable</span>
+<a name="id2532154"></a><span class="refentrytitle">GtkSourceTagTable</span>
 </h2>
 <p>GtkSourceTagTable &#8212; </p>
 </td>
@@ -57,7 +57,7 @@ void        <a href="GtkSourceTagTable.h
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2572992"></a><h2>Object Hierarchy</h2>
+<a name="id2566183"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
 
   GObject
@@ -66,7 +66,7 @@ void        <a href="GtkSourceTagTable.h
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2573022"></a><h2>Signals</h2>
+<a name="id2566214"></a><h2>Signals</h2>
 <pre class="synopsis">
 
 "<a href="GtkSourceTagTable.html#GtkSourceTagTable-changed">changed</a>"   void        user_function      (<a href="GtkSourceTagTable.html" title="GtkSourceTagTable">GtkSourceTagTable</a> *sourcetagtable,
@@ -74,26 +74,26 @@ void        <a href="GtkSourceTagTable.h
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2573065"></a><h2>Description</h2>
+<a name="id2566256"></a><h2>Description</h2>
 <p>
 
 </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2573081"></a><h2>Details</h2>
+<a name="id2566272"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2573092"></a><h3>
+<a name="id2566283"></a><h3>
 <a name="GtkSourceTagTable-struct"></a>GtkSourceTagTable</h3>
-<a class="indexterm" name="id2536438"></a><pre class="programlisting">typedef struct _GtkSourceTagTable GtkSourceTagTable;</pre>
+<a class="indexterm" name="id2578282"></a><pre class="programlisting">typedef struct _GtkSourceTagTable GtkSourceTagTable;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2536455"></a><h3>
+<a name="id2578298"></a><h3>
 <a name="gtk-source-tag-table-new"></a>gtk_source_tag_table_new ()</h3>
-<a class="indexterm" name="id2536466"></a><pre class="programlisting"><a href="GtkSourceTagTable.html" title="GtkSourceTagTable">GtkSourceTagTable</a>* gtk_source_tag_table_new (void);</pre>
+<a class="indexterm" name="id2578309"></a><pre class="programlisting"><a href="GtkSourceTagTable.html" title="GtkSourceTagTable">GtkSourceTagTable</a>* gtk_source_tag_table_new (void);</pre>
 <p>
 Creates a new <a href="GtkSourceTagTable.html" title="GtkSourceTagTable"><span class="type">GtkSourceTagTable</span></a>. The table contains no tags by
 default.</p>
@@ -111,9 +111,9 @@ default.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2536520"></a><h3>
+<a name="id2578363"></a><h3>
 <a name="gtk-source-tag-table-add-tags"></a>gtk_source_tag_table_add_tags ()</h3>
-<a class="indexterm" name="id2536531"></a><pre class="programlisting">void        gtk_source_tag_table_add_tags   (<a href="GtkSourceTagTable.html" title="GtkSourceTagTable">GtkSourceTagTable</a> *table,
+<a class="indexterm" name="id2578374"></a><pre class="programlisting">void        gtk_source_tag_table_add_tags   (<a href="GtkSourceTagTable.html" title="GtkSourceTagTable">GtkSourceTagTable</a> *table,
                                              const GSList *tags);</pre>
 <p>
 Adds a list of tag to the table. The added tags are assigned the highest priority
@@ -143,9 +143,9 @@ then it is not added to the table.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2536655"></a><h3>
+<a name="id2527288"></a><h3>
 <a name="gtk-source-tag-table-remove-source-tags"></a>gtk_source_tag_table_remove_source_tags ()</h3>
-<a class="indexterm" name="id2536668"></a><pre class="programlisting">void        gtk_source_tag_table_remove_source_tags
+<a class="indexterm" name="id2527301"></a><pre class="programlisting">void        gtk_source_tag_table_remove_source_tags
                                             (<a href="GtkSourceTagTable.html" title="GtkSourceTagTable">GtkSourceTagTable</a> *table);</pre>
 <p>
 Removes all the source tags from the table. This will remove the table's
@@ -165,11 +165,11 @@ up destroyed if you don't have a referen
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2536731"></a><h2>Signal Details</h2>
+<a name="id2527364"></a><h2>Signal Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2536742"></a><h3>
+<a name="id2527375"></a><h3>
 <a name="GtkSourceTagTable-changed"></a>The "changed" signal</h3>
-<a class="indexterm" name="id2536750"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceTagTable.html" title="GtkSourceTagTable">GtkSourceTagTable</a> *sourcetagtable,
+<a class="indexterm" name="id2527382"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceTagTable.html" title="GtkSourceTagTable">GtkSourceTagTable</a> *sourcetagtable,
                                             gpointer           user_data)           : Run last</pre>
 <p>
 
diff -pruN 1.8.1-2/docs/reference/html/gtksourceview.devhelp 1.8.2-0ubuntu1/docs/reference/html/gtksourceview.devhelp
--- 1.8.1-2/docs/reference/html/gtksourceview.devhelp	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/gtksourceview.devhelp	2006-12-13 12:05:11.000000000 +0000
@@ -134,6 +134,7 @@
     <function name="gtk_source_style_scheme_get_tag_style ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-tag-style"/>
     <function name="gtk_source_style_scheme_get_name ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-name"/>
     <function name="gtk_source_style_scheme_get_default ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-default"/>
+    <function name="The &quot;style-changed&quot; signal" link="GtkSourceStyleScheme.html#GtkSourceStyleScheme-style-changed"/>
     <function name="GtkSourceTag" link="GtkSourceTag.html#GtkSourceTag-struct"/>
     <function name="GtkSourceTagClass" link="GtkSourceTag.html#GtkSourceTagClass"/>
     <function name="GtkSyntaxTag" link="GtkSourceTag.html#GtkSyntaxTag-struct"/>
diff -pruN 1.8.1-2/docs/reference/html/gtksourceview.devhelp2 1.8.2-0ubuntu1/docs/reference/html/gtksourceview.devhelp2
--- 1.8.1-2/docs/reference/html/gtksourceview.devhelp2	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/gtksourceview.devhelp2	2006-12-13 12:05:11.000000000 +0000
@@ -134,6 +134,7 @@
     <keyword type="function" name="gtk_source_style_scheme_get_tag_style ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-tag-style"/>
     <keyword type="function" name="gtk_source_style_scheme_get_name ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-name"/>
     <keyword type="function" name="gtk_source_style_scheme_get_default ()" link="GtkSourceStyleScheme.html#gtk-source-style-scheme-get-default"/>
+    <keyword type="" name="The &quot;style-changed&quot; signal" link="GtkSourceStyleScheme.html#GtkSourceStyleScheme-style-changed"/>
     <keyword type="struct" name="GtkSourceTag" link="GtkSourceTag.html#GtkSourceTag-struct"/>
     <keyword type="struct" name="GtkSourceTagClass" link="GtkSourceTag.html#GtkSourceTagClass"/>
     <keyword type="struct" name="GtkSyntaxTag" link="GtkSourceTag.html#GtkSyntaxTag-struct"/>
diff -pruN 1.8.1-2/docs/reference/html/gtksourceview-GtkSourceMarker.html 1.8.2-0ubuntu1/docs/reference/html/gtksourceview-GtkSourceMarker.html
--- 1.8.1-2/docs/reference/html/gtksourceview-GtkSourceMarker.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/gtksourceview-GtkSourceMarker.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,16 +21,16 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td><a accesskey="n" href="GtkSourceView.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2562885" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2559450" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2544552" class="shortcut">Description</a></nobr></td></tr>
+                  <a href="#id2544574" class="shortcut">Description</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="gtksourceview-GtkSourceMarker"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2562885"></a><span class="refentrytitle">GtkSourceMarker</span>
+<a name="id2559450"></a><span class="refentrytitle">GtkSourceMarker</span>
 </h2>
 <p>GtkSourceMarker &#8212; </p>
 </td>
@@ -59,25 +59,27 @@ const gchar* <a href="gtksourceview-GtkS
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2544552"></a><h2>Description</h2>
+<a name="id2544574"></a><h2>Description</h2>
 <p>
 
 </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2544568"></a><h2>Details</h2>
+<a name="id2544590"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2544578"></a><h3>
+<a name="id2544600"></a><h3>
 <a name="GtkSourceMarker"></a>GtkSourceMarker</h3>
-<a class="indexterm" name="id2533120"></a><p>
+<a class="indexterm" name="id2533144"></a><pre class="programlisting">typedef GtkTextMark      GtkSourceMarker;
+</pre>
+<p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2533130"></a><h3>
+<a name="id2533160"></a><h3>
 <a name="gtk-source-marker-set-marker-type"></a>gtk_source_marker_set_marker_type ()</h3>
-<a class="indexterm" name="id2533141"></a><pre class="programlisting">void        gtk_source_marker_set_marker_type
+<a class="indexterm" name="id2533172"></a><pre class="programlisting">void        gtk_source_marker_set_marker_type
                                             (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker,
                                              const gchar *type);</pre>
 <p>
@@ -103,9 +105,9 @@ const gchar* <a href="gtksourceview-GtkS
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2533209"></a><h3>
+<a name="id2533239"></a><h3>
 <a name="gtk-source-marker-get-marker-type"></a>gtk_source_marker_get_marker_type ()</h3>
-<a class="indexterm" name="id2533221"></a><pre class="programlisting">gchar*      gtk_source_marker_get_marker_type
+<a class="indexterm" name="id2533253"></a><pre class="programlisting">gchar*      gtk_source_marker_get_marker_type
                                             (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
 <p>
 Gets the marker type of this <em class="parameter"><code>marker</code></em>.</p>
@@ -130,9 +132,9 @@ Gets the marker type of this <em class="
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2565652"></a><h3>
+<a name="id2532305"></a><h3>
 <a name="gtk-source-marker-get-line"></a>gtk_source_marker_get_line ()</h3>
-<a class="indexterm" name="id2565664"></a><pre class="programlisting">gint        gtk_source_marker_get_line      (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
+<a class="indexterm" name="id2532317"></a><pre class="programlisting">gint        gtk_source_marker_get_line      (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
 <p>
 Gets the line number of this <em class="parameter"><code>marker</code></em>.</p>
 <p>
@@ -156,9 +158,9 @@ Gets the line number of this <em class="
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2565737"></a><h3>
+<a name="id2532390"></a><h3>
 <a name="gtk-source-marker-get-name"></a>gtk_source_marker_get_name ()</h3>
-<a class="indexterm" name="id2565749"></a><pre class="programlisting">const gchar* gtk_source_marker_get_name     (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
+<a class="indexterm" name="id2532402"></a><pre class="programlisting">const gchar* gtk_source_marker_get_name     (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
 <p>
 Gets the name of this <em class="parameter"><code>marker</code></em>.</p>
 <p>
@@ -182,9 +184,9 @@ Gets the name of this <em class="paramet
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2565823"></a><h3>
+<a name="id2532476"></a><h3>
 <a name="gtk-source-marker-get-buffer"></a>gtk_source_marker_get_buffer ()</h3>
-<a class="indexterm" name="id2565836"></a><pre class="programlisting"><a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>* gtk_source_marker_get_buffer
+<a class="indexterm" name="id2532490"></a><pre class="programlisting"><a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a>* gtk_source_marker_get_buffer
                                             (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
 <p>
 Gets the buffer associated with this <em class="parameter"><code>marker</code></em>.</p>
@@ -209,9 +211,9 @@ Gets the buffer associated with this <em
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2476059"></a><h3>
+<a name="id2476089"></a><h3>
 <a name="gtk-source-marker-next"></a>gtk_source_marker_next ()</h3>
-<a class="indexterm" name="id2476071"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_marker_next     (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
+<a class="indexterm" name="id2476100"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_marker_next     (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
 <p>
 Gets the next marker after <em class="parameter"><code>marker</code></em>.</p>
 <p>
@@ -235,9 +237,9 @@ Gets the next marker after <em class="pa
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2476152"></a><h3>
+<a name="id2476182"></a><h3>
 <a name="gtk-source-marker-prev"></a>gtk_source_marker_prev ()</h3>
-<a class="indexterm" name="id2476163"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_marker_prev     (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
+<a class="indexterm" name="id2476193"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a>* gtk_source_marker_prev     (<a href="gtksourceview-GtkSourceMarker.html#GtkSourceMarker">GtkSourceMarker</a> *marker);</pre>
 <p>
 Gets the previous marker before <em class="parameter"><code>marker</code></em>.</p>
 <p>
diff -pruN 1.8.1-2/docs/reference/html/gtksourceview-GtkSourceTagStyle.html 1.8.2-0ubuntu1/docs/reference/html/gtksourceview-GtkSourceTagStyle.html
--- 1.8.1-2/docs/reference/html/gtksourceview-GtkSourceTagStyle.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/gtksourceview-GtkSourceTagStyle.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,16 +21,16 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td><a accesskey="n" href="GtkSourcePrintJob.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2533643" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2552154" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2580467" class="shortcut">Description</a></nobr></td></tr>
+                  <a href="#id2555149" class="shortcut">Description</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="gtksourceview-GtkSourceTagStyle"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2533643"></a><span class="refentrytitle">GtkSourceTagStyle</span>
+<a name="id2552154"></a><span class="refentrytitle">GtkSourceTagStyle</span>
 </h2>
 <p>GtkSourceTagStyle &#8212; </p>
 </td>
@@ -54,17 +54,17 @@ void        <a href="gtksourceview-GtkSo
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2580467"></a><h2>Description</h2>
+<a name="id2555149"></a><h2>Description</h2>
 <p>
 
 </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2580482"></a><h2>Details</h2>
+<a name="id2555164"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2580493"></a><h3>
+<a name="id2555175"></a><h3>
 <a name="GtkSourceTagStyle"></a>GtkSourceTagStyle</h3>
-<a class="indexterm" name="id2580506"></a><pre class="programlisting">typedef struct {
+<a class="indexterm" name="id2555188"></a><pre class="programlisting">typedef struct {
 	/* readonly */
 	gboolean is_default;
 
@@ -88,9 +88,9 @@ void        <a href="gtksourceview-GtkSo
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2580526"></a><h3>
+<a name="id2555208"></a><h3>
 <a name="GtkSourceTagStyleMask"></a>enum GtkSourceTagStyleMask</h3>
-<a class="indexterm" name="id2580537"></a><pre class="programlisting">typedef enum {
+<a class="indexterm" name="id2555219"></a><pre class="programlisting">typedef enum {
 	GTK_SOURCE_TAG_STYLE_USE_BACKGROUND = 1 &lt;&lt; 0,	/*&lt; nick=use_background &gt;*/
 	GTK_SOURCE_TAG_STYLE_USE_FOREGROUND = 1 &lt;&lt; 1	/*&lt; nick=use_foreground &gt;*/
 } GtkSourceTagStyleMask; 
@@ -101,18 +101,19 @@ void        <a href="gtksourceview-GtkSo
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2580555"></a><h3>
+<a name="id2555237"></a><h3>
 <a name="GTK-TYPE-SOURCE-TAG-STYLE:CAPS"></a>GTK_TYPE_SOURCE_TAG_STYLE</h3>
-<a class="indexterm" name="id2580567"></a><pre class="programlisting">#define     GTK_TYPE_SOURCE_TAG_STYLE</pre>
+<a class="indexterm" name="id2555249"></a><pre class="programlisting">#define GTK_TYPE_SOURCE_TAG_STYLE     (gtk_source_tag_style_get_type ())
+</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2580582"></a><h3>
+<a name="id2542698"></a><h3>
 <a name="gtk-source-tag-style-get-type"></a>gtk_source_tag_style_get_type ()</h3>
-<a class="indexterm" name="id2580593"></a><pre class="programlisting">GType       gtk_source_tag_style_get_type   (void);</pre>
+<a class="indexterm" name="id2542709"></a><pre class="programlisting">GType       gtk_source_tag_style_get_type   (void);</pre>
 <p>
 Retrieves the GType object which is associated with the
 <a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle"><span class="type">GtkSourceTagStyle</span></a> class.</p>
@@ -130,9 +131,9 @@ Retrieves the GType object which is asso
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2580648"></a><h3>
+<a name="id2542764"></a><h3>
 <a name="gtk-source-tag-style-new"></a>gtk_source_tag_style_new ()</h3>
-<a class="indexterm" name="id2580659"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_tag_style_new (void);</pre>
+<a class="indexterm" name="id2542776"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_tag_style_new (void);</pre>
 <p>
 Creates a new tag style object.</p>
 <p>
@@ -149,9 +150,9 @@ Creates a new tag style object.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2573128"></a><h3>
+<a name="id2542822"></a><h3>
 <a name="gtk-source-tag-style-copy"></a>gtk_source_tag_style_copy ()</h3>
-<a class="indexterm" name="id2573140"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_tag_style_copy
+<a class="indexterm" name="id2542833"></a><pre class="programlisting"><a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a>* gtk_source_tag_style_copy
                                             (const <a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a> *style);</pre>
 <p>
 Makes a copy of the given <em class="parameter"><code>style</code></em>.</p>
@@ -176,9 +177,9 @@ Makes a copy of the given <em class="par
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2573222"></a><h3>
+<a name="id2579371"></a><h3>
 <a name="gtk-source-tag-style-free"></a>gtk_source_tag_style_free ()</h3>
-<a class="indexterm" name="id2573233"></a><pre class="programlisting">void        gtk_source_tag_style_free       (<a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a> *style);</pre>
+<a class="indexterm" name="id2579382"></a><pre class="programlisting">void        gtk_source_tag_style_free       (<a href="gtksourceview-GtkSourceTagStyle.html#GtkSourceTagStyle">GtkSourceTagStyle</a> *style);</pre>
 <p>
 Frees the resources allocated by the given <em class="parameter"><code>style</code></em>.</p>
 <p>
diff -pruN 1.8.1-2/docs/reference/html/GtkSourceView.html 1.8.2-0ubuntu1/docs/reference/html/GtkSourceView.html
--- 1.8.1-2/docs/reference/html/GtkSourceView.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/GtkSourceView.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,26 +21,26 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td><a accesskey="n" href="GtkSourceLanguage.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2534253" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2561071" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2574854" class="shortcut">Description</a>
+                  <a href="#id2574885" class="shortcut">Description</a>
                   &#160;|&#160;
-                  <a href="#id2528559" class="shortcut">Object Hierarchy</a>
+                  <a href="#id2522709" class="shortcut">Object Hierarchy</a>
                   &#160;|&#160;
-                  <a href="#id2527938" class="shortcut">Implemented Interfaces</a>
+                  <a href="#id2522191" class="shortcut">Implemented Interfaces</a>
                   &#160;|&#160;
-                  <a href="#id2527959" class="shortcut">Properties</a>
+                  <a href="#id2522212" class="shortcut">Properties</a>
                   &#160;|&#160;
-                  <a href="#id2528104" class="shortcut">Style Properties</a>
+                  <a href="#id2522357" class="shortcut">Style Properties</a>
                   &#160;|&#160;
-                  <a href="#id2528183" class="shortcut">Signals</a></nobr></td></tr>
+                  <a href="#id2522437" class="shortcut">Signals</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="GtkSourceView"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2534253"></a><span class="refentrytitle">GtkSourceView</span>
+<a name="id2561071"></a><span class="refentrytitle">GtkSourceView</span>
 </h2>
 <p>GtkSourceView &#8212; </p>
 </td>
@@ -109,7 +109,7 @@ gboolean    <a href="GtkSourceView.html#
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2528559"></a><h2>Object Hierarchy</h2>
+<a name="id2522709"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
 
   GObject
@@ -122,13 +122,13 @@ gboolean    <a href="GtkSourceView.html#
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2527938"></a><h2>Implemented Interfaces</h2>
+<a name="id2522191"></a><h2>Implemented Interfaces</h2>
 <p>
 GtkSourceView implements
  AtkImplementorIface.</p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2527959"></a><h2>Properties</h2>
+<a name="id2522212"></a><h2>Properties</h2>
 <pre class="synopsis">
 
   "<a href="GtkSourceView.html#GtkSourceView--auto-indent">auto-indent</a>"          gboolean              : Read / Write
@@ -144,7 +144,7 @@ GtkSourceView implements
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2528104"></a><h2>Style Properties</h2>
+<a name="id2522357"></a><h2>Style Properties</h2>
 <pre class="synopsis">
 
   "<a href="GtkSourceView.html#GtkSourceView--right-margin-line-alpha">right-margin-line-alpha</a>" gint                  : Read
@@ -155,7 +155,7 @@ GtkSourceView implements
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2528183"></a><h2>Signals</h2>
+<a name="id2522437"></a><h2>Signals</h2>
 <pre class="synopsis">
 
 "<a href="GtkSourceView.html#GtkSourceView-redo">redo</a>"      void        user_function      (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *sourceview,
@@ -165,26 +165,26 @@ GtkSourceView implements
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2574854"></a><h2>Description</h2>
+<a name="id2574885"></a><h2>Description</h2>
 <p>
 
 </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2574868"></a><h2>Details</h2>
+<a name="id2574898"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2574877"></a><h3>
+<a name="id2574908"></a><h3>
 <a name="GtkSourceView-struct"></a>GtkSourceView</h3>
-<a class="indexterm" name="id2574888"></a><pre class="programlisting">typedef struct _GtkSourceView GtkSourceView;</pre>
+<a class="indexterm" name="id2574918"></a><pre class="programlisting">typedef struct _GtkSourceView GtkSourceView;</pre>
 <p>
 
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574903"></a><h3>
+<a name="id2574933"></a><h3>
 <a name="gtk-source-view-new"></a>gtk_source_view_new ()</h3>
-<a class="indexterm" name="id2574915"></a><pre class="programlisting">GtkWidget*  gtk_source_view_new             (void);</pre>
+<a class="indexterm" name="id2574945"></a><pre class="programlisting">GtkWidget*  gtk_source_view_new             (void);</pre>
 <p>
 Creates a new <a href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a>. An empty default buffer will be
 created for you. If you want to specify your own buffer, consider
@@ -203,9 +203,9 @@ created for you. If you want to specify 
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2574981"></a><h3>
+<a name="id2575012"></a><h3>
 <a name="gtk-source-view-new-with-buffer"></a>gtk_source_view_new_with_buffer ()</h3>
-<a class="indexterm" name="id2574994"></a><pre class="programlisting">GtkWidget*  gtk_source_view_new_with_buffer (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
+<a class="indexterm" name="id2575025"></a><pre class="programlisting">GtkWidget*  gtk_source_view_new_with_buffer (<a href="GtkSourceBuffer.html" title="GtkSourceBuffer">GtkSourceBuffer</a> *buffer);</pre>
 <p>
 Creates a new <a href="GtkSourceView.html" title="GtkSourceView"><span class="type">GtkSourceView</span></a> widget displaying the buffer
 <em class="parameter"><code>buffer</code></em>. One buffer can be shared among many widgets.</p>
@@ -230,9 +230,9 @@ Creates a new <a href="GtkSourceView.htm
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575084"></a><h3>
+<a name="id2575114"></a><h3>
 <a name="gtk-source-view-set-show-line-numbers"></a>gtk_source_view_set_show_line_numbers ()</h3>
-<a class="indexterm" name="id2575098"></a><pre class="programlisting">void        gtk_source_view_set_show_line_numbers
+<a class="indexterm" name="id2575128"></a><pre class="programlisting">void        gtk_source_view_set_show_line_numbers
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              gboolean show);</pre>
 <p>
@@ -258,9 +258,9 @@ If <code class="literal">TRUE</code> lin
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575188"></a><h3>
+<a name="id2575218"></a><h3>
 <a name="gtk-source-view-get-show-line-numbers"></a>gtk_source_view_get_show_line_numbers ()</h3>
-<a class="indexterm" name="id2575201"></a><pre class="programlisting">gboolean    gtk_source_view_get_show_line_numbers
+<a class="indexterm" name="id2575232"></a><pre class="programlisting">gboolean    gtk_source_view_get_show_line_numbers
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
 Returns whether line numbers are displayed beside the text.</p>
@@ -285,9 +285,9 @@ Returns whether line numbers are display
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575281"></a><h3>
+<a name="id2575312"></a><h3>
 <a name="gtk-source-view-set-show-line-markers"></a>gtk_source_view_set_show_line_markers ()</h3>
-<a class="indexterm" name="id2575295"></a><pre class="programlisting">void        gtk_source_view_set_show_line_markers
+<a class="indexterm" name="id2575325"></a><pre class="programlisting">void        gtk_source_view_set_show_line_markers
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              gboolean show);</pre>
 <p>
@@ -313,9 +313,9 @@ If <code class="literal">TRUE</code> lin
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575363"></a><h3>
+<a name="id2575390"></a><h3>
 <a name="gtk-source-view-get-show-line-markers"></a>gtk_source_view_get_show_line_markers ()</h3>
-<a class="indexterm" name="id2575376"></a><pre class="programlisting">gboolean    gtk_source_view_get_show_line_markers
+<a class="indexterm" name="id2575403"></a><pre class="programlisting">gboolean    gtk_source_view_get_show_line_markers
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
 Returns whether line markers are displayed beside the text.</p>
@@ -340,9 +340,9 @@ Returns whether line markers are display
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575447"></a><h3>
+<a name="id2575475"></a><h3>
 <a name="gtk-source-view-set-tabs-width"></a>gtk_source_view_set_tabs_width ()</h3>
-<a class="indexterm" name="id2575459"></a><pre class="programlisting">void        gtk_source_view_set_tabs_width  (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
+<a class="indexterm" name="id2575487"></a><pre class="programlisting">void        gtk_source_view_set_tabs_width  (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              guint width);</pre>
 <p>
 Sets the width of tabulation in characters.</p>
@@ -367,9 +367,9 @@ Sets the width of tabulation in characte
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575531"></a><h3>
+<a name="id2575558"></a><h3>
 <a name="gtk-source-view-get-tabs-width"></a>gtk_source_view_get_tabs_width ()</h3>
-<a class="indexterm" name="id2575543"></a><pre class="programlisting">guint       gtk_source_view_get_tabs_width  (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
+<a class="indexterm" name="id2575571"></a><pre class="programlisting">guint       gtk_source_view_get_tabs_width  (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
 Returns the width of tabulation in characters.</p>
 <p>
@@ -393,9 +393,9 @@ Returns the width of tabulation in chara
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575604"></a><h3>
+<a name="id2575632"></a><h3>
 <a name="gtk-source-view-set-auto-indent"></a>gtk_source_view_set_auto_indent ()</h3>
-<a class="indexterm" name="id2575617"></a><pre class="programlisting">void        gtk_source_view_set_auto_indent (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
+<a class="indexterm" name="id2575644"></a><pre class="programlisting">void        gtk_source_view_set_auto_indent (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              gboolean enable);</pre>
 <p>
 If <code class="literal">TRUE</code> auto indentation of text is enabled.</p>
@@ -420,9 +420,9 @@ If <code class="literal">TRUE</code> aut
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575696"></a><h3>
+<a name="id2575724"></a><h3>
 <a name="gtk-source-view-get-auto-indent"></a>gtk_source_view_get_auto_indent ()</h3>
-<a class="indexterm" name="id2575708"></a><pre class="programlisting">gboolean    gtk_source_view_get_auto_indent (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
+<a class="indexterm" name="id2575736"></a><pre class="programlisting">gboolean    gtk_source_view_get_auto_indent (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
 Returns whether auto indentation of text is enabled.</p>
 <p>
@@ -446,9 +446,9 @@ Returns whether auto indentation of text
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575779"></a><h3>
+<a name="id2575806"></a><h3>
 <a name="gtk-source-view-set-insert-spaces-instead-of-tabs"></a>gtk_source_view_set_insert_spaces_instead_of_tabs ()</h3>
-<a class="indexterm" name="id2575792"></a><pre class="programlisting">void        gtk_source_view_set_insert_spaces_instead_of_tabs
+<a class="indexterm" name="id2575820"></a><pre class="programlisting">void        gtk_source_view_set_insert_spaces_instead_of_tabs
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              gboolean enable);</pre>
 <p>
@@ -475,9 +475,9 @@ of space characters.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575874"></a><h3>
+<a name="id2575901"></a><h3>
 <a name="gtk-source-view-get-insert-spaces-instead-of-tabs"></a>gtk_source_view_get_insert_spaces_instead_of_tabs ()</h3>
-<a class="indexterm" name="id2575887"></a><pre class="programlisting">gboolean    gtk_source_view_get_insert_spaces_instead_of_tabs
+<a class="indexterm" name="id2575914"></a><pre class="programlisting">gboolean    gtk_source_view_get_insert_spaces_instead_of_tabs
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
 Returns whether when inserting a tabulator character it should
@@ -503,9 +503,9 @@ be replaced by a group of space characte
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2575959"></a><h3>
+<a name="id2575987"></a><h3>
 <a name="gtk-source-view-set-indent-on-tab"></a>gtk_source_view_set_indent_on_tab ()</h3>
-<a class="indexterm" name="id2575974"></a><pre class="programlisting">void        gtk_source_view_set_indent_on_tab
+<a class="indexterm" name="id2576002"></a><pre class="programlisting">void        gtk_source_view_set_indent_on_tab
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              gboolean enable);</pre>
 <p>
@@ -530,14 +530,14 @@ the \t characters. Shift+Tab unindents t
 </tr>
 </tbody>
 </table></div>
-<p>Since  1.8
+<p class="since">Since  1.8
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576061"></a><h3>
+<a name="id2576090"></a><h3>
 <a name="gtk-source-view-get-indent-on-tab"></a>gtk_source_view_get_indent_on_tab ()</h3>
-<a class="indexterm" name="id2576076"></a><pre class="programlisting">gboolean    gtk_source_view_get_indent_on_tab
+<a class="indexterm" name="id2576106"></a><pre class="programlisting">gboolean    gtk_source_view_get_indent_on_tab
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
 Returns whether when the tab key is pressed the current selection
@@ -561,14 +561,14 @@ should get indented instead of replaced 
 </tr>
 </tbody>
 </table></div>
-<p>Since  1.8
+<p class="since">Since  1.8
 </p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576152"></a><h3>
+<a name="id2576184"></a><h3>
 <a name="gtk-source-view-set-show-margin"></a>gtk_source_view_set_show_margin ()</h3>
-<a class="indexterm" name="id2576164"></a><pre class="programlisting">void        gtk_source_view_set_show_margin (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
+<a class="indexterm" name="id2576196"></a><pre class="programlisting">void        gtk_source_view_set_show_margin (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              gboolean show);</pre>
 <p>
 If <code class="literal">TRUE</code> a margin is displayed</p>
@@ -593,9 +593,9 @@ If <code class="literal">TRUE</code> a m
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576242"></a><h3>
+<a name="id2576274"></a><h3>
 <a name="gtk-source-view-get-show-margin"></a>gtk_source_view_get_show_margin ()</h3>
-<a class="indexterm" name="id2576255"></a><pre class="programlisting">gboolean    gtk_source_view_get_show_margin (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
+<a class="indexterm" name="id2576286"></a><pre class="programlisting">gboolean    gtk_source_view_get_show_margin (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
 Returns whether a margin is displayed.</p>
 <p>
@@ -619,9 +619,9 @@ Returns whether a margin is displayed.</
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576324"></a><h3>
+<a name="id2576356"></a><h3>
 <a name="gtk-source-view-set-margin"></a>gtk_source_view_set_margin ()</h3>
-<a class="indexterm" name="id2576335"></a><pre class="programlisting">void        gtk_source_view_set_margin      (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
+<a class="indexterm" name="id2576367"></a><pre class="programlisting">void        gtk_source_view_set_margin      (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              guint margin);</pre>
 <p>
 Sets the position of the right margin in the given <em class="parameter"><code>view</code></em>.</p>
@@ -646,9 +646,9 @@ Sets the position of the right margin in
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576411"></a><h3>
+<a name="id2576443"></a><h3>
 <a name="gtk-source-view-get-margin"></a>gtk_source_view_get_margin ()</h3>
-<a class="indexterm" name="id2576422"></a><pre class="programlisting">guint       gtk_source_view_get_margin      (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
+<a class="indexterm" name="id2576454"></a><pre class="programlisting">guint       gtk_source_view_get_margin      (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
 Gets the position of the right margin in the given <em class="parameter"><code>view</code></em>.</p>
 <p>
@@ -672,9 +672,9 @@ Gets the position of the right margin in
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576489"></a><h3>
+<a name="id2576520"></a><h3>
 <a name="gtk-source-view-set-highlight-current-line"></a>gtk_source_view_set_highlight_current_line ()</h3>
-<a class="indexterm" name="id2576502"></a><pre class="programlisting">void        gtk_source_view_set_highlight_current_line
+<a class="indexterm" name="id2576534"></a><pre class="programlisting">void        gtk_source_view_set_highlight_current_line
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              gboolean show);</pre>
 <p>
@@ -700,9 +700,9 @@ If TRUE the current line is highlighted<
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576574"></a><h3>
+<a name="id2576605"></a><h3>
 <a name="gtk-source-view-get-highlight-current-line"></a>gtk_source_view_get_highlight_current_line ()</h3>
-<a class="indexterm" name="id2576588"></a><pre class="programlisting">gboolean    gtk_source_view_get_highlight_current_line
+<a class="indexterm" name="id2576619"></a><pre class="programlisting">gboolean    gtk_source_view_get_highlight_current_line
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
 Returns whether the current line is highlighted</p>
@@ -727,9 +727,9 @@ Returns whether the current line is high
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576650"></a><h3>
+<a name="id2576681"></a><h3>
 <a name="gtk-source-view-set-marker-pixbuf"></a>gtk_source_view_set_marker_pixbuf ()</h3>
-<a class="indexterm" name="id2576663"></a><pre class="programlisting">void        gtk_source_view_set_marker_pixbuf
+<a class="indexterm" name="id2576695"></a><pre class="programlisting">void        gtk_source_view_set_marker_pixbuf
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              const gchar *marker_type,
                                              GdkPixbuf *pixbuf);</pre>
@@ -761,9 +761,9 @@ Associates a given <em class="parameter"
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576768"></a><h3>
+<a name="id2576800"></a><h3>
 <a name="gtk-source-view-get-marker-pixbuf"></a>gtk_source_view_get_marker_pixbuf ()</h3>
-<a class="indexterm" name="id2576782"></a><pre class="programlisting">GdkPixbuf*  gtk_source_view_get_marker_pixbuf
+<a class="indexterm" name="id2576813"></a><pre class="programlisting">GdkPixbuf*  gtk_source_view_get_marker_pixbuf
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              const gchar *marker_type);</pre>
 <p>
@@ -794,9 +794,9 @@ Gets the pixbuf which is associated with
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576882"></a><h3>
+<a name="id2576913"></a><h3>
 <a name="gtk-source-view-set-smart-home-end"></a>gtk_source_view_set_smart_home_end ()</h3>
-<a class="indexterm" name="id2576895"></a><pre class="programlisting">void        gtk_source_view_set_smart_home_end
+<a class="indexterm" name="id2576926"></a><pre class="programlisting">void        gtk_source_view_set_smart_home_end
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view,
                                              gboolean enable);</pre>
 <p>
@@ -823,9 +823,9 @@ character of the line before moving to t
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2576976"></a><h3>
+<a name="id2577008"></a><h3>
 <a name="gtk-source-view-get-smart-home-end"></a>gtk_source_view_get_smart_home_end ()</h3>
-<a class="indexterm" name="id2576989"></a><pre class="programlisting">gboolean    gtk_source_view_get_smart_home_end
+<a class="indexterm" name="id2577021"></a><pre class="programlisting">gboolean    gtk_source_view_get_smart_home_end
                                             (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *view);</pre>
 <p>
 Returns whether HOME and END keys will move to the first/last non-space
@@ -851,95 +851,95 @@ character of the line before moving to t
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2577062"></a><h2>Property Details</h2>
+<a name="id2577094"></a><h2>Property Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2577072"></a><h3>
+<a name="id2577103"></a><h3>
 <a name="GtkSourceView--auto-indent"></a>The "<code class="literal">auto-indent</code>" property</h3>
-<a class="indexterm" name="id2577084"></a><pre class="programlisting">  "auto-indent"          gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2577116"></a><pre class="programlisting">  "auto-indent"          gboolean              : Read / Write</pre>
 <p>Whether to enable auto indentation.</p>
 <p>Default value: FALSE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577107"></a><h3>
+<a name="id2577139"></a><h3>
 <a name="GtkSourceView--highlight-current-line"></a>The "<code class="literal">highlight-current-line</code>" property</h3>
-<a class="indexterm" name="id2577122"></a><pre class="programlisting">  "highlight-current-line" gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2577154"></a><pre class="programlisting">  "highlight-current-line" gboolean              : Read / Write</pre>
 <p>Whether to highlight the current line.</p>
 <p>Default value: FALSE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577146"></a><h3>
+<a name="id2577177"></a><h3>
 <a name="GtkSourceView--indent-on-tab"></a>The "<code class="literal">indent-on-tab</code>" property</h3>
-<a class="indexterm" name="id2577160"></a><pre class="programlisting">  "indent-on-tab"        gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2577192"></a><pre class="programlisting">  "indent-on-tab"        gboolean              : Read / Write</pre>
 <p>Whether to indent the selected text when the tab key is pressed.</p>
 <p>Default value: FALSE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577184"></a><h3>
+<a name="id2577215"></a><h3>
 <a name="GtkSourceView--insert-spaces-instead-of-tabs"></a>The "<code class="literal">insert-spaces-instead-of-tabs</code>" property</h3>
-<a class="indexterm" name="id2577199"></a><pre class="programlisting">  "insert-spaces-instead-of-tabs" gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2577230"></a><pre class="programlisting">  "insert-spaces-instead-of-tabs" gboolean              : Read / Write</pre>
 <p>Whether to insert spaces instead of tabs.</p>
 <p>Default value: FALSE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577224"></a><h3>
+<a name="id2577255"></a><h3>
 <a name="GtkSourceView--margin"></a>The "<code class="literal">margin</code>" property</h3>
-<a class="indexterm" name="id2577236"></a><pre class="programlisting">  "margin"               guint                 : Read / Write</pre>
+<a class="indexterm" name="id2577268"></a><pre class="programlisting">  "margin"               guint                 : Read / Write</pre>
 <p>Position of the right margin.</p>
 <p>Allowed values: [1,200]</p>
 <p>Default value: 80</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577263"></a><h3>
+<a name="id2577294"></a><h3>
 <a name="GtkSourceView--show-line-markers"></a>The "<code class="literal">show-line-markers</code>" property</h3>
-<a class="indexterm" name="id2577277"></a><pre class="programlisting">  "show-line-markers"    gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2577309"></a><pre class="programlisting">  "show-line-markers"    gboolean              : Read / Write</pre>
 <p>Whether to display line marker pixbufs.</p>
 <p>Default value: FALSE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577301"></a><h3>
+<a name="id2577332"></a><h3>
 <a name="GtkSourceView--show-line-numbers"></a>The "<code class="literal">show-line-numbers</code>" property</h3>
-<a class="indexterm" name="id2577315"></a><pre class="programlisting">  "show-line-numbers"    gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2577347"></a><pre class="programlisting">  "show-line-numbers"    gboolean              : Read / Write</pre>
 <p>Whether to display line numbers.</p>
 <p>Default value: FALSE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577338"></a><h3>
+<a name="id2577370"></a><h3>
 <a name="GtkSourceView--show-margin"></a>The "<code class="literal">show-margin</code>" property</h3>
-<a class="indexterm" name="id2577351"></a><pre class="programlisting">  "show-margin"          gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2577383"></a><pre class="programlisting">  "show-margin"          gboolean              : Read / Write</pre>
 <p>Whether to display the right margin.</p>
 <p>Default value: FALSE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577374"></a><h3>
+<a name="id2577406"></a><h3>
 <a name="GtkSourceView--smart-home-end"></a>The "<code class="literal">smart-home-end</code>" property</h3>
-<a class="indexterm" name="id2577389"></a><pre class="programlisting">  "smart-home-end"       gboolean              : Read / Write</pre>
+<a class="indexterm" name="id2577421"></a><pre class="programlisting">  "smart-home-end"       gboolean              : Read / Write</pre>
 <p>HOME and END keys move to first/last non whitespace characters on line before going to the start/end of the line.</p>
 <p>Default value: TRUE</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577414"></a><h3>
+<a name="id2577445"></a><h3>
 <a name="GtkSourceView--tabs-width"></a>The "<code class="literal">tabs-width</code>" property</h3>
-<a class="indexterm" name="id2577426"></a><pre class="programlisting">  "tabs-width"           guint                 : Read / Write</pre>
+<a class="indexterm" name="id2577458"></a><pre class="programlisting">  "tabs-width"           guint                 : Read / Write</pre>
 <p>Tabs Width.</p>
 <p>Allowed values: [1,32]</p>
 <p>Default value: 8</p>
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2577453"></a><h2>Style Property Details</h2>
+<a name="id2577485"></a><h2>Style Property Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2577463"></a><h3>
+<a name="id2577495"></a><h3>
 <a name="GtkSourceView--right-margin-line-alpha"></a>The "<code class="literal">right-margin-line-alpha</code>" style property</h3>
-<a class="indexterm" name="id2577478"></a><pre class="programlisting">  "right-margin-line-alpha" gint                  : Read</pre>
+<a class="indexterm" name="id2577510"></a><pre class="programlisting">  "right-margin-line-alpha" gint                  : Read</pre>
 <p>
 The ::right-margin-line-alpha determines the alpha component with
 which the vertical line will be drawn. 0 means it is fully transparent
@@ -955,9 +955,9 @@ be visible).</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577516"></a><h3>
+<a name="id2577548"></a><h3>
 <a name="GtkSourceView--right-margin-line-color"></a>The "<code class="literal">right-margin-line-color</code>" style property</h3>
-<a class="indexterm" name="id2577531"></a><pre class="programlisting">  "right-margin-line-color" GdkColor              : Read</pre>
+<a class="indexterm" name="id2577563"></a><pre class="programlisting">  "right-margin-line-color" GdkColor              : Read</pre>
 <p>
 The ::right-margin-line-color property contains the color with
 which the right margin line (vertical line indicating the right
@@ -970,9 +970,9 @@ margin) will be drawn.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577562"></a><h3>
+<a name="id2577593"></a><h3>
 <a name="GtkSourceView--right-margin-overlay-alpha"></a>The "<code class="literal">right-margin-overlay-alpha</code>" style property</h3>
-<a class="indexterm" name="id2577577"></a><pre class="programlisting">  "right-margin-overlay-alpha" gint                  : Read</pre>
+<a class="indexterm" name="id2577608"></a><pre class="programlisting">  "right-margin-overlay-alpha" gint                  : Read</pre>
 <p>
 The ::right-margin-overlay-alpha determines the alpha component with
 which the overlay will be drawn. 0 means it is fully transparent
@@ -988,9 +988,9 @@ won't be visible).</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577615"></a><h3>
+<a name="id2577646"></a><h3>
 <a name="GtkSourceView--right-margin-overlay-color"></a>The "<code class="literal">right-margin-overlay-color</code>" style property</h3>
-<a class="indexterm" name="id2577630"></a><pre class="programlisting">  "right-margin-overlay-color" GdkColor              : Read</pre>
+<a class="indexterm" name="id2577661"></a><pre class="programlisting">  "right-margin-overlay-color" GdkColor              : Read</pre>
 <p>
 The ::right-margin-overlay-color property contains the color with
 which the right margin overlay will be drawn. Setting this property
@@ -1003,9 +1003,9 @@ will only have an effect if ::right-marg
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577661"></a><h3>
+<a name="id2577693"></a><h3>
 <a name="GtkSourceView--right-margin-overlay-toggle"></a>The "<code class="literal">right-margin-overlay-toggle</code>" style property</h3>
-<a class="indexterm" name="id2577676"></a><pre class="programlisting">  "right-margin-overlay-toggle" gchararray            : Read</pre>
+<a class="indexterm" name="id2577708"></a><pre class="programlisting">  "right-margin-overlay-toggle" gchararray            : Read</pre>
 <p>
 The ::right-margin-overlay-toggle property determines whether the
 widget will draw a transparent overlay on top of the area on the
@@ -1020,11 +1020,11 @@ noticable performance impact, so this pr
 </div>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2577713"></a><h2>Signal Details</h2>
+<a name="id2577744"></a><h2>Signal Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2577722"></a><h3>
+<a name="id2577754"></a><h3>
 <a name="GtkSourceView-redo"></a>The "redo" signal</h3>
-<a class="indexterm" name="id2577729"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *sourceview,
+<a class="indexterm" name="id2577761"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *sourceview,
                                             gpointer       user_data)       : Run last / Action</pre>
 <p>
 
@@ -1047,9 +1047,9 @@ noticable performance impact, so this pr
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2577790"></a><h3>
+<a name="id2577822"></a><h3>
 <a name="GtkSourceView-undo"></a>The "undo" signal</h3>
-<a class="indexterm" name="id2577798"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *sourceview,
+<a class="indexterm" name="id2577829"></a><pre class="programlisting">void        user_function                  (<a href="GtkSourceView.html" title="GtkSourceView">GtkSourceView</a> *sourceview,
                                             gpointer       user_data)       : Run last / Action</pre>
 <p>
 
diff -pruN 1.8.1-2/docs/reference/html/gtksourceview-Searching-in-a-GtkSourceBuffer.html 1.8.2-0ubuntu1/docs/reference/html/gtksourceview-Searching-in-a-GtkSourceBuffer.html
--- 1.8.1-2/docs/reference/html/gtksourceview-Searching-in-a-GtkSourceBuffer.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/gtksourceview-Searching-in-a-GtkSourceBuffer.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,16 +21,16 @@
 <th width="100%" align="center">GtkSourceView Reference Manual</th>
 <td><a accesskey="n" href="gtksourceview-GtkSourceMarker.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr>
-<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2556825" class="shortcut">Top</a>
+<tr><td colspan="5" class="shortcuts"><nobr><a href="#id2558248" class="shortcut">Top</a>
                   &#160;|&#160;
-                  <a href="#id2531507" class="shortcut">Description</a></nobr></td></tr>
+                  <a href="#id2531532" class="shortcut">Description</a></nobr></td></tr>
 </table>
 <div class="refentry" lang="en">
 <a name="gtksourceview-Searching-in-a-GtkSourceBuffer"></a><div class="titlepage"></div>
 <div class="refnamediv"><table width="100%"><tr>
 <td valign="top">
 <h2>
-<a name="id2556825"></a><span class="refentrytitle">Searching in a GtkSourceBuffer</span>
+<a name="id2558248"></a><span class="refentrytitle">Searching in a GtkSourceBuffer</span>
 </h2>
 <p>Searching in a GtkSourceBuffer &#8212; </p>
 </td>
@@ -61,17 +61,17 @@ gboolean    <a href="gtksourceview-Searc
 </pre>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2531507"></a><h2>Description</h2>
+<a name="id2531532"></a><h2>Description</h2>
 <p>
 
 </p>
 </div>
 <div class="refsect1" lang="en">
-<a name="id2531523"></a><h2>Details</h2>
+<a name="id2531548"></a><h2>Details</h2>
 <div class="refsect2" lang="en">
-<a name="id2531533"></a><h3>
+<a name="id2531558"></a><h3>
 <a name="GtkSourceSearchFlags"></a>enum GtkSourceSearchFlags</h3>
-<a class="indexterm" name="id2531544"></a><pre class="programlisting">typedef enum
+<a class="indexterm" name="id2531569"></a><pre class="programlisting">typedef enum
 {
 	GTK_SOURCE_SEARCH_VISIBLE_ONLY		 = 1 &lt;&lt; 0,
 	GTK_SOURCE_SEARCH_TEXT_ONLY		 = 1 &lt;&lt; 1,
@@ -85,9 +85,9 @@ gboolean    <a href="gtksourceview-Searc
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2537649"></a><h3>
+<a name="id2537671"></a><h3>
 <a name="gtk-source-iter-backward-search"></a>gtk_source_iter_backward_search ()</h3>
-<a class="indexterm" name="id2537660"></a><pre class="programlisting">gboolean    gtk_source_iter_backward_search (const GtkTextIter *iter,
+<a class="indexterm" name="id2537682"></a><pre class="programlisting">gboolean    gtk_source_iter_backward_search (const GtkTextIter *iter,
                                              const gchar *str,
                                              <a href="gtksourceview-Searching-in-a-GtkSourceBuffer.html#GtkSourceSearchFlags">GtkSourceSearchFlags</a> flags,
                                              GtkTextIter *match_start,
@@ -142,9 +142,9 @@ searching.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2522506"></a><h3>
+<a name="id2523212"></a><h3>
 <a name="gtk-source-iter-forward-search"></a>gtk_source_iter_forward_search ()</h3>
-<a class="indexterm" name="id2522518"></a><pre class="programlisting">gboolean    gtk_source_iter_forward_search  (const GtkTextIter *iter,
+<a class="indexterm" name="id2523223"></a><pre class="programlisting">gboolean    gtk_source_iter_forward_search  (const GtkTextIter *iter,
                                              const gchar *str,
                                              <a href="gtksourceview-Searching-in-a-GtkSourceBuffer.html#GtkSourceSearchFlags">GtkSourceSearchFlags</a> flags,
                                              GtkTextIter *match_start,
@@ -218,9 +218,9 @@ searching.</p>
 </div>
 <hr>
 <div class="refsect2" lang="en">
-<a name="id2532772"></a><h3>
+<a name="id2532794"></a><h3>
 <a name="gtk-source-iter-find-matching-bracket"></a>gtk_source_iter_find_matching_bracket ()</h3>
-<a class="indexterm" name="id2532786"></a><pre class="programlisting">gboolean    gtk_source_iter_find_matching_bracket
+<a class="indexterm" name="id2532808"></a><pre class="programlisting">gboolean    gtk_source_iter_find_matching_bracket
                                             (GtkTextIter *iter);</pre>
 <p>
 Tries to match the bracket character currently at <em class="parameter"><code>iter</code></em> with its
diff -pruN 1.8.1-2/docs/reference/html/index.html 1.8.2-0ubuntu1/docs/reference/html/index.html
--- 1.8.1-2/docs/reference/html/index.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/index.html	2006-12-13 12:05:11.000000000 +0000
@@ -14,7 +14,7 @@
 <div class="titlepage">
 <div>
 <div><table class="navigation" id="top" width="100%" cellpadding="2" cellspacing="0"><tr><th valign="middle"><p class="title">GtkSourceView Reference Manual</p></th></tr></table></div>
-<div><p class="releaseinfo">for GtkSourceView 1.8.1
+<div><p class="releaseinfo">for GtkSourceView 1.8.2
 </p></div>
 </div>
 <hr>
diff -pruN 1.8.1-2/docs/reference/html/index.sgml 1.8.2-0ubuntu1/docs/reference/html/index.sgml
--- 1.8.1-2/docs/reference/html/index.sgml	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/index.sgml	2006-12-13 12:05:11.000000000 +0000
@@ -122,6 +122,7 @@
 <ANCHOR id="gtk-source-style-scheme-get-tag-style" href="gtksourceview/GtkSourceStyleScheme.html#gtk-source-style-scheme-get-tag-style">
 <ANCHOR id="gtk-source-style-scheme-get-name" href="gtksourceview/GtkSourceStyleScheme.html#gtk-source-style-scheme-get-name">
 <ANCHOR id="gtk-source-style-scheme-get-default" href="gtksourceview/GtkSourceStyleScheme.html#gtk-source-style-scheme-get-default">
+<ANCHOR id="GtkSourceStyleScheme-style-changed" href="gtksourceview/GtkSourceStyleScheme.html#GtkSourceStyleScheme-style-changed">
 <ANCHOR id="GtkSourceTag" href="gtksourceview/GtkSourceTag.html">
 <ANCHOR id="GtkSyntaxTag" href="gtksourceview/GtkSourceTag.html#GtkSyntaxTag">
 <ANCHOR id="GtkPatternTag" href="gtksourceview/GtkSourceTag.html#GtkPatternTag">
diff -pruN 1.8.1-2/docs/reference/html/rn01.html 1.8.2-0ubuntu1/docs/reference/html/rn01.html
--- 1.8.1-2/docs/reference/html/rn01.html	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/rn01.html	2006-12-13 12:05:11.000000000 +0000
@@ -21,9 +21,9 @@
 <td><a accesskey="n" href="GtkSourceBuffer.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
 </tr></table>
 <div class="reference" lang="en">
-<a name="id2481876"></a><div class="titlepage">
+<a name="id2513197"></a><div class="titlepage">
 <div><div><h1 class="title">
-<a name="id2481876"></a>API reference</h1></div></div>
+<a name="id2513197"></a>API reference</h1></div></div>
 <hr>
 </div>
 </div>
diff -pruN 1.8.1-2/docs/reference/html/style.css 1.8.2-0ubuntu1/docs/reference/html/style.css
--- 1.8.1-2/docs/reference/html/style.css	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/html/style.css	2006-12-13 12:05:11.000000000 +0000
@@ -54,7 +54,7 @@ td.shortcuts
   font-size: 80%;
 }
 
-div.refentry, div.chapter, div.part, div.book, div.index, div.glossary, div.sect1
+div.refentry, div.chapter, div.part, div.book, div.index, div.glossary, div.sect1, div.appendix
 {
   position: relative;
   top: 3em;
diff -pruN 1.8.1-2/docs/reference/Makefile.in 1.8.2-0ubuntu1/docs/reference/Makefile.in
--- 1.8.1-2/docs/reference/Makefile.in	2006-10-01 19:03:33.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/Makefile.in	2006-12-13 12:03:10.000000000 +0000
@@ -480,6 +480,8 @@ docs: html-build.stamp
 scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
 	@echo 'gtk-doc: Scanning header files'
 	@-chmod -R u+w $(srcdir)
+	cd $(srcdir) && \
+	  gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
 	if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \
 	    CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \
 	else \
@@ -488,8 +490,6 @@ scan-build.stamp: $(HFILE_GLOB) $(CFILE_
                test -f $$i || touch $$i ; \
 	    done \
 	fi
-	cd $(srcdir) && \
-	  gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
 	touch scan-build.stamp
 
 $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp
diff -pruN 1.8.1-2/docs/reference/tmpl/stylescheme.sgml 1.8.2-0ubuntu1/docs/reference/tmpl/stylescheme.sgml
--- 1.8.1-2/docs/reference/tmpl/stylescheme.sgml	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/tmpl/stylescheme.sgml	2006-12-13 12:05:11.000000000 +0000
@@ -23,6 +23,14 @@ GtkSourceStyleScheme
 </para>
 
 
+<!-- ##### SIGNAL GtkSourceStyleScheme::style-changed ##### -->
+<para>
+
+</para>
+
+ sourcestylescheme: the object which received the signal.
+ arg1: 
+
 <!-- ##### STRUCT GtkSourceStyleSchemeClass ##### -->
 <para>
 
diff -pruN 1.8.1-2/docs/reference/version.xml 1.8.2-0ubuntu1/docs/reference/version.xml
--- 1.8.1-2/docs/reference/version.xml	2006-10-01 19:03:45.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/version.xml	2006-12-13 12:03:23.000000000 +0000
@@ -1 +1 @@
-1.8.1
+1.8.2
diff -pruN 1.8.1-2/docs/reference/xml/marker.xml 1.8.2-0ubuntu1/docs/reference/xml/marker.xml
--- 1.8.1-2/docs/reference/xml/marker.xml	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/xml/marker.xml	2006-12-13 12:05:11.000000000 +0000
@@ -59,7 +59,9 @@ const <link linkend="gchar">gchar</link>
 <title role="details.title">Details</title>
 <refsect2>
 <title><anchor id="GtkSourceMarker" role="typedef"/>GtkSourceMarker</title>
-<indexterm><primary>GtkSourceMarker</primary></indexterm><para>
+<indexterm><primary>GtkSourceMarker</primary></indexterm><programlisting>typedef GtkTextMark      GtkSourceMarker;
+</programlisting>
+<para>
 
 </para></refsect2>
 <refsect2>
diff -pruN 1.8.1-2/docs/reference/xml/stylescheme.xml 1.8.2-0ubuntu1/docs/reference/xml/stylescheme.xml
--- 1.8.1-2/docs/reference/xml/stylescheme.xml	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/xml/stylescheme.xml	2006-12-13 12:05:11.000000000 +0000
@@ -52,6 +52,16 @@ const <link linkend="gchar">gchar</link>
 
 
 
+<refsect1 role="signal_proto">
+<title role="signal_proto.title">Signals</title>
+<synopsis>
+
+&quot;<link linkend="GtkSourceStyleScheme-style-changed">style-changed</link>&quot;
+            <link linkend="void">void</link>        user_function      (<link linkend="GtkSourceStyleScheme">GtkSourceStyleScheme</link> *sourcestylescheme,
+                                            <link linkend="gchar">gchar</link>                *arg1,
+                                            <link linkend="gpointer">gpointer</link>              user_data)              : Run last
+</synopsis>
+</refsect1>
 
 
 <refsect1 role="desc">
@@ -143,6 +153,26 @@ Gets the default style scheme.</para>
 
 </refsect1>
 
+<refsect1 role="signals">
+<title role="signals.title">Signal Details</title>
+<refsect2><title><anchor id="GtkSourceStyleScheme-style-changed"/>The &quot;style-changed&quot; signal</title>
+<indexterm><primary>GtkSourceStyleScheme::style-changed</primary></indexterm><programlisting><link linkend="void">void</link>        user_function                  (<link linkend="GtkSourceStyleScheme">GtkSourceStyleScheme</link> *sourcestylescheme,
+                                            <link linkend="gchar">gchar</link>                *arg1,
+                                            <link linkend="gpointer">gpointer</link>              user_data)              : Run last</programlisting>
+<para>
+
+</para><variablelist role="params">
+<varlistentry><term><parameter>sourcestylescheme</parameter>&nbsp;:</term>
+<listitem><simpara>the object which received the signal.
+</simpara></listitem></varlistentry>
+<varlistentry><term><parameter>arg1</parameter>&nbsp;:</term>
+<listitem><simpara>
+
+</simpara></listitem></varlistentry>
+<varlistentry><term><parameter>user_data</parameter>&nbsp;:</term>
+<listitem><simpara>user data set when the signal handler was connected.</simpara></listitem></varlistentry>
+</variablelist></refsect2>
+</refsect1>
 
 
 
diff -pruN 1.8.1-2/docs/reference/xml/tagstyle.xml 1.8.2-0ubuntu1/docs/reference/xml/tagstyle.xml
--- 1.8.1-2/docs/reference/xml/tagstyle.xml	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/xml/tagstyle.xml	2006-12-13 12:05:11.000000000 +0000
@@ -87,7 +87,8 @@ enum        <link linkend="GtkSourceTagS
 </para></refsect2>
 <refsect2>
 <title><anchor id="GTK-TYPE-SOURCE-TAG-STYLE:CAPS" role="macro"/>GTK_TYPE_SOURCE_TAG_STYLE</title>
-<indexterm><primary>GTK_TYPE_SOURCE_TAG_STYLE</primary></indexterm><programlisting>#define     GTK_TYPE_SOURCE_TAG_STYLE</programlisting>
+<indexterm><primary>GTK_TYPE_SOURCE_TAG_STYLE</primary></indexterm><programlisting>#define GTK_TYPE_SOURCE_TAG_STYLE     (gtk_source_tag_style_get_type ())
+</programlisting>
 <para>
 
 </para></refsect2>
diff -pruN 1.8.1-2/docs/reference/xml/tag.xml 1.8.2-0ubuntu1/docs/reference/xml/tag.xml
--- 1.8.1-2/docs/reference/xml/tag.xml	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/xml/tag.xml	2006-12-13 12:05:11.000000000 +0000
@@ -272,7 +272,8 @@ string at the end. 
 </variablelist></refsect2>
 <refsect2>
 <title><anchor id="gtk-block-comment-tag-new" role="macro"/>gtk_block_comment_tag_new</title>
-<indexterm><primary>gtk_block_comment_tag_new</primary></indexterm><programlisting>#define     gtk_block_comment_tag_new</programlisting>
+<indexterm><primary>gtk_block_comment_tag_new</primary></indexterm><programlisting>#define gtk_block_comment_tag_new	gtk_syntax_tag_new
+</programlisting>
 <para>
 
 </para></refsect2>
diff -pruN 1.8.1-2/docs/reference/xml/view.xml 1.8.2-0ubuntu1/docs/reference/xml/view.xml
--- 1.8.1-2/docs/reference/xml/view.xml	2006-10-01 19:05:27.000000000 +0100
+++ 1.8.2-0ubuntu1/docs/reference/xml/view.xml	2006-12-13 12:05:11.000000000 +0000
@@ -365,7 +365,7 @@ the \t characters. Shift+Tab unindents t
 <varlistentry><term><parameter>enable</parameter>&nbsp;:</term>
 <listitem><simpara> whether to indent a block when tab is pressed.
 </simpara></listitem></varlistentry>
-</variablelist><para>Since  1.8
+</variablelist><para role="since">Since  1.8
 </para></refsect2>
 <refsect2>
 <title><anchor id="gtk-source-view-get-indent-on-tab" role="function" condition="since:1.8"/>gtk_source_view_get_indent_on_tab ()</title>
@@ -383,7 +383,7 @@ should get indented instead of replaced 
 <varlistentry><term><emphasis>Returns</emphasis>&nbsp;:</term><listitem><simpara> <link linkend="TRUE:CAPS"><literal>TRUE</literal></link> if the selection is indented when tab is pressed.
 
 </simpara></listitem></varlistentry>
-</variablelist><para>Since  1.8
+</variablelist><para role="since">Since  1.8
 </para></refsect2>
 <refsect2>
 <title><anchor id="gtk-source-view-set-show-margin" role="function"/>gtk_source_view_set_show_margin ()</title>
diff -pruN 1.8.1-2/gtk-doc.make 1.8.2-0ubuntu1/gtk-doc.make
--- 1.8.1-2/gtk-doc.make	2006-10-01 19:03:28.000000000 +0100
+++ 1.8.2-0ubuntu1/gtk-doc.make	2006-12-13 12:02:59.000000000 +0000
@@ -53,6 +53,8 @@ docs: html-build.stamp
 scan-build.stamp: $(HFILE_GLOB) $(CFILE_GLOB)
 	@echo 'gtk-doc: Scanning header files'
 	@-chmod -R u+w $(srcdir)
+	cd $(srcdir) && \
+	  gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
 	if grep -l '^..*$$' $(srcdir)/$(DOC_MODULE).types > /dev/null 2>&1 ; then \
 	    CC="$(GTKDOC_CC)" LD="$(GTKDOC_LD)" CFLAGS="$(GTKDOC_CFLAGS)" LDFLAGS="$(GTKDOC_LIBS)" gtkdoc-scangobj $(SCANGOBJ_OPTIONS) --module=$(DOC_MODULE) --output-dir=$(srcdir) ; \
 	else \
@@ -61,8 +63,6 @@ scan-build.stamp: $(HFILE_GLOB) $(CFILE_
                test -f $$i || touch $$i ; \
 	    done \
 	fi
-	cd $(srcdir) && \
-	  gtkdoc-scan --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) --ignore-headers="$(IGNORE_HFILES)" $(SCAN_OPTIONS) $(EXTRA_HFILES)
 	touch scan-build.stamp
 
 $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES): scan-build.stamp
diff -pruN 1.8.1-2/gtksourceview/language-specs/java.lang 1.8.2-0ubuntu1/gtksourceview/language-specs/java.lang
--- 1.8.1-2/gtksourceview/language-specs/java.lang	2003-09-27 18:27:07.000000000 +0100
+++ 1.8.2-0ubuntu1/gtksourceview/language-specs/java.lang	2006-10-14 12:02:40.000000000 +0100
@@ -23,6 +23,7 @@
 
 	<keyword-list _name = "Declarations" style = "Keyword" case-sensitive="TRUE">
 		<keyword>class</keyword>
+		<keyword>enum</keyword>
 		<keyword>extends</keyword>
 		<keyword>implements</keyword>
 		<keyword>import</keyword>
@@ -46,6 +47,7 @@
 	</keyword-list>
 
 	<keyword-list _name = "Flow" style = "Keyword" case-sensitive="TRUE">
+		<keyword>assert</keyword>
 		<keyword>break</keyword>
 		<keyword>case</keyword>
 		<keyword>catch</keyword>
@@ -53,8 +55,8 @@
 		<keyword>default</keyword>
 		<keyword>do</keyword>
       		<keyword>else</keyword>
+		<keyword>finally</keyword>
 		<keyword>for</keyword>
-		<keyword>goto</keyword>
 		<keyword>if</keyword>
 		<keyword>return</keyword>
 		<keyword>synchronized</keyword>
@@ -67,24 +69,29 @@
 	<keyword-list _name = "Modifiers" style = "Keyword" case-sensitive="TRUE">
 		<keyword>abstract</keyword>
 		<keyword>final</keyword>
-		<keyword>finally</keyword>
 		<keyword>private</keyword>
 		<keyword>protected</keyword>
 		<keyword>public</keyword>
 		<keyword>static</keyword>
-		<keyword>const</keyword>
-		<keyword>gotol</keyword>
+		<keyword>strictfp</keyword>
 		<keyword>transient</keyword>
 	</keyword-list>
 
 	<keyword-list _name = "Memory" style = "Others" case-sensitive="TRUE">
+		<keyword>false</keyword>
 		<keyword>new</keyword>
 		<keyword>null</keyword>
 		<keyword>super</keyword>
 		<keyword>this</keyword>
+		<keyword>true</keyword>
 		<keyword>void</keyword>
 	</keyword-list>
 
+	<keyword-list _name = "Future Reserved Words" style = "Specials" case-sensitive="TRUE">
+		<keyword>const</keyword>
+		<keyword>goto</keyword>
+	</keyword-list>
+
 	<pattern-item _name = "Numeric" style = "Decimal">
 		<regex>(\b([0-9]+|0[xX][0-9a-fA-F]+)[Ll]?\b|\b(([0-9]+[Ee][-]?[0-9]+|([0-9]*\.[0-9]+|[0-9]+\.)([Ee][-]?[0-9]+)?)[fFdD]?|[0-9]+[FfDd]))</regex>
 	</pattern-item>
diff -pruN 1.8.1-2/gtksourceview/language-specs/language.dtd 1.8.2-0ubuntu1/gtksourceview/language-specs/language.dtd
--- 1.8.1-2/gtksourceview/language-specs/language.dtd	2003-05-26 10:22:57.000000000 +0100
+++ 1.8.2-0ubuntu1/gtksourceview/language-specs/language.dtd	2006-12-11 00:35:34.000000000 +0000
@@ -1,51 +1,209 @@
-<!-- FIXME: the "name" attribute can be "_name" to be marked for translation -->
-<!ENTITY % itemattrs
- "name  CDATA #REQUIRED
-  style CDATA #REQUIRED">
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+	This file describes the XML format used for syntax highlight
+	descriptions for the GtkSourceView 1.x library.
+
+	.lang files are XML files which describe how to highlight syntax;
+	this DTD is used for validation purposes.
+
+	.lang files should include:
+
+	<!DOCTYPE language SYSTEM "language.dtd">
+
+	and be located in $PREFIX/gtksourceview-1.0/language-specs/, or in
+	~./gnome2/gtksourceview-1.0/language-specs/
+
+	To check if a .lang file is valid, run
+
+	$ xmllint FILENAME - -dtdvalid language.dtd
+
+	If you create a new .lang file or modify an existing one, please note
+	that it will be (re)loaded by the application only after it is
+	restarted.
+-->
+
+<!--
+	Boolean type
+
+  	Attributes that are of type boolean allow the following values:
+  	
+  	- 'true', 'TRUE' and '1' 	all meaning true
+  	- 'false', FALSE' and '0' 	all meaning false
+
+	It is encouraged to use 'TRUE' and 'FALSE' instead of the alternatives.
+-->
+
+<!ENTITY % boolean
+	"(true|false|TRUE|FALSE|0|1)">
+
+<!--
+	Attributes required by all element representing a syntax or pattern tag.
+
+	- name		the name of the tag (it can appear in the UI)
+
+	- style		the style used to highlight the tag. Recognized values
+			are (from gtksourcestylescheme.h):
+
+			- Base-N Integer	used for values with a base
+						other than 10
+			- Character		used for single characters
+			- Comment		used for comments
+			- Data Type		used for data types
+			- Function		used for function names
+			- Decimal		used for decimal values
+			- Floating Point	used for floating point values
+			- Keyword		used for keywords
+			- Preprocessor		used for preprocessor instructions
+			- String		used for strings
+			- Specials		used for 'special' things
+			- Others (DEPRECATED, replaced by "Data Type")
+			- Others 2		used for 'other' things
+			- Others 3		used for 'other' things
+
+	The "name" attribute can be prefixed with "_" to be marked for
+	translation.
+-->
+
+<!ENTITY % tagattrs
+	"name		CDATA	#IMPLIED
+	 _name 		CDATA	#IMPLIED
+	 style 		CDATA	#REQUIRED">
+
+<!--
+	The root of the definition file is the element "language".
+
+	Required attributes:
+
+	- name		the name of the language (it can appear in menus and
+			dialog boxes)
+
+	- section	the category the language belongs to (e.g. "Sources",
+			"Scripts", etc.)
+
+	- version	version of the .lang file format (1.0)
+
+	- mimetypes	a list of mime-types that identifies the types of file
+			that must be highlighted using the .lang file
+
+	Optional attributes:
+
+	- translation-domain
+			the translation domain used by the file
+
+	The "name" and "section" attributes can be prefixed with
+	"_" to be marked for translation.
+-->
 
 <!ELEMENT language (escape-char?,(line-comment|block-comment|string|syntax-item|pattern-item|keyword-list)+)>
-<!-- FIXME: the "name" and "section" attributes can be prefixed with
-     "_" to be marked for translation -->
 <!ATTLIST language
-  name                CDATA #REQUIRED
-  version             CDATA #REQUIRED
-  section             CDATA #REQUIRED
-  translation-domain  CDATA #IMPLIED
-  mimetypes           CDATA #REQUIRED>
-
+	_name			CDATA	#IMPLIED
+	name  			CDATA	#IMPLIED
+	_section  		CDATA	#IMPLIED
+	section  		CDATA	#IMPLIED
+	version			CDATA	#REQUIRED
+	mimetypes		CDATA	#REQUIRED
+  	translation-domain  	CDATA	#IMPLIED>
+
+<!--
+	Which character is used in escape sequences.
+-->
 <!ELEMENT escape-char (#PCDATA)>
 
+<!--
+	The line-comment" element represents single line comments.
+	The "start-regex" subelement defines the regex matching the start of
+	the comment.
+-->
 <!ELEMENT line-comment (start-regex)>
 <!ATTLIST line-comment
-  %itemattrs;>
+	%tagattrs;>
 
+<!--
+	The "block-comment" element represents multiple lines comments.
+	The "start-regex" subelement defines the regex matching the beginning of
+	the comment.
+	The "end-regex" subelement defines the regex matching the end of
+	the comment.
+-->
 <!ELEMENT block-comment (start-regex,end-regex)>
 <!ATTLIST block-comment
-  %itemattrs;>
+ 	%tagattrs;>
+
+<!--
+	The "string" element represents string.
+	The "start-regex" subelement defines the regex matching the beginning of
+	the string.
+	The "end-regex" subelement defines the regex matching the end of
+	the string.
+
+	Optional attributes:
 
+	- end-at-line-end	whether the string end at the end of line
+-->
 <!ELEMENT string (start-regex,end-regex)>
 <!ATTLIST string
-  %itemattrs;
-  end-at-line-end (true|false) "true">
+ 	%tagattrs;
+ 	end-at-line-end		%boolean; "TRUE">
 
+<!--
+	The "syntax-item" element represents a generic region of the document.
+	The "start-regex" subelement defines the regex matching the beginning of
+	the region.
+	The "end-regex" subelement defines the regex matching the end of
+	the region.
+-->
 <!ELEMENT syntax-item (start-regex,end-regex)>
 <!ATTLIST syntax-item
-  %itemattrs;>
+ 	%tagattrs;>
 
+<!--
+	The "pattern-item" element represents a generic token.
+	The "regex" subelement defines the regex matching the token.
+-->
 <!ELEMENT pattern-item (regex)>
 <!ATTLIST pattern-item
-  %itemattrs;>
+	%tagattrs;>
 
-<!ELEMENT keyword-list (keyword+)>
+<!--
+	The "keyword-list" element represents a list of keywords, it can have
+	one or more "keyword" subelements each one representing a keyword.
+	A "keyword" subelement defines the regex matching a keyword of the
+	language.
+
+	Optional attributes:
+
+	- case-sensitive	whether the keywords are case sensitive
+	
+	- match-empty-string-at-beginning:
+				whether the empty string (\b) should be matched
+				at the beginning of the keywords
+				
+	- match-empty-string-at-end
+				whether the empty string (\b) should be matched
+				at the end of the keywords
+				
+	- beginning-regex	if all keywords start with a regex, you can
+				specify	it here to avoid doing it for
+				every single keyword
+				
+	- end-regex		if all keywords end with a regex, you can
+				specify	it here to avoid doing it for
+				every single keyword
+-->
+
+<!ELEMENT keyword-list (keyword)+>
 <!ATTLIST keyword-list
-  %itemattrs;
-  case-sensitive                  (true|false) "true"
-  match-empty-string-at-beginning (true|false) "false"
-  match-empty-string-at-end       (true|false) "false"
-  beginning-regex                 CDATA        #IMPLIED
-  end-regex                       CDATA        #IMPLIED>
+	%tagattrs;
+	case-sensitive			%boolean;	"TRUE"
+  	match-empty-string-at-beginning	%boolean;	"FALSE"
+	match-empty-string-at-end	%boolean;	"FALSE"
+	beginning-regex			CDATA		#IMPLIED
+	end-regex			CDATA		#IMPLIED>
 
+<!-- Elements used inside other elements -->
+<!ELEMENT keyword (#PCDATA)>
+<!ELEMENT regex (#PCDATA)>
 <!ELEMENT start-regex (#PCDATA)>
 <!ELEMENT end-regex (#PCDATA)>
-<!ELEMENT regex (#PCDATA)>
-<!ELEMENT keyword (#PCDATA)>
+
diff -pruN 1.8.1-2/gtksourceview/language-specs/language.rng 1.8.2-0ubuntu1/gtksourceview/language-specs/language.rng
--- 1.8.1-2/gtksourceview/language-specs/language.rng	1970-01-01 01:00:00.000000000 +0100
+++ 1.8.2-0ubuntu1/gtksourceview/language-specs/language.rng	2006-12-11 01:11:12.000000000 +0000
@@ -0,0 +1,351 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  This file describes the XML format used for syntax highlight
+  descriptions for the GtkSourceView 1.x library.
+  
+  .lang files are XML files which describe how to highlight syntax;
+  this RNG is used for validation purposes.
+  
+  .lang files should be located in $PREFIX/gtksourceview-1.0/language-specs/, 
+  or in ~./gnome2/gtksourceview-1.0/language-specs/
+  
+  To check if a .lang file is valid, run
+  
+  $ xmllint FILENAME - -relaxng language.rng
+  
+  If you create a new .lang file or modify an existing one, please note
+  that it will be (re)loaded by the application only after it is
+  restarted.
+-->
+<!--
+  Boolean type
+  
+  Attributes that are of type boolean allow the following values:
+  
+  - 'true', 'TRUE' and '1' 	all meaning true
+  - 'false', FALSE' and '0' 	all meaning false
+  
+  It is encouraged to use 'TRUE' and 'FALSE' instead of the alternatives.
+-->
+<grammar xmlns:a="http://relaxng.org/ns/compatibility/annotations/1.0"; 
+         xmlns="http://relaxng.org/ns/structure/1.0";
+         datatypeLibrary="http://www.w3.org/2001/XMLSchema-datatypes";>
+  <define name="boolean">
+    <choice>
+      <value>true</value>
+      <value>false</value>
+      <value>TRUE</value>
+      <value>FALSE</value>
+      <value>0</value>
+      <value>1</value>
+    </choice>
+  </define>
+  <!--
+    Attributes required by all element representing a syntax or pattern tag.
+    
+    - name		the name of the tag (it can appear in the UI)
+    
+    - style		the style used to highlight the tag. Recognized values
+    		are (from gtksourcestylescheme.h):
+    
+    		- Base-N Integer	used for values with a base
+    					other than 10
+    		- Character		used for single characters
+    		- Comment		used for comments
+    		- Data Type		used for data types
+    		- Function		used for function names
+    		- Decimal		used for decimal values
+    		- Floating Point	used for floating point values
+    		- Keyword		used for keywords
+    		- Preprocessor		used for preprocessor instructions
+    		- String		used for strings
+    		- Specials		used for 'special' things
+    		- Others (DEPRECATED, replaced by "Data Type")
+    		- Others 2		used for 'other' things
+    		- Others 3		used for 'other' things
+    
+    The "name" attribute can be prefixed with "_" to be marked for
+    translation.
+  -->
+  <define name="tagattrs">
+    <choice>
+      <attribute name="_name">
+        <data type="string"/>
+      </attribute>
+      <attribute name="name">
+        <data type="string"/>
+      </attribute>
+    </choice>
+    <attribute name="style">
+      <data type="string"/>
+    </attribute>
+  </define>
+  <!--
+    The root of the definition file is the element "language".
+    
+    Required attributes:
+    
+    - name		the name of the language (it can appear in menus and
+    		dialog boxes)
+    
+    - section	the category the language belongs to (e.g. "Sources",
+    		"Scripts", etc.)
+    
+    - version	version of the .lang file format (1.0)
+    
+    - mimetypes	a list of mime-types that identifies the types of file
+    		that must be highlighted using the .lang file
+    
+    Optional attributes:
+    
+    - translation-domain
+    		the translation domain used by the file
+    
+    The "name" and "section" attributes can be prefixed with
+    "_" to be marked for translation.
+  -->
+  <define name="language">
+    <element name="language">
+      <ref name="attlist.language"/>
+      <optional>
+        <ref name="escape-char"/>
+      </optional>
+      <oneOrMore>
+        <choice>
+          <ref name="line-comment"/>
+          <ref name="block-comment"/>
+          <ref name="string"/>
+          <ref name="syntax-item"/>
+          <ref name="pattern-item"/>
+          <ref name="keyword-list"/>
+        </choice>
+      </oneOrMore>
+    </element>
+  </define>
+  
+  <define name="attlist.language" combine="interleave">
+    <choice>
+      <attribute name="_name">
+        <data type="string"/>
+      </attribute>
+      <attribute name="name">
+        <data type="string"/>
+      </attribute>
+    </choice>
+    <choice>
+      <attribute name="_section">
+        <data type="string"/>
+      </attribute>
+      <attribute name="section">
+        <data type="string"/>
+      </attribute>
+    </choice>
+    <attribute name="version">
+      <data type="string">
+        <param name="pattern">1\.0</param>
+      </data>
+    </attribute>
+    <attribute name="mimetypes"/>
+    <optional>
+      <attribute name="translation-domain"/>
+    </optional>
+  </define>
+  <!-- Which character is used in escape sequences. -->
+  <define name="escape-char">
+    <element name="escape-char">
+      <ref name="attlist.escape-char"/>
+      <text/>
+    </element>
+  </define>
+  <define name="attlist.escape-char" combine="interleave">
+    <empty/>
+  </define>
+  <!--
+    The line-comment" element represents single line comments.
+    The "start-regex" subelement defines the regex matching the start of
+    the comment.
+  -->
+  <define name="line-comment">
+    <element name="line-comment">
+      <ref name="attlist.line-comment"/>
+      <ref name="start-regex"/>
+    </element>
+  </define>
+  <define name="attlist.line-comment" combine="interleave">
+    <ref name="tagattrs"/>
+  </define>
+  <!--
+    The "block-comment" element represents multiple lines comments.
+    The "start-regex" subelement defines the regex matching the beginning of
+    the comment.
+    The "end-regex" subelement defines the regex matching the end of
+    the comment.
+  -->
+  <define name="block-comment">
+    <element name="block-comment">
+      <ref name="attlist.block-comment"/>
+      <ref name="start-regex"/>
+      <ref name="end-regex"/>
+    </element>
+  </define>
+  <define name="attlist.block-comment" combine="interleave">
+    <ref name="tagattrs"/>
+  </define>
+  <!--
+    The "string" element represents string.
+    The "start-regex" subelement defines the regex matching the beginning of
+    the string.
+    The "end-regex" subelement defines the regex matching the end of
+    the string.
+    
+    Optional attributes:
+    
+    - end-at-line-end	whether the string end at the end of line
+  -->
+  <define name="string">
+    <element name="string">
+      <ref name="attlist.string"/>
+      <ref name="start-regex"/>
+      <ref name="end-regex"/>
+    </element>
+  </define>
+  <define name="attlist.string" combine="interleave">
+    <ref name="tagattrs"/>
+    <optional>
+      <attribute name="end-at-line-end" a:defaultValue="TRUE">
+        <ref name="boolean"/>
+      </attribute>
+    </optional>
+  </define>
+  <!--
+    The "syntax-item" element represents a generic region of the document.
+    The "start-regex" subelement defines the regex matching the beginning of
+    the region.
+    The "end-regex" subelement defines the regex matching the end of
+    the region.
+  -->
+  <define name="syntax-item">
+    <element name="syntax-item">
+      <ref name="attlist.syntax-item"/>
+      <ref name="start-regex"/>
+      <ref name="end-regex"/>
+    </element>
+  </define>
+  <define name="attlist.syntax-item" combine="interleave">
+    <ref name="tagattrs"/>
+  </define>
+  <!--
+    The "pattern-item" element represents a generic token.
+    The "regex" subelement defines the regex matching the token.
+  -->
+  <define name="pattern-item">
+    <element name="pattern-item">
+      <ref name="attlist.pattern-item"/>
+      <ref name="regex"/>
+    </element>
+  </define>
+  <define name="attlist.pattern-item" combine="interleave">
+    <ref name="tagattrs"/>
+  </define>
+  <!--
+    The "keyword-list" element represents a list of keywords, it can have
+    one or more "keyword" subelements each one representing a keyword.
+    A "keyword" subelement defines the regex matching a keyword of the
+    language.
+    
+    Optional attributes:
+    
+    - case-sensitive	whether the keywords are case sensitive
+    
+    - match-empty-string-at-beginning:
+    			whether the empty string (\b) should be matched
+    			at the beginning of the keywords
+    
+    - match-empty-string-at-end
+    			whether the empty string (\b) should be matched
+    			at the end of the keywords
+    
+    - beginning-regex	if all keywords start with a regex, you can
+    			specify	it here to avoid doing it for
+    			every single keyword
+    
+    - end-regex		if all keywords end with a regex, you can
+    			specify	it here to avoid doing it for
+    			every single keyword
+  -->
+  <define name="keyword-list">
+    <element name="keyword-list">
+      <ref name="attlist.keyword-list"/>
+      <oneOrMore>
+        <ref name="keyword"/>
+      </oneOrMore>
+    </element>
+  </define>
+  <define name="attlist.keyword-list" combine="interleave">
+    <ref name="tagattrs"/>
+    <optional>
+      <attribute name="case-sensitive" a:defaultValue="TRUE">
+        <ref name="boolean"/>
+      </attribute>
+    </optional>
+    <optional>
+      <attribute name="match-empty-string-at-beginning" a:defaultValue="FALSE">
+        <ref name="boolean"/>
+      </attribute>
+    </optional>
+    <optional>
+      <attribute name="match-empty-string-at-end" a:defaultValue="FALSE">
+        <ref name="boolean"/>
+      </attribute>
+    </optional>
+    <optional>
+      <attribute name="beginning-regex"/>
+    </optional>
+    <optional>
+      <attribute name="end-regex"/>
+    </optional>
+  </define>
+  <!-- Elements used inside other elements -->
+  <define name="keyword">
+    <element name="keyword">
+      <ref name="attlist.keyword"/>
+      <text/>
+    </element>
+  </define>
+  <define name="attlist.keyword" combine="interleave">
+    <empty/>
+  </define>
+  <define name="regex">
+    <element name="regex">
+      <ref name="attlist.regex"/>
+      <text/>
+    </element>
+  </define>
+  <define name="attlist.regex" combine="interleave">
+    <empty/>
+  </define>
+  <define name="start-regex">
+    <element name="start-regex">
+      <ref name="attlist.start-regex"/>
+      <text/>
+    </element>
+  </define>
+  <define name="attlist.start-regex" combine="interleave">
+    <empty/>
+  </define>
+  <define name="end-regex">
+    <element name="end-regex">
+      <ref name="attlist.end-regex"/>
+      <text/>
+    </element>
+  </define>
+  <define name="attlist.end-regex" combine="interleave">
+    <empty/>
+  </define>
+  
+  <start>
+    <choice>
+      <ref name="language"/>
+    </choice>
+  </start>
+</grammar>
diff -pruN 1.8.1-2/gtksourceview/language-specs/Makefile.am 1.8.2-0ubuntu1/gtksourceview/language-specs/Makefile.am
--- 1.8.1-2/gtksourceview/language-specs/Makefile.am	2006-07-24 17:07:26.000000000 +0100
+++ 1.8.2-0ubuntu1/gtksourceview/language-specs/Makefile.am	2006-12-11 01:18:30.000000000 +0000
@@ -1,5 +1,6 @@
 EXTRA_DIST = 			\
 	language.dtd		\
+	language.rng		\
 	ada.lang		\
 	boo.lang		\
 	c.lang			\
diff -pruN 1.8.1-2/gtksourceview/language-specs/Makefile.in 1.8.2-0ubuntu1/gtksourceview/language-specs/Makefile.in
--- 1.8.1-2/gtksourceview/language-specs/Makefile.in	2006-10-01 19:03:33.000000000 +0100
+++ 1.8.2-0ubuntu1/gtksourceview/language-specs/Makefile.in	2006-12-13 12:03:11.000000000 +0000
@@ -229,6 +229,7 @@ sysconfdir = @sysconfdir@
 target_alias = @target_alias@
 EXTRA_DIST = \
 	language.dtd		\
+	language.rng		\
 	ada.lang		\
 	boo.lang		\
 	c.lang			\
diff -pruN 1.8.1-2/gtksourceview/language-specs/nemerle.lang 1.8.2-0ubuntu1/gtksourceview/language-specs/nemerle.lang
--- 1.8.1-2/gtksourceview/language-specs/nemerle.lang	2005-01-07 23:18:04.000000000 +0000
+++ 1.8.2-0ubuntu1/gtksourceview/language-specs/nemerle.lang	2006-12-11 00:19:16.000000000 +0000
@@ -4,7 +4,7 @@
 	
 	<escape-char>\</escape-char>
 
-	<pattern-item _name = "Character Constant" style = "String" end-at-line-end = "TRUE">
+	<pattern-item _name = "Character Constant" style = "String">
 		<regex>&apos;(\\)?.&apos;</regex>
 	</pattern-item>
 	
diff -pruN 1.8.1-2/gtksourceview/language-specs/pascal.lang 1.8.2-0ubuntu1/gtksourceview/language-specs/pascal.lang
--- 1.8.1-2/gtksourceview/language-specs/pascal.lang	2005-01-07 20:47:29.000000000 +0000
+++ 1.8.2-0ubuntu1/gtksourceview/language-specs/pascal.lang	2006-12-11 00:22:25.000000000 +0000
@@ -16,24 +16,24 @@
 		<regex>\b\$[0-9a-fA-F]*\b</regex>
 	</pattern-item>
 
-	<line-comment _name = "Line Comment" style= "Comment" end-at-line-end = "TRUE">
+	<line-comment _name = "Line Comment" style= "Comment">
 		<start-regex>//</start-regex>
 	</line-comment>
 
-	<block-comment _name = "Block Comment 1" style= "Comment" end-at-line-end = "FALSE">
+	<block-comment _name = "Block Comment 1" style= "Comment">
 		<start-regex>\(\*</start-regex>
 		<end-regex>\*\)</end-regex>
 	</block-comment>
 
-	<block-comment _name = "Block Comment 2" style= "Comment" end-at-line-end = "FALSE">
+	<block-comment _name = "Block Comment 2" style= "Comment">
 		<start-regex>\{[^\$]</start-regex>
 		<end-regex>\}</end-regex>
 	</block-comment>
 
-	<block-comment _name = "Preprocessor Defines" style= "Preprocessor" end-at-line-end = "TRUE">
+	<string _name = "Preprocessor Defines" style= "Preprocessor" end-at-line-end = "TRUE">
 		<start-regex>\{\$</start-regex>
 		<end-regex>\}</end-regex>
-	</block-comment>
+	</string>
 
 	<keyword-list _name = "General Format" style = "Keyword" case-sensitive="FALSE">
 		<!-- File Header -->
diff -pruN 1.8.1-2/gtksourceview/language-specs/R.lang 1.8.2-0ubuntu1/gtksourceview/language-specs/R.lang
--- 1.8.1-2/gtksourceview/language-specs/R.lang	2005-12-30 16:12:44.000000000 +0000
+++ 1.8.2-0ubuntu1/gtksourceview/language-specs/R.lang	2006-12-11 00:24:05.000000000 +0000
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+<?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE language SYSTEM "language.dtd">
 <language name="R" version="1.0" _section="Scripts" mimetypes="text/x-R">
   <escape-char>\</escape-char>
diff -pruN 1.8.1-2/gtksourceview/language-specs/verilog.lang 1.8.2-0ubuntu1/gtksourceview/language-specs/verilog.lang
--- 1.8.1-2/gtksourceview/language-specs/verilog.lang	2003-12-29 03:53:28.000000000 +0000
+++ 1.8.2-0ubuntu1/gtksourceview/language-specs/verilog.lang	2006-10-14 12:02:40.000000000 +0100
@@ -16,6 +16,7 @@
 	<keyword-list _name="Keywords" style="Keyword" case-sensitive="TRUE">
 		<keyword>always</keyword>
 		<keyword>assign</keyword>
+		<keyword>begin</keyword>
 		<keyword>case</keyword>
 		<keyword>casex</keyword>
 		<keyword>casez</keyword>
diff -pruN 1.8.1-2/gtksourceview/language-specs/xml.lang 1.8.2-0ubuntu1/gtksourceview/language-specs/xml.lang
--- 1.8.1-2/gtksourceview/language-specs/xml.lang	2006-04-08 14:07:30.000000000 +0100
+++ 1.8.2-0ubuntu1/gtksourceview/language-specs/xml.lang	2006-12-11 11:07:46.000000000 +0000
@@ -30,11 +30,11 @@
 	</pattern-item>
 
 	<pattern-item _name = "Tag" style = "Others 2">
-		<regex>(&lt;/?[a-zA-Z_:][a-zA-Z0-9_:-]*(\b|\&gt;)|&lt;\?[xX][mM][lL]\b)</regex>
+		<regex>(&lt;/?[a-zA-Z_:][a-zA-Z0-9_:.-]*(\b|\&gt;)|&lt;\?[xX][mM][lL]\b)</regex>
 	</pattern-item>
 
 	<pattern-item _name="Attribute" style = "Others">
-		<regex>[ \t][a-zA-Z_:][a-zA-Z0-9_:-]*\b[ \t]*=</regex>
+		<regex>\b[a-zA-Z_:][a-zA-Z0-9_:.-]*\b[ \t]*=</regex>
 	</pattern-item>
 
 	<pattern-item _name ="Hexadecimal" style = "Base-N Integer">
diff -pruN 1.8.1-2/intltool-extract.in 1.8.2-0ubuntu1/intltool-extract.in
--- 1.8.1-2/intltool-extract.in	2006-10-01 19:03:28.000000000 +0100
+++ 1.8.2-0ubuntu1/intltool-extract.in	2006-12-13 12:02:59.000000000 +0000
@@ -32,7 +32,7 @@
 ## Release information
 my $PROGRAM      = "intltool-extract";
 my $PACKAGE      = "intltool";
-my $VERSION      = "0.35.0";
+my $VERSION      = "0.35.1";
 
 ## Loaded modules
 use strict; 
diff -pruN 1.8.1-2/intltool-merge.in 1.8.2-0ubuntu1/intltool-merge.in
--- 1.8.1-2/intltool-merge.in	2006-10-01 19:03:28.000000000 +0100
+++ 1.8.2-0ubuntu1/intltool-merge.in	2006-12-13 12:02:59.000000000 +0000
@@ -35,7 +35,7 @@
 ## Release information
 my $PROGRAM = "intltool-merge";
 my $PACKAGE = "intltool";
-my $VERSION = "0.35.0";
+my $VERSION = "0.35.1";
 
 ## Loaded modules
 use strict; 
@@ -426,7 +426,7 @@ sub create_translation_database
         {
 	    $nextfuzzy = 1 if /^#, fuzzy/;
        
-	    if (/^msgid "((\\.|[^\\])*)"/ ) 
+	    if (/^msgid "((\\.|[^\\]+)*)"/ ) 
             {
 		$translations{$lang, $msgid} = $msgstr if $inmsgstr && $msgid && $msgstr;
 		$msgid = "";
@@ -442,14 +442,14 @@ sub create_translation_database
 		$nextfuzzy = 0;
 	    }
 
-	    if (/^msgstr "((\\.|[^\\])*)"/) 
+	    if (/^msgstr "((\\.|[^\\]+)*)"/) 
             {
 	        $msgstr = unescape_po_string($1);
 		$inmsgstr = 1;
 		$inmsgid = 0;
 	    }
 
-	    if (/^"((\\.|[^\\])*)"/) 
+	    if (/^"((\\.|[^\\]+)*)"/) 
             {
 	        $msgid .= unescape_po_string($1) if $inmsgid;
 	        $msgstr .= unescape_po_string($1) if $inmsgstr;
diff -pruN 1.8.1-2/intltool-update.in 1.8.2-0ubuntu1/intltool-update.in
--- 1.8.1-2/intltool-update.in	2006-10-01 19:03:28.000000000 +0100
+++ 1.8.2-0ubuntu1/intltool-update.in	2006-12-13 12:02:59.000000000 +0000
@@ -30,7 +30,7 @@
 
 ## Release information
 my $PROGRAM = "intltool-update";
-my $VERSION = "0.35.0";
+my $VERSION = "0.35.1";
 my $PACKAGE = "intltool";
 
 ## Loaded modules
@@ -124,8 +124,10 @@ my $arg_count = ($DIST_ARG > 0)
 
 &Console_Write_IntltoolHelp if $arg_count > 1;
 
+my $PKGNAME = FindPackageName ();
+
 # --version and --help don't require a module name
-my $MODULE = $GETTEXT_PACKAGE || &FindPackageName || "unknown";
+my $MODULE = $GETTEXT_PACKAGE || $PKGNAME || "unknown";
 
 if ($POT_ARG)
 {
diff -pruN 1.8.1-2/NEWS 1.8.2-0ubuntu1/NEWS
--- 1.8.1-2/NEWS	2006-10-01 18:40:27.000000000 +0100
+++ 1.8.2-0ubuntu1/NEWS	2006-12-13 12:00:57.000000000 +0000
@@ -1,3 +1,13 @@
+News in 1.8.2
+-------------
+
+* Fixed bug #360495 â?? Errors in Java/Verilog syntax files (Jeff Walden)
+* Fixed bug #380996 â?? language.dtd needs more comments (Leonardo Ferreira 
+  Fontenelle and Paolo Maggi)
+* Added a RNG schema for the .lang file format (Paolo Maggi)
+* Fixes bug #375515 â?? allow fullstop in xml tag highlighting (Carey O'Shea)
+* Updated translations
+
 News in 1.8.1
 -------------
 
diff -pruN 1.8.1-2/po/ar.po 1.8.2-0ubuntu1/po/ar.po
--- 1.8.1-2/po/ar.po	2005-03-08 10:47:59.000000000 +0000
+++ 1.8.2-0ubuntu1/po/ar.po	2006-10-30 10:09:08.000000000 +0000
@@ -4,14 +4,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # Arafat Medini <lumina silverpen de>, 2003.
 # Abdulaziz Al-Arfaj <alarfaj0 yahoo com>, 2004.
+# Djihed Afifi <djihed gmail com>, 2006.
+#
 #
 msgid ""
 msgstr ""
 "Project-Id-Version: gtksourceview\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-03-08 11:38+0100\n"
-"PO-Revision-Date: 2004-09-04 17:50+0300\n"
-"Last-Translator: Abdulaziz Al-Arfaj <alarfaj0 yahoo com>\n"
+"POT-Creation-Date: 2006-10-30 00:54+0000\n"
+"PO-Revision-Date: 2006-10-05 21:07-0000\n"
+"Last-Translator: Djihed Afifi <djihed gmail com>\n"
 "Language-Team: Arabic <support arabeyes org>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -19,434 +21,495 @@ msgstr ""
 "X-Generator: KBabel 1.3\n"
 "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : n>=3 && n<=10 ? 2 : "
 "3\n"
-"\n"
 
-#: gtksourceview/gtksourcebuffer.c:279
+#: ../gtksourceview/gtksourcebuffer.c:278
 msgid "Escape Character"
 msgstr "رÙ?ز اÙ?Ø¥Ù?Ù?ات"
 
-#: gtksourceview/gtksourcebuffer.c:280
+#: ../gtksourceview/gtksourcebuffer.c:279
 msgid "Escaping character for syntax patterns"
 msgstr "رÙ?ز اÙ?Ø¥Ù?Ù?ات Ù?Ø£Ù?Ù?اط تراÙ?Ù?ب اÙ?جÙ?Ù?"
 
-#: gtksourceview/gtksourcebuffer.c:288
+#: ../gtksourceview/gtksourcebuffer.c:287
 msgid "Check Brackets"
 msgstr "Ù?راجعة اÙ?Ù?Ù?ساÙ?"
 
-#: gtksourceview/gtksourcebuffer.c:289
+#: ../gtksourceview/gtksourcebuffer.c:288
 msgid "Whether to check and highlight matching brackets"
 msgstr "Ù?Ù?Ù?ا إذا سÙ?Ù?ع اÙ?تثبت Ù? إبراز اÙ?Ø£Ù?Ù?اس اÙ?Ù?تطابÙ?Ø©"
 
-#: gtksourceview/gtksourcebuffer.c:297 gtksourceview/gtksourceprintjob.c:295
+#: ../gtksourceview/gtksourcebuffer.c:296
+#: ../gtksourceview/gtksourceprintjob.c:296
 msgid "Highlight"
 msgstr "ابراز"
 
-#: gtksourceview/gtksourcebuffer.c:298
+#: ../gtksourceview/gtksourcebuffer.c:297
 msgid "Whether to highlight syntax in the buffer"
 msgstr "Ù?ا اذا Ù?برز اÙ?ترÙ?Ù?ب Ù?Ù? اÙ?ذاÙ?رة اÙ?Ù?سÙ?طة"
 
-#: gtksourceview/gtksourcebuffer.c:306
+#: ../gtksourceview/gtksourcebuffer.c:305
 msgid "Maximum Undo Levels"
 msgstr "Ù?ستÙ?Ù?ات اÙ?تراجع اÙ?Ù?صÙ?Ù?"
 
-#: gtksourceview/gtksourcebuffer.c:307
+#: ../gtksourceview/gtksourcebuffer.c:306
 msgid "Number of undo levels for the buffer"
 msgstr "عدد Ù?ستÙ?Ù?ات اÙ?تراجع Ù?Ù?ذاÙ?رة اÙ?Ù?سÙ?طة"
 
-#: gtksourceview/gtksourcebuffer.c:317
-#: gtksourceview/language-specs/desktop.lang.h:6
-#: gtksourceview/language-specs/ini.lang.h:7
+#: ../gtksourceview/gtksourcebuffer.c:316
+#: ../gtksourceview/language-specs/desktop.lang.h:6
+#: ../gtksourceview/language-specs/ini.lang.h:7
 msgid "Language"
 msgstr "اÙ?Ù?غة"
 
-#: gtksourceview/gtksourcebuffer.c:318
+#: ../gtksourceview/gtksourcebuffer.c:317
 msgid "Language object to get highlighting patterns from"
 msgstr "أجساÙ? اÙ?Ù?غة Ù?تÙ?Ù?Ù? Ø£Ù?Ù?اط اÙ?إبراز Ù?Ù?Ù?ا"
 
-#: gtksourceview/gtksourcelanguagesmanager.c:119
+#: ../gtksourceview/gtksourcelanguagesmanager.c:114
 msgid "Language specification directories"
 msgstr "دÙ?ائÙ? خصائص اÙ?Ù?غة"
 
-#: gtksourceview/gtksourcelanguagesmanager.c:120
+#: ../gtksourceview/gtksourcelanguagesmanager.c:115
 msgid ""
 "List of directories where the language specification files (.lang) are "
 "located"
 msgstr "Ù?ائÙ?Ø© اÙ?دÙ?ائÙ? اÙ?حاÙ?Ù?Ø© Ù?Ù?Ù?Ù?ات خصائص اÙ?Ù?غة (.lang)"
 
-#: gtksourceview/gtksourceprintjob.c:264
+#: ../gtksourceview/gtksourceprintjob.c:265
 msgid "Configuration"
 msgstr "إعدادات"
 
-#: gtksourceview/gtksourceprintjob.c:265
+#: ../gtksourceview/gtksourceprintjob.c:266
 msgid "Configuration options for the print job"
 msgstr "Ø®Ù?ارات اÙ?إعدادات Ù?Ù?Ù?Ù?Ø© اÙ?طبع"
 
-#: gtksourceview/gtksourceprintjob.c:272
+#: ../gtksourceview/gtksourceprintjob.c:273
 msgid "Source Buffer"
 msgstr "ذاÙ?رة اÙ?Ù?صدر اÙ?Ù?سÙ?طة"
 
-#: gtksourceview/gtksourceprintjob.c:273
+#: ../gtksourceview/gtksourceprintjob.c:274
 msgid "GtkSourceBuffer object to print"
 msgstr "جسÙ? GtkSourceBuffer Ù?Ù?طبع"
 
-#: gtksourceview/gtksourceprintjob.c:279 gtksourceview/gtksourceview.c:222
-#: gtksourceview/gtksourceview.c:223
+#: ../gtksourceview/gtksourceprintjob.c:280
+#: ../gtksourceview/gtksourceview.c:235 ../gtksourceview/gtksourceview.c:236
 msgid "Tabs Width"
 msgstr "عرض اÙ?Ø£Ù?سÙ?Ø©"
 
-#: gtksourceview/gtksourceprintjob.c:280
+#: ../gtksourceview/gtksourceprintjob.c:281
 msgid "Width in equivalent space characters of tabs"
 msgstr "اÙ?عرض بÙ?ا Ù?Ù?ابÙ?Ù? Ù?Ù? Ù?ضائات رÙ?Ù?ز اÙ?Ø£Ù?سÙ?Ø©"
 
-#: gtksourceview/gtksourceprintjob.c:287
+#: ../gtksourceview/gtksourceprintjob.c:288
 msgid "Wrap Mode"
 msgstr "Ù?سÙ? اÙ?Ù?سر"
 
-#: gtksourceview/gtksourceprintjob.c:288
+#: ../gtksourceview/gtksourceprintjob.c:289
 msgid "Word wrapping mode"
 msgstr "Ù?سÙ? Ù?سر اÙ?Ù?Ù?Ù?Ø©"
 
-#: gtksourceview/gtksourceprintjob.c:296
+#: ../gtksourceview/gtksourceprintjob.c:297
 msgid "Whether to print the document with highlighted syntax"
 msgstr "Ù?Ù?Ù?ا اذا سÙ?طبع اÙ?Ù?ستÙ?د بترÙ?Ù?بات بارزة"
 
-#: gtksourceview/gtksourceprintjob.c:304
+#: ../gtksourceview/gtksourceprintjob.c:305
 msgid "Font"
 msgstr "اÙ?خط"
 
-#: gtksourceview/gtksourceprintjob.c:305
+#: ../gtksourceview/gtksourceprintjob.c:306
 msgid "GnomeFont name to use for the document text (deprecated)"
 msgstr "اسÙ? خط جÙ?Ù?Ù? Ù?Ù?Ù?ت اÙ?Ø°Ù? سÙ?ستخدÙ? Ù?Ù?ص اÙ?Ù?ستÙ?د (Ù?Ù?غÙ?)"
 
-#: gtksourceview/gtksourceprintjob.c:312
+#: ../gtksourceview/gtksourceprintjob.c:313
 msgid "Font Description"
 msgstr "Ù?صÙ? اÙ?خط"
 
-#: gtksourceview/gtksourceprintjob.c:313
-#, fuzzy
+#: ../gtksourceview/gtksourceprintjob.c:314
 msgid "Font to use for the document text (e.g. \"Monospace 10\")"
-msgstr "اسÙ? خط جÙ?Ù?Ù? Ù?Ù?Ù?ت اÙ?Ø°Ù? سÙ?ستخدÙ? Ù?Ù?ص اÙ?Ù?ستÙ?د (Ù?Ù?غÙ?)"
+msgstr "اسÙ? اÙ?خط Ù?Ù?ص اÙ?Ù?ستÙ?د (Ù?ثاÙ?: \"Monospace 10\")"
 
-#: gtksourceview/gtksourceprintjob.c:320 gtksourceview/gtksourceprintjob.c:328
+#: ../gtksourceview/gtksourceprintjob.c:321
+#: ../gtksourceview/gtksourceprintjob.c:329
 msgid "Numbers Font"
 msgstr "خط اÙ?أرÙ?اÙ?"
 
-#: gtksourceview/gtksourceprintjob.c:321
+#: ../gtksourceview/gtksourceprintjob.c:322
 msgid "GnomeFont name to use for the line numbers (deprecated)"
 msgstr "اسÙ? خط جÙ?Ù?Ù? Ù?Ù?Ù?ت اÙ?Ø°Ù? سÙ?ستخدÙ? Ù?أرÙ?اÙ? اÙ?سÙ?Ø·Ù?ر (Ù?Ù?غÙ?)"
 
-#: gtksourceview/gtksourceprintjob.c:329
+#: ../gtksourceview/gtksourceprintjob.c:330
 msgid "Font description to use for the line numbers"
 msgstr "Ù?صÙ? اÙ?خط اÙ?Ø°Ù? سÙ?ستخدÙ? Ù?أرÙ?اÙ? اÙ?سÙ?Ø·Ù?ر"
 
-#: gtksourceview/gtksourceprintjob.c:336
+#: ../gtksourceview/gtksourceprintjob.c:337
 msgid "Print Line Numbers"
 msgstr "طبع أرÙ?اÙ? اÙ?سطÙ?ر"
 
-#: gtksourceview/gtksourceprintjob.c:337
+#: ../gtksourceview/gtksourceprintjob.c:338
 msgid "Interval of printed line numbers (0 means no numbers)"
 msgstr "اÙ?Ù?اصÙ? بÙ?Ù? أرÙ?اÙ? اÙ?سطÙ?ر اÙ?Ù?طبÙ?عة (0 Ù?عÙ?Ù? Ù?ا أرÙ?اÙ?)"
 
-#: gtksourceview/gtksourceprintjob.c:344
+#: ../gtksourceview/gtksourceprintjob.c:345
 msgid "Print Header"
 msgstr "طبع اÙ?ترÙ?Ù?سة"
 
-#: gtksourceview/gtksourceprintjob.c:345
+#: ../gtksourceview/gtksourceprintjob.c:346
 msgid "Whether to print a header in each page"
 msgstr "Ù?ا اذا تطبع ترÙ?Ù?سة Ù?Ù? Ù?Ù? صÙ?حة"
 
-#: gtksourceview/gtksourceprintjob.c:352
+#: ../gtksourceview/gtksourceprintjob.c:353
 msgid "Print Footer"
 msgstr "طبع اÙ?Ù?اÙ?Ø´"
 
-#: gtksourceview/gtksourceprintjob.c:353
+#: ../gtksourceview/gtksourceprintjob.c:354
 msgid "Whether to print a footer in each page"
 msgstr "Ù?ا اذا Ù?طبع Ù?اÙ?Ø´ Ù?Ù? صÙ?حة"
 
-#: gtksourceview/gtksourceprintjob.c:360
+#: ../gtksourceview/gtksourceprintjob.c:361
 msgid "Header and Footer Font"
 msgstr "خط اÙ?ترÙ?Ù?سة Ù? اÙ?Ù?اÙ?Ø´"
 
-#: gtksourceview/gtksourceprintjob.c:361
+#: ../gtksourceview/gtksourceprintjob.c:362
 msgid "GnomeFont name to use for the header and footer (deprecated)"
 msgstr "اسÙ? خط جÙ?Ù?Ù? Ù?Ù?Ù?ت اÙ?Ø°Ù? سÙ?ستخدÙ? Ù?Ù?تÙ?رÙ?Ù?سة Ù? اÙ?تÙ?Ø°Ù?Ù?Ù? (Ù?Ù?غÙ?)"
 
-#: gtksourceview/gtksourceprintjob.c:368
+#: ../gtksourceview/gtksourceprintjob.c:369
 msgid "Header and Footer Font Description"
 msgstr "Ù?صÙ? خط اÙ?تÙ?رÙ?Ù?سة Ù? اÙ?تÙ?Ø°Ù?Ù?Ù?"
 
-#: gtksourceview/gtksourceprintjob.c:369
-#, fuzzy
+#: ../gtksourceview/gtksourceprintjob.c:370
 msgid "Font to use for headers and footers (e.g. \"Monospace 10\")"
-msgstr "اسÙ? خط جÙ?Ù?Ù? Ù?Ù?Ù?ت اÙ?Ø°Ù? سÙ?ستخدÙ? Ù?Ù?تÙ?رÙ?Ù?سة Ù? اÙ?تÙ?Ø°Ù?Ù?Ù? (Ù?Ù?غÙ?)"
+msgstr "اسÙ? اÙ?خط Ù?Ù?تÙ?رÙ?Ù?سة Ù? اÙ?تÙ?Ø°Ù?Ù?Ù?  (Ù?ثاÙ?: \"Monospace 10\") "
 
-#: gtksourceview/gtksourcestylescheme.c:262
+#: ../gtksourceview/gtksourcestylescheme.c:264
 msgid "Base-N Integer"
 msgstr "Ù?اعدة - ج عدد صحÙ?Ø­"
 
-#: gtksourceview/gtksourcestylescheme.c:267
+#: ../gtksourceview/gtksourcestylescheme.c:269
 msgid "Character"
 msgstr "اÙ?رÙ?ز"
 
-#: gtksourceview/gtksourcestylescheme.c:272
-#: gtksourceview/language-specs/latex.lang.h:1
-#: gtksourceview/language-specs/po.lang.h:1
+#: ../gtksourceview/gtksourcestylescheme.c:274
+#: ../gtksourceview/language-specs/latex.lang.h:2
+#: ../gtksourceview/language-specs/po.lang.h:1
 msgid "Comment"
 msgstr "تعÙ?Ù?Ù?"
 
 #. $this = (datatype)
-#: gtksourceview/gtksourcestylescheme.c:277
-#: gtksourceview/language-specs/php.lang.h:14
+#: ../gtksourceview/gtksourcestylescheme.c:279
+#: ../gtksourceview/language-specs/php.lang.h:14
 msgid "Data Type"
 msgstr "Ù?Ù?ع اÙ?بÙ?اÙ?ات"
 
 #.
 #. CSS functions, such as rgb(), clip(), or lang().
 #.
-#: gtksourceview/gtksourcestylescheme.c:282
-#: gtksourceview/language-specs/ada.lang.h:3
-#: gtksourceview/language-specs/css.lang.h:17
+#: ../gtksourceview/gtksourcestylescheme.c:284
+#: ../gtksourceview/language-specs/ada.lang.h:3
+#: ../gtksourceview/language-specs/css.lang.h:18
+#: ../gtksourceview/language-specs/octave.lang.h:4
+#: ../gtksourceview/language-specs/python.lang.h:5
+#: ../gtksourceview/language-specs/scheme.lang.h:2
+#: ../gtksourceview/language-specs/sh.lang.h:4
 msgid "Function"
 msgstr "اÙ?Ù?ظÙ?Ù?Ø©"
 
-#: gtksourceview/gtksourcestylescheme.c:287
-#: gtksourceview/language-specs/c.lang.h:6
-#: gtksourceview/language-specs/cpp.lang.h:6
-#: gtksourceview/language-specs/fortran.lang.h:1
-#: gtksourceview/language-specs/python.lang.h:2
-#: gtksourceview/language-specs/haskell.lang.h:3
-#: gtksourceview/language-specs/nemerle.lang.h:6
+#: ../gtksourceview/gtksourcestylescheme.c:289
+#: ../gtksourceview/language-specs/c.lang.h:6
+#: ../gtksourceview/language-specs/cpp.lang.h:6
+#: ../gtksourceview/language-specs/d.lang.h:5
+#: ../gtksourceview/language-specs/fortran.lang.h:1
+#: ../gtksourceview/language-specs/haskell.lang.h:3
+#: ../gtksourceview/language-specs/nemerle.lang.h:6
+#: ../gtksourceview/language-specs/octave.lang.h:1
+#: ../gtksourceview/language-specs/python.lang.h:2
 msgid "Decimal"
 msgstr "عشرÙ?"
 
-#: gtksourceview/gtksourcestylescheme.c:292
+#: ../gtksourceview/gtksourcestylescheme.c:294
 msgid "Floating Point"
 msgstr "عشرÙ?"
 
-#: gtksourceview/gtksourcestylescheme.c:297
-#: gtksourceview/language-specs/latex.lang.h:3
-#: gtksourceview/language-specs/po.lang.h:3
-#: gtksourceview/language-specs/texinfo.lang.h:8
-#: gtksourceview/language-specs/vhdl.lang.h:2
-#: gtksourceview/language-specs/R.lang.h:6
-#: gtksourceview/language-specs/gtkrc.lang.h:6
+#. We cannot match \b at the end of a keyword automatically
+#. because it fails for let* etc. So we need to manually add it to the
+#. other keywords and match ([ \t]|$) for the one ending with a
+#. special character. Unfortnately this also means that if the highlight
+#. style for keywords sets the background color, for let* etc also the
+#. trailing space will be highlighted.
+#: ../gtksourceview/gtksourcestylescheme.c:299
+#: ../gtksourceview/language-specs/ada.lang.h:4
+#: ../gtksourceview/language-specs/gtkrc.lang.h:6
+#: ../gtksourceview/language-specs/haskell.lang.h:9
+#: ../gtksourceview/language-specs/latex.lang.h:5
+#: ../gtksourceview/language-specs/octave.lang.h:6
+#: ../gtksourceview/language-specs/po.lang.h:3
+#: ../gtksourceview/language-specs/python.lang.h:7
+#: ../gtksourceview/language-specs/R.lang.h:6
+#: ../gtksourceview/language-specs/scheme.lang.h:9
+#: ../gtksourceview/language-specs/tcl.lang.h:1
+#: ../gtksourceview/language-specs/texinfo.lang.h:8
+#: ../gtksourceview/language-specs/vhdl.lang.h:2
 msgid "Keyword"
 msgstr "اÙ?Ù?Ù?Ù?Ø© اÙ?Ù?Ù?تاح"
 
-#: gtksourceview/gtksourcestylescheme.c:302
+#: ../gtksourceview/gtksourcestylescheme.c:304
 msgid "Preprocessor"
 msgstr "Preprocessor"
 
-#: gtksourceview/gtksourcestylescheme.c:307
-#: gtksourceview/language-specs/ada.lang.h:9
-#: gtksourceview/language-specs/c.lang.h:15
-#: gtksourceview/language-specs/cpp.lang.h:15
-#: gtksourceview/language-specs/csharp.lang.h:8
-#: gtksourceview/language-specs/css.lang.h:63
-#: gtksourceview/language-specs/html.lang.h:8
-#: gtksourceview/language-specs/fortran.lang.h:12
-#: gtksourceview/language-specs/idl.lang.h:9
-#: gtksourceview/language-specs/java.lang.h:11
-#: gtksourceview/language-specs/javascript.lang.h:33
-#: gtksourceview/language-specs/lua.lang.h:10
-#: gtksourceview/language-specs/pascal.lang.h:18
-#: gtksourceview/language-specs/perl.lang.h:8
-#: gtksourceview/language-specs/po.lang.h:6
-#: gtksourceview/language-specs/python.lang.h:14
-#: gtksourceview/language-specs/ruby.lang.h:18
-#: gtksourceview/language-specs/sh.lang.h:13
-#: gtksourceview/language-specs/xml.lang.h:7
-#: gtksourceview/language-specs/haskell.lang.h:15
-#: gtksourceview/language-specs/vbnet.lang.h:7
-#: gtksourceview/language-specs/nemerle.lang.h:15
-#: gtksourceview/language-specs/tcl.lang.h:4
-#: gtksourceview/language-specs/vhdl.lang.h:6
+#.
+#. <pattern-item _name = "Operator" style = "Operators">
+#. <regex>[:!#$%&amp;*+./&gt;=&lt;? \\^|~\-]+</regex>
+#. </pattern-item>
+#.
+#. <keyword-list _name="Keysymbol" style = "Keyword">
+#. <keyword>::</keyword>
+#. <keyword>-&gt;</keyword>
+#. <keyword>&lt;-</keyword>
+#. <keyword>=&gt;</keyword>
+#. <keyword>=</keyword>
+#. <keyword>|</keyword>`
+#. <keyword>\</keyword>
+#. <keyword>@</keyword>
+#. <keyword>~</keyword>
+#. </keyword-list>
+#.
+#: ../gtksourceview/gtksourcestylescheme.c:309
+#: ../gtksourceview/language-specs/ada.lang.h:9
+#: ../gtksourceview/language-specs/c.lang.h:15
+#: ../gtksourceview/language-specs/cpp.lang.h:15
+#: ../gtksourceview/language-specs/csharp.lang.h:9
+#: ../gtksourceview/language-specs/css.lang.h:58
+#: ../gtksourceview/language-specs/html.lang.h:8
+#: ../gtksourceview/language-specs/fortran.lang.h:14
+#: ../gtksourceview/language-specs/haskell.lang.h:31
+#: ../gtksourceview/language-specs/idl.lang.h:9
+#: ../gtksourceview/language-specs/java.lang.h:12
+#: ../gtksourceview/language-specs/javascript.lang.h:23
+#: ../gtksourceview/language-specs/lua.lang.h:10
+#: ../gtksourceview/language-specs/makefile.lang.h:8
+#: ../gtksourceview/language-specs/nemerle.lang.h:15
+#: ../gtksourceview/language-specs/pascal.lang.h:18
+#: ../gtksourceview/language-specs/perl.lang.h:8
+#: ../gtksourceview/language-specs/po.lang.h:6
+#: ../gtksourceview/language-specs/scheme.lang.h:13
+#: ../gtksourceview/language-specs/sh.lang.h:13
+#: ../gtksourceview/language-specs/tcl.lang.h:4
+#: ../gtksourceview/language-specs/vbnet.lang.h:11
+#: ../gtksourceview/language-specs/vhdl.lang.h:6
+#: ../gtksourceview/language-specs/xml.lang.h:7
 msgid "String"
 msgstr "سÙ?سÙ?Ø©"
 
-#: gtksourceview/gtksourcestylescheme.c:312
+#: ../gtksourceview/gtksourcestylescheme.c:314
 msgid "Specials"
 msgstr "خاصة"
 
-#.
-#. Proposed language specification for CSS (Cascading Style Sheet) files.
-#.
-#. Reference used:
-#. http://www.w3.org/TR/CSS2/
-#.
-#. Tested with:
-#. http://www.simplebits.com/css/simple.css
-#.
-#. Submitted by Scott Martin (scott coffeeblack org)
-#.
-#. FIXME: find the correct mimetype
-#: gtksourceview/gtksourcestylescheme.c:319
-#: gtksourceview/language-specs/css.lang.h:46
-#: gtksourceview/language-specs/desktop.lang.h:10
-#: gtksourceview/language-specs/diff.lang.h:7
-#: gtksourceview/language-specs/ini.lang.h:10
-#: gtksourceview/language-specs/msil.lang.h:2
-#: gtksourceview/language-specs/po.lang.h:5
-#: gtksourceview/language-specs/gtkrc.lang.h:9
+#: ../gtksourceview/gtksourcestylescheme.c:321
+#: ../gtksourceview/language-specs/changelog.lang.h:6
+#: ../gtksourceview/language-specs/css.lang.h:36
+#: ../gtksourceview/language-specs/desktop.lang.h:10
+#: ../gtksourceview/language-specs/diff.lang.h:7
+#: ../gtksourceview/language-specs/gtkrc.lang.h:9
+#: ../gtksourceview/language-specs/ini.lang.h:10
+#: ../gtksourceview/language-specs/msil.lang.h:2
+#: ../gtksourceview/language-specs/po.lang.h:5
 msgid "Others"
 msgstr "أخرÙ?"
 
-#: gtksourceview/gtksourcestylescheme.c:324
+#: ../gtksourceview/gtksourcestylescheme.c:326
 msgid "Others 2"
 msgstr "أخرÙ? 2"
 
-#: gtksourceview/gtksourcestylescheme.c:329
+#: ../gtksourceview/gtksourcestylescheme.c:331
 msgid "Others 3"
 msgstr "أخرÙ? 3"
 
-#: gtksourceview/gtksourcestylescheme.c:366
+#: ../gtksourceview/gtksourcestylescheme.c:368
 msgid "Default"
 msgstr "اÙ?Ø¥Ù?تراض"
 
-#: gtksourceview/gtksourcetag.c:108
+#: ../gtksourceview/gtksourcetag.c:109
 msgid "Tag ID"
 msgstr "Ù?Ù?Ù?Ø© اÙ?شارة"
 
-#: gtksourceview/gtksourcetag.c:109
+#: ../gtksourceview/gtksourcetag.c:110
 msgid "ID used to refer to the source tag"
 msgstr "اÙ?Ù?Ù?Ù?Ø© اÙ?Ù?ستخدÙ?Ø© Ù?Ù?اشارة Ù?شارة اÙ?Ù?صدر"
 
-#: gtksourceview/gtksourcetag.c:116
+#: ../gtksourceview/gtksourcetag.c:117
 msgid "Tag style"
 msgstr "أسÙ?Ù?ب اÙ?شارة"
 
-#: gtksourceview/gtksourcetag.c:117
-msgid "The style associated to the source tag"
+#: ../gtksourceview/gtksourcetag.c:118
+msgid "The style associated with the source tag"
 msgstr "اÙ?أسÙ?Ù?ب اÙ?Ù?ترابط Ù?ع شارة اÙ?Ù?صدر"
 
-#: gtksourceview/gtksourceview.c:206
+#: ../gtksourceview/gtksourceview.c:219
 msgid "Show Line Numbers"
 msgstr "اظÙ?ار أرÙ?اÙ? اÙ?سطÙ?ر"
 
-#: gtksourceview/gtksourceview.c:207
+#: ../gtksourceview/gtksourceview.c:220
 msgid "Whether to display line numbers"
 msgstr "Ù?ا اذا ستعرض أرÙ?اÙ? اÙ?سطÙ?ر"
 
-#: gtksourceview/gtksourceview.c:214
+#: ../gtksourceview/gtksourceview.c:227
 msgid "Show Line Markers"
 msgstr "اظÙ?ار Ù?عÙ?Ù?ات اÙ?سطÙ?ر"
 
-#: gtksourceview/gtksourceview.c:215
+#: ../gtksourceview/gtksourceview.c:228
 msgid "Whether to display line marker pixbufs"
 msgstr "Ù?Ù?Ù?ا إذا ستعرض بÙ?سباÙ? Ù?عÙ?Ù? اÙ?سطر"
 
-#: gtksourceview/gtksourceview.c:232
+#: ../gtksourceview/gtksourceview.c:245
 msgid "Auto Indentation"
 msgstr "تجÙ?Ù?Ù? اÙ?Ù?ص Ù?Ù?Ù?Ù?Ø¥ Ø¢Ù?Ù?ا"
 
-#: gtksourceview/gtksourceview.c:233
+#: ../gtksourceview/gtksourceview.c:246
 msgid "Whether to enable auto indentation"
 msgstr "Ù?ا اذا سÙ?Ù?عÙ? اÙ?تجÙ?Ù?Ù? اÙ?Ø¢Ù?Ù? Ù?Ù?Ù?ص"
 
-#: gtksourceview/gtksourceview.c:239
+#: ../gtksourceview/gtksourceview.c:252
 msgid "Insert Spaces Instead of Tabs"
 msgstr "ادخاÙ? Ù?راغات عÙ?ض Ù?Ù?ظÙ?ات اÙ?جداÙ?Ù? (tabulator)"
 
-#: gtksourceview/gtksourceview.c:240
+#: ../gtksourceview/gtksourceview.c:253
 msgid "Whether to insert spaces instead of tabs"
 msgstr "Ù?ا اذا ستدخÙ? Ù?راغات عÙ?ض Ù?Ù?ظÙ?ات اÙ?جداÙ?Ù? (tabulator)"
 
-#: gtksourceview/gtksourceview.c:247
+#: ../gtksourceview/gtksourceview.c:260
 msgid "Show Right Margin"
 msgstr "اظÙ?ار اÙ?Ù?اÙ?Ø´ اÙ?Ø£Ù?Ù?Ù?"
 
-#: gtksourceview/gtksourceview.c:248
+#: ../gtksourceview/gtksourceview.c:261
 msgid "Whether to display the right margin"
 msgstr "Ù?ا اذا سÙ?عرض اÙ?Ù?اÙ?Ø´ اÙ?Ø£Ù?Ù?Ù?"
 
-#: gtksourceview/gtksourceview.c:255
+#: ../gtksourceview/gtksourceview.c:268
 msgid "Margin position"
 msgstr "Ù?Ù?Ù?ع اÙ?Ù?اÙ?Ø´"
 
-#: gtksourceview/gtksourceview.c:256
+#: ../gtksourceview/gtksourceview.c:269
 msgid "Position of the right margin"
 msgstr "Ù?Ù?Ù?ع اÙ?Ù?اÙ?Ø´ اÙ?Ø£Ù?Ù?Ù?"
 
-#: gtksourceview/gtksourceview.c:265
+#: ../gtksourceview/gtksourceview.c:278
 msgid "Use smart home/end"
 msgstr "إستخداÙ? Ù?Ù?زÙ?/Ù?Ù?اÙ?Ø© حاذÙ?Ù?Ù?"
 
-#: gtksourceview/gtksourceview.c:266
+#: ../gtksourceview/gtksourceview.c:279
 msgid ""
-"HOME and END keys move to first/last characters on line first before going "
-"to the start/end of the line"
+"HOME and END keys move to first/last non whitespace characters on line "
+"before going to the start/end of the line"
 msgstr ""
 "Ù?Ù?تاحا HOME Ù? END Ù?Ù?Ù?Ù?اÙ? Ù?Ù?رÙ?Ù?ز اÙ?Ø£Ù?Ù?Ù?/اÙ?أخÙ?رة عÙ?Ù? اÙ?سطر Ù?بÙ? اÙ?Ø°Ù?اب Ø¥Ù?Ù? "
 "بداÙ?Ø©/Ù?Ù?اÙ?Ø© اÙ?سطر"
 
-#: gtksourceview/gtksourceview.c:275
+#: ../gtksourceview/gtksourceview.c:288
 msgid "Highlight current line"
-msgstr ""
+msgstr "إبراز اÙ?سطر اÙ?حاÙ?Ù?"
 
-#: gtksourceview/gtksourceview.c:276
-#, fuzzy
+#: ../gtksourceview/gtksourceview.c:289
 msgid "Whether to highlight the current line"
-msgstr "Ù?ا اذا Ù?برز اÙ?ترÙ?Ù?ب Ù?Ù? اÙ?ذاÙ?رة اÙ?Ù?سÙ?طة"
+msgstr "Ù?Ù?Ù?ا إذا Ù?جب إبراز اÙ?سطر اÙ?حاÙ?Ù?."
+
+#: ../gtksourceview/gtksourceview.c:296
+msgid "Indent on tab"
+msgstr "Ù?ساحة خاÙ?Ù?Ø© عÙ?د اÙ?تاب"
+
+#: ../gtksourceview/gtksourceview.c:297
+msgid "Whether to indent the selected text when the tab key is pressed"
+msgstr "إذا Ù?جب إضاÙ?Ø© Ù?ساحة عÙ?د ضغط Ù?Ù?تاح تاب"
+
+#: ../gtksourceview/gtksourceview.c:313
+msgid "Margin Line Alpha"
+msgstr "Ø£Ù?Ù?ا خط اÙ?حاشÙ?Ø© "
+
+#: ../gtksourceview/gtksourceview.c:314
+msgid "Transparency of the margin line"
+msgstr "Ø´Ù?اÙ?Ù?Ø© خط اÙ?حاشÙ?Ø© "
+
+#: ../gtksourceview/gtksourceview.c:331
+msgid "Margin Line Color"
+msgstr "Ù?Ù?Ù? خط اÙ?حاشÙ?Ø© "
+
+#: ../gtksourceview/gtksourceview.c:332
+msgid "Color to use for the right margin line"
+msgstr "Ù?Ù?Ù? خط اÙ?حاشÙ?Ø© اÙ?Ø£Ù?Ù?Ù?"
+
+#: ../gtksourceview/gtksourceview.c:348
+msgid "Margin Overlay Toggle"
+msgstr "تÙ?عÙ?Ù? اÙ?حاشÙ?Ø© اÙ?Ø£Ù?Ù?Ù?"
+
+#: ../gtksourceview/gtksourceview.c:349
+msgid "Whether to draw the right margin overlay"
+msgstr "Ù?ا اذا سÙ?عرض اÙ?حاشÙ?Ø© اÙ?Ø£Ù?Ù?Ù?"
 
-#: gtksourceview/language-specs/ada.lang.h:1
+#: ../gtksourceview/gtksourceview.c:365
+msgid "Margin Overlay Alpha"
+msgstr "Ø£Ù?Ù?ا اÙ?حاشÙ?Ø©"
+
+#: ../gtksourceview/gtksourceview.c:366
+msgid "Transparency of the margin overlay"
+msgstr "Ø´Ù?اÙ?Ù?Ø© اÙ?حاشÙ?Ø©"
+
+#: ../gtksourceview/gtksourceview.c:383
+msgid "Margin Overlay Color"
+msgstr "Ù?Ù?Ù? اÙ?حاشÙ?Ø© "
+
+#: ../gtksourceview/gtksourceview.c:384
+msgid "Color to use for drawing the margin overlay"
+msgstr "Ù?Ù?Ù? اÙ?Ù?ستعÙ?Ù? Ù?Ù?حاشÙ?Ø©"
+
+#: ../gtksourceview/language-specs/ada.lang.h:1
 msgid "Ada"
 msgstr "Ada"
 
-#: gtksourceview/language-specs/ada.lang.h:2
-#: gtksourceview/language-specs/c.lang.h:4
-#: gtksourceview/language-specs/cpp.lang.h:4
-#: gtksourceview/language-specs/haskell.lang.h:2
-#: gtksourceview/language-specs/nemerle.lang.h:3
-#: gtksourceview/language-specs/vhdl.lang.h:1
+#: ../gtksourceview/language-specs/ada.lang.h:2
+#: ../gtksourceview/language-specs/c.lang.h:4
+#: ../gtksourceview/language-specs/cpp.lang.h:4
+#: ../gtksourceview/language-specs/haskell.lang.h:2
+#: ../gtksourceview/language-specs/nemerle.lang.h:3
+#: ../gtksourceview/language-specs/vhdl.lang.h:1
 msgid "Character Constant"
 msgstr "رÙ?زÙ? ثابت"
 
-#: gtksourceview/language-specs/ada.lang.h:4
-#: gtksourceview/language-specs/c.lang.h:10
-#: gtksourceview/language-specs/cpp.lang.h:10
-#: gtksourceview/language-specs/csharp.lang.h:3
-#: gtksourceview/language-specs/fortran.lang.h:7
-#: gtksourceview/language-specs/idl.lang.h:4
-#: gtksourceview/language-specs/javascript.lang.h:11
-#: gtksourceview/language-specs/lua.lang.h:3
-#: gtksourceview/language-specs/perl.lang.h:2
-#: gtksourceview/language-specs/python.lang.h:6
-#: gtksourceview/language-specs/ruby.lang.h:8
-#: gtksourceview/language-specs/verilog.lang.h:6
-#: gtksourceview/language-specs/haskell.lang.h:9
-#: gtksourceview/language-specs/vbnet.lang.h:1
-#: gtksourceview/language-specs/tcl.lang.h:1
-msgid "Keywords"
-msgstr "اÙ?Ù?Ù?Ù?ات اÙ?Ù?Ù?اتÙ?Ø­"
-
-#: gtksourceview/language-specs/ada.lang.h:5
-#: gtksourceview/language-specs/c.lang.h:11
-#: gtksourceview/language-specs/cpp.lang.h:11
-#: gtksourceview/language-specs/csharp.lang.h:4
-#: gtksourceview/language-specs/css.lang.h:28
-#: gtksourceview/language-specs/desktop.lang.h:7
-#: gtksourceview/language-specs/diff.lang.h:5
-#: gtksourceview/language-specs/fortran.lang.h:8
-#: gtksourceview/language-specs/idl.lang.h:5
-#: gtksourceview/language-specs/ini.lang.h:8
-#: gtksourceview/language-specs/java.lang.h:5
-#: gtksourceview/language-specs/javascript.lang.h:12
-#: gtksourceview/language-specs/lua.lang.h:4
-#: gtksourceview/language-specs/pascal.lang.h:11
-#: gtksourceview/language-specs/perl.lang.h:3
-#: gtksourceview/language-specs/python.lang.h:7
-#: gtksourceview/language-specs/ruby.lang.h:9
-#: gtksourceview/language-specs/sh.lang.h:5
-#: gtksourceview/language-specs/sql.lang.h:11
-#: gtksourceview/language-specs/verilog.lang.h:7
-#: gtksourceview/language-specs/haskell.lang.h:10
-#: gtksourceview/language-specs/texinfo.lang.h:9
-#: gtksourceview/language-specs/vbnet.lang.h:2
-#: gtksourceview/language-specs/nemerle.lang.h:10
-#: gtksourceview/language-specs/tcl.lang.h:2
-#: gtksourceview/language-specs/vhdl.lang.h:3
-#: gtksourceview/language-specs/R.lang.h:7
-#: gtksourceview/language-specs/gtkrc.lang.h:7
+#. Note: contains an hack to avoid considering ^COMMON a comment
+#. <string _name = "String 2" style = "String" end-at-line-end = "TRUE">
+#. <start-regex>&apos;</start-regex>
+#. <end-regex>&apos;</end-regex>
+#. </string>
+#: ../gtksourceview/language-specs/ada.lang.h:5
+#: ../gtksourceview/language-specs/c.lang.h:11
+#: ../gtksourceview/language-specs/cpp.lang.h:11
+#: ../gtksourceview/language-specs/csharp.lang.h:4
+#: ../gtksourceview/language-specs/css.lang.h:29
+#: ../gtksourceview/language-specs/d.lang.h:10
+#: ../gtksourceview/language-specs/desktop.lang.h:7
+#: ../gtksourceview/language-specs/diff.lang.h:5
+#: ../gtksourceview/language-specs/fortran.lang.h:9
+#: ../gtksourceview/language-specs/gtkrc.lang.h:7
+#: ../gtksourceview/language-specs/haskell.lang.h:10
+#: ../gtksourceview/language-specs/idl.lang.h:5
+#: ../gtksourceview/language-specs/ini.lang.h:8
+#: ../gtksourceview/language-specs/java.lang.h:6
+#: ../gtksourceview/language-specs/javascript.lang.h:13
+#: ../gtksourceview/language-specs/lua.lang.h:4
+#: ../gtksourceview/language-specs/makefile.lang.h:4
+#: ../gtksourceview/language-specs/nemerle.lang.h:10
+#: ../gtksourceview/language-specs/octave.lang.h:7
+#: ../gtksourceview/language-specs/pascal.lang.h:11
+#: ../gtksourceview/language-specs/perl.lang.h:3
+#: ../gtksourceview/language-specs/python.lang.h:8
+#: ../gtksourceview/language-specs/R.lang.h:7
+#: ../gtksourceview/language-specs/ruby.lang.h:10
+#: ../gtksourceview/language-specs/scheme.lang.h:10
+#: ../gtksourceview/language-specs/sh.lang.h:5
+#: ../gtksourceview/language-specs/sql.lang.h:23
+#: ../gtksourceview/language-specs/tcl.lang.h:2
+#: ../gtksourceview/language-specs/texinfo.lang.h:9
+#: ../gtksourceview/language-specs/vbnet.lang.h:6
+#: ../gtksourceview/language-specs/verilog.lang.h:7
+#: ../gtksourceview/language-specs/vhdl.lang.h:3
 msgid "Line Comment"
 msgstr "تعÙ?Ù?Ù? عÙ? اÙ?سطر"
 
@@ -454,1092 +517,1264 @@ msgstr "تعÙ?Ù?Ù? عÙ? اÙ?سطر"
 #. For values like: z-index: 2;
 #. +/- before 0 is not allowed.
 #.
-#: gtksourceview/language-specs/ada.lang.h:6
-#: gtksourceview/language-specs/css.lang.h:33
-#: gtksourceview/language-specs/desktop.lang.h:9
-#: gtksourceview/language-specs/javascript.lang.h:15
-#: gtksourceview/language-specs/pascal.lang.h:14
-#: gtksourceview/language-specs/vhdl.lang.h:4
-#: gtksourceview/language-specs/gtkrc.lang.h:8
+#: ../gtksourceview/language-specs/ada.lang.h:6
+#: ../gtksourceview/language-specs/boo.lang.h:4
+#: ../gtksourceview/language-specs/css.lang.h:34
+#: ../gtksourceview/language-specs/desktop.lang.h:9
+#: ../gtksourceview/language-specs/gtkrc.lang.h:8
+#: ../gtksourceview/language-specs/javascript.lang.h:16
+#: ../gtksourceview/language-specs/pascal.lang.h:14
+#: ../gtksourceview/language-specs/vhdl.lang.h:4
 msgid "Number"
 msgstr "اÙ?رÙ?Ù?"
 
-#: gtksourceview/language-specs/ada.lang.h:7
-msgid "Preprocessor Keywords"
-msgstr "اÙ?Ù?Ù?Ù?ات اÙ?Ù?Ù?اتÙ?Ø­ Ù?Ù?Ù? Preprocessor"
-
-#: gtksourceview/language-specs/ada.lang.h:8
-#: gtksourceview/language-specs/c.lang.h:14
-#: gtksourceview/language-specs/cpp.lang.h:14
-#: gtksourceview/language-specs/csharp.lang.h:7
-#: gtksourceview/language-specs/fortran.lang.h:11
-#: gtksourceview/language-specs/idl.lang.h:8
-#: gtksourceview/language-specs/java.lang.h:10
-#: gtksourceview/language-specs/pascal.lang.h:17
-#: gtksourceview/language-specs/php.lang.h:23
-#: gtksourceview/language-specs/sql.lang.h:26
-#: gtksourceview/language-specs/verilog.lang.h:9
-#: gtksourceview/language-specs/haskell.lang.h:14
-#: gtksourceview/language-specs/vbnet.lang.h:6
-#: gtksourceview/language-specs/nemerle.lang.h:14
-#: gtksourceview/language-specs/vhdl.lang.h:5
+#: ../gtksourceview/language-specs/ada.lang.h:7
+msgid "Preprocessor Keyword"
+msgstr "تعرÙ?Ù?ات اÙ?Ù? Preprocessor"
+
+#: ../gtksourceview/language-specs/ada.lang.h:8
+#: ../gtksourceview/language-specs/boo.lang.h:6
+#: ../gtksourceview/language-specs/c.lang.h:14
+#: ../gtksourceview/language-specs/cpp.lang.h:14
+#: ../gtksourceview/language-specs/csharp.lang.h:8
+#: ../gtksourceview/language-specs/d.lang.h:13
+#: ../gtksourceview/language-specs/fortran.lang.h:13
+#: ../gtksourceview/language-specs/haskell.lang.h:13
+#: ../gtksourceview/language-specs/idl.lang.h:8
+#: ../gtksourceview/language-specs/java.lang.h:11
+#: ../gtksourceview/language-specs/makefile.lang.h:6
+#: ../gtksourceview/language-specs/nemerle.lang.h:14
+#: ../gtksourceview/language-specs/pascal.lang.h:17
+#: ../gtksourceview/language-specs/scheme.lang.h:12
+#: ../gtksourceview/language-specs/sql.lang.h:48
+#: ../gtksourceview/language-specs/vbnet.lang.h:10
+#: ../gtksourceview/language-specs/verilog.lang.h:9
+#: ../gtksourceview/language-specs/vhdl.lang.h:5
 msgid "Sources"
 msgstr "اÙ?Ù?صادر"
 
-#: gtksourceview/language-specs/ada.lang.h:10
+#: ../gtksourceview/language-specs/ada.lang.h:10
 msgid "True And False"
 msgstr "True Ù? False"
 
-#: gtksourceview/language-specs/ada.lang.h:11
-#: gtksourceview/language-specs/c.lang.h:16
-#: gtksourceview/language-specs/cpp.lang.h:16
-#: gtksourceview/language-specs/fortran.lang.h:14
-#: gtksourceview/language-specs/idl.lang.h:10
-#: gtksourceview/language-specs/verilog.lang.h:10
-msgid "Types"
-msgstr "Ø£Ù?Ù?اع"
+#: ../gtksourceview/language-specs/ada.lang.h:11
+#: ../gtksourceview/language-specs/vhdl.lang.h:8
+msgid "Type"
+msgstr "اÙ?Ù?Ù?Ù?ع"
+
+#: ../gtksourceview/language-specs/boo.lang.h:1
+msgid "Boolean"
+msgstr "Ù?Ù?Ù?Ø© Ù?Ù?Ø·Ù?Ù?Ø©"
+
+#: ../gtksourceview/language-specs/boo.lang.h:2
+#: ../gtksourceview/language-specs/c.lang.h:10
+#: ../gtksourceview/language-specs/cpp.lang.h:10
+#: ../gtksourceview/language-specs/csharp.lang.h:3
+#: ../gtksourceview/language-specs/d.lang.h:9
+#: ../gtksourceview/language-specs/fortran.lang.h:7
+#: ../gtksourceview/language-specs/idl.lang.h:4
+#: ../gtksourceview/language-specs/javascript.lang.h:12
+#: ../gtksourceview/language-specs/lua.lang.h:3
+#: ../gtksourceview/language-specs/perl.lang.h:2
+#: ../gtksourceview/language-specs/ruby.lang.h:9
+#: ../gtksourceview/language-specs/vbnet.lang.h:1
+#: ../gtksourceview/language-specs/verilog.lang.h:6
+msgid "Keywords"
+msgstr "اÙ?Ù?Ù?Ù?ات اÙ?Ù?Ù?اتÙ?Ø­"
 
-#: gtksourceview/language-specs/c.lang.h:1
-#: gtksourceview/language-specs/cpp.lang.h:1
+#: ../gtksourceview/language-specs/boo.lang.h:3
+#: ../gtksourceview/language-specs/javascript.lang.h:14
+msgid "Literals"
+msgstr "Ù?تغÙ?رات Ù?باشرة"
+
+#: ../gtksourceview/language-specs/boo.lang.h:5
+msgid "Primitive"
+msgstr "اÙ?بدائÙ?ات"
+
+#: ../gtksourceview/language-specs/c.lang.h:1
+#: ../gtksourceview/language-specs/cpp.lang.h:1
 msgid "'#if 0' Comment"
 msgstr "تعÙ?Ù?Ù? '#if 0'"
 
-#: gtksourceview/language-specs/c.lang.h:2
-#: gtksourceview/language-specs/cpp.lang.h:2
-#: gtksourceview/language-specs/csharp.lang.h:1
-#: gtksourceview/language-specs/css.lang.h:9
-#: gtksourceview/language-specs/html.lang.h:2
-#: gtksourceview/language-specs/idl.lang.h:1
-#: gtksourceview/language-specs/java.lang.h:1
-#: gtksourceview/language-specs/javascript.lang.h:2
-#: gtksourceview/language-specs/lua.lang.h:1
-#: gtksourceview/language-specs/sql.lang.h:5
-#: gtksourceview/language-specs/verilog.lang.h:2
-#: gtksourceview/language-specs/xml.lang.h:2
-#: gtksourceview/language-specs/haskell.lang.h:1
-#: gtksourceview/language-specs/texinfo.lang.h:1
-#: gtksourceview/language-specs/nemerle.lang.h:2
+#. Comments
+#: ../gtksourceview/language-specs/c.lang.h:2
+#: ../gtksourceview/language-specs/cpp.lang.h:2
+#: ../gtksourceview/language-specs/csharp.lang.h:1
+#: ../gtksourceview/language-specs/css.lang.h:9
+#: ../gtksourceview/language-specs/d.lang.h:2
+#: ../gtksourceview/language-specs/html.lang.h:2
+#: ../gtksourceview/language-specs/haskell.lang.h:1
+#: ../gtksourceview/language-specs/idl.lang.h:1
+#: ../gtksourceview/language-specs/java.lang.h:1
+#: ../gtksourceview/language-specs/javascript.lang.h:2
+#: ../gtksourceview/language-specs/lua.lang.h:1
+#: ../gtksourceview/language-specs/nemerle.lang.h:2
+#: ../gtksourceview/language-specs/sql.lang.h:9
+#: ../gtksourceview/language-specs/texinfo.lang.h:1
+#: ../gtksourceview/language-specs/verilog.lang.h:2
+#: ../gtksourceview/language-specs/xml.lang.h:2
 msgid "Block Comment"
 msgstr "تعÙ?Ù?Ù? Ù?Ù?Ù?Ù?ب"
 
-#: gtksourceview/language-specs/c.lang.h:3
+#: ../gtksourceview/language-specs/c.lang.h:3
 msgid "C"
 msgstr "C"
 
-#: gtksourceview/language-specs/c.lang.h:5
-#: gtksourceview/language-specs/cpp.lang.h:5
+#: ../gtksourceview/language-specs/c.lang.h:5
+#: ../gtksourceview/language-specs/cpp.lang.h:5
 msgid "Common Macro"
 msgstr "Ù?رÙ?ب Ù?تداÙ?Ù?"
 
-#: gtksourceview/language-specs/c.lang.h:7
-#: gtksourceview/language-specs/cpp.lang.h:7
-#: gtksourceview/language-specs/fortran.lang.h:2
-#: gtksourceview/language-specs/python.lang.h:3
-#: gtksourceview/language-specs/haskell.lang.h:4
-#: gtksourceview/language-specs/nemerle.lang.h:7
-#: gtksourceview/language-specs/R.lang.h:4
+#: ../gtksourceview/language-specs/c.lang.h:7
+#: ../gtksourceview/language-specs/cpp.lang.h:7
+#: ../gtksourceview/language-specs/d.lang.h:6
+#: ../gtksourceview/language-specs/fortran.lang.h:2
+#: ../gtksourceview/language-specs/haskell.lang.h:4
+#: ../gtksourceview/language-specs/nemerle.lang.h:7
+#: ../gtksourceview/language-specs/octave.lang.h:3
+#: ../gtksourceview/language-specs/python.lang.h:4
+#: ../gtksourceview/language-specs/R.lang.h:4
 msgid "Floating Point Number"
 msgstr "عدد عشرÙ?"
 
 #. FIXME WHY DOESN'T THIS WORK?
-#: gtksourceview/language-specs/c.lang.h:8
-#: gtksourceview/language-specs/cpp.lang.h:8
-#: gtksourceview/language-specs/fortran.lang.h:4
-#: gtksourceview/language-specs/pascal.lang.h:10
-#: gtksourceview/language-specs/python.lang.h:5
-#: gtksourceview/language-specs/haskell.lang.h:6
-#: gtksourceview/language-specs/nemerle.lang.h:8
+#: ../gtksourceview/language-specs/c.lang.h:8
+#: ../gtksourceview/language-specs/cpp.lang.h:8
+#: ../gtksourceview/language-specs/d.lang.h:8
+#: ../gtksourceview/language-specs/fortran.lang.h:4
+#: ../gtksourceview/language-specs/haskell.lang.h:6
+#: ../gtksourceview/language-specs/nemerle.lang.h:8
+#: ../gtksourceview/language-specs/octave.lang.h:5
+#: ../gtksourceview/language-specs/pascal.lang.h:10
+#: ../gtksourceview/language-specs/python.lang.h:6
 msgid "Hex Number"
 msgstr "عدد سادس عشرÙ?"
 
-#: gtksourceview/language-specs/c.lang.h:9
-#: gtksourceview/language-specs/cpp.lang.h:9
-#: gtksourceview/language-specs/idl.lang.h:3
-#: gtksourceview/language-specs/haskell.lang.h:7
+#: ../gtksourceview/language-specs/c.lang.h:9
+#: ../gtksourceview/language-specs/cpp.lang.h:9
+#: ../gtksourceview/language-specs/haskell.lang.h:7
+#: ../gtksourceview/language-specs/idl.lang.h:3
 msgid "Include/Pragma"
 msgstr "تضÙ?Ù?Ù?/Pragma"
 
-#: gtksourceview/language-specs/c.lang.h:12
-#: gtksourceview/language-specs/cpp.lang.h:12
-#: gtksourceview/language-specs/fortran.lang.h:9
-#: gtksourceview/language-specs/python.lang.h:11
-#: gtksourceview/language-specs/verilog.lang.h:8
-#: gtksourceview/language-specs/haskell.lang.h:11
-#: gtksourceview/language-specs/nemerle.lang.h:12
+#: ../gtksourceview/language-specs/c.lang.h:12
+#: ../gtksourceview/language-specs/cpp.lang.h:12
+#: ../gtksourceview/language-specs/d.lang.h:12
+#: ../gtksourceview/language-specs/fortran.lang.h:10
+#: ../gtksourceview/language-specs/haskell.lang.h:11
+#: ../gtksourceview/language-specs/nemerle.lang.h:12
+#: ../gtksourceview/language-specs/octave.lang.h:10
+#: ../gtksourceview/language-specs/python.lang.h:12
+#: ../gtksourceview/language-specs/verilog.lang.h:8
 msgid "Octal Number"
 msgstr "عدد Ø«Ù?اÙ?Ù?"
 
-#: gtksourceview/language-specs/c.lang.h:13
-#: gtksourceview/language-specs/cpp.lang.h:13
-#: gtksourceview/language-specs/csharp.lang.h:5
-#: gtksourceview/language-specs/idl.lang.h:6
-#: gtksourceview/language-specs/haskell.lang.h:13
-#: gtksourceview/language-specs/vbnet.lang.h:4
+#: ../gtksourceview/language-specs/c.lang.h:13
+#: ../gtksourceview/language-specs/cpp.lang.h:13
+#: ../gtksourceview/language-specs/csharp.lang.h:6
+#: ../gtksourceview/language-specs/idl.lang.h:6
+#: ../gtksourceview/language-specs/vbnet.lang.h:8
 msgid "Preprocessor Definitions"
 msgstr "تعرÙ?Ù?ات اÙ?Ù? Preprocessor"
 
-#: gtksourceview/language-specs/cpp.lang.h:3
+#: ../gtksourceview/language-specs/c.lang.h:16
+#: ../gtksourceview/language-specs/cpp.lang.h:16
+#: ../gtksourceview/language-specs/d.lang.h:16
+#: ../gtksourceview/language-specs/fortran.lang.h:16
+#: ../gtksourceview/language-specs/idl.lang.h:10
+#: ../gtksourceview/language-specs/verilog.lang.h:10
+msgid "Types"
+msgstr "Ø£Ù?Ù?اع"
+
+#: ../gtksourceview/language-specs/changelog.lang.h:1
+msgid "ChangeLog"
+msgstr "اÙ?تغÙ?رات:"
+
+#: ../gtksourceview/language-specs/changelog.lang.h:2
+msgid "Date"
+msgstr "اÙ?تارÙ?Ø®"
+
+#: ../gtksourceview/language-specs/changelog.lang.h:3
+msgid "Email"
+msgstr "اÙ?برÙ?د اÙ?Ø¥Ù?Ù?ترÙ?Ù?Ù?"
+
+#: ../gtksourceview/language-specs/changelog.lang.h:4
+msgid "File"
+msgstr "Ù?Ù?Ù?"
+
+#: ../gtksourceview/language-specs/changelog.lang.h:5
+msgid "Marker"
+msgstr "تعÙ?Ù?Ù?"
+
+#: ../gtksourceview/language-specs/cpp.lang.h:3
 msgid "C++"
 msgstr "C++"
 
-#: gtksourceview/language-specs/csharp.lang.h:2
+#: ../gtksourceview/language-specs/csharp.lang.h:2
 msgid "C#"
 msgstr "C#"
 
-#: gtksourceview/language-specs/csharp.lang.h:6
-#: gtksourceview/language-specs/java.lang.h:9
-#: gtksourceview/language-specs/vbnet.lang.h:5
-#: gtksourceview/language-specs/nemerle.lang.h:13
+#: ../gtksourceview/language-specs/csharp.lang.h:5
+#: ../gtksourceview/language-specs/lua.lang.h:7
+#: ../gtksourceview/language-specs/sh.lang.h:6
+msgid "Multiline String"
+msgstr "سÙ?سÙ?Ø© ذات سطÙ?ر Ù?تعددة"
+
+#: ../gtksourceview/language-specs/csharp.lang.h:7
+#: ../gtksourceview/language-specs/java.lang.h:10
+#: ../gtksourceview/language-specs/nemerle.lang.h:13
+#: ../gtksourceview/language-specs/vbnet.lang.h:9
 msgid "Primitives"
 msgstr "اÙ?بدائÙ?ات"
 
-#: gtksourceview/language-specs/csharp.lang.h:9
-#: gtksourceview/language-specs/css.lang.h:64
-#: gtksourceview/language-specs/fortran.lang.h:13
-#: gtksourceview/language-specs/java.lang.h:12
-#: gtksourceview/language-specs/javascript.lang.h:34
-#: gtksourceview/language-specs/lua.lang.h:11
-#: gtksourceview/language-specs/python.lang.h:15
-#: gtksourceview/language-specs/ruby.lang.h:19
-#: gtksourceview/language-specs/sh.lang.h:14
-#: gtksourceview/language-specs/vbnet.lang.h:8
+#: ../gtksourceview/language-specs/csharp.lang.h:10
+#: ../gtksourceview/language-specs/css.lang.h:59
+#: ../gtksourceview/language-specs/fortran.lang.h:15
+#: ../gtksourceview/language-specs/java.lang.h:13
+#: ../gtksourceview/language-specs/javascript.lang.h:24
+#: ../gtksourceview/language-specs/lua.lang.h:11
+#: ../gtksourceview/language-specs/makefile.lang.h:9
+#: ../gtksourceview/language-specs/sh.lang.h:14
 msgid "String 2"
 msgstr "سÙ?سÙ?Ø© 2"
 
 #.
 #. At rules must occur at the start of a line.
 #.
-#: gtksourceview/language-specs/css.lang.h:4
+#: ../gtksourceview/language-specs/css.lang.h:4
 msgid "At Rules"
-msgstr ""
+msgstr "شرÙ?Ø· عÙ?د"
 
 #.
 #. For CSS 2-style selectors: tag[attr="value"].
 #.
-#: gtksourceview/language-specs/css.lang.h:8
-#, fuzzy
+#: ../gtksourceview/language-specs/css.lang.h:8
 msgid "Attribute Value Delimiters"
-msgstr "تعرÙ?Ù?ات اÙ?صÙ?Ù?ات"
+msgstr "حدÙ?د Ù?Ù?Ù? اÙ?صÙ?Ù?Ø©"
+
+#: ../gtksourceview/language-specs/css.lang.h:10
+msgid "CSS"
+msgstr "CSS"
 
 #.
 #. Value length specifier. Unless it is 0, must always be like: -1.2em.
 #.
-#: gtksourceview/language-specs/css.lang.h:13
-#, fuzzy
+#: ../gtksourceview/language-specs/css.lang.h:14
 msgid "Dimension"
-msgstr "تعرÙ?Ù?ات"
+msgstr "اÙ?حجÙ?"
 
 #.
 #. Hexadecimal method of specifying colors. Can either be 3 or 6 in
 #. length: #ffcc00 = #fc0.
 #.
-#: gtksourceview/language-specs/css.lang.h:22
-#, fuzzy
+#: ../gtksourceview/language-specs/css.lang.h:23
 msgid "Hexadecimal Color"
-msgstr "سادس عشرÙ?"
+msgstr "اÙ?Ù?Ù?Ù? باÙ?Ù?ظاÙ? اÙ?Ø«Ù?اÙ?Ù?"
 
 #.
 #. Upgrades a rule set's importance when several rule sets conflict.
 #.
-#: gtksourceview/language-specs/css.lang.h:26
+#: ../gtksourceview/language-specs/css.lang.h:27
 msgid "Importance Modifier"
-msgstr ""
+msgstr "Ù?تغÙ?ر اÙ?Ø£Ù?Ù?Ù?Ø©"
 
-#: gtksourceview/language-specs/css.lang.h:27
+#: ../gtksourceview/language-specs/css.lang.h:28
 msgid "Known Property Values"
-msgstr ""
+msgstr "Ù?Ù?Ù? اÙ?عÙ?اصر اÙ?Ù?عرÙ?Ù?Ø©"
 
-#: gtksourceview/language-specs/css.lang.h:34
-#: gtksourceview/language-specs/javascript.lang.h:19
-#: gtksourceview/language-specs/php.lang.h:19
-#: gtksourceview/language-specs/sh.lang.h:8
-#: gtksourceview/language-specs/haskell.lang.h:12
+#: ../gtksourceview/language-specs/css.lang.h:35
+#: ../gtksourceview/language-specs/fortran.lang.h:11
+#: ../gtksourceview/language-specs/javascript.lang.h:20
+#: ../gtksourceview/language-specs/php.lang.h:20
+#: ../gtksourceview/language-specs/sql.lang.h:34
 msgid "Operators"
 msgstr "اÙ?عÙ?اÙ?Ù?"
 
-#: gtksourceview/language-specs/css.lang.h:47
+#: ../gtksourceview/language-specs/css.lang.h:37
 msgid "Property Names"
-msgstr ""
+msgstr "أسÙ?اء اÙ?خصائص"
 
 #.
 #. Brackets define a declaration block, parentheses define functions.
 #.
-#: gtksourceview/language-specs/css.lang.h:51
-#: gtksourceview/language-specs/javascript.lang.h:20
-#: gtksourceview/language-specs/sh.lang.h:9
-#, fuzzy
+#: ../gtksourceview/language-specs/css.lang.h:41
+#: ../gtksourceview/language-specs/javascript.lang.h:21
 msgid "Punctuators"
-msgstr "داÙ?ات"
+msgstr "تÙ?Ù?Ù?Ø·"
 
-#: gtksourceview/language-specs/css.lang.h:52
+#.
+#. Used to combine selectors. Example syntax:
+#.
+#. body * div#ID.className > p + ul li:first-child
+#.
+#: ../gtksourceview/language-specs/css.lang.h:47
 msgid "Selector Grammar"
-msgstr ""
+msgstr "Ù?Ø­Ù? اÙ?Ù?Ù?تÙ?Ù? "
 
 #.
 #. Pseudo-class rules. Good to have syntax highlighting for these
 #. for mistypings.
 #.
-#: gtksourceview/language-specs/css.lang.h:57
+#: ../gtksourceview/language-specs/css.lang.h:52
 msgid "Selector Pseudo Classes"
-msgstr ""
+msgstr "شبÙ? اÙ?Ø£Ù?Ù?اع Ù?Ù?Ù?Ù?تÙ?Ù? "
 
 #.
 #. Pseudo-element rules. Good to have syntax highlighting for these
 #. for mistypings.
 #.
-#: gtksourceview/language-specs/css.lang.h:62
+#: ../gtksourceview/language-specs/css.lang.h:57
 msgid "Selector Pseudo Elements"
-msgstr ""
+msgstr "شبÙ? اÙ?عÙ?اصر Ù?Ù?Ù?Ù?تÙ?Ù? "
 
 #.
 #. Escaped unicode characters can contain either 6 hexadecimal characters
 #. or 1-5 hex characters followed by one whitespace character.
 #.
-#: gtksourceview/language-specs/css.lang.h:69
+#: ../gtksourceview/language-specs/css.lang.h:64
 msgid "Unicode Character Reference"
-msgstr ""
+msgstr "Ù?رجع حرÙ?Ù? اÙ?Ù?Ù?Ù?Ù?Ù?Ù?د"
 
 #.
 #. Unicode range values.
 #.
-#: gtksourceview/language-specs/css.lang.h:73
+#: ../gtksourceview/language-specs/css.lang.h:68
 msgid "Unicode Range"
-msgstr ""
+msgstr "Ù?جاÙ? اÙ?Ù?Ù?Ù?Ù?Ù?Ù?د"
+
+#: ../gtksourceview/language-specs/d.lang.h:1
+#: ../gtksourceview/language-specs/nemerle.lang.h:1
+#: ../gtksourceview/language-specs/verilog.lang.h:1
+msgid "Binary Number"
+msgstr "عدد Ø«Ù?ائÙ?"
+
+#: ../gtksourceview/language-specs/d.lang.h:3
+msgid "Char Literal"
+msgstr "رÙ?ز حرÙ?Ù?"
+
+#: ../gtksourceview/language-specs/d.lang.h:4
+msgid "D"
+msgstr "D"
+
+#: ../gtksourceview/language-specs/d.lang.h:7
+msgid "Grave Literal"
+msgstr "رÙ?ز"
 
-#: gtksourceview/language-specs/desktop.lang.h:1
+#: ../gtksourceview/language-specs/d.lang.h:11
+msgid "Nested Comment"
+msgstr "تعÙ?Ù?Ù?"
+
+#: ../gtksourceview/language-specs/d.lang.h:14
+msgid "Special Tokens"
+msgstr "اÙ?رÙ?Ù?ز اÙ?خاصة"
+
+#: ../gtksourceview/language-specs/d.lang.h:15
+msgid "String Literal"
+msgstr "Ù?ص"
+
+#: ../gtksourceview/language-specs/desktop.lang.h:1
 msgid ".desktop"
 msgstr ".desktop"
 
-#: gtksourceview/language-specs/desktop.lang.h:2
-#: gtksourceview/language-specs/ini.lang.h:2
-#: gtksourceview/language-specs/gtkrc.lang.h:1
+#: ../gtksourceview/language-specs/desktop.lang.h:2
+#: ../gtksourceview/language-specs/gtkrc.lang.h:1
+#: ../gtksourceview/language-specs/ini.lang.h:2
+#: ../gtksourceview/language-specs/scheme.lang.h:1
 msgid "Boolean Value"
 msgstr "Ù?Ù?Ù?Ø© Ù?Ù?Ø·Ù?Ù?Ø©"
 
-#: gtksourceview/language-specs/desktop.lang.h:3
+#: ../gtksourceview/language-specs/desktop.lang.h:3
 msgid "Encoding"
 msgstr "اÙ?تشÙ?Ù?رة"
 
-#: gtksourceview/language-specs/desktop.lang.h:4
+#: ../gtksourceview/language-specs/desktop.lang.h:4
 msgid "Exec Parameter"
 msgstr "عÙ?اÙ?Ù? اÙ?تÙ?Ù?Ù?Ø°"
 
-#: gtksourceview/language-specs/desktop.lang.h:5
-#: gtksourceview/language-specs/ini.lang.h:5
+#: ../gtksourceview/language-specs/desktop.lang.h:5
+#: ../gtksourceview/language-specs/ini.lang.h:5
 msgid "Group"
 msgstr "Ù?جÙ?Ù?عة"
 
-#: gtksourceview/language-specs/desktop.lang.h:8
-#: gtksourceview/language-specs/ini.lang.h:9
+#: ../gtksourceview/language-specs/desktop.lang.h:8
+#: ../gtksourceview/language-specs/ini.lang.h:9
 msgid "Non Standard Key"
 msgstr "Ù?Ù?تاح غÙ?ر Ù?Ù?اسÙ?"
 
-#: gtksourceview/language-specs/desktop.lang.h:11
+#: ../gtksourceview/language-specs/desktop.lang.h:11
 msgid "Standard Key"
 msgstr "Ù?Ù?تاح Ù?Ù?اسÙ?"
 
-#: gtksourceview/language-specs/diff.lang.h:1
+#: ../gtksourceview/language-specs/diff.lang.h:1
 msgid "Added line"
 msgstr "اÙ?سطر اÙ?Ù?ضاÙ?"
 
-#: gtksourceview/language-specs/diff.lang.h:2
+#: ../gtksourceview/language-specs/diff.lang.h:2
 msgid "Changed line"
 msgstr "اÙ?سطر اÙ?Ù?غÙ?ر"
 
-#: gtksourceview/language-specs/diff.lang.h:3
+#: ../gtksourceview/language-specs/diff.lang.h:3
 msgid "Diff"
 msgstr "اÙ?اختÙ?اÙ?ات"
 
-#: gtksourceview/language-specs/diff.lang.h:4
+#: ../gtksourceview/language-specs/diff.lang.h:4
 msgid "Diff file"
 msgstr "Ù?Ù?Ù? اÙ?اختÙ?اÙ?ات"
 
-#: gtksourceview/language-specs/diff.lang.h:6
-#: gtksourceview/language-specs/po.lang.h:4
+#: ../gtksourceview/language-specs/diff.lang.h:6
+#: ../gtksourceview/language-specs/po.lang.h:4
 msgid "Location"
 msgstr "اÙ?Ù?Ù?Ù?ع"
 
-#: gtksourceview/language-specs/diff.lang.h:8
+#: ../gtksourceview/language-specs/diff.lang.h:8
 msgid "Removed line"
 msgstr "اÙ?سطر اÙ?Ù?حذÙ?Ù?"
 
-#: gtksourceview/language-specs/diff.lang.h:9
+#: ../gtksourceview/language-specs/diff.lang.h:9
 msgid "Special case"
 msgstr "حاÙ?Ø© خاصة"
 
-#: gtksourceview/language-specs/html.lang.h:1
-#: gtksourceview/language-specs/xml.lang.h:1
-msgid "Attributes"
-msgstr "اÙ?إسÙ?ادات"
+#: ../gtksourceview/language-specs/html.lang.h:1
+#: ../gtksourceview/language-specs/xml.lang.h:1
+msgid "Attribute"
+msgstr "اÙ?صÙ?Ù?Ø©"
 
-#: gtksourceview/language-specs/html.lang.h:3
-#: gtksourceview/language-specs/xml.lang.h:3
+#: ../gtksourceview/language-specs/html.lang.h:3
+#: ../gtksourceview/language-specs/xml.lang.h:3
 msgid "Closing Bracket"
 msgstr "اÙ?Ù?Ù?س اÙ?غاÙ?Ù?"
 
-#: gtksourceview/language-specs/html.lang.h:4
+#: ../gtksourceview/language-specs/html.lang.h:4
 msgid "DTD"
 msgstr "DTD"
 
-#: gtksourceview/language-specs/html.lang.h:5
-#: gtksourceview/language-specs/xml.lang.h:4
+#: ../gtksourceview/language-specs/html.lang.h:5
+#: ../gtksourceview/language-specs/xml.lang.h:4
 msgid "Entity"
 msgstr "Ù?Ù?اÙ?"
 
-#: gtksourceview/language-specs/html.lang.h:6
+#: ../gtksourceview/language-specs/html.lang.h:6
 msgid "HTML"
 msgstr "HTML"
 
-#: gtksourceview/language-specs/html.lang.h:7
-#: gtksourceview/language-specs/latex.lang.h:5
-#: gtksourceview/language-specs/xml.lang.h:6
-#: gtksourceview/language-specs/texinfo.lang.h:12
+#: ../gtksourceview/language-specs/html.lang.h:7
+#: ../gtksourceview/language-specs/latex.lang.h:7
+#: ../gtksourceview/language-specs/texinfo.lang.h:12
+#: ../gtksourceview/language-specs/xml.lang.h:6
 msgid "Markup"
 msgstr "تعÙ?Ù?Ù?"
 
-#: gtksourceview/language-specs/html.lang.h:9
-msgid "Tags"
-msgstr "شارات"
+#: ../gtksourceview/language-specs/html.lang.h:9
+#: ../gtksourceview/language-specs/xml.lang.h:8
+msgid "Tag"
+msgstr "شارة"
 
-#: gtksourceview/language-specs/fortran.lang.h:3
+#: ../gtksourceview/language-specs/fortran.lang.h:3
 msgid "Fortran 95"
-msgstr ""
+msgstr "Fortran 95"
 
-#: gtksourceview/language-specs/fortran.lang.h:5
+#: ../gtksourceview/language-specs/fortran.lang.h:5
 msgid "Input/Output"
-msgstr ""
+msgstr "خرÙ?ج/دخÙ?Ù?"
 
-#: gtksourceview/language-specs/fortran.lang.h:6
+#: ../gtksourceview/language-specs/fortran.lang.h:6
 msgid "Intrinsics"
-msgstr ""
+msgstr "اÙ?بدÙ?Ù?Ù?ات"
 
-#: gtksourceview/language-specs/fortran.lang.h:10
+#: ../gtksourceview/language-specs/fortran.lang.h:12
 msgid "Read/Write"
-msgstr ""
+msgstr "Ù?راءة/Ù?تابة"
 
-#: gtksourceview/language-specs/idl.lang.h:2
+#. "duble-quoted strings"
+#: ../gtksourceview/language-specs/gtkrc.lang.h:2
+#: ../gtksourceview/language-specs/ini.lang.h:4
+#: ../gtksourceview/language-specs/octave.lang.h:2
+#: ../gtksourceview/language-specs/php.lang.h:16
+#: ../gtksourceview/language-specs/python.lang.h:3
+#: ../gtksourceview/language-specs/R.lang.h:3
+#: ../gtksourceview/language-specs/ruby.lang.h:6
+msgid "Double Quoted String"
+msgstr "سÙ?سÙ?Ø© ذات رÙ?ز تصارÙ?Ø­ Ù?ضاعÙ?"
+
+#: ../gtksourceview/language-specs/gtkrc.lang.h:3
+msgid "GtkRC"
+msgstr "GtkRC"
+
+#: ../gtksourceview/language-specs/gtkrc.lang.h:4
+msgid "Include Directive"
+msgstr "Ù?Ù?جÙ? اÙ?تضÙ?Ù?Ù?"
+
+#: ../gtksourceview/language-specs/gtkrc.lang.h:5
+#: ../gtksourceview/language-specs/haskell.lang.h:8
+msgid "Keysymbol"
+msgstr "رÙ?ز اÙ?Ù?Ù?تاح"
+
+#. 'single-quoted strings'
+#: ../gtksourceview/language-specs/gtkrc.lang.h:10
+#: ../gtksourceview/language-specs/ini.lang.h:11
+#: ../gtksourceview/language-specs/octave.lang.h:14
+#: ../gtksourceview/language-specs/php.lang.h:24
+#: ../gtksourceview/language-specs/python.lang.h:15
+#: ../gtksourceview/language-specs/R.lang.h:11
+#: ../gtksourceview/language-specs/ruby.lang.h:17
+msgid "Single Quoted String"
+msgstr "سÙ?سÙ?Ø© ذات رÙ?ز تصرÙ?Ø­ Ù?Ø­Ù?د"
+
+#: ../gtksourceview/language-specs/gtkrc.lang.h:11
+msgid "State"
+msgstr "اÙ?حاÙ?Ø©"
+
+#. $variable, $$dynamic-variable and even $$$more
+#: ../gtksourceview/language-specs/gtkrc.lang.h:12
+#: ../gtksourceview/language-specs/ini.lang.h:12
+#: ../gtksourceview/language-specs/php.lang.h:26
+#: ../gtksourceview/language-specs/tcl.lang.h:7
+msgid "Variable"
+msgstr "Ù?تغÙ?رة"
+
+#: ../gtksourceview/language-specs/haskell.lang.h:5
+msgid "Haskell"
+msgstr "Ù?اسÙ?Ù?Ù?"
+
+#: ../gtksourceview/language-specs/haskell.lang.h:12
+msgid "Preprocessor Definition"
+msgstr "Ù?صÙ? Preprocessor"
+
+#: ../gtksourceview/language-specs/haskell.lang.h:32
+msgid "Type or Constructor"
+msgstr "اÙ?Ù?ئة Ø£Ù? اÙ?بÙ?Ù?اء"
+
+#: ../gtksourceview/language-specs/idl.lang.h:2
 msgid "IDL"
 msgstr "IDL"
 
-#: gtksourceview/language-specs/idl.lang.h:7
+#: ../gtksourceview/language-specs/idl.lang.h:7
 msgid "Sectional"
 msgstr "Ù?Ù?طع"
 
-#: gtksourceview/language-specs/ini.lang.h:1
+#: ../gtksourceview/language-specs/ini.lang.h:1
 msgid ".ini"
-msgstr ""
+msgstr ".ini"
 
-#: gtksourceview/language-specs/ini.lang.h:3
-#: gtksourceview/language-specs/verilog.lang.h:3
+#: ../gtksourceview/language-specs/ini.lang.h:3
+#: ../gtksourceview/language-specs/verilog.lang.h:3
 msgid "Decimal Number"
 msgstr "عدد عشرÙ?"
 
-#: gtksourceview/language-specs/ini.lang.h:4
-#: gtksourceview/language-specs/R.lang.h:3
-#: gtksourceview/language-specs/gtkrc.lang.h:2
-#, fuzzy
-msgid "Double Quote String"
-msgstr "سÙ?سÙ?Ø© ذات رÙ?ز تصارÙ?Ø­ Ù?ضاعÙ?"
-
-#: gtksourceview/language-specs/ini.lang.h:6
-#, fuzzy
+#: ../gtksourceview/language-specs/ini.lang.h:6
 msgid "Integer"
-msgstr "Ù?اعدة - ج عدد صحÙ?Ø­"
+msgstr "عدد صحÙ?Ø­"
 
-#: gtksourceview/language-specs/ini.lang.h:11
-#: gtksourceview/language-specs/R.lang.h:11
-#: gtksourceview/language-specs/gtkrc.lang.h:10
-#, fuzzy
-msgid "Single Quote String"
-msgstr "سÙ?سÙ?Ø© ذات رÙ?ز تصرÙ?Ø­ Ù?Ø­Ù?د"
-
-#. $variable, $$dynamic-variable and even $$$more
-#: gtksourceview/language-specs/ini.lang.h:12
-#: gtksourceview/language-specs/php.lang.h:25
-#: gtksourceview/language-specs/gtkrc.lang.h:12
-msgid "Variable"
-msgstr "Ù?تغÙ?رة"
-
-#: gtksourceview/language-specs/java.lang.h:2
+#: ../gtksourceview/language-specs/java.lang.h:2
 msgid "Declarations"
 msgstr "اÙ?إعÙ?اÙ?ات"
 
-#: gtksourceview/language-specs/java.lang.h:3
+#: ../gtksourceview/language-specs/java.lang.h:3
 msgid "Flow"
 msgstr "اÙ?دÙ?Ù?"
 
-#: gtksourceview/language-specs/java.lang.h:4
+#: ../gtksourceview/language-specs/java.lang.h:4
+#: ../gtksourceview/language-specs/javascript.lang.h:7
+msgid "Future Reserved Words"
+msgstr "Ù?Ù?Ù?ات Ù?خصصة Ù?ستÙ?بÙ?Ù?Ø©"
+
+#: ../gtksourceview/language-specs/java.lang.h:5
 msgid "Java"
 msgstr "Java"
 
-#: gtksourceview/language-specs/java.lang.h:6
+#: ../gtksourceview/language-specs/java.lang.h:7
 msgid "Memory"
 msgstr "اÙ?ذاÙ?رة"
 
-#: gtksourceview/language-specs/java.lang.h:7
+#: ../gtksourceview/language-specs/java.lang.h:8
 msgid "Modifiers"
 msgstr "Ù?غÙ?Ù?رات"
 
-#: gtksourceview/language-specs/java.lang.h:8
+#: ../gtksourceview/language-specs/java.lang.h:9
 msgid "Numeric"
 msgstr "رÙ?Ù?Ù?"
 
-#: gtksourceview/language-specs/javascript.lang.h:1
-#: gtksourceview/language-specs/php.lang.h:1
+#: ../gtksourceview/language-specs/javascript.lang.h:1
+#: ../gtksourceview/language-specs/php.lang.h:1
 msgid "Array Operators"
 msgstr "عÙ?اÙ?Ù? اÙ?صÙ?Ù?Ù?Ø©"
 
-#: gtksourceview/language-specs/javascript.lang.h:3
-#, fuzzy
+#: ../gtksourceview/language-specs/javascript.lang.h:3
 msgid "Constructors"
-msgstr "اÙ?Ù?ئة Ø£Ù? اÙ?بÙ?Ù?اء"
+msgstr "اÙ?بÙ?ائات"
 
-#: gtksourceview/language-specs/javascript.lang.h:4
+#: ../gtksourceview/language-specs/javascript.lang.h:4
 msgid "Error Handling"
-msgstr ""
+msgstr "اÙ?تعاÙ?Ù? Ù?ع اÙ?أخطاء"
 
-#: gtksourceview/language-specs/javascript.lang.h:5
-#, fuzzy
+#: ../gtksourceview/language-specs/javascript.lang.h:5
 msgid "Floating-Point Number"
 msgstr "عدد عشرÙ?"
 
-#: gtksourceview/language-specs/javascript.lang.h:6
-#, fuzzy
+#: ../gtksourceview/language-specs/javascript.lang.h:6
 msgid "Flow Keywords"
-msgstr "اÙ?Ù?Ù?Ù?ات اÙ?Ù?Ù?اتÙ?Ø­"
-
-#: gtksourceview/language-specs/javascript.lang.h:7
-#, fuzzy
-msgid "Future Reserved Words"
-msgstr "Ù?Ù?Ù?ات Ù?خصصة Ù?Ù? Oracle"
+msgstr "اÙ?Ù?Ù?Ù?ات اÙ?Ù?سÙ?Ù?Ø©"
 
-#: gtksourceview/language-specs/javascript.lang.h:8
-#, fuzzy
+#: ../gtksourceview/language-specs/javascript.lang.h:8
 msgid "Global Functions"
-msgstr "داÙ?ات"
+msgstr "Ù?ظائÙ? عاÙ?Ù?Ù?Ø©"
 
-#: gtksourceview/language-specs/javascript.lang.h:9
-#, fuzzy
+#: ../gtksourceview/language-specs/javascript.lang.h:9
 msgid "Global Properties"
-msgstr "Ù?تغÙ?Ù?رات عاÙ?Ù?Ø©"
+msgstr "خصائص عاÙ?Ù?Ù?Ø©"
 
-#: gtksourceview/language-specs/javascript.lang.h:10
-#: gtksourceview/language-specs/verilog.lang.h:5
+#: ../gtksourceview/language-specs/javascript.lang.h:10
+#: ../gtksourceview/language-specs/verilog.lang.h:5
 msgid "Hexadecimal Number"
 msgstr "عدد سادس عشرÙ?"
 
-#: gtksourceview/language-specs/javascript.lang.h:13
-#, fuzzy
-msgid "Literals"
-msgstr "Ù?حددÙ?ات اÙ?Ù?ص"
+#: ../gtksourceview/language-specs/javascript.lang.h:11
+msgid "JavaScript"
+msgstr "جاÙ?اسÙ?ربت"
 
-#: gtksourceview/language-specs/javascript.lang.h:14
+#: ../gtksourceview/language-specs/javascript.lang.h:15
 msgid "Math Value Properties"
-msgstr ""
+msgstr "خصائص اÙ?Ù?Ù?Ù? اÙ?رÙ?اضÙ?Ø©"
 
-#: gtksourceview/language-specs/javascript.lang.h:16
-#, fuzzy
+#: ../gtksourceview/language-specs/javascript.lang.h:17
 msgid "Object Functions"
-msgstr "اÙ?داÙ?ات اÙ?Ù?رجعÙ?Ø© Ù?Ù?أجساÙ?"
+msgstr "Ù?ظائÙ? اÙ?جسÙ?"
 
-#: gtksourceview/language-specs/javascript.lang.h:17
+#: ../gtksourceview/language-specs/javascript.lang.h:18
 msgid "Object Properties"
-msgstr ""
+msgstr "خاصÙ?ات اÙ?جسÙ?"
 
-#: gtksourceview/language-specs/javascript.lang.h:18
+#: ../gtksourceview/language-specs/javascript.lang.h:19
 msgid "Objects"
-msgstr ""
+msgstr "أجساÙ?"
 
-#.
-#. Proposed language specification for JavaScript files.
-#.
-#. Reference used:
-#. http://www.ecma-international.org/publications/files/ecma-st/ECMA-262.pdf
-#.
-#. Tested with:
-#. http://www.coffeeblack.org/scripts/map.js
-#.
-#. Submitted by Scott Martin (scott coffeeblack org)
-#.
-#: gtksourceview/language-specs/javascript.lang.h:32
-#: gtksourceview/language-specs/lua.lang.h:9
-#: gtksourceview/language-specs/perl.lang.h:7
-#: gtksourceview/language-specs/python.lang.h:13
-#: gtksourceview/language-specs/ruby.lang.h:17
-#: gtksourceview/language-specs/sh.lang.h:11
-#: gtksourceview/language-specs/tcl.lang.h:3
-#: gtksourceview/language-specs/R.lang.h:10
+#: ../gtksourceview/language-specs/javascript.lang.h:22
+#: ../gtksourceview/language-specs/lua.lang.h:9
+#: ../gtksourceview/language-specs/octave.lang.h:13
+#: ../gtksourceview/language-specs/perl.lang.h:7
+#: ../gtksourceview/language-specs/php.lang.h:22
+#: ../gtksourceview/language-specs/python.lang.h:14
+#: ../gtksourceview/language-specs/R.lang.h:10
+#: ../gtksourceview/language-specs/ruby.lang.h:16
+#: ../gtksourceview/language-specs/sh.lang.h:11
+#: ../gtksourceview/language-specs/tcl.lang.h:3
 msgid "Scripts"
 msgstr "Ù?صÙ?ص تشÙ?Ù?رÙ?Ø©"
 
-#: gtksourceview/language-specs/javascript.lang.h:35
+#: ../gtksourceview/language-specs/javascript.lang.h:25
 msgid "Unicode Escape Sequence"
-msgstr ""
+msgstr "Ù?تتاÙ?Ù?Ø© اÙ?Ù?رÙ?ب Ù?Ù?Ù?Ù?Ù?Ù?Ù?Ù?د"
 
-#: gtksourceview/language-specs/javascript.lang.h:36
-#, fuzzy
+#: ../gtksourceview/language-specs/javascript.lang.h:26
 msgid "Word Operators"
-msgstr "اÙ?عÙ?اÙ?Ù?"
+msgstr "اÙ?عÙ?Ù?Ù?ات اÙ?أساسÙ?Ø©"
+
+#: ../gtksourceview/language-specs/latex.lang.h:1
+msgid "Command"
+msgstr "Ø£Ù?ر"
+
+#: ../gtksourceview/language-specs/latex.lang.h:3
+msgid "Comment Environment"
+msgstr "Ù?جاÙ? تعÙ?Ù?Ù?"
 
-#: gtksourceview/language-specs/latex.lang.h:2
-#: gtksourceview/language-specs/texinfo.lang.h:6
+#: ../gtksourceview/language-specs/latex.lang.h:4
+#: ../gtksourceview/language-specs/texinfo.lang.h:6
 msgid "Include"
 msgstr "تضÙ?Ù?Ù?"
 
-#: gtksourceview/language-specs/latex.lang.h:4
+#: ../gtksourceview/language-specs/latex.lang.h:6
 msgid "LaTeX"
 msgstr "LaTeX"
 
-#: gtksourceview/language-specs/latex.lang.h:6
+#: ../gtksourceview/language-specs/latex.lang.h:8
 msgid "Math"
 msgstr "رÙ?اضÙ?ات"
 
-#: gtksourceview/language-specs/latex.lang.h:7
-msgid "Most Used Commands"
-msgstr "اÙ?Ø£Ù?اÙ?ر اÙ?Ù?ستخدÙ?Ø© بÙ?ثرة"
-
-#: gtksourceview/language-specs/lua.lang.h:2
-#: gtksourceview/language-specs/python.lang.h:4
-#: gtksourceview/language-specs/sh.lang.h:4
+#: ../gtksourceview/language-specs/lua.lang.h:2
+#: ../gtksourceview/language-specs/makefile.lang.h:3
 msgid "Functions"
 msgstr "داÙ?ات"
 
-#: gtksourceview/language-specs/lua.lang.h:5
+#: ../gtksourceview/language-specs/lua.lang.h:5
 msgid "Line Comment 2"
 msgstr "تعÙ?Ù?Ù? اÙ?سÙ?طر 2"
 
-#: gtksourceview/language-specs/lua.lang.h:6
+#: ../gtksourceview/language-specs/lua.lang.h:6
 msgid "Lua"
 msgstr "Lua"
 
-#: gtksourceview/language-specs/lua.lang.h:7
-#: gtksourceview/language-specs/python.lang.h:9
-#: gtksourceview/language-specs/sh.lang.h:6
-msgid "Multiline String"
-msgstr "سÙ?سÙ?Ø© ذات سطÙ?ر Ù?تعددة"
-
-#: gtksourceview/language-specs/lua.lang.h:8
-#: gtksourceview/language-specs/python.lang.h:10
-#: gtksourceview/language-specs/sh.lang.h:7
+#: ../gtksourceview/language-specs/lua.lang.h:8
+#: ../gtksourceview/language-specs/sh.lang.h:7
 msgid "Multiline String 2"
 msgstr "سÙ?سÙ?Ø© ذات سطÙ?ر Ù?تعددة 2"
 
-#: gtksourceview/language-specs/pascal.lang.h:1
-#, fuzzy
+#. `backticks-quoted strings`
+#: ../gtksourceview/language-specs/makefile.lang.h:1
+#: ../gtksourceview/language-specs/php.lang.h:3
+#: ../gtksourceview/language-specs/sh.lang.h:1
+msgid "Backtick String"
+msgstr "سÙ?سÙ?Ø© Backtick"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:2
+msgid "Directives"
+msgstr "تÙ?جÙ?Ù?ات"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:5
+msgid "Makefile"
+msgstr "Makefile"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:7
+msgid "Special Targets"
+msgstr "اÙ?Ø£Ù?داÙ? اÙ?خاصة"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:10
+msgid "Targets"
+msgstr "Ø£Ù?داÙ?"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:11
+#: ../gtksourceview/language-specs/sh.lang.h:15
+msgid "Variable1"
+msgstr "Ù?تغÙ?ر1"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:12
+#: ../gtksourceview/language-specs/sh.lang.h:16
+msgid "Variable2"
+msgstr "Ù?تغÙ?ر2"
+
+#: ../gtksourceview/language-specs/msil.lang.h:1
+msgid "MSIL"
+msgstr "MSIL"
+
+#: ../gtksourceview/language-specs/nemerle.lang.h:4
+msgid "Core Keywords"
+msgstr "اÙ?Ù?Ù?Ù?ات اÙ?Ù?Ù?Ù?Ù?Ø©"
+
+#: ../gtksourceview/language-specs/nemerle.lang.h:5
+msgid "Core Types"
+msgstr "اÙ?Ø£Ù?Ù?اع اÙ?أساسÙ?Ø©"
+
+#: ../gtksourceview/language-specs/nemerle.lang.h:9
+msgid "Keywords Defined by Macros"
+msgstr "Ù?Ù?Ù?ات "
+
+#: ../gtksourceview/language-specs/nemerle.lang.h:11
+msgid "Nemerle"
+msgstr "رÙ?Ù?"
+
+#: ../gtksourceview/language-specs/octave.lang.h:8
+#: ../gtksourceview/language-specs/python.lang.h:10
+msgid "Multiline Double Quoted String"
+msgstr "عبارة Ù?تعددة اÙ?سطÙ?ر باÙ?رÙ?ز اÙ?Ø«Ù?ائÙ?"
+
+#: ../gtksourceview/language-specs/octave.lang.h:9
+#: ../gtksourceview/language-specs/python.lang.h:11
+msgid "Multiline Single Quoted String"
+msgstr "عبارة Ù?تعددة اÙ?سطÙ?ر باÙ?رÙ?ز اÙ?أحادÙ?"
+
+#: ../gtksourceview/language-specs/octave.lang.h:11
+msgid "Octave"
+msgstr "Octave"
+
+#: ../gtksourceview/language-specs/octave.lang.h:12
+#: ../gtksourceview/language-specs/R.lang.h:9
+msgid "Reserved Constant"
+msgstr "رÙ?زÙ? ثابت Ù?شغÙ?Ù?"
+
+#: ../gtksourceview/language-specs/pascal.lang.h:1
 msgid "Block Comment 1"
-msgstr "تعÙ?Ù?Ù? Ù?Ù?Ù?Ù?ب"
+msgstr "تعÙ?Ù?Ù? 1"
 
-#: gtksourceview/language-specs/pascal.lang.h:2
-#, fuzzy
+#: ../gtksourceview/language-specs/pascal.lang.h:2
 msgid "Block Comment 2"
-msgstr "تعÙ?Ù?Ù? Ù?Ù?Ù?Ù?ب"
+msgstr "تعÙ?Ù?Ù? 2"
 
-#: gtksourceview/language-specs/pascal.lang.h:3
+#: ../gtksourceview/language-specs/pascal.lang.h:3
 msgid "Boolean Bitwise Operators"
-msgstr ""
+msgstr "عÙ?Ù?Ù?ات رÙ?اضÙ?Ø© عÙ?Ù? اÙ?ببتات"
 
-#: gtksourceview/language-specs/pascal.lang.h:4
-#, fuzzy
+#: ../gtksourceview/language-specs/pascal.lang.h:4
 msgid "Builtin Functions"
-msgstr "داÙ?ات Ø£Ù?اÙ?Ù?Ø·Ù?Ù?ا"
+msgstr "اÙ?Ù?ظائÙ? اÙ?Ù?بÙ?Ù?Ø©"
 
-#: gtksourceview/language-specs/pascal.lang.h:5
-#, fuzzy
+#: ../gtksourceview/language-specs/pascal.lang.h:5
 msgid "Builtin Types"
-msgstr "اÙ?Ù?ضÙ?Ù?ات"
+msgstr "اÙ?Ø£Ù?Ù?اع اÙ?Ù?بÙ?Ù?Ø©"
 
-#: gtksourceview/language-specs/pascal.lang.h:6
-#, fuzzy
+#: ../gtksourceview/language-specs/pascal.lang.h:6
 msgid "Builtin Values"
-msgstr "اÙ?Ù?ضÙ?Ù?ات"
+msgstr "اÙ?Ù?Ù?Ù? اÙ?Ù?بÙ?Ù?Ø©"
 
-#: gtksourceview/language-specs/pascal.lang.h:7
+#: ../gtksourceview/language-specs/pascal.lang.h:7
 msgid "Functions and Function Modifiers"
-msgstr ""
+msgstr "اÙ?Ù?ظائÙ? Ù? Ù?تغÙ?رات اÙ?Ù?ظائÙ?"
 
-#: gtksourceview/language-specs/pascal.lang.h:8
-#, fuzzy
+#: ../gtksourceview/language-specs/pascal.lang.h:8
 msgid "General Format"
-msgstr "تÙ?Ù?ئة"
+msgstr "تÙ?سÙ?Ù? عاÙ?"
 
-#: gtksourceview/language-specs/pascal.lang.h:12
+#: ../gtksourceview/language-specs/pascal.lang.h:12
 msgid "Loop, Flow, and Exceptions Keywords"
-msgstr ""
+msgstr "Ù?Ù?Ù?ات اÙ?دÙ?ائر, اÙ?Ù?سÙ? Ù? اÙ?إستثÙ?اءات"
 
-#: gtksourceview/language-specs/pascal.lang.h:13
-#, fuzzy
+#: ../gtksourceview/language-specs/pascal.lang.h:13
 msgid "Math Operators"
-msgstr "اÙ?عÙ?اÙ?Ù?"
+msgstr "عÙ?Ù?Ù?ات رÙ?اضÙ?Ø©"
 
-#: gtksourceview/language-specs/pascal.lang.h:15
+#: ../gtksourceview/language-specs/pascal.lang.h:15
 msgid "Pascal"
-msgstr ""
+msgstr "Pascal"
 
-#: gtksourceview/language-specs/pascal.lang.h:16
-#, fuzzy
+#: ../gtksourceview/language-specs/pascal.lang.h:16
 msgid "Preprocessor Defines"
 msgstr "تعرÙ?Ù?ات اÙ?Ù? Preprocessor"
 
-#: gtksourceview/language-specs/pascal.lang.h:19
+#: ../gtksourceview/language-specs/pascal.lang.h:19
 msgid "Type, Class and Object Keywords"
-msgstr ""
+msgstr "Ù?Ù?Ù?ات اÙ?Ù?Ù?ع, اÙ?جسÙ? Ù? اÙ?صÙ?Ù?"
 
-#: gtksourceview/language-specs/perl.lang.h:1
+#: ../gtksourceview/language-specs/perl.lang.h:1
 msgid "Function Call"
 msgstr "Ù?داءات اÙ?داÙ?ات"
 
-#: gtksourceview/language-specs/perl.lang.h:4
+#: ../gtksourceview/language-specs/perl.lang.h:4
 msgid "Method Call"
 msgstr "Ù?داء طرÙ?Ù?Ø©"
 
-#: gtksourceview/language-specs/perl.lang.h:5
+#: ../gtksourceview/language-specs/perl.lang.h:5
 msgid "POD"
-msgstr ""
+msgstr "POD"
 
-#: gtksourceview/language-specs/perl.lang.h:6
+#: ../gtksourceview/language-specs/perl.lang.h:6
 msgid "Perl"
 msgstr "Perl"
 
-#: gtksourceview/language-specs/perl.lang.h:9
-#: gtksourceview/language-specs/tcl.lang.h:5
+#: ../gtksourceview/language-specs/perl.lang.h:9
+#: ../gtksourceview/language-specs/tcl.lang.h:5
 msgid "String2"
 msgstr "سÙ?سÙ?Ø©2"
 
-#: gtksourceview/language-specs/perl.lang.h:10
+#: ../gtksourceview/language-specs/perl.lang.h:10
 msgid "String3"
 msgstr "سÙ?سÙ?Ø©3"
 
-#: gtksourceview/language-specs/perl.lang.h:11
-#: gtksourceview/language-specs/tcl.lang.h:7
+#: ../gtksourceview/language-specs/perl.lang.h:11
 msgid "Variables"
 msgstr "Ù?تغÙ?رات"
 
-#. `backticks-quoted strings`
-#: gtksourceview/language-specs/php.lang.h:3
-#: gtksourceview/language-specs/sh.lang.h:1
-msgid "Backtick String"
-msgstr "سÙ?سÙ?Ø© Backtick"
-
 #. # Bourne Shell Line Comment
-#: gtksourceview/language-specs/php.lang.h:5
+#: ../gtksourceview/language-specs/php.lang.h:5
 msgid "Bash Line Comment"
 msgstr "تعÙ?Ù?Ù? سطر Bash"
 
 #. /* C Block Comment
-#: gtksourceview/language-specs/php.lang.h:7
+#: ../gtksourceview/language-specs/php.lang.h:7
 msgid "C Block Comment"
 msgstr "تعÙ?Ù?Ù? Ù?Ù?Ù?Ù?ب Ù?Ù? C"
 
 #. // C++ Line Comment
-#: gtksourceview/language-specs/php.lang.h:9
+#: ../gtksourceview/language-specs/php.lang.h:9
 msgid "C++ Line Comment"
 msgstr "تعÙ?Ù?Ù? سطر C++"
 
-#: gtksourceview/language-specs/php.lang.h:10
+#: ../gtksourceview/language-specs/php.lang.h:10
 msgid "Case Insensitive Keyword"
 msgstr "Ù?Ù?Ù?Ø© Ù?Ù?تاح غÙ?ر حساسة Ù?Ù?حاÙ?Ø©"
 
 #. This are keywords, the are recognised by php
-#: gtksourceview/language-specs/php.lang.h:12
+#: ../gtksourceview/language-specs/php.lang.h:12
 msgid "Case Sensitive Keyword"
 msgstr "Ù?Ù?Ù?Ø© Ù?Ù?تاح حاسة Ù?Ù?حاÙ?Ø©"
 
-#. "duble-quoted strings"
-#: gtksourceview/language-specs/php.lang.h:16
-msgid "Double Quoted String"
-msgstr "سÙ?سÙ?Ø© ذات رÙ?ز تصارÙ?Ø­ Ù?ضاعÙ?"
-
-#: gtksourceview/language-specs/php.lang.h:17
+#. <? ?> <HTML> inside PHP <?
+#: ../gtksourceview/language-specs/php.lang.h:18
 msgid "First Open PHP Tag"
 msgstr "شارة Open PHP اÙ?Ø£Ù?Ù?Ù?"
 
-#: gtksourceview/language-specs/php.lang.h:18
+#: ../gtksourceview/language-specs/php.lang.h:19
 msgid "HTML Block"
 msgstr "Ù?اÙ?ب HTML"
 
-#: gtksourceview/language-specs/php.lang.h:20
+#: ../gtksourceview/language-specs/php.lang.h:21
 msgid "PHP"
 msgstr "PHP"
 
-#. 'single-quoted strings'
-#: gtksourceview/language-specs/php.lang.h:22
-msgid "Single Quoted String"
-msgstr "سÙ?سÙ?Ø© ذات رÙ?ز تصرÙ?Ø­ Ù?Ø­Ù?د"
-
-#: gtksourceview/language-specs/po.lang.h:2
+#: ../gtksourceview/language-specs/po.lang.h:2
 msgid "Format"
 msgstr "تÙ?Ù?ئة"
 
-#: gtksourceview/language-specs/po.lang.h:7
+#: ../gtksourceview/language-specs/po.lang.h:7
 msgid "gettext translation"
 msgstr "ترجÙ?Ø© gettext"
 
-#: gtksourceview/language-specs/python.lang.h:1
-#: gtksourceview/language-specs/ruby.lang.h:2
+#: ../gtksourceview/language-specs/python.lang.h:1
+#: ../gtksourceview/language-specs/ruby.lang.h:2
 msgid "Builtins"
 msgstr "اÙ?Ù?ضÙ?Ù?ات"
 
-#: gtksourceview/language-specs/python.lang.h:8
+#: ../gtksourceview/language-specs/python.lang.h:9
 msgid "Module Handler"
 msgstr "Ù?عاÙ?ج اÙ?Ù?حدات"
 
-#: gtksourceview/language-specs/python.lang.h:12
+#: ../gtksourceview/language-specs/python.lang.h:13
 msgid "Python"
 msgstr "Python"
 
-#: gtksourceview/language-specs/ruby.lang.h:1
+#: ../gtksourceview/language-specs/R.lang.h:1
+msgid "Assignment Operator"
+msgstr "عÙ?Ù?Ù?Ø© تعÙ?Ù?Ù?"
+
+#: ../gtksourceview/language-specs/R.lang.h:2
+msgid "Delimiter"
+msgstr "حد"
+
+#: ../gtksourceview/language-specs/R.lang.h:5
+msgid "Integer Number"
+msgstr "عدد صحÙ?Ø­"
+
+#: ../gtksourceview/language-specs/R.lang.h:8
+msgid "Reserved Class"
+msgstr "صÙ?Ù? Ù?شغÙ?Ù?"
+
+#: ../gtksourceview/language-specs/ruby.lang.h:1
 msgid "Attribute Definitions"
 msgstr "تعرÙ?Ù?ات اÙ?صÙ?Ù?ات"
 
-#: gtksourceview/language-specs/ruby.lang.h:3
+#: ../gtksourceview/language-specs/ruby.lang.h:3
 msgid "Class Variables"
 msgstr "Ù?تÙ?غÙ?رات اÙ?أصÙ?اÙ?"
 
-#: gtksourceview/language-specs/ruby.lang.h:4
+#: ../gtksourceview/language-specs/ruby.lang.h:4
 msgid "Constants"
 msgstr "Ø«Ù?ابت"
 
-#: gtksourceview/language-specs/ruby.lang.h:5
+#: ../gtksourceview/language-specs/ruby.lang.h:5
 msgid "Definitions"
 msgstr "تعرÙ?Ù?ات"
 
-#: gtksourceview/language-specs/ruby.lang.h:6
+#: ../gtksourceview/language-specs/ruby.lang.h:7
 msgid "Global Variables"
 msgstr "Ù?تغÙ?Ù?رات عاÙ?Ù?Ø©"
 
-#: gtksourceview/language-specs/ruby.lang.h:7
+#: ../gtksourceview/language-specs/ruby.lang.h:8
 msgid "Instance Variables"
 msgstr "Ù?تغÙ?Ù?رات Ù?Ù?Ù?ذجÙ?Ù?Ø©"
 
-#: gtksourceview/language-specs/ruby.lang.h:10
+#: ../gtksourceview/language-specs/ruby.lang.h:11
 msgid "Module Handlers"
 msgstr "Ù?عاÙ?جات اÙ?Ù?حدات"
 
-#: gtksourceview/language-specs/ruby.lang.h:11
+#: ../gtksourceview/language-specs/ruby.lang.h:12
 msgid "Multiline Comment"
 msgstr "تعÙ?Ù?Ù? Ù?تعدÙ?د اÙ?أسطر"
 
-#: gtksourceview/language-specs/ruby.lang.h:12
+#: ../gtksourceview/language-specs/ruby.lang.h:13
 msgid "Pseudo Variables"
 msgstr "Ù?تغÙ?Ù?رات Ù?اذبة"
 
-#: gtksourceview/language-specs/ruby.lang.h:13
+#: ../gtksourceview/language-specs/ruby.lang.h:14
 msgid "RegExp Variables"
 msgstr "Ù?تغÙ?Ù?رات تعابÙ?ر رÙ?اضÙ?Ù?Ø©"
 
-#: gtksourceview/language-specs/ruby.lang.h:14
-msgid "Regular Expression"
-msgstr "تعبÙ?ر رÙ?اضÙ?"
-
-#: gtksourceview/language-specs/ruby.lang.h:15
-msgid "Regular Expression 2"
-msgstr "تعبÙ?ر رÙ?اضÙ? 2"
-
-#: gtksourceview/language-specs/ruby.lang.h:16
+#: ../gtksourceview/language-specs/ruby.lang.h:15
 msgid "Ruby"
 msgstr "رÙ?بÙ?"
 
-#: gtksourceview/language-specs/sh.lang.h:2
-#, fuzzy
-msgid "Built-in Commands"
-msgstr "داÙ?ات Ø£Ù?اÙ?Ù?Ø·Ù?Ù?ا"
-
-#: gtksourceview/language-specs/sh.lang.h:3
-#, fuzzy
-msgid "Common Commands"
-msgstr "اÙ?Ø£Ù?اÙ?ر اÙ?Ù?ستخدÙ?Ø© بÙ?ثرة"
-
-#: gtksourceview/language-specs/sh.lang.h:10
-#, fuzzy
-msgid "Redirections"
-msgstr "تعرÙ?Ù?ات"
+#: ../gtksourceview/language-specs/ruby.lang.h:18
+msgid "Symbols"
+msgstr "رÙ?Ù?ز"
+
+#: ../gtksourceview/language-specs/scheme.lang.h:11
+msgid "Scheme"
+msgstr "Ù?خطط"
+
+#: ../gtksourceview/language-specs/sh.lang.h:2
+msgid "Built-in Command"
+msgstr "Ø£Ù?ر Ù?بÙ?Ù?"
+
+#: ../gtksourceview/language-specs/sh.lang.h:3
+msgid "Common Command"
+msgstr "Ø£Ù?ر Ù?Ø´Ù?Ù?ر"
+
+#: ../gtksourceview/language-specs/sh.lang.h:8
+msgid "Operator"
+msgstr "عÙ?Ù?Ù?Ø©"
+
+#: ../gtksourceview/language-specs/sh.lang.h:9
+msgid "Punctuator"
+msgstr "Ù?Ù?Ù?Ù?Ø·"
+
+#: ../gtksourceview/language-specs/sh.lang.h:10
+msgid "Redirection"
+msgstr "تÙ?جÙ?Ù?"
 
-#: gtksourceview/language-specs/sh.lang.h:12
+#: ../gtksourceview/language-specs/sh.lang.h:12
 msgid "Self"
 msgstr "ذاتÙ?"
 
-#: gtksourceview/language-specs/sh.lang.h:15
-#, fuzzy
-msgid "Variable1"
-msgstr "Ù?تغÙ?رة"
-
-#: gtksourceview/language-specs/sh.lang.h:16
-#, fuzzy
-msgid "Variable2"
-msgstr "Ù?تغÙ?رة"
-
-#: gtksourceview/language-specs/sh.lang.h:17
+#: ../gtksourceview/language-specs/sh.lang.h:17
 msgid "sh"
-msgstr ""
+msgstr "sh"
 
-#: gtksourceview/language-specs/sql.lang.h:1
+#: ../gtksourceview/language-specs/sql.lang.h:1
 msgid "ANSI Datatypes"
 msgstr "Ø£Ù?Ù?اع بÙ?اÙ?ات ANSI"
 
-#: gtksourceview/language-specs/sql.lang.h:2
+#. Reserved Words
+#: ../gtksourceview/language-specs/sql.lang.h:3
 msgid "ANSI Reserved Words"
 msgstr "Ù?Ù?Ù?ات Ù?خصصة Ù?Ù? ANSI"
 
-#: gtksourceview/language-specs/sql.lang.h:3
+#. Aggregate Functions
+#: ../gtksourceview/language-specs/sql.lang.h:5
 msgid "Aggregate Functions"
 msgstr "تجÙ?ع داÙ?ات"
 
-#: gtksourceview/language-specs/sql.lang.h:4
+#. Analytic Functions
+#: ../gtksourceview/language-specs/sql.lang.h:7
 msgid "Analytic Functions"
 msgstr "داÙ?ات Ø£Ù?اÙ?Ù?Ø·Ù?Ù?ا"
 
-#: gtksourceview/language-specs/sql.lang.h:6
+#: ../gtksourceview/language-specs/sql.lang.h:10
 msgid "Character Functions Returning Character Values"
 msgstr "داÙ?ات رÙ?Ù?ز Ù?رجعة Ù?Ù?Ù?Ù? رÙ?Ù?ز"
 
-#: gtksourceview/language-specs/sql.lang.h:7
+#: ../gtksourceview/language-specs/sql.lang.h:11
 msgid "Character Functions Returning Number Values"
 msgstr "داÙ?ات رÙ?Ù?ز Ù?رجعة Ù?Ù?Ù?Ù? أرÙ?اÙ?"
 
-#: gtksourceview/language-specs/sql.lang.h:8
+#: ../gtksourceview/language-specs/sql.lang.h:12
+msgid "Collection Functions"
+msgstr "Ù?ظائÙ? اÙ?Ù?جÙ?Ù?عات"
+
+#: ../gtksourceview/language-specs/sql.lang.h:13
+msgid "Conditions"
+msgstr "اÙ?شرÙ?Ø·"
+
+#: ../gtksourceview/language-specs/sql.lang.h:14
 msgid "Conversion Functions"
 msgstr "داÙ?ات Ù?Ø­Ù?Ù?Ø©"
 
-#: gtksourceview/language-specs/sql.lang.h:9
+#: ../gtksourceview/language-specs/sql.lang.h:15
+msgid "Data Mining Functions"
+msgstr "Ù?ظائÙ? تÙ?Ù?Ù?ب اÙ?بÙ?اÙ?ات"
+
+#: ../gtksourceview/language-specs/sql.lang.h:16
 msgid "Datetime Functions"
 msgstr "داÙ?ات اÙ?تارÙ?Ø® Ù? اÙ?ساعة"
 
-#: gtksourceview/language-specs/sql.lang.h:10
+#: ../gtksourceview/language-specs/sql.lang.h:17
+msgid "Encoding and Decoding Functions"
+msgstr "Ù?ظائÙ? اÙ?تشÙ?Ù?ر Ù? Ù?Ù? اÙ?تشÙ?Ù?ر"
+
+#: ../gtksourceview/language-specs/sql.lang.h:18
+msgid "Environment and Identifier Functions"
+msgstr "Ù?ظائÙ? Ù? أسÙ?اء اÙ?Ù?Ø­Ù?Ø·"
+
+#: ../gtksourceview/language-specs/sql.lang.h:19
+msgid "General Comparison Functions"
+msgstr "Ù?ظائÙ? اÙ?Ù?Ù?ارÙ?Ø© اÙ?عاÙ?Ø©"
+
+#: ../gtksourceview/language-specs/sql.lang.h:20
+msgid "Hierarchical Function"
+msgstr "Ù?ظÙ?Ù?Ø© Ù?Ù?Ù?Ù?Ù?Ø©"
+
+#: ../gtksourceview/language-specs/sql.lang.h:21
 msgid "Integer Literals"
 msgstr "Ù?حدÙ?دات اÙ?أعداد اÙ?صحÙ?حة"
 
-#: gtksourceview/language-specs/sql.lang.h:12
-msgid "Miscellaneous Single-Row Functions"
-msgstr "داÙ?ات Ù?تعددة ذات صÙ? Ù?Ø­Ù?د"
+#: ../gtksourceview/language-specs/sql.lang.h:22
+msgid "Large Object Functions"
+msgstr "Ù?ضائÙ? اÙ?أجساÙ? اÙ?Ù?بÙ?رة"
+
+#. Model Functions
+#: ../gtksourceview/language-specs/sql.lang.h:25
+msgid "Model Functions"
+msgstr "Ù?ظائÙ? اÙ?عرض"
+
+#: ../gtksourceview/language-specs/sql.lang.h:26
+msgid "NLS Character Functions"
+msgstr "Ù?ظائÙ? رÙ?Ù?ز NLS"
+
+#: ../gtksourceview/language-specs/sql.lang.h:27
+msgid "NULL-Related Functions"
+msgstr "اÙ?Ù?ضائÙ? اÙ?Ù?تعÙ?Ù?Ø© ب NULL"
 
-#: gtksourceview/language-specs/sql.lang.h:13
+#: ../gtksourceview/language-specs/sql.lang.h:28
 msgid "Null"
 msgstr "Ù?صÙ?ر"
 
-#: gtksourceview/language-specs/sql.lang.h:14
-msgid "Number Functions"
-msgstr "داÙ?ات عددÙ?Ø©"
-
-#: gtksourceview/language-specs/sql.lang.h:15
+#: ../gtksourceview/language-specs/sql.lang.h:29
 msgid "Number Literals"
 msgstr "Ù?حدÙ?دات اÙ?أرÙ?اÙ?"
 
-#: gtksourceview/language-specs/sql.lang.h:16
+#. Single-Row Functions
+#: ../gtksourceview/language-specs/sql.lang.h:31
+msgid "Numeric Functions"
+msgstr "اÙ?Ù?ظائÙ? اÙ?رÙ?Ù?Ù?Ø©"
+
+#. Object Reference Functions
+#: ../gtksourceview/language-specs/sql.lang.h:33
 msgid "Object Reference Functions"
 msgstr "اÙ?داÙ?ات اÙ?Ù?رجعÙ?Ø© Ù?Ù?أجساÙ?"
 
-#: gtksourceview/language-specs/sql.lang.h:17
+#. Datatypes
+#: ../gtksourceview/language-specs/sql.lang.h:36
 msgid "Oracle Built-in Datatypes"
 msgstr "Ø£Ù?Ù?اع اÙ?بÙ?اÙ?ات اÙ?Ù?رÙ?بة Ù?Ù? Oracle"
 
-#: gtksourceview/language-specs/sql.lang.h:18
+#: ../gtksourceview/language-specs/sql.lang.h:37
 msgid "Oracle Reserved Words"
 msgstr "Ù?Ù?Ù?ات Ù?خصصة Ù?Ù? Oracle"
 
-#: gtksourceview/language-specs/sql.lang.h:19
+#: ../gtksourceview/language-specs/sql.lang.h:38
+msgid "Oracle-Supplied Types"
+msgstr "اÙ?Ù?ئات اÙ?Ù?Ù?دÙ?Ø© Ù?Ù? Ø£Ù?رÙ?Ù?"
+
+#: ../gtksourceview/language-specs/sql.lang.h:39
 msgid "SQL"
 msgstr "SQL"
 
-#: gtksourceview/language-specs/sql.lang.h:20
+#: ../gtksourceview/language-specs/sql.lang.h:40
+msgid "SQL Statements"
+msgstr "عبارات SQL"
+
+#. SQL*Plus
+#: ../gtksourceview/language-specs/sql.lang.h:42
 msgid "SQL*Plus At Sign"
 msgstr "رÙ?ز آت Ù?Ù? SQL*Plus"
 
-#: gtksourceview/language-specs/sql.lang.h:21
+#: ../gtksourceview/language-specs/sql.lang.h:43
 msgid "SQL*Plus Commands"
 msgstr "Ø£Ù?اÙ?ر SQL*Plus"
 
-#: gtksourceview/language-specs/sql.lang.h:22
+#: ../gtksourceview/language-specs/sql.lang.h:44
 msgid "SQL*Plus Double At Sign"
 msgstr "رÙ?ز آت Ù?ضاعÙ? Ù?Ù? SQL*Plus"
 
-#: gtksourceview/language-specs/sql.lang.h:23
+#: ../gtksourceview/language-specs/sql.lang.h:45
 msgid "SQL*Plus Slash"
 msgstr "رÙ?ز Ù?اطع Ù?Ù? SQL*Plus"
 
-#: gtksourceview/language-specs/sql.lang.h:24
+#: ../gtksourceview/language-specs/sql.lang.h:46
 msgid "SQL/DS and DB2 Datatypes"
 msgstr "Ø£Ù?Ù?اع بÙ?اÙ?ات SQL/DS Ù? DB2"
 
-#: gtksourceview/language-specs/sql.lang.h:25
+#: ../gtksourceview/language-specs/sql.lang.h:47
 msgid "Size Clause"
 msgstr "شرط اÙ?حجÙ?"
 
-#: gtksourceview/language-specs/sql.lang.h:27
+#. Literals
+#: ../gtksourceview/language-specs/sql.lang.h:50
 msgid "Text Literals"
 msgstr "Ù?حددÙ?ات اÙ?Ù?ص"
 
-#: gtksourceview/language-specs/sql.lang.h:28
+#: ../gtksourceview/language-specs/sql.lang.h:51
 msgid "Unlimited"
 msgstr "غÙ?ر Ù?حدÙ?د"
 
-#: gtksourceview/language-specs/verilog.lang.h:1
-#: gtksourceview/language-specs/nemerle.lang.h:1
-msgid "Binary Number"
-msgstr "عدد Ø«Ù?ائÙ?"
-
-#: gtksourceview/language-specs/verilog.lang.h:4
-msgid "Gates"
-msgstr "بÙ?Ù?ابات"
-
-#: gtksourceview/language-specs/verilog.lang.h:11
-msgid "Verilog"
-msgstr "Verilog"
+#: ../gtksourceview/language-specs/sql.lang.h:52
+msgid "XML Functions"
+msgstr "Ù?ظائÙ? اÙ? XML"
 
-#: gtksourceview/language-specs/xml.lang.h:5
-msgid "Hexadecimal"
-msgstr "سادس عشرÙ?"
-
-#: gtksourceview/language-specs/xml.lang.h:8
-msgid "Tag"
-msgstr "شارة"
-
-#: gtksourceview/language-specs/xml.lang.h:9
-msgid "XML"
-msgstr "XML"
-
-#: gtksourceview/language-specs/haskell.lang.h:5
-msgid "Haskell"
-msgstr "Ù?اسÙ?Ù?Ù?"
-
-#: gtksourceview/language-specs/haskell.lang.h:8
-msgid "Keysymbols"
-msgstr "رÙ?Ù?ز Ù?Ù?اتÙ?Ø­"
-
-#: gtksourceview/language-specs/haskell.lang.h:16
-msgid "Type or Constructor"
-msgstr "اÙ?Ù?ئة Ø£Ù? اÙ?بÙ?Ù?اء"
+#: ../gtksourceview/language-specs/tcl.lang.h:6
+msgid "Tcl"
+msgstr "Tcl"
 
-#: gtksourceview/language-specs/texinfo.lang.h:2
+#: ../gtksourceview/language-specs/texinfo.lang.h:2
 msgid "Characters"
 msgstr "حرÙ?Ù?"
 
-#: gtksourceview/language-specs/texinfo.lang.h:3
+#: ../gtksourceview/language-specs/texinfo.lang.h:3
 msgid "File Attributes"
 msgstr "خصائص اÙ?Ù?Ù?Ù?"
 
-#: gtksourceview/language-specs/texinfo.lang.h:4
+#: ../gtksourceview/language-specs/texinfo.lang.h:4
 msgid "Formatting"
 msgstr "تÙ?سÙ?Ù?"
 
-#: gtksourceview/language-specs/texinfo.lang.h:5
+#: ../gtksourceview/language-specs/texinfo.lang.h:5
 msgid "Generated Content"
 msgstr "Ù?حتÙ?Ù? Ù?Ù?Ù?Ù?د"
 
-#: gtksourceview/language-specs/texinfo.lang.h:7
+#: ../gtksourceview/language-specs/texinfo.lang.h:7
 msgid "Indexing"
 msgstr "Ù?Ù?رسة"
 
-#: gtksourceview/language-specs/texinfo.lang.h:10
+#: ../gtksourceview/language-specs/texinfo.lang.h:10
 msgid "Macro Parameters"
 msgstr "Ù?عطÙ?ات Ù?رÙ?Ù?بات"
 
-#: gtksourceview/language-specs/texinfo.lang.h:11
+#: ../gtksourceview/language-specs/texinfo.lang.h:11
 msgid "Macros"
 msgstr "Ù?رÙ?Ù?بات"
 
-#: gtksourceview/language-specs/texinfo.lang.h:13
+#: ../gtksourceview/language-specs/texinfo.lang.h:13
 msgid "Markup (block)"
 msgstr "تعÙ?Ù?Ù? (Ù?تÙ?Ù?)"
 
-#: gtksourceview/language-specs/texinfo.lang.h:14
+#: ../gtksourceview/language-specs/texinfo.lang.h:14
 msgid "Markup (inline)"
 msgstr "تعÙ?Ù?Ù? (سÙ?اÙ?Ù?)"
 
-#: gtksourceview/language-specs/texinfo.lang.h:15
+#: ../gtksourceview/language-specs/texinfo.lang.h:15
 msgid "Sectioning"
 msgstr "اÙ?تÙ?Ù?سÙ?Ù?"
 
-#: gtksourceview/language-specs/texinfo.lang.h:16
+#: ../gtksourceview/language-specs/texinfo.lang.h:16
 msgid "Texinfo"
 msgstr "تÙ?س Ø¥Ù?Ù?Ù?"
 
-#: gtksourceview/language-specs/vbnet.lang.h:3
+#: ../gtksourceview/language-specs/vbnet.lang.h:7
 msgid "Old Style Comment"
 msgstr "تعÙ?Ù?Ù? أسÙ?Ù?ب Ù?دÙ?Ù?"
 
-#: gtksourceview/language-specs/vbnet.lang.h:9
+#: ../gtksourceview/language-specs/vbnet.lang.h:12
 msgid "VB.NET"
 msgstr "VB.NET"
 
-#: gtksourceview/language-specs/nemerle.lang.h:4
-#, fuzzy
-msgid "Core Keywords"
-msgstr "اÙ?Ù?Ù?Ù?ات اÙ?Ù?Ù?اتÙ?Ø­"
-
-#: gtksourceview/language-specs/nemerle.lang.h:5
-#, fuzzy
-msgid "Core Types"
-msgstr "Ø£Ù?Ù?اع"
-
-#: gtksourceview/language-specs/nemerle.lang.h:9
-msgid "Keywords Defined by Macros"
-msgstr ""
-
-#: gtksourceview/language-specs/nemerle.lang.h:11
-#, fuzzy
-msgid "Nemerle"
-msgstr "اÙ?رÙ?Ù?"
+#: ../gtksourceview/language-specs/verilog.lang.h:4
+msgid "Gates"
+msgstr "بÙ?Ù?ابات"
 
-#: gtksourceview/language-specs/tcl.lang.h:6
-msgid "Tcl"
-msgstr ""
+#: ../gtksourceview/language-specs/verilog.lang.h:11
+msgid "Verilog"
+msgstr "Verilog"
 
-#: gtksourceview/language-specs/vhdl.lang.h:7
-#, fuzzy
+#: ../gtksourceview/language-specs/vhdl.lang.h:7
 msgid "True and False"
 msgstr "True Ù? False"
 
-#: gtksourceview/language-specs/vhdl.lang.h:8
-#, fuzzy
-msgid "Type"
-msgstr "Ø£Ù?Ù?اع"
-
-#: gtksourceview/language-specs/vhdl.lang.h:9
+#: ../gtksourceview/language-specs/vhdl.lang.h:9
 msgid "VHDL"
-msgstr ""
-
-#: gtksourceview/language-specs/R.lang.h:1
-#, fuzzy
-msgid "Assignment Operator"
-msgstr "عÙ?اÙ?Ù? اÙ?صÙ?Ù?Ù?Ø©"
+msgstr "VHDL"
 
-#: gtksourceview/language-specs/R.lang.h:2
-#, fuzzy
-msgid "Delimiter"
-msgstr "غÙ?ر Ù?حدÙ?د"
+#: ../gtksourceview/language-specs/xml.lang.h:5
+msgid "Hexadecimal"
+msgstr "سادس عشرÙ?"
 
-#: gtksourceview/language-specs/R.lang.h:5
-#, fuzzy
-msgid "Integer Number"
-msgstr "عدد Ø«Ù?ائÙ?"
+#: ../gtksourceview/language-specs/xml.lang.h:9
+msgid "XML"
+msgstr "XML"
 
-#: gtksourceview/language-specs/R.lang.h:8
 #, fuzzy
-msgid "Reserved Class"
-msgstr "Ù?Ù?Ù?ات Ù?خصصة Ù?Ù? ANSI"
+#~ msgid "Double Quote String"
+#~ msgstr "سÙ?سÙ?Ø© ذات رÙ?ز تصارÙ?Ø­ Ù?ضاعÙ?"
 
-#: gtksourceview/language-specs/R.lang.h:9
 #, fuzzy
-msgid "Reserved Constant"
-msgstr "Ù?حتÙ?Ù? Ù?Ù?Ù?Ù?د"
+#~ msgid "Single Quote String"
+#~ msgstr "سÙ?سÙ?Ø© ذات رÙ?ز تصرÙ?Ø­ Ù?Ø­Ù?د"
 
-#: gtksourceview/language-specs/gtkrc.lang.h:3
-msgid "GtkRC"
-msgstr ""
+#~ msgid "Most Used Commands"
+#~ msgstr "اÙ?Ø£Ù?اÙ?ر اÙ?Ù?ستخدÙ?Ø© بÙ?ثرة"
 
-#: gtksourceview/language-specs/gtkrc.lang.h:4
-msgid "Include Directive"
-msgstr ""
+#~ msgid "Regular Expression"
+#~ msgstr "تعبÙ?ر رÙ?اضÙ?"
 
-#: gtksourceview/language-specs/gtkrc.lang.h:5
-#, fuzzy
-msgid "Keysymbol"
-msgstr "رÙ?Ù?ز Ù?Ù?اتÙ?Ø­"
+#~ msgid "Regular Expression 2"
+#~ msgstr "تعبÙ?ر رÙ?اضÙ? 2"
 
-#: gtksourceview/language-specs/gtkrc.lang.h:11
-#, fuzzy
-msgid "State"
-msgstr "بÙ?Ù?ابات"
+#~ msgid "Miscellaneous Single-Row Functions"
+#~ msgstr "داÙ?ات Ù?تعددة ذات صÙ? Ù?Ø­Ù?د"
 
 #~ msgid "Font description name to use for the document text"
 #~ msgstr "اسÙ? Ù?صÙ? اÙ?خط اÙ?Ø°Ù? سÙ?ستخدÙ? Ù?Ù?ص اÙ?Ù?ستÙ?د"
@@ -1549,6 +1784,3 @@ msgstr "بÙ?Ù?ابات"
 
 #~ msgid "Plain Old Documentation"
 #~ msgstr "تÙ?Ø«Ù?Ù? عادÙ? بسÙ?Ø·"
-
-#~ msgid "MSIL"
-#~ msgstr "MSIL"
diff -pruN 1.8.1-2/po/ChangeLog 1.8.2-0ubuntu1/po/ChangeLog
--- 1.8.1-2/po/ChangeLog	2006-10-01 18:34:00.000000000 +0100
+++ 1.8.2-0ubuntu1/po/ChangeLog	2006-12-13 12:02:33.000000000 +0000
@@ -1,3 +1,33 @@
+=== gtksourceview 1.8.2 ===
+
+2006-12-02  Priit Laes  <plaes cvs gnome org>
+
+	* et.po: Translation updated by Ivar Smolin.
+
+2006-11-19  Wouter Bolsterlee  <wbolster cvs gnome org>
+
+	* pl.po: Translation updated by Artur Flinta.
+
+2006-11-12  Priit Laes  <plaes cvs gnome org>
+
+	* et.po: Translation updated by Ivar Smolin.
+
+2006-10-30  Djihed Afifi <djihed gmail com> 
+
+	* ar.po Updated Arabic Translation.
+
+2006-10-19  Kjartan Maraas  <kmaraas gnome org>
+
+	* nb.po: Updated Norwegian bokmål translation.
+
+2006-10-11  Ignacio Casal Quinteiro  <nacho resa gmail com>
+
+	* gl.po: Updated Galician Translation.
+
+2006-10-02  Priit Laes  <plaes cvs gnome org>
+
+	* et.po: Translation updated by Ivar Smolin.
+
 === gtksourceview 1.8.1 ===
 
 2006-09-21  Priit Laes  <plaes cvs gnome org>
diff -pruN 1.8.1-2/po/et.po 1.8.2-0ubuntu1/po/et.po
--- 1.8.1-2/po/et.po	2006-09-30 21:56:02.000000000 +0100
+++ 1.8.2-0ubuntu1/po/et.po	2006-12-05 17:02:49.000000000 +0000
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: gtksourceview HEAD\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2006-08-16 08:48+0200\n"
-"PO-Revision-Date: 2006-09-21 16:36+0300\n"
+"PO-Revision-Date: 2006-11-29 20:07+0200\n"
 "Last-Translator: Ivar Smolin <okul linux ee>\n"
 "Language-Team: Estonian <gnome-et linux ee>\n"
 "MIME-Version: 1.0\n"
@@ -589,7 +589,7 @@ msgstr ""
 
 #: ../gtksourceview/language-specs/boo.lang.h:5
 msgid "Primitive"
-msgstr ""
+msgstr "Primitiiv"
 
 #: ../gtksourceview/language-specs/c.lang.h:1
 #: ../gtksourceview/language-specs/cpp.lang.h:1
@@ -833,14 +833,14 @@ msgstr ""
 #.
 #: ../gtksourceview/language-specs/css.lang.h:64
 msgid "Unicode Character Reference"
-msgstr ""
+msgstr "Unikoodi märgi viide"
 
 #.
 #. Unicode range values.
 #.
 #: ../gtksourceview/language-specs/css.lang.h:68
 msgid "Unicode Range"
-msgstr ""
+msgstr "Unikoodi vahemik"
 
 #: ../gtksourceview/language-specs/d.lang.h:1
 #: ../gtksourceview/language-specs/nemerle.lang.h:1
@@ -854,7 +854,7 @@ msgstr ""
 
 #: ../gtksourceview/language-specs/d.lang.h:4
 msgid "D"
-msgstr ""
+msgstr "D"
 
 #: ../gtksourceview/language-specs/d.lang.h:7
 msgid "Grave Literal"
@@ -1220,15 +1220,15 @@ msgstr "Direktiivid"
 
 #: ../gtksourceview/language-specs/makefile.lang.h:5
 msgid "Makefile"
-msgstr ""
+msgstr "Makefile"
 
 #: ../gtksourceview/language-specs/makefile.lang.h:7
 msgid "Special Targets"
-msgstr ""
+msgstr "Erisihid"
 
 #: ../gtksourceview/language-specs/makefile.lang.h:10
 msgid "Targets"
-msgstr ""
+msgstr "Sihid"
 
 #: ../gtksourceview/language-specs/makefile.lang.h:11
 #: ../gtksourceview/language-specs/sh.lang.h:15
@@ -1242,7 +1242,7 @@ msgstr "Muutuja2"
 
 #: ../gtksourceview/language-specs/msil.lang.h:1
 msgid "MSIL"
-msgstr ""
+msgstr "MSIL"
 
 #: ../gtksourceview/language-specs/nemerle.lang.h:4
 msgid "Core Keywords"
@@ -1635,7 +1635,7 @@ msgstr "SQL"
 
 #: ../gtksourceview/language-specs/sql.lang.h:40
 msgid "SQL Statements"
-msgstr ""
+msgstr "SQL-lause"
 
 #. SQL*Plus
 #: ../gtksourceview/language-specs/sql.lang.h:42
diff -pruN 1.8.1-2/po/gl.po 1.8.2-0ubuntu1/po/gl.po
--- 1.8.1-2/po/gl.po	2006-01-17 20:26:06.000000000 +0000
+++ 1.8.2-0ubuntu1/po/gl.po	2006-10-11 16:59:08.000000000 +0100
@@ -1,20 +1,19 @@
 # translation of gl.po to Galego
 # This file is distributed under the same license as the PACKAGE package.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
+# Copyright (C) 2006 THE PACKAGE'S COPYRIGHT HOLDER.
 #
 # Ignacio Casal Quinteiro <nacho resa gmail com>, 2005, 2006.
 msgid ""
 msgstr ""
 "Project-Id-Version: gl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-01-17 21:23+0100\n"
-"PO-Revision-Date: 2006-01-17 21:25+0100\n"
+"POT-Creation-Date: 2006-10-11 17:58+0200\n"
+"PO-Revision-Date: 2006-10-11 17:57+0200\n"
 "Last-Translator: Ignacio Casal Quinteiro <nacho resa gmail com>\n"
-"Language-Team: Galego\n"
+"Language-Team: Galician <trasno ceu fi udc es>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.11.1\n"
 
 #: ../gtksourceview/gtksourcebuffer.c:278
 msgid "Escape Character"
@@ -215,6 +214,7 @@ msgstr "Función"
 #: ../gtksourceview/gtksourcestylescheme.c:289
 #: ../gtksourceview/language-specs/c.lang.h:6
 #: ../gtksourceview/language-specs/cpp.lang.h:6
+#: ../gtksourceview/language-specs/d.lang.h:5
 #: ../gtksourceview/language-specs/fortran.lang.h:1
 #: ../gtksourceview/language-specs/haskell.lang.h:3
 #: ../gtksourceview/language-specs/nemerle.lang.h:6
@@ -277,7 +277,7 @@ msgstr "Preprocesador"
 #: ../gtksourceview/language-specs/csharp.lang.h:9
 #: ../gtksourceview/language-specs/css.lang.h:58
 #: ../gtksourceview/language-specs/html.lang.h:8
-#: ../gtksourceview/language-specs/fortran.lang.h:13
+#: ../gtksourceview/language-specs/fortran.lang.h:14
 #: ../gtksourceview/language-specs/haskell.lang.h:31
 #: ../gtksourceview/language-specs/idl.lang.h:9
 #: ../gtksourceview/language-specs/java.lang.h:11
@@ -409,43 +409,53 @@ msgstr "Resaltar a liña actual"
 msgid "Whether to highlight the current line"
 msgstr "Indica se se resalta a liña actual"
 
-#: ../gtksourceview/gtksourceview.c:305
+#: ../gtksourceview/gtksourceview.c:296
+msgid "Indent on tab"
+msgstr "Sangrar no tabulador"
+
+#: ../gtksourceview/gtksourceview.c:297
+msgid "Whether to indent the selected text when the tab key is pressed"
+msgstr ""
+"Indica se se debe sangrar o texto seleccionado cando se preme a tecla de "
+"tabulación"
+
+#: ../gtksourceview/gtksourceview.c:313
 msgid "Margin Line Alpha"
 msgstr "Liña alfa da marxe"
 
-#: ../gtksourceview/gtksourceview.c:306
+#: ../gtksourceview/gtksourceview.c:314
 msgid "Transparency of the margin line"
 msgstr "Transparencia da liña da marxe"
 
-#: ../gtksourceview/gtksourceview.c:323
+#: ../gtksourceview/gtksourceview.c:331
 msgid "Margin Line Color"
 msgstr "Cor da liña da marxe"
 
-#: ../gtksourceview/gtksourceview.c:324
+#: ../gtksourceview/gtksourceview.c:332
 msgid "Color to use for the right margin line"
 msgstr "Cor a usar para a liña dereita da marxe"
 
-#: ../gtksourceview/gtksourceview.c:340
+#: ../gtksourceview/gtksourceview.c:348
 msgid "Margin Overlay Toggle"
 msgstr "Cambiar marxe sobreposta"
 
-#: ../gtksourceview/gtksourceview.c:341
+#: ../gtksourceview/gtksourceview.c:349
 msgid "Whether to draw the right margin overlay"
 msgstr "Indica se se amosará a marxe dereita sobreposta"
 
-#: ../gtksourceview/gtksourceview.c:357
+#: ../gtksourceview/gtksourceview.c:365
 msgid "Margin Overlay Alpha"
 msgstr "Alfa da marxe sobreposta"
 
-#: ../gtksourceview/gtksourceview.c:358
+#: ../gtksourceview/gtksourceview.c:366
 msgid "Transparency of the margin overlay"
 msgstr "Transparencia da marxe sobreposta"
 
-#: ../gtksourceview/gtksourceview.c:375
+#: ../gtksourceview/gtksourceview.c:383
 msgid "Margin Overlay Color"
 msgstr "Cor da marxe sobreposta"
 
-#: ../gtksourceview/gtksourceview.c:376
+#: ../gtksourceview/gtksourceview.c:384
 msgid "Color to use for drawing the margin overlay"
 msgstr "Cor usada para debuxar a marxe sobreposta"
 
@@ -472,6 +482,7 @@ msgstr "Constante carácter"
 #: ../gtksourceview/language-specs/cpp.lang.h:11
 #: ../gtksourceview/language-specs/csharp.lang.h:4
 #: ../gtksourceview/language-specs/css.lang.h:29
+#: ../gtksourceview/language-specs/d.lang.h:10
 #: ../gtksourceview/language-specs/desktop.lang.h:7
 #: ../gtksourceview/language-specs/diff.lang.h:5
 #: ../gtksourceview/language-specs/fortran.lang.h:9
@@ -506,6 +517,7 @@ msgstr "Comentario de liña"
 #. +/- before 0 is not allowed.
 #.
 #: ../gtksourceview/language-specs/ada.lang.h:6
+#: ../gtksourceview/language-specs/boo.lang.h:4
 #: ../gtksourceview/language-specs/css.lang.h:34
 #: ../gtksourceview/language-specs/desktop.lang.h:9
 #: ../gtksourceview/language-specs/gtkrc.lang.h:8
@@ -520,10 +532,12 @@ msgid "Preprocessor Keyword"
 msgstr "Palabra reservada do preprocesador"
 
 #: ../gtksourceview/language-specs/ada.lang.h:8
+#: ../gtksourceview/language-specs/boo.lang.h:6
 #: ../gtksourceview/language-specs/c.lang.h:14
 #: ../gtksourceview/language-specs/cpp.lang.h:14
 #: ../gtksourceview/language-specs/csharp.lang.h:8
-#: ../gtksourceview/language-specs/fortran.lang.h:12
+#: ../gtksourceview/language-specs/d.lang.h:13
+#: ../gtksourceview/language-specs/fortran.lang.h:13
 #: ../gtksourceview/language-specs/haskell.lang.h:13
 #: ../gtksourceview/language-specs/idl.lang.h:8
 #: ../gtksourceview/language-specs/java.lang.h:10
@@ -547,6 +561,35 @@ msgstr "Verdadeiro e falso"
 msgid "Type"
 msgstr "Tipo"
 
+#: ../gtksourceview/language-specs/boo.lang.h:1
+msgid "Boolean"
+msgstr "Booleano"
+
+#: ../gtksourceview/language-specs/boo.lang.h:2
+#: ../gtksourceview/language-specs/c.lang.h:10
+#: ../gtksourceview/language-specs/cpp.lang.h:10
+#: ../gtksourceview/language-specs/csharp.lang.h:3
+#: ../gtksourceview/language-specs/d.lang.h:9
+#: ../gtksourceview/language-specs/fortran.lang.h:7
+#: ../gtksourceview/language-specs/idl.lang.h:4
+#: ../gtksourceview/language-specs/javascript.lang.h:12
+#: ../gtksourceview/language-specs/lua.lang.h:3
+#: ../gtksourceview/language-specs/perl.lang.h:2
+#: ../gtksourceview/language-specs/ruby.lang.h:9
+#: ../gtksourceview/language-specs/vbnet.lang.h:1
+#: ../gtksourceview/language-specs/verilog.lang.h:6
+msgid "Keywords"
+msgstr "Palabras clave"
+
+#: ../gtksourceview/language-specs/boo.lang.h:3
+#: ../gtksourceview/language-specs/javascript.lang.h:14
+msgid "Literals"
+msgstr "Literales"
+
+#: ../gtksourceview/language-specs/boo.lang.h:5
+msgid "Primitive"
+msgstr "Primitivo"
+
 #: ../gtksourceview/language-specs/c.lang.h:1
 #: ../gtksourceview/language-specs/cpp.lang.h:1
 msgid "'#if 0' Comment"
@@ -557,6 +600,7 @@ msgstr "'#if 0' Comentario"
 #: ../gtksourceview/language-specs/cpp.lang.h:2
 #: ../gtksourceview/language-specs/csharp.lang.h:1
 #: ../gtksourceview/language-specs/css.lang.h:9
+#: ../gtksourceview/language-specs/d.lang.h:2
 #: ../gtksourceview/language-specs/html.lang.h:2
 #: ../gtksourceview/language-specs/haskell.lang.h:1
 #: ../gtksourceview/language-specs/idl.lang.h:1
@@ -582,6 +626,7 @@ msgstr "Macro común"
 
 #: ../gtksourceview/language-specs/c.lang.h:7
 #: ../gtksourceview/language-specs/cpp.lang.h:7
+#: ../gtksourceview/language-specs/d.lang.h:6
 #: ../gtksourceview/language-specs/fortran.lang.h:2
 #: ../gtksourceview/language-specs/haskell.lang.h:4
 #: ../gtksourceview/language-specs/nemerle.lang.h:7
@@ -594,6 +639,7 @@ msgstr "Número de coma flotante"
 #. FIXME WHY DOESN'T THIS WORK?
 #: ../gtksourceview/language-specs/c.lang.h:8
 #: ../gtksourceview/language-specs/cpp.lang.h:8
+#: ../gtksourceview/language-specs/d.lang.h:8
 #: ../gtksourceview/language-specs/fortran.lang.h:4
 #: ../gtksourceview/language-specs/haskell.lang.h:6
 #: ../gtksourceview/language-specs/nemerle.lang.h:8
@@ -610,22 +656,9 @@ msgstr "Número Hex"
 msgid "Include/Pragma"
 msgstr "Include/Pragma"
 
-#: ../gtksourceview/language-specs/c.lang.h:10
-#: ../gtksourceview/language-specs/cpp.lang.h:10
-#: ../gtksourceview/language-specs/csharp.lang.h:3
-#: ../gtksourceview/language-specs/fortran.lang.h:7
-#: ../gtksourceview/language-specs/idl.lang.h:4
-#: ../gtksourceview/language-specs/javascript.lang.h:12
-#: ../gtksourceview/language-specs/lua.lang.h:3
-#: ../gtksourceview/language-specs/perl.lang.h:2
-#: ../gtksourceview/language-specs/ruby.lang.h:9
-#: ../gtksourceview/language-specs/vbnet.lang.h:1
-#: ../gtksourceview/language-specs/verilog.lang.h:6
-msgid "Keywords"
-msgstr "Palabras clave"
-
 #: ../gtksourceview/language-specs/c.lang.h:12
 #: ../gtksourceview/language-specs/cpp.lang.h:12
+#: ../gtksourceview/language-specs/d.lang.h:12
 #: ../gtksourceview/language-specs/fortran.lang.h:10
 #: ../gtksourceview/language-specs/haskell.lang.h:11
 #: ../gtksourceview/language-specs/nemerle.lang.h:12
@@ -645,7 +678,8 @@ msgstr "Definicións do preprocesador"
 
 #: ../gtksourceview/language-specs/c.lang.h:16
 #: ../gtksourceview/language-specs/cpp.lang.h:16
-#: ../gtksourceview/language-specs/fortran.lang.h:15
+#: ../gtksourceview/language-specs/d.lang.h:16
+#: ../gtksourceview/language-specs/fortran.lang.h:16
 #: ../gtksourceview/language-specs/idl.lang.h:10
 #: ../gtksourceview/language-specs/verilog.lang.h:10
 msgid "Types"
@@ -694,7 +728,7 @@ msgstr "Primitivas"
 
 #: ../gtksourceview/language-specs/csharp.lang.h:10
 #: ../gtksourceview/language-specs/css.lang.h:59
-#: ../gtksourceview/language-specs/fortran.lang.h:14
+#: ../gtksourceview/language-specs/fortran.lang.h:15
 #: ../gtksourceview/language-specs/java.lang.h:12
 #: ../gtksourceview/language-specs/javascript.lang.h:24
 #: ../gtksourceview/language-specs/lua.lang.h:11
@@ -748,6 +782,7 @@ msgid "Known Property Values"
 msgstr "Valores coñecidos de propiedade"
 
 #: ../gtksourceview/language-specs/css.lang.h:35
+#: ../gtksourceview/language-specs/fortran.lang.h:11
 #: ../gtksourceview/language-specs/javascript.lang.h:20
 #: ../gtksourceview/language-specs/php.lang.h:20
 #: ../gtksourceview/language-specs/sql.lang.h:34
@@ -806,6 +841,36 @@ msgstr "Referencia de carácter unicode"
 msgid "Unicode Range"
 msgstr "Rango unicode"
 
+#: ../gtksourceview/language-specs/d.lang.h:1
+#: ../gtksourceview/language-specs/nemerle.lang.h:1
+#: ../gtksourceview/language-specs/verilog.lang.h:1
+msgid "Binary Number"
+msgstr "Número binario"
+
+#: ../gtksourceview/language-specs/d.lang.h:3
+msgid "Char Literal"
+msgstr "Carácter literal"
+
+#: ../gtksourceview/language-specs/d.lang.h:4
+msgid "D"
+msgstr "D"
+
+#: ../gtksourceview/language-specs/d.lang.h:7
+msgid "Grave Literal"
+msgstr "Literal grave"
+
+#: ../gtksourceview/language-specs/d.lang.h:11
+msgid "Nested Comment"
+msgstr "Comentario aniñado"
+
+#: ../gtksourceview/language-specs/d.lang.h:14
+msgid "Special Tokens"
+msgstr "Tokens especiais"
+
+#: ../gtksourceview/language-specs/d.lang.h:15
+msgid "String Literal"
+msgstr "Cadea literal"
+
 #: ../gtksourceview/language-specs/desktop.lang.h:1
 msgid ".desktop"
 msgstr ".desktop"
@@ -915,7 +980,7 @@ msgstr "Entrada/Saída"
 msgid "Intrinsics"
 msgstr "Intrínseco"
 
-#: ../gtksourceview/language-specs/fortran.lang.h:11
+#: ../gtksourceview/language-specs/fortran.lang.h:12
 msgid "Read/Write"
 msgstr "Lectura/Escritura"
 
@@ -1065,10 +1130,6 @@ msgstr "Número hexadecimal"
 msgid "JavaScript"
 msgstr "JavaScript"
 
-#: ../gtksourceview/language-specs/javascript.lang.h:14
-msgid "Literals"
-msgstr "Literales"
-
 #: ../gtksourceview/language-specs/javascript.lang.h:15
 msgid "Math Value Properties"
 msgstr "Propieades de valores matemáticos"
@@ -1182,11 +1243,6 @@ msgstr "Variable2"
 msgid "MSIL"
 msgstr "MSIL"
 
-#: ../gtksourceview/language-specs/nemerle.lang.h:1
-#: ../gtksourceview/language-specs/verilog.lang.h:1
-msgid "Binary Number"
-msgstr "Número binario"
-
 #: ../gtksourceview/language-specs/nemerle.lang.h:4
 msgid "Core Keywords"
 msgstr "Palabras clave core"
@@ -1697,4 +1753,3 @@ msgstr "Hexadecimal"
 #: ../gtksourceview/language-specs/xml.lang.h:9
 msgid "XML"
 msgstr "XML"
-
diff -pruN 1.8.1-2/po/Makefile.in.in 1.8.2-0ubuntu1/po/Makefile.in.in
--- 1.8.1-2/po/Makefile.in.in	2006-10-01 19:03:28.000000000 +0100
+++ 1.8.2-0ubuntu1/po/Makefile.in.in	2006-12-13 12:02:59.000000000 +0000
@@ -25,7 +25,7 @@ SHELL = /bin/sh
 
 srcdir = @srcdir@
 top_srcdir = @top_srcdir@
-top_builddir = ..
+top_builddir = @top_builddir@
 VPATH = @srcdir@
 
 prefix = @prefix@
@@ -56,7 +56,9 @@ ALL_LINGUAS = @ALL_LINGUAS@
 
 PO_LINGUAS=$(shell if test -r $(srcdir)/LINGUAS; then grep -v "^\#" $(srcdir)/LINGUAS; fi)
 
-POFILES=$(shell if test -n "$(PO_LINGUAS)"; then LINGUAS="$(PO_LINGUAS)"; else LINGUAS="$(ALL_LINGUAS)"; fi; for lang in $$LINGUAS; do printf "$$lang.po "; done)
+USE_LINGUAS=$(shell if test -n "$(LINGUAS)"; then LLINGUAS="$(LINGUAS)"; else if test -n "$(PO_LINGUAS)"; then LLINGUAS="$(PO_LINGUAS)"; else LLINGUAS="$(ALL_LINGUAS)"; fi; fi; for lang in $$LLINGUAS; do printf "$$lang "; done)
+
+POFILES=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.po "; done)
 
 DISTFILES = ChangeLog Makefile.in.in POTFILES.in $(POFILES)
 EXTRA_DISTFILES = POTFILES.skip Makevars LINGUAS
@@ -64,7 +66,7 @@ EXTRA_DISTFILES = POTFILES.skip Makevars
 POTFILES = \
 #This Gets Replace for some reason
 
-CATALOGS=$(shell if test -n "$(PO_LINGUAS)"; then LINGUAS="$(PO_LINGUAS)"; else LINGUAS="$(ALL_LINGUAS)"; fi; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
+CATALOGS=$(shell LINGUAS="$(USE_LINGUAS)"; for lang in $$LINGUAS; do printf "$$lang.gmo "; done)
 
 .SUFFIXES:
 .SUFFIXES: .po .pox .gmo .mo .msg .cat
@@ -98,11 +100,7 @@ install-data: install-data- USE_NLS@
 install-data-no: all
 install-data-yes: all
 	$(mkdir_p) $(DESTDIR)$(itlocaledir)
-	if test -n "$(PO_LINGUAS)"; then \
-	  linguas="$(PO_LINGUAS)"; \
-	else \
-	  linguas="$(ALL_LINGUAS)"; \
-	fi; \
+	linguas="$(USE_LINGUAS)"; \
 	for lang in $$linguas; do \
 	  dir=$(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES; \
 	  $(mkdir_p) $$dir; \
@@ -136,11 +134,7 @@ dvi info tags TAGS ID:
 installcheck:
 
 uninstall:
-	if test -n "$(PO_LINGUAS)"; then \
-	  linguas="$(PO_LINGUAS)"; \
-	else \
-	  linguas="$(ALL_LINGUAS)"; \
-	fi; \
+	linguas="$(USE_LINGUAS)"; \
 	for lang in $$linguas; do \
 	  rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo; \
 	  rm -f $(DESTDIR)$(itlocaledir)/$$lang/LC_MESSAGES/$(GETTEXT_PACKAGE).mo.m; \
@@ -179,11 +173,7 @@ dist distdir: $(DISTFILES)
 update-po: Makefile
 	$(MAKE) $(GETTEXT_PACKAGE).pot
 	tmpdir=`pwd`; \
-	if test -n "$(PO_LINGUAS)"; then \
-	  linguas="$(PO_LINGUAS)"; \
-	else \
-	  linguas="$(ALL_LINGUAS)"; \
-	fi; \
+	linguas="$(USE_LINGUAS)"; \
 	for lang in $$linguas; do \
 	  echo "$$lang:"; \
 	  result="`$(MSGMERGE) -o $$tmpdir/$$lang.new.po $$lang`"; \
@@ -211,8 +201,8 @@ Makefile POTFILES: stamp-it
 	  $(MAKE) stamp-it; \
 	fi
 
-stamp-it: Makefile.in.in ../config.status POTFILES.in
-	cd .. \
+stamp-it: Makefile.in.in $(top_builddir)/config.status POTFILES.in
+	cd $(top_builddir) \
 	  && CONFIG_FILES=$(subdir)/Makefile.in CONFIG_HEADERS= CONFIG_LINKS= \
 	       $(SHELL) ./config.status
 
diff -pruN 1.8.1-2/po/nb.po 1.8.2-0ubuntu1/po/nb.po
--- 1.8.1-2/po/nb.po	2006-08-03 13:15:02.000000000 +0100
+++ 1.8.2-0ubuntu1/po/nb.po	2006-10-19 09:43:11.000000000 +0100
@@ -6,8 +6,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: gtksourceview 1.2.x\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-03 14:10+0200\n"
-"PO-Revision-Date: 2006-08-03 14:14+0200\n"
+"POT-Creation-Date: 2006-10-19 10:35+0200\n"
+"PO-Revision-Date: 2006-10-19 10:41+0200\n"
 "Last-Translator: Kjartan Maraas <kmaraas gnome org>\n"
 "Language-Team: Norwegian bokmal <i18n-nb lister ping uio no>\n"
 "MIME-Version: 1.0\n"
@@ -84,7 +84,7 @@ msgid "GtkSourceBuffer object to print"
 msgstr "GtkSourceBuffer-objekt som skal skrives ut"
 
 #: ../gtksourceview/gtksourceprintjob.c:280
-#: ../gtksourceview/gtksourceview.c:233 ../gtksourceview/gtksourceview.c:234
+#: ../gtksourceview/gtksourceview.c:235 ../gtksourceview/gtksourceview.c:236
 msgid "Tabs Width"
 msgstr "Tabulatorbredde"
 
@@ -272,10 +272,10 @@ msgstr "Preprosessor"
 #: ../gtksourceview/language-specs/csharp.lang.h:9
 #: ../gtksourceview/language-specs/css.lang.h:58
 #: ../gtksourceview/language-specs/html.lang.h:8
-#: ../gtksourceview/language-specs/fortran.lang.h:13
+#: ../gtksourceview/language-specs/fortran.lang.h:14
 #: ../gtksourceview/language-specs/haskell.lang.h:31
 #: ../gtksourceview/language-specs/idl.lang.h:9
-#: ../gtksourceview/language-specs/java.lang.h:11
+#: ../gtksourceview/language-specs/java.lang.h:12
 #: ../gtksourceview/language-specs/javascript.lang.h:23
 #: ../gtksourceview/language-specs/lua.lang.h:10
 #: ../gtksourceview/language-specs/makefile.lang.h:8
@@ -336,59 +336,59 @@ msgstr "Stil for merke"
 msgid "The style associated with the source tag"
 msgstr "Stil assosiert med kildentaggen"
 
-#: ../gtksourceview/gtksourceview.c:217
+#: ../gtksourceview/gtksourceview.c:219
 msgid "Show Line Numbers"
 msgstr "Vis linjenummer"
 
-#: ../gtksourceview/gtksourceview.c:218
+#: ../gtksourceview/gtksourceview.c:220
 msgid "Whether to display line numbers"
 msgstr "Om linjenummer skal vises"
 
-#: ../gtksourceview/gtksourceview.c:225
+#: ../gtksourceview/gtksourceview.c:227
 msgid "Show Line Markers"
 msgstr "Vis linjemarkører"
 
-#: ../gtksourceview/gtksourceview.c:226
+#: ../gtksourceview/gtksourceview.c:228
 msgid "Whether to display line marker pixbufs"
 msgstr "Om bilder skal vises for linjemarkører"
 
-#: ../gtksourceview/gtksourceview.c:243
+#: ../gtksourceview/gtksourceview.c:245
 msgid "Auto Indentation"
 msgstr "Automatisk innrykk"
 
-#: ../gtksourceview/gtksourceview.c:244
+#: ../gtksourceview/gtksourceview.c:246
 msgid "Whether to enable auto indentation"
 msgstr "Om automatisk innrykk skal aktiveres"
 
-#: ../gtksourceview/gtksourceview.c:250
+#: ../gtksourceview/gtksourceview.c:252
 msgid "Insert Spaces Instead of Tabs"
 msgstr "Sett inn mellomrom i stedet for tabulator"
 
-#: ../gtksourceview/gtksourceview.c:251
+#: ../gtksourceview/gtksourceview.c:253
 msgid "Whether to insert spaces instead of tabs"
 msgstr "Om mellomrom skal settes inn i stedet for tabulator"
 
-#: ../gtksourceview/gtksourceview.c:258
+#: ../gtksourceview/gtksourceview.c:260
 msgid "Show Right Margin"
 msgstr "Vis høyre marg"
 
-#: ../gtksourceview/gtksourceview.c:259
+#: ../gtksourceview/gtksourceview.c:261
 msgid "Whether to display the right margin"
 msgstr "Om høyre marg skal vises"
 
-#: ../gtksourceview/gtksourceview.c:266
+#: ../gtksourceview/gtksourceview.c:268
 msgid "Margin position"
 msgstr "Posisjon for marg"
 
-#: ../gtksourceview/gtksourceview.c:267
+#: ../gtksourceview/gtksourceview.c:269
 msgid "Position of the right margin"
 msgstr "Posisjon for høyre marg"
 
-#: ../gtksourceview/gtksourceview.c:276
+#: ../gtksourceview/gtksourceview.c:278
 msgid "Use smart home/end"
 msgstr "Bruk smart home/end"
 
-#: ../gtksourceview/gtksourceview.c:277
+#: ../gtksourceview/gtksourceview.c:279
 msgid ""
 "HOME and END keys move to first/last non whitespace characters on line "
 "before going to the start/end of the line"
@@ -396,59 +396,61 @@ msgstr ""
 "HOME- og END-tastene flytter til første/siste tegn som ikke er mellomrom på "
 "linjen før de går til begynnelsen/slutten på linjen"
 
-#: ../gtksourceview/gtksourceview.c:286
+#: ../gtksourceview/gtksourceview.c:288
 msgid "Highlight current line"
 msgstr "Uthev aktiv linje"
 
-#: ../gtksourceview/gtksourceview.c:287
+#: ../gtksourceview/gtksourceview.c:289
 msgid "Whether to highlight the current line"
 msgstr "Om aktiv linje skal utheves"
 
-#: ../gtksourceview/gtksourceview.c:303
+#: ../gtksourceview/gtksourceview.c:296
+msgid "Indent on tab"
+msgstr "Rykk inn ved tabulator"
+
+#: ../gtksourceview/gtksourceview.c:297
+msgid "Whether to indent the selected text when the tab key is pressed"
+msgstr "Om valgt tekst skal rykkes inn når tabulatortasten trykkes ned"
+
+#: ../gtksourceview/gtksourceview.c:313
 msgid "Margin Line Alpha"
 msgstr "Gjennomsiktighet for marg"
 
-#: ../gtksourceview/gtksourceview.c:304
+#: ../gtksourceview/gtksourceview.c:314
 msgid "Transparency of the margin line"
 msgstr "Gjennomsiktighet for marg"
 
-#: ../gtksourceview/gtksourceview.c:321
+#: ../gtksourceview/gtksourceview.c:331
 msgid "Margin Line Color"
 msgstr "Farge for marg"
 
-#: ../gtksourceview/gtksourceview.c:322
+#: ../gtksourceview/gtksourceview.c:332
 msgid "Color to use for the right margin line"
 msgstr "Farge som skal brukes på høyre marg"
 
-#: ../gtksourceview/gtksourceview.c:338
-#, fuzzy
+#: ../gtksourceview/gtksourceview.c:348
 msgid "Margin Overlay Toggle"
-msgstr "Slå av/på ..."
+msgstr "Slå av/på overliggende marg"
 
-#: ../gtksourceview/gtksourceview.c:339
-#, fuzzy
+#: ../gtksourceview/gtksourceview.c:349
 msgid "Whether to draw the right margin overlay"
-msgstr "Om høyre ... skal tegnes"
+msgstr "Om høyre overliggende marg skal tegnes"
 
-#: ../gtksourceview/gtksourceview.c:355
-#, fuzzy
+#: ../gtksourceview/gtksourceview.c:365
 msgid "Margin Overlay Alpha"
-msgstr "Alpha for ..."
+msgstr "Alpha for overliggende marg"
 
-#: ../gtksourceview/gtksourceview.c:356
-#, fuzzy
+#: ../gtksourceview/gtksourceview.c:366
 msgid "Transparency of the margin overlay"
-msgstr "Gjennomsiktighet for ..."
+msgstr "Gjennomsiktighet for overliggende marg"
 
-#: ../gtksourceview/gtksourceview.c:373
-#, fuzzy
+#: ../gtksourceview/gtksourceview.c:383
 msgid "Margin Overlay Color"
-msgstr "Farge for "
+msgstr "Farge for overliggende marg"
 
-#: ../gtksourceview/gtksourceview.c:374
-#, fuzzy
+#: ../gtksourceview/gtksourceview.c:384
 msgid "Color to use for drawing the margin overlay"
-msgstr "Farge som skal brukes for å tegne "
+msgstr "Farge som skal brukes for å tegne overliggende marg"
 
 #: ../gtksourceview/language-specs/ada.lang.h:1
 msgid "Ada"
@@ -481,7 +483,7 @@ msgstr "Tegnkonstant"
 #: ../gtksourceview/language-specs/haskell.lang.h:10
 #: ../gtksourceview/language-specs/idl.lang.h:5
 #: ../gtksourceview/language-specs/ini.lang.h:8
-#: ../gtksourceview/language-specs/java.lang.h:5
+#: ../gtksourceview/language-specs/java.lang.h:6
 #: ../gtksourceview/language-specs/javascript.lang.h:13
 #: ../gtksourceview/language-specs/lua.lang.h:4
 #: ../gtksourceview/language-specs/makefile.lang.h:4
@@ -528,10 +530,10 @@ msgstr "Nøkkelord for preprosessor"
 #: ../gtksourceview/language-specs/cpp.lang.h:14
 #: ../gtksourceview/language-specs/csharp.lang.h:8
 #: ../gtksourceview/language-specs/d.lang.h:13
-#: ../gtksourceview/language-specs/fortran.lang.h:12
+#: ../gtksourceview/language-specs/fortran.lang.h:13
 #: ../gtksourceview/language-specs/haskell.lang.h:13
 #: ../gtksourceview/language-specs/idl.lang.h:8
-#: ../gtksourceview/language-specs/java.lang.h:10
+#: ../gtksourceview/language-specs/java.lang.h:11
 #: ../gtksourceview/language-specs/makefile.lang.h:6
 #: ../gtksourceview/language-specs/nemerle.lang.h:14
 #: ../gtksourceview/language-specs/pascal.lang.h:17
@@ -670,7 +672,7 @@ msgstr "Preprosessordefinisjoner"
 #: ../gtksourceview/language-specs/c.lang.h:16
 #: ../gtksourceview/language-specs/cpp.lang.h:16
 #: ../gtksourceview/language-specs/d.lang.h:16
-#: ../gtksourceview/language-specs/fortran.lang.h:15
+#: ../gtksourceview/language-specs/fortran.lang.h:16
 #: ../gtksourceview/language-specs/idl.lang.h:10
 #: ../gtksourceview/language-specs/verilog.lang.h:10
 msgid "Types"
@@ -711,7 +713,7 @@ msgid "Multiline String"
 msgstr "Flerlinjestreng"
 
 #: ../gtksourceview/language-specs/csharp.lang.h:7
-#: ../gtksourceview/language-specs/java.lang.h:9
+#: ../gtksourceview/language-specs/java.lang.h:10
 #: ../gtksourceview/language-specs/nemerle.lang.h:13
 #: ../gtksourceview/language-specs/vbnet.lang.h:9
 msgid "Primitives"
@@ -719,8 +721,8 @@ msgstr "Primitiver"
 
 #: ../gtksourceview/language-specs/csharp.lang.h:10
 #: ../gtksourceview/language-specs/css.lang.h:59
-#: ../gtksourceview/language-specs/fortran.lang.h:14
-#: ../gtksourceview/language-specs/java.lang.h:12
+#: ../gtksourceview/language-specs/fortran.lang.h:15
+#: ../gtksourceview/language-specs/java.lang.h:13
 #: ../gtksourceview/language-specs/javascript.lang.h:24
 #: ../gtksourceview/language-specs/lua.lang.h:11
 #: ../gtksourceview/language-specs/makefile.lang.h:9
@@ -773,6 +775,7 @@ msgid "Known Property Values"
 msgstr "Kjente verdier for egenskaper"
 
 #: ../gtksourceview/language-specs/css.lang.h:35
+#: ../gtksourceview/language-specs/fortran.lang.h:11
 #: ../gtksourceview/language-specs/javascript.lang.h:20
 #: ../gtksourceview/language-specs/php.lang.h:20
 #: ../gtksourceview/language-specs/sql.lang.h:34
@@ -846,9 +849,8 @@ msgid "D"
 msgstr "D"
 
 #: ../gtksourceview/language-specs/d.lang.h:7
-#, fuzzy
 msgid "Grave Literal"
-msgstr "Tekstbokstaver"
+msgstr "Grave-literal"
 
 #: ../gtksourceview/language-specs/d.lang.h:11
 msgid "Nested Comment"
@@ -859,9 +861,8 @@ msgid "Special Tokens"
 msgstr "Spesialtegn"
 
 #: ../gtksourceview/language-specs/d.lang.h:15
-#, fuzzy
 msgid "String Literal"
-msgstr "Tekstbokstaver"
+msgstr "Tekstliteral"
 
 #: ../gtksourceview/language-specs/desktop.lang.h:1
 msgid ".desktop"
@@ -972,7 +973,7 @@ msgstr "Inn-/utdata"
 msgid "Intrinsics"
 msgstr "Detaljer"
 
-#: ../gtksourceview/language-specs/fortran.lang.h:11
+#: ../gtksourceview/language-specs/fortran.lang.h:12
 msgid "Read/Write"
 msgstr "Les/skriv"
 
@@ -1065,18 +1066,23 @@ msgid "Flow"
 msgstr "Flyt"
 
 #: ../gtksourceview/language-specs/java.lang.h:4
+#: ../gtksourceview/language-specs/javascript.lang.h:7
+msgid "Future Reserved Words"
+msgstr "Fremtidige reserverte ord"
+
+#: ../gtksourceview/language-specs/java.lang.h:5
 msgid "Java"
 msgstr "Java"
 
-#: ../gtksourceview/language-specs/java.lang.h:6
+#: ../gtksourceview/language-specs/java.lang.h:7
 msgid "Memory"
 msgstr "Minne"
 
-#: ../gtksourceview/language-specs/java.lang.h:7
+#: ../gtksourceview/language-specs/java.lang.h:8
 msgid "Modifiers"
 msgstr "Endringstaster"
 
-#: ../gtksourceview/language-specs/java.lang.h:8
+#: ../gtksourceview/language-specs/java.lang.h:9
 msgid "Numeric"
 msgstr "Numerisk"
 
@@ -1101,10 +1107,6 @@ msgstr "Flyttall"
 msgid "Flow Keywords"
 msgstr "Nøkkelord for flyt"
 
-#: ../gtksourceview/language-specs/javascript.lang.h:7
-msgid "Future Reserved Words"
-msgstr "Fremtidige reserverte ord"
-
 #: ../gtksourceview/language-specs/javascript.lang.h:8
 msgid "Global Functions"
 msgstr "Globale funksjoner"
diff -pruN 1.8.1-2/po/ne.po 1.8.2-0ubuntu1/po/ne.po
--- 1.8.1-2/po/ne.po	2005-03-10 03:54:03.000000000 +0000
+++ 1.8.2-0ubuntu1/po/ne.po	2006-12-05 17:02:50.000000000 +0000
@@ -1,619 +1,732 @@
+# translation of gtksourceview.HEAD.ne.po to Nepali
+# translation of gtksourceview.gnome-2-10.ne.po to Nepali
+# translation of gtksourceview.gnome-2-10.po to Nepali
 # translation of gtksourceview.HEAD.po to Nepali
 # This file is distributed under the same license as the PACKAGE package.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
 # Jyotsna Shrestha <jyoshrestha hotmail com>, 2005.
+# Bishnu Adhikari <bsn_adk hotmail com>, 2005.
+# Jaydeep Bhusal <zaydeep hotmail com>, 2005.
+# Shiva  Pokharel <pokharelshiva hotmail com>, 2005.
+# Shyam Krishna Bal <shyamkrishna_bal yahoo com>, 2006.
 #
 msgid ""
 msgstr ""
-"Project-Id-Version: gtksourceview.HEAD\n"
+"Project-Id-Version: gtksourceview.HEAD.ne\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-03-01 23:21+0100\n"
-"PO-Revision-Date: 2005-03-06 12:10+0000\n"
-"Last-Translator: Jyotsna Shrestha <jyoshrestha hotmail com>\n"
+"POT-Creation-Date: 2006-07-14 22:33+0200\n"
+"PO-Revision-Date: 2006-07-19 00:43+0545\n"
+"Last-Translator: Shyam Krishna Bal <shyamkrishna_bal yahoo com>\n"
 "Language-Team: Nepali <info mpp org np>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.9.1\n"
+"X-Generator: KBabel 1.10.2\n"
+"Plural-Forms: nplurals=2;plural=(n!=1)\n"
 
-#: gtksourceview/gtksourcebuffer.c:279
+#: ../gtksourceview/gtksourcebuffer.c:278
 msgid "Escape Character"
-msgstr "स�वन ह�ा�न�ह�ला"
+msgstr "��यार����र बा� निस��न�ह�स�"
 
-#: gtksourceview/gtksourcebuffer.c:280
+#: ../gtksourceview/gtksourcebuffer.c:279
 msgid "Escaping character for syntax patterns"
-msgstr "वा��यस�र�ना श�ल��� ला�� स�वन ह�ा�द�� ।"
+msgstr "वा��य स�र�ना बा�न���हर��ा ला�ि ��यार����र निस��द�"
 
-#: gtksourceview/gtksourcebuffer.c:288
+#: ../gtksourceview/gtksourcebuffer.c:287
 msgid "Check Brackets"
-msgstr "��ष�ठहर� स�ा�न�ह�ला"
+msgstr "��ष�ठ�हर� �ा���न�ह�स�"
 
-#: gtksourceview/gtksourcebuffer.c:289
+#: ../gtksourceview/gtksourcebuffer.c:288
 msgid "Whether to check and highlight matching brackets"
-msgstr "�ि स��या�न� र मिल��� ��ष�ठहर�ला� हा�ला�� �र�न�"
+msgstr "मिल��ा ��ष�ठ�हर�ला� हा�ला�� �र�न� �ि �ा�� �र�न�"
 
-#: gtksourceview/gtksourcebuffer.c:297 gtksourceview/gtksourceprintjob.c:295
+#: ../gtksourceview/gtksourcebuffer.c:296
+#: ../gtksourceview/gtksourceprintjob.c:296
 msgid "Highlight"
-msgstr "हा�ला��"
+msgstr "हा�ला�� �र�न�ह�स�"
 
-#: gtksourceview/gtksourcebuffer.c:298
+#: ../gtksourceview/gtksourcebuffer.c:297
 msgid "Whether to highlight syntax in the buffer"
-msgstr "�ि �स�था� स�म�त�मा वा��यस�र�ना हा�ला�� �र�न� "
+msgstr "बफरमा वा��य स�र�ना हा�ला�� �र�न �ि"
 
-#: gtksourceview/gtksourcebuffer.c:306
+#: ../gtksourceview/gtksourcebuffer.c:305
 msgid "Maximum Undo Levels"
-msgstr "प�र�वस�थतिमा फर��ा�न� ध�र� तहहर�"
+msgstr "प�र�वस�थितिमा फर��ा�न� �धि�तम स�तरहर�"
 
-#: gtksourceview/gtksourcebuffer.c:307
+#: ../gtksourceview/gtksourcebuffer.c:306
 msgid "Number of undo levels for the buffer"
-msgstr "�स�था� स�म�त��� ला�� प�र�वस�थतिमा फर��ा�न� �स���य तहहर�"
+msgstr "बफर�ा ला�ि प�र�वस�थतिमा फर��ा�न� स�तरहर��� स����या"
 
-#: gtksourceview/gtksourcebuffer.c:317
-#: gtksourceview/language-specs/desktop.lang.h:6
-#: gtksourceview/language-specs/ini.lang.h:7
+#: ../gtksourceview/gtksourcebuffer.c:316
+#: ../gtksourceview/language-specs/desktop.lang.h:6
+#: ../gtksourceview/language-specs/ini.lang.h:7
 msgid "Language"
-msgstr "भाषा�"
+msgstr "भाषा"
 
-#: gtksourceview/gtksourcebuffer.c:318
+#: ../gtksourceview/gtksourcebuffer.c:317
 msgid "Language object to get highlighting patterns from"
-msgstr "भाषा वस�त�बा� हा�ला�� �रि��ा श�ल�हर� पा�न"
+msgstr "हा�ला��� �रि��ा बा�न���हर� बा� भाषा वस�त� प�राप�त �र�न"
 
-#: gtksourceview/gtksourcelanguagesmanager.c:119
+#: ../gtksourceview/gtksourcelanguagesmanager.c:114
 msgid "Language specification directories"
-msgstr "�ास �ल�ल�� �रि��� भाषा शब�द��शहर�"
+msgstr "भाषा निर�दिष��ता डा�र����र�हर�"
 
-#: gtksourceview/gtksourcelanguagesmanager.c:120
+#: ../gtksourceview/gtksourcelanguagesmanager.c:115
 msgid ""
 "List of directories where the language specification files (.lang) are "
 "located"
-msgstr "शब�द��षहर��� स��� �हा� �ास भाषा �ल�ल�� �रि��ा फा�ल (.lang) रा�ि��� � ।"
+msgstr "डा�र����र�हर��� स��� �हा� भाषा निर�दिष�� �रि��ा फा�ल (.lang) रा�ि��� �"
 
-#: gtksourceview/gtksourceprintjob.c:264
+#: ../gtksourceview/gtksourceprintjob.c:265
 msgid "Configuration"
-msgstr "�न�फि�र�शन"
+msgstr "�न�फि�र�सन"
 
-#: gtksourceview/gtksourceprintjob.c:265
+#: ../gtksourceview/gtksourceprintjob.c:266
 msgid "Configuration options for the print job"
-msgstr "�ाप�न� �ाम�� ला�� �न�फि�र�शन व��ल�पहर�"
+msgstr "म�द�रण �ाम�ा ला�ि �न�फि�र�सन वि�ल�पहर�"
 
-#: gtksourceview/gtksourceprintjob.c:272
+#: ../gtksourceview/gtksourceprintjob.c:273
 msgid "Source Buffer"
-msgstr "�स�थाय� स�म�ति स�र�त"
+msgstr "बफर स�र�त"
 
-#: gtksourceview/gtksourceprintjob.c:273
+#: ../gtksourceview/gtksourceprintjob.c:274
 msgid "GtkSourceBuffer object to print"
-msgstr "वस�त� �ाप�न��ला�� �ि�ि�� �स�थाय� स�म�ति स�र�त "
+msgstr "वस�त� म�द�रण�� ला�ि �ि�ि�� बफर स�र�त"
 
-#: gtksourceview/gtksourceprintjob.c:279 gtksourceview/gtksourceview.c:222
-#: gtksourceview/gtksourceview.c:223
+#: ../gtksourceview/gtksourceprintjob.c:280
+#: ../gtksourceview/gtksourceview.c:233 ../gtksourceview/gtksourceview.c:234
 msgid "Tabs Width"
-msgstr "��याबहर��� ��डा�"
+msgstr "��याबहर��� ��डा�"
 
-#: gtksourceview/gtksourceprintjob.c:280
+#: ../gtksourceview/gtksourceprintjob.c:281
 msgid "Width in equivalent space characters of tabs"
-msgstr "��याबहर��� �ालि ठा���� ��डा� बराबर रा��न�ह�ला ।"
+msgstr "��याबहर��� �ाल� ठा���� ��डा� बराबर रा��न�ह�स�"
 
-#: gtksourceview/gtksourceprintjob.c:287
+#: ../gtksourceview/gtksourceprintjob.c:288
 msgid "Wrap Mode"
-msgstr "लप���न� श�ल�"
+msgstr "म�ड ब�र�न�ह�स�"
 
-#: gtksourceview/gtksourceprintjob.c:288
+#: ../gtksourceview/gtksourceprintjob.c:289
 msgid "Word wrapping mode"
-msgstr "शब�द लप���न� श�ल�"
+msgstr "शब�द ब�र�न� म�ड"
 
-#: gtksourceview/gtksourceprintjob.c:296
+#: ../gtksourceview/gtksourceprintjob.c:297
 msgid "Whether to print the document with highlighted syntax"
-msgstr "हा�ला�� �रि��� स�र�नास��� �ा��ात �ाप�न� �ि"
+msgstr "हा�ला�� �रि��� वा��य स�र�ना स��� �ा��ात म�द�रण �र�न� �ि"
 
-#: gtksourceview/gtksourceprintjob.c:304
+#: ../gtksourceview/gtksourceprintjob.c:305
 msgid "Font"
-msgstr "वर�ण�"
+msgstr "फन��"
 
-#: gtksourceview/gtksourceprintjob.c:305
+#: ../gtksourceview/gtksourceprintjob.c:306
 msgid "GnomeFont name to use for the document text (deprecated)"
-msgstr "�ा��ात पाठ प�रय���� �� ला�� �िन�म वरनाम�ण "
+msgstr "�ा��ात पाठ प�रय���ा ला�ि �िन�म फन��नाम (नर��ा����)"
 
-#: gtksourceview/gtksourceprintjob.c:312
+#: ../gtksourceview/gtksourceprintjob.c:313
 msgid "Font Description"
-msgstr "वर�ण बर�णन�"
+msgstr "फन�� वर�णन"
 
-#: gtksourceview/gtksourceprintjob.c:313
+#: ../gtksourceview/gtksourceprintjob.c:314
 msgid "Font to use for the document text (e.g. \"Monospace 10\")"
-msgstr "�ा��ात पाठ�� ला�� फन�� (�दाहरण॰ \"म�न�स�प�स १०\")"
+msgstr "�ा��ात पाठ�ा ला�ि प�रय�� �र�न फन�� (�दाहरण \"म�न�स�प�स १०\")"
 
-#: gtksourceview/gtksourceprintjob.c:320 gtksourceview/gtksourceprintjob.c:328
+#: ../gtksourceview/gtksourceprintjob.c:321
+#: ../gtksourceview/gtksourceprintjob.c:329
 msgid "Numbers Font"
-msgstr "स���या वर�ण"
+msgstr "स����या�� फन��"
 
-#: gtksourceview/gtksourceprintjob.c:321
+#: ../gtksourceview/gtksourceprintjob.c:322
 msgid "GnomeFont name to use for the line numbers (deprecated)"
-msgstr "ला�न ���हर� प�रय���� ला�� �िन�म वर�ण नाम "
+msgstr "ला�न ���हर� प�रय���ा ला�ि �िन�म फन�� नाम (नर��ा����)"
 
-#: gtksourceview/gtksourceprintjob.c:329
+#: ../gtksourceview/gtksourceprintjob.c:330
 msgid "Font description to use for the line numbers"
-msgstr "ला�न ���हर� प�रय���� ला�� वर�ण बर�णन"
+msgstr "ला�न ���हर� प�रय���ा ला�ि फन�� बर�णन"
 
-#: gtksourceview/gtksourceprintjob.c:336
+#: ../gtksourceview/gtksourceprintjob.c:337
 msgid "Print Line Numbers"
-msgstr "प���ति स���या �ाप�न�ह�ला ।"
+msgstr "ला�न स����याहर� म�द�रण �र�न�ह�स�"
 
-#: gtksourceview/gtksourceprintjob.c:337
+#: ../gtksourceview/gtksourceprintjob.c:338
 msgid "Interval of printed line numbers (0 means no numbers)"
-msgstr "�ापि��ा ला�न ���हर��� �न�तर (० भन�नाल� ��� ह��न)"
+msgstr "म�द�रण भ��ा ला�न ���हर��� �न�तर (० भन�नाल� ��� ह��न)"
 
-#: gtksourceview/gtksourceprintjob.c:344
+#: ../gtksourceview/gtksourceprintjob.c:345
 msgid "Print Header"
-msgstr "�ाप�न� शिर�ष�"
+msgstr "ह�डर म�द�रण �र�न�ह�स�"
 
-#: gtksourceview/gtksourceprintjob.c:345
+#: ../gtksourceview/gtksourceprintjob.c:346
 msgid "Whether to print a header in each page"
-msgstr "हर�� पन�ना�� श�र�ष� �ाप�न� �ि"
+msgstr "हर�� पाना�� ह�डर म�द�रण �र�न� �ि"
 
-#: gtksourceview/gtksourceprintjob.c:352
+#: ../gtksourceview/gtksourceprintjob.c:353
 msgid "Print Footer"
-msgstr "फ��र �ाप�न�ह�ला"
+msgstr "फ��र म�द�रण �र�न�ह�स�"
 
-#: gtksourceview/gtksourceprintjob.c:353
+#: ../gtksourceview/gtksourceprintjob.c:354
 msgid "Whether to print a footer in each page"
-msgstr "हर�� पन�ना�� फ��र �ाप�न� �ि"
+msgstr "हर�� प�ष�ठ�� फ��र म�द�रण �र�न� �ि"
 
-#: gtksourceview/gtksourceprintjob.c:360
+#: ../gtksourceview/gtksourceprintjob.c:361
 msgid "Header and Footer Font"
-msgstr "शिर�ष� र फ��र वर�ण"
+msgstr "ह�डर र फ��र फन��"
 
-#: gtksourceview/gtksourceprintjob.c:361
+#: ../gtksourceview/gtksourceprintjob.c:362
 msgid "GnomeFont name to use for the header and footer (deprecated)"
-msgstr "श�र�ष� र फ��र प�रय���� ला�� �िन�म वर�ण नाम"
+msgstr "ह�डर र फ��र प�रय���ा ला�ि �िन�म फन�� नाम (नर��ा����)"
 
-#: gtksourceview/gtksourceprintjob.c:368
+#: ../gtksourceview/gtksourceprintjob.c:369
 msgid "Header and Footer Font Description"
-msgstr "श�र�ष� र फ��र वर�ण बर�णन"
+msgstr "ह�डर र फ��र फन�� वर�णन"
 
-#: gtksourceview/gtksourceprintjob.c:369
+#: ../gtksourceview/gtksourceprintjob.c:370
 msgid "Font to use for headers and footers (e.g. \"Monospace 10\")"
-msgstr "श�र�ष� र फ��र प�रय���� ला�� वर�ण (�दाहरण॰ \"म�न�स�प�स १०\")"
+msgstr "ह�डर र फ��र प�रय���ा ला�ि फन�� (�दाहरण॰ \"म�न�स�प�स १०\")"
 
-#: gtksourceview/gtksourcestylescheme.c:262
+#: ../gtksourceview/gtksourcestylescheme.c:264
 msgid "Base-N Integer"
 msgstr "�न�ि�र �धार-�न"
 
-#: gtksourceview/gtksourcestylescheme.c:267
+#: ../gtksourceview/gtksourcestylescheme.c:269
 msgid "Character"
-msgstr "स�वन�"
+msgstr "��यार����र"
 
-#: gtksourceview/gtksourcestylescheme.c:272
-#: gtksourceview/language-specs/latex.lang.h:1
-#: gtksourceview/language-specs/po.lang.h:1
+#: ../gtksourceview/gtksourcestylescheme.c:274
+#: ../gtksourceview/language-specs/latex.lang.h:2
+#: ../gtksourceview/language-specs/po.lang.h:1
 msgid "Comment"
-msgstr "�िप�पणि�"
+msgstr "�िप�पण�"
 
 #. $this = (datatype)
-#: gtksourceview/gtksourcestylescheme.c:277
-#: gtksourceview/language-specs/php.lang.h:14
+#: ../gtksourceview/gtksourcestylescheme.c:279
+#: ../gtksourceview/language-specs/php.lang.h:14
 msgid "Data Type"
-msgstr "डा�ा प�र�ार"
+msgstr "ड��ा प�र�ार"
 
 #.
 #. CSS functions, such as rgb(), clip(), or lang().
 #.
-#: gtksourceview/gtksourcestylescheme.c:282
-#: gtksourceview/language-specs/ada.lang.h:3
-#: gtksourceview/language-specs/css.lang.h:17
+#: ../gtksourceview/gtksourcestylescheme.c:284
+#: ../gtksourceview/language-specs/ada.lang.h:3
+#: ../gtksourceview/language-specs/css.lang.h:18
+#: ../gtksourceview/language-specs/octave.lang.h:4
+#: ../gtksourceview/language-specs/python.lang.h:5
+#: ../gtksourceview/language-specs/scheme.lang.h:2
+#: ../gtksourceview/language-specs/sh.lang.h:4
 msgid "Function"
-msgstr "�ार�य"
+msgstr "प�र�ार�य"
 
-#: gtksourceview/gtksourcestylescheme.c:287
-#: gtksourceview/language-specs/c.lang.h:6
-#: gtksourceview/language-specs/cpp.lang.h:6
-#: gtksourceview/language-specs/fortran.lang.h:1
-#: gtksourceview/language-specs/python.lang.h:2
-#: gtksourceview/language-specs/haskell.lang.h:3
-#: gtksourceview/language-specs/nemerle.lang.h:6
+#: ../gtksourceview/gtksourcestylescheme.c:289
+#: ../gtksourceview/language-specs/c.lang.h:6
+#: ../gtksourceview/language-specs/cpp.lang.h:6
+#: ../gtksourceview/language-specs/fortran.lang.h:1
+#: ../gtksourceview/language-specs/haskell.lang.h:3
+#: ../gtksourceview/language-specs/nemerle.lang.h:6
+#: ../gtksourceview/language-specs/octave.lang.h:1
+#: ../gtksourceview/language-specs/python.lang.h:2
 msgid "Decimal"
-msgstr "विन�द��"
+msgstr "दशमलव"
 
-#: gtksourceview/gtksourcestylescheme.c:292
+#: ../gtksourceview/gtksourcestylescheme.c:294
 msgid "Floating Point"
-msgstr "�त�रि��� बिन�द�"
+msgstr "�त�प�लावन बिन�द�"
 
-#: gtksourceview/gtksourcestylescheme.c:297
-#: gtksourceview/language-specs/latex.lang.h:3
-#: gtksourceview/language-specs/po.lang.h:3
-#: gtksourceview/language-specs/texinfo.lang.h:8
-#: gtksourceview/language-specs/vhdl.lang.h:2
-#: gtksourceview/language-specs/R.lang.h:6
-#: gtksourceview/language-specs/gtkrc.lang.h:6
+#. We cannot match \b at the end of a keyword automatically
+#. because it fails for let* etc. So we need to manually add it to the
+#. other keywords and match ([ \t]|$) for the one ending with a
+#. special character. Unfortnately this also means that if the highlight
+#. style for keywords sets the background color, for let* etc also the
+#. trailing space will be highlighted.
+#: ../gtksourceview/gtksourcestylescheme.c:299
+#: ../gtksourceview/language-specs/ada.lang.h:4
+#: ../gtksourceview/language-specs/gtkrc.lang.h:6
+#: ../gtksourceview/language-specs/haskell.lang.h:9
+#: ../gtksourceview/language-specs/latex.lang.h:5
+#: ../gtksourceview/language-specs/octave.lang.h:6
+#: ../gtksourceview/language-specs/po.lang.h:3
+#: ../gtksourceview/language-specs/python.lang.h:7
+#: ../gtksourceview/language-specs/R.lang.h:6
+#: ../gtksourceview/language-specs/scheme.lang.h:9
+#: ../gtksourceview/language-specs/tcl.lang.h:1
+#: ../gtksourceview/language-specs/texinfo.lang.h:8
+#: ../gtksourceview/language-specs/vhdl.lang.h:2
 msgid "Keyword"
-msgstr "��प�तशब�द"
+msgstr "������शब�द"
 
-#: gtksourceview/gtksourcestylescheme.c:302
+#: ../gtksourceview/gtksourcestylescheme.c:304
 msgid "Preprocessor"
-msgstr "पहिल�प�र��रिया �ला�न�"
+msgstr "प�र�व प�र��रिया�र�ता"
 
-#: gtksourceview/gtksourcestylescheme.c:307
-#: gtksourceview/language-specs/ada.lang.h:9
-#: gtksourceview/language-specs/c.lang.h:15
-#: gtksourceview/language-specs/cpp.lang.h:15
-#: gtksourceview/language-specs/csharp.lang.h:8
-#: gtksourceview/language-specs/css.lang.h:63
-#: gtksourceview/language-specs/html.lang.h:8
-#: gtksourceview/language-specs/fortran.lang.h:12
-#: gtksourceview/language-specs/idl.lang.h:9
-#: gtksourceview/language-specs/java.lang.h:11
-#: gtksourceview/language-specs/javascript.lang.h:33
-#: gtksourceview/language-specs/lua.lang.h:10
-#: gtksourceview/language-specs/pascal.lang.h:18
-#: gtksourceview/language-specs/perl.lang.h:8
-#: gtksourceview/language-specs/po.lang.h:6
-#: gtksourceview/language-specs/python.lang.h:14
-#: gtksourceview/language-specs/ruby.lang.h:18
-#: gtksourceview/language-specs/sh.lang.h:13
-#: gtksourceview/language-specs/xml.lang.h:7
-#: gtksourceview/language-specs/haskell.lang.h:15
-#: gtksourceview/language-specs/vbnet.lang.h:7
-#: gtksourceview/language-specs/nemerle.lang.h:15
-#: gtksourceview/language-specs/tcl.lang.h:4
-#: gtksourceview/language-specs/vhdl.lang.h:6
+#.
+#. <pattern-item _name = "Operator" style = "Operators">
+#. <regex>[:!#$%&amp;*+./&gt;=&lt;? \\^|~\-]+</regex>
+#. </pattern-item>
+#.
+#. <keyword-list _name="Keysymbol" style = "Keyword">
+#. <keyword>::</keyword>
+#. <keyword>-&gt;</keyword>
+#. <keyword>&lt;-</keyword>
+#. <keyword>=&gt;</keyword>
+#. <keyword>=</keyword>
+#. <keyword>|</keyword>`
+#. <keyword>\</keyword>
+#. <keyword>@</keyword>
+#. <keyword>~</keyword>
+#. </keyword-list>
+#.
+#: ../gtksourceview/gtksourcestylescheme.c:309
+#: ../gtksourceview/language-specs/ada.lang.h:9
+#: ../gtksourceview/language-specs/c.lang.h:15
+#: ../gtksourceview/language-specs/cpp.lang.h:15
+#: ../gtksourceview/language-specs/csharp.lang.h:9
+#: ../gtksourceview/language-specs/css.lang.h:58
+#: ../gtksourceview/language-specs/html.lang.h:8
+#: ../gtksourceview/language-specs/fortran.lang.h:13
+#: ../gtksourceview/language-specs/haskell.lang.h:31
+#: ../gtksourceview/language-specs/idl.lang.h:9
+#: ../gtksourceview/language-specs/java.lang.h:11
+#: ../gtksourceview/language-specs/javascript.lang.h:23
+#: ../gtksourceview/language-specs/lua.lang.h:10
+#: ../gtksourceview/language-specs/makefile.lang.h:8
+#: ../gtksourceview/language-specs/nemerle.lang.h:15
+#: ../gtksourceview/language-specs/pascal.lang.h:18
+#: ../gtksourceview/language-specs/perl.lang.h:8
+#: ../gtksourceview/language-specs/po.lang.h:6
+#: ../gtksourceview/language-specs/scheme.lang.h:13
+#: ../gtksourceview/language-specs/sh.lang.h:13
+#: ../gtksourceview/language-specs/tcl.lang.h:4
+#: ../gtksourceview/language-specs/vbnet.lang.h:11
+#: ../gtksourceview/language-specs/vhdl.lang.h:6
+#: ../gtksourceview/language-specs/xml.lang.h:7
 msgid "String"
-msgstr "स���रि���"
+msgstr "स���रि�"
 
-#: gtksourceview/gtksourcestylescheme.c:312
+#: ../gtksourceview/gtksourcestylescheme.c:314
 msgid "Specials"
-msgstr "�साधारणहर�"
+msgstr "विश�षहर�"
 
-#.
-#. Proposed language specification for CSS (Cascading Style Sheet) files.
-#.
-#. Reference used:
-#. http://www.w3.org/TR/CSS2/
-#.
-#. Tested with:
-#. http://www.simplebits.com/css/simple.css
-#.
-#. Submitted by Scott Martin (scott coffeeblack org)
-#.
-#. FIXME: find the correct mimetype
-#: gtksourceview/gtksourcestylescheme.c:319
-#: gtksourceview/language-specs/css.lang.h:46
-#: gtksourceview/language-specs/desktop.lang.h:10
-#: gtksourceview/language-specs/diff.lang.h:7
-#: gtksourceview/language-specs/ini.lang.h:10
-#: gtksourceview/language-specs/msil.lang.h:2
-#: gtksourceview/language-specs/po.lang.h:5
-#: gtksourceview/language-specs/gtkrc.lang.h:9
+#: ../gtksourceview/gtksourcestylescheme.c:321
+#: ../gtksourceview/language-specs/changelog.lang.h:6
+#: ../gtksourceview/language-specs/css.lang.h:36
+#: ../gtksourceview/language-specs/desktop.lang.h:10
+#: ../gtksourceview/language-specs/diff.lang.h:7
+#: ../gtksourceview/language-specs/gtkrc.lang.h:9
+#: ../gtksourceview/language-specs/ini.lang.h:10
+#: ../gtksourceview/language-specs/msil.lang.h:2
+#: ../gtksourceview/language-specs/po.lang.h:5
 msgid "Others"
-msgstr "�न�य�"
+msgstr "�न�य"
 
-#: gtksourceview/gtksourcestylescheme.c:324
+#: ../gtksourceview/gtksourcestylescheme.c:326
 msgid "Others 2"
 msgstr "�न�य २"
 
-#: gtksourceview/gtksourcestylescheme.c:329
+#: ../gtksourceview/gtksourcestylescheme.c:331
 msgid "Others 3"
 msgstr "�न�य ३"
 
-#: gtksourceview/gtksourcestylescheme.c:366
+#: ../gtksourceview/gtksourcestylescheme.c:368
 msgid "Default"
-msgstr "निर�दिश���"
+msgstr "प�र�वनिर�धारित"
 
-#: gtksourceview/gtksourcetag.c:108
+#: ../gtksourceview/gtksourcetag.c:109
 msgid "Tag ID"
-msgstr "मार��ा/�ाप ��डि�"
+msgstr "��या� �� डि"
 
-#: gtksourceview/gtksourcetag.c:109
+#: ../gtksourceview/gtksourcetag.c:110
 msgid "ID used to refer to the source tag"
-msgstr " मार��ा स�र�तमा सर�न�� ला�� ��डि प�रय�� "
+msgstr "��या� स�र�तमा सार�न�ा ला�ि �� डि प�रय��"
 
-#: gtksourceview/gtksourcetag.c:116
+#: ../gtksourceview/gtksourcetag.c:117
 msgid "Tag style"
-msgstr "मार��ा/�ाप श�ल�"
+msgstr "��या� श�ल�"
 
-#: gtksourceview/gtksourcetag.c:117
-msgid "The style associated to the source tag"
-msgstr "श�ल� मार��ा स�र�तस�� � मिल�� ।"
+#: ../gtksourceview/gtksourcetag.c:118
+msgid "The style associated with the source tag"
+msgstr "��या� स�र�तस�� सम�बन�धित श�ल�"
 
-#: gtksourceview/gtksourceview.c:206
+#: ../gtksourceview/gtksourceview.c:217
 msgid "Show Line Numbers"
-msgstr "र��ा स���या द��ा�न�ह�ला"
+msgstr "र��ा स����याहर� द��ा�न�ह�स�"
 
-#: gtksourceview/gtksourceview.c:207
+#: ../gtksourceview/gtksourceview.c:218
 msgid "Whether to display line numbers"
-msgstr "र��ा स���या द��ा�न� ह� �ि"
+msgstr "र��ा स����या प�रदर�शन �र�न� �ि"
 
-#: gtksourceview/gtksourceview.c:214
+#: ../gtksourceview/gtksourceview.c:225
 msgid "Show Line Markers"
-msgstr "र��ा �िन�ह ल�ा�न� द��ा�न�ह�ला ।"
+msgstr "र��ा मार��र द��ा�न�ह�स�"
 
-#: gtksourceview/gtksourceview.c:215
+#: ../gtksourceview/gtksourceview.c:226
 msgid "Whether to display line marker pixbufs"
-msgstr "र��ा �िन�ह ल�ा�न� pixbufs द��ा�न� ह� �ि"
+msgstr "पि��सबफ�स र��ा मार��र प�रदर�शन �र�न� ह� �ि"
 
-#: gtksourceview/gtksourceview.c:232
+#: ../gtksourceview/gtksourceview.c:243
 msgid "Auto Indentation"
-msgstr "स�वत: �न�द�न���सन�"
+msgstr "स�वत: �न�ड�न���सन"
 
-#: gtksourceview/gtksourceview.c:233
+#: ../gtksourceview/gtksourceview.c:244
 msgid "Whether to enable auto indentation"
-msgstr "स�वत: �न�द�न���सन� स��रिय पार�न� �ि"
+msgstr "स�वत: �न�ड�न���सन स��षम पार�न� �ि"
 
-#: gtksourceview/gtksourceview.c:239
+#: ../gtksourceview/gtksourceview.c:250
 msgid "Insert Spaces Instead of Tabs"
-msgstr "��याबहर��� सा�� �ाल�हर� ��ड�न�ह�ला ।"
+msgstr "��याबहर��� सा�� �ाल� ठा��हर� ��सा�न�ह�स�"
 
-#: gtksourceview/gtksourceview.c:240
+#: ../gtksourceview/gtksourceview.c:251
 msgid "Whether to insert spaces instead of tabs"
-msgstr "��याबहर��� सा�� �ाल�हर� ��ड�न� �ि"
+msgstr "��याबहर��� सा�� �ाल� ठा��हर� ��सा�न� �ि"
 
-#: gtksourceview/gtksourceview.c:247
+#: ../gtksourceview/gtksourceview.c:258
 msgid "Show Right Margin"
-msgstr "दाहिन� मार��िन द��ा�न�ह�ला ।"
+msgstr "दाया� स�मान�त द��ा�न�ह�स�"
 
-#: gtksourceview/gtksourceview.c:248
+#: ../gtksourceview/gtksourceview.c:259
 msgid "Whether to display the right margin"
-msgstr "दाहिन� मार��िन द��ा�न� ह� �ि"
+msgstr "दाया� स�मान�त प�रदर�शन �र�न� �ि"
 
-#: gtksourceview/gtksourceview.c:255
+#: ../gtksourceview/gtksourceview.c:266
 msgid "Margin position"
-msgstr "मार��िन �वस�था"
+msgstr "स�मान�त स�थिति"
 
-#: gtksourceview/gtksourceview.c:256
+#: ../gtksourceview/gtksourceview.c:267
 msgid "Position of the right margin"
-msgstr "दा�या मार��िन�� �वस�था "
+msgstr "दाया� स�मान�त�� स�थिति"
 
-#: gtksourceview/gtksourceview.c:265
+#: ../gtksourceview/gtksourceview.c:276
 msgid "Use smart home/end"
-msgstr "�ला� �र/�न�त प�रय�� �र�न�ह�ला ।"
+msgstr "स�मार�� स�र�/�न�त प�रय�� �र�न�ह�स�"
 
-#: gtksourceview/gtksourceview.c:266
+#: ../gtksourceview/gtksourceview.c:277
 msgid ""
-"HOME and END keys move to first/last characters on line first before going "
-"to the start/end of the line"
-msgstr "श�र�/�न�त �� ला�नमा �ान� भन�दा ��ाड� पहिल� �र र �न�त ��न��हर� पहिल�/�न�त वर�ण�� ला�नमा सार�न�ह�ला ।"
+"HOME and END keys move to first/last non whitespace characters on line "
+"before going to the start/end of the line"
+msgstr "ला�न�� स�र�/�न�त�य मा �ान� ��ि स�र� र �न�त ������हर� ला�नमा पहिल�/�न�तिम स�त� �ाल� स�थान ��यार����रहर�मा सर�द�"
 
-#: gtksourceview/gtksourceview.c:275
+#: ../gtksourceview/gtksourceview.c:286
 msgid "Highlight current line"
-msgstr "�ाल� र��ा हा�ला�� �र�न�ह�ला ।"
+msgstr "हाल�� र��ा हा�ला�� �र�न�ह�स�।"
 
-#: gtksourceview/gtksourceview.c:276
+#: ../gtksourceview/gtksourceview.c:287
 msgid "Whether to highlight the current line"
-msgstr "�ाल� र��ा हा�ला�� �र�न� �ि"
+msgstr "हाल�� र��ा हा�ला�� �र�न� �ि"
+
+#: ../gtksourceview/gtksourceview.c:303
+msgid "Margin Line Alpha"
+msgstr "स�मान�त ला�न �ल�फा"
+
+#: ../gtksourceview/gtksourceview.c:304
+msgid "Transparency of the margin line"
+msgstr "स�मान�त ला�न�� पार�दर�शिता"
+
+#: ../gtksourceview/gtksourceview.c:321
+msgid "Margin Line Color"
+msgstr "स�मान�त ला�न र�"
+
+#: ../gtksourceview/gtksourceview.c:322
+msgid "Color to use for the right margin line"
+msgstr "दाया� स�मान�त ला�न�� ला�ि प�रय�� �र�न र�"
+
+#: ../gtksourceview/gtksourceview.c:338
+msgid "Margin Overlay Toggle"
+msgstr "स�मान�त �परिशाय� ��ल"
+
+#: ../gtksourceview/gtksourceview.c:339
+msgid "Whether to draw the right margin overlay"
+msgstr "दाया� स�मान�त �परिशाय� ��र�न� �ि"
 
-#: gtksourceview/language-specs/ada.lang.h:1
+#: ../gtksourceview/gtksourceview.c:355
+msgid "Margin Overlay Alpha"
+msgstr "स�मान�त �परिशाय� �ल�फा"
+
+#: ../gtksourceview/gtksourceview.c:356
+msgid "Transparency of the margin overlay"
+msgstr "स�मान�त �परिशाय��� पार�दर�शिता"
+
+#: ../gtksourceview/gtksourceview.c:373
+msgid "Margin Overlay Color"
+msgstr "स�मान�त �परिशाय� र�"
+
+#: ../gtksourceview/gtksourceview.c:374
+msgid "Color to use for drawing the margin overlay"
+msgstr "स�मान�त �परिशाय� ��र�न�� ला�ि प�रय�� �र�न र�"
+
+#: ../gtksourceview/language-specs/ada.lang.h:1
 msgid "Ada"
-msgstr "�दा"
+msgstr "Ada"
 
-#: gtksourceview/language-specs/ada.lang.h:2
-#: gtksourceview/language-specs/c.lang.h:4
-#: gtksourceview/language-specs/cpp.lang.h:4
-#: gtksourceview/language-specs/haskell.lang.h:2
-#: gtksourceview/language-specs/nemerle.lang.h:3
-#: gtksourceview/language-specs/vhdl.lang.h:1
+#: ../gtksourceview/language-specs/ada.lang.h:2
+#: ../gtksourceview/language-specs/c.lang.h:4
+#: ../gtksourceview/language-specs/cpp.lang.h:4
+#: ../gtksourceview/language-specs/haskell.lang.h:2
+#: ../gtksourceview/language-specs/nemerle.lang.h:3
+#: ../gtksourceview/language-specs/vhdl.lang.h:1
 msgid "Character Constant"
-msgstr "स�वन स�थिर"
-
-#: gtksourceview/language-specs/ada.lang.h:4
-#: gtksourceview/language-specs/c.lang.h:10
-#: gtksourceview/language-specs/cpp.lang.h:10
-#: gtksourceview/language-specs/csharp.lang.h:3
-#: gtksourceview/language-specs/fortran.lang.h:7
-#: gtksourceview/language-specs/idl.lang.h:4
-#: gtksourceview/language-specs/javascript.lang.h:11
-#: gtksourceview/language-specs/lua.lang.h:3
-#: gtksourceview/language-specs/perl.lang.h:2
-#: gtksourceview/language-specs/python.lang.h:6
-#: gtksourceview/language-specs/ruby.lang.h:8
-#: gtksourceview/language-specs/verilog.lang.h:6
-#: gtksourceview/language-specs/haskell.lang.h:9
-#: gtksourceview/language-specs/vbnet.lang.h:1
-#: gtksourceview/language-specs/tcl.lang.h:1
-msgid "Keywords"
-msgstr "��प�तशब�दहर�"
+msgstr "��यार����र स�थिर"
 
-#: gtksourceview/language-specs/ada.lang.h:5
-#: gtksourceview/language-specs/c.lang.h:11
-#: gtksourceview/language-specs/cpp.lang.h:11
-#: gtksourceview/language-specs/csharp.lang.h:4
-#: gtksourceview/language-specs/css.lang.h:28
-#: gtksourceview/language-specs/desktop.lang.h:7
-#: gtksourceview/language-specs/diff.lang.h:5
-#: gtksourceview/language-specs/fortran.lang.h:8
-#: gtksourceview/language-specs/idl.lang.h:5
-#: gtksourceview/language-specs/ini.lang.h:8
-#: gtksourceview/language-specs/java.lang.h:5
-#: gtksourceview/language-specs/javascript.lang.h:12
-#: gtksourceview/language-specs/lua.lang.h:4
-#: gtksourceview/language-specs/pascal.lang.h:11
-#: gtksourceview/language-specs/perl.lang.h:3
-#: gtksourceview/language-specs/python.lang.h:7
-#: gtksourceview/language-specs/ruby.lang.h:9
-#: gtksourceview/language-specs/sh.lang.h:5
-#: gtksourceview/language-specs/sql.lang.h:11
-#: gtksourceview/language-specs/verilog.lang.h:7
-#: gtksourceview/language-specs/haskell.lang.h:10
-#: gtksourceview/language-specs/texinfo.lang.h:9
-#: gtksourceview/language-specs/vbnet.lang.h:2
-#: gtksourceview/language-specs/nemerle.lang.h:10
-#: gtksourceview/language-specs/tcl.lang.h:2
-#: gtksourceview/language-specs/vhdl.lang.h:3
-#: gtksourceview/language-specs/R.lang.h:7
-#: gtksourceview/language-specs/gtkrc.lang.h:7
+#. Note: contains an hack to avoid considering ^COMMON a comment
+#. <string _name = "String 2" style = "String" end-at-line-end = "TRUE">
+#. <start-regex>&apos;</start-regex>
+#. <end-regex>&apos;</end-regex>
+#. </string>
+#: ../gtksourceview/language-specs/ada.lang.h:5
+#: ../gtksourceview/language-specs/c.lang.h:11
+#: ../gtksourceview/language-specs/cpp.lang.h:11
+#: ../gtksourceview/language-specs/csharp.lang.h:4
+#: ../gtksourceview/language-specs/css.lang.h:29
+#: ../gtksourceview/language-specs/desktop.lang.h:7
+#: ../gtksourceview/language-specs/diff.lang.h:5
+#: ../gtksourceview/language-specs/fortran.lang.h:9
+#: ../gtksourceview/language-specs/gtkrc.lang.h:7
+#: ../gtksourceview/language-specs/haskell.lang.h:10
+#: ../gtksourceview/language-specs/idl.lang.h:5
+#: ../gtksourceview/language-specs/ini.lang.h:8
+#: ../gtksourceview/language-specs/java.lang.h:5
+#: ../gtksourceview/language-specs/javascript.lang.h:13
+#: ../gtksourceview/language-specs/lua.lang.h:4
+#: ../gtksourceview/language-specs/makefile.lang.h:4
+#: ../gtksourceview/language-specs/nemerle.lang.h:10
+#: ../gtksourceview/language-specs/octave.lang.h:7
+#: ../gtksourceview/language-specs/pascal.lang.h:11
+#: ../gtksourceview/language-specs/perl.lang.h:3
+#: ../gtksourceview/language-specs/python.lang.h:8
+#: ../gtksourceview/language-specs/R.lang.h:7
+#: ../gtksourceview/language-specs/ruby.lang.h:10
+#: ../gtksourceview/language-specs/scheme.lang.h:10
+#: ../gtksourceview/language-specs/sh.lang.h:5
+#: ../gtksourceview/language-specs/sql.lang.h:23
+#: ../gtksourceview/language-specs/tcl.lang.h:2
+#: ../gtksourceview/language-specs/texinfo.lang.h:9
+#: ../gtksourceview/language-specs/vbnet.lang.h:6
+#: ../gtksourceview/language-specs/verilog.lang.h:7
+#: ../gtksourceview/language-specs/vhdl.lang.h:3
 msgid "Line Comment"
-msgstr "र��ा �ल��ना"
+msgstr "र��ा �िप�पण�"
 
 #.
 #. For values like: z-index: 2;
 #. +/- before 0 is not allowed.
 #.
-#: gtksourceview/language-specs/ada.lang.h:6
-#: gtksourceview/language-specs/css.lang.h:33
-#: gtksourceview/language-specs/desktop.lang.h:9
-#: gtksourceview/language-specs/javascript.lang.h:15
-#: gtksourceview/language-specs/pascal.lang.h:14
-#: gtksourceview/language-specs/vhdl.lang.h:4
-#: gtksourceview/language-specs/gtkrc.lang.h:8
+#: ../gtksourceview/language-specs/ada.lang.h:6
+#: ../gtksourceview/language-specs/css.lang.h:34
+#: ../gtksourceview/language-specs/desktop.lang.h:9
+#: ../gtksourceview/language-specs/gtkrc.lang.h:8
+#: ../gtksourceview/language-specs/javascript.lang.h:16
+#: ../gtksourceview/language-specs/pascal.lang.h:14
+#: ../gtksourceview/language-specs/vhdl.lang.h:4
 msgid "Number"
-msgstr "���"
+msgstr "स����या"
 
-#: gtksourceview/language-specs/ada.lang.h:7
-msgid "Preprocessor Keywords"
-msgstr "पहिल�प�र��रिया �ला�न� ��प�तशब�दहर�"
-
-#: gtksourceview/language-specs/ada.lang.h:8
-#: gtksourceview/language-specs/c.lang.h:14
-#: gtksourceview/language-specs/cpp.lang.h:14
-#: gtksourceview/language-specs/csharp.lang.h:7
-#: gtksourceview/language-specs/fortran.lang.h:11
-#: gtksourceview/language-specs/idl.lang.h:8
-#: gtksourceview/language-specs/java.lang.h:10
-#: gtksourceview/language-specs/pascal.lang.h:17
-#: gtksourceview/language-specs/php.lang.h:23
-#: gtksourceview/language-specs/sql.lang.h:26
-#: gtksourceview/language-specs/verilog.lang.h:9
-#: gtksourceview/language-specs/haskell.lang.h:14
-#: gtksourceview/language-specs/vbnet.lang.h:6
-#: gtksourceview/language-specs/nemerle.lang.h:14
-#: gtksourceview/language-specs/vhdl.lang.h:5
+#: ../gtksourceview/language-specs/ada.lang.h:7
+msgid "Preprocessor Keyword"
+msgstr "प�र�व प�र��रिया�र�ता ������शब�द"
+
+#: ../gtksourceview/language-specs/ada.lang.h:8
+#: ../gtksourceview/language-specs/c.lang.h:14
+#: ../gtksourceview/language-specs/cpp.lang.h:14
+#: ../gtksourceview/language-specs/csharp.lang.h:8
+#: ../gtksourceview/language-specs/fortran.lang.h:12
+#: ../gtksourceview/language-specs/haskell.lang.h:13
+#: ../gtksourceview/language-specs/idl.lang.h:8
+#: ../gtksourceview/language-specs/java.lang.h:10
+#: ../gtksourceview/language-specs/makefile.lang.h:6
+#: ../gtksourceview/language-specs/nemerle.lang.h:14
+#: ../gtksourceview/language-specs/pascal.lang.h:17
+#: ../gtksourceview/language-specs/scheme.lang.h:12
+#: ../gtksourceview/language-specs/sql.lang.h:48
+#: ../gtksourceview/language-specs/vbnet.lang.h:10
+#: ../gtksourceview/language-specs/verilog.lang.h:9
+#: ../gtksourceview/language-specs/vhdl.lang.h:5
 msgid "Sources"
 msgstr "स�र�तहर�"
 
-#: gtksourceview/language-specs/ada.lang.h:10
+#: ../gtksourceview/language-specs/ada.lang.h:10
 msgid "True And False"
-msgstr "ठि� र ब�ठि�"
+msgstr "ठ�� र ब�ठ��"
 
-#: gtksourceview/language-specs/ada.lang.h:11
-#: gtksourceview/language-specs/c.lang.h:16
-#: gtksourceview/language-specs/cpp.lang.h:16
-#: gtksourceview/language-specs/fortran.lang.h:14
-#: gtksourceview/language-specs/idl.lang.h:10
-#: gtksourceview/language-specs/verilog.lang.h:10
-msgid "Types"
-msgstr "�िसिमहर�"
+#: ../gtksourceview/language-specs/ada.lang.h:11
+#: ../gtksourceview/language-specs/vhdl.lang.h:8
+msgid "Type"
+msgstr "प�र�ार"
 
-#: gtksourceview/language-specs/c.lang.h:1
-#: gtksourceview/language-specs/cpp.lang.h:1
+#: ../gtksourceview/language-specs/c.lang.h:1
+#: ../gtksourceview/language-specs/cpp.lang.h:1
 msgid "'#if 0' Comment"
-msgstr "'#यदि ०' �ल��ना"
+msgstr "'#यदि ०' �िप�पण�"
 
-#: gtksourceview/language-specs/c.lang.h:2
-#: gtksourceview/language-specs/cpp.lang.h:2
-#: gtksourceview/language-specs/csharp.lang.h:1
-#: gtksourceview/language-specs/css.lang.h:9
-#: gtksourceview/language-specs/html.lang.h:2
-#: gtksourceview/language-specs/idl.lang.h:1
-#: gtksourceview/language-specs/java.lang.h:1
-#: gtksourceview/language-specs/javascript.lang.h:2
-#: gtksourceview/language-specs/lua.lang.h:1
-#: gtksourceview/language-specs/sql.lang.h:5
-#: gtksourceview/language-specs/verilog.lang.h:2
-#: gtksourceview/language-specs/xml.lang.h:2
-#: gtksourceview/language-specs/haskell.lang.h:1
-#: gtksourceview/language-specs/texinfo.lang.h:1
-#: gtksourceview/language-specs/nemerle.lang.h:2
+#. Comments
+#: ../gtksourceview/language-specs/c.lang.h:2
+#: ../gtksourceview/language-specs/cpp.lang.h:2
+#: ../gtksourceview/language-specs/csharp.lang.h:1
+#: ../gtksourceview/language-specs/css.lang.h:9
+#: ../gtksourceview/language-specs/html.lang.h:2
+#: ../gtksourceview/language-specs/haskell.lang.h:1
+#: ../gtksourceview/language-specs/idl.lang.h:1
+#: ../gtksourceview/language-specs/java.lang.h:1
+#: ../gtksourceview/language-specs/javascript.lang.h:2
+#: ../gtksourceview/language-specs/lua.lang.h:1
+#: ../gtksourceview/language-specs/nemerle.lang.h:2
+#: ../gtksourceview/language-specs/sql.lang.h:9
+#: ../gtksourceview/language-specs/texinfo.lang.h:1
+#: ../gtksourceview/language-specs/verilog.lang.h:2
+#: ../gtksourceview/language-specs/xml.lang.h:2
 msgid "Block Comment"
-msgstr "बन�द �ल��ना"
+msgstr "�िप�पण� बन�द �र�न�ह�स�"
 
-#: gtksourceview/language-specs/c.lang.h:3
+#: ../gtksourceview/language-specs/c.lang.h:3
 msgid "C"
-msgstr "सि�"
+msgstr "C"
 
-#: gtksourceview/language-specs/c.lang.h:5
-#: gtksourceview/language-specs/cpp.lang.h:5
+#: ../gtksourceview/language-specs/c.lang.h:5
+#: ../gtksourceview/language-specs/cpp.lang.h:5
 msgid "Common Macro"
 msgstr "सा�ा म�या��र�"
 
-#: gtksourceview/language-specs/c.lang.h:7
-#: gtksourceview/language-specs/cpp.lang.h:7
-#: gtksourceview/language-specs/fortran.lang.h:2
-#: gtksourceview/language-specs/python.lang.h:3
-#: gtksourceview/language-specs/haskell.lang.h:4
-#: gtksourceview/language-specs/nemerle.lang.h:7
-#: gtksourceview/language-specs/R.lang.h:4
+#: ../gtksourceview/language-specs/c.lang.h:7
+#: ../gtksourceview/language-specs/cpp.lang.h:7
+#: ../gtksourceview/language-specs/fortran.lang.h:2
+#: ../gtksourceview/language-specs/haskell.lang.h:4
+#: ../gtksourceview/language-specs/nemerle.lang.h:7
+#: ../gtksourceview/language-specs/octave.lang.h:3
+#: ../gtksourceview/language-specs/python.lang.h:4
+#: ../gtksourceview/language-specs/R.lang.h:4
 msgid "Floating Point Number"
-msgstr "�त�रि��� बिन�द� ���"
+msgstr "�त�प�लवान बिन�द� स����या"
 
 #. FIXME WHY DOESN'T THIS WORK?
-#: gtksourceview/language-specs/c.lang.h:8
-#: gtksourceview/language-specs/cpp.lang.h:8
-#: gtksourceview/language-specs/fortran.lang.h:4
-#: gtksourceview/language-specs/pascal.lang.h:10
-#: gtksourceview/language-specs/python.lang.h:5
-#: gtksourceview/language-specs/haskell.lang.h:6
-#: gtksourceview/language-specs/nemerle.lang.h:8
+#: ../gtksourceview/language-specs/c.lang.h:8
+#: ../gtksourceview/language-specs/cpp.lang.h:8
+#: ../gtksourceview/language-specs/fortran.lang.h:4
+#: ../gtksourceview/language-specs/haskell.lang.h:6
+#: ../gtksourceview/language-specs/nemerle.lang.h:8
+#: ../gtksourceview/language-specs/octave.lang.h:5
+#: ../gtksourceview/language-specs/pascal.lang.h:10
+#: ../gtksourceview/language-specs/python.lang.h:6
 msgid "Hex Number"
-msgstr "ह���स स���या"
+msgstr "ह���स स����या"
 
-#: gtksourceview/language-specs/c.lang.h:9
-#: gtksourceview/language-specs/cpp.lang.h:9
-#: gtksourceview/language-specs/idl.lang.h:3
-#: gtksourceview/language-specs/haskell.lang.h:7
+#: ../gtksourceview/language-specs/c.lang.h:9
+#: ../gtksourceview/language-specs/cpp.lang.h:9
+#: ../gtksourceview/language-specs/haskell.lang.h:7
+#: ../gtksourceview/language-specs/idl.lang.h:3
 msgid "Include/Pragma"
-msgstr "रा�ि���/प�रा��मा"
+msgstr "सम�मिलित/प�रा��मा"
+
+#: ../gtksourceview/language-specs/c.lang.h:10
+#: ../gtksourceview/language-specs/cpp.lang.h:10
+#: ../gtksourceview/language-specs/csharp.lang.h:3
+#: ../gtksourceview/language-specs/fortran.lang.h:7
+#: ../gtksourceview/language-specs/idl.lang.h:4
+#: ../gtksourceview/language-specs/javascript.lang.h:12
+#: ../gtksourceview/language-specs/lua.lang.h:3
+#: ../gtksourceview/language-specs/perl.lang.h:2
+#: ../gtksourceview/language-specs/ruby.lang.h:9
+#: ../gtksourceview/language-specs/vbnet.lang.h:1
+#: ../gtksourceview/language-specs/verilog.lang.h:6
+msgid "Keywords"
+msgstr "������ शब�दहर�"
 
-#: gtksourceview/language-specs/c.lang.h:12
-#: gtksourceview/language-specs/cpp.lang.h:12
-#: gtksourceview/language-specs/fortran.lang.h:9
-#: gtksourceview/language-specs/python.lang.h:11
-#: gtksourceview/language-specs/verilog.lang.h:8
-#: gtksourceview/language-specs/haskell.lang.h:11
-#: gtksourceview/language-specs/nemerle.lang.h:12
+#: ../gtksourceview/language-specs/c.lang.h:12
+#: ../gtksourceview/language-specs/cpp.lang.h:12
+#: ../gtksourceview/language-specs/fortran.lang.h:10
+#: ../gtksourceview/language-specs/haskell.lang.h:11
+#: ../gtksourceview/language-specs/nemerle.lang.h:12
+#: ../gtksourceview/language-specs/octave.lang.h:10
+#: ../gtksourceview/language-specs/python.lang.h:12
+#: ../gtksourceview/language-specs/verilog.lang.h:8
 msgid "Octal Number"
-msgstr "व���ल स���या"
+msgstr "व���ल स����या"
 
-#: gtksourceview/language-specs/c.lang.h:13
-#: gtksourceview/language-specs/cpp.lang.h:13
-#: gtksourceview/language-specs/csharp.lang.h:5
-#: gtksourceview/language-specs/idl.lang.h:6
-#: gtksourceview/language-specs/haskell.lang.h:13
-#: gtksourceview/language-specs/vbnet.lang.h:4
+#: ../gtksourceview/language-specs/c.lang.h:13
+#: ../gtksourceview/language-specs/cpp.lang.h:13
+#: ../gtksourceview/language-specs/csharp.lang.h:6
+#: ../gtksourceview/language-specs/idl.lang.h:6
+#: ../gtksourceview/language-specs/vbnet.lang.h:8
 msgid "Preprocessor Definitions"
-msgstr "प�र�वप�र��रिया �ला�न� वर�णन"
+msgstr "प�र�वप�र��रिया �ला�न� परिभाषाहर�"
+
+#: ../gtksourceview/language-specs/c.lang.h:16
+#: ../gtksourceview/language-specs/cpp.lang.h:16
+#: ../gtksourceview/language-specs/fortran.lang.h:15
+#: ../gtksourceview/language-specs/idl.lang.h:10
+#: ../gtksourceview/language-specs/verilog.lang.h:10
+msgid "Types"
+msgstr "प�र�ारहर�"
 
-#: gtksourceview/language-specs/cpp.lang.h:3
+#: ../gtksourceview/language-specs/changelog.lang.h:1
+msgid "ChangeLog"
+msgstr "परिवर�तन ल�"
+
+#: ../gtksourceview/language-specs/changelog.lang.h:2
+msgid "Date"
+msgstr "मिति"
+
+#: ../gtksourceview/language-specs/changelog.lang.h:3
+msgid "Email"
+msgstr "�म�ल"
+
+#: ../gtksourceview/language-specs/changelog.lang.h:4
+msgid "File"
+msgstr "फा�ल"
+
+#: ../gtksourceview/language-specs/changelog.lang.h:5
+msgid "Marker"
+msgstr "मार��र"
+
+#: ../gtksourceview/language-specs/cpp.lang.h:3
 msgid "C++"
-msgstr "सि++"
+msgstr "C++"
 
-#: gtksourceview/language-specs/csharp.lang.h:2
+#: ../gtksourceview/language-specs/csharp.lang.h:2
 msgid "C#"
-msgstr "सि#"
+msgstr "C#"
+
+#: ../gtksourceview/language-specs/csharp.lang.h:5
+#: ../gtksourceview/language-specs/lua.lang.h:7
+#: ../gtksourceview/language-specs/sh.lang.h:6
+msgid "Multiline String"
+msgstr "बह��र��िय स���रि�"
 
-#: gtksourceview/language-specs/csharp.lang.h:6
-#: gtksourceview/language-specs/java.lang.h:9
-#: gtksourceview/language-specs/vbnet.lang.h:5
-#: gtksourceview/language-specs/nemerle.lang.h:13
+#: ../gtksourceview/language-specs/csharp.lang.h:7
+#: ../gtksourceview/language-specs/java.lang.h:9
+#: ../gtksourceview/language-specs/nemerle.lang.h:13
+#: ../gtksourceview/language-specs/vbnet.lang.h:9
 msgid "Primitives"
 msgstr "प�रान�"
 
-#: gtksourceview/language-specs/csharp.lang.h:9
-#: gtksourceview/language-specs/css.lang.h:64
-#: gtksourceview/language-specs/fortran.lang.h:13
-#: gtksourceview/language-specs/java.lang.h:12
-#: gtksourceview/language-specs/javascript.lang.h:34
-#: gtksourceview/language-specs/lua.lang.h:11
-#: gtksourceview/language-specs/python.lang.h:15
-#: gtksourceview/language-specs/ruby.lang.h:19
-#: gtksourceview/language-specs/sh.lang.h:14
-#: gtksourceview/language-specs/vbnet.lang.h:8
+#: ../gtksourceview/language-specs/csharp.lang.h:10
+#: ../gtksourceview/language-specs/css.lang.h:59
+#: ../gtksourceview/language-specs/fortran.lang.h:14
+#: ../gtksourceview/language-specs/java.lang.h:12
+#: ../gtksourceview/language-specs/javascript.lang.h:24
+#: ../gtksourceview/language-specs/lua.lang.h:11
+#: ../gtksourceview/language-specs/makefile.lang.h:9
+#: ../gtksourceview/language-specs/sh.lang.h:14
 msgid "String 2"
-msgstr "स���रि��� २"
+msgstr "स���रि� २"
 
 #.
 #. At rules must occur at the start of a line.
 #.
-#: gtksourceview/language-specs/css.lang.h:4
+#: ../gtksourceview/language-specs/css.lang.h:4
 msgid "At Rules"
 msgstr "नियममा"
 
 #.
 #. For CSS 2-style selectors: tag[attr="value"].
 #.
-#: gtksourceview/language-specs/css.lang.h:8
+#: ../gtksourceview/language-specs/css.lang.h:8
 msgid "Attribute Value Delimiters"
-msgstr "मान�� सिमा निर�धारण�� विश�षता "
+msgstr "विश�षता मान ड�लिमि�रहर�"
+
+#: ../gtksourceview/language-specs/css.lang.h:10
+msgid "CSS"
+msgstr "CSS"
 
 #.
 #. Value length specifier. Unless it is 0, must always be like: -1.2em.
 #.
-#: gtksourceview/language-specs/css.lang.h:13
+#: ../gtksourceview/language-specs/css.lang.h:14
 msgid "Dimension"
 msgstr "�याम"
 
@@ -621,43 +734,46 @@ msgstr "�याम"
 #. Hexadecimal method of specifying colors. Can either be 3 or 6 in
 #. length: #ffcc00 = #fc0.
 #.
-#: gtksourceview/language-specs/css.lang.h:22
+#: ../gtksourceview/language-specs/css.lang.h:23
 msgid "Hexadecimal Color"
-msgstr "ह���साड�सिमल र���"
+msgstr "ह���सादशमलव र�"
 
 #.
 #. Upgrades a rule set's importance when several rule sets conflict.
 #.
-#: gtksourceview/language-specs/css.lang.h:26
+#: ../gtksourceview/language-specs/css.lang.h:27
 msgid "Importance Modifier"
-msgstr "महत�वप�र�ण स�धार�"
+msgstr "महत�वप�र�ण परिमार���"
 
-#: gtksourceview/language-specs/css.lang.h:27
+#: ../gtksourceview/language-specs/css.lang.h:28
 msgid "Known Property Values"
-msgstr "सम�पत�ति�� मान थाहापा��"
+msgstr "���ात सम�पत�ति मानहर�"
 
-#: gtksourceview/language-specs/css.lang.h:34
-#: gtksourceview/language-specs/javascript.lang.h:19
-#: gtksourceview/language-specs/php.lang.h:19
-#: gtksourceview/language-specs/sh.lang.h:8
-#: gtksourceview/language-specs/haskell.lang.h:12
+#: ../gtksourceview/language-specs/css.lang.h:35
+#: ../gtksourceview/language-specs/javascript.lang.h:20
+#: ../gtksourceview/language-specs/php.lang.h:20
+#: ../gtksourceview/language-specs/sql.lang.h:34
 msgid "Operators"
-msgstr "सन��ालन�र�ता"
+msgstr "स���ालन�र�ता"
 
-#: gtksourceview/language-specs/css.lang.h:47
+#: ../gtksourceview/language-specs/css.lang.h:37
 msgid "Property Names"
 msgstr "सम�पत�ति�� नामहर�"
 
 #.
 #. Brackets define a declaration block, parentheses define functions.
 #.
-#: gtksourceview/language-specs/css.lang.h:51
-#: gtksourceview/language-specs/javascript.lang.h:20
-#: gtksourceview/language-specs/sh.lang.h:9
+#: ../gtksourceview/language-specs/css.lang.h:41
+#: ../gtksourceview/language-specs/javascript.lang.h:21
 msgid "Punctuators"
 msgstr "विभा�न"
 
-#: gtksourceview/language-specs/css.lang.h:52
+#.
+#. Used to combine selectors. Example syntax:
+#.
+#. body * div#ID.className > p + ul li:first-child
+#.
+#: ../gtksourceview/language-specs/css.lang.h:47
 msgid "Selector Grammar"
 msgstr "व�या�रण �यन�र�ता"
 
@@ -665,828 +781,922 @@ msgstr "वà¥?याà¤?रण à¤?यनà
 #. Pseudo-class rules. Good to have syntax highlighting for these
 #. for mistypings.
 #.
-#: gtksourceview/language-specs/css.lang.h:57
+#: ../gtksourceview/language-specs/css.lang.h:52
 msgid "Selector Pseudo Classes"
-msgstr "Pseudo ���षाहर� �यन�र�न�"
+msgstr "Pseudo वर��हर� �यन�र�ता"
 
 #.
 #. Pseudo-element rules. Good to have syntax highlighting for these
 #. for mistypings.
 #.
-#: gtksourceview/language-specs/css.lang.h:62
+#: ../gtksourceview/language-specs/css.lang.h:57
 msgid "Selector Pseudo Elements"
-msgstr "Pseudo तत�वहर� �यन�र�न�"
+msgstr "Pseudo तत�वहर� �यन�र�ता"
 
 #.
 #. Escaped unicode characters can contain either 6 hexadecimal characters
 #. or 1-5 hex characters followed by one whitespace character.
 #.
-#: gtksourceview/language-specs/css.lang.h:69
+#: ../gtksourceview/language-specs/css.lang.h:64
 msgid "Unicode Character Reference"
-msgstr "य�नि��ड स�वन सन�दर�भ�"
+msgstr "य�नि��ड ��यार����र सन�दर�भ"
 
 #.
 #. Unicode range values.
 #.
-#: gtksourceview/language-specs/css.lang.h:73
+#: ../gtksourceview/language-specs/css.lang.h:68
 msgid "Unicode Range"
 msgstr "य�नि��ड दायरा"
 
-#: gtksourceview/language-specs/desktop.lang.h:1
+#: ../gtksourceview/language-specs/desktop.lang.h:1
 msgid ".desktop"
-msgstr "ड���स�प"
+msgstr ".ड�स���प"
 
-#: gtksourceview/language-specs/desktop.lang.h:2
-#: gtksourceview/language-specs/ini.lang.h:2
-#: gtksourceview/language-specs/gtkrc.lang.h:1
+#: ../gtksourceview/language-specs/desktop.lang.h:2
+#: ../gtksourceview/language-specs/gtkrc.lang.h:1
+#: ../gtksourceview/language-specs/ini.lang.h:2
+#: ../gtksourceview/language-specs/scheme.lang.h:1
 msgid "Boolean Value"
-msgstr "ब�ल�न मान�"
+msgstr "ब�लियन मान"
 
-#: gtksourceview/language-specs/desktop.lang.h:3
+#: ../gtksourceview/language-specs/desktop.lang.h:3
 msgid "Encoding"
-msgstr "स���तन"
+msgstr "स����तन"
 
-#: gtksourceview/language-specs/desktop.lang.h:4
+#: ../gtksourceview/language-specs/desktop.lang.h:4
 msgid "Exec Parameter"
-msgstr "Exec परामिति"
+msgstr "परामिति �ार�यन�वयन �र�न�ह�स�"
 
-#: gtksourceview/language-specs/desktop.lang.h:5
-#: gtksourceview/language-specs/ini.lang.h:5
+#: ../gtksourceview/language-specs/desktop.lang.h:5
+#: ../gtksourceview/language-specs/ini.lang.h:5
 msgid "Group"
-msgstr "सम�ह�"
+msgstr "सम�ह"
 
-#: gtksourceview/language-specs/desktop.lang.h:8
-#: gtksourceview/language-specs/ini.lang.h:9
+#: ../gtksourceview/language-specs/desktop.lang.h:8
+#: ../gtksourceview/language-specs/ini.lang.h:9
 msgid "Non Standard Key"
-msgstr "�����स�तरिय ��न��"
+msgstr "मान� नभ��� ������"
 
-#: gtksourceview/language-specs/desktop.lang.h:11
+#: ../gtksourceview/language-specs/desktop.lang.h:11
 msgid "Standard Key"
-msgstr "����स�तरिय ��न��"
+msgstr "मान� ������"
 
-#: gtksourceview/language-specs/diff.lang.h:1
+#: ../gtksourceview/language-specs/diff.lang.h:1
 msgid "Added line"
-msgstr "थपि��� र�ा"
+msgstr "थपि��� र��ा"
 
-#: gtksourceview/language-specs/diff.lang.h:2
+#: ../gtksourceview/language-specs/diff.lang.h:2
 msgid "Changed line"
-msgstr "बदलि��� र��ा"
+msgstr "परिवर�तित र��ा"
 
-#: gtksourceview/language-specs/diff.lang.h:3
+#: ../gtksourceview/language-specs/diff.lang.h:3
 msgid "Diff"
 msgstr "फर�"
 
-#: gtksourceview/language-specs/diff.lang.h:4
+#: ../gtksourceview/language-specs/diff.lang.h:4
 msgid "Diff file"
 msgstr "फर� फा�ल"
 
-#: gtksourceview/language-specs/diff.lang.h:6
-#: gtksourceview/language-specs/po.lang.h:4
+#: ../gtksourceview/language-specs/diff.lang.h:6
+#: ../gtksourceview/language-specs/po.lang.h:4
 msgid "Location"
-msgstr "स�थान�"
+msgstr "स�थान"
 
-#: gtksourceview/language-specs/diff.lang.h:8
+#: ../gtksourceview/language-specs/diff.lang.h:8
 msgid "Removed line"
-msgstr "र��ा म��ा�न�"
+msgstr "ह�ा���� र��ा"
 
-#: gtksourceview/language-specs/diff.lang.h:9
+#: ../gtksourceview/language-specs/diff.lang.h:9
 msgid "Special case"
-msgstr "विष�श ��स"
+msgstr "विश�ष ��स"
 
-#: gtksourceview/language-specs/html.lang.h:1
-#: gtksourceview/language-specs/xml.lang.h:1
-msgid "Attributes"
-msgstr "बिष�षताहर�"
+#: ../gtksourceview/language-specs/html.lang.h:1
+#: ../gtksourceview/language-specs/xml.lang.h:1
+msgid "Attribute"
+msgstr "विश�षता"
 
-#: gtksourceview/language-specs/html.lang.h:3
-#: gtksourceview/language-specs/xml.lang.h:3
+#: ../gtksourceview/language-specs/html.lang.h:3
+#: ../gtksourceview/language-specs/xml.lang.h:3
 msgid "Closing Bracket"
-msgstr "बन�द ��ष�ठ"
+msgstr "बन�द ��ष�ठ�"
 
-#: gtksourceview/language-specs/html.lang.h:4
+#: ../gtksourceview/language-specs/html.lang.h:4
 msgid "DTD"
-msgstr "डि�िडि"
+msgstr "DTD"
 
-#: gtksourceview/language-specs/html.lang.h:5
-#: gtksourceview/language-specs/xml.lang.h:4
+#: ../gtksourceview/language-specs/html.lang.h:5
+#: ../gtksourceview/language-specs/xml.lang.h:4
 msgid "Entity"
 msgstr "�स�तित�व"
 
-#: gtksourceview/language-specs/html.lang.h:6
+#: ../gtksourceview/language-specs/html.lang.h:6
 msgid "HTML"
-msgstr "���ि�म�ल"
+msgstr "HTML"
 
-#: gtksourceview/language-specs/html.lang.h:7
-#: gtksourceview/language-specs/latex.lang.h:5
-#: gtksourceview/language-specs/xml.lang.h:6
-#: gtksourceview/language-specs/texinfo.lang.h:12
+#: ../gtksourceview/language-specs/html.lang.h:7
+#: ../gtksourceview/language-specs/latex.lang.h:7
+#: ../gtksourceview/language-specs/texinfo.lang.h:12
+#: ../gtksourceview/language-specs/xml.lang.h:6
 msgid "Markup"
-msgstr "मार���प�"
+msgstr "मार���प"
 
-#: gtksourceview/language-specs/html.lang.h:9
-msgid "Tags"
-msgstr "��या��"
+#: ../gtksourceview/language-specs/html.lang.h:9
+#: ../gtksourceview/language-specs/xml.lang.h:8
+msgid "Tag"
+msgstr "��या�"
 
-#: gtksourceview/language-specs/fortran.lang.h:3
+#: ../gtksourceview/language-specs/fortran.lang.h:3
 msgid "Fortran 95"
-msgstr "Fortran ९५"
+msgstr "फर��रान ९५"
 
-#: gtksourceview/language-specs/fortran.lang.h:5
+#: ../gtksourceview/language-specs/fortran.lang.h:5
 msgid "Input/Output"
-msgstr "निव�श/प�रतिफल"
+msgstr "��त/निर��त"
 
-#: gtksourceview/language-specs/fortran.lang.h:6
+#: ../gtksourceview/language-specs/fortran.lang.h:6
 msgid "Intrinsics"
 msgstr "�न�तरि�"
 
-#: gtksourceview/language-specs/fortran.lang.h:10
+#: ../gtksourceview/language-specs/fortran.lang.h:11
 msgid "Read/Write"
-msgstr "पढ/ल��"
+msgstr "पढ�न�ह�स�/ल���न�ह�स�"
+
+#. "duble-quoted strings"
+#: ../gtksourceview/language-specs/gtkrc.lang.h:2
+#: ../gtksourceview/language-specs/ini.lang.h:4
+#: ../gtksourceview/language-specs/octave.lang.h:2
+#: ../gtksourceview/language-specs/php.lang.h:16
+#: ../gtksourceview/language-specs/python.lang.h:3
+#: ../gtksourceview/language-specs/R.lang.h:3
+#: ../gtksourceview/language-specs/ruby.lang.h:6
+msgid "Double Quoted String"
+msgstr "डबल �द�वरण �रि��� स���रि�"
+
+#: ../gtksourceview/language-specs/gtkrc.lang.h:3
+msgid "GtkRC"
+msgstr "GtkRC"
+
+#: ../gtksourceview/language-specs/gtkrc.lang.h:4
+msgid "Include Directive"
+msgstr "डा�र����िभ सम�मिलित �र�न�ह�स�"
+
+#: ../gtksourceview/language-specs/gtkrc.lang.h:5
+#: ../gtksourceview/language-specs/haskell.lang.h:8
+msgid "Keysymbol"
+msgstr "������ प�रति�"
+
+#. 'single-quoted strings'
+#: ../gtksourceview/language-specs/gtkrc.lang.h:10
+#: ../gtksourceview/language-specs/ini.lang.h:11
+#: ../gtksourceview/language-specs/octave.lang.h:14
+#: ../gtksourceview/language-specs/php.lang.h:24
+#: ../gtksourceview/language-specs/python.lang.h:15
+#: ../gtksourceview/language-specs/R.lang.h:11
+#: ../gtksourceview/language-specs/ruby.lang.h:17
+msgid "Single Quoted String"
+msgstr "��ल �द�वरण �रि��� स���रि�"
 
-#: gtksourceview/language-specs/idl.lang.h:2
+#: ../gtksourceview/language-specs/gtkrc.lang.h:11
+msgid "State"
+msgstr "स�थिति"
+
+#. $variable, $$dynamic-variable and even $$$more
+#: ../gtksourceview/language-specs/gtkrc.lang.h:12
+#: ../gtksourceview/language-specs/ini.lang.h:12
+#: ../gtksourceview/language-specs/php.lang.h:26
+#: ../gtksourceview/language-specs/tcl.lang.h:7
+msgid "Variable"
+msgstr "�ल"
+
+#: ../gtksourceview/language-specs/haskell.lang.h:5
+msgid "Haskell"
+msgstr "हास��ल"
+
+#: ../gtksourceview/language-specs/haskell.lang.h:12
+msgid "Preprocessor Definition"
+msgstr "प�र�वप�र��रिया �ला�न� परिभाषा"
+
+#: ../gtksourceview/language-specs/haskell.lang.h:32
+msgid "Type or Constructor"
+msgstr "प�र�ार वा निर�माण�र�ता"
+
+#: ../gtksourceview/language-specs/idl.lang.h:2
 msgid "IDL"
-msgstr "��डि�ल"
+msgstr "IDL"
 
-#: gtksourceview/language-specs/idl.lang.h:7
+#: ../gtksourceview/language-specs/idl.lang.h:7
 msgid "Sectional"
 msgstr "विभा��य"
 
-#: gtksourceview/language-specs/ini.lang.h:1
+#: ../gtksourceview/language-specs/ini.lang.h:1
 msgid ".ini"
-msgstr " ���न��"
+msgstr ".ini"
 
-#: gtksourceview/language-specs/ini.lang.h:3
-#: gtksourceview/language-specs/verilog.lang.h:3
+#: ../gtksourceview/language-specs/ini.lang.h:3
+#: ../gtksourceview/language-specs/verilog.lang.h:3
 msgid "Decimal Number"
-msgstr "विन�द� स���या"
-
-#: gtksourceview/language-specs/ini.lang.h:4
-#: gtksourceview/language-specs/R.lang.h:3
-#: gtksourceview/language-specs/gtkrc.lang.h:2
-msgid "Double Quote String"
-msgstr "द�ह�र� �द�वरण ड�र�"
+msgstr "दशमलव स����या"
 
-#: gtksourceview/language-specs/ini.lang.h:6
+#: ../gtksourceview/language-specs/ini.lang.h:6
 msgid "Integer"
-msgstr "�न�ि�र�"
-
-#: gtksourceview/language-specs/ini.lang.h:11
-#: gtksourceview/language-specs/R.lang.h:11
-#: gtksourceview/language-specs/gtkrc.lang.h:10
-msgid "Single Quote String"
-msgstr "��ल �द�वरण ड�र�"
-
-#. $variable, $$dynamic-variable and even $$$more
-#: gtksourceview/language-specs/ini.lang.h:12
-#: gtksourceview/language-specs/php.lang.h:25
-#: gtksourceview/language-specs/gtkrc.lang.h:12
-msgid "Variable"
-msgstr "�ल"
+msgstr "�न��ि�र"
 
-#: gtksourceview/language-specs/java.lang.h:2
+#: ../gtksourceview/language-specs/java.lang.h:2
 msgid "Declarations"
-msgstr "प�र�ाशन"
+msgstr "��षणा"
 
-#: gtksourceview/language-specs/java.lang.h:3
+#: ../gtksourceview/language-specs/java.lang.h:3
 msgid "Flow"
-msgstr "ब��न�"
+msgstr "प�रवाह"
 
-#: gtksourceview/language-specs/java.lang.h:4
+#: ../gtksourceview/language-specs/java.lang.h:4
 msgid "Java"
 msgstr "�ाभा"
 
-#: gtksourceview/language-specs/java.lang.h:6
+#: ../gtksourceview/language-specs/java.lang.h:6
 msgid "Memory"
-msgstr "स�म�ति "
+msgstr "स�म�ति"
 
-#: gtksourceview/language-specs/java.lang.h:7
+#: ../gtksourceview/language-specs/java.lang.h:7
 msgid "Modifiers"
-msgstr "स�धार�हर�"
+msgstr "परिमार���हर�"
 
-#: gtksourceview/language-specs/java.lang.h:8
+#: ../gtksourceview/language-specs/java.lang.h:8
 msgid "Numeric"
-msgstr "स���यात�म��"
+msgstr "स����यात�म�"
 
-#: gtksourceview/language-specs/javascript.lang.h:1
-#: gtksourceview/language-specs/php.lang.h:1
+#: ../gtksourceview/language-specs/javascript.lang.h:1
+#: ../gtksourceview/language-specs/php.lang.h:1
 msgid "Array Operators"
-msgstr "�र� स��ालन�र�ताहर�"
+msgstr "�र� स���ालन�र�ताहर�"
 
-#: gtksourceview/language-specs/javascript.lang.h:3
+#: ../gtksourceview/language-specs/javascript.lang.h:3
 msgid "Constructors"
 msgstr "निर�माण�र�ताहर�"
 
-#: gtksourceview/language-specs/javascript.lang.h:4
+#: ../gtksourceview/language-specs/javascript.lang.h:4
 msgid "Error Handling"
-msgstr "ह�न�डलि� त�र��ि"
+msgstr "ह�याण�डलि� त�र��ि"
 
-#: gtksourceview/language-specs/javascript.lang.h:5
+#: ../gtksourceview/language-specs/javascript.lang.h:5
 msgid "Floating-Point Number"
-msgstr "फ�ल��ि�-बिन�द� स���या"
+msgstr "�त�प�लवान-बिन�द� स����या"
 
-#: gtksourceview/language-specs/javascript.lang.h:6
+#: ../gtksourceview/language-specs/javascript.lang.h:6
 msgid "Flow Keywords"
-msgstr "��प�तस���या ब��न�"
+msgstr "������शब�दहर� प�रवाह �र�न�ह�स�"
 
-#: gtksourceview/language-specs/javascript.lang.h:7
+#: ../gtksourceview/language-specs/javascript.lang.h:7
 msgid "Future Reserved Words"
-msgstr "भविष�य�� ला�� रि�र�भ शब�दहर�"
+msgstr "भविष�य�ा ला�ि स���ित शब�दहर�"
 
-#: gtksourceview/language-specs/javascript.lang.h:8
+#: ../gtksourceview/language-specs/javascript.lang.h:8
 msgid "Global Functions"
-msgstr "ब�रम�हाण�ड �ार�यहर�"
+msgstr "विश�वव�याप� प�र�ार�यहर�"
 
-#: gtksourceview/language-specs/javascript.lang.h:9
+#: ../gtksourceview/language-specs/javascript.lang.h:9
 msgid "Global Properties"
-msgstr "ब�रम�हाण�ड सम�पति"
+msgstr "विश�वव�याप� ��ण"
 
-#: gtksourceview/language-specs/javascript.lang.h:10
-#: gtksourceview/language-specs/verilog.lang.h:5
+#: ../gtksourceview/language-specs/javascript.lang.h:10
+#: ../gtksourceview/language-specs/verilog.lang.h:5
 msgid "Hexadecimal Number"
-msgstr "ह���साड�सिमल स���या"
+msgstr "ह���साड�सिमल स����या"
+
+#: ../gtksourceview/language-specs/javascript.lang.h:11
+msgid "JavaScript"
+msgstr "�ाभास���रिप��"
 
-#: gtksourceview/language-specs/javascript.lang.h:13
+#: ../gtksourceview/language-specs/javascript.lang.h:14
 msgid "Literals"
-msgstr "वास�तवि�"
+msgstr "���षरहर�"
 
-#: gtksourceview/language-specs/javascript.lang.h:14
+#: ../gtksourceview/language-specs/javascript.lang.h:15
 msgid "Math Value Properties"
-msgstr "�णित मान सम�पति"
+msgstr "�णित मान ��ण"
 
-#: gtksourceview/language-specs/javascript.lang.h:16
+#: ../gtksourceview/language-specs/javascript.lang.h:17
 msgid "Object Functions"
-msgstr "वस�त� �ार�य"
+msgstr "वस�त� प�र�ार�यहर�"
 
-#: gtksourceview/language-specs/javascript.lang.h:17
+#: ../gtksourceview/language-specs/javascript.lang.h:18
 msgid "Object Properties"
-msgstr "वस�त� सम�पति"
+msgstr "वस�त� ��ण"
 
-#: gtksourceview/language-specs/javascript.lang.h:18
+#: ../gtksourceview/language-specs/javascript.lang.h:19
 msgid "Objects"
 msgstr "वस�त�हर�"
 
-#.
-#. Proposed language specification for JavaScript files.
-#.
-#. Reference used:
-#. http://www.ecma-international.org/publications/files/ecma-st/ECMA-262.pdf
-#.
-#. Tested with:
-#. http://www.coffeeblack.org/scripts/map.js
-#.
-#. Submitted by Scott Martin (scott coffeeblack org)
-#.
-#: gtksourceview/language-specs/javascript.lang.h:32
-#: gtksourceview/language-specs/lua.lang.h:9
-#: gtksourceview/language-specs/perl.lang.h:7
-#: gtksourceview/language-specs/python.lang.h:13
-#: gtksourceview/language-specs/ruby.lang.h:17
-#: gtksourceview/language-specs/sh.lang.h:11
-#: gtksourceview/language-specs/tcl.lang.h:3
-#: gtksourceview/language-specs/R.lang.h:10
+#: ../gtksourceview/language-specs/javascript.lang.h:22
+#: ../gtksourceview/language-specs/lua.lang.h:9
+#: ../gtksourceview/language-specs/octave.lang.h:13
+#: ../gtksourceview/language-specs/perl.lang.h:7
+#: ../gtksourceview/language-specs/php.lang.h:22
+#: ../gtksourceview/language-specs/python.lang.h:14
+#: ../gtksourceview/language-specs/R.lang.h:10
+#: ../gtksourceview/language-specs/ruby.lang.h:16
+#: ../gtksourceview/language-specs/sh.lang.h:11
+#: ../gtksourceview/language-specs/tcl.lang.h:3
 msgid "Scripts"
 msgstr "स���रिप��हर�"
 
-#: gtksourceview/language-specs/javascript.lang.h:35
+#: ../gtksourceview/language-specs/javascript.lang.h:25
 msgid "Unicode Escape Sequence"
 msgstr "य�नि��ड ह�ा�न� �न���रम"
 
-#: gtksourceview/language-specs/javascript.lang.h:36
+#: ../gtksourceview/language-specs/javascript.lang.h:26
 msgid "Word Operators"
-msgstr "शब�द स��ालन�र�ता"
+msgstr "शब�द स���ालन�र�ता"
 
-#: gtksourceview/language-specs/latex.lang.h:2
-#: gtksourceview/language-specs/texinfo.lang.h:6
+#: ../gtksourceview/language-specs/latex.lang.h:1
+msgid "Command"
+msgstr "�द�श"
+
+#: ../gtksourceview/language-specs/latex.lang.h:3
+msgid "Comment Environment"
+msgstr "�िप�पण� परिव�श"
+
+#: ../gtksourceview/language-specs/latex.lang.h:4
+#: ../gtksourceview/language-specs/texinfo.lang.h:6
 msgid "Include"
-msgstr "रा�ि���"
+msgstr "सम�मिलित �र�न�ह�स�"
 
-#: gtksourceview/language-specs/latex.lang.h:4
+#: ../gtksourceview/language-specs/latex.lang.h:6
 msgid "LaTeX"
 msgstr "ला�����स"
 
-#: gtksourceview/language-specs/latex.lang.h:6
+#: ../gtksourceview/language-specs/latex.lang.h:8
 msgid "Math"
 msgstr "�णित"
 
-#: gtksourceview/language-specs/latex.lang.h:7
-msgid "Most Used Commands"
-msgstr "ध�र� प�रय�� �रि��� �द�शहर�"
-
-#: gtksourceview/language-specs/lua.lang.h:2
-#: gtksourceview/language-specs/python.lang.h:4
-#: gtksourceview/language-specs/sh.lang.h:4
+#: ../gtksourceview/language-specs/lua.lang.h:2
+#: ../gtksourceview/language-specs/makefile.lang.h:3
 msgid "Functions"
-msgstr "�ार�यहर�"
+msgstr "प�र�ार�यहर�"
 
-#: gtksourceview/language-specs/lua.lang.h:5
+#: ../gtksourceview/language-specs/lua.lang.h:5
 msgid "Line Comment 2"
-msgstr "र��ा �िप�पणि २"
+msgstr "र��ा �िप�पण� २"
 
-#: gtksourceview/language-specs/lua.lang.h:6
+#: ../gtksourceview/language-specs/lua.lang.h:6
 msgid "Lua"
-msgstr "�लय��"
-
-#: gtksourceview/language-specs/lua.lang.h:7
-#: gtksourceview/language-specs/python.lang.h:9
-#: gtksourceview/language-specs/sh.lang.h:6
-msgid "Multiline String"
-msgstr "ध�र� र��ा भ��� ड�र�"
+msgstr "Lua"
 
-#: gtksourceview/language-specs/lua.lang.h:8
-#: gtksourceview/language-specs/python.lang.h:10
-#: gtksourceview/language-specs/sh.lang.h:7
+#: ../gtksourceview/language-specs/lua.lang.h:8
+#: ../gtksourceview/language-specs/sh.lang.h:7
 msgid "Multiline String 2"
-msgstr "ध�र� र��ा भ��� ड�र� २"
+msgstr "बह��र��िय स���रि� २"
+
+#. `backticks-quoted strings`
+#: ../gtksourceview/language-specs/makefile.lang.h:1
+#: ../gtksourceview/language-specs/php.lang.h:3
+#: ../gtksourceview/language-specs/sh.lang.h:1
+msgid "Backtick String"
+msgstr "प�ाडि �िन�ह स���रि�"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:2
+msgid "Directives"
+msgstr "निर�दशहर�"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:5
+msgid "Makefile"
+msgstr "फा�ल बना�न�ह�स�"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:7
+msgid "Special Targets"
+msgstr "विश�ष ल��ष�यहर�"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:10
+msgid "Targets"
+msgstr "ल��ष�यहर�"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:11
+#: ../gtksourceview/language-specs/sh.lang.h:15
+msgid "Variable1"
+msgstr "�ल१"
+
+#: ../gtksourceview/language-specs/makefile.lang.h:12
+#: ../gtksourceview/language-specs/sh.lang.h:16
+msgid "Variable2"
+msgstr "�ल२"
+
+#: ../gtksourceview/language-specs/msil.lang.h:1
+msgid "MSIL"
+msgstr "MSIL"
+
+#: ../gtksourceview/language-specs/nemerle.lang.h:1
+#: ../gtksourceview/language-specs/verilog.lang.h:1
+msgid "Binary Number"
+msgstr "बा�नर� स����या"
+
+#: ../gtksourceview/language-specs/nemerle.lang.h:4
+msgid "Core Keywords"
+msgstr "��र ������शब�दहर�"
+
+#: ../gtksourceview/language-specs/nemerle.lang.h:5
+msgid "Core Types"
+msgstr "��र प�र�ारहर�"
+
+#: ../gtksourceview/language-specs/nemerle.lang.h:9
+msgid "Keywords Defined by Macros"
+msgstr "म�या��र�हर�बा� परिभाषा �रि��� ������शब�दहर�"
+
+#: ../gtksourceview/language-specs/nemerle.lang.h:11
+msgid "Nemerle"
+msgstr "न�म�रल�"
 
-#: gtksourceview/language-specs/pascal.lang.h:1
+#: ../gtksourceview/language-specs/octave.lang.h:8
+#: ../gtksourceview/language-specs/python.lang.h:10
+msgid "Multiline Double Quoted String"
+msgstr "बह��र��िय डबल �द�वरण �रि��� स���रि�"
+
+#: ../gtksourceview/language-specs/octave.lang.h:9
+#: ../gtksourceview/language-specs/python.lang.h:11
+msgid "Multiline Single Quoted String"
+msgstr "बह��र��िय ��ल �द�वरण �रि��� स���रि�"
+
+#: ../gtksourceview/language-specs/octave.lang.h:11
+msgid "Octave"
+msgstr "����िभ"
+
+#: ../gtksourceview/language-specs/octave.lang.h:12
+#: ../gtksourceview/language-specs/R.lang.h:9
+msgid "Reserved Constant"
+msgstr "स�र��षित स�थिर"
+
+#: ../gtksourceview/language-specs/pascal.lang.h:1
 msgid "Block Comment 1"
-msgstr "बन�द �िप�पणि १"
+msgstr "बन�द �िप�पण� १"
 
-#: gtksourceview/language-specs/pascal.lang.h:2
+#: ../gtksourceview/language-specs/pascal.lang.h:2
 msgid "Block Comment 2"
-msgstr "बन�द �िप�पणि २"
+msgstr "बन�द �िप�पण� २"
 
-#: gtksourceview/language-specs/pascal.lang.h:3
+#: ../gtksourceview/language-specs/pascal.lang.h:3
 msgid "Boolean Bitwise Operators"
-msgstr "ब�ल�न बि�वा�� स��ालन�र�ता"
+msgstr "ब�लियन बि�वा�� स���ालन�र�ता"
 
-#: gtksourceview/language-specs/pascal.lang.h:4
+#: ../gtksourceview/language-specs/pascal.lang.h:4
 msgid "Builtin Functions"
-msgstr "ब�य�ल��िन �ार�यहर�"
+msgstr "ब�य�ल��िन प�र�ार�यहर�"
 
-#: gtksourceview/language-specs/pascal.lang.h:5
+#: ../gtksourceview/language-specs/pascal.lang.h:5
 msgid "Builtin Types"
-msgstr "ब�य�ल��िन �िसिमहर�"
+msgstr "ब�य�ल��िन प�र�ारहर�"
 
-#: gtksourceview/language-specs/pascal.lang.h:6
+#: ../gtksourceview/language-specs/pascal.lang.h:6
 msgid "Builtin Values"
-msgstr "ब�य�ल��िन मानहर�"
+msgstr "�न�तरनिर�मित मानहर�"
 
-#: gtksourceview/language-specs/pascal.lang.h:7
+#: ../gtksourceview/language-specs/pascal.lang.h:7
 msgid "Functions and Function Modifiers"
-msgstr "�ार�य र �ार�य स�धार�हर�"
+msgstr "प�र�ार�यहर� र प�र�ार�य परिमार���हर�"
 
-#: gtksourceview/language-specs/pascal.lang.h:8
+#: ../gtksourceview/language-specs/pascal.lang.h:8
 msgid "General Format"
 msgstr "साधारण ढा��ा"
 
-#: gtksourceview/language-specs/pascal.lang.h:12
+#: ../gtksourceview/language-specs/pascal.lang.h:12
 msgid "Loop, Flow, and Exceptions Keywords"
-msgstr "ब���� र �पवाद शब�दहर� ��प�तर�पल� ल�प �र�न�ह�ला ।"
+msgstr "ल�प �र�न�ह�स�, प�रवाह, र �पवाद�� ������शब�दहर�"
 
-#: gtksourceview/language-specs/pascal.lang.h:13
+#: ../gtksourceview/language-specs/pascal.lang.h:13
 msgid "Math Operators"
-msgstr "�णित स��ालन�र�ता"
+msgstr "�णित स���ालन�र�ता"
 
-#: gtksourceview/language-specs/pascal.lang.h:15
+#: ../gtksourceview/language-specs/pascal.lang.h:15
 msgid "Pascal"
 msgstr "पास�ल"
 
-#: gtksourceview/language-specs/pascal.lang.h:16
+#: ../gtksourceview/language-specs/pascal.lang.h:16
 msgid "Preprocessor Defines"
-msgstr "प�र�वप�रति��रिया�� वर�णन"
+msgstr "प�र�वप�रति��रिया�र�ता�� परिभाषा"
 
-#: gtksourceview/language-specs/pascal.lang.h:19
+#: ../gtksourceview/language-specs/pascal.lang.h:19
 msgid "Type, Class and Object Keywords"
-msgstr "���षा र वस�त� ��प�तशब�द "
+msgstr "प�र�ार,वर�� र वस�त� ������शब�दहर�"
 
-#: gtksourceview/language-specs/perl.lang.h:1
+#: ../gtksourceview/language-specs/perl.lang.h:1
 msgid "Function Call"
-msgstr "�ार�य �ल"
+msgstr "प�र�ार�य �ल"
 
-#: gtksourceview/language-specs/perl.lang.h:4
+#: ../gtksourceview/language-specs/perl.lang.h:4
 msgid "Method Call"
-msgstr "तरि�ा �ल"
+msgstr "विधि �ल"
 
-#: gtksourceview/language-specs/perl.lang.h:5
+#: ../gtksourceview/language-specs/perl.lang.h:5
 msgid "POD"
-msgstr "पि�डि"
+msgstr "POD"
 
-#: gtksourceview/language-specs/perl.lang.h:6
+#: ../gtksourceview/language-specs/perl.lang.h:6
 msgid "Perl"
 msgstr "पर�ल"
 
-#: gtksourceview/language-specs/perl.lang.h:9
-#: gtksourceview/language-specs/tcl.lang.h:5
+#: ../gtksourceview/language-specs/perl.lang.h:9
+#: ../gtksourceview/language-specs/tcl.lang.h:5
 msgid "String2"
 msgstr "स���रि�२"
 
-#: gtksourceview/language-specs/perl.lang.h:10
+#: ../gtksourceview/language-specs/perl.lang.h:10
 msgid "String3"
 msgstr "स���रि�३"
 
-#: gtksourceview/language-specs/perl.lang.h:11
-#: gtksourceview/language-specs/tcl.lang.h:7
+#: ../gtksourceview/language-specs/perl.lang.h:11
 msgid "Variables"
 msgstr "�लहर�"
 
-#. `backticks-quoted strings`
-#: gtksourceview/language-specs/php.lang.h:3
-#: gtksourceview/language-specs/sh.lang.h:1
-msgid "Backtick String"
-msgstr "प�ाडि �िन�ह स���रि���"
-
 #. # Bourne Shell Line Comment
-#: gtksourceview/language-specs/php.lang.h:5
+#: ../gtksourceview/language-specs/php.lang.h:5
 msgid "Bash Line Comment"
-msgstr "�धार र��ा �िप�पणि"
+msgstr "�धार र��ा �िप�पण�"
 
 #. /* C Block Comment
-#: gtksourceview/language-specs/php.lang.h:7
+#: ../gtksourceview/language-specs/php.lang.h:7
 msgid "C Block Comment"
-msgstr "सि बन�द �िप�पणि"
+msgstr "सि बन�द �िप�पण�"
 
 #. // C++ Line Comment
-#: gtksourceview/language-specs/php.lang.h:9
+#: ../gtksourceview/language-specs/php.lang.h:9
 msgid "C++ Line Comment"
-msgstr "सि++ र��ा �िप�पणि"
+msgstr "सि++ र��ा �िप�पण�"
 
-#: gtksourceview/language-specs/php.lang.h:10
+#: ../gtksourceview/language-specs/php.lang.h:10
 msgid "Case Insensitive Keyword"
-msgstr "��स ���तनशिल ��प�तशब�द"
+msgstr "��स �स�व�दनश�ल ������शब�द"
 
 #. This are keywords, the are recognised by php
-#: gtksourceview/language-specs/php.lang.h:12
+#: ../gtksourceview/language-specs/php.lang.h:12
 msgid "Case Sensitive Keyword"
-msgstr "��स ��तनशिल ��प�तशब�द"
-
-#. "duble-quoted strings"
-#: gtksourceview/language-specs/php.lang.h:16
-msgid "Double Quoted String"
-msgstr "द�ह�र� �द�वरण स���रि���"
+msgstr "��स स�व�दनश�ल ������शब�द"
 
-#: gtksourceview/language-specs/php.lang.h:17
+#. <? ?> <HTML> inside PHP <?
+#: ../gtksourceview/language-specs/php.lang.h:18
 msgid "First Open PHP Tag"
-msgstr "पहिल� पि��पि मार��ा/�ाप ��ल�न�ह�ला ।"
+msgstr "पहिल� पि �� पि ��या� ��ल�न�ह�स�"
 
-#: gtksourceview/language-specs/php.lang.h:18
+#: ../gtksourceview/language-specs/php.lang.h:19
 msgid "HTML Block"
-msgstr "���ि�म�ल बन�द"
+msgstr "HTML �ण�ड"
 
-#: gtksourceview/language-specs/php.lang.h:20
+#: ../gtksourceview/language-specs/php.lang.h:21
 msgid "PHP"
-msgstr "पि��पि"
-
-#. 'single-quoted strings'
-#: gtksourceview/language-specs/php.lang.h:22
-msgid "Single Quoted String"
-msgstr "��ल �द�वरण स���रि���"
+msgstr "PHP"
 
-#: gtksourceview/language-specs/po.lang.h:2
+#: ../gtksourceview/language-specs/po.lang.h:2
 msgid "Format"
 msgstr "ढा��ा"
 
-#: gtksourceview/language-specs/po.lang.h:7
+#: ../gtksourceview/language-specs/po.lang.h:7
 msgid "gettext translation"
 msgstr "�������स� �न�वाद"
 
-#: gtksourceview/language-specs/python.lang.h:1
-#: gtksourceview/language-specs/ruby.lang.h:2
+#: ../gtksourceview/language-specs/python.lang.h:1
+#: ../gtksourceview/language-specs/ruby.lang.h:2
 msgid "Builtins"
 msgstr "�न�तरनिर�मित"
 
-#: gtksourceview/language-specs/python.lang.h:8
+#: ../gtksourceview/language-specs/python.lang.h:9
 msgid "Module Handler"
-msgstr "म�ड�य�ल ह�न�डलर"
+msgstr "म�ड�य�ल ह�यान�डलर"
 
-#: gtksourceview/language-specs/python.lang.h:12
+#: ../gtksourceview/language-specs/python.lang.h:13
 msgid "Python"
 msgstr "पा�थ�न"
 
-#: gtksourceview/language-specs/ruby.lang.h:1
+#: ../gtksourceview/language-specs/R.lang.h:1
+msgid "Assignment Operator"
+msgstr "माना���न स���ालन�र�ता"
+
+#: ../gtksourceview/language-specs/R.lang.h:2
+msgid "Delimiter"
+msgstr "ड�लिमि�र"
+
+#: ../gtksourceview/language-specs/R.lang.h:5
+msgid "Integer Number"
+msgstr "�न��ि�र स����या"
+
+#: ../gtksourceview/language-specs/R.lang.h:8
+msgid "Reserved Class"
+msgstr "स���ित �रि��� वर��"
+
+#: ../gtksourceview/language-specs/ruby.lang.h:1
 msgid "Attribute Definitions"
-msgstr "��ण / बिश�षण व�या��या"
+msgstr "विश�षता परिभाषाहर�"
 
-#: gtksourceview/language-specs/ruby.lang.h:3
+#: ../gtksourceview/language-specs/ruby.lang.h:3
 msgid "Class Variables"
-msgstr "���षा �लहर�"
+msgstr "वर�� �लहर�"
 
-#: gtksourceview/language-specs/ruby.lang.h:4
+#: ../gtksourceview/language-specs/ruby.lang.h:4
 msgid "Constants"
 msgstr "स�थिर"
 
-#: gtksourceview/language-specs/ruby.lang.h:5
+#: ../gtksourceview/language-specs/ruby.lang.h:5
 msgid "Definitions"
-msgstr "व�या��या"
+msgstr "परिभाषा"
 
-#: gtksourceview/language-specs/ruby.lang.h:6
+#: ../gtksourceview/language-specs/ruby.lang.h:7
 msgid "Global Variables"
-msgstr "ब�रम�हाण�ड �लहर�"
+msgstr "विश�वव�याप� �ल"
 
-#: gtksourceview/language-specs/ruby.lang.h:7
+#: ../gtksourceview/language-specs/ruby.lang.h:8
 msgid "Instance Variables"
-msgstr "प�रतिर�प �लहर�"
+msgstr "प�रतिर�प �ल"
 
-#: gtksourceview/language-specs/ruby.lang.h:10
+#: ../gtksourceview/language-specs/ruby.lang.h:11
 msgid "Module Handlers"
-msgstr "म�ड�य�ल ह�न�डलर"
+msgstr "म�ड�य�ल ह�यान�डलर"
 
-#: gtksourceview/language-specs/ruby.lang.h:11
+#: ../gtksourceview/language-specs/ruby.lang.h:12
 msgid "Multiline Comment"
-msgstr "बह�र��ा �िप�पणि"
+msgstr "बह�र��ा �िप�पण�"
 
-#: gtksourceview/language-specs/ruby.lang.h:12
+#: ../gtksourceview/language-specs/ruby.lang.h:13
 msgid "Pseudo Variables"
-msgstr "Pseudo �लहर�"
+msgstr "Pseudo �ल"
 
-#: gtksourceview/language-specs/ruby.lang.h:13
+#: ../gtksourceview/language-specs/ruby.lang.h:14
 msgid "RegExp Variables"
-msgstr "RegExp �लहर�"
+msgstr "RegExp �ल"
 
-#: gtksourceview/language-specs/ruby.lang.h:14
-msgid "Regular Expression"
-msgstr "दिनह�� �भिव�य��ति"
+#: ../gtksourceview/language-specs/ruby.lang.h:15
+msgid "Ruby"
+msgstr "र�ब�"
 
-#: gtksourceview/language-specs/ruby.lang.h:15
-msgid "Regular Expression 2"
-msgstr "दिनह�� �भिव�य��ति २"
+#: ../gtksourceview/language-specs/ruby.lang.h:18
+msgid "Symbols"
+msgstr "प�रति�"
 
-#: gtksourceview/language-specs/ruby.lang.h:16
-msgid "Ruby"
-msgstr "र�ब��"
+#: ../gtksourceview/language-specs/scheme.lang.h:11
+msgid "Scheme"
+msgstr "य��ना"
 
-#: gtksourceview/language-specs/sh.lang.h:2
-msgid "Built-in Commands"
-msgstr "�न�तर निर�मित �द�शहर�"
+#: ../gtksourceview/language-specs/sh.lang.h:2
+msgid "Built-in Command"
+msgstr "�द�शमा निर�माण भय�"
 
-#: gtksourceview/language-specs/sh.lang.h:3
-msgid "Common Commands"
-msgstr "सा�ा �द�शहर�"
+#: ../gtksourceview/language-specs/sh.lang.h:3
+msgid "Common Command"
+msgstr "सा�ा �द�श"
 
-#: gtksourceview/language-specs/sh.lang.h:10
-msgid "Redirections"
-msgstr "प�न:दिशानिर�द�शनहर�"
+#: ../gtksourceview/language-specs/sh.lang.h:8
+msgid "Operator"
+msgstr "स���ालन�र�ता"
 
-#: gtksourceview/language-specs/sh.lang.h:12
-msgid "Self"
-msgstr "स�वयम"
+#: ../gtksourceview/language-specs/sh.lang.h:9
+msgid "Punctuator"
+msgstr "विभा��"
 
-#: gtksourceview/language-specs/sh.lang.h:15
-msgid "Variable1"
-msgstr "�लहर�१"
+#: ../gtksourceview/language-specs/sh.lang.h:10
+msgid "Redirection"
+msgstr "प�न: दिशानिर�द�शन"
 
-#: gtksourceview/language-specs/sh.lang.h:16
-msgid "Variable2"
-msgstr "�लहर�२"
+#: ../gtksourceview/language-specs/sh.lang.h:12
+msgid "Self"
+msgstr "स�व�यम"
 
-#: gtksourceview/language-specs/sh.lang.h:17
+#: ../gtksourceview/language-specs/sh.lang.h:17
 msgid "sh"
-msgstr "�स��"
+msgstr "sh"
 
-#: gtksourceview/language-specs/sql.lang.h:1
+#: ../gtksourceview/language-specs/sql.lang.h:1
 msgid "ANSI Datatypes"
-msgstr "��न�स�� ल�तप�र�ारहर�"
+msgstr "ANSI ड��ा प�र�ार"
 
-#: gtksourceview/language-specs/sql.lang.h:2
+#. Reserved Words
+#: ../gtksourceview/language-specs/sql.lang.h:3
 msgid "ANSI Reserved Words"
-msgstr "��न�स��ल� शब�दहर� स�र��षित �र�य� ।"
+msgstr "ANSI स���ित �रि��� शब�द"
 
-#: gtksourceview/language-specs/sql.lang.h:3
+#. Aggregate Functions
+#: ../gtksourceview/language-specs/sql.lang.h:5
 msgid "Aggregate Functions"
-msgstr "सम�प�र�ण य�� �ार�यहर�"
+msgstr "सम��र प�र�ार�य"
 
-#: gtksourceview/language-specs/sql.lang.h:4
+#. Analytic Functions
+#: ../gtksourceview/language-specs/sql.lang.h:7
 msgid "Analytic Functions"
-msgstr "विशल�षण �ार�यहर�"
+msgstr "विश�ल�षण प�र�ार�य"
 
-#: gtksourceview/language-specs/sql.lang.h:6
+#: ../gtksourceview/language-specs/sql.lang.h:10
 msgid "Character Functions Returning Character Values"
-msgstr "स�वन �ार�यल� स�वन मान फिर�ता �र�द� ।"
+msgstr "��यार����र प�र�ार�यल� ��यार����र फिर�ता �र�द�"
 
-#: gtksourceview/language-specs/sql.lang.h:7
+#: ../gtksourceview/language-specs/sql.lang.h:11
 msgid "Character Functions Returning Number Values"
-msgstr "स�वन �ार�यल� स���या मान फिर�ता �र�द� ।"
+msgstr "��यार����र प�र�ार�यल� स����या मान फिर�ता �र�द�।"
 
-#: gtksourceview/language-specs/sql.lang.h:8
+#: ../gtksourceview/language-specs/sql.lang.h:12
+msgid "Collection Functions"
+msgstr "स���लन प�र�ार�य"
+
+#: ../gtksourceview/language-specs/sql.lang.h:13
+msgid "Conditions"
+msgstr "�वस�था"
+
+#: ../gtksourceview/language-specs/sql.lang.h:14
 msgid "Conversion Functions"
-msgstr "र�पान�तरण �ार�यहर�"
+msgstr "र�पान�तरण प�र�ार�य"
+
+#: ../gtksourceview/language-specs/sql.lang.h:15
+msgid "Data Mining Functions"
+msgstr "ड��ा मा�नि� प�र�ार�य"
 
-#: gtksourceview/language-specs/sql.lang.h:9
+#: ../gtksourceview/language-specs/sql.lang.h:16
 msgid "Datetime Functions"
-msgstr "मितिसमय �ार�यहर�"
+msgstr "मिति समय प�र�ार�य"
 
-#: gtksourceview/language-specs/sql.lang.h:10
+#: ../gtksourceview/language-specs/sql.lang.h:17
+msgid "Encoding and Decoding Functions"
+msgstr "स����तन र विस����तन प�र�ार�य"
+
+#: ../gtksourceview/language-specs/sql.lang.h:18
+msgid "Environment and Identifier Functions"
+msgstr "परिव�श र पहि�ाय� प�र�ार�य"
+
+#: ../gtksourceview/language-specs/sql.lang.h:19
+msgid "General Comparison Functions"
+msgstr "साधारण त�ल�नात�म� प�र�ार�य"
+
+#: ../gtksourceview/language-specs/sql.lang.h:20
+msgid "Hierarchical Function"
+msgstr "स�पान��रमि� प�र�ार�य"
+
+#: ../gtksourceview/language-specs/sql.lang.h:21
 msgid "Integer Literals"
-msgstr "प�र�ण वास�तवि�"
+msgstr "���ष�रि� �न����र"
 
-#: gtksourceview/language-specs/sql.lang.h:12
-msgid "Miscellaneous Single-Row Functions"
-msgstr "विविध ��ल-प���ति �ार�यहर�"
+#: ../gtksourceview/language-specs/sql.lang.h:22
+msgid "Large Object Functions"
+msgstr "ठ�ल� वस�त� प�र�ार�य"
+
+#. Model Functions
+#: ../gtksourceview/language-specs/sql.lang.h:25
+msgid "Model Functions"
+msgstr "नम�ना प�र�ार�य"
+
+#: ../gtksourceview/language-specs/sql.lang.h:26
+msgid "NLS Character Functions"
+msgstr "NLS ��यार����र प�र�ार�य"
+
+#: ../gtksourceview/language-specs/sql.lang.h:27
+msgid "NULL-Related Functions"
+msgstr "NULL-सम�बन�धित प�र�ार�य"
 
-#: gtksourceview/language-specs/sql.lang.h:13
+#: ../gtksourceview/language-specs/sql.lang.h:28
 msgid "Null"
-msgstr "न�ल"
-
-#: gtksourceview/language-specs/sql.lang.h:14
-msgid "Number Functions"
-msgstr "स���या �ार�यहर�"
+msgstr "श�न�य"
 
-#: gtksourceview/language-specs/sql.lang.h:15
+#: ../gtksourceview/language-specs/sql.lang.h:29
 msgid "Number Literals"
-msgstr "स���या वास�तवि�"
+msgstr "���ष�रि� स����या"
+
+#. Single-Row Functions
+#: ../gtksourceview/language-specs/sql.lang.h:31
+msgid "Numeric Functions"
+msgstr "स����यात�म� प�र�ार�य"
 
-#: gtksourceview/language-specs/sql.lang.h:16
+#. Object Reference Functions
+#: ../gtksourceview/language-specs/sql.lang.h:33
 msgid "Object Reference Functions"
-msgstr "वस�त� सन�दर�भ �ार�यहर�"
+msgstr "वस�त� सन�दर�भ प�र�ार�य"
 
-#: gtksourceview/language-specs/sql.lang.h:17
+#. Datatypes
+#: ../gtksourceview/language-specs/sql.lang.h:36
 msgid "Oracle Built-in Datatypes"
-msgstr "�रा�ल �न�तरनिर�मित ल�तप�र�ार"
+msgstr "�रा�ल �न�तरनिर�मित ड��ा प�र�ार"
 
-#: gtksourceview/language-specs/sql.lang.h:18
+#: ../gtksourceview/language-specs/sql.lang.h:37
 msgid "Oracle Reserved Words"
-msgstr "�रा�ल स�र��षित शब�दहर�"
+msgstr "�रा�ल स���ित शब�दहर�"
 
-#: gtksourceview/language-specs/sql.lang.h:19
+#: ../gtksourceview/language-specs/sql.lang.h:38
+msgid "Oracle-Supplied Types"
+msgstr "�रा�ल �प�र�ति प�र�ार"
+
+#: ../gtksourceview/language-specs/sql.lang.h:39
 msgid "SQL"
-msgstr "�स��य��ल"
+msgstr "SQL"
+
+#: ../gtksourceview/language-specs/sql.lang.h:40
+msgid "SQL Statements"
+msgstr "SQL �थन"
 
-#: gtksourceview/language-specs/sql.lang.h:20
+#. SQL*Plus
+#: ../gtksourceview/language-specs/sql.lang.h:42
 msgid "SQL*Plus At Sign"
-msgstr "�स��य��ल *��ड �� �िन�ह"
+msgstr "SQL *��ड �� �िन�ह"
 
-#: gtksourceview/language-specs/sql.lang.h:21
+#: ../gtksourceview/language-specs/sql.lang.h:43
 msgid "SQL*Plus Commands"
-msgstr "�स��य��ल *��ड �द�शहर�"
+msgstr "SQL *��ड �द�श"
 
-#: gtksourceview/language-specs/sql.lang.h:22
+#: ../gtksourceview/language-specs/sql.lang.h:44
 msgid "SQL*Plus Double At Sign"
-msgstr "�स��य��ल *��ड डबल �� �िन�ह"
+msgstr "SQL *��ड डबल �� �िन�ह"
 
-#: gtksourceview/language-specs/sql.lang.h:23
+#: ../gtksourceview/language-specs/sql.lang.h:45
 msgid "SQL*Plus Slash"
-msgstr "�स��य��ल *��ड स�ल�यास"
+msgstr "SQL *��ड स�ल�यास"
 
-#: gtksourceview/language-specs/sql.lang.h:24
+#: ../gtksourceview/language-specs/sql.lang.h:46
 msgid "SQL/DS and DB2 Datatypes"
-msgstr "�स��य��ल/डि�स र डिबि२ ल�तप�र�ारहर�"
+msgstr "SQL/DS र DB2 ड��ा प�र�ार"
 
-#: gtksourceview/language-specs/sql.lang.h:25
+#: ../gtksourceview/language-specs/sql.lang.h:47
 msgid "Size Clause"
-msgstr "��ार नियम"
+msgstr "सा�� �ण�ड"
 
-#: gtksourceview/language-specs/sql.lang.h:27
+#. Literals
+#: ../gtksourceview/language-specs/sql.lang.h:50
 msgid "Text Literals"
-msgstr "पाठ वास�तवि�हर�"
+msgstr "���ष�रि� पाठ"
 
-#: gtksourceview/language-specs/sql.lang.h:28
+#: ../gtksourceview/language-specs/sql.lang.h:51
 msgid "Unlimited"
 msgstr "�सिमित"
 
-#: gtksourceview/language-specs/verilog.lang.h:1
-#: gtksourceview/language-specs/nemerle.lang.h:1
-msgid "Binary Number"
-msgstr "बा�नर� स���या"
-
-#: gtksourceview/language-specs/verilog.lang.h:4
-msgid "Gates"
-msgstr "ढ��ाहर�"
-
-#: gtksourceview/language-specs/verilog.lang.h:11
-msgid "Verilog"
-msgstr "भ�र�ल�"
-
-#: gtksourceview/language-specs/xml.lang.h:5
-msgid "Hexadecimal"
-msgstr "ह���साड�सिमल"
+#: ../gtksourceview/language-specs/sql.lang.h:52
+msgid "XML Functions"
+msgstr "XML प�र�ार�य"
 
-#: gtksourceview/language-specs/xml.lang.h:8
-msgid "Tag"
-msgstr "मार��ा/�ाप�"
-
-#: gtksourceview/language-specs/xml.lang.h:9
-msgid "XML"
-msgstr "���स�म�ल"
-
-#: gtksourceview/language-specs/haskell.lang.h:5
-msgid "Haskell"
-msgstr "हास��ल"
-
-#: gtksourceview/language-specs/haskell.lang.h:8
-msgid "Keysymbols"
-msgstr "��न��ि�िन�हहर�"
-
-#: gtksourceview/language-specs/haskell.lang.h:16
-msgid "Type or Constructor"
-msgstr "प�र�ार वा निर�माण�र�ता"
+#: ../gtksourceview/language-specs/tcl.lang.h:6
+msgid "Tcl"
+msgstr "Tcl"
 
-#: gtksourceview/language-specs/texinfo.lang.h:2
+#: ../gtksourceview/language-specs/texinfo.lang.h:2
 msgid "Characters"
-msgstr "स�वनहर�"
+msgstr "��यार����र"
 
-#: gtksourceview/language-specs/texinfo.lang.h:3
+#: ../gtksourceview/language-specs/texinfo.lang.h:3
 msgid "File Attributes"
-msgstr "फा�ल बिष�षताहर�"
+msgstr "फा�ल विश�षता"
 
-#: gtksourceview/language-specs/texinfo.lang.h:4
+#: ../gtksourceview/language-specs/texinfo.lang.h:4
 msgid "Formatting"
-msgstr "स�वर�पित"
+msgstr "ढा��ा"
 
-#: gtksourceview/language-specs/texinfo.lang.h:5
+#: ../gtksourceview/language-specs/texinfo.lang.h:5
 msgid "Generated Content"
-msgstr "�त�पादित सामा��र�"
+msgstr "सिर��ित सामा��र�"
 
-#: gtksourceview/language-specs/texinfo.lang.h:7
+#: ../gtksourceview/language-specs/texinfo.lang.h:7
 msgid "Indexing"
-msgstr "�न���रमणि�ा�ा"
+msgstr "�न���रमणि�ा"
 
-#: gtksourceview/language-specs/texinfo.lang.h:10
+#: ../gtksourceview/language-specs/texinfo.lang.h:10
 msgid "Macro Parameters"
-msgstr "स���ष�म परामितिहर�"
+msgstr "म�या��र� परामिति"
 
-#: gtksourceview/language-specs/texinfo.lang.h:11
+#: ../gtksourceview/language-specs/texinfo.lang.h:11
 msgid "Macros"
 msgstr "म�या��र�हर�"
 
-#: gtksourceview/language-specs/texinfo.lang.h:13
+#: ../gtksourceview/language-specs/texinfo.lang.h:13
 msgid "Markup (block)"
 msgstr "मार���प (बन�द)"
 
-#: gtksourceview/language-specs/texinfo.lang.h:14
+#: ../gtksourceview/language-specs/texinfo.lang.h:14
 msgid "Markup (inline)"
 msgstr "मार���प (ला�नमा)"
 
-#: gtksourceview/language-specs/texinfo.lang.h:15
+#: ../gtksourceview/language-specs/texinfo.lang.h:15
 msgid "Sectioning"
-msgstr "विभ�िय"
+msgstr "विभा�िय"
 
-#: gtksourceview/language-specs/texinfo.lang.h:16
+#: ../gtksourceview/language-specs/texinfo.lang.h:16
 msgid "Texinfo"
 msgstr "����स�नफ�"
 
-#: gtksourceview/language-specs/vbnet.lang.h:3
+#: ../gtksourceview/language-specs/vbnet.lang.h:7
 msgid "Old Style Comment"
-msgstr "प�रान� श�लि �िप�पणि"
+msgstr "प�रान� श�ल� �िप�पण�"
 
-#: gtksourceview/language-specs/vbnet.lang.h:9
+#: ../gtksourceview/language-specs/vbnet.lang.h:12
 msgid "VB.NET"
-msgstr "भिबि न��"
+msgstr "VB.NET"
 
-#: gtksourceview/language-specs/nemerle.lang.h:4
-msgid "Core Keywords"
-msgstr "स�म�त���न�द�र ��न���शब�दहर�"
-
-#: gtksourceview/language-specs/nemerle.lang.h:5
-msgid "Core Types"
-msgstr "स�म�त���न�द�र�ा �िसिमहर�"
-
-#: gtksourceview/language-specs/nemerle.lang.h:9
-msgid "Keywords Defined by Macros"
-msgstr "��न��िशब�दहर�ल� म�या��र�हर�बा� व�या��या �र�द� ।"
-
-#: gtksourceview/language-specs/nemerle.lang.h:11
-msgid "Nemerle"
-msgstr "न�म�रल�"
+#: ../gtksourceview/language-specs/verilog.lang.h:4
+msgid "Gates"
+msgstr "ढ��ाहर�"
 
-#: gtksourceview/language-specs/tcl.lang.h:6
-msgid "Tcl"
-msgstr "�िसि�ल"
+#: ../gtksourceview/language-specs/verilog.lang.h:11
+msgid "Verilog"
+msgstr "भ�र�ल�"
 
-#: gtksourceview/language-specs/vhdl.lang.h:7
+#: ../gtksourceview/language-specs/vhdl.lang.h:7
 msgid "True and False"
-msgstr "ठि� र ब�ठि�"
-
-#: gtksourceview/language-specs/vhdl.lang.h:8
-msgid "Type"
-msgstr "प�र�ार�"
+msgstr "ठ�� र ब�ठ��"
 
-#: gtksourceview/language-specs/vhdl.lang.h:9
+#: ../gtksourceview/language-specs/vhdl.lang.h:9
 msgid "VHDL"
-msgstr "भि��डि�ल"
-
-#: gtksourceview/language-specs/R.lang.h:1
-msgid "Assignment Operator"
-msgstr "माना���न स��ालन�र�ता"
-
-#: gtksourceview/language-specs/R.lang.h:2
-msgid "Delimiter"
-msgstr "सिमाानिर�धार�"
-
-#: gtksourceview/language-specs/R.lang.h:5
-msgid "Integer Number"
-msgstr "�न�ि�र स���या"
+msgstr "VHDL"
 
-#: gtksourceview/language-specs/R.lang.h:8
-msgid "Reserved Class"
-msgstr "स�र��षित ���षा"
-
-#: gtksourceview/language-specs/R.lang.h:9
-msgid "Reserved Constant"
-msgstr "स�र��षित स�थिर"
-
-#: gtksourceview/language-specs/gtkrc.lang.h:3
-msgid "GtkRC"
-msgstr "�ि�ि���रसि"
-
-#: gtksourceview/language-specs/gtkrc.lang.h:4
-msgid "Include Directive"
-msgstr "डा�र����िभ रा��न�ह�ला ।"
-
-#: gtksourceview/language-specs/gtkrc.lang.h:5
-msgid "Keysymbol"
-msgstr "��न��ि�िन�ह"
+#: ../gtksourceview/language-specs/xml.lang.h:5
+msgid "Hexadecimal"
+msgstr "ह���साड�सिमल"
 
-#: gtksourceview/language-specs/gtkrc.lang.h:11
-msgid "State"
-msgstr "स�थिति�"
+#: ../gtksourceview/language-specs/xml.lang.h:9
+msgid "XML"
+msgstr "XML"
 
diff -pruN 1.8.1-2/po/pl.po 1.8.2-0ubuntu1/po/pl.po
--- 1.8.1-2/po/pl.po	2006-08-16 23:17:41.000000000 +0100
+++ 1.8.2-0ubuntu1/po/pl.po	2006-12-05 17:02:50.000000000 +0000
@@ -12,7 +12,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: gtksourceview.HEAD.pl\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2006-08-17 00:18+0200\n"
+"POT-Creation-Date: 2006-11-12 16:28+0100\n"
 "PO-Revision-Date: 2006-08-15 17:17+0200\n"
 "Last-Translator: Artur Flinta <aflinta at kernel pl>\n"
 "Language-Team: Polish <translators gnomepl org>\n"
@@ -285,7 +285,7 @@ msgstr "Preprocesor"
 #: ../gtksourceview/language-specs/fortran.lang.h:14
 #: ../gtksourceview/language-specs/haskell.lang.h:31
 #: ../gtksourceview/language-specs/idl.lang.h:9
-#: ../gtksourceview/language-specs/java.lang.h:11
+#: ../gtksourceview/language-specs/java.lang.h:12
 #: ../gtksourceview/language-specs/javascript.lang.h:23
 #: ../gtksourceview/language-specs/lua.lang.h:10
 #: ../gtksourceview/language-specs/makefile.lang.h:8
@@ -494,7 +494,7 @@ msgstr "StaÅ?a znakowa"
 #: ../gtksourceview/language-specs/haskell.lang.h:10
 #: ../gtksourceview/language-specs/idl.lang.h:5
 #: ../gtksourceview/language-specs/ini.lang.h:8
-#: ../gtksourceview/language-specs/java.lang.h:5
+#: ../gtksourceview/language-specs/java.lang.h:6
 #: ../gtksourceview/language-specs/javascript.lang.h:13
 #: ../gtksourceview/language-specs/lua.lang.h:4
 #: ../gtksourceview/language-specs/makefile.lang.h:4
@@ -544,7 +544,7 @@ msgstr "SÅ?owo kluczowe preprocesora"
 #: ../gtksourceview/language-specs/fortran.lang.h:13
 #: ../gtksourceview/language-specs/haskell.lang.h:13
 #: ../gtksourceview/language-specs/idl.lang.h:8
-#: ../gtksourceview/language-specs/java.lang.h:10
+#: ../gtksourceview/language-specs/java.lang.h:11
 #: ../gtksourceview/language-specs/makefile.lang.h:6
 #: ../gtksourceview/language-specs/nemerle.lang.h:14
 #: ../gtksourceview/language-specs/pascal.lang.h:17
@@ -724,7 +724,7 @@ msgid "Multiline String"
 msgstr "Wielowierszowy ciÄ?g znaków"
 
 #: ../gtksourceview/language-specs/csharp.lang.h:7
-#: ../gtksourceview/language-specs/java.lang.h:9
+#: ../gtksourceview/language-specs/java.lang.h:10
 #: ../gtksourceview/language-specs/nemerle.lang.h:13
 #: ../gtksourceview/language-specs/vbnet.lang.h:9
 msgid "Primitives"
@@ -733,7 +733,7 @@ msgstr "Typy PoczÄ?tkowe"
 #: ../gtksourceview/language-specs/csharp.lang.h:10
 #: ../gtksourceview/language-specs/css.lang.h:59
 #: ../gtksourceview/language-specs/fortran.lang.h:15
-#: ../gtksourceview/language-specs/java.lang.h:12
+#: ../gtksourceview/language-specs/java.lang.h:13
 #: ../gtksourceview/language-specs/javascript.lang.h:24
 #: ../gtksourceview/language-specs/lua.lang.h:11
 #: ../gtksourceview/language-specs/makefile.lang.h:9
@@ -1077,18 +1077,23 @@ msgid "Flow"
 msgstr "PrzepÅ?yw"
 
 #: ../gtksourceview/language-specs/java.lang.h:4
+#: ../gtksourceview/language-specs/javascript.lang.h:7
+msgid "Future Reserved Words"
+msgstr "SÅ?owa zarezerwowane na przyszÅ?oÅ?Ä?"
+
+#: ../gtksourceview/language-specs/java.lang.h:5
 msgid "Java"
 msgstr "Java"
 
-#: ../gtksourceview/language-specs/java.lang.h:6
+#: ../gtksourceview/language-specs/java.lang.h:7
 msgid "Memory"
 msgstr "PamiÄ?Ä?"
 
-#: ../gtksourceview/language-specs/java.lang.h:7
+#: ../gtksourceview/language-specs/java.lang.h:8
 msgid "Modifiers"
 msgstr "Modyfikatory"
 
-#: ../gtksourceview/language-specs/java.lang.h:8
+#: ../gtksourceview/language-specs/java.lang.h:9
 msgid "Numeric"
 msgstr "Typy Numeryczne"
 
@@ -1113,10 +1118,6 @@ msgstr "Liczba zmiennoprzecinkowa"
 msgid "Flow Keywords"
 msgstr "SÅ?owa kluczowe przepÅ?ywu"
 
-#: ../gtksourceview/language-specs/javascript.lang.h:7
-msgid "Future Reserved Words"
-msgstr "SÅ?owa zarezerwowane na przyszÅ?oÅ?Ä?"
-
 #: ../gtksourceview/language-specs/javascript.lang.h:8
 msgid "Global Functions"
 msgstr "Funkcje globalne"
diff -pruN 1.8.1-2/README 1.8.2-0ubuntu1/README
--- 1.8.1-2/README	2006-10-01 18:55:43.000000000 +0100
+++ 1.8.2-0ubuntu1/README	2006-12-13 12:01:13.000000000 +0000
@@ -1,7 +1,7 @@
 General Information
 ===================
 
-This is version 1.8.1 of GtkSourceView. 
+This is version 1.8.2 of GtkSourceView. 
 
 GtkSourceView is a text widget that extends the standard gtk+ 2.x 
 text widget GtkTextView.
@@ -26,8 +26,8 @@ GtkSourceView requires GTK+-2.8.x, libxm
 
 Simple install procedure:
 
-  % gzip -cd gtksourceview-1.8.1.tar.gz | tar xvf -    # unpack the sources
-  % cd gtksourceview-1.8.1		   # change to the toplevel directory
+  % gzip -cd gtksourceview-1.8.2.tar.gz | tar xvf -    # unpack the sources
+  % cd gtksourceview-1.8.2		   # change to the toplevel directory
   % ./configure				   # run the `configure' script
   % make				   # build gtksourceview
   [ Become root if necessary ]


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]