1 --- mate-control-center-1.20.3/capplets/about-me/mate-about-me-password.c.~2~ 2018-11-08 15:25:28.053932491 +0000
2 +++ mate-control-center-1.20.3/capplets/about-me/mate-about-me-password.c 2018-11-08 15:31:15.902591210 +0000
5 "1 numeric or special",
10 + "repeating characters",
14 /* What response did we get? */
16 g_strrstr (str->str, "longer") != NULL) {
17 msg = g_strdup (_("The password is too short."));
18 } else if (g_strrstr (str->str, "palindrome") != NULL ||
19 + g_strrstr (str->str, "must contain") != NULL ||
20 + g_strrstr (str->str, "are not allowed") != NULL ||
21 + g_strrstr (str->str, "repeating characters") != NULL ||
22 + g_strrstr (str->str, "history") != NULL ||
23 g_strrstr (str->str, "simpl") != NULL ||
24 g_strrstr (str->str, "dictionary") != NULL) {
25 msg = g_strdup (_("The password is too simple."));
26 } else if (g_strrstr (str->str, "similar") != NULL ||
27 g_strrstr (str->str, "different") != NULL ||
28 g_strrstr (str->str, "case") != NULL ||
29 + g_strrstr (str->str, "must differ") != NULL ||
30 g_strrstr (str->str, "wrapped") != NULL) {
31 msg = g_strdup (_("The old and new passwords are too similar."));
32 } else if (g_strrstr (str->str, "1 numeric or special") != NULL) {