Dear ports@,

Here is an update to aspell.
Tested on amd64, sparc64, and macppc.

kind regards,
mbuhl

Index: textproc/aspell/core/Makefile
===================================================================
RCS file: /cvs/ports/textproc/aspell/core/Makefile,v
retrieving revision 1.50
diff -u -p -r1.50 Makefile
--- textproc/aspell/core/Makefile       11 Mar 2022 20:02:20 -0000      1.50
+++ textproc/aspell/core/Makefile       5 May 2022 13:09:33 -0000
@@ -1,9 +1,8 @@
 COMMENT=       spell checker designed to eventually replace Ispell
 
-DISTNAME=      aspell-0.60.6.1
-REVISION=      11
-SHARED_LIBS +=  aspell               17.0     # .16.4
-SHARED_LIBS +=  pspell               17.0     # .16.4
+DISTNAME=      aspell-0.60.8
+SHARED_LIBS +=  aspell               17.0     # 18.1
+SHARED_LIBS +=  pspell               17.0     # 18.1
 DIST_SUBDIR=   aspell
 CATEGORIES=    textproc
 
Index: textproc/aspell/core/distinfo
===================================================================
RCS file: /cvs/ports/textproc/aspell/core/distinfo,v
retrieving revision 1.7
diff -u -p -r1.7 distinfo
--- textproc/aspell/core/distinfo       18 Jan 2015 03:15:17 -0000      1.7
+++ textproc/aspell/core/distinfo       5 May 2022 09:37:29 -0000
@@ -1,4 +1,4 @@
-SHA256 (aspell/aspell-0.60.6.1.tar.gz) = 
9SWDqDpjYzcBxfcds9xAqrh7f3aylyOusnlB7/Qt9uE=
+SHA256 (aspell/aspell-0.60.8.tar.gz) = 
+bd+UVM0p1Gy5g2qtdsjSZ4mySCfXnt0Q7BSNa0CJvI=
 SHA256 (aspell/aspell6-en-7.1-0.tar.bz2) = 
/53zwujFuxnGpmB4s2oO9MTfsPy5aeKfe1NF4m10jQo=
-SIZE (aspell/aspell-0.60.6.1.tar.gz) = 1878163
+SIZE (aspell/aspell-0.60.8.tar.gz) = 3486448
 SIZE (aspell/aspell6-en-7.1-0.tar.bz2) = 175360
Index: textproc/aspell/core/patches/patch-Makefile_in
===================================================================
RCS file: /cvs/ports/textproc/aspell/core/patches/patch-Makefile_in,v
retrieving revision 1.5
diff -u -p -r1.5 patch-Makefile_in
--- textproc/aspell/core/patches/patch-Makefile_in      11 Mar 2022 20:02:20 
-0000      1.5
+++ textproc/aspell/core/patches/patch-Makefile_in      5 May 2022 12:13:20 
-0000
@@ -1,6 +1,7 @@
---- Makefile.in.orig   Mon Jul  4 10:58:49 2011
-+++ Makefile.in        Tue Jan 17 10:55:18 2012
-@@ -482,7 +482,7 @@ top_builddir = @top_builddir@
+Index: Makefile.in
+--- Makefile.in.orig
++++ Makefile.in
+@@ -667,7 +667,7 @@ top_builddir = @top_builddir@
  top_srcdir = @top_srcdir@
  AUTOMAKE_OPTIONS = foreign subdir-objects
  SUBDIRS = . po manual
@@ -8,4 +9,13 @@
 +DIST_SUBDIRS = ${SUBDIRS} myspell lib5
  filterdir = ${pkglibdir}
  optdir = ${pkgdatadir}
+ 
+@@ -2053,7 +2053,7 @@ uninstall-am: uninstall-binPROGRAMS uninstall-binSCRIP
+ # settings.h added as a dependency so it will get recreated if
+ #   the COMPILE_IN_FILTERS option changes
+ gen/static_filters.src.cpp: ${static_optfiles} gen/mk-static-filter.pl 
gen/settings.h
+-      ${PERLPROG} ${srcdir}/gen/mk-static-filter.pl $(addprefix 
${srcdir}/,${static_optfiles})
++      ${PERLPROG} ${srcdir}/gen/mk-static-filter.pl 
${srcdir}/${static_optfiles}
+ 
+ ${srcdir}/lib/new_filter.cpp: gen/static_filters.src.cpp
  
Index: textproc/aspell/core/patches/patch-common_cache-t_hpp
===================================================================
RCS file: textproc/aspell/core/patches/patch-common_cache-t_hpp
diff -N textproc/aspell/core/patches/patch-common_cache-t_hpp
--- textproc/aspell/core/patches/patch-common_cache-t_hpp       11 Mar 2022 
20:02:20 -0000      1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,14 +0,0 @@
-Fix segfault when building dictionaries on macppc
-see https://github.com/GNUAspell/aspell/pull/532
-
-Index: common/cache-t.hpp
---- common/cache-t.hpp.orig
-+++ common/cache-t.hpp
-@@ -16,6 +16,7 @@ class GlobalCacheBase (public)
-   const char * name;
-   GlobalCacheBase * next;
-   GlobalCacheBase * * prev;
-+  static Mutex global_cache_lock;
- protected:
-   Cacheable * first;
-   void del(Cacheable * d);
Index: textproc/aspell/core/patches/patch-common_cache_cpp
===================================================================
RCS file: textproc/aspell/core/patches/patch-common_cache_cpp
diff -N textproc/aspell/core/patches/patch-common_cache_cpp
--- textproc/aspell/core/patches/patch-common_cache_cpp 11 Mar 2022 20:02:20 
-0000      1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,42 +0,0 @@
-Fix segfaults while building dictionaries on macppc
-see https://github.com/GNUAspell/aspell/pull/532
-
-Index: common/cache.cpp
---- common/cache.cpp.orig
-+++ common/cache.cpp
-@@ -5,8 +5,8 @@
- 
- namespace acommon {
- 
--static StackPtr<Mutex> global_cache_lock(new Mutex);
- static GlobalCacheBase * first_cache = 0;
-+Mutex GlobalCacheBase::global_cache_lock;
- 
- void Cacheable::copy() const
- {
-@@ -70,7 +70,7 @@ void release_cache_data(GlobalCacheBase * cache, const
- GlobalCacheBase::GlobalCacheBase(const char * n)
-   : name (n)
- {
--  LOCK(global_cache_lock);
-+  LOCK(&global_cache_lock);
-   next = first_cache;
-   prev = &first_cache;
-   if (first_cache) first_cache->prev = &next;
-@@ -80,14 +80,14 @@ GlobalCacheBase::GlobalCacheBase(const char * n)
- GlobalCacheBase::~GlobalCacheBase()
- {
-   detach_all();
--  LOCK(global_cache_lock);
-+  LOCK(&global_cache_lock);
-   *prev = next;
-   if (next) next->prev = prev;
- }
- 
- bool reset_cache(const char * which)
- {
--  LOCK(global_cache_lock);
-+  LOCK(&GlobalCacheBase::global_cache_lock);
-   bool any = false;
-   for (GlobalCacheBase * i = first_cache; i; i = i->next)
-   {
Index: textproc/aspell/core/patches/patch-common_objstack_hpp
===================================================================
RCS file: textproc/aspell/core/patches/patch-common_objstack_hpp
diff -N textproc/aspell/core/patches/patch-common_objstack_hpp
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ textproc/aspell/core/patches/patch-common_objstack_hpp      5 May 2022 
12:52:29 -0000
@@ -0,0 +1,88 @@
+objstack: assert that the alloc size will fit within a chunk
+to prevent a buffer overflow
+https://github.com/GNUAspell/aspell/commit/0718b375425aad8e54e1150313b862e4c6fd324a
+
+Index: common/objstack.hpp
+--- common/objstack.hpp.orig
++++ common/objstack.hpp
+@@ -5,6 +5,7 @@
+ #include "parm_string.hpp"
+ #include <stdlib.h>
+ #include <assert.h>
++#include <stddef.h>
+ 
+ namespace acommon {
+ 
+@@ -26,6 +27,12 @@ class ObjStack
+   byte * temp_end;
+   void setup_chunk();
+   void new_chunk();
++  bool will_overflow(size_t sz) const {
++    return offsetof(Node,data) + sz > chunk_size;
++  }
++  void check_size(size_t sz) {
++    assert(!will_overflow(sz));
++  }
+ 
+   ObjStack(const ObjStack &);
+   void operator=(const ObjStack &);
+@@ -56,7 +63,7 @@ class ObjStack
+   void * alloc_bottom(size_t size)  {
+     byte * tmp = bottom;
+     bottom += size;
+-    if (bottom > top) {new_chunk(); tmp = bottom; bottom += size;}
++    if (bottom > top) {check_size(size); new_chunk(); tmp = bottom; bottom += 
size;}
+     return tmp;
+   }
+   // This alloc_bottom will insure that the object is aligned based on the
+@@ -66,7 +73,7 @@ class ObjStack
+     align_bottom(align);
+     byte * tmp = bottom;
+     bottom += size;
+-    if (bottom > top) {new_chunk(); goto loop;}
++    if (bottom > top) {check_size(size); new_chunk(); goto loop;}
+     return tmp;
+   }
+   char * dup_bottom(ParmString str) {
+@@ -79,7 +86,7 @@ class ObjStack
+   // always be aligned as such.
+   void * alloc_top(size_t size) {
+     top -= size;
+-    if (top < bottom) {new_chunk(); top -= size;}
++    if (top < bottom) {check_size(size); new_chunk(); top -= size;}
+     return top;
+   }
+   // This alloc_top will insure that the object is aligned based on
+@@ -88,7 +95,7 @@ class ObjStack
+   {loop:
+     top -= size;
+     align_top(align);
+-    if (top < bottom) {new_chunk(); goto loop;}
++    if (top < bottom) {check_size(size); new_chunk(); goto loop;}
+     return top;
+   }
+   char * dup_top(ParmString str) {
+@@ -117,6 +124,7 @@ class ObjStack
+   void * alloc_temp(size_t size) {
+     temp_end = bottom + size;
+     if (temp_end > top) {
++      check_size(size);
+       new_chunk();
+       temp_end = bottom + size;
+     }
+@@ -131,6 +139,7 @@ class ObjStack
+     } else {
+       size_t s = temp_end - bottom;
+       byte * p = bottom;
++      check_size(size);
+       new_chunk();
+       memcpy(bottom, p, s);
+       temp_end = bottom + size;
+@@ -150,6 +159,7 @@ class ObjStack
+     } else {
+       size_t s = temp_end - bottom;
+       byte * p = bottom;
++      check_size(size);
+       new_chunk();
+       memcpy(bottom, p, s);
+       temp_end = bottom + size;
Index: textproc/aspell/core/patches/patch-configure
===================================================================
RCS file: /cvs/ports/textproc/aspell/core/patches/patch-configure,v
retrieving revision 1.8
diff -u -p -r1.8 patch-configure
--- textproc/aspell/core/patches/patch-configure        11 Mar 2022 20:02:20 
-0000      1.8
+++ textproc/aspell/core/patches/patch-configure        5 May 2022 09:58:44 
-0000
@@ -1,6 +1,7 @@
---- configure.orig     Mon Jul  4 09:58:50 2011
-+++ configure  Mon Apr 17 22:05:04 2017
-@@ -2645,7 +2645,7 @@ fi
+Index: configure
+--- configure.orig
++++ configure
+@@ -3308,7 +3308,7 @@ fi
  
  if test "$pkgdatadir" = "undef"
  then
@@ -9,17 +10,3 @@
  fi
  
  
-@@ -20216,10 +20216,10 @@ XGETTEXT!$XGETTEXT$ac_delim
- XGETTEXT_015!$XGETTEXT_015$ac_delim
- MSGMERGE!$MSGMERGE$ac_delim
- INTL_MACOSX_LIBS!$INTL_MACOSX_LIBS$ac_delim
--LIBICONV!$LIBICONV$ac_delim
-+LIBICONV!$LTLIBICONV$ac_delim
- LTLIBICONV!$LTLIBICONV$ac_delim
--INTLLIBS!$INTLLIBS$ac_delim
--LIBINTL!$LIBINTL$ac_delim
-+INTLLIBS!$LTLIBINTL$ac_delim
-+LIBINTL!$LTLIBINTL$ac_delim
- LTLIBINTL!$LTLIBINTL$ac_delim
- POSUB!$POSUB$ac_delim
- PTHREAD_LIB!$PTHREAD_LIB$ac_delim
Index: textproc/aspell/core/patches/patch-interfaces_cc_aspell_h
===================================================================
RCS file: textproc/aspell/core/patches/patch-interfaces_cc_aspell_h
diff -N textproc/aspell/core/patches/patch-interfaces_cc_aspell_h
--- textproc/aspell/core/patches/patch-interfaces_cc_aspell_h   11 Mar 2022 
20:02:20 -0000      1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,25 +0,0 @@
-fix with clang; from 
https://svnweb.freebsd.org/ports?view=revision&revision=343830
-
-should be obsoleted by upstream patch targetted for 0.60.7
-https://github.com/GNUAspell/aspell/commit/502e8f99a9c7c63344f5acdcb96ddecd30ee32f1
-
---- interfaces/cc/aspell.h.orig        Sat Jul  2 22:53:27 2011
-+++ interfaces/cc/aspell.h     Mon Apr 17 22:05:44 2017
-@@ -236,7 +236,7 @@ void delete_aspell_can_have_error(struct AspellCanHave
- 
- /******************************** errors ********************************/
- 
--
-+#ifndef ASPELL_ERRORS__HPP
- extern const struct AspellErrorInfo * const aerror_other;
- extern const struct AspellErrorInfo * const aerror_operation_not_supported;
- extern const struct AspellErrorInfo * const   aerror_cant_copy;
-@@ -322,7 +322,7 @@ extern const struct AspellErrorInfo * const   aerror_m
- extern const struct AspellErrorInfo * const   aerror_bad_magic;
- extern const struct AspellErrorInfo * const aerror_expression;
- extern const struct AspellErrorInfo * const   aerror_invalid_expression;
--
-+#endif
- 
- /******************************* speller *******************************/
- 
Index: textproc/aspell/core/patches/patch-modules_filter_tex_cpp
===================================================================
RCS file: textproc/aspell/core/patches/patch-modules_filter_tex_cpp
diff -N textproc/aspell/core/patches/patch-modules_filter_tex_cpp
--- textproc/aspell/core/patches/patch-modules_filter_tex_cpp   11 Mar 2022 
20:02:20 -0000      1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,15 +0,0 @@
-Fix compilation with clang 6.
-https://git.savannah.gnu.org/cgit/aspell.git/patch/?id=8089fa02122fed0a6394eba14bbedcb1d18e2384
-
-Index: modules/filter/tex.cpp
---- modules/filter/tex.cpp.orig
-+++ modules/filter/tex.cpp
-@@ -174,7 +174,7 @@ namespace {
- 
-     if (c == '{') {
- 
--      if (top.in_what == Parm || top.in_what == Opt || top.do_check == '\0')
-+      if (top.in_what == Parm || top.in_what == Opt || *top.do_check == '\0')
-       push_command(Parm);
- 
-       top.in_what = Parm;
Index: textproc/aspell/core/patches/patch-modules_filter_texinfo_cpp
===================================================================
RCS file: textproc/aspell/core/patches/patch-modules_filter_texinfo_cpp
diff -N textproc/aspell/core/patches/patch-modules_filter_texinfo_cpp
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ textproc/aspell/core/patches/patch-modules_filter_texinfo_cpp       5 May 
2022 12:35:54 -0000
@@ -0,0 +1,23 @@
+texinfo filter: fix buffer overflow 
+https://github.com/GNUAspell/aspell/commit/8d964a0d4b0b4dbea46af85b97fe77096f01f456
+
+Index: modules/filter/texinfo.cpp
+--- modules/filter/texinfo.cpp.orig
++++ modules/filter/texinfo.cpp
+@@ -161,7 +161,7 @@ namespace {
+         
+       } else if (!seen_input && *cur == '\\' && stop - cur >= 6 
+                  && cur[1] == 'i' && cur[2] == 'n' && cur[3] == 'p' 
+-                 && cur[4] == 'u' && cur[5] == 't') {
++                 && cur[4] == 'u' && cur[5] == 't' /* i.e '\input' */) {
+         
+         last_command.clear();
+         for (int i = 0; i != 6; ++i)
+@@ -170,7 +170,6 @@ namespace {
+         ++ignore;
+         in_line_command = true;
+         seen_input = true;
+-        ++cur;
+ 
+       } else if (last_command == "end") {
+ 
Index: textproc/aspell/core/patches/patch-prog_aspell_cpp
===================================================================
RCS file: textproc/aspell/core/patches/patch-prog_aspell_cpp
diff -N textproc/aspell/core/patches/patch-prog_aspell_cpp
--- textproc/aspell/core/patches/patch-prog_aspell_cpp  11 Mar 2022 20:02:20 
-0000      1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,23 +0,0 @@
-fix with clang; from 
https://svnweb.freebsd.org/ports?view=revision&revision=343830
-
-should be obsoleted by upstream patch targetted for 0.60.7
-https://github.com/GNUAspell/aspell/commit/502e8f99a9c7c63344f5acdcb96ddecd30ee32f1
-
---- prog/aspell.cpp.orig       Mon Jul  4 10:13:58 2011
-+++ prog/aspell.cpp    Mon Apr 17 22:06:01 2017
-@@ -25,6 +25,7 @@
- # include <langinfo.h>
- #endif
- 
-+#include "errors.hpp"
- #include "aspell.h"
- 
- #ifdef USE_FILE_INO
-@@ -40,7 +41,6 @@
- #include "convert.hpp"
- #include "document_checker.hpp"
- #include "enumeration.hpp"
--#include "errors.hpp"
- #include "file_util.hpp"
- #include "fstream.hpp"
- #include "info.hpp"
Index: textproc/aspell/core/patches/patch-prog_check_funs_cpp
===================================================================
RCS file: textproc/aspell/core/patches/patch-prog_check_funs_cpp
diff -N textproc/aspell/core/patches/patch-prog_check_funs_cpp
--- textproc/aspell/core/patches/patch-prog_check_funs_cpp      11 Mar 2022 
20:02:20 -0000      1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,15 +0,0 @@
-Fix compilation with clang 6.
-https://git.savannah.gnu.org/cgit/aspell.git/patch/?id=8089fa02122fed0a6394eba14bbedcb1d18e2384
-
-Index: prog/check_funs.cpp
---- prog/check_funs.cpp.orig
-+++ prog/check_funs.cpp
-@@ -647,7 +647,7 @@ static void print_truncate(FILE * out, const char * wo
-     }
-   }
-   if (i == width-1) {
--    if (word == '\0')
-+    if (*word == '\0')
-       put(out,' ');
-     else if (word[len] == '\0')
-       put(out, word, len);
Index: textproc/aspell/core/patches/patch-prog_checker_string_hpp
===================================================================
RCS file: textproc/aspell/core/patches/patch-prog_checker_string_hpp
diff -N textproc/aspell/core/patches/patch-prog_checker_string_hpp
--- textproc/aspell/core/patches/patch-prog_checker_string_hpp  11 Mar 2022 
20:02:20 -0000      1.2
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,15 +0,0 @@
-fix with clang; from 
https://svnweb.freebsd.org/ports?view=revision&revision=343830
-
-should be obsoleted by upstream patch targetted for 0.60.7
-https://github.com/GNUAspell/aspell/commit/502e8f99a9c7c63344f5acdcb96ddecd30ee32f1
-
---- prog/checker_string.hpp.orig       Sat Jul  2 22:09:09 2011
-+++ prog/checker_string.hpp    Mon Apr 17 22:06:23 2017
-@@ -6,6 +6,7 @@
- 
- #include <stdio.h>
- 
-+#include "errors.hpp"
- #include "aspell.h"
- 
- #include "vector.hpp"
Index: textproc/aspell/core/pkg/PLIST
===================================================================
RCS file: /cvs/ports/textproc/aspell/core/pkg/PLIST,v
retrieving revision 1.9
diff -u -p -r1.9 PLIST
--- textproc/aspell/core/pkg/PLIST      11 Mar 2022 20:02:20 -0000      1.9
+++ textproc/aspell/core/pkg/PLIST      5 May 2022 12:21:37 -0000
@@ -73,10 +73,10 @@ lib/aspell/koi8-u.cset
 lib/aspell/spell
 lib/aspell/split.kbd
 lib/aspell/standard.kbd
-lib/libaspell.a
+@static-lib lib/libaspell.a
 lib/libaspell.la
 @lib lib/libaspell.so.${LIBaspell_VERSION}
-lib/libpspell.a
+@static-lib lib/libpspell.a
 lib/libpspell.la
 @lib lib/libpspell.so.${LIBpspell_VERSION}
 @man man/man1/aspell-import.1
@@ -162,6 +162,7 @@ share/aspell/english-w_accents.alias
 share/aspell/english-wo_accents.alias
 share/aspell/english.alias
 share/aspell/html.amf
+share/aspell/markdown.amf
 share/aspell/none.amf
 share/aspell/nroff.amf
 share/aspell/perl.amf
@@ -169,23 +170,57 @@ share/aspell/sgml.amf
 share/aspell/tex.amf
 share/aspell/texinfo.amf
 share/aspell/url.amf
+share/locale/
 share/locale/ast/
 share/locale/ast/LC_MESSAGES/
 share/locale/ast/LC_MESSAGES/aspell.mo
+share/locale/be/
+share/locale/be/LC_MESSAGES/
 share/locale/be/LC_MESSAGES/aspell.mo
+share/locale/ca/
+share/locale/ca/LC_MESSAGES/
 share/locale/ca/LC_MESSAGES/aspell.mo
+share/locale/cs/
+share/locale/cs/LC_MESSAGES/
 share/locale/cs/LC_MESSAGES/aspell.mo
+share/locale/da/
+share/locale/da/LC_MESSAGES/
 share/locale/da/LC_MESSAGES/aspell.mo
+share/locale/de/
+share/locale/de/LC_MESSAGES/
 share/locale/de/LC_MESSAGES/aspell.mo
 share/locale/en_GB/
 share/locale/en_GB/LC_MESSAGES/
 share/locale/en_GB/LC_MESSAGES/aspell.mo
+share/locale/eo/
+share/locale/eo/LC_MESSAGES/
+share/locale/eo/LC_MESSAGES/aspell.mo
+share/locale/es/
+share/locale/es/LC_MESSAGES/
 share/locale/es/LC_MESSAGES/aspell.mo
+share/locale/fi/
+share/locale/fi/LC_MESSAGES/
 share/locale/fi/LC_MESSAGES/aspell.mo
+share/locale/fr/
+share/locale/fr/LC_MESSAGES/
 share/locale/fr/LC_MESSAGES/aspell.mo
+share/locale/fur/
+share/locale/fur/LC_MESSAGES/
+share/locale/fur/LC_MESSAGES/aspell.mo
+share/locale/ga/
+share/locale/ga/LC_MESSAGES/
 share/locale/ga/LC_MESSAGES/aspell.mo
+share/locale/hr/
+share/locale/hr/LC_MESSAGES/
+share/locale/hr/LC_MESSAGES/aspell.mo
+share/locale/id/
+share/locale/id/LC_MESSAGES/
 share/locale/id/LC_MESSAGES/aspell.mo
+share/locale/it/
+share/locale/it/LC_MESSAGES/
 share/locale/it/LC_MESSAGES/aspell.mo
+share/locale/ja/
+share/locale/ja/LC_MESSAGES/
 share/locale/ja/LC_MESSAGES/aspell.mo
 share/locale/mn/
 share/locale/mn/LC_MESSAGES/
@@ -193,23 +228,51 @@ share/locale/mn/LC_MESSAGES/aspell.mo
 share/locale/ms/
 share/locale/ms/LC_MESSAGES/
 share/locale/ms/LC_MESSAGES/aspell.mo
+share/locale/nl/
+share/locale/nl/LC_MESSAGES/
 share/locale/nl/LC_MESSAGES/aspell.mo
+share/locale/pl/
+share/locale/pl/LC_MESSAGES/
+share/locale/pl/LC_MESSAGES/aspell.mo
+share/locale/pt/
+share/locale/pt/LC_MESSAGES/
+share/locale/pt/LC_MESSAGES/aspell.mo
+share/locale/pt_BR/
+share/locale/pt_BR/LC_MESSAGES/
 share/locale/pt_BR/LC_MESSAGES/aspell.mo
+share/locale/ro/
+share/locale/ro/LC_MESSAGES/
 share/locale/ro/LC_MESSAGES/aspell.mo
+share/locale/ru/
+share/locale/ru/LC_MESSAGES/
 share/locale/ru/LC_MESSAGES/aspell.mo
 share/locale/rw/
 share/locale/rw/LC_MESSAGES/
 share/locale/rw/LC_MESSAGES/aspell.mo
+share/locale/sk/
+share/locale/sk/LC_MESSAGES/
 share/locale/sk/LC_MESSAGES/aspell.mo
+share/locale/sl/
+share/locale/sl/LC_MESSAGES/
 share/locale/sl/LC_MESSAGES/aspell.mo
+share/locale/sr/
+share/locale/sr/LC_MESSAGES/
 share/locale/sr/LC_MESSAGES/aspell.mo
+share/locale/sv/
+share/locale/sv/LC_MESSAGES/
 share/locale/sv/LC_MESSAGES/aspell.mo
 share/locale/tg/
 share/locale/tg/LC_MESSAGES/
 share/locale/tg/LC_MESSAGES/aspell.mo
+share/locale/uk/
+share/locale/uk/LC_MESSAGES/
 share/locale/uk/LC_MESSAGES/aspell.mo
+share/locale/vi/
+share/locale/vi/LC_MESSAGES/
 share/locale/vi/LC_MESSAGES/aspell.mo
 share/locale/wa/
 share/locale/wa/LC_MESSAGES/
 share/locale/wa/LC_MESSAGES/aspell.mo
+share/locale/zh_CN/
+share/locale/zh_CN/LC_MESSAGES/
 share/locale/zh_CN/LC_MESSAGES/aspell.mo

Reply via email to