[prev in list] [next in list] [prev in thread] [next in thread] 

List:       grass-commit
Subject:    [GRASS-SVN] r67446 - in grass/trunk: . general/g.message gui/wxpython/iscatt gui/wxpython/mapwin lib
From:       svn_grass () osgeo ! org
Date:       2015-12-31 8:19:29
Message-ID: 20151231081932.9E2AE39012E () trac ! osgeo ! org
[Download RAW message or body]

Author: neteler
Date: 2015-12-31 00:19:29 -0800 (Thu, 31 Dec 2015)
New Revision: 67446

Modified:
   grass/trunk/binaryInstall.src
   grass/trunk/general/g.message/g.message.html
   grass/trunk/gui/wxpython/iscatt/controllers.py
   grass/trunk/gui/wxpython/mapwin/base.py
   grass/trunk/lib/init/grass7.html
   grass/trunk/lib/ogsf/gs.c
   grass/trunk/lib/python/ctypes/ctypesgencore/parser/cparser.py
   grass/trunk/lib/python/gunittest/utils.py
   grass/trunk/lib/python/imaging/images2avi.py
   grass/trunk/lib/vector/Vlib/box.c
   grass/trunk/locale/po/grassmods_ar.po
   grass/trunk/locale/po/grassmods_cs.po
   grass/trunk/locale/po/grassmods_de.po
   grass/trunk/locale/po/grassmods_el.po
   grass/trunk/locale/po/grassmods_es.po
   grass/trunk/locale/po/grassmods_fi.po
   grass/trunk/locale/po/grassmods_fr.po
   grass/trunk/locale/po/grassmods_it.po
   grass/trunk/locale/po/grassmods_ja.po
   grass/trunk/locale/po/grassmods_ko.po
   grass/trunk/locale/po/grassmods_lv.po
   grass/trunk/locale/po/grassmods_pl.po
   grass/trunk/locale/po/grassmods_pt.po
   grass/trunk/locale/po/grassmods_pt_br.po
   grass/trunk/locale/po/grassmods_ro.po
   grass/trunk/locale/po/grassmods_ru.po
   grass/trunk/locale/po/grassmods_sl.po
   grass/trunk/locale/po/grassmods_th.po
   grass/trunk/locale/po/grassmods_tr.po
   grass/trunk/locale/po/grassmods_vi.po
   grass/trunk/locale/po/grassmods_zh.po
   grass/trunk/locale/po/grasswxpy_cs.po
   grass/trunk/locale/po/grasswxpy_de.po
   grass/trunk/locale/po/grasswxpy_el.po
   grass/trunk/locale/po/grasswxpy_es.po
   grass/trunk/locale/po/grasswxpy_fi.po
   grass/trunk/locale/po/grasswxpy_fr.po
   grass/trunk/locale/po/grasswxpy_id.po
   grass/trunk/locale/po/grasswxpy_it.po
   grass/trunk/locale/po/grasswxpy_ja.po
   grass/trunk/locale/po/grasswxpy_ko.po
   grass/trunk/locale/po/grasswxpy_lv.po
   grass/trunk/locale/po/grasswxpy_ml.po
   grass/trunk/locale/po/grasswxpy_pl.po
   grass/trunk/locale/po/grasswxpy_pt.po
   grass/trunk/locale/po/grasswxpy_pt_br.po
   grass/trunk/locale/po/grasswxpy_ro.po
   grass/trunk/locale/po/grasswxpy_ru.po
   grass/trunk/locale/po/grasswxpy_th.po
   grass/trunk/locale/po/grasswxpy_tr.po
   grass/trunk/locale/po/grasswxpy_vi.po
   grass/trunk/locale/po/grasswxpy_zh.po
   grass/trunk/raster/r.basins.fill/main.c
   grass/trunk/raster/r.out.gdal/r.out.gdal.html
   grass/trunk/raster/r.statistics/r.statistics.html
   grass/trunk/raster3d/r3.in.v5d/v5d.c
   grass/trunk/raster3d/r3.out.v5d/v5d.c
   grass/trunk/scripts/r.fillnulls/r.fillnulls.html
   grass/trunk/vector/v.out.ascii/main.c
   grass/trunk/vector/v.perturb/normalrs.c
   grass/trunk/vector/v.perturb/normalsv.c
Log:
various typos fixed (via Debian lintian QA tool, contributor: sebastic; trac #2841)

Modified: grass/trunk/binaryInstall.src
===================================================================
--- grass/trunk/binaryInstall.src	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/binaryInstall.src	2015-12-31 08:19:29 UTC (rev 67446)
@@ -193,7 +193,7 @@
     mkdir -p $BINDIR
     
     if [ $? -ne 0 ] ; then
-	echo "An error occured trying to create $BINDIR ! Exiting."
+	echo "An error occurred trying to create $BINDIR ! Exiting."
 	exit
     fi
 fi
@@ -227,7 +227,7 @@
     mkdir -p $DESTDIR
     
     if [ $? -ne 0 ] ; then
-    	echo "An error occured trying to create $DESTDIR! Exiting."
+    	echo "An error occurred trying to create $DESTDIR! Exiting."
     	exit
     fi
 else
@@ -273,7 +273,7 @@
 PACK_FILE=`echo $PACKAGE_DIR/$PACKAGE_NAME | sed 's+^//+/+g'`
 cd $DESTDIR; $UNPACK -c $PACK_FILE | tar -xf -
 if [ $? -eq 1 ] ; then
-    echo "An error occured or user break while installing binaries! Exiting."
+    echo "An error occurred or user break while installing binaries! Exiting."
     exit
 fi
 
@@ -288,7 +288,7 @@
 sed -e "s#@GISBASE@#$DESTDIR#g" \
     $DESTDIR/$GRASSPRG.tmp > $BINDIR/grass-$NAME_VER
 if [ $? -eq 1 ] ; then
-  echo "An error occured trying to create the grass start script! Exiting."
+  echo "An error occurred trying to create the grass start script! Exiting."
   echo "You probably do not have permission to install into $BINDIR."
   echo "You may need to be the root user to install in that directory."
   exit
@@ -298,7 +298,7 @@
 chmod ugo+x $BINDIR/grass-$NAME_VER
 
 if [ $? -eq 1 ] ; then
-    echo "An error occured trying to create the grass start script! Exiting."
+    echo "An error occurred trying to create the grass start script! Exiting."
     echo "You probably do not have permission to install into $BINDIR."
     echo "You may need to be the root user to install in that directory."
     exit

Modified: grass/trunk/general/g.message/g.message.html
===================================================================
--- grass/trunk/general/g.message/g.message.html	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/general/g.message/g.message.html	2015-12-31 08:19:29 UTC (rev 67446)
@@ -41,7 +41,7 @@
 While it is known that the interactive Bash instances may treat the
 exclamation mark '<tt>!</tt>' character specifically (making single quoting
 of it necessary), it shouldn't be the case for the non-interactive
-instances of Bash. None the less, to avoid context-based confusion later on
+instances of Bash. Nonetheless, to avoid context-based confusion later on
 you are enouraged to single-quote messages that do not require
 <tt>$VARIABLE</tt> expansion.
 

Modified: grass/trunk/gui/wxpython/iscatt/controllers.py
===================================================================
--- grass/trunk/gui/wxpython/iscatt/controllers.py	2015-12-31 08:04:29 UTC (rev \
                67445)
+++ grass/trunk/gui/wxpython/iscatt/controllers.py	2015-12-31 08:19:29 UTC (rev \
67446) @@ -430,7 +430,7 @@
 
         self.render_mgr.RunningProcessDone()
         if event.exception:
-            GError(_("Error occured during computation of scatter plot \
category:\n%s"),  +            GError(_("Error occurred during computation of scatter \
plot category:\n%s"),   parent = self.guiparent, showTraceback = False)
 
         cat_id = event.ret

Modified: grass/trunk/gui/wxpython/mapwin/base.py
===================================================================
--- grass/trunk/gui/wxpython/mapwin/base.py	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/gui/wxpython/mapwin/base.py	2015-12-31 08:19:29 UTC (rev 67446)
@@ -192,7 +192,7 @@
             except:
                 handlers.remove(handler)
                 GError(parent=self,
-                       message=_("Error occured during calling of handler: %s \n"
+                       message=_("Error occurred during calling of handler: %s \n"
                                  "Handler was unregistered.") % handler.__name__)
 
         event.Skip() 
@@ -272,7 +272,7 @@
                     handlers.remove(handler)
                 except:
                     GError(parent = self,
-                           message = _("Error occured during unregistration of \
handler: %s \n \ +                           message = _("Error occurred during \
                unregistration of handler: %s \n \
                                        Handler was unregistered.") % \
handler.__name__)  handlers.remove(handler)
         
@@ -305,7 +305,7 @@
                                       % handler.__name__)
             except:
                 GError(parent = self,
-                       message = _("Error occured during unregistration of handler: \
%s \n \ +                       message = _("Error occurred during unregistration of \
                handler: %s \n \
                                        Handler was unregistered") % \
handler.__name__)  handlers.remove(handler) 
         

Modified: grass/trunk/lib/init/grass7.html
===================================================================
--- grass/trunk/lib/init/grass7.html	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/lib/init/grass7.html	2015-12-31 08:19:29 UTC (rev 67446)
@@ -102,7 +102,7 @@
 <p>Note that you will need to set these variables using the
 appropriate method required for the UNIX shell that you use (e.g. in a
 Bash shell you must <tt>export</tt> the variables for them to
-propogate).
+propagate).
 
 <h3>User Interface Environment Variable</h3>
 

Modified: grass/trunk/lib/ogsf/gs.c
===================================================================
--- grass/trunk/lib/ogsf/gs.c	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/lib/ogsf/gs.c	2015-12-31 08:19:29 UTC (rev 67446)
@@ -358,7 +358,7 @@
 }
 
 /*!
-   \brief Debugging, 256 interger values from buffer
+   \brief Debugging, 256 integer values from buffer
 
    \todo G_debug ?
 

Modified: grass/trunk/lib/python/ctypes/ctypesgencore/parser/cparser.py
===================================================================
--- grass/trunk/lib/python/ctypes/ctypesgencore/parser/cparser.py	2015-12-31 08:04:29 \
                UTC (rev 67445)
+++ grass/trunk/lib/python/ctypes/ctypesgencore/parser/cparser.py	2015-12-31 08:19:29 \
UTC (rev 67446) @@ -120,7 +120,7 @@
     # ----------------------------------------------------------------------
 
     def handle_error(self, message, filename, lineno):
-        '''A parse error occured.  
+        '''A parse error occurred.  
         
         The default implementation prints `lineno` and `message` to stderr.
         The parser will try to recover from errors by synchronising at the

Modified: grass/trunk/lib/python/gunittest/utils.py
===================================================================
--- grass/trunk/lib/python/gunittest/utils.py	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/lib/python/gunittest/utils.py	2015-12-31 08:19:29 UTC (rev 67446)
@@ -27,7 +27,7 @@
         shutil.rmtree(filename)
     except OSError as e:
         # errno.ENOENT is "No such file or directory"
-        # re-raise if a different error occured
+        # re-raise if a different error occurred
         if e.errno != errno.ENOENT:
             raise
 

Modified: grass/trunk/lib/python/imaging/images2avi.py
===================================================================
--- grass/trunk/lib/python/imaging/images2avi.py	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/lib/python/imaging/images2avi.py	2015-12-31 08:19:29 UTC (rev 67446)
@@ -113,7 +113,7 @@
     outPut = S.stdout.read()
 
     if S.wait():
-        # An error occured, show
+        # An error occurred, show
         print(outPut)
         print(S.stderr.read())
         # Clean up
@@ -158,7 +158,7 @@
     outPut = S.stdout.read()
 
     if S.wait():
-        # An error occured, show
+        # An error occurred, show
         print(outPut)
         print(S.stderr.read())
         # Clean up

Modified: grass/trunk/lib/vector/Vlib/box.c
===================================================================
--- grass/trunk/lib/vector/Vlib/box.c	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/lib/vector/Vlib/box.c	2015-12-31 08:19:29 UTC (rev 67446)
@@ -161,7 +161,7 @@
  *  \param c_x,c_y coordinates (s, n)
  *  \param Box boundary box
  *
- *  \return 1 if any clipping occured
+ *  \return 1 if any clipping occurred
  *  \return 0 otherwise
  */
 int Vect_box_clip(double *x, double *y, double *c_x, double *c_y, const struct \
bound_box *Box)

Modified: grass/trunk/locale/po/grassmods_ar.po
===================================================================
--- grass/trunk/locale/po/grassmods_ar.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_ar.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -38588,7 +38588,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "%-5d تم تخطى فئات النقط الميت\n"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -39903,11 +39903,11 @@
 msgstr "لم بمكن قراءة معلومات الحقل"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_cs.po
===================================================================
--- grass/trunk/locale/po/grassmods_cs.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_cs.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -38975,7 +38975,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "Žádné prvky nejsou vybrány, není co editovat"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -40320,11 +40320,11 @@
 msgstr "Nelze dostat informace o odkazu na databázi"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr "normalsv: obnovení neiniciovaného bloku"
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr "normalsv: uložení neiniciovaného bloku"
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_de.po
===================================================================
--- grass/trunk/locale/po/grassmods_de.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_de.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -39117,7 +39117,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "Keine Feature selektiert, nix zu editieren."
 
 #: ../vector/v.out.dxf/main.c:58
@@ -40500,11 +40500,11 @@
 msgstr "Kann die Informationen zu Datenbankverbindung nicht lesen."
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr "normalsv: Restaurierung eines uninitialisierten Blocks."
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr "normalsv: Speichere uninitialisierten Block."
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_el.po
===================================================================
--- grass/trunk/locale/po/grassmods_el.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_el.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -37083,7 +37083,7 @@
 msgstr ""
 
 #: ../vector/v.out.ascii/main.c:163
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr ""
 
 #: ../vector/v.out.dxf/main.c:58
@@ -38352,11 +38352,11 @@
 msgstr ""
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_es.po
===================================================================
--- grass/trunk/locale/po/grassmods_es.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_es.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -39230,7 +39230,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "Ningún elemento seleccionado, nada que editar"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -40622,11 +40622,11 @@
 msgstr "No se puede obtener leer la información del enlace a la base de datos"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr "normalsv: restauración de bloque no inicializado"
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr "normalsv: guardar bloque no inicializado"
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_fi.po
===================================================================
--- grass/trunk/locale/po/grassmods_fi.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_fi.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -35578,7 +35578,7 @@
 msgstr ""
 
 #: ../vector/v.out.ascii/main.c:163
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr ""
 
 #: ../vector/v.out.dxf/main.c:58
@@ -36809,11 +36809,11 @@
 msgstr ""
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_fr.po
===================================================================
--- grass/trunk/locale/po/grassmods_fr.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_fr.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -40943,7 +40943,7 @@
 # c-format
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "%d points sans catégorie"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -42422,11 +42422,11 @@
 msgstr "Impossible de lire les informations de liaison   la base de données"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_it.po
===================================================================
--- grass/trunk/locale/po/grassmods_it.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_it.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -38392,7 +38392,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "%d punti senza categoria non considerati"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -39728,11 +39728,11 @@
 msgstr ""
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_ja.po
===================================================================
--- grass/trunk/locale/po/grassmods_ja.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_ja.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -38435,7 +38435,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "出力ファイルの上書き"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -39775,11 +39775,11 @@
 msgstr "dbリンク情 を取得できません"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr "normalsv: 初期化解除されたブロックの修復"
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr "normalsv: 初期化されていないブロックの保存"
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_ko.po
===================================================================
--- grass/trunk/locale/po/grassmods_ko.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_ko.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -37297,7 +37297,7 @@
 msgstr ""
 
 #: ../vector/v.out.ascii/main.c:163
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr ""
 
 #: ../vector/v.out.dxf/main.c:58
@@ -38577,11 +38577,11 @@
 msgstr ""
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_lv.po
===================================================================
--- grass/trunk/locale/po/grassmods_lv.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_lv.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -38420,7 +38420,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "%-5d mirušo/neizmantoto punktu kategorijas izlaistas\n"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -39775,11 +39775,11 @@
 msgstr "Nevar nolasīt faila informāciju"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_pl.po
===================================================================
--- grass/trunk/locale/po/grassmods_pl.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_pl.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -38498,7 +38498,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "Edytować plik kategorii dla [%s]? "
 
 #: ../vector/v.out.dxf/main.c:58
@@ -39808,11 +39808,11 @@
 msgstr "Nie można pobrać informacji o odnośniku do bazy danych"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_pt.po
===================================================================
--- grass/trunk/locale/po/grassmods_pt.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_pt.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -39576,7 +39576,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "%d pontos sem categoria"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -40989,11 +40989,11 @@
 msgstr "No consegui obter informaes sobre a ligao ao BD"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_pt_br.po
===================================================================
--- grass/trunk/locale/po/grassmods_pt_br.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_pt_br.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -39486,7 +39486,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "%d pontos sem categoria"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -40898,11 +40898,11 @@
 msgstr "No consegui obter informaes sobre a ligao ao BD"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_ro.po
===================================================================
--- grass/trunk/locale/po/grassmods_ro.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_ro.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -36175,7 +36175,7 @@
 msgstr ""
 
 #: ../vector/v.out.ascii/main.c:163
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr ""
 
 #: ../vector/v.out.dxf/main.c:58
@@ -37416,11 +37416,11 @@
 msgstr ""
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_ru.po
===================================================================
--- grass/trunk/locale/po/grassmods_ru.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_ru.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -39133,7 +39133,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "Объекты не выделены, нечего \
редактировать"  
 #: ../vector/v.out.dxf/main.c:58
@@ -40491,11 +40491,11 @@
 msgstr "Невозможно получить информацию о связи с \
БД"  
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr "normalsv: восстановление \
неиннициализированного блока"  
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr "normalsv: сохранение неиннициализированного \
блока"  
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_sl.po
===================================================================
--- grass/trunk/locale/po/grassmods_sl.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_sl.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -38866,7 +38866,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "%-5d mrtvih kategorij tok preskoenih\n"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -40182,11 +40182,11 @@
 msgstr "Ne morem prebrati informacije polja"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_th.po
===================================================================
--- grass/trunk/locale/po/grassmods_th.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_th.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -38710,7 +38710,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "ไม่มีข้อมูลถูกเลือก, \
ไม่มีอะไรจะแก้ไข"  
 #: ../vector/v.out.dxf/main.c:58
@@ -40032,12 +40032,12 @@
 msgstr "ไม่สามารถอ่าน ข้อมูล db link"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
-msgstr "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
+msgstr "normalsv: restoration of uninitialized block"
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
-msgstr "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
+msgstr "normalsv: save of uninitialized block"
 
 #: ../vector/v.proj/main.c:71
 #, fuzzy

Modified: grass/trunk/locale/po/grassmods_tr.po
===================================================================
--- grass/trunk/locale/po/grassmods_tr.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_tr.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -37977,7 +37977,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "Hiç obje seçilmedi, hiçbirşey düzenlenmeyecek"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -39266,11 +39266,11 @@
 msgstr "Veritabanı bağlantı bilgisi alınamıyor"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_vi.po
===================================================================
--- grass/trunk/locale/po/grassmods_vi.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_vi.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -39131,7 +39131,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "Không có đối tượng n o được chọn, không có gì để \
chỉnh sửa"  
 #: ../vector/v.out.dxf/main.c:58
@@ -40500,11 +40500,11 @@
 msgstr "Không thể lấy thông tin liên kết csdl"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr "normalsv: phục hồi các khối không được khởi tạo"
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr "normalsv: lưu các khối không được khởi tạo"
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grassmods_zh.po
===================================================================
--- grass/trunk/locale/po/grassmods_zh.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grassmods_zh.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -38768,7 +38768,7 @@
 
 #: ../vector/v.out.ascii/main.c:163
 #, fuzzy
-msgid "An error occured, nothing to be exported"
+msgid "An error occurred, nothing to be exported"
 msgstr "%d 个点没有类别,将被忽略"
 
 #: ../vector/v.out.dxf/main.c:58
@@ -40111,11 +40111,11 @@
 msgstr " 法读取字段信息"
 
 #: ../vector/v.perturb/normalrs.c:31
-msgid "normalsv: restoration of unitialized block"
+msgid "normalsv: restoration of uninitialized block"
 msgstr ""
 
 #: ../vector/v.perturb/normalsv.c:29
-msgid "normalsv: save of unitialized block"
+msgid "normalsv: save of uninitialized block"
 msgstr ""
 
 #: ../vector/v.proj/main.c:71

Modified: grass/trunk/locale/po/grasswxpy_cs.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_cs.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_cs.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5798,7 +5798,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7967,14 +7967,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7986,7 +7986,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_de.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_de.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_de.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5785,7 +5785,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7959,14 +7959,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7978,7 +7978,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_el.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_el.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_el.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5551,7 +5551,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7626,14 +7626,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7645,7 +7645,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_es.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_es.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_es.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5867,7 +5867,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -8080,14 +8080,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -8099,7 +8099,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_fi.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_fi.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_fi.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5395,7 +5395,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7390,14 +7390,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7409,7 +7409,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_fr.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_fr.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_fr.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5748,7 +5748,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 "Une erreur est survenue lors du calcul de la catégorie du nuage de points :\n"
@@ -7880,14 +7880,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7899,7 +7899,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_id.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_id.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_id.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5999,7 +5999,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -8208,14 +8208,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -8227,7 +8227,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_it.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_it.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_it.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5626,7 +5626,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 "Un errore è occorso durante la creazione della categoria dello scatter "
@@ -7708,14 +7708,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7727,7 +7727,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_ja.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_ja.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_ja.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5824,7 +5824,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7988,14 +7988,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -8007,7 +8007,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_ko.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_ko.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_ko.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5388,7 +5388,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7383,14 +7383,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7402,7 +7402,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_lv.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_lv.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_lv.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5513,7 +5513,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7570,14 +7570,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7589,7 +7589,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_ml.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_ml.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_ml.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5726,7 +5726,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7876,14 +7876,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7895,7 +7895,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_pl.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_pl.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_pl.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5697,7 +5697,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7829,14 +7829,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7848,7 +7848,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_pt.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_pt.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_pt.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5995,7 +5995,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -8215,14 +8215,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -8234,7 +8234,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_pt_br.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_pt_br.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_pt_br.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -6125,7 +6125,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -8398,14 +8398,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -8417,7 +8417,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_ro.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_ro.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_ro.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5814,7 +5814,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7995,14 +7995,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -8014,7 +8014,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_ru.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_ru.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_ru.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5958,7 +5958,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -8163,14 +8163,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -8182,7 +8182,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_th.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_th.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_th.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5715,7 +5715,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -7818,14 +7818,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7837,7 +7837,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_tr.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_tr.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_tr.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5960,7 +5960,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -8173,14 +8173,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -8192,7 +8192,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_vi.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_vi.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_vi.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5953,7 +5953,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 
@@ -8169,14 +8169,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -8188,7 +8188,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/locale/po/grasswxpy_zh.po
===================================================================
--- grass/trunk/locale/po/grasswxpy_zh.po	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/locale/po/grasswxpy_zh.po	2015-12-31 08:19:29 UTC (rev 67446)
@@ -5811,7 +5811,7 @@
 #: ../gui/wxpython/iscatt/controllers.py:433
 #, python-format
 msgid ""
-"Error occured during computation of scatter plot category:\n"
+"Error occurred during computation of scatter plot category:\n"
 "%s"
 msgstr ""
 "计算散点图类别时发生错误:\n"
@@ -7967,14 +7967,14 @@
 #: ../gui/wxpython/mapwin/base.py:195
 #, python-format
 msgid ""
-"Error occured during calling of handler: %s \n"
+"Error occurred during calling of handler: %s \n"
 "Handler was unregistered."
 msgstr ""
 
 #: ../gui/wxpython/mapwin/base.py:275
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered."
 msgstr ""
 
@@ -7986,7 +7986,7 @@
 #: ../gui/wxpython/mapwin/base.py:308
 #, python-format
 msgid ""
-"Error occured during unregistration of handler: %s \n"
+"Error occurred during unregistration of handler: %s \n"
 "                                        Handler was unregistered"
 msgstr ""
 

Modified: grass/trunk/raster/r.basins.fill/main.c
===================================================================
--- grass/trunk/raster/r.basins.fill/main.c	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/raster/r.basins.fill/main.c	2015-12-31 08:19:29 UTC (rev 67446)
@@ -17,7 +17,7 @@
 ****************************************************************************/
 
 /*====================================================================*/
-/* program to propogate the link label into the hillslope areas;      */
+/* program to propagate the link label into the hillslope areas;      */
 /* processes CELL files only and works on window derived from link    */
 /* label map                                                          */
 

Modified: grass/trunk/raster/r.out.gdal/r.out.gdal.html
===================================================================
--- grass/trunk/raster/r.out.gdal/r.out.gdal.html	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/raster/r.out.gdal/r.out.gdal.html	2015-12-31 08:19:29 UTC (rev 67446)
@@ -3,7 +3,7 @@
 <em>r.out.gdal</em> allows a user to export a GRASS raster map layer
 into any GDAL supported raster map format. If a GRASS raster map is
 exported for a particular application, the application's native format
-would be preferrable. GeoTIFF is supported by a wide range of
+would be preferable. GeoTIFF is supported by a wide range of
 applications (see also <b>NOTES</b> on GeoTIFF below).
 <p>To specify multiple creation options use a comma separated list
 (<em>createopt="TFW=YES,COMPRESS=DEFLATE"</em>).

Modified: grass/trunk/raster/r.statistics/r.statistics.html
===================================================================
--- grass/trunk/raster/r.statistics/r.statistics.html	2015-12-31 08:04:29 UTC (rev \
                67445)
+++ grass/trunk/raster/r.statistics/r.statistics.html	2015-12-31 08:19:29 UTC (rev \
67446) @@ -29,7 +29,7 @@
 The calculations will be performed on each area of data of the
 cover layers which fall within each unique value, or category, of the base layer.
 <p>Setting the <em>-c</em> flag the category lables of the covering raster
-layer will be used.  This is nice to avoid the GRASS limitation to interger
+layer will be used.  This is nice to avoid the GRASS limitation to integer
 in raster maps because using category values floating point numbers can be
 stored.
 

Modified: grass/trunk/raster3d/r3.in.v5d/v5d.c
===================================================================
--- grass/trunk/raster3d/r3.in.v5d/v5d.c	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/raster3d/r3.in.v5d/v5d.c	2015-12-31 08:19:29 UTC (rev 67446)
@@ -2866,7 +2866,7 @@
 
     for (i = 0; i < *numvars; i++) {
 	if (copy_string2(names[i], varname[i], 10) == 0) {
-	    printf("Error: unitialized varname(%d)\n", i + 1);
+	    printf("Error: uninitialized varname(%d)\n", i + 1);
 	    return 0;
 	}
     }

Modified: grass/trunk/raster3d/r3.out.v5d/v5d.c
===================================================================
--- grass/trunk/raster3d/r3.out.v5d/v5d.c	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/raster3d/r3.out.v5d/v5d.c	2015-12-31 08:19:29 UTC (rev 67446)
@@ -2868,7 +2868,7 @@
 
     for (i = 0; i < *numvars; i++) {
 	if (copy_string2(names[i], varname[i], 10) == 0) {
-	    printf("Error: unitialized varname(%d)\n", i + 1);
+	    printf("Error: uninitialized varname(%d)\n", i + 1);
 	    return 0;
 	}
     }

Modified: grass/trunk/scripts/r.fillnulls/r.fillnulls.html
===================================================================
--- grass/trunk/scripts/r.fillnulls/r.fillnulls.html	2015-12-31 08:04:29 UTC (rev \
                67445)
+++ grass/trunk/scripts/r.fillnulls/r.fillnulls.html	2015-12-31 08:19:29 UTC (rev \
67446) @@ -13,7 +13,7 @@
 Each area boundary buffer is set to three times the map resolution to get nominally
 three points around the edge. This way the algorithm interpolates into the hole with
 a trained slope and curvature at the edges, in order to avoid that such a flat plane
-is generated in a hole. The widht of edge area can be adjusted by 
+is generated in a hole. The width of edge area can be adjusted by 
 changing the edge parameter.
 <p>During the interpolation following warning may occur when using the RST \
method:<p>  <tt>

Modified: grass/trunk/vector/v.out.ascii/main.c
===================================================================
--- grass/trunk/vector/v.out.ascii/main.c	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/vector/v.out.ascii/main.c	2015-12-31 08:19:29 UTC (rev 67446)
@@ -160,7 +160,7 @@
 	}
     }
     else if (ret < 0) {
-	G_warning(_("An error occured, nothing to be exported"));
+	G_warning(_("An error occurred, nothing to be exported"));
     }
     
     if (ascii != NULL)

Modified: grass/trunk/vector/v.perturb/normalrs.c
===================================================================
--- grass/trunk/vector/v.perturb/normalrs.c	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/vector/v.perturb/normalrs.c	2015-12-31 08:19:29 UTC (rev 67446)
@@ -28,7 +28,7 @@
     zufallrs(svbox);
     klotz1_1.first = (int)svbox[608];
     if (klotz1_1.first == 0)
-	G_warning(_("normalsv: restoration of unitialized block"));
+	G_warning(_("normalsv: restoration of uninitialized block"));
     klotz1_1.xptr = (int)svbox[609];
     k = 609;
     for (i = 0; i < 1024; ++i)

Modified: grass/trunk/vector/v.perturb/normalsv.c
===================================================================
--- grass/trunk/vector/v.perturb/normalsv.c	2015-12-31 08:04:29 UTC (rev 67445)
+++ grass/trunk/vector/v.perturb/normalsv.c	2015-12-31 08:19:29 UTC (rev 67446)
@@ -26,7 +26,7 @@
     /* Parameter adjustments */
 
     if (klotz1_1.first == 0)
-	G_warning(_("normalsv: save of unitialized block"));
+	G_warning(_("normalsv: save of uninitialized block"));
 
     /* save zufall block klotz0 */
     zufallsv(svbox);


[Attachment #3 (text/plain)]

_______________________________________________
grass-commit mailing list
grass-commit@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-commit

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic