diff --git a/.gitignore b/.gitignore index 0bcf5ff..bee2d82 100644 --- a/.gitignore +++ b/.gitignore @@ -54,9 +54,3 @@ cracklib-2.8.16.tar.gz /cracklib-2.9.6.tar.gz /cracklib-words-2.9.6.gz /missing-words.gz -/cracklib-2.9.7.tar.gz -/cracklib-words-2.9.7.gz -/cracklib2_2.9.2-1.debian.tar.xz -/cracklib2_2.9.2-1.dsc -/cracklib-2.9.11.tar.gz -/cracklib-words-2.9.11.gz diff --git a/cracklib-2.9.0-python-gzdicts.patch b/cracklib-2.9.0-python-gzdicts.patch new file mode 100644 index 0000000..feac201 --- /dev/null +++ b/cracklib-2.9.0-python-gzdicts.patch @@ -0,0 +1,104 @@ +diff -up cracklib-2.9.0/python/_cracklib.c.gzdicts cracklib-2.9.0/python/_cracklib.c +--- cracklib-2.9.0/python/_cracklib.c.gzdicts 2013-06-01 16:47:13.000000000 +0200 ++++ cracklib-2.9.0/python/_cracklib.c 2013-08-20 12:37:32.028611493 +0200 +@@ -23,6 +23,7 @@ + * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + ++#include "config.h" + #ifdef PYTHON_H + #include PYTHON_H + #else +@@ -72,9 +73,8 @@ static char _cracklib_FascistCheck_doc [ + static PyObject * + _cracklib_FascistCheck(PyObject *self, PyObject *args, PyObject *kwargs) + { +- char *candidate, *dict; +- char *defaultdict = NULL; +- const char *result; ++ char *candidate; ++ const char *result, *dict; + struct stat st; + char *keywords[] = {"pw", "dictpath", NULL}; + char *dictfile; +@@ -103,44 +103,35 @@ _cracklib_FascistCheck(PyObject *self, P + "second argument was not an absolute path!"); + return NULL; + } +- dictfile = malloc(strlen(dict) + sizeof(DICT_SUFFIX)); +- if (dictfile == NULL) +- { +- PyErr_SetFromErrnoWithFilename(PyExc_OSError, dict); +- return NULL; +- } +- sprintf(dictfile, "%s" DICT_SUFFIX, dict); +- if (lstat(dictfile, &st) == -1) +- { +- PyErr_SetFromErrnoWithFilename(PyExc_OSError, dictfile); +- free(dictfile); +- return NULL; +- } +- free(dictfile); + } else + { +- defaultdict = strdup(GetDefaultCracklibDict()); +- if (errno == ENOMEM) { +- PyErr_SetFromErrno(PyExc_OSError); +- return NULL; +- } +- dictfile = malloc(strlen(defaultdict) + sizeof(DICT_SUFFIX)); +- if (dictfile == NULL) +- { +- PyErr_SetFromErrnoWithFilename(PyExc_OSError, defaultdict); +- free(defaultdict); +- return NULL; +- } +- sprintf(dictfile, "%s" DICT_SUFFIX, defaultdict); ++ /* No need to strdup() anything as this is a constant value */ ++ dict = GetDefaultCracklibDict(); ++ } ++ ++ dictfile = malloc(strlen(dict) + sizeof(DICT_SUFFIX) + 3); ++ if (dictfile == NULL) ++ { ++ PyErr_SetFromErrnoWithFilename(PyExc_OSError, dict); ++ return NULL; ++ } ++ sprintf(dictfile, "%s" DICT_SUFFIX, dict); ++ if (lstat(dictfile, &st) == -1) ++ { ++#ifdef HAVE_ZLIB_H ++ sprintf(dictfile, "%s" DICT_SUFFIX ".gz", dict); + if (lstat(dictfile, &st) == -1) + { ++ sprintf(dictfile, "%s" DICT_SUFFIX, dict); ++#endif + PyErr_SetFromErrnoWithFilename(PyExc_OSError, dictfile); +- free(defaultdict); + free(dictfile); + return NULL; ++#ifdef HAVE_ZLIB_H + } +- free(dictfile); ++#endif + } ++ free(dictfile); + + setlocale(LC_ALL, ""); + #ifdef ENABLE_NLS +@@ -148,14 +139,9 @@ _cracklib_FascistCheck(PyObject *self, P + #endif + + LOCK(); +- result = FascistCheck(candidate, dict ? dict : defaultdict); ++ result = FascistCheck(candidate, dict); + UNLOCK(); + +- if (defaultdict != NULL) +- { +- free(defaultdict); +- } +- + if (result != NULL) + { + PyErr_SetString(PyExc_ValueError, result); diff --git a/cracklib-2.9.1-inttypes.patch b/cracklib-2.9.1-inttypes.patch new file mode 100644 index 0000000..c8d8fe8 --- /dev/null +++ b/cracklib-2.9.1-inttypes.patch @@ -0,0 +1,22 @@ +Do not depend on config.h in public header. +diff -up cracklib-2.9.1/lib/packer.h.inttypes cracklib-2.9.1/lib/packer.h +--- cracklib-2.9.1/lib/packer.h.inttypes 2013-12-03 15:00:15.000000000 +0100 ++++ cracklib-2.9.1/lib/packer.h 2013-12-09 09:07:38.306394809 +0100 +@@ -30,17 +30,7 @@ + #define _(String) (String) + #endif + +-#if defined(HAVE_INTTYPES_H) +-#include +-#else +-#if defined(HAVE_STDINT_H) + #include +-#else +-typedef unsigned int uint32_t; +-typedef unsigned short uint16_t; +-#endif +-#endif +- + + struct pi_header + { diff --git a/cracklib-2.9.6-coverity.patch b/cracklib-2.9.6-coverity.patch new file mode 100644 index 0000000..457b55f --- /dev/null +++ b/cracklib-2.9.6-coverity.patch @@ -0,0 +1,20 @@ +diff -up cracklib-2.9.6/lib/rules.c.coverity cracklib-2.9.6/lib/rules.c +--- cracklib-2.9.6/lib/rules.c.coverity 2018-10-09 12:15:31.455187555 +0200 ++++ cracklib-2.9.6/lib/rules.c 2018-10-10 14:28:43.472740618 +0200 +@@ -774,6 +774,8 @@ Mangle(input, control, area) /* returns + } + } + } ++ break; ++ + case RULE_MLAST: + if (!ptr[1] || (ptr[1] == RULE_CLASS && !ptr[2])) + { +@@ -809,6 +811,7 @@ Mangle(input, control, area) /* returns + } + } + } ++ break; + + default: + Debug(1, "Mangle: unknown command %c in %s\n", *ptr, control); diff --git a/cracklib-2.9.6-cve-2016-6318.patch b/cracklib-2.9.6-cve-2016-6318.patch new file mode 100644 index 0000000..370b403 --- /dev/null +++ b/cracklib-2.9.6-cve-2016-6318.patch @@ -0,0 +1,144 @@ +diff -up cracklib-2.9.6/lib/fascist.c.overflow cracklib-2.9.6/lib/fascist.c +--- cracklib-2.9.6/lib/fascist.c.overflow 2015-10-23 16:58:38.403319225 +0200 ++++ cracklib-2.9.6/lib/fascist.c 2016-12-08 17:28:41.490101358 +0100 +@@ -515,7 +515,7 @@ FascistGecosUser(char *password, const c + char gbuffer[STRINGSIZE]; + char tbuffer[STRINGSIZE]; + char *uwords[STRINGSIZE]; +- char longbuffer[STRINGSIZE * 2]; ++ char longbuffer[STRINGSIZE]; + + if (gecos == NULL) + gecos = ""; +@@ -596,38 +596,47 @@ FascistGecosUser(char *password, const c + { + for (i = 0; i < j; i++) + { +- strcpy(longbuffer, uwords[i]); +- strcat(longbuffer, uwords[j]); +- +- if (GTry(longbuffer, password)) ++ if (strlen(uwords[i]) + strlen(uwords[j]) < STRINGSIZE) + { +- return _("it is derived from your password entry"); +- } +- +- strcpy(longbuffer, uwords[j]); +- strcat(longbuffer, uwords[i]); ++ strcpy(longbuffer, uwords[i]); ++ strcat(longbuffer, uwords[j]); + +- if (GTry(longbuffer, password)) +- { +- return _("it's derived from your password entry"); ++ if (GTry(longbuffer, password)) ++ { ++ return _("it is derived from your password entry"); ++ } ++ ++ strcpy(longbuffer, uwords[j]); ++ strcat(longbuffer, uwords[i]); ++ ++ if (GTry(longbuffer, password)) ++ { ++ return _("it's derived from your password entry"); ++ } + } + +- longbuffer[0] = uwords[i][0]; +- longbuffer[1] = '\0'; +- strcat(longbuffer, uwords[j]); +- +- if (GTry(longbuffer, password)) ++ if (strlen(uwords[j]) < STRINGSIZE - 1) + { +- return _("it is derivable from your password entry"); ++ longbuffer[0] = uwords[i][0]; ++ longbuffer[1] = '\0'; ++ strcat(longbuffer, uwords[j]); ++ ++ if (GTry(longbuffer, password)) ++ { ++ return _("it is derivable from your password entry"); ++ } + } + +- longbuffer[0] = uwords[j][0]; +- longbuffer[1] = '\0'; +- strcat(longbuffer, uwords[i]); +- +- if (GTry(longbuffer, password)) ++ if (strlen(uwords[i]) < STRINGSIZE - 1) + { +- return _("it's derivable from your password entry"); ++ longbuffer[0] = uwords[j][0]; ++ longbuffer[1] = '\0'; ++ strcat(longbuffer, uwords[i]); ++ ++ if (GTry(longbuffer, password)) ++ { ++ return _("it's derivable from your password entry"); ++ } + } + } + } +diff -up cracklib-2.9.6/lib/rules.c.overflow cracklib-2.9.6/lib/rules.c +--- cracklib-2.9.6/lib/rules.c.overflow 2015-10-23 16:58:38.000000000 +0200 ++++ cracklib-2.9.6/lib/rules.c 2016-12-08 18:03:27.041941297 +0100 +@@ -158,6 +158,8 @@ Pluralise(string, area) /* returns a po + register int length; + length = strlen(string); + strcpy(area, string); ++ if (length > STRINGSIZE - 3) /* we add 2 characters at worst */ ++ return (area); + + if (!Suffix(string, "ch") || + !Suffix(string, "ex") || +@@ -462,11 +464,11 @@ Mangle(input, control, area) /* returns + Pluralise(area2, area); + break; + case RULE_REFLECT: +- strcat(area, Reverse(area, area2)); ++ strncat(area, Reverse(area, area2), STRINGSIZE - strlen(area) - 1); + break; + case RULE_DUPLICATE: + strcpy(area2, area); +- strcat(area, area2); ++ strncat(area, area2, STRINGSIZE - strlen(area) - 1); + break; + case RULE_GT: + if (!ptr[1]) +@@ -514,7 +516,8 @@ Mangle(input, control, area) /* returns + } else + { + area2[0] = *(++ptr); +- strcpy(area2 + 1, area); ++ strncpy(area2 + 1, area, STRINGSIZE - 2); ++ area2[STRINGSIZE - 1] = '\0'; + strcpy(area, area2); + } + break; +@@ -528,8 +531,10 @@ Mangle(input, control, area) /* returns + register char *string; + string = area; + while (*(string++)); +- string[-1] = *(++ptr); +- *string = '\0'; ++ if (string < area + STRINGSIZE) { ++ string[-1] = *(++ptr); ++ *string = '\0'; ++ } + } + break; + case RULE_EXTRACT: +@@ -600,6 +605,10 @@ Mangle(input, control, area) /* returns + } + p1 = area; + p2 = area2; ++ if (strlen(p1) > STRINGSIZE - 2) { ++ /* truncate */ ++ p1[STRINGSIZE - 2] = '\0'; ++ } + while (i && *p1) + { + i--; diff --git a/cracklib-2.9.6-lookup.patch b/cracklib-2.9.6-lookup.patch new file mode 100644 index 0000000..52ce857 --- /dev/null +++ b/cracklib-2.9.6-lookup.patch @@ -0,0 +1,60 @@ +diff -up cracklib-2.9.6/lib/packlib.c.lookup cracklib-2.9.6/lib/packlib.c +--- cracklib-2.9.6/lib/packlib.c.lookup 2018-10-10 14:19:06.988958835 +0200 ++++ cracklib-2.9.6/lib/packlib.c 2018-11-26 16:04:34.648256614 +0100 +@@ -585,12 +585,11 @@ fprintf(stderr, "look for (%s)\n", strin + fprintf(stderr, "---- %lu, %lu ----\n", lwm, hwm); + #endif + +- middle = lwm + ((hwm - lwm + 1) / 2); +- + for (;;) + { + int cmp; + ++ middle = lwm + ((hwm - lwm + 1) / 2); + + #if DEBUG + fprintf(stderr, "lwm = %lu, middle = %lu, hwm = %lu\n", lwm, middle, hwm); +@@ -617,24 +616,28 @@ fprintf(stderr, "look for (%s)\n", strin + return(middle); + } + +- if (middle == hwm) +- { +-#if DEBUG +- fprintf(stderr, "at terminal subdivision, stopping search\n"); +-#endif +- break; +- } +- + if (cmp < 0) + { +- hwm = middle; +- middle = lwm + ((hwm - lwm ) / 2); +- } ++ if (middle == lwm) ++ { ++#if DEBUG ++ fprintf(stderr, "at terminal subdivision from right, stopping search\n"); ++#endif ++ break; ++ } ++ hwm = middle - 1; ++ } + else if (cmp > 0) + { +- lwm = middle; +- middle = lwm + ((hwm - lwm + 1) / 2); +- } ++ if (middle == hwm) ++ { ++#if DEBUG ++ fprintf(stderr, "at terminal subdivision from left, stopping search\n"); ++#endif ++ break; ++ } ++ lwm = middle + 1; ++ } + } + + return (PW_WORDS(pwp)); diff --git a/cracklib-2.9.11-packlib-reentrant.patch b/cracklib-2.9.6-packlib-reentrant.patch similarity index 78% rename from cracklib-2.9.11-packlib-reentrant.patch rename to cracklib-2.9.6-packlib-reentrant.patch index 71f23e3..9ca7fa7 100644 --- a/cracklib-2.9.11-packlib-reentrant.patch +++ b/cracklib-2.9.6-packlib-reentrant.patch @@ -1,7 +1,7 @@ -diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c ---- cracklib-2.9.11-orig/lib/fascist.c 2019-02-13 20:54:41.000000000 -0500 -+++ cracklib-2.9.11/lib/fascist.c 2023-07-07 18:20:42.239904964 -0400 -@@ -36,8 +36,8 @@ +diff -up cracklib-2.9.6/lib/fascist.c.reentrant cracklib-2.9.6/lib/fascist.c +--- cracklib-2.9.6/lib/fascist.c.reentrant 2015-08-18 20:41:16.000000000 +0200 ++++ cracklib-2.9.6/lib/fascist.c 2015-10-22 18:17:20.338290974 +0200 +@@ -36,8 +36,8 @@ typedef unsigned short uint16_t; #undef DEBUG #undef DEBUG2 @@ -12,7 +12,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c static char *r_destructors[] = { ":", /* noop - must do this to test raw word. */ -@@ -439,6 +439,8 @@ +@@ -439,6 +439,8 @@ GTry(rawtext, password) int i; int len; char *mp; @@ -21,7 +21,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c /* use destructors to turn password into rawtext */ /* note use of Reverse() to save duplicating all rules */ -@@ -447,7 +449,7 @@ +@@ -447,7 +449,7 @@ GTry(rawtext, password) for (i = 0; r_destructors[i]; i++) { @@ -30,7 +30,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c { continue; } -@@ -462,10 +464,10 @@ +@@ -462,10 +464,10 @@ GTry(rawtext, password) } #ifdef DEBUG @@ -43,7 +43,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c { return (1); } -@@ -473,7 +475,7 @@ +@@ -473,7 +475,7 @@ GTry(rawtext, password) for (i = 0; r_constructors[i]; i++) { @@ -52,7 +52,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c { continue; } -@@ -520,7 +522,7 @@ +@@ -520,7 +522,7 @@ FascistGecosUser(char *password, const c strncpy(tbuffer, gecos, STRINGSIZE); tbuffer[STRINGSIZE-1] = '\0'; @@ -61,7 +61,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c wc = 0; ptr = gbuffer; -@@ -704,6 +706,7 @@ +@@ -695,6 +697,7 @@ FascistLookUser(PWDICT *pwp, char *instr char junk[STRINGSIZE]; char *password; char rpassword[STRINGSIZE]; @@ -69,7 +69,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c uint32_t notfound; notfound = PW_WORDS(pwp); -@@ -740,7 +743,7 @@ +@@ -731,7 +734,7 @@ FascistLookUser(PWDICT *pwp, char *instr return _("it does not contain enough DIFFERENT characters"); } @@ -78,7 +78,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c Trim(password); -@@ -796,7 +799,7 @@ +@@ -787,7 +790,7 @@ FascistLookUser(PWDICT *pwp, char *instr { char *a; @@ -87,7 +87,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c { continue; } -@@ -811,13 +814,13 @@ +@@ -802,13 +805,13 @@ FascistLookUser(PWDICT *pwp, char *instr } } @@ -103,10 +103,10 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c { continue; } -diff -Naur cracklib-2.9.11-orig/lib/packer.h cracklib-2.9.11/lib/packer.h ---- cracklib-2.9.11-orig/lib/packer.h 2023-03-04 11:00:49.000000000 -0500 -+++ cracklib-2.9.11/lib/packer.h 2023-07-07 18:21:04.315119032 -0400 -@@ -82,7 +82,7 @@ +diff -up cracklib-2.9.6/lib/packer.h.reentrant cracklib-2.9.6/lib/packer.h +--- cracklib-2.9.6/lib/packer.h.reentrant 2015-10-22 18:17:20.335290902 +0200 ++++ cracklib-2.9.6/lib/packer.h 2015-10-22 18:17:20.338290974 +0200 +@@ -82,7 +82,7 @@ extern int PWClose(PWDICT *pwp); extern unsigned int FindPW(PWDICT *pwp, char *string); extern int PutPW(PWDICT *pwp, char *string); extern int PMatch(char *control, char *string); @@ -115,10 +115,10 @@ diff -Naur cracklib-2.9.11-orig/lib/packer.h cracklib-2.9.11/lib/packer.h extern char Chop(char *string); extern char *Trim(char *string); extern char *FascistLook(PWDICT *pwp, char *instring); -diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c ---- cracklib-2.9.11-orig/lib/packlib.c 2023-03-04 11:00:49.000000000 -0500 -+++ cracklib-2.9.11/lib/packlib.c 2023-07-07 18:44:55.183214284 -0400 -@@ -65,8 +65,8 @@ +diff -up cracklib-2.9.6/lib/packlib.c.reentrant cracklib-2.9.6/lib/packlib.c +--- cracklib-2.9.6/lib/packlib.c.reentrant 2015-08-18 20:41:16.000000000 +0200 ++++ cracklib-2.9.6/lib/packlib.c 2015-10-22 18:19:52.154911451 +0200 +@@ -67,8 +67,8 @@ PWOpen(prefix, mode) char *mode; { int use64 = 0; @@ -129,7 +129,7 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c char iname[STRINGSIZE]; char dname[STRINGSIZE]; char wname[STRINGSIZE]; -@@ -74,13 +74,11 @@ +@@ -76,13 +76,11 @@ PWOpen(prefix, mode) void *ifp; void *wfp; @@ -146,7 +146,7 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c memset(&pdesc64, '\0', sizeof(pdesc64)); snprintf(iname, STRINGSIZE, "%s.pwi", prefix); -@@ -89,77 +87,80 @@ +@@ -91,77 +89,80 @@ PWOpen(prefix, mode) if (mode[0] == 'r') { @@ -195,7 +195,7 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c #ifdef HAVE_ZLIB_H - if (pdesc.flags & PFOR_USEZLIB) - gzclose(pdesc.dfp); -+ if (pdesc->flags & PFOR_USEZLIB) ++ if(pdesc->flags & PFOR_USEZLIB) + gzclose(pdesc->dfp); else #endif @@ -247,11 +247,11 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c fclose(ifp); #ifdef HAVE_ZLIB_H - if (pdesc.flags & PFOR_USEZLIB) -+ if (pdesc->flags & PFOR_USEZLIB) ++ if(pdesc->flags & PFOR_USEZLIB) gzclose(dfp); else #endif -@@ -168,10 +169,11 @@ +@@ -170,10 +171,11 @@ PWOpen(prefix, mode) { fclose(wfp); } @@ -264,7 +264,7 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c { /* uh-oh. either a broken "64-bit" file or a garbage file. */ rewind (ifp); -@@ -179,10 +181,9 @@ +@@ -181,10 +183,9 @@ PWOpen(prefix, mode) { fprintf(stderr, "%s: error reading header\n", prefix); @@ -276,15 +276,15 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c gzclose(dfp); else #endif -@@ -191,6 +192,7 @@ +@@ -193,6 +194,7 @@ PWOpen(prefix, mode) { fclose(wfp); } -+ free(pdesc); ++ free(pdesc); return NULL; } if (pdesc64.header.pih_magic != PIH_MAGIC) -@@ -198,10 +200,9 @@ +@@ -200,10 +202,9 @@ PWOpen(prefix, mode) /* nope, not "64-bit" after all */ fprintf(stderr, "%s: error reading header\n", prefix); @@ -296,11 +296,11 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c gzclose(dfp); else #endif -@@ -211,23 +212,23 @@ +@@ -213,23 +214,23 @@ PWOpen(prefix, mode) { fclose(wfp); } -+ free(pdesc); ++ free(pdesc); return NULL; } - pdesc.header.pih_magic = pdesc64.header.pih_magic; @@ -327,7 +327,7 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c gzclose(dfp); else #endif -@@ -237,17 +238,17 @@ +@@ -239,17 +240,17 @@ PWOpen(prefix, mode) { fclose(wfp); } @@ -348,7 +348,7 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c gzclose(dfp); else #endif -@@ -256,17 +257,17 @@ +@@ -258,17 +259,17 @@ PWOpen(prefix, mode) { fclose(wfp); } @@ -369,7 +369,7 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c gzclose(dfp); else #endif -@@ -275,10 +276,11 @@ +@@ -277,10 +278,11 @@ PWOpen(prefix, mode) { fclose(wfp); } @@ -382,7 +382,7 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c { int i; -@@ -286,27 +288,27 @@ +@@ -288,27 +290,27 @@ PWOpen(prefix, mode) { if (fread(pdesc64.hwms, 1, sizeof(pdesc64.hwms), wfp) != sizeof(pdesc64.hwms)) { @@ -395,8 +395,9 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c - pdesc.hwms[i] = pdesc64.hwms[i]; + pdesc->hwms[i] = pdesc64.hwms[i]; } - } +- } - else if (fread(pdesc.hwms, 1, sizeof(pdesc.hwms), wfp) != sizeof(pdesc.hwms)) ++ } + else if (fread(pdesc->hwms, 1, sizeof(pdesc->hwms), wfp) != sizeof(pdesc->hwms)) { - pdesc.flags &= ~PFOR_USEHWMS; @@ -417,7 +418,15 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c } int -@@ -327,12 +329,14 @@ +@@ -318,6 +320,7 @@ PWClose(pwp) + if (pwp->header.pih_magic != PIH_MAGIC) + { + fprintf(stderr, "PWClose: close magic mismatch\n"); ++ /* we do not try to free memory that is probably corrupted */ + return (-1); + } + +@@ -329,12 +332,14 @@ PWClose(pwp) if (fseek(pwp->ifp, 0L, 0)) { fprintf(stderr, "index magic fseek failed\n"); @@ -428,11 +437,11 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c if (!fwrite((char *) &pwp->header, sizeof(pwp->header), 1, pwp->ifp)) { fprintf(stderr, "index magic fwrite failed\n"); -+ free(pwp); ++ free(pwp); return (-1); } -@@ -366,6 +370,7 @@ +@@ -368,6 +373,7 @@ PWClose(pwp) } pwp->header.pih_magic = 0; @@ -440,143 +449,143 @@ diff -Naur cracklib-2.9.11-orig/lib/packlib.c cracklib-2.9.11/lib/packlib.c return (0); } -diff -Naur cracklib-2.9.11-orig/lib/rules.c cracklib-2.9.11/lib/rules.c ---- cracklib-2.9.11-orig/lib/rules.c 2023-04-02 14:15:05.000000000 -0400 -+++ cracklib-2.9.11/lib/rules.c 2023-07-07 18:58:04.892943574 -0400 -@@ -80,12 +80,12 @@ +diff -up cracklib-2.9.6/lib/rules.c.reentrant cracklib-2.9.6/lib/rules.c +--- cracklib-2.9.6/lib/rules.c.reentrant 2015-08-18 20:41:16.000000000 +0200 ++++ cracklib-2.9.6/lib/rules.c 2015-10-22 18:17:20.339290998 +0200 +@@ -82,12 +82,12 @@ Suffix(myword, suffix) } char * -Reverse(str) /* return a pointer to a reversal */ +Reverse(str, area) /* return a pointer to a reversal */ - char *str; + register char *str; + char *area; { - int i; - int j; + register int i; + register int j; - static char area[STRINGSIZE]; j = i = strlen(str); while (*str) { -@@ -96,11 +96,11 @@ +@@ -98,11 +98,11 @@ Reverse(str) /* return a pointer to a } char * -Uppercase(str) /* return a pointer to an uppercase */ +Uppercase(str, area) /* return a pointer to an uppercase */ - char *str; + register char *str; + char *area; { - char *ptr; + register char *ptr; - static char area[STRINGSIZE]; ptr = area; while (*str) { -@@ -113,11 +113,11 @@ +@@ -115,11 +115,11 @@ Uppercase(str) /* return a pointer to } char * -Lowercase(str) /* return a pointer to an lowercase */ +Lowercase(str, area) /* return a pointer to an lowercase */ - char *str; + register char *str; + char *area; { - char *ptr; + register char *ptr; - static char area[STRINGSIZE]; ptr = area; while (*str) { -@@ -130,11 +130,11 @@ +@@ -132,11 +132,11 @@ Lowercase(str) /* return a pointer to } char * -Capitalise(str) /* return a pointer to an capitalised */ +Capitalise(str, area) /* return a pointer to an capitalised */ - char *str; + register char *str; + char *area; { - char *ptr; + register char *ptr; - static char area[STRINGSIZE]; ptr = area; while (*str) -@@ -149,11 +149,11 @@ +@@ -151,11 +151,11 @@ Capitalise(str) /* return a pointer to } char * -Pluralise(string) /* returns a pointer to a plural */ +Pluralise(string, area) /* returns a pointer to a plural */ - char *string; + register char *string; + char *area; { - int length; + register int length; - static char area[STRINGSIZE]; length = strlen(string); strcpy(area, string); -@@ -190,13 +190,13 @@ +@@ -192,13 +192,13 @@ Pluralise(string) /* returns a pointer } char * -Substitute(string, old, new) /* returns pointer to a swapped about copy */ +Substitute(string, old, new, area) /* returns pointer to a swapped about copy */ - char *string; - char old; - char new; + register char *string; + register char old; + register char new; + char *area; { - char *ptr; + register char *ptr; - static char area[STRINGSIZE]; ptr = area; while (*string) { -@@ -208,12 +208,12 @@ +@@ -210,12 +210,12 @@ Substitute(string, old, new) /* returns } char * -Purge(string, target) /* returns pointer to a purged copy */ +Purge(string, target, area) /* returns pointer to a purged copy */ - char *string; - char target; + register char *string; + register char target; + char *area; { - char *ptr; + register char *ptr; - static char area[STRINGSIZE]; ptr = area; while (*string) { -@@ -370,13 +370,13 @@ +@@ -372,13 +372,13 @@ PolyStrchr(string, class) } char * -PolySubst(string, class, new) /* returns pointer to a swapped about copy */ +PolySubst(string, class, new, area) /* returns pointer to a swapped about copy */ - char *string; - char class; - char new; + register char *string; + register char class; + register char new; + char *area; { - char *ptr; + register char *ptr; - static char area[STRINGSIZE]; ptr = area; while (*string) { -@@ -388,12 +388,12 @@ +@@ -390,12 +390,12 @@ PolySubst(string, class, new) /* returns } char * -PolyPurge(string, class) /* returns pointer to a purged copy */ +PolyPurge(string, class, area) /* returns pointer to a purged copy */ - char *string; - char class; + register char *string; + register char class; + char *area; { - char *ptr; + register char *ptr; - static char area[STRINGSIZE]; ptr = area; while (*string) { -@@ -426,39 +426,40 @@ +@@ -428,40 +428,41 @@ Char2Int(character) } char * @@ -587,9 +596,10 @@ diff -Naur cracklib-2.9.11-orig/lib/rules.c cracklib-2.9.11/lib/rules.c + char *area; { int limit; - char *ptr; -- static char area[STRINGSIZE * 2] = {0}; - char area2[STRINGSIZE * 2] = {0}; + register char *ptr; +- static char area[STRINGSIZE]; + char area2[STRINGSIZE]; + area[0] = '\0'; strcpy(area, input); for (ptr = control; *ptr; ptr++) @@ -625,7 +635,7 @@ diff -Naur cracklib-2.9.11-orig/lib/rules.c cracklib-2.9.11/lib/rules.c break; case RULE_DUPLICATE: strcpy(area2, area); -@@ -545,7 +546,6 @@ +@@ -548,7 +549,6 @@ Mangle(input, control) /* returns a poi Debug(1, "Mangle: extract: weird argument in '%s'\n", control); return NULL; } @@ -633,7 +643,7 @@ diff -Naur cracklib-2.9.11-orig/lib/rules.c cracklib-2.9.11/lib/rules.c for (i = 0; length-- && area2[start + i]; i++) { area[i] = area2[start + i]; -@@ -616,10 +616,10 @@ +@@ -619,10 +619,10 @@ Mangle(input, control) /* returns a poi return NULL; } else if (ptr[1] != RULE_CLASS) { @@ -646,7 +656,7 @@ diff -Naur cracklib-2.9.11-orig/lib/rules.c cracklib-2.9.11/lib/rules.c ptr += 2; } break; -@@ -630,11 +630,11 @@ +@@ -633,11 +633,11 @@ Mangle(input, control) /* returns a poi return NULL; } else if (ptr[1] != RULE_CLASS) { diff --git a/cracklib-2.9.11-simplistic.patch b/cracklib-2.9.6-simplistic.patch similarity index 51% rename from cracklib-2.9.11-simplistic.patch rename to cracklib-2.9.6-simplistic.patch index f1df715..743b9cb 100644 --- a/cracklib-2.9.11-simplistic.patch +++ b/cracklib-2.9.6-simplistic.patch @@ -1,7 +1,7 @@ -diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c ---- cracklib-2.9.11-orig/lib/fascist.c 2023-07-07 21:18:25.582821076 -0400 -+++ cracklib-2.9.11/lib/fascist.c 2023-07-07 21:19:55.130234075 -0400 -@@ -55,7 +55,6 @@ +diff -up cracklib-2.9.6/lib/fascist.c.simplistic cracklib-2.9.6/lib/fascist.c +--- cracklib-2.9.6/lib/fascist.c.simplistic 2015-10-22 18:21:51.099748012 +0200 ++++ cracklib-2.9.6/lib/fascist.c 2015-10-22 18:21:51.101748060 +0200 +@@ -55,7 +55,6 @@ static char *r_destructors[] = { "/?p@?p", /* purging out punctuation/symbols/junk */ "/?s@?s", @@ -9,33 +9,33 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c /* attempt reverse engineering of password strings */ -@@ -454,6 +453,12 @@ +@@ -454,6 +453,12 @@ GTry(rawtext, password) continue; } + if (len - strlen(mp) >= 3) + { -+ /* purged too much */ -+ continue; ++ /* purged too much */ ++ continue; + } + #ifdef DEBUG printf("%-16s = %-16s (destruct %s)\n", mp, rawtext, r_destructors[i]); #endif -@@ -480,6 +485,12 @@ +@@ -480,6 +485,12 @@ GTry(rawtext, password) continue; } + if (len - strlen(mp) >= 3) + { -+ /* purged too much */ -+ continue; ++ /* purged too much */ ++ continue; + } + #ifdef DEBUG printf("%-16s = %-16s (construct %s)\n", mp, password, r_constructors[i]); #endif -@@ -708,6 +719,7 @@ +@@ -699,6 +710,7 @@ FascistLookUser(PWDICT *pwp, char *instr char rpassword[STRINGSIZE]; char area[STRINGSIZE]; uint32_t notfound; @@ -43,7 +43,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c notfound = PW_WORDS(pwp); /* already truncated if from FascistCheck() */ -@@ -757,6 +769,7 @@ +@@ -748,6 +760,7 @@ FascistLookUser(PWDICT *pwp, char *instr return _("it is all whitespace"); } @@ -51,7 +51,7 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c i = 0; ptr = password; while (ptr[0] && ptr[1]) -@@ -768,10 +781,9 @@ +@@ -759,10 +772,9 @@ FascistLookUser(PWDICT *pwp, char *instr ptr++; } @@ -60,52 +60,53 @@ diff -Naur cracklib-2.9.11-orig/lib/fascist.c cracklib-2.9.11/lib/fascist.c - maxrepeat = 3+(0.09*strlen(password)); - if (i > maxrepeat) + /* We were still generating false positives for long passwords. -+ Just count systematic double as a single character. */ ++ Just count systematic double as a single character. */ + if (len - i < MINLEN) { return _("it is too simplistic/systematic"); } -@@ -804,6 +816,12 @@ +@@ -795,6 +807,12 @@ FascistLookUser(PWDICT *pwp, char *instr continue; } + if (len - strlen(a) >= 3) + { -+ /* purged too much */ -+ continue; ++ /* purged too much */ ++ continue; + } + #ifdef DEBUG printf("%-16s (dict)\n", a); #endif -@@ -824,6 +842,13 @@ +@@ -815,6 +833,13 @@ FascistLookUser(PWDICT *pwp, char *instr { continue; } + + if (len - strlen(a) >= 3) + { -+ /* purged too much */ -+ continue; ++ /* purged too much */ ++ continue; + } + #ifdef DEBUG printf("%-16s (reversed dict)\n", a); #endif -diff -Naur cracklib-2.9.11-orig/util/cracklib-format cracklib-2.9.11/util/cracklib-format ---- cracklib-2.9.11-orig/util/cracklib-format 2021-01-22 10:58:14.000000000 -0500 -+++ cracklib-2.9.11/util/cracklib-format 2023-07-07 21:19:14.854048317 -0400 -@@ -10,10 +10,12 @@ - # lines (possibly introduced by earlier parts of the pipeline) as - # cracklib-packer will generate "skipping line" warnings otherwise. +diff -up cracklib-2.9.6/util/cracklib-format.simplistic cracklib-2.9.6/util/cracklib-format +--- cracklib-2.9.6/util/cracklib-format.simplistic 2015-10-22 18:21:51.101748060 +0200 ++++ cracklib-2.9.6/util/cracklib-format 2014-07-09 17:24:45.000000000 +0200 +@@ -3,8 +3,10 @@ + # This preprocesses a set of word lists into a suitable form for input + # into cracklib-packer # +LC_ALL=C +export LC_ALL gzip -cdf "$@" | - grep -a -v '^#' | - tr '[A-Z]' '[a-z]' | - tr -cd '\012[a-z][0-9]' | - cut -c 1-1022 | - grep -v '^$' | +- grep -v '^\(#\|$\)' | +- tr '[A-Z]' '[a-z]' | +- tr -cd '\012[a-z][0-9]' | - env LC_ALL=C sort -u ++ grep -a -E -v '^.{32,}$' | ++ tr '[:upper:]' '[:lower:]' | ++ tr -cd '\n[:graph:]' | + sort -u diff --git a/cracklib-2.9.6-translation-updates.patch b/cracklib-2.9.6-translation-updates.patch new file mode 100644 index 0000000..fff80c0 --- /dev/null +++ b/cracklib-2.9.6-translation-updates.patch @@ -0,0 +1,3084 @@ +diff -urN cracklib-2.9.6.old/po/as.po cracklib-2.9.6.new/po/as.po +--- cracklib-2.9.6.old/po/as.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/as.po 2018-10-09 11:57:33.759928725 +0200 +@@ -1,82 +1,83 @@ + # Copyright (C) 2009 Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Amitakhya Phukan , 2009. ++# ngoswami , 2013. #zanata + msgid "" + msgstr "" + "Project-Id-Version: \n" +-"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" +-"POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-11-12 11:39+0530\n" +-"Last-Translator: Amitakhya Phukan \n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2012-12-14 16:11-0600\n" ++"PO-Revision-Date: 2013-09-23 10:11-0400\n" ++"Last-Translator: ngoswami \n" + "Language-Team: Assamese <>\n" +-"Language: as\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: Lokalize 1.0\n" ++"Language: as\n" + "Plural-Forms: nplurals=2; plural=n != 1;\n" ++"X-Generator: Zanata 3.1.2\n" ++ ++#: ../lib/fascist.c:550 ++msgid "you are not registered in the password file" ++msgstr "আপুনি গুপ্তশব্দৰ নথিপত্ৰ পঞ্জিকৃত নহয়" + +-#: lib/fascist.c:516 ++#: ../lib/fascist.c:564 + msgid "it is based on your username" + msgstr "এইটো আপোনাৰ ব্যৱহাৰকৰ্তাৰ নামৰ আধাৰত" + +-#: lib/fascist.c:576 ++#: ../lib/fascist.c:629 + msgid "it is based upon your password entry" + msgstr "এইটো আপোনাৰ গুপ্তশব্দৰ নিবেশৰ আধাৰত" + +-#: lib/fascist.c:591 ++#: ../lib/fascist.c:649 + msgid "it is derived from your password entry" + msgstr "ইয়াক আপোনাৰ গুপ্তশব্দৰ নিবেশৰ পৰা পোৱা হৈছে" + +-#: lib/fascist.c:599 ++#: ../lib/fascist.c:662 + msgid "it's derived from your password entry" + msgstr "ইয়াক আপোনাৰ গুপ্তশব্দৰ নিবেশৰ পৰা পোৱা হৈছে" + +-#: lib/fascist.c:608 ++#: ../lib/fascist.c:676 + msgid "it is derivable from your password entry" + msgstr "ইয়াক আপোনাৰ গুপ্তশব্দৰ নিবেশৰ পৰা পাব পাৰি" + +-#: lib/fascist.c:617 ++#: ../lib/fascist.c:690 + msgid "it's derivable from your password entry" + msgstr "ইয়াক আপোনাৰ গুপ্তশব্দৰ নিবেশৰ পৰা পাব পাৰি" + +-#: lib/fascist.c:674 +-msgid "you are not registered in the password file" +-msgstr "আপুনি গুপ্তশব্দৰ নথিপত্ৰ পঞ্জিকৃত নহয়" +- +-#: lib/fascist.c:709 ++#: ../lib/fascist.c:726 + msgid "it is WAY too short" + msgstr "ই বৰ সৰু" + +-#: lib/fascist.c:714 ++#: ../lib/fascist.c:731 + msgid "it is too short" + msgstr "ই বৰ সৰু" + +-#: lib/fascist.c:731 ++#: ../lib/fascist.c:748 + msgid "it does not contain enough DIFFERENT characters" + msgstr "ইয়াত যথেষ্ট ভিন্ন আকৰ নাই" + +-#: lib/fascist.c:745 ++#: ../lib/fascist.c:762 + msgid "it is all whitespace" + msgstr "ই সম্পূৰ্ণৰূপে ৰিক্ত স্থানেৰে ভৰা" + +-#: lib/fascist.c:764 ++#: ../lib/fascist.c:781 + msgid "it is too simplistic/systematic" + msgstr "ই বৰ সৰল/শৃংখলাবদ্ধ" + +-#: lib/fascist.c:769 ++#: ../lib/fascist.c:786 + msgid "it looks like a National Insurance number." + msgstr "ই দেখাত এটা National Insurance ৰ নম্বৰৰ দৰে ।" + +-#: lib/fascist.c:801 ++#: ../lib/fascist.c:813 + msgid "it is based on a dictionary word" + msgstr "ই এটা অভিধানৰ শব্দৰ আধাৰত" + +-#: lib/fascist.c:820 ++#: ../lib/fascist.c:832 + msgid "it is based on a (reversed) dictionary word" + msgstr "ই এটা অভিধানৰ শব্দৰ আধাৰত (ওলোটা ক্ৰমত)" + +-#: lib/fascist.c:865 ++#: ../lib/fascist.c:867 + msgid "error loading dictionary" +-msgstr "" ++msgstr "শব্দকোষ ল'ড কৰোতে ত্ৰুটি" +diff -urN cracklib-2.9.6.old/po/be.po cracklib-2.9.6.new/po/be.po +--- cracklib-2.9.6.old/po/be.po 1970-01-01 01:00:00.000000000 +0100 ++++ cracklib-2.9.6.new/po/be.po 2018-10-09 11:38:57.597040577 +0200 +@@ -0,0 +1,79 @@ ++# Viktar Siarheichyk , 2018. #zanata ++msgid "" ++msgstr "" ++"Project-Id-Version: cracklib 2.9.6\n" ++"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" ++"POT-Creation-Date: 2015-08-18 13:45-0500\n" ++"PO-Revision-Date: 2018-06-04 07:22+0000\n" ++"Last-Translator: Viktar Siarheichyk \n" ++"Language-Team: Belarusian\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Language: be\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" ++"X-Generator: Zanata 4.6.2\n" ++ ++#: lib/fascist.c:516 ++msgid "it is based on your username" ++msgstr "заснавана на імені карыстальніка" ++ ++#: lib/fascist.c:576 ++msgid "it is based upon your password entry" ++msgstr "заснавана на ўпісаным пароле" ++ ++#: lib/fascist.c:591 ++msgid "it is derived from your password entry" ++msgstr "паходзіць з вашага запісу пароля" ++ ++#: lib/fascist.c:599 ++msgid "it's derived from your password entry" ++msgstr "паходзіць з вашага запісу пароля" ++ ++#: lib/fascist.c:608 ++msgid "it is derivable from your password entry" ++msgstr "можа паходзіць з вашага запісу пароля" ++ ++#: lib/fascist.c:617 ++msgid "it's derivable from your password entry" ++msgstr "можа паходзіць з вашага запісу пароля" ++ ++#: lib/fascist.c:674 ++msgid "you are not registered in the password file" ++msgstr "няма вашага запісу ў файле пароляў" ++ ++#: lib/fascist.c:709 ++msgid "it is WAY too short" ++msgstr "ён ЗАНАДТА кароткі" ++ ++#: lib/fascist.c:714 ++msgid "it is too short" ++msgstr "ён надта кароткі" ++ ++#: lib/fascist.c:731 ++msgid "it does not contain enough DIFFERENT characters" ++msgstr "у ім недастаткова РОЗНАСТАЙНЫХ знакаў" ++ ++#: lib/fascist.c:745 ++msgid "it is all whitespace" ++msgstr "адны прабелы" ++ ++#: lib/fascist.c:764 ++msgid "it is too simplistic/systematic" ++msgstr "надта просты ці распаўсюджаны" ++ ++#: lib/fascist.c:769 ++msgid "it looks like a National Insurance number." ++msgstr " надобны на нумар сацыяльнага страхавання." ++ ++#: lib/fascist.c:801 ++msgid "it is based on a dictionary word" ++msgstr "базуецца на слоўнікавым слове" ++ ++#: lib/fascist.c:820 ++msgid "it is based on a (reversed) dictionary word" ++msgstr "бвзуецца на (адваротным) слоўнікавым слове" ++ ++#: lib/fascist.c:865 ++msgid "error loading dictionary" ++msgstr "памылка падчас загрузкі слоўніка" +diff -urN cracklib-2.9.6.old/po/bn_IN.po cracklib-2.9.6.new/po/bn_IN.po +--- cracklib-2.9.6.old/po/bn_IN.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/bn_IN.po 2018-10-09 11:57:33.759928725 +0200 +@@ -1,83 +1,84 @@ + # translation of cracklib.po to Bengali INDIA + # Copyright (C) 2009 Free Software Foundation, Inc. + # This file is distributed under the same license as the cracklib package. +-# ++# + # Runa Bhattacharjee , 2009. ++# sray , 2013. #zanata + msgid "" + msgstr "" + "Project-Id-Version: cracklib.default.cracklib\n" +-"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" +-"POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-11-11 12:34+0530\n" +-"Last-Translator: Runa Bhattacharjee \n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2012-12-14 16:11-0600\n" ++"PO-Revision-Date: 2013-10-03 05:14-0400\n" ++"Last-Translator: sray \n" + "Language-Team: Bengali INDIA \n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" ++"Language: bn-IN\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.1.2\n" + +-#: lib/fascist.c:516 ++#: ../lib/fascist.c:550 ++msgid "you are not registered in the password file" ++msgstr "পাসওয়ার্ড ফাইলের মধ্যে আপনার পরিচয় নিবন্ধিত নয়" ++ ++#: ../lib/fascist.c:564 + msgid "it is based on your username" + msgstr "আপনার ব্যবহারকারীর নামের উপর এটি নির্ভরশীল" + +-#: lib/fascist.c:576 ++#: ../lib/fascist.c:629 + msgid "it is based upon your password entry" + msgstr "আপনার পাসওয়ার্ড এনট্রির উপর এটি নির্ভরশীল" + +-#: lib/fascist.c:591 ++#: ../lib/fascist.c:649 + msgid "it is derived from your password entry" + msgstr "আপনার পাসওয়ার্ড এনট্রি থেকে এটি আহরণ করা হয়েছে" + +-#: lib/fascist.c:599 ++#: ../lib/fascist.c:662 + msgid "it's derived from your password entry" + msgstr "আপনার পাসওয়ার্ড এনট্রি থেকে এটি আহরণ করা হয়েছে" + +-#: lib/fascist.c:608 ++#: ../lib/fascist.c:676 + msgid "it is derivable from your password entry" + msgstr "আপনার পাসওয়ার্ড এনট্রি থেকে এটি আহরণ করা সম্ভব" + +-#: lib/fascist.c:617 ++#: ../lib/fascist.c:690 + msgid "it's derivable from your password entry" + msgstr "আপনার পাসওয়ার্ড এনট্রি থেকে এটি আহরণ করা সম্ভব" + +-#: lib/fascist.c:674 +-msgid "you are not registered in the password file" +-msgstr "পাসওয়ার্ড ফাইলের মধ্যে আপনার পরিচয় নিবন্ধিত নয়" +- +-#: lib/fascist.c:709 ++#: ../lib/fascist.c:726 + msgid "it is WAY too short" + msgstr "এটি অত্যাধিক ছোট" + +-#: lib/fascist.c:714 ++#: ../lib/fascist.c:731 + msgid "it is too short" + msgstr "এটি অতিমাত্রায় ছোট" + +-#: lib/fascist.c:731 ++#: ../lib/fascist.c:748 + msgid "it does not contain enough DIFFERENT characters" + msgstr "এর মধ্যে উপস্থিত অক্ষরগুলির মধ্যে পর্যাপ্ত বৈচিত্র উপস্থিত নেই" + +-#: lib/fascist.c:745 ++#: ../lib/fascist.c:762 + msgid "it is all whitespace" + msgstr "এটি শুধুমাত্র শূণ্যস্থান দ্বারা গঠিত হয়েছে" + +-#: lib/fascist.c:764 ++#: ../lib/fascist.c:781 + msgid "it is too simplistic/systematic" + msgstr "এটি অত্যাধিক সরল/গতানুগতিক" + +-#: lib/fascist.c:769 ++#: ../lib/fascist.c:786 + msgid "it looks like a National Insurance number." + msgstr "এটি একটি বীমার অ্যাকাউন্টের সংখ্যার অনুরূপ।" + +-#: lib/fascist.c:801 ++#: ../lib/fascist.c:813 + msgid "it is based on a dictionary word" + msgstr "এটি অভিধানের একটি শব্দের ভিত্তিতে নির্ধারিত হয়েছে" + +-#: lib/fascist.c:820 ++#: ../lib/fascist.c:832 + msgid "it is based on a (reversed) dictionary word" + msgstr "এটি অভিধানের একটি শব্দের (বিপরীত) ভিত্তিতে নির্ধারিত হয়েছে" + +-#: lib/fascist.c:865 ++#: ../lib/fascist.c:867 + msgid "error loading dictionary" +-msgstr "" ++msgstr "অভিধান লোড হতে সমস্যা" +diff -urN cracklib-2.9.6.old/po/ca.po cracklib-2.9.6.new/po/ca.po +--- cracklib-2.9.6.old/po/ca.po 1970-01-01 01:00:00.000000000 +0100 ++++ cracklib-2.9.6.new/po/ca.po 2018-10-09 11:37:49.699355368 +0200 +@@ -0,0 +1,79 @@ ++# Robert Antoni Buj Gelonch , 2016. #zanata ++msgid "" ++msgstr "" ++"Project-Id-Version: cracklib 2.9.6\n" ++"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" ++"POT-Creation-Date: 2015-08-18 13:45-0500\n" ++"PO-Revision-Date: 2016-10-08 03:48+0000\n" ++"Last-Translator: Robert Antoni Buj Gelonch \n" ++"Language-Team: Catalan\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Language: ca\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" ++ ++#: lib/fascist.c:516 ++msgid "it is based on your username" ++msgstr "es basa en el vostre nom d'usuari" ++ ++#: lib/fascist.c:576 ++msgid "it is based upon your password entry" ++msgstr "es basa en la introducció de la vostra contrasenya" ++ ++#: lib/fascist.c:591 ++msgid "it is derived from your password entry" ++msgstr "es deriva a partir de la introducció de la vostra contrasenya" ++ ++#: lib/fascist.c:599 ++msgid "it's derived from your password entry" ++msgstr "es deriva a partir de la introducció de la vostra contrasenya" ++ ++#: lib/fascist.c:608 ++msgid "it is derivable from your password entry" ++msgstr "es pot derivar a partir de la introducció de la vostra contrasenya" ++ ++#: lib/fascist.c:617 ++msgid "it's derivable from your password entry" ++msgstr "es pot derivar a partir de la introducció de la vostra contrasenya" ++ ++#: lib/fascist.c:674 ++msgid "you are not registered in the password file" ++msgstr "no esteu registrat al fitxer de contrasenyes" ++ ++#: lib/fascist.c:709 ++msgid "it is WAY too short" ++msgstr "és massa curt" ++ ++#: lib/fascist.c:714 ++msgid "it is too short" ++msgstr "és massa curt" ++ ++#: lib/fascist.c:731 ++msgid "it does not contain enough DIFFERENT characters" ++msgstr "no conté prou caràcters DIFERENTS" ++ ++#: lib/fascist.c:745 ++msgid "it is all whitespace" ++msgstr "és tot l'espai en blanc" ++ ++#: lib/fascist.c:764 ++msgid "it is too simplistic/systematic" ++msgstr "és massa simplista/sistemàtica" ++ ++#: lib/fascist.c:769 ++msgid "it looks like a National Insurance number." ++msgstr "sembla un número de la seguretat social." ++ ++#: lib/fascist.c:801 ++msgid "it is based on a dictionary word" ++msgstr "es basa en una paraula del diccionari" ++ ++#: lib/fascist.c:820 ++msgid "it is based on a (reversed) dictionary word" ++msgstr "es basa en una paraula del diccionari (revers)" ++ ++#: lib/fascist.c:865 ++msgid "error loading dictionary" ++msgstr "error en carregar el diccionari" +diff -urN cracklib-2.9.6.old/po/cs.po cracklib-2.9.6.new/po/cs.po +--- cracklib-2.9.6.old/po/cs.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/cs.po 2018-10-09 11:37:54.554475070 +0200 +@@ -1,19 +1,21 @@ + # translation of cracklib.po to czech + # Klara Cihlarova , 2003. +-# ++# Jan Dittberner , 2016. #zanata ++# Marek Suchánek , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-06-23 13:18+02:00\n" +-"Last-Translator: Klara Cihlarova \n" ++"PO-Revision-Date: 2016-08-31 01:14+0000\n" ++"Last-Translator: Marek Suchánek \n" + "Language-Team: czech \n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.2\n" ++"Language: cs\n" ++"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -77,4 +79,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "chyba při načítání slovníku" +diff -urN cracklib-2.9.6.old/po/da.po cracklib-2.9.6.new/po/da.po +--- cracklib-2.9.6.old/po/da.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/da.po 2018-10-09 11:39:10.434360676 +0200 +@@ -2,20 +2,22 @@ + # Copyright (C) 2005 Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. + # Martin Møller , 2005. +-# ++# Jan Dittberner , 2016. #zanata ++# scootergrisen , 2017. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-08-16 20:11+0200\n" +-"Last-Translator: Martin Møller \n" ++"PO-Revision-Date: 2017-10-06 02:39+0000\n" ++"Last-Translator: scootergrisen \n" + "Language-Team: Dansk \n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.10.1\n" ++"Language: da\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -43,7 +45,7 @@ + + #: lib/fascist.c:674 + msgid "you are not registered in the password file" +-msgstr "Du er ikke optegnet i adgangskodefilen" ++msgstr "du er ikke optegnet i adgangskodefilen" + + #: lib/fascist.c:709 + msgid "it is WAY too short" +@@ -59,7 +61,7 @@ + + #: lib/fascist.c:745 + msgid "it is all whitespace" +-msgstr "det er kun mellemrum/blanke tegn" ++msgstr "alt er blanktegn" + + #: lib/fascist.c:764 + msgid "it is too simplistic/systematic" +@@ -67,7 +69,7 @@ + + #: lib/fascist.c:769 + msgid "it looks like a National Insurance number." +-msgstr "det ligner et CPR nummer." ++msgstr "det ligner et \"National Insurance\"-nummer." + + #: lib/fascist.c:801 + msgid "it is based on a dictionary word" +@@ -79,4 +81,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "fejl ved indlæsning af ordbog" +diff -urN cracklib-2.9.6.old/po/de.po cracklib-2.9.6.new/po/de.po +--- cracklib-2.9.6.old/po/de.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/de.po 2018-10-09 11:38:15.372988343 +0200 +@@ -4,21 +4,21 @@ + # Antje Faber , 2000-2003. + # Karl Eichwalder , 1999-2003. + # Martin Lohner , 2000. +-# ++# Jan Dittberner , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: new\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2003-11-27 18:31GMT\n" +-"Last-Translator: Novell Language \n" ++"PO-Revision-Date: 2018-08-16 12:44+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Novell Language \n" +-"Language: \n" + "MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=utf-8\n" ++"Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"Language: de\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" +-"X-Generator: KBabel 1.0.2\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -82,4 +82,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "Fehler beim Laden des Wörterbuchs" +diff -urN cracklib-2.9.6.old/po/el.po cracklib-2.9.6.new/po/el.po +--- cracklib-2.9.6.old/po/el.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/el.po 2018-10-09 11:38:32.974426610 +0200 +@@ -4,20 +4,21 @@ + # This file is distributed under the same license as the PACKAGE package. + # Kostas Boukouvalas , 2005. + # Hellenic SuSE Translation Group , 2005. +-# ++# Jan Dittberner , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: el\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-08-26 19:19+0300\n" +-"Last-Translator: Hellenic SuSE Translation Group \n" ++"PO-Revision-Date: 2016-06-18 01:02+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Hellenic-Ελληνικά-Greek \n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.10\n" ++"Language: el\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +diff -urN cracklib-2.9.6.old/po/es.po cracklib-2.9.6.new/po/es.po +--- cracklib-2.9.6.old/po/es.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/es.po 2018-10-09 11:38:49.684843285 +0200 +@@ -1,81 +1,83 @@ + # translation of cracklib.po to + # This file is put in the public domain. +-# , 2003 +-# ++#, 2003 ++# Waldo Ribeiro , 2016. #zanata ++# Máximo Castañeda Riloba , 2017. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-06-23 13:17+02:00\n" +-"Last-Translator: Novell Language \n" +-"Language-Team: Novell Language \n" +-"Language: \n" ++"PO-Revision-Date: 2018-08-16 12:44+0000\n" ++"Last-Translator: Copied by Zanata \n" ++"Language-Team: Novell Language \n" + "MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=utf-8\n" ++"Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.0.1\n" ++"Language: es\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +-msgstr "Está basada en su nombre de usuario." ++msgstr "está basada en su nombre de usuario" + + #: lib/fascist.c:576 + msgid "it is based upon your password entry" +-msgstr "Está basada en su contraseña." ++msgstr "está basada en su contraseña" + + #: lib/fascist.c:591 + msgid "it is derived from your password entry" +-msgstr "Se deriva de su contraseña." ++msgstr "se deriva de su contraseña" + + #: lib/fascist.c:599 + msgid "it's derived from your password entry" +-msgstr "Se deriva de su contraseña." ++msgstr "se deriva de su contraseña" + + #: lib/fascist.c:608 + msgid "it is derivable from your password entry" +-msgstr "Puede derivarse de su contraseña." ++msgstr "puede derivarse de su contraseña" + + #: lib/fascist.c:617 + msgid "it's derivable from your password entry" +-msgstr "Puede derivarse de su contraseña." ++msgstr "puede derivarse de su contraseña" + + #: lib/fascist.c:674 + msgid "you are not registered in the password file" +-msgstr "No está registrado en el archivo de contraseñas." ++msgstr "no está registrado en el archivo de contraseñas" + + #: lib/fascist.c:709 + msgid "it is WAY too short" +-msgstr "Es DEMASIADO corta." ++msgstr "es DEMASIADO corta" + + #: lib/fascist.c:714 + msgid "it is too short" +-msgstr "Es demasiado corta." ++msgstr "es demasiado corta" + + #: lib/fascist.c:731 + msgid "it does not contain enough DIFFERENT characters" +-msgstr "No contiene suficientes caracteres DIFERENTES." ++msgstr "no contiene suficientes caracteres DIFERENTES" + + #: lib/fascist.c:745 + msgid "it is all whitespace" +-msgstr "Está formada sólo por espacios." ++msgstr "está formada sólo por espacios" + + #: lib/fascist.c:764 + msgid "it is too simplistic/systematic" +-msgstr "Es demasiado simple/sistemática." ++msgstr "es demasiado simple/sistemática" + + #: lib/fascist.c:769 + msgid "it looks like a National Insurance number." +-msgstr "Parece un número de la Seguridad Social." ++msgstr "parece un número de la Seguridad Social" + + #: lib/fascist.c:801 + msgid "it is based on a dictionary word" +-msgstr "Está basada en una palabra del diccionario." ++msgstr "está basada en una palabra del diccionario" + + #: lib/fascist.c:820 + msgid "it is based on a (reversed) dictionary word" +-msgstr "Está basada en una palabra del diccionario escrita al revés." ++msgstr "está basada en una palabra del diccionario escrita al revés" + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "error al cargar el diccionario" +diff -urN cracklib-2.9.6.old/po/eu.po cracklib-2.9.6.new/po/eu.po +--- cracklib-2.9.6.old/po/eu.po 1970-01-01 01:00:00.000000000 +0100 ++++ cracklib-2.9.6.new/po/eu.po 2018-10-09 11:38:46.701768899 +0200 +@@ -0,0 +1,79 @@ ++# Mikel Olasagasti Uranga , 2017. #zanata ++msgid "" ++msgstr "" ++"Project-Id-Version: cracklib 2.9.6\n" ++"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" ++"POT-Creation-Date: 2015-08-18 13:45-0500\n" ++"PO-Revision-Date: 2017-04-11 05:46+0000\n" ++"Last-Translator: Mikel Olasagasti Uranga \n" ++"Language-Team: Basque\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Language: eu\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" ++ ++#: lib/fascist.c:516 ++msgid "it is based on your username" ++msgstr "zure erabiltzaile-izenean oinarrituta dago" ++ ++#: lib/fascist.c:576 ++msgid "it is based upon your password entry" ++msgstr "" ++ ++#: lib/fascist.c:591 ++msgid "it is derived from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:599 ++msgid "it's derived from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:608 ++msgid "it is derivable from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:617 ++msgid "it's derivable from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:674 ++msgid "you are not registered in the password file" ++msgstr "" ++ ++#: lib/fascist.c:709 ++msgid "it is WAY too short" ++msgstr "OSO laburra da" ++ ++#: lib/fascist.c:714 ++msgid "it is too short" ++msgstr "laburregia da" ++ ++#: lib/fascist.c:731 ++msgid "it does not contain enough DIFFERENT characters" ++msgstr "ez ditu nahikoa karaktere EZBERDIN" ++ ++#: lib/fascist.c:745 ++msgid "it is all whitespace" ++msgstr "karaktere guztiak zuriuneak dira" ++ ++#: lib/fascist.c:764 ++msgid "it is too simplistic/systematic" ++msgstr "oso sinple edo sistematikoa" ++ ++#: lib/fascist.c:769 ++msgid "it looks like a National Insurance number." ++msgstr "Gizarte Segurantza zenbakia dirudi (National Insurance)" ++ ++#: lib/fascist.c:801 ++msgid "it is based on a dictionary word" ++msgstr "hiztegiko hitz batean oinarritua da" ++ ++#: lib/fascist.c:820 ++msgid "it is based on a (reversed) dictionary word" ++msgstr "hiztegiko hitz batean oinarritua da (alderantziz)" ++ ++#: lib/fascist.c:865 ++msgid "error loading dictionary" ++msgstr "errorea hiztegia kargatzean" +diff -urN cracklib-2.9.6.old/po/fi.po cracklib-2.9.6.new/po/fi.po +--- cracklib-2.9.6.old/po/fi.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/fi.po 2018-10-09 11:39:09.467336563 +0200 +@@ -2,20 +2,22 @@ + # Copyright (C) 2005 Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. + # Jyri Palokangas , 2005. +-# ++# Jan Dittberner , 2016. #zanata ++# Jiri Grönroos , 2017. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-08-25 15:20+0300\n" +-"Last-Translator: Jyri Palokangas \n" +-"Language-Team: \n" +-"Language: \n" ++"PO-Revision-Date: 2017-03-26 09:02+0000\n" ++"Last-Translator: Jiri Grönroos \n" ++"Language-Team: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.10.2\n" ++"Language: fi\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -79,4 +81,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "virhe sanakirjaa ladatessa" +diff -urN cracklib-2.9.6.old/po/fr.po cracklib-2.9.6.new/po/fr.po +--- cracklib-2.9.6.old/po/fr.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/fr.po 2018-10-09 11:38:58.577065014 +0200 +@@ -1,20 +1,22 @@ + # translation of cracklib.po to Français + # This file is put in the public domain. + # Patricia Vaz , 2003 +-# ++# Jan Dittberner , 2016. #zanata ++# Jean-Baptiste Holcroft , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-06-23 13:17+02:00\n" +-"Last-Translator: Novell Language \n" ++"PO-Revision-Date: 2018-08-16 12:44+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Novell Language \n" +-"Language: \n" + "MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=utf-8\n" ++"Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.0.1\n" ++"Language: fr\n" ++"Plural-Forms: nplurals=2; plural=(n > 1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -78,4 +80,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "erreur lors du chargement du dictionnaire" +diff -urN cracklib-2.9.6.old/po/gu.po cracklib-2.9.6.new/po/gu.po +--- cracklib-2.9.6.old/po/gu.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/gu.po 2018-10-09 11:57:33.760928751 +0200 +@@ -1,84 +1,85 @@ + # translation of cracklib.default.cracklib.gu.po to Gujarati + # Copyright (C) 2009 Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Ankit Patel , 2009. ++# swkothar , 2013. #zanata + msgid "" + msgstr "" + "Project-Id-Version: cracklib.default.cracklib.gu\n" +-"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" +-"POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-10-22 18:13+0530\n" +-"Last-Translator: Ankit Patel \n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2012-12-14 16:11-0600\n" ++"PO-Revision-Date: 2013-09-24 05:01-0400\n" ++"Last-Translator: swkothar \n" + "Language-Team: Gujarati \n" +-"Language: gu\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" +-"Plural-Forms: nplurals=2; plural=(n!=1);\n" ++"Language: gu\n" ++"Plural-Forms: nplurals=2; plural=(n!=1);\n" + "\n" ++"X-Generator: Zanata 3.1.2\n" ++ ++#: ../lib/fascist.c:550 ++msgid "you are not registered in the password file" ++msgstr "પાસવર્ડ ફાઈલમાં તમારી નોંધ થયેલ નથી" + +-#: lib/fascist.c:516 ++#: ../lib/fascist.c:564 + msgid "it is based on your username" + msgstr "તમારા વપરાશકર્તા નામ પર આધારિત છે" + +-#: lib/fascist.c:576 ++#: ../lib/fascist.c:629 + msgid "it is based upon your password entry" + msgstr "તમારા પાસવર્ડ પ્રવેશ પર આધારિત છે" + +-#: lib/fascist.c:591 ++#: ../lib/fascist.c:649 + msgid "it is derived from your password entry" + msgstr "તમારા પાસવર્ડ પ્રવેશમાંથી તારવવામાં આવેલ છે" + +-#: lib/fascist.c:599 ++#: ../lib/fascist.c:662 + msgid "it's derived from your password entry" + msgstr "તમારા પાસવર્ડ પ્રવેશમાંથી તારવવામાં આવેલ છે" + +-#: lib/fascist.c:608 ++#: ../lib/fascist.c:676 + msgid "it is derivable from your password entry" + msgstr "તમારા પાસવર્ડ પ્રવેશમાંથી તારવી શકાય તેવું છે" + +-#: lib/fascist.c:617 ++#: ../lib/fascist.c:690 + msgid "it's derivable from your password entry" + msgstr "તમારા પાસવર્ડ પ્રવેશમાંથી તારવી શકાય તેવું છે" + +-#: lib/fascist.c:674 +-msgid "you are not registered in the password file" +-msgstr "પાસવર્ડ ફાઈલમાં તમારી નોંધ થયેલ નથી" +- +-#: lib/fascist.c:709 ++#: ../lib/fascist.c:726 + msgid "it is WAY too short" + msgstr "ખૂબ ટૂંકો છે" + +-#: lib/fascist.c:714 ++#: ../lib/fascist.c:731 + msgid "it is too short" + msgstr "ખૂબ ટૂંકો છે" + +-#: lib/fascist.c:731 ++#: ../lib/fascist.c:748 + msgid "it does not contain enough DIFFERENT characters" + msgstr "ભિન્ન અક્ષરો સમાવતો નથી" + +-#: lib/fascist.c:745 ++#: ../lib/fascist.c:762 + msgid "it is all whitespace" + msgstr "આ બધી ખાલી જગ્યા છે" + +-#: lib/fascist.c:764 ++#: ../lib/fascist.c:781 + msgid "it is too simplistic/systematic" + msgstr "ખૂબ સરળ છે/પદ્ધતિસરનું છે" + +-#: lib/fascist.c:769 ++#: ../lib/fascist.c:786 + msgid "it looks like a National Insurance number." + msgstr "રાષ્ટ્રિય વીમા નંબર જેવું દેખાય છે." + +-#: lib/fascist.c:801 ++#: ../lib/fascist.c:813 + msgid "it is based on a dictionary word" + msgstr "શબ્દકોષના શબ્દ પર આધારિત છે" + +-#: lib/fascist.c:820 ++#: ../lib/fascist.c:832 + msgid "it is based on a (reversed) dictionary word" + msgstr "(આરક્ષિત) શબ્દકોષના શબ્દ પર આધારિત છે" + +-#: lib/fascist.c:865 ++#: ../lib/fascist.c:867 + msgid "error loading dictionary" +-msgstr "" ++msgstr "શબ્દકોષને લાવી રહ્યા હોય ત્યારે ભૂલ" +diff -urN cracklib-2.9.6.old/po/he.po cracklib-2.9.6.new/po/he.po +--- cracklib-2.9.6.old/po/he.po 1970-01-01 01:00:00.000000000 +0100 ++++ cracklib-2.9.6.new/po/he.po 2018-10-09 11:38:19.242084195 +0200 +@@ -0,0 +1,79 @@ ++# Yaron Shahrabani , 2018. #zanata ++msgid "" ++msgstr "" ++"Project-Id-Version: cracklib 2.9.6\n" ++"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" ++"POT-Creation-Date: 2015-08-18 13:45-0500\n" ++"PO-Revision-Date: 2018-03-20 10:17+0000\n" ++"Last-Translator: Yaron Shahrabani \n" ++"Language-Team: Hebrew\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Language: he\n" ++"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 2 : 1;\n" ++"X-Generator: Zanata 4.6.2\n" ++ ++#: lib/fascist.c:516 ++msgid "it is based on your username" ++msgstr "מבוססת על שם המשתמש שלך" ++ ++#: lib/fascist.c:576 ++msgid "it is based upon your password entry" ++msgstr "" ++ ++#: lib/fascist.c:591 ++msgid "it is derived from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:599 ++msgid "it's derived from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:608 ++msgid "it is derivable from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:617 ++msgid "it's derivable from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:674 ++msgid "you are not registered in the password file" ++msgstr "לא נרשמת בקובץ הססמאות" ++ ++#: lib/fascist.c:709 ++msgid "it is WAY too short" ++msgstr "קצרה ביותר" ++ ++#: lib/fascist.c:714 ++msgid "it is too short" ++msgstr "קצרה מדי" ++ ++#: lib/fascist.c:731 ++msgid "it does not contain enough DIFFERENT characters" ++msgstr "אינה מכילה מספיק תווים שונים" ++ ++#: lib/fascist.c:745 ++msgid "it is all whitespace" ++msgstr "כולה רווחים" ++ ++#: lib/fascist.c:764 ++msgid "it is too simplistic/systematic" ++msgstr "מערכתית/פשוטה מדי" ++ ++#: lib/fascist.c:769 ++msgid "it looks like a National Insurance number." ++msgstr "נראית כמו מספר תעודת זהות/ביטוח לאומי" ++ ++#: lib/fascist.c:801 ++msgid "it is based on a dictionary word" ++msgstr "מבוססת על מילה במילון" ++ ++#: lib/fascist.c:820 ++msgid "it is based on a (reversed) dictionary word" ++msgstr "מבוססת על (היפוך של) מילה במילון" ++ ++#: lib/fascist.c:865 ++msgid "error loading dictionary" ++msgstr "שגיאה בטעינת המילון" +diff -urN cracklib-2.9.6.old/po/hi.po cracklib-2.9.6.new/po/hi.po +--- cracklib-2.9.6.old/po/hi.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/hi.po 2018-10-09 11:57:33.760928751 +0200 +@@ -2,84 +2,85 @@ + # Hindi translations for cracklib package. + # Copyright (C) 2009, 2010 Free Software Foundation, Inc. + # This file is distributed under the same license as the cracklib package. +-# ++# + # Rajesh Ranjan , 2010. ++# rranjan , 2013. #zanata + msgid "" + msgstr "" + "Project-Id-Version: cracklib.default.cracklib\n" +-"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" +-"POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2010-04-06 12:21+0530\n" +-"Last-Translator: Rajesh Ranjan \n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2012-12-14 16:11-0600\n" ++"PO-Revision-Date: 2013-10-23 04:21-0400\n" ++"Last-Translator: rranjan \n" + "Language-Team: Hindi \n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" ++"Language: hi\n" + "Plural-Forms: nplurals=2; plural=(n!=1);\n" + "\n" ++"X-Generator: Zanata 3.1.2\n" + +-#: lib/fascist.c:516 ++#: ../lib/fascist.c:550 ++msgid "you are not registered in the password file" ++msgstr "आप कूटशब्द फ़ाइल में पंजीकृत नहीं हैं" ++ ++#: ../lib/fascist.c:564 + msgid "it is based on your username" + msgstr "यह आपके उपयोक्ता नाम पर आधारित है" + +-#: lib/fascist.c:576 ++#: ../lib/fascist.c:629 + msgid "it is based upon your password entry" + msgstr "यह आपकी कूटशब्द प्रविष्टि पर आधारित है" + +-#: lib/fascist.c:591 ++#: ../lib/fascist.c:649 + msgid "it is derived from your password entry" + msgstr "यह आपकी कूटशब्द प्रविष्टि से निकला हुआ है" + +-#: lib/fascist.c:599 ++#: ../lib/fascist.c:662 + msgid "it's derived from your password entry" + msgstr "यह आपकी कूटशब्द प्रविष्टि से निकला हुआ है" + +-#: lib/fascist.c:608 ++#: ../lib/fascist.c:676 + msgid "it is derivable from your password entry" + msgstr "यह आपकी कूटशब्द प्रविष्टि से निकलने योग्य है" + +-#: lib/fascist.c:617 ++#: ../lib/fascist.c:690 + msgid "it's derivable from your password entry" + msgstr "यह आपकी कूटशब्द प्रविष्टि से निकलने योग्य है" + +-#: lib/fascist.c:674 +-msgid "you are not registered in the password file" +-msgstr "आप कूटशब्द फ़ाइल में पंजीकृत नहीं हैं" +- +-#: lib/fascist.c:709 ++#: ../lib/fascist.c:726 + msgid "it is WAY too short" + msgstr "यह बहुत ही छोटा है" + +-#: lib/fascist.c:714 ++#: ../lib/fascist.c:731 + msgid "it is too short" + msgstr "यह बहुत छोटा है" + +-#: lib/fascist.c:731 ++#: ../lib/fascist.c:748 + msgid "it does not contain enough DIFFERENT characters" + msgstr "इसमें पर्याप्त मात्रा में भिन्न वर्ण समाहित नहीं हैं" + +-#: lib/fascist.c:745 ++#: ../lib/fascist.c:762 + msgid "it is all whitespace" + msgstr "यह पूरी तरह से खाली स्थान है" + +-#: lib/fascist.c:764 ++#: ../lib/fascist.c:781 + msgid "it is too simplistic/systematic" + msgstr "यह काफी सरल/क्रमबद्ध है" + +-#: lib/fascist.c:769 ++#: ../lib/fascist.c:786 + msgid "it looks like a National Insurance number." + msgstr "यह राष्ट्रीय बीमा संख्या की तरह दिखता है." + +-#: lib/fascist.c:801 ++#: ../lib/fascist.c:813 + msgid "it is based on a dictionary word" + msgstr "यह शब्दकोश के शब्द पर आधारित है" + +-#: lib/fascist.c:820 ++#: ../lib/fascist.c:832 + msgid "it is based on a (reversed) dictionary word" + msgstr "यह शब्दकोश के शब्द (विलोम) पर आधारित है" + +-#: lib/fascist.c:865 ++#: ../lib/fascist.c:867 + msgid "error loading dictionary" +-msgstr "" ++msgstr "शब्दकोश लोड करने में त्रुटि" +diff -urN cracklib-2.9.6.old/po/hu.po cracklib-2.9.6.new/po/hu.po +--- cracklib-2.9.6.old/po/hu.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/hu.po 2018-10-09 11:38:16.351012456 +0200 +@@ -2,48 +2,49 @@ + # This file is put in the public domain. + # Marcel Hilzinger , 2003. + # Gábor Szentiványi , 2003 +-# ++# Meskó Balázs , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib.hu\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-08-06 20:20+0100\n" +-"Last-Translator: Szabolcs Varga \n" ++"PO-Revision-Date: 2016-09-10 06:40+0000\n" ++"Last-Translator: Meskó Balázs \n" + "Language-Team: hungarian\n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.0.1\n" ++"Language: hu\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +-msgstr "az Ön felhasználónevén alapszik" ++msgstr "a felhasználónevén alapszik" + + #: lib/fascist.c:576 + msgid "it is based upon your password entry" +-msgstr "az Ön jelszóbejegyzésén alapszik" ++msgstr "a jelszóbejegyzésén alapszik" + + #: lib/fascist.c:591 + msgid "it is derived from your password entry" +-msgstr "az Ön jelszóbejegyzéséból lett származtatva" ++msgstr "a jelszóbejegyzéséből lett származtatva" + + #: lib/fascist.c:599 + msgid "it's derived from your password entry" +-msgstr "az Ön jelszóbejegyzéséból lett származtatva" ++msgstr "a jelszóbejegyzéséből lett származtatva" + + #: lib/fascist.c:608 + msgid "it is derivable from your password entry" +-msgstr "kitalálható az Ön jelszóbejegyzéséből" ++msgstr "kitalálható a jelszóbejegyzéséből" + + #: lib/fascist.c:617 + msgid "it's derivable from your password entry" +-msgstr "kitalálható az Ön jelszóbejegyzéséből" ++msgstr "kitalálható a jelszóbejegyzéséből" + + #: lib/fascist.c:674 + msgid "you are not registered in the password file" +-msgstr "Ön nem szerepel a password fájlban" ++msgstr "nincs regisztrálva a jelszófájlban" + + #: lib/fascist.c:709 + msgid "it is WAY too short" +@@ -59,7 +60,7 @@ + + #: lib/fascist.c:745 + msgid "it is all whitespace" +-msgstr "csak szóközszerű karakterekből áll" ++msgstr "csak üres karakterekből áll" + + #: lib/fascist.c:764 + msgid "it is too simplistic/systematic" +@@ -71,12 +72,12 @@ + + #: lib/fascist.c:801 + msgid "it is based on a dictionary word" +-msgstr "a szótárban megtalálható" ++msgstr "szótári szón alapszik" + + #: lib/fascist.c:820 + msgid "it is based on a (reversed) dictionary word" +-msgstr "visszafelé olvasva egy ismert szót ad" ++msgstr "(megfordított) szótári szón alapszik" + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "hiba a szótár betöltésekor" +diff -urN cracklib-2.9.6.old/po/id.po cracklib-2.9.6.new/po/id.po +--- cracklib-2.9.6.old/po/id.po 1970-01-01 01:00:00.000000000 +0100 ++++ cracklib-2.9.6.new/po/id.po 2018-10-09 11:38:48.634817101 +0200 +@@ -0,0 +1,79 @@ ++# Andika Triwidada , 2017. #zanata ++msgid "" ++msgstr "" ++"Project-Id-Version: cracklib 2.9.6\n" ++"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" ++"POT-Creation-Date: 2015-08-18 13:45-0500\n" ++"PO-Revision-Date: 2017-07-24 12:45+0000\n" ++"Last-Translator: Andika Triwidada \n" ++"Language-Team: Indonesian\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Language: id\n" ++"Plural-Forms: nplurals=1; plural=0\n" ++"X-Generator: Zanata 4.6.2\n" ++ ++#: lib/fascist.c:516 ++msgid "it is based on your username" ++msgstr "ini berbasis pada nama Anda" ++ ++#: lib/fascist.c:576 ++msgid "it is based upon your password entry" ++msgstr "ini berbasis pada entri kata sandi Anda" ++ ++#: lib/fascist.c:591 ++msgid "it is derived from your password entry" ++msgstr "ini diturunkan dari entri kata sandi Anda" ++ ++#: lib/fascist.c:599 ++msgid "it's derived from your password entry" ++msgstr "ini diturunkan dari entri kata sandi Anda" ++ ++#: lib/fascist.c:608 ++msgid "it is derivable from your password entry" ++msgstr "ini dapat diturunkan dari entri kata sandi Anda" ++ ++#: lib/fascist.c:617 ++msgid "it's derivable from your password entry" ++msgstr "ini dapat diturunkan dari entri kata sandi Anda" ++ ++#: lib/fascist.c:674 ++msgid "you are not registered in the password file" ++msgstr "Anda tidak terdaftar dalam berkas kata sandi" ++ ++#: lib/fascist.c:709 ++msgid "it is WAY too short" ++msgstr "ini KETERLALUAN pendeknya" ++ ++#: lib/fascist.c:714 ++msgid "it is too short" ++msgstr "ini terlalu pendek" ++ ++#: lib/fascist.c:731 ++msgid "it does not contain enough DIFFERENT characters" ++msgstr "ini tidak memuat cukup karakter yang BERBEDA" ++ ++#: lib/fascist.c:745 ++msgid "it is all whitespace" ++msgstr "ini semua keluarga spasi" ++ ++#: lib/fascist.c:764 ++msgid "it is too simplistic/systematic" ++msgstr "ini terlalu sederhana/sistematis" ++ ++#: lib/fascist.c:769 ++msgid "it looks like a National Insurance number." ++msgstr "ini tampak seperti nomor Asuransi Nasional." ++ ++#: lib/fascist.c:801 ++msgid "it is based on a dictionary word" ++msgstr "ini berbasis pada kata kamus" ++ ++#: lib/fascist.c:820 ++msgid "it is based on a (reversed) dictionary word" ++msgstr "ini berbasis pada kata kamus (terbalik)" ++ ++#: lib/fascist.c:865 ++msgid "error loading dictionary" ++msgstr "galat saat memuat kamus" +diff -urN cracklib-2.9.6.old/po/it.po cracklib-2.9.6.new/po/it.po +--- cracklib-2.9.6.old/po/it.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/it.po 2018-10-09 11:38:39.759595795 +0200 +@@ -1,20 +1,22 @@ + # SOME DESCRIPTIVE TITLE. + # This file is put in the public domain. + # FIRST AUTHOR , YEAR. +-# ++# Jan Dittberner , 2016. #zanata ++# Luca Ciavatta , 2017. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-06-23 13:15+02:00\n" +-"Last-Translator: Novell Language \n" ++"PO-Revision-Date: 2018-08-16 12:44+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Novell Language \n" +-"Language: \n" + "MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=utf-8\n" ++"Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 0.9.6\n" ++"Language: it\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -78,4 +80,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "Errore di caricamento del dizionario" +diff -urN cracklib-2.9.6.old/po/ja.po cracklib-2.9.6.new/po/ja.po +--- cracklib-2.9.6.old/po/ja.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/ja.po 2018-10-09 11:38:02.366667678 +0200 +@@ -2,19 +2,22 @@ + # Copyright (C) YEAR Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. + # FIRST AUTHOR , YEAR. +-# ++# Jan Dittberner , 2016. #zanata ++# Ludek Janda , 2018. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-08-18 11:52-0000\n" +-"Last-Translator: Novell Language \n" ++"PO-Revision-Date: 2018-08-16 12:48+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Novell Language \n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"Language: ja\n" ++"Plural-Forms: nplurals=1; plural=0\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -78,4 +81,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "辞書の読み込み中二エラーが発生しました" +diff -urN cracklib-2.9.6.old/po/kk.po cracklib-2.9.6.new/po/kk.po +--- cracklib-2.9.6.old/po/kk.po 1970-01-01 01:00:00.000000000 +0100 ++++ cracklib-2.9.6.new/po/kk.po 2018-10-09 11:39:13.394434486 +0200 +@@ -0,0 +1,79 @@ ++# Baurzhan Muftakhidinov , 2017. #zanata ++msgid "" ++msgstr "" ++"Project-Id-Version: cracklib 2.9.6\n" ++"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" ++"POT-Creation-Date: 2015-08-18 13:45-0500\n" ++"PO-Revision-Date: 2017-04-11 12:05+0000\n" ++"Last-Translator: Baurzhan Muftakhidinov \n" ++"Language-Team: Kazakh\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Language: kk\n" ++"Plural-Forms: nplurals=1; plural=0\n" ++"X-Generator: Zanata 4.6.2\n" ++ ++#: lib/fascist.c:516 ++msgid "it is based on your username" ++msgstr "ол сіздің пайдаланушы атыңызға негізделген" ++ ++#: lib/fascist.c:576 ++msgid "it is based upon your password entry" ++msgstr "" ++ ++#: lib/fascist.c:591 ++msgid "it is derived from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:599 ++msgid "it's derived from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:608 ++msgid "it is derivable from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:617 ++msgid "it's derivable from your password entry" ++msgstr "" ++ ++#: lib/fascist.c:674 ++msgid "you are not registered in the password file" ++msgstr "" ++ ++#: lib/fascist.c:709 ++msgid "it is WAY too short" ++msgstr "ол ТЫМ қысқа" ++ ++#: lib/fascist.c:714 ++msgid "it is too short" ++msgstr "ол тым қысқа" ++ ++#: lib/fascist.c:731 ++msgid "it does not contain enough DIFFERENT characters" ++msgstr "" ++ ++#: lib/fascist.c:745 ++msgid "it is all whitespace" ++msgstr "" ++ ++#: lib/fascist.c:764 ++msgid "it is too simplistic/systematic" ++msgstr "" ++ ++#: lib/fascist.c:769 ++msgid "it looks like a National Insurance number." ++msgstr "" ++ ++#: lib/fascist.c:801 ++msgid "it is based on a dictionary word" ++msgstr "" ++ ++#: lib/fascist.c:820 ++msgid "it is based on a (reversed) dictionary word" ++msgstr "" ++ ++#: lib/fascist.c:865 ++msgid "error loading dictionary" ++msgstr "" +diff -urN cracklib-2.9.6.old/po/kn.po cracklib-2.9.6.new/po/kn.po +--- cracklib-2.9.6.old/po/kn.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/kn.po 2018-10-09 11:57:33.760928751 +0200 +@@ -1,83 +1,84 @@ + # translation of cracklib.po to Kannada + # Copyright (C) 2008 Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Shankar Prasad , 2008. ++# Shankar Prasad , 2008, 2013. + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" +-"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" +-"POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2008-12-11 11:49+0530\n" ++"Project-Id-Version: PACKAGE VERSION\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2013-08-06 14:45+0530\n" ++"PO-Revision-Date: 2013-10-28 02:15-0400\n" + "Last-Translator: Shankar Prasad \n" +-"Language-Team: Kannada \n" +-"Language: kn\n" ++"Language-Team: Kannada \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" +-"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"Language: kn\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 3.1.2\n" ++ ++#: ../lib/fascist.c:550 ++msgid "you are not registered in the password file" ++msgstr "ಗುಪ್ತಪದದ ಕಡತದಲ್ಲಿ ನಿಮ್ಮ ಹೆಸರು ನೋಂದಾಯಿಸಲ್ಪಟ್ಟಿಲ್ಲ" + +-#: lib/fascist.c:516 ++#: ../lib/fascist.c:564 + msgid "it is based on your username" + msgstr "ಇದು ನಿಮ್ಮ ಬಳಕೆದಾರಹೆಸರಿನ ಮೇಲೆ ಆಧರಿತವಾಗಿದೆ" + +-#: lib/fascist.c:576 ++#: ../lib/fascist.c:629 + msgid "it is based upon your password entry" + msgstr "ಇದು ನಿಮ್ಮ ಗುಪ್ತಪದ ನಮೂದಿನ ಮೇಲೆ ಆಧರಿತವಾಗಿದೆ" + +-#: lib/fascist.c:591 ++#: ../lib/fascist.c:649 + msgid "it is derived from your password entry" + msgstr "ಇದನ್ನು ನಿಮ್ಮ ಗುಪ್ತಪದ ನಮೂದಿನಿಂದ ತೆಗೆದುಕೊಳ್ಳಲಾಗಿದೆ" + +-#: lib/fascist.c:599 ++#: ../lib/fascist.c:662 + msgid "it's derived from your password entry" + msgstr "ಇದು ನಿಮ್ಮ ಗುಪ್ತಪದ ನಮೂದಿನಿಂದ ತೆಗೆದುಕೊಳ್ಳಲ್ಪಟ್ಟಿದೆ" + +-#: lib/fascist.c:608 ++#: ../lib/fascist.c:676 + msgid "it is derivable from your password entry" + msgstr "ಇದನ್ನು ನಿಮ್ಮ ಗುಪ್ತಪದ ನಮೂದಿನಿಂದ ತೆಗೆದುಕೊಳ್ಳಬಹುದಾಗಿದೆ" + +-#: lib/fascist.c:617 ++#: ../lib/fascist.c:690 + msgid "it's derivable from your password entry" + msgstr "ಇದನ್ನು ನಿಮ್ಮ ಗುಪ್ತಪದ ನಮೂದಿನಿಂದ ತೆಗೆದುಕೊಳ್ಳಬಹುದಾಗಿದೆ" + +-#: lib/fascist.c:674 +-msgid "you are not registered in the password file" +-msgstr "ಗುಪ್ತಪದದ ಕಡತದಲ್ಲಿ ನಿಮ್ಮ ಹೆಸರು ನೋಂದಾಯಿಸಲ್ಪಟ್ಟಿಲ್ಲ" +- +-#: lib/fascist.c:709 ++#: ../lib/fascist.c:726 + msgid "it is WAY too short" + msgstr "ಇದು ಅತ್ಯಂತ ಚಿಕ್ಕದಾಗಿದೆ" + +-#: lib/fascist.c:714 ++#: ../lib/fascist.c:731 + msgid "it is too short" + msgstr "ಇದು ಬಹಳ ಚಿಕ್ಕದಾಗಿದೆ" + +-#: lib/fascist.c:731 ++#: ../lib/fascist.c:748 + msgid "it does not contain enough DIFFERENT characters" + msgstr "ಇದು ವಿಭಿನ್ನವಾದ ಸಾಕಷ್ಟು ಅಕ್ಷರಗಳನ್ನು ಹೊಂದಿಲ್ಲ" + +-#: lib/fascist.c:745 ++#: ../lib/fascist.c:762 + msgid "it is all whitespace" + msgstr "ಇದು ಕೇವಲ ಖಾಲಿ ಜಾಗಗಳನ್ನು ಹೊಂದಿದೆ" + +-#: lib/fascist.c:764 ++#: ../lib/fascist.c:781 + msgid "it is too simplistic/systematic" + msgstr "ಇದು ಬಹಳ ಸರಳ/ಊಹಿಸಬಹುದಾಗಿದೆ" + +-#: lib/fascist.c:769 ++#: ../lib/fascist.c:786 + msgid "it looks like a National Insurance number." + msgstr "ಇದು ರಾಷ್ಟ್ರೀಯ ವಿಮೆ ಸಂಖ್ಯೆಯಂತೆ ಕಾಣಿಸುತ್ತಿದೆ" + +-#: lib/fascist.c:801 ++#: ../lib/fascist.c:813 + msgid "it is based on a dictionary word" + msgstr "ಇದು ಶಬ್ಧಕೋಶದಲ್ಲಿನ ಒಂದು ಪದದಂತಿದೆ" + +-#: lib/fascist.c:820 ++#: ../lib/fascist.c:832 + msgid "it is based on a (reversed) dictionary word" + msgstr "ಇದು ಶಬ್ಧಕೋಶದಲ್ಲಿನ ಒಂದು ಪದದಂತಿದೆ(ತಿರುಮುರುವು)" + +-#: lib/fascist.c:865 ++#: ../lib/fascist.c:867 + msgid "error loading dictionary" +-msgstr "" ++msgstr "ಕೋಶವನ್ನು ಲೋಡ್ ಮಾಡುವಲ್ಲಿ ದೋಷ" +diff -urN cracklib-2.9.6.old/po/ko.po cracklib-2.9.6.new/po/ko.po +--- cracklib-2.9.6.old/po/ko.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/ko.po 2018-10-09 11:39:16.328507645 +0200 +@@ -3,20 +3,22 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Eunju Kim , 2009. ++# Jan Dittberner , 2016. #zanata ++# Ludek Janda , 2018. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib.default\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-11-18 11:19+1000\n" +-"Last-Translator: Eunju Kim \n" ++"PO-Revision-Date: 2018-08-21 09:51+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Korean \n" +-"Language: ko\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" +-"Plural-Forms: nplurals=1; plural=0;\n" ++"Language: ko\n" ++"Plural-Forms: nplurals=1; plural=0;\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -80,4 +82,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "사전을 로드하는 도중 오류가 발생했습니다 " +diff -urN cracklib-2.9.6.old/po/LINGUAS cracklib-2.9.6.new/po/LINGUAS +--- cracklib-2.9.6.old/po/LINGUAS 1970-01-01 01:00:00.000000000 +0100 ++++ cracklib-2.9.6.new/po/LINGUAS 2018-10-09 12:14:53.147237727 +0200 +@@ -0,0 +1 @@ ++as be bn_IN ca cs da de el es eu fi fr gu he hi hu id it ja kk kn ko lt ml mr nb nl or pa pl pt_BR pt ru sk sl_SI sq sv ta te tr uk zh_CN zh_TW +diff -urN cracklib-2.9.6.old/po/lt.po cracklib-2.9.6.new/po/lt.po +--- cracklib-2.9.6.old/po/lt.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/lt.po 2018-10-09 11:38:04.314715706 +0200 +@@ -2,19 +2,21 @@ + # Copyright (C) YEAR Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. + # FIRST AUTHOR , YEAR. +-# ++# Jan Dittberner , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-08-04 12:05+0200\n" +-"Last-Translator: Linas Spraunius \n" ++"PO-Revision-Date: 2016-06-18 01:02+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: lt\n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"Language: lt\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +diff -urN cracklib-2.9.6.old/po/ml.po cracklib-2.9.6.new/po/ml.po +--- cracklib-2.9.6.old/po/ml.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/ml.po 2018-10-09 11:57:33.760928751 +0200 +@@ -2,81 +2,82 @@ + # Copyright (C) 2009 Free Software Foundation, Inc. + # This file is distributed under the same license as the cracklib package. + # Ani Peter , 2009. +-# ++# apeter , 2013. #zanata + msgid "" + msgstr "" + "Project-Id-Version: cracklib\n" +-"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" +-"POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-11-11 14:46+0530\n" +-"Last-Translator: Ani Peter \n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2012-12-14 16:11-0600\n" ++"PO-Revision-Date: 2013-10-28 08:56-0400\n" ++"Last-Translator: apeter \n" + "Language-Team: Malayalam\n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" ++"Language: ml\n" ++"X-Generator: Zanata 3.1.2\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +-#: lib/fascist.c:516 ++#: ../lib/fascist.c:550 ++msgid "you are not registered in the password file" ++msgstr "നിങ്ങള്‍ രഹസ്യവാക്കിനുള്ള ഫയലില്‍ രജിസ്ടര്‍ ചെയ്തിട്ടില്ല" ++ ++#: ../lib/fascist.c:564 + msgid "it is based on your username" + msgstr "നിങ്ങളുടെ ഉപയോക്തൃനാമം അനുസരിച്ചാണു്" + +-#: lib/fascist.c:576 ++#: ../lib/fascist.c:629 + msgid "it is based upon your password entry" + msgstr "നിങ്ങളുടെ രഹസ്യവാക്കനുസരിച്ചാണു്" + +-#: lib/fascist.c:591 ++#: ../lib/fascist.c:649 + msgid "it is derived from your password entry" + msgstr "നിങ്ങളുടെ രഹസ്യവാക്കില്‍ നിന്നും ലഭ്യമാക്കുന്നു" + +-#: lib/fascist.c:599 ++#: ../lib/fascist.c:662 + msgid "it's derived from your password entry" + msgstr "നിങ്ങളുടെ രഹസ്യവാക്കില്‍ നിന്നും ലഭ്യമാക്കുന്നു" + +-#: lib/fascist.c:608 ++#: ../lib/fascist.c:676 + msgid "it is derivable from your password entry" + msgstr "നിങ്ങളുടെ രഹസ്യവാക്കില്‍ നിന്നും ലഭ്യമാക്കുവാന്‍ സാധിക്കുന്നു" + +-#: lib/fascist.c:617 ++#: ../lib/fascist.c:690 + msgid "it's derivable from your password entry" + msgstr "നിങ്ങളുടെ രഹസ്യവാക്കില്‍ നിന്നും ലഭ്യമാക്കുന്നു" + +-#: lib/fascist.c:674 +-msgid "you are not registered in the password file" +-msgstr "നിങ്ങള്‍ രഹസ്യവാക്കിനുള്ള ഫയലില്‍ രജിസ്ടര്‍ ചെയ്തിട്ടില്ല" +- +-#: lib/fascist.c:709 ++#: ../lib/fascist.c:726 + msgid "it is WAY too short" + msgstr "വളരെ ചെറുതാണു്" + +-#: lib/fascist.c:714 ++#: ../lib/fascist.c:731 + msgid "it is too short" + msgstr "വളരെ ചെറുതാണു്" + +-#: lib/fascist.c:731 ++#: ../lib/fascist.c:748 + msgid "it does not contain enough DIFFERENT characters" + msgstr "അനവധി തരത്തിലുള്ള അക്ഷരങ്ങള്‍ നല്‍കുക" + +-#: lib/fascist.c:745 ++#: ../lib/fascist.c:762 + msgid "it is all whitespace" + msgstr "എല്ലാം വൈറ്റ്സ്പെയിസാണു്" + +-#: lib/fascist.c:764 ++#: ../lib/fascist.c:781 + msgid "it is too simplistic/systematic" + msgstr "വളരെ ലളിതമാണു്" + +-#: lib/fascist.c:769 ++#: ../lib/fascist.c:786 + msgid "it looks like a National Insurance number." + msgstr "ഒരു നാഷണല്‍ ഇന്‍ഷുറന്‍സ് നംബര്‍ പോലുണ്ടു്." + +-#: lib/fascist.c:801 ++#: ../lib/fascist.c:813 + msgid "it is based on a dictionary word" + msgstr "നിഘണ്ടുവിലുള്ള ഒരു വാക്കിനെ അടിസ്ഥാനമാക്കിയുള്ളതാണു്" + +-#: lib/fascist.c:820 ++#: ../lib/fascist.c:832 + msgid "it is based on a (reversed) dictionary word" + msgstr "നിഘണ്ടുവിലുള്ള ഒരു വാക്കിനെ അടിസ്ഥാനമാക്കിയുള്ളതാണു്" + +-#: lib/fascist.c:865 ++#: ../lib/fascist.c:867 + msgid "error loading dictionary" +-msgstr "" ++msgstr "നിഘണ്ടു ലഭ്യമാക്കുന്നതില്‍ പിശക്" +diff -urN cracklib-2.9.6.old/po/mr.po cracklib-2.9.6.new/po/mr.po +--- cracklib-2.9.6.old/po/mr.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/mr.po 2018-10-09 11:57:33.761928776 +0200 +@@ -1,83 +1,84 @@ + # translation of cracklib.default.cracklib.po to Marathi + # Copyright (C) 2009 Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Sandeep Shedmake , 2009. ++# Sandeep Shedmake , 2009, 2013. + msgid "" + msgstr "" +-"Project-Id-Version: cracklib.default.cracklib\n" +-"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" +-"POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-11-11 12:24+0530\n" ++"Project-Id-Version: PACKAGE VERSION\n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2013-08-06 14:45+0530\n" ++"PO-Revision-Date: 2013-10-13 01:28-0400\n" + "Last-Translator: Sandeep Shedmake \n" + "Language-Team: Marathi \n" +-"Language: mr\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" ++"Language: mr\n" + "Plural-Forms: nplurals=2; plural=(n!=1);\n" ++"X-Generator: Zanata 3.1.2\n" ++ ++#: ../lib/fascist.c:550 ++msgid "you are not registered in the password file" ++msgstr "तुम्ही पासवर्ड फाइलमध्ये नोंदणीकृत नाही" + +-#: lib/fascist.c:516 ++#: ../lib/fascist.c:564 + msgid "it is based on your username" + msgstr "तुमच्या वापरकर्तानावावर आधारीत आहे" + +-#: lib/fascist.c:576 ++#: ../lib/fascist.c:629 + msgid "it is based upon your password entry" + msgstr "तुमच्या पासवर्ड नोंदवर आधारीत आहे" + +-#: lib/fascist.c:591 ++#: ../lib/fascist.c:649 + msgid "it is derived from your password entry" + msgstr "तुमच्या पासवर्ड नोंद पासून प्राप्त आहे" + +-#: lib/fascist.c:599 ++#: ../lib/fascist.c:662 + msgid "it's derived from your password entry" + msgstr "तुमच्या पासवर्ड नोंद पासून प्राप्त" + +-#: lib/fascist.c:608 ++#: ../lib/fascist.c:676 + msgid "it is derivable from your password entry" + msgstr "तुमच्या पासवर्ड नोंद पासून प्राप्यजोगी आहे" + +-#: lib/fascist.c:617 ++#: ../lib/fascist.c:690 + msgid "it's derivable from your password entry" + msgstr "तुमच्या पासवर्ड नोंद पासून प्राप्यजोगी" + +-#: lib/fascist.c:674 +-msgid "you are not registered in the password file" +-msgstr "तुम्ही पासवर्ड फाइलमध्ये नोंदणीकृत नाही" +- +-#: lib/fascist.c:709 ++#: ../lib/fascist.c:726 + msgid "it is WAY too short" + msgstr "खूपच लहान" + +-#: lib/fascist.c:714 ++#: ../lib/fascist.c:731 + msgid "it is too short" + msgstr "खूप लहान आहे" + +-#: lib/fascist.c:731 ++#: ../lib/fascist.c:748 + msgid "it does not contain enough DIFFERENT characters" + msgstr "अतिरीक्त वेगळे अक्षर समाविष्टीत नाही" + +-#: lib/fascist.c:745 ++#: ../lib/fascist.c:762 + msgid "it is all whitespace" + msgstr "सर्वत्र वाईटस्पेस् आहे" + +-#: lib/fascist.c:764 ++#: ../lib/fascist.c:781 + msgid "it is too simplistic/systematic" + msgstr "खूपच सोपे/पद्धतशीर आहे" + +-#: lib/fascist.c:769 ++#: ../lib/fascist.c:786 + msgid "it looks like a National Insurance number." + msgstr "राष्ट्रीय इन्शॉरन्स् क्रमांक प्रमाणे आढळते." + +-#: lib/fascist.c:801 ++#: ../lib/fascist.c:813 + msgid "it is based on a dictionary word" + msgstr "शब्दकोषमधील शब्दावर आधारीत आहे" + +-#: lib/fascist.c:820 ++#: ../lib/fascist.c:832 + msgid "it is based on a (reversed) dictionary word" + msgstr "(उलटे) शब्दकोषमधील शब्दावर आधारीत आहे" + +-#: lib/fascist.c:865 ++#: ../lib/fascist.c:867 + msgid "error loading dictionary" +-msgstr "" ++msgstr "शब्दकोष लोड करतेवेळी त्रुटी" +diff -urN cracklib-2.9.6.old/po/nb.po cracklib-2.9.6.new/po/nb.po +--- cracklib-2.9.6.old/po/nb.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/nb.po 2018-10-09 11:38:53.611941207 +0200 +@@ -2,20 +2,21 @@ + # Copyright (C) 2005 Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. + # Olav Pettershagen , 2005. +-# ++# Jan Dittberner , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: nb\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-08-11 20:48+0200\n" +-"Last-Translator: Olav Pettershagen \n" +-"Language-Team: \n" +-"Language: \n" ++"PO-Revision-Date: 2016-06-18 01:02+0000\n" ++"Last-Translator: Copied by Zanata \n" ++"Language-Team: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.10.2\n" ++"Language: nb\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +diff -urN cracklib-2.9.6.old/po/nl.po cracklib-2.9.6.new/po/nl.po +--- cracklib-2.9.6.old/po/nl.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/nl.po 2018-10-09 11:38:51.650892308 +0200 +@@ -4,21 +4,22 @@ + # This file is put in the public domain. + # Arthur & Ettie Kerkmeester , 2003. + # Rinse de Vries , 2005. +-# ++# Geert Warrink , 2016. #zanata ++# Jan Dittberner , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: nl\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-08-14 05:41+0200\n" +-"Last-Translator: Rinse de Vries \n" ++"PO-Revision-Date: 2016-09-01 06:35+0000\n" ++"Last-Translator: Geert Warrink \n" + "Language-Team: Dutch \n" +-"Language: nl\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.10.2\n" +-"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"Language: nl\n" ++"Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -82,4 +83,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "fout bij laden woordenboek" +diff -urN cracklib-2.9.6.old/po/or.po cracklib-2.9.6.new/po/or.po +--- cracklib-2.9.6.old/po/or.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/or.po 2018-10-09 11:57:33.761928776 +0200 +@@ -1,84 +1,85 @@ + # translation of cracklib.default.cracklib.or.po to Oriya + # Copyright (C) 2009 Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # Manoj Kumar Giri , 2009. ++# mgiri , 2013. #zanata + msgid "" + msgstr "" + "Project-Id-Version: cracklib.default.cracklib.or\n" +-"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" +-"POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-11-12 13:02+0530\n" +-"Last-Translator: Manoj Kumar Giri \n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2012-12-14 16:11-0600\n" ++"PO-Revision-Date: 2013-10-22 06:40-0400\n" ++"Last-Translator: mgiri \n" + "Language-Team: Oriya \n" +-"Language: or\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" +-"Plural-Forms: nplurals=2; plural=(n!=1);\n" ++"Language: or\n" ++"Plural-Forms: nplurals=2; plural=(n!=1);\n" + "\n" ++"X-Generator: Zanata 3.1.2\n" ++ ++#: ../lib/fascist.c:550 ++msgid "you are not registered in the password file" ++msgstr "ପ୍ରବେଶ ସଂକେତ ଫାଇଲରେ ଆପଣ ପଞ୍ଜିକୃତ ହୋଇନାହାନ୍ତି" + +-#: lib/fascist.c:516 ++#: ../lib/fascist.c:564 + msgid "it is based on your username" + msgstr "ଏହା ଆପଣଙ୍କର ଚାଳକନାମ ଉପରେ ଆଧାରିତ" + +-#: lib/fascist.c:576 ++#: ../lib/fascist.c:629 + msgid "it is based upon your password entry" + msgstr "ଏହା ଆପଣଙ୍କର ପ୍ରବେଶ ସଂକେତ ଭରଣ ଉପରେ ଆଧାରିତ" + +-#: lib/fascist.c:591 ++#: ../lib/fascist.c:649 + msgid "it is derived from your password entry" + msgstr "ଏହା ଆପଣଙ୍କର ପ୍ରବେଶ ସଂକେତ ଭରଣରୁ ଉତ୍ପନ୍ନ କରାହୋଇଥାଏ" + +-#: lib/fascist.c:599 ++#: ../lib/fascist.c:662 + msgid "it's derived from your password entry" + msgstr "ଏହା ଆପଣଙ୍କର ପ୍ରବେଶ ସଂକେତ ଭରଣରୁ ଉତ୍ପନ୍ନ କରାହୋଇଥାଏ" + +-#: lib/fascist.c:608 ++#: ../lib/fascist.c:676 + msgid "it is derivable from your password entry" + msgstr "ଏହା ଆପଣଙ୍କର ପ୍ରବେଶ ସଂକେତ ଭରଣରୁ ଉତ୍ପନ୍ନ କରିବା ଯୋଗ୍ୟ" + +-#: lib/fascist.c:617 ++#: ../lib/fascist.c:690 + msgid "it's derivable from your password entry" + msgstr "ଏହା ଆପଣଙ୍କର ପ୍ରବେଶ ସଂକେତ ଭରଣରୁ ଉତ୍ପନ୍ନ କରିବା ଯୋଗ୍ୟ" + +-#: lib/fascist.c:674 +-msgid "you are not registered in the password file" +-msgstr "ପ୍ରବେଶ ସଂକେତ ଫାଇଲରେ ଆପଣ ପଞ୍ଜିକୃତ ହୋଇନାହାନ୍ତି" +- +-#: lib/fascist.c:709 ++#: ../lib/fascist.c:726 + msgid "it is WAY too short" + msgstr "ଏହା ଅତ୍ୟଧିକ ଛୋଟ ଅଟେ" + +-#: lib/fascist.c:714 ++#: ../lib/fascist.c:731 + msgid "it is too short" + msgstr "ଏହା ଅତ୍ୟଧିକ ଛୋଟ ଅଟେ" + +-#: lib/fascist.c:731 ++#: ../lib/fascist.c:748 + msgid "it does not contain enough DIFFERENT characters" + msgstr "ଏହା ଯଥେଷ୍ଟ ଭିନ୍ନ ବର୍ଣ୍ଣ ଧାରଣ କରିନଥାଏ" + +-#: lib/fascist.c:745 ++#: ../lib/fascist.c:762 + msgid "it is all whitespace" + msgstr "ଏହା କେବଳ ଖାଲିସ୍ଥାନ ଅଟେ" + +-#: lib/fascist.c:764 ++#: ../lib/fascist.c:781 + msgid "it is too simplistic/systematic" + msgstr "ଏହା ଅତ୍ୟଧିକ ସରଳ/ନିୟମାନୁବର୍ତ୍ତୀ" + +-#: lib/fascist.c:769 ++#: ../lib/fascist.c:786 + msgid "it looks like a National Insurance number." + msgstr "ଏହା ଗୋଟିଏ ଜାତୀୟ ବୀମା ସଂଖ୍ୟା ପରି ଦେଖାଯାଉଛି।" + +-#: lib/fascist.c:801 ++#: ../lib/fascist.c:813 + msgid "it is based on a dictionary word" + msgstr "ଏହା ଅଭିଧାନ ଶବ୍ଦ ଉପରେ ଆଧାରିତ" + +-#: lib/fascist.c:820 ++#: ../lib/fascist.c:832 + msgid "it is based on a (reversed) dictionary word" + msgstr "ଏହା ଗୋଟିଏ (ଓଲଟା) ଅଭିଧାନ ଶବ୍ଦ ଉପରେ ଆଧାରିତ" + +-#: lib/fascist.c:865 ++#: ../lib/fascist.c:867 + msgid "error loading dictionary" +-msgstr "" ++msgstr "ଅଭିଧାନ ଧାରଣ କରିବାରେ ତ୍ରୁଟି" +diff -urN cracklib-2.9.6.old/po/pa.po cracklib-2.9.6.new/po/pa.po +--- cracklib-2.9.6.old/po/pa.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/pa.po 2018-10-09 11:38:05.301740041 +0200 +@@ -5,24 +5,26 @@ + # + # Amanpreet Singh Alam[ਆਲਮ] , 2005, 2009. + # A S Alam , 2009. ++# Jan Dittberner , 2016. #zanata ++# A S Alam , 2017. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib.pa\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-11-17 05:52+0530\n" +-"Last-Translator: A S Alam \n" ++"PO-Revision-Date: 2017-08-18 07:15+0000\n" ++"Last-Translator: A S Alam \n" + "Language-Team: Punjabi/Panjabi \n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: Lokalize 1.0\n" ++"Language: pa\n" + "Plural-Forms: nplurals=2; plural=(n != 1);\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +-msgstr "ਇਹ ਤੁਹਾਡੇ ਯੂਜ਼ਰ-ਨਾਂ ਮੁਤਾਬਿਕ ਨਹੀਂ ਹੈ" ++msgstr "ਇਹ ਤੁਹਾਡੇ ਵਰਤੋਂਕਾਰ-ਨਾਂ ਮੁਤਾਬਕ ਹੈ" + + #: lib/fascist.c:576 + msgid "it is based upon your password entry" +@@ -50,7 +52,7 @@ + + #: lib/fascist.c:709 + msgid "it is WAY too short" +-msgstr "ਇਹ ਬਹੁਤ ਹੀ ਛੋਟਾ ਢੰਗ ਹੈ" ++msgstr "ਇਹ ਬਹੁਤ ਹੀ ਛੋਟਾ ਹੈ" + + #: lib/fascist.c:714 + msgid "it is too short" +@@ -70,7 +72,7 @@ + + #: lib/fascist.c:769 + msgid "it looks like a National Insurance number." +-msgstr "ਇਹ ਰਾਸ਼ਟਰੀ ਸੁਰੱਖਿਆ ਨੰਬਰ ਵਰਗਾ ਜਾਪਦਾ ਹੈ।" ++msgstr "ਇਹ ਨੈਸ਼ਨਲ ਇਨਸ਼ੋਅਰੈਂਸ ਨੰਬਰ ਵਰਗਾ ਜਾਪਦਾ ਹੈ।" + + #: lib/fascist.c:801 + msgid "it is based on a dictionary word" +@@ -78,8 +80,8 @@ + + #: lib/fascist.c:820 + msgid "it is based on a (reversed) dictionary word" +-msgstr "ਇਹ (ਉਲਟੇ) ਡਿਕਸ਼ਨਰੀ ਸ਼ਬਦ ਉੱਤੇ ਅਧਾਰਿਤ ਹੈ" ++msgstr "ਇਹ (ਉਲਟ) ਡਿਕਸ਼ਨਰੀ ਸ਼ਬਦ ਉੱਤੇ ਅਧਾਰਿਤ ਹੈ" + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "ਡਿਕਸ਼ਨਰੀ ਲੋਡ ਕਰਨ ਦੌਰਾਨ ਗਲਤੀ" +diff -urN cracklib-2.9.6.old/po/pl.po cracklib-2.9.6.new/po/pl.po +--- cracklib-2.9.6.old/po/pl.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/pl.po 2018-10-09 11:38:10.401865781 +0200 +@@ -1,19 +1,22 @@ + # translation of pl.po to Polish + # Piotr Bolek , 2005. + # Piotr Drąg , 2009. +-# ++# Jan Dittberner , 2016. #zanata ++# Piotr Drąg , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: pl\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-10-12 15:57+0200\n" ++"PO-Revision-Date: 2016-08-31 09:50+0000\n" + "Last-Translator: Piotr Drąg \n" + "Language-Team: Polish \n" +-"Language: pl\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"Language: pl\n" ++"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -21,27 +24,27 @@ + + #: lib/fascist.c:576 + msgid "it is based upon your password entry" +-msgstr "oparte na wpisie w pliku passwd" ++msgstr "oparte na wpisie w pliku passwd" + + #: lib/fascist.c:591 + msgid "it is derived from your password entry" +-msgstr "pochodzi od wpisu w pliku passwd" ++msgstr "pochodzi od wpisu w pliku passwd" + + #: lib/fascist.c:599 + msgid "it's derived from your password entry" +-msgstr "pochodzi od wpisu w pliku passwd" ++msgstr "pochodzi od wpisu w pliku passwd" + + #: lib/fascist.c:608 + msgid "it is derivable from your password entry" +-msgstr "da się odtworzyć z wpisu w pliku passwd" ++msgstr "da się odtworzyć z wpisu w pliku passwd" + + #: lib/fascist.c:617 + msgid "it's derivable from your password entry" +-msgstr "da się odtworzyć z wpisu w pliku passwd" ++msgstr "da się odtworzyć z wpisu w pliku passwd" + + #: lib/fascist.c:674 + msgid "you are not registered in the password file" +-msgstr "nie zarejestrowano w pliku passwd" ++msgstr "nie zarejestrowano w pliku passwd" + + #: lib/fascist.c:709 + msgid "it is WAY too short" +@@ -77,4 +80,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "błąd podczas wczytywania słownika" +diff -urN cracklib-2.9.6.old/po/pt_BR.po cracklib-2.9.6.new/po/pt_BR.po +--- cracklib-2.9.6.old/po/pt_BR.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/pt_BR.po 2018-10-09 11:38:18.293060531 +0200 +@@ -2,19 +2,21 @@ + # Copyright (C) YEAR Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. + # FIRST AUTHOR , YEAR. +-# ++# Daniel Lara , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-08-18 15:02+0000\n" +-"Last-Translator: Novell Language \n" ++"PO-Revision-Date: 2018-08-16 12:44+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Novell Language \n" +-"Language: \n" + "MIME-Version: 1.0\n" +-"Content-Type: text/plain; charset=utf-8\n" ++"Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"Language: pt_BR\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -78,4 +80,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "erro ao carregar dicionário" +diff -urN cracklib-2.9.6.old/po/pt.po cracklib-2.9.6.new/po/pt.po +--- cracklib-2.9.6.old/po/pt.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/pt.po 2018-10-09 11:37:57.475547088 +0200 +@@ -2,20 +2,22 @@ + # Copyright (C) 2005 Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. + # Antonio Cardoso Martins , 2005. +-# ++# Jan Dittberner , 2016. #zanata ++# Ricardo Pinto , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib.pt\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-08-05 00:45+0100\n" +-"Last-Translator: Antonio Cardoso Martins \n" ++"PO-Revision-Date: 2016-09-05 10:12+0000\n" ++"Last-Translator: Ricardo Pinto \n" + "Language-Team: portuguese\n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.10\n" ++"Language: pt\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -79,4 +81,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "erro ao carregar o dicionário" +diff -urN cracklib-2.9.6.old/po/ru.po cracklib-2.9.6.new/po/ru.po +--- cracklib-2.9.6.old/po/ru.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/ru.po 2018-10-09 11:38:50.654867472 +0200 +@@ -4,45 +4,46 @@ + # + # Anton Dobkin , 2008. + # Yulia Poyarko , 2009. ++# Igor Gorbounov , 2016. #zanata ++# Jan Dittberner , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-12-03 10:17+1100\n" +-"Last-Translator: Yulia \n" ++"PO-Revision-Date: 2018-08-16 12:43+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: \n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Language: ru\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +-msgstr "основан на вашем имени пользователя" ++msgstr "на основе вашего имени пользователя" + + #: lib/fascist.c:576 + msgid "it is based upon your password entry" +-msgstr "основан на вашем входном пароле" ++msgstr "на основе введенного вами пароля" + + #: lib/fascist.c:591 + msgid "it is derived from your password entry" +-msgstr "получен из вашего входного пароля" ++msgstr "получен из введенного вами пароля" + + #: lib/fascist.c:599 + msgid "it's derived from your password entry" +-msgstr "получен из вашего входного пароля" ++msgstr "получен из введенного вами пароля" + + #: lib/fascist.c:608 + msgid "it is derivable from your password entry" +-msgstr "получен из вашего входного пароля" ++msgstr "получается из введенного вами пароля" + + #: lib/fascist.c:617 + msgid "it's derivable from your password entry" +-msgstr "получен из вашего входного пароля" ++msgstr "получается из введенного вами пароля" + + #: lib/fascist.c:674 + msgid "you are not registered in the password file" +@@ -54,11 +55,11 @@ + + #: lib/fascist.c:714 + msgid "it is too short" +-msgstr "короткий" ++msgstr "слишком короткий" + + #: lib/fascist.c:731 + msgid "it does not contain enough DIFFERENT characters" +-msgstr "не содержит достаточное число РАЗЛИЧНЫХ символов" ++msgstr "не содержит достаточного числа РАЗЛИЧНЫХ символов" + + #: lib/fascist.c:745 + msgid "it is all whitespace" +@@ -70,16 +71,16 @@ + + #: lib/fascist.c:769 + msgid "it looks like a National Insurance number." +-msgstr "похож на число государственного страхования." ++msgstr "похож на номер государственного страхования." + + #: lib/fascist.c:801 + msgid "it is based on a dictionary word" +-msgstr "основан на слове из словаря" ++msgstr "на основе слова из словаря" + + #: lib/fascist.c:820 + msgid "it is based on a (reversed) dictionary word" +-msgstr "основан на измененном слове из словаря" ++msgstr "на основе (перевернутого) слова из словаря" + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "ошибка при загрузке словаря" +diff -urN cracklib-2.9.6.old/po/sk.po cracklib-2.9.6.new/po/sk.po +--- cracklib-2.9.6.old/po/sk.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/sk.po 2018-10-09 11:39:19.259580732 +0200 +@@ -1,20 +1,22 @@ + # translation of cracklib.po to Slovak + # This file is put in the public domain. + # Stanislav Visnovsky , 2003. +-# ++# Jan Dittberner , 2016. #zanata ++# feonsu , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-06-23 13:12+02:00\n" +-"Last-Translator: Stanislav Visnovsky \n" ++"PO-Revision-Date: 2016-10-11 06:53+0000\n" ++"Last-Translator: feonsu \n" + "Language-Team: Slovak \n" +-"Language: sk\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.2beta3\n" ++"Language: sk\n" ++"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -78,4 +80,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "chyba pri načítavaní slovníka" +diff -urN cracklib-2.9.6.old/po/sq.po cracklib-2.9.6.new/po/sq.po +--- cracklib-2.9.6.old/po/sq.po 1970-01-01 01:00:00.000000000 +0100 ++++ cracklib-2.9.6.new/po/sq.po 2018-10-09 11:39:15.354483358 +0200 +@@ -0,0 +1,79 @@ ++# Jona Azizaj , 2017. #zanata ++msgid "" ++msgstr "" ++"Project-Id-Version: cracklib 2.9.6\n" ++"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" ++"POT-Creation-Date: 2015-08-18 13:45-0500\n" ++"PO-Revision-Date: 2017-04-17 10:20+0000\n" ++"Last-Translator: Anxhela Hyseni \n" ++"Language-Team: Albanian\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Language: sq\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" ++ ++#: lib/fascist.c:516 ++msgid "it is based on your username" ++msgstr "kjo është bazuar në emrin e përdoruesit tuaj" ++ ++#: lib/fascist.c:576 ++msgid "it is based upon your password entry" ++msgstr "kjo është bazuar në fjalëkalimin që ju keni dhënë" ++ ++#: lib/fascist.c:591 ++msgid "it is derived from your password entry" ++msgstr "kjo është përftuar nga fjalëkalimi që ju keni dhënë" ++ ++#: lib/fascist.c:599 ++msgid "it's derived from your password entry" ++msgstr "kjo është përftuar nga fjalëkalimi që ju keni dhënë" ++ ++#: lib/fascist.c:608 ++msgid "it is derivable from your password entry" ++msgstr "kjo u përfitua nga fjalëkalimi që ju keni dhënë" ++ ++#: lib/fascist.c:617 ++msgid "it's derivable from your password entry" ++msgstr "kjo u përfitua nga fjalëkalimi që ju keni dhënë" ++ ++#: lib/fascist.c:674 ++msgid "you are not registered in the password file" ++msgstr "ju nuk jeni regjistruar në skedarin e fjalëkalimit" ++ ++#: lib/fascist.c:709 ++msgid "it is WAY too short" ++msgstr "kjo është JASHTËZAKONISHT shumë e shkurtër" ++ ++#: lib/fascist.c:714 ++msgid "it is too short" ++msgstr "kjo është shumë e shkurtër" ++ ++#: lib/fascist.c:731 ++msgid "it does not contain enough DIFFERENT characters" ++msgstr "nuk përmban mjaftueshëm karaktere të NDRYSHME" ++ ++#: lib/fascist.c:745 ++msgid "it is all whitespace" ++msgstr "është e gjitha hapësirë e bardhë" ++ ++#: lib/fascist.c:764 ++msgid "it is too simplistic/systematic" ++msgstr "është shumë i thjeshtë/ sistematik" ++ ++#: lib/fascist.c:769 ++msgid "it looks like a National Insurance number." ++msgstr "ngjan sikur është numër Sigurimi Kombëtar." ++ ++#: lib/fascist.c:801 ++msgid "it is based on a dictionary word" ++msgstr "është bazuar në një fjalë në fjalor" ++ ++#: lib/fascist.c:820 ++msgid "it is based on a (reversed) dictionary word" ++msgstr "është bazuar në një fjalë (mbrapsht) në fjalor" ++ ++#: lib/fascist.c:865 ++msgid "error loading dictionary" ++msgstr "gabim në ngarkimin e fjalorit" +diff -urN cracklib-2.9.6.old/po/sv.po cracklib-2.9.6.new/po/sv.po +--- cracklib-2.9.6.old/po/sv.po 1970-01-01 01:00:00.000000000 +0100 ++++ cracklib-2.9.6.new/po/sv.po 2018-10-09 11:39:17.304531983 +0200 +@@ -0,0 +1,79 @@ ++# Göran Uddeborg , 2017. #zanata ++msgid "" ++msgstr "" ++"Project-Id-Version: cracklib 2.9.6\n" ++"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" ++"POT-Creation-Date: 2015-08-18 13:45-0500\n" ++"PO-Revision-Date: 2017-03-29 03:16+0000\n" ++"Last-Translator: Göran Uddeborg \n" ++"Language-Team: Swedish\n" ++"MIME-Version: 1.0\n" ++"Content-Type: text/plain; charset=UTF-8\n" ++"Content-Transfer-Encoding: 8bit\n" ++"Language: sv\n" ++"Plural-Forms: nplurals=2; plural=(n != 1)\n" ++"X-Generator: Zanata 4.6.2\n" ++ ++#: lib/fascist.c:516 ++msgid "it is based on your username" ++msgstr "det är baserat på ditt användarnamn" ++ ++#: lib/fascist.c:576 ++msgid "it is based upon your password entry" ++msgstr "det är baserat på din lösenordspost" ++ ++#: lib/fascist.c:591 ++msgid "it is derived from your password entry" ++msgstr "det är härlett från din lösenordspost" ++ ++#: lib/fascist.c:599 ++msgid "it's derived from your password entry" ++msgstr "det är härlett från din lösenordspost" ++ ++#: lib/fascist.c:608 ++msgid "it is derivable from your password entry" ++msgstr "det är härledbart från din lösenordspost" ++ ++#: lib/fascist.c:617 ++msgid "it's derivable from your password entry" ++msgstr "det är härledbart från din lösenordspost" ++ ++#: lib/fascist.c:674 ++msgid "you are not registered in the password file" ++msgstr "du är inte registrerad i lösenordsfilen" ++ ++#: lib/fascist.c:709 ++msgid "it is WAY too short" ++msgstr "det är ALLDELES för kort" ++ ++#: lib/fascist.c:714 ++msgid "it is too short" ++msgstr "det är för kort" ++ ++#: lib/fascist.c:731 ++msgid "it does not contain enough DIFFERENT characters" ++msgstr "det innehåller inte tillräckligt med OLIKA tecken" ++ ++#: lib/fascist.c:745 ++msgid "it is all whitespace" ++msgstr "det är bara blanktecken" ++ ++#: lib/fascist.c:764 ++msgid "it is too simplistic/systematic" ++msgstr "det är för simplistiskt/systematiskt" ++ ++#: lib/fascist.c:769 ++msgid "it looks like a National Insurance number." ++msgstr "det ser ut som ett personnummer" ++ ++#: lib/fascist.c:801 ++msgid "it is based on a dictionary word" ++msgstr "det är baserat på ett ord ur ordlistan" ++ ++#: lib/fascist.c:820 ++msgid "it is based on a (reversed) dictionary word" ++msgstr "det är baserat på ett (omvänt) ord ur ordlistan" ++ ++#: lib/fascist.c:865 ++msgid "error loading dictionary" ++msgstr "fel när ordlistan lästes in" +diff -urN cracklib-2.9.6.old/po/ta.po cracklib-2.9.6.new/po/ta.po +--- cracklib-2.9.6.old/po/ta.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/ta.po 2018-10-09 11:57:33.761928776 +0200 +@@ -1,83 +1,84 @@ + # translation of cracklib.default.cracklib.po to Tamil + # Copyright (C) 2009 Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. +-# ++# + # I. Felix , 2009. ++# shkumar , 2013. #zanata + msgid "" + msgstr "" + "Project-Id-Version: cracklib.default.cracklib\n" +-"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" +-"POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-11-11 14:21+0530\n" +-"Last-Translator: I. Felix \n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2012-12-14 16:11-0600\n" ++"PO-Revision-Date: 2013-11-11 09:51-0500\n" ++"Last-Translator: shkumar \n" + "Language-Team: Tamil \n" +-"Language: ta\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" ++"Language: ta\n" + "Plural-Forms: nplurals=2; plural=(n!=1);\\n\n" ++"X-Generator: Zanata 3.1.2\n" ++ ++#: ../lib/fascist.c:550 ++msgid "you are not registered in the password file" ++msgstr "நீங்கள் கடவுச்சொல் கோப்பில் பதிவு செய்யவில்லை" + +-#: lib/fascist.c:516 ++#: ../lib/fascist.c:564 + msgid "it is based on your username" + msgstr "இது உங்கள் பயனர்பெயர் அடிப்படையில் உள்ளது" + +-#: lib/fascist.c:576 ++#: ../lib/fascist.c:629 + msgid "it is based upon your password entry" + msgstr "இது உங்கள் கடவுச்சொல் உள்ளீடு படி உள்ளது" + +-#: lib/fascist.c:591 ++#: ../lib/fascist.c:649 + msgid "it is derived from your password entry" + msgstr "இது உங்கள் கடவுச்சொல் உள்ளீடிலிருந்து வரையறுக்கப்பட்டது" + +-#: lib/fascist.c:599 ++#: ../lib/fascist.c:662 + msgid "it's derived from your password entry" + msgstr "இது உங்கள் கடவுச்சொல் உள்ளீடிலிருந்து வரையறுக்கப்பட்டது" + +-#: lib/fascist.c:608 ++#: ../lib/fascist.c:676 + msgid "it is derivable from your password entry" + msgstr "இது உங்கள் கடவுச்சொல் உள்ளீடிலிருந்து வரையறுக்கப்படக்கூடியது" + +-#: lib/fascist.c:617 ++#: ../lib/fascist.c:690 + msgid "it's derivable from your password entry" + msgstr "இது உங்கள் கடவுச்சொல் உள்ளீடிலிருந்து வரையறுக்கப்படக்கூடியது" + +-#: lib/fascist.c:674 +-msgid "you are not registered in the password file" +-msgstr "நீங்கள் கடவுச்சொல் கோப்பில் பதிவு செய்யவில்லை" +- +-#: lib/fascist.c:709 ++#: ../lib/fascist.c:726 + msgid "it is WAY too short" + msgstr "இது மிகவும் சிறியது" + +-#: lib/fascist.c:714 ++#: ../lib/fascist.c:731 + msgid "it is too short" + msgstr "இது மிகவும் சிறியது" + +-#: lib/fascist.c:731 ++#: ../lib/fascist.c:748 + msgid "it does not contain enough DIFFERENT characters" + msgstr "இது போதிய வேறுபாடு எழுத்துக்களை கொண்டிருக்கவில்லை" + +-#: lib/fascist.c:745 ++#: ../lib/fascist.c:762 + msgid "it is all whitespace" + msgstr "இது எல்லாம் காலிஇடங்கள்" + +-#: lib/fascist.c:764 ++#: ../lib/fascist.c:781 + msgid "it is too simplistic/systematic" + msgstr "இது மிகவும் எளியது/அமைப்பானது" + +-#: lib/fascist.c:769 ++#: ../lib/fascist.c:786 + msgid "it looks like a National Insurance number." + msgstr "இது ஒரு தேசிய காப்பீடு எண் போலுள்ளது." + +-#: lib/fascist.c:801 ++#: ../lib/fascist.c:813 + msgid "it is based on a dictionary word" + msgstr "இது ஒரு அகராதி சொல்லை அடிப்படையாக கொண்டது" + +-#: lib/fascist.c:820 ++#: ../lib/fascist.c:832 + msgid "it is based on a (reversed) dictionary word" + msgstr "இது ஒரு (தலைகீழானது) அகராதி சொல்லை அடிப்படையாக கொண்டது" + +-#: lib/fascist.c:865 ++#: ../lib/fascist.c:867 + msgid "error loading dictionary" +-msgstr "" ++msgstr "அகராதியை ஏற்றுவதில் பிழை" +diff -urN cracklib-2.9.6.old/po/te.po cracklib-2.9.6.new/po/te.po +--- cracklib-2.9.6.old/po/te.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/te.po 2018-10-09 11:57:33.761928776 +0200 +@@ -1,84 +1,85 @@ + # translation of cracklib.pot to Telugu + # Copyright (C) 2009 Free Software Foundation, Inc. + # This file is distributed under the same license as the cracklib package. +-# ++# + # Krishna Babu K , 2009. ++# kkrothap , 2013. #zanata + msgid "" + msgstr "" + "Project-Id-Version: cracklib\n" +-"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" +-"POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2009-11-11 15:13+0530\n" +-"Last-Translator: Krishna Babu K \n" ++"Report-Msgid-Bugs-To: \n" ++"POT-Creation-Date: 2012-12-14 16:11-0600\n" ++"PO-Revision-Date: 2013-09-26 10:54-0400\n" ++"Last-Translator: kkrothap \n" + "Language-Team: Telugu \n" +-"Language: te\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" ++"Language: te\n" + "Plural-Forms: nplurals=2; plural=(n!=1);\n" + "\n" ++"X-Generator: Zanata 3.1.2\n" ++ ++#: ../lib/fascist.c:550 ++msgid "you are not registered in the password file" ++msgstr "మీరు సంకేతపదపు ఫైలునందు నమోదు కాలేదు" + +-#: lib/fascist.c:516 ++#: ../lib/fascist.c:564 + msgid "it is based on your username" + msgstr "ఇది మీ వినియోగదారినామముపై ఆధారపడి వుంది" + +-#: lib/fascist.c:576 ++#: ../lib/fascist.c:629 + msgid "it is based upon your password entry" + msgstr "ఇది మీ సంకేతపదము ప్రవేశముపై ఆధారపడి వుంది" + +-#: lib/fascist.c:591 ++#: ../lib/fascist.c:649 + msgid "it is derived from your password entry" + msgstr "ఇది మీ సంకేతపదము ప్రవేశమునుండి ఉత్పాదించబడింది" + +-#: lib/fascist.c:599 ++#: ../lib/fascist.c:662 + msgid "it's derived from your password entry" + msgstr "ఇది మీ సంకేతపదము ప్రవేశమునుండి ఉత్పాదించబడింది" + +-#: lib/fascist.c:608 ++#: ../lib/fascist.c:676 + msgid "it is derivable from your password entry" + msgstr "ఇది మీ సంకేతపదము ప్రవేశమునుండి ఉత్పాదించబడ గలదు" + +-#: lib/fascist.c:617 ++#: ../lib/fascist.c:690 + msgid "it's derivable from your password entry" + msgstr "ఇది మీ సంకేతపదము ప్రవేశమునుండి ఉత్పాదించబడ గలదు" + +-#: lib/fascist.c:674 +-msgid "you are not registered in the password file" +-msgstr "మీరు సంకేతపదపు ఫైలునందు నమోదు కాలేదు" +- +-#: lib/fascist.c:709 ++#: ../lib/fascist.c:726 + msgid "it is WAY too short" + msgstr "ఇది పొట్టి దానికి మార్గము" + +-#: lib/fascist.c:714 ++#: ../lib/fascist.c:731 + msgid "it is too short" + msgstr "ఇది మరీ పొట్టిదిగా వుంది" + +-#: lib/fascist.c:731 ++#: ../lib/fascist.c:748 + msgid "it does not contain enough DIFFERENT characters" + msgstr "ఇది కావలసినన్ని విభిన్న అక్షరాలను కలిగిలేదు" + +-#: lib/fascist.c:745 ++#: ../lib/fascist.c:762 + msgid "it is all whitespace" + msgstr "ఇది అంతా ఖాళీగానే వుంది" + +-#: lib/fascist.c:764 ++#: ../lib/fascist.c:781 + msgid "it is too simplistic/systematic" + msgstr "ఇదీ మరీ సాధారణంగా/క్రమపద్దతిలో వుంది" + +-#: lib/fascist.c:769 ++#: ../lib/fascist.c:786 + msgid "it looks like a National Insurance number." + msgstr "ఇది నేష్నల్ ఇన్సూరెన్స్ సంఖ్య వలె వుంది." + +-#: lib/fascist.c:801 ++#: ../lib/fascist.c:813 + msgid "it is based on a dictionary word" + msgstr "ఇది నిఘంటువు పదముపై ఆధారపడివుంది" + +-#: lib/fascist.c:820 ++#: ../lib/fascist.c:832 + msgid "it is based on a (reversed) dictionary word" + msgstr "ఇది నిఘంటువు(కలిగివున్న) పదముపై ఆధారపడివుంది" + +-#: lib/fascist.c:865 ++#: ../lib/fascist.c:867 + msgid "error loading dictionary" +-msgstr "" ++msgstr "నిఘంటువును లోడు చేయుటలో దోషం" +diff -urN cracklib-2.9.6.old/po/tr.po cracklib-2.9.6.new/po/tr.po +--- cracklib-2.9.6.old/po/tr.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/tr.po 2018-10-09 11:38:00.427619872 +0200 +@@ -3,19 +3,21 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Görkem Çetin , 2006. ++# Jan Dittberner , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2006-03-12 22:56+0200\n" +-"Last-Translator: Görkem Çetin \n" +-"Language-Team: \n" +-"Language: \n" ++"PO-Revision-Date: 2016-06-18 01:03+0000\n" ++"Last-Translator: Copied by Zanata \n" ++"Language-Team: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11\n" ++"Language: tr\n" ++"Plural-Forms: nplurals=2; plural=(n>1)\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +diff -urN cracklib-2.9.6.old/po/uk.po cracklib-2.9.6.new/po/uk.po +--- cracklib-2.9.6.old/po/uk.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/uk.po 2018-10-09 11:38:27.234283479 +0200 +@@ -2,21 +2,22 @@ + # This file is distributed under the same license as the PACKAGE package. + # + # Yuri Chornoivan , 2010. ++# Jan Dittberner , 2016. #zanata ++# Yuri Chornoivan , 2016. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: \n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2010-04-16 19:43+0300\n" ++"PO-Revision-Date: 2016-06-19 02:18+0000\n" + "Last-Translator: Yuri Chornoivan \n" + "Language-Team: Ukrainian \n" +-"Language: uk\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: Lokalize 1.0\n" +-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +-"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"Language: uk\n" ++"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -80,4 +81,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "помилка під час спроби завантажити словник" +diff -urN cracklib-2.9.6.old/po/zh_CN.po cracklib-2.9.6.new/po/zh_CN.po +--- cracklib-2.9.6.old/po/zh_CN.po 2011-07-26 11:55:29.000000000 +0200 ++++ cracklib-2.9.6.new/po/zh_CN.po 2018-10-09 11:38:25.279234731 +0200 +@@ -1,78 +1,86 @@ +-# translation of cracklib.default.po to Wei Liu ++# translation of cracklib.po to Wei Liu + # Copyright (C) 2010 Free Software Foundation, Inc. +-# This file is distributed under the same license as the PACKAGE package. ++# This file is distributed under the same license as the cracklib package. + # + # Leah Liu , 2010. ++# translation of cracklib.default.po to Wei Liu ++# This file is distributed under the same license as the PACKAGE package. ++# Ludek Janda , 2018. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib.default\n" +-"Report-Msgid-Bugs-To: \n" +-"POT-Creation-Date: 2010-03-02 21:00-0600\n" +-"PO-Revision-Date: 2010-09-07 23:42+1000\n" +-"Last-Translator: Leah Liu \n" ++"Project-Id-Version: cracklib 2.9.6\n" ++"Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" ++"POT-Creation-Date: 2015-08-18 13:45-0500\n" ++"PO-Revision-Date: 2018-08-21 09:51+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Wei Liu\n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" +-"X-Generator: KBabel 1.11.4\n" +- +-#: lib/fascist.c:550 +-msgid "you are not registered in the password file" +-msgstr "尚未在口令文件中注册" ++"Language: zh_CN\n" ++"Plural-Forms: nplurals=1; plural=0\n" ++"X-Generator: Zanata 4.6.2\n" + +-#: lib/fascist.c:564 ++#: lib/fascist.c:516 + msgid "it is based on your username" +-msgstr "它基于用户名" ++msgstr "它基于您的用户名" + +-#: lib/fascist.c:629 ++#: lib/fascist.c:576 + msgid "it is based upon your password entry" +-msgstr "它基于输入的口令" ++msgstr "它基于您的密码" + +-#: lib/fascist.c:649 ++#: lib/fascist.c:591 + msgid "it is derived from your password entry" +-msgstr "它派生自输入的口令" ++msgstr "它根据您的密码生成" + +-#: lib/fascist.c:662 ++#: lib/fascist.c:599 + msgid "it's derived from your password entry" +-msgstr "它派生自输入的口令" ++msgstr "它根据您的密码生成" + +-#: lib/fascist.c:676 ++#: lib/fascist.c:608 + msgid "it is derivable from your password entry" +-msgstr "可从输入的口令推断" ++msgstr "它可以根据您的密码生成" + +-#: lib/fascist.c:690 ++#: lib/fascist.c:617 + msgid "it's derivable from your password entry" +-msgstr "可从输入的口令推断" ++msgstr "它可以根据您的密码生成" ++ ++#: lib/fascist.c:674 ++msgid "you are not registered in the password file" ++msgstr "您没有在密码文件中注册" + +-#: lib/fascist.c:726 ++#: lib/fascist.c:709 + msgid "it is WAY too short" +-msgstr "WAY 过短" ++msgstr "太短" + +-#: lib/fascist.c:731 ++#: lib/fascist.c:714 + msgid "it is too short" +-msgstr "过短" ++msgstr "太短" + +-#: lib/fascist.c:748 ++#: lib/fascist.c:731 + msgid "it does not contain enough DIFFERENT characters" +-msgstr "它没有包含足够的不同字符" ++msgstr "不包括足够不同的字符" + +-#: lib/fascist.c:762 ++#: lib/fascist.c:745 + msgid "it is all whitespace" +-msgstr "全是空格" ++msgstr "都是空白" + +-#: lib/fascist.c:781 ++#: lib/fascist.c:764 + msgid "it is too simplistic/systematic" +-msgstr "过于简单化/系统化" ++msgstr "太简单或太有规律" + +-#: lib/fascist.c:786 ++#: lib/fascist.c:769 + msgid "it looks like a National Insurance number." +-msgstr "看起来像国家保险号码。" ++msgstr "象国家保险号。" + +-#: lib/fascist.c:813 ++#: lib/fascist.c:801 + msgid "it is based on a dictionary word" +-msgstr "它基于字典单词" ++msgstr "它基于一个字典中的词" + +-#: lib/fascist.c:832 ++#: lib/fascist.c:820 + msgid "it is based on a (reversed) dictionary word" +-msgstr "它基于(颠倒的)字典单词" ++msgstr "它基于一个字典中的词的反向拼写" + ++#: lib/fascist.c:865 ++msgid "error loading dictionary" ++msgstr "加载字典错误" +diff -urN cracklib-2.9.6.old/po/zh_TW.po cracklib-2.9.6.new/po/zh_TW.po +--- cracklib-2.9.6.old/po/zh_TW.po 2015-08-18 20:48:15.000000000 +0200 ++++ cracklib-2.9.6.new/po/zh_TW.po 2018-10-09 11:37:47.781308079 +0200 +@@ -2,19 +2,22 @@ + # Copyright (C) YEAR Free Software Foundation, Inc. + # This file is distributed under the same license as the PACKAGE package. + # FIRST AUTHOR , YEAR. +-# ++# Jan Dittberner , 2016. #zanata ++# Peter Pan , 2018. #zanata + msgid "" + msgstr "" +-"Project-Id-Version: cracklib\n" ++"Project-Id-Version: cracklib 2.9.6\n" + "Report-Msgid-Bugs-To: cracklib-devel@lists.sourceforge.net\n" + "POT-Creation-Date: 2015-08-18 13:45-0500\n" +-"PO-Revision-Date: 2005-06-23 12:52+0200\n" +-"Last-Translator: Novell Language \n" ++"PO-Revision-Date: 2018-08-16 12:45+0000\n" ++"Last-Translator: Copied by Zanata \n" + "Language-Team: Novell Language \n" +-"Language: \n" + "MIME-Version: 1.0\n" + "Content-Type: text/plain; charset=UTF-8\n" + "Content-Transfer-Encoding: 8bit\n" ++"Language: zh_TW\n" ++"Plural-Forms: nplurals=1; plural=0\n" ++"X-Generator: Zanata 4.6.2\n" + + #: lib/fascist.c:516 + msgid "it is based on your username" +@@ -78,4 +81,4 @@ + + #: lib/fascist.c:865 + msgid "error loading dictionary" +-msgstr "" ++msgstr "讀取字典時錯誤" +diff -urN cracklib-2.9.6.old/zanata.xml cracklib-2.9.6.new/zanata.xml +--- cracklib-2.9.6.old/zanata.xml 1970-01-01 01:00:00.000000000 +0100 ++++ cracklib-2.9.6.new/zanata.xml 2018-10-09 11:37:21.033648627 +0200 +@@ -0,0 +1,7 @@ ++ ++ ++ https://fedora.zanata.org/ ++ cracklib ++ master ++ gettext ++ diff --git a/cracklib.spec b/cracklib.spec index 183ca97..1364d9c 100644 --- a/cracklib.spec +++ b/cracklib.spec @@ -4,21 +4,31 @@ Summary: A password-checking library Name: cracklib -Version: 2.9.11 -Release: 8%{?dist} -URL: https://github.com/cracklib/cracklib -License: LGPL-2.1-or-later +Version: 2.9.6 +Release: 22%{?dist} +Source0: https://github.com/cracklib/cracklib/releases/download/cracklib-%{version}/cracklib-%{version}.tar.gz +Source1: https://github.com/cracklib/cracklib/releases/download/cracklib-%{version}/cracklib-words-%{version}.gz + +# For man pages. +Source2: http://ftp.us.debian.org/debian/pool/main/c/cracklib2/cracklib2_2.8.19-1.debian.tar.gz +Source40: http://ftp.us.debian.org/debian/pool/main/c/cracklib2/cracklib2_2.8.19-1.dsc -Source0: https://github.com/cracklib/cracklib/releases/download/v%{version}/cracklib-%{version}.tar.gz -Source1: https://github.com/cracklib/cracklib/releases/download/v%{version}/cracklib-words-%{version}.gz # From attachment to https://bugzilla.redhat.com/show_bug.cgi?id=627449 -Source2: cracklib.default.zh_CN.po +Source3: cracklib.default.zh_CN.po + # No upstream source for this, just words missing from the current cracklib-words -Source3: missing-words.gz - -Patch: cracklib-2.9.11-packlib-reentrant.patch -Patch: cracklib-2.9.11-simplistic.patch +Source10: missing-words.gz +Patch1: cracklib-2.9.1-inttypes.patch +Patch2: cracklib-2.9.0-python-gzdicts.patch +Patch4: cracklib-2.9.6-packlib-reentrant.patch +Patch6: cracklib-2.9.6-simplistic.patch +Patch7: cracklib-2.9.6-translation-updates.patch +Patch8: cracklib-2.9.6-cve-2016-6318.patch +Patch9: cracklib-2.9.6-coverity.patch +Patch10: cracklib-2.9.6-lookup.patch +URL: http://sourceforge.net/projects/cracklib/ +License: LGPLv2+ BuildRequires: gcc BuildRequires: words, gettext BuildRequires: gettext-autopoint @@ -47,7 +57,7 @@ CrackLib, you will also want to install the cracklib-dicts package. %package devel Summary: Development files needed for building applications which use cracklib -Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: %{name} = %{version}-%{release} %description devel The cracklib-devel package contains the header files and libraries needed @@ -56,7 +66,6 @@ for compiling applications which use cracklib. %package dicts Summary: The standard CrackLib dictionaries BuildRequires: words >= 2-13 -BuildRequires: make Requires: cracklib = %{version}-%{release} %description dicts @@ -68,13 +77,23 @@ contains the utilities necessary for the creation of new dictionaries. If you are installing CrackLib, you should also install cracklib-dicts. %prep -%autosetup -p 1 +%setup -q -a 2 # Replace zn_CN.po with one that wasn't mis-transcoded at some point. -install -p -m 644 %{SOURCE2} po/zh_CN.po +grep '????????????????' po/zh_CN.po +install -p -m 644 %{SOURCE3} po/zh_CN.po + +%patch1 -p1 -b .inttypes +%patch2 -p1 -b .gzdicts +%patch4 -p1 -b .reentrant +%patch6 -p1 -b .simplistic +%patch7 -p1 -b .translations +%patch8 -p1 -b .overflow +%patch9 -p1 -b .coverity +%patch10 -p1 -b .lookup mkdir cracklib-dicts -for dict in %{SOURCE3} %{SOURCE1} +for dict in %{SOURCE10} %{SOURCE1} do cp -fv ${dict} cracklib-dicts/ done @@ -90,51 +109,52 @@ make -C po update-gmo make %install -%make_install 'pythondir=${pyexecdir}' +[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT 'pythondir=${pyexecdir}' ./util/cracklib-format cracklib-dicts/* | \ -./util/cracklib-packer %{buildroot}%{dictpath} -./util/cracklib-format %{buildroot}%{dictdir}/cracklib-small | \ -./util/cracklib-packer %{buildroot}%{dictdir}/cracklib-small -rm -f %{buildroot}%{dictdir}/cracklib-small -sed s,/usr/lib/cracklib_dict,%{dictpath},g lib/crack.h > %{buildroot}%{_includedir}/crack.h -ln -s cracklib-format %{buildroot}%{_sbindir}/mkdict -# packer link removed as it clashes with hashicorp's packer binary. -#ln -s cracklib-packer %{buildroot}/%{_sbindir}/packer -touch %{buildroot}/top +./util/cracklib-packer $RPM_BUILD_ROOT/%{dictpath} +./util/cracklib-format $RPM_BUILD_ROOT/%{dictdir}/cracklib-small | \ +./util/cracklib-packer $RPM_BUILD_ROOT/%{dictdir}/cracklib-small +rm -f $RPM_BUILD_ROOT/%{dictdir}/cracklib-small +sed s,/usr/lib/cracklib_dict,%{dictpath},g lib/crack.h > $RPM_BUILD_ROOT/%{_includedir}/crack.h +ln -s cracklib-format $RPM_BUILD_ROOT/%{_sbindir}/mkdict +ln -s cracklib-packer $RPM_BUILD_ROOT/%{_sbindir}/packer +touch $RPM_BUILD_ROOT/top toprelpath=.. -touch %{buildroot}/top -while ! test -f %{buildroot}%{_libdir}/$toprelpath/top ; do +touch $RPM_BUILD_ROOT/top +while ! test -f $RPM_BUILD_ROOT/%{_libdir}/$toprelpath/top ; do toprelpath=../$toprelpath done -rm -f %{buildroot}/top +rm -f $RPM_BUILD_ROOT/top if test %{dictpath} != %{_libdir}/cracklib_dict ; then -ln -s $toprelpath%{dictpath}.hwm %{buildroot}%{_libdir}/cracklib_dict.hwm -ln -s $toprelpath%{dictpath}.pwd %{buildroot}%{_libdir}/cracklib_dict.pwd -ln -s $toprelpath%{dictpath}.pwi %{buildroot}%{_libdir}/cracklib_dict.pwi +ln -s $toprelpath%{dictpath}.hwm $RPM_BUILD_ROOT/%{_libdir}/cracklib_dict.hwm +ln -s $toprelpath%{dictpath}.pwd $RPM_BUILD_ROOT/%{_libdir}/cracklib_dict.pwd +ln -s $toprelpath%{dictpath}.pwi $RPM_BUILD_ROOT/%{_libdir}/cracklib_dict.pwi fi -rm -f %{buildroot}%{_libdir}/python*/site-packages/_cracklib*.*a -rm -f %{buildroot}%{_libdir}/libcrack.la +rm -f $RPM_BUILD_ROOT/%{_libdir}/python*/site-packages/_cracklib*.*a +rm -f $RPM_BUILD_ROOT/%{_libdir}/libcrack.la -mkdir -p %{buildroot}%{_mandir}/man{3,8} -install -p -m644 doc/*.3 %{buildroot}%{_mandir}/man3/ -install -p -m644 doc/*.8 %{buildroot}%{_mandir}/man8/ -if ! test -s %{buildroot}%{_mandir}/man8/cracklib-packer.8 ; then - echo .so man8/cracklib-format.8 > %{buildroot}%{_mandir}/man8/cracklib-packer.8 +mkdir -p $RPM_BUILD_ROOT/%{_mandir}/man{3,8} +install -p -m644 debian/*.3 $RPM_BUILD_ROOT/%{_mandir}/man3/ +install -p -m644 debian/*.8 $RPM_BUILD_ROOT/%{_mandir}/man8/ +if ! test -s $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-packer.8 ; then + echo .so man8/cracklib-format.8 > $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-packer.8 fi -if ! test -s %{buildroot}%{_mandir}/man8/cracklib-unpacker.8 ; then - echo .so man8/cracklib-format.8 > %{buildroot}%{_mandir}/man8/cracklib-unpacker.8 +if ! test -s $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-unpacker.8 ; then + echo .so man8/cracklib-format.8 > $RPM_BUILD_ROOT/%{_mandir}/man8/cracklib-unpacker.8 fi %find_lang %{name} %check -make test DESTDIR=%{buildroot} +make test DESTDIR=$RPM_BUILD_ROOT %ldconfig_scriptlets %files -f %{name}.lang %doc README README-WORDS NEWS README-LICENSE AUTHORS +%{!?_licensedir:%global license %%doc} %license COPYING.LIB %{_libdir}/libcrack.so.* %dir %{_datadir}/cracklib @@ -152,63 +172,9 @@ make test DESTDIR=%{buildroot} %{_datadir}/cracklib/cracklib-small.* %{_libdir}/cracklib_dict.* %{_sbindir}/mkdict +%{_sbindir}/packer %changelog -* Wed Jul 23 2025 Fedora Release Engineering - 2.9.11-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild - -* Thu Jan 16 2025 Fedora Release Engineering - 2.9.11-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild - -* Wed Jul 17 2024 Fedora Release Engineering - 2.9.11-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Wed Jan 24 2024 Fedora Release Engineering - 2.9.11-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Fri Jan 19 2024 Fedora Release Engineering - 2.9.11-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Fri Aug 04 2023 Dmitry Belyavskiy - 2.9.11-3 -- migrated to SPDX license - -* Wed Jul 19 2023 Fedora Release Engineering - 2.9.11-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Fri Jul 07 2023 Paul Wouters - 2.9.7-31 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Tue Aug 30 2022 Parag Nemade - 2.9.7-30 -- As -dicts subpackage installs files under %%{_libdir} path it should not be noarch -- this fixes FTBFS on F37+ - -* Wed Jul 20 2022 Fedora Release Engineering - 2.9.7-29 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Wed Jan 19 2022 Fedora Release Engineering - 2.9.6-28 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Mon Aug 30 2021 Paul Wouters - 2.9.6-27 -- Resolves: rhbz#1994196 Remove /usr/bin/packer symbolic link - -* Wed Jul 21 2021 Fedora Release Engineering - 2.9.6-26 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Tue Jan 26 2021 Fedora Release Engineering - 2.9.6-25 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Mon Jul 27 2020 Fedora Release Engineering - 2.9.6-24 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Mon Jul 13 2020 Tom Stellard - 2.9.6-23 -- Use make macros -- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro - * Tue Jan 28 2020 Fedora Release Engineering - 2.9.6-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index 1a02ec2..a5a9a0f 100644 --- a/sources +++ b/sources @@ -1,3 +1,5 @@ -SHA512 (cracklib-2.9.11.tar.gz) = 9e73a715c8f82723abc36b08906e212aaf79a7f6dfa560c6a98963b1e63aa21f7b612f285a639a41ec9eec7025aa2c16f702aad934cd30bc995f470d62ee4bc3 -SHA512 (cracklib-words-2.9.11.gz) = d1983e8e8fcb9abee4701581d66008eda2d7ad6ee8d017b7fed225b71bd333fa6199338f37fd120c1c6bf1c8a75025692f4118d97e8c384e578000bed59c6aed -SHA512 (missing-words.gz) = 50afb5538ddd15de997883f5ff6925d9084117851cfdcfc02f05c28304d6c17b46ea669fe626ad819e732b6f291f308194300c9db9b110a5c15a4e5d97ca6caa +12936e97cc34a28f2efec62e115a60e1 cracklib2_2.8.19-1.debian.tar.gz +bf8714368e0a485472b6ad7c4dba06a3 cracklib2_2.8.19-1.dsc +c52f463585d85924b28cdc1e373ae06d cracklib-2.9.6.tar.gz +cae1257e3a9f95c917cc9dbbab852316 cracklib-words-2.9.6.gz +8405c72b4f68fe569da831abff4c0544 missing-words.gz