X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=util%2Fmake_credits.py;h=fb13322b1371e605abb20ec38ec3509a5172b558;hb=12ab38f417edd10170020960bcbed19280f218e2;hp=abd6d530019eb5bde707694b442d9b39be5bf44b;hpb=c62a28d95e22370ddb7d91501f4ed2bbf504683f;p=friendica.git diff --git a/util/make_credits.py b/util/make_credits.py index abd6d53001..fb13322b13 100755 --- a/util/make_credits.py +++ b/util/make_credits.py @@ -23,7 +23,7 @@ import os, glob, subprocess # not work in some cases. dontinclude = ['root', 'friendica', 'bavatar', 'tony baldwin', 'Taek', 'silke m', 'leberwurscht', 'abinoam', 'fabrixxm', 'FULL NAME', 'Hauke Zuehl', - 'Michal Supler', 'michal_s', 'Manuel Pérez', 'rabuzarus'] + 'Michal Supler', 'michal_s', 'Manuel Pérez', 'rabuzarus', 'Alberto Díaz'] # this script is in the /util sub-directory of the friendica installation @@ -32,7 +32,7 @@ dontinclude = ['root', 'friendica', 'bavatar', 'tony baldwin', 'Taek', 'silke m' path = os.path.abspath(argv[0].split('util/make_credits.py')[0]) print('> base directory is assumed to be: '+path) # a place to store contributors -contributors = ['Andi Stadler'] +contributors = ["Andi Stadler", "Ratten", "Vít Šesták 'v6ak'"] # get the contributors print('> getting contributors to the friendica core repository') p = subprocess.Popen(['git', 'shortlog', '--no-merges', '-s'], @@ -67,7 +67,7 @@ os.chdir(path) # get the translators print('> getting translators') intrans = False -for f in glob.glob(path+'/view/*/messages.po'): +for f in glob.glob(path+'/view/lang/*/messages.po'): i = open(f, 'r') l = i.readlines() i.close()