#4 add F31 stats
Merged 4 years ago by jibecfed. Opened 4 years ago by jibecfed.

file modified
+5 -2
@@ -19,11 +19,14 @@ 

  

  ## Get package list

  

- This step is for now manual, I took list of DNF packages from Koji: https://koji.fedoraproject.org/koji/buildinfo?buildID=1252912

+ This step is for now manual, I took list of DNF packages from Koji:

+ 

+ * For F30: https://koji.fedoraproject.org/koji/buildinfo?buildID=1252912

+ * For F31: https://kojipkgs.fedoraproject.org//packages/Fedora-Workstation-Live/30/20190421.n.0/data/logs/image/x86_64/root.log

  

  ## Get the rpm sources

  

- `./download-f30-srpm-in-container.sh`

+ `./download-f%%-srpm-in-container.sh` where %% is the fedora version (30 or 31)

  

  Downloading the file is done inside a container so we can produce stats even if 

  using Fedora 29. This represents about 7 GB for Fedora 30 and takes some time.

file modified
+41 -31
@@ -23,10 +23,16 @@ 

                          help="Only work on one SRPM, if selected")

      parser.add_argument("--offset", required=False, type=int,

                          help="Provide the number of packages to ignore")

+     parser.add_argument("--release", required=True, type=int, default=31,

+                         choices=[30, 31],

+                         help="Provide the Fedora release to analyze")

      args = parser.parse_args()

  

+     srpm_folder="./src.rpms/f{v}/".format(v=args.release)

+     result_folder="./results/f{v}/".format(v=args.release)

+ 

      pkgs = []

-     for (dirpath, dirnames, filenames) in os.walk("./src.rpms/f30/"):

+     for (dirpath, dirnames, filenames) in os.walk(srpm_folder):

          pkgs.extend(filenames)

          break

      count = 0
@@ -35,8 +41,9 @@ 

          print("argument srpm is provided: " + args.srpm)

          with tempfile.TemporaryDirectory() as tmp:

              package = [x for x in pkgs if x == args.srpm][0]

-             extract_srpm(tmp, "./src.rpms/f30/{a}".format(a=package))

-             discover_translations(tmp, package)

+             srpm_file = "{srpm}/{a}".format(srpm=srpm_folder, a=package)

+             extract_srpm(tmp, srpm_file, result_folder)

+             discover_translations(tmp, package, result_folder)

      else:

          with tempfile.TemporaryDirectory() as tmp:

              if args.offset:
@@ -47,22 +54,23 @@ 

                  print("")

                  print("{c}/{m}".format(c=count, m=len(pkgs)))

  

-                 if package.startswith(libreoffice):

-                     print("pakcage ignored because really slow, please use --srpm")

+                 if package.startswith("libreoffice"):

+                     print("package ignored because really slow, please use --srpm")

                      continue

  

-                 extract_srpm(tmp, "./src.rpms/f30/{a}".format(a=package))

-                 discover_translations(tmp, package)

+                 srpm_file = "{srpm}/{a}".format(srpm=srpm_folder, a=package)

+                 extract_srpm(tmp, srpm_file, result_folder)

+                 discover_translations(tmp, package, result_folder)

  

-     subprocess.run(['./concat_csv.sh', "./results/f30/"],

+     subprocess.run(['./concat_csv.sh', result_folder],

                     check=True)

  

- def extract_srpm(tmp, name):

+ def extract_srpm(tmp, name, result_folder):

      """extract srpm page"""

      print("extract_srpm: " + name)

  

-     out = open('results/f30/_srpm.out.txt', 'a')

-     error = open('results/f30/_srpm.errors.txt', 'a')

+     out = open(result_folder + '/_srpm.out.txt', 'a')

+     error = open(result_folder + '_srpm.errors.txt', 'a')

  

      subprocess.run(['./extract_srpm.sh', tmp, name],

                     stdout=out, stderr=error, check=True)
@@ -70,7 +78,7 @@ 

      out.close()

      error.close()

  

- def discover_translations(tmp, name):

+ def discover_translations(tmp, name, result_folder):

      """find po file"""

      print("discover_translations: "+tmp)

      translation_files = []
@@ -85,7 +93,7 @@ 

              translation_files = discover(tmp)

          except OSError:

              print("error while searching for new")

-             with open("results/f30/errors.txt", "a") as file:

+             with open(result_folder + "/errors.txt", "a") as file:

                  file.write(name + " on discover_translations\n")

  

      print(translation_files)
@@ -94,39 +102,41 @@ 

          for translation in translation_files:

              # TODO: multiple translation files for same package gnome-clocks-3.32.0-1.fc30.src.rpm

              if translation["file_format"] == "po":

-                 get_po_translation_level(tmp, translation, name)

+                 get_po_translation_level(tmp, translation, name, result_folder)

              elif translation["file_format"] == "ts":

-                 get_ts_translation_level(tmp, translation, name)

+                 get_ts_translation_level(tmp, translation, name, result_folder)

              elif translation["file_format"] == "json":

-                 get_json_translation_level(tmp, translation, name)

+                 get_json_translation_level(tmp, translation, name, result_folder)

              elif translation["file_format"] == "auto":

                  # it's a detection of .tx configuration

                  continue

              else:

-                 unknown_format(tmp, translation, name, translation["file_format"])

+                 unknown_format(tmp, translation, name, translation["file_format"], result_folder)

  

- def get_po_translation_level(path, mask, name):

+ def get_po_translation_level(path, mask, name, result_folder):

      filemask = mask["filemask"]

      print("get_po_translation_level: " + filemask)

  

-     stats = open('results/f30/{p}.stats.csv'.format(p=name), 'a')

-     error = open('results/f30/{p}.errors.txt'.format(p=name), 'a')

+     stats = open(result_folder + '/{p}.stats.csv'.format(p=name), 'a')

+     error = open(result_folder + '/{p}.errors.txt'.format(p=name), 'a')

      subprocess.run(["pocount", filemask.split("*")[0], "--csv"],

                     stdout=stats, stderr=error, check=True, cwd=path)

+     print(filemask.split("*")[0])

+     print(os.listdir(path))

  

      stats.close()

      error.close()

  

      subprocess.run(["sed", "-i", "-e", "s|{p}|.|g".format(p=path),

-                     'results/f30/{p}.errors.txt'.format(p=name)], check=True)

+                     result_folder + '/{p}.errors.txt'.format(p=name)], check=True)

  

  

- def get_ts_translation_level(path, mask, name):

+ def get_ts_translation_level(path, mask, name, result_folder):

      filemask = mask["filemask"]

      print("get_ts_translation_level: " + filemask)

  

-     stats = open('results/f30/{p}.stats.csv'.format(p=name), 'a')

-     error = open('results/f30/{p}.errors.txt'.format(p=name), 'a')

+     stats = open(result_folder + '/{p}.stats.csv'.format(p=name), 'a')

+     error = open(result_folder + '/{p}.errors.txt'.format(p=name), 'a')

      subprocess.run(["pocount", filemask.split("*")[0], "--csv"],

                     stdout=stats, stderr=error, check=True, cwd=path)

  
@@ -134,14 +144,14 @@ 

      error.close()

  

      subprocess.run(["sed", "-i", "-e", "s|{p}|.|g".format(p=path),

-                     'results/f30/{p}.errors.txt'.format(p=name)], check=True)

+                     result_folder + '/{p}.errors.txt'.format(p=name)], check=True)

  

- def get_json_translation_level(path, mask, name):

+ def get_json_translation_level(path, mask, name, result_folder):

      filemask = mask["filemask"]

      print("get_json_translation_level: " + filemask)

  

-     stats = open('results/f30/{p}.stats.csv'.format(p=name), 'a')

-     error = open('results/f30/{p}.errors.txt'.format(p=name), 'a')

+     stats = open(result_folder + '/{p}.stats.csv'.format(p=name), 'a')

+     error = open(result_folder + '/{p}.errors.txt'.format(p=name), 'a')

  

      # move only related json files to a temporary folder

      with tempfile.TemporaryDirectory() as tmpjson:
@@ -171,12 +181,12 @@ 

      error.close()

  

      subprocess.run(["sed", "-i", "-e", "s|{p}|.|g".format(p=path),

-                     'results/f30/{p}.errors.txt'.format(p=name)], check=True)

+                     result_folder + '/{p}.errors.txt'.format(p=name)], check=True)

  

- def unknown_format(path, results, srpm, tformat):

+ def unknown_format(path, results, srpm, tformat, result_folder):

      print("unknown_format:")

  

-     with open("results/f30/todo_"+tformat+".txt", "a") as file:

+     with open(result_folder + "/todo_"+tformat+".txt", "a") as file:

          file.write(srpm + " " + results["filemask"] + "\n")

  

  if __name__ == '__main__':

file modified
+4 -3
@@ -17,8 +17,9 @@ 

  

      parser = argparse.ArgumentParser(

          description="From a result file, build a json file for map rendering")

-     parser.add_argument("--version", required=False, default="f30",

-                         help="Version to analyse (in result folder)")

+     parser.add_argument("--release", required=True, type=int, default=31,

+                         choices=[30, 31],

+                         help="Provide the Fedora release to analyze")

      parser.add_argument("--include_english", required=False, default=False, type=bool,

                          help="Include english language in statistics?")

      parser.add_argument("--include_nonofficial", required=False, default=False, type=bool,
@@ -26,7 +27,7 @@ 

  

      args = parser.parse_args()

  

-     RESULT_FOLDER = "./results/"+args.version

+     RESULT_FOLDER = "./results/f{r}".format(r=args.release)

  

      file = RESULT_FOLDER + "/3.result.csv"

      parse(file, args.include_english, args.include_nonofficial)

file modified
+4 -3
@@ -15,12 +15,13 @@ 

  

      parser = argparse.ArgumentParser(

          description="Consolidate every result files and produce a clean concatenated update")

-     parser.add_argument("--version", required=False, default="f30",

-                         help="Version to analyse (in result folder)")

+     parser.add_argument("--release", required=True, type=int, default=31,

+                         choices=[30, 31],

+                         help="Provide the Fedora release to analyze")

  

      args = parser.parse_args()

  

-     RESULT_FOLDER = "./results/"+args.version

+     RESULT_FOLDER = "./results/f{r}".format(r=args.release)

  

      file = RESULT_FOLDER + "/_concat.csv"

      parse(file)

@@ -0,0 +1,8 @@ 

+ #!/bin/bash

+ # call get_f30_srpm.sh using a container (usecase: run statistics from another

+ # OS than fedora-30)

+ 

+ podman run --rm --tty -i --name=localization \

+ 	-v $(pwd):/scripts:z -w /scripts \

+ 	registry.fedoraproject.org/fedora:31 \

+ 	/scripts/get_f31_srpm.sh

The added file is too large to be shown here, see it at: fedora-31-workstation-live-packages
file added
+7
@@ -0,0 +1,7 @@ 

+ #!/bin/bash

+ 

+ dnf install -y 'dnf-command(download)'

+ 

+ while read package; do

+     time dnf download --source "$package" --destdir $(pwd)/src.rpms/f30/

+ done <fedora-31-workstation-live-packages

file modified

file modified
+2
@@ -2,3 +2,5 @@ 

  pyyaml

  pandas

  geopandas

+ matplotlib

+ descartes

@@ -0,0 +1,1 @@ 

+ src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script

@@ -0,0 +1,10 @@ 

+ src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,territory,language_name,script_name,territory_name,full_language_code

+ anaconda-31.22.6-2.fc31.src.rpm.stats.csv,po/wba.po,0,0,0,0,0,1198,7236,1198,7236,wba.po,,wba,,,,,wba

+ baobab-3.34.0-1.fc31.src.rpm.stats.csv,po/mjw.po,38,102,105,0,0,35,173,73,275,mjw.po,,mjw,,,,,mjw

+ gnome-icon-theme-3.12.0-12.fc31.src.rpm.stats.csv,po/nhn.po,2,4,4,0,0,0,0,2,4,nhn.po,,nhn,,,,,nhn

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/son.po,211,261,265,1,2,208,719,420,982,son.po,,son,,,,,son

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/nah.po,182,234,222,2,8,236,740,420,982,nah.po,,nah,,,,,nah

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/mo.po,27,31,31,0,0,393,951,420,982,mo.po,,mo,,,,,mo

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/mhr.po,107,129,119,2,8,311,845,420,982,mhr.po,,mhr,,,,,mhr

+ kbd-2.0.4-14.fc31.src.rpm.stats.csv,po/gr.po,162,1063,1170,72,714,41,653,275,2430,gr.po,,gr,,,,,gr

+ rpm-4.15.0-6.fc31.src.rpm.stats.csv,po/cmn.po,628,3183,1375,40,194,201,1145,869,4522,cmn.po,,cmn,,,,,cmn

@@ -0,0 +1,1 @@ 

+ src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,territory

@@ -0,0 +1,27 @@ 

+ src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,territory

+ boost-1.69.0-9.fc31.src.rpm.stats.csv,tools/build/example/gettext/russian.po,1,1,2,0,0,0,0,1,1,russian.po,,russian,

+ ceph-14.2.4-1.fc31.src.rpm.stats.csv,src/boost/tools/build/example/gettext/russian.po,1,1,2,0,0,0,0,1,1,russian.po,,russian,

+ lvm2-2.03.05-2.fc31.src.rpm.stats.csv,po/lvm2.po,0,0,0,0,0,1556,9826,1556,9826,lvm2.po,,lvm2,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/ja/lc_messages/zenmap.mo,474,3393,1203,0,0,0,0,474,3393,zenmap.mo,,zenmap,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/ru/lc_messages/zenmap.mo,365,1860,1602,0,0,0,0,365,1860,zenmap.mo,,zenmap,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/it/lc_messages/zenmap.mo,481,3518,3743,0,0,0,0,481,3518,zenmap.mo,,zenmap,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/de/lc_messages/zenmap.mo,481,3518,3425,0,0,0,0,481,3518,zenmap.mo,,zenmap,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/pl/lc_messages/zenmap.mo,480,3521,3249,0,0,0,0,480,3521,zenmap.mo,,zenmap,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/hr/lc_messages/zenmap.mo,269,1053,1006,0,0,0,0,269,1053,zenmap.mo,,zenmap,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/fr/lc_messages/zenmap.mo,481,3518,4019,0,0,0,0,481,3518,zenmap.mo,,zenmap,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/zh/lc_messages/zenmap.mo,481,3523,642,0,0,0,0,481,3523,zenmap.mo,,zenmap,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/es/lc_messages/zenmap.mo,481,3518,3880,0,0,0,0,481,3518,zenmap.mo,,zenmap,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/hi/lc_messages/zenmap.mo,481,3518,3386,0,0,0,0,481,3518,zenmap.mo,,zenmap,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/pt_br/lc_messages/zenmap.mo,85,165,194,0,0,0,0,85,165,zenmap.mo,,zenmap,

+ python-humanize-0.5.1-17.fc31.src.rpm.stats.csv,humanize/locale/ru_ru/lc_messages/humanize.po,52,97,110,0,0,0,0,52,97,humanize.po,,humanize,

+ python-humanize-0.5.1-17.fc31.src.rpm.stats.csv,humanize/locale/ru_ru/lc_messages/humanize.mo,52,97,110,0,0,0,0,52,97,humanize.mo,,humanize,

+ python-humanize-0.5.1-17.fc31.src.rpm.stats.csv,humanize/locale/ko_kr/lc_messages/humanize.po,33,78,54,19,19,0,0,52,97,humanize.po,,humanize,

+ python-humanize-0.5.1-17.fc31.src.rpm.stats.csv,humanize/locale/ko_kr/lc_messages/humanize.mo,33,78,54,0,0,0,0,33,78,humanize.mo,,humanize,

+ python-humanize-0.5.1-17.fc31.src.rpm.stats.csv,humanize/locale/fr_fr/lc_messages/humanize.po,32,77,83,20,20,0,0,52,97,humanize.po,,humanize,

+ python-humanize-0.5.1-17.fc31.src.rpm.stats.csv,humanize/locale/fr_fr/lc_messages/humanize.mo,32,77,83,0,0,0,0,32,77,humanize.mo,,humanize,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,texk/web2c/cwebdir/po/it/cweb.po,128,578,829,0,0,0,0,128,578,cweb.po,,cweb,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,texk/web2c/cwebdir/po/de/cweb.po,128,578,711,0,0,0,0,128,578,cweb.po,,cweb,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,texk/web2c/cwebdir/po/de/cweb-tl.po,6,32,32,0,0,0,0,6,32,cweb-tl.po,,cweb-tl,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,texk/web2c/cwebdir/po/de/web2c-help.po,27,201,196,0,0,0,0,27,201,web2c-help.po,,web2c-help,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,utils/asymptote/gui/locale/th/lc_messages/base.po,1,1,1,0,0,0,0,1,1,base.po,,base,

+ xen-4.12.1-1.fc31.src.rpm.stats.csv,tools/qemu-xen/po/messages.po,0,0,0,0,0,19,35,19,35,messages.po,,messages,

@@ -0,0 +1,2 @@ 

+ src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,script,language,territory

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-5/zh_hant.po,115,258,115,0,0,0,0,115,258,zh_hant.po,,zh,hant

@@ -0,0 +1,47 @@ 

+ language,territory,terr

+ pt,br,

+ zh,cn,

+ zh,tw,

+ zh,hk,

+ bn,in,

+ ru,ru,

+ en,us,

+ en,gb,

+ de,ch,

+ kw,gb,

+ en,ca,

+ en,nz,

+ en,au,

+ az,ir,

+ sl,si,

+ pt,pt,

+ nb,no,

+ ta,in,

+ pl,pl,

+ es,ve,

+ es,uy,

+ es,sv,

+ es,pr,

+ es,pe,

+ es,pa,

+ es,ni,

+ es,mx,

+ es,hn,

+ es,gt,

+ es,es,

+ es,ec,

+ es,do,

+ es,cr,

+ es,co,

+ es,cl,

+ es,ar,

+ tt,ru,

+ ur,pk,

+ et,ee,

+ vi,vn,

+ si,lk,

+ lv,lv,

+ lt,lt,

+ bn,bd,

+ fr,fr,

+ de,de,

@@ -0,0 +1,240 @@ 

+ src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,territory

+ avahi-0.7-20.fc31.src.rpm.stats.csv,po/en_nz.po,152,758,758,11,89,5,21,168,868,en_nz.po,en_nz,en_nz,,en,nz

+ ceph-14.2.4-1.fc31.src.rpm.stats.csv,src/boost/tools/build/example/gettext/russian.po,1,1,2,0,0,0,0,1,1,russian.po,russian,russian,,russian,

+ cracklib-2.9.6-21.fc31.src.rpm.stats.csv,po/sl_si.po,15,93,80,0,0,1,3,16,96,sl_si.po,sl_si,sl_si,,sl,si

+ eog-3.34.1-1.fc31.src.rpm.stats.csv,po/ts.po,320,1589,1886,0,0,0,0,320,1589,ts.po,ts,ts,,ts,

+ git-2.23.0-1.fc31.src.rpm.stats.csv,po/pt_pt.po,3198,21526,24299,0,0,0,0,3198,21526,pt_pt.po,pt_pt,pt_pt,,pt,pt

+ gnome-icon-theme-3.12.0-12.fc31.src.rpm.stats.csv,po/nhn.po,2,4,4,0,0,0,0,2,4,nhn.po,nhn,nhn,,nhn,

+ gnome-menus-3.32.0-2.fc31.src.rpm.stats.csv,po/szl.po,39,103,93,0,0,0,0,39,103,szl.po,szl,szl,,szl,

+ gtk3-3.24.12-3.fc31.src.rpm.stats.csv,po/az_ir.po,3,5,6,10,10,808,2417,821,2432,az_ir.po,az_ir,az_ir,,az,ir

+ gtk-vnc-1.0.0-1.fc31.src.rpm.stats.csv,po/guc.po,3,8,10,0,0,0,0,3,8,guc.po,guc,guc,,guc,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/son.po,211,261,265,1,2,208,719,420,982,son.po,son,son,,son,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/pi.po,161,186,175,0,0,259,796,420,982,pi.po,pi,pi,,pi,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/pap.po,0,0,0,183,233,237,749,420,982,pap.po,pap,pap,,pap,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/nv.po,85,111,257,2,8,333,863,420,982,nv.po,nv,nv,,nv,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/nah.po,182,234,222,2,8,236,740,420,982,nah.po,nah,nah,,nah,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/na.po,151,187,178,2,8,267,787,420,982,na.po,na,na,,na,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/mo.po,27,31,31,0,0,393,951,420,982,mo.po,mo,mo,,mo,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/kv.po,109,133,128,2,8,309,841,420,982,kv.po,kv,kv,,kv,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/kl.po,0,0,0,98,123,322,859,420,982,kl.po,kl,kl,,kl,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ki.po,115,145,141,2,8,303,829,420,982,ki.po,ki,ki,,ki,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/kab.po,138,173,169,2,8,280,801,420,982,kab.po,kab,kab,,kab,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/jam.po,191,251,242,2,8,227,723,420,982,jam.po,jam,jam,,jam,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/iu.po,26,33,29,2,8,392,941,420,982,iu.po,iu,iu,,iu,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/gn.po,209,257,257,3,6,208,719,420,982,gn.po,gn,gn,,gn,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ff.po,82,96,86,2,8,336,878,420,982,ff.po,ff,ff,,ff,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ee.po,0,0,0,149,197,271,785,420,982,ee.po,ee,ee,,ee,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/dv.po,203,276,258,3,10,214,696,420,982,dv.po,dv,dv,,dv,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/cv.po,201,277,268,3,10,216,695,420,982,cv.po,cv,cv,,cv,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ckb.po,191,255,241,2,8,227,719,420,982,ckb.po,ckb,ckb,,ckb,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/chr.po,100,120,114,2,8,318,854,420,982,chr.po,chr,chr,,chr,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ch.po,23,31,25,0,0,397,951,420,982,ch.po,ch,ch,,ch,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/bi.po,0,0,0,81,103,339,879,420,982,bi.po,bi,bi,,bi,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/bar.po,153,200,188,2,8,265,774,420,982,bar.po,bar,bar,,bar,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ba.po,0,0,0,201,278,219,704,420,982,ba.po,ba,ba,,ba,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ay.po,0,0,0,69,98,351,884,420,982,ay.po,ay,ay,,ay,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ak.po,0,0,0,43,63,377,919,420,982,ak.po,ak,ak,,ak,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ace.po,0,0,0,180,237,240,745,420,982,ace.po,ace,ace,,ace,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ab.po,0,0,0,50,72,370,910,420,982,ab.po,ab,ab,,ab,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-3/wal.po,1,2,2,4,15,26,87,31,104,wal.po,wal,wal,,wal,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-3/sw.po,0,0,0,2,5,29,99,31,104,sw.po,sw,sw,,sw,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-3/so.po,0,0,0,8,35,23,69,31,104,so.po,so,so,,so,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-3/haw.po,0,0,0,0,0,31,104,31,104,haw.po,haw,haw,,haw,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/ve.po,40,40,42,4327,5593,4878,8215,9245,13848,ve.po,ve,ve,,ve,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/tt.po,149,155,156,3305,4421,5791,9272,9245,13848,tt.po,tt,tt,,tt,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/tig.po,120,123,120,2922,3857,6203,9868,9245,13848,tig.po,tig,tig,,tig,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/ti.po,121,124,121,2921,3856,6203,9868,9245,13848,ti.po,ti,ti,,ti,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/mt.po,239,261,264,4890,6429,4116,7158,9245,13848,mt.po,mt,mt,,mt,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/kok.po,119,124,122,2925,3904,6201,9820,9245,13848,kok.po,kok,kok,,kok,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/gez.po,120,123,120,2922,3857,6203,9868,9245,13848,gez.po,gez,gez,,gez,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/byn.po,120,123,120,2922,3857,6203,9868,9245,13848,byn.po,byn,byn,,byn,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-5/zh_hant.po,115,258,115,0,0,0,0,115,258,zh_hant.po,zh_hant,zh_hant,,zh,hant

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-5/sc.po,115,258,269,0,0,0,0,115,258,sc.po,sc,sc,,sc,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-5/nb_no.po,12,26,20,1,2,102,230,115,258,nb_no.po,nb_no,nb_no,,nb,no

+ kbd-2.0.4-14.fc31.src.rpm.stats.csv,po/gr.po,162,1063,1170,72,714,41,653,275,2430,gr.po,gr,gr,,gr,

+ kdump-anaconda-addon-005-5.20190103gitb16ea2c.fc31.src.rpm.stats.csv,po/ta_in.po,4,59,39,3,11,5,13,12,83,ta_in.po,ta_in,ta_in,,ta,in

+ libconfig-1.7.2-4.fc31.src.rpm.stats.csv,contrib/ls-config/src/po/pl_pl.po,52,255,260,0,0,0,0,52,255,pl_pl.po,pl_pl,pl_pl,,pl,pl

+ libexif-0.6.21-20.fc31.src.rpm.stats.csv,po/en_au.po,1172,6930,6930,5,47,0,0,1177,6977,en_au.po,en_au,en_au,,en,au

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po-locations/ang.po,46,51,57,0,0,2655,3612,2701,3663,ang.po,ang,ang,,ang,

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_ve.po,235,664,735,0,0,0,0,235,664,es_ve.po,es_ve,es_ve,,es,ve

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_uy.po,235,664,735,0,0,0,0,235,664,es_uy.po,es_uy,es_uy,,es,uy

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_sv.po,235,664,735,0,0,0,0,235,664,es_sv.po,es_sv,es_sv,,es,sv

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_pr.po,235,664,735,0,0,0,0,235,664,es_pr.po,es_pr,es_pr,,es,pr

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_pe.po,235,664,735,0,0,0,0,235,664,es_pe.po,es_pe,es_pe,,es,pe

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_pa.po,235,664,735,0,0,0,0,235,664,es_pa.po,es_pa,es_pa,,es,pa

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_ni.po,235,664,735,0,0,0,0,235,664,es_ni.po,es_ni,es_ni,,es,ni

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_hn.po,235,664,735,0,0,0,0,235,664,es_hn.po,es_hn,es_hn,,es,hn

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_gt.po,235,664,735,0,0,0,0,235,664,es_gt.po,es_gt,es_gt,,es,gt

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_ec.po,235,664,735,0,0,0,0,235,664,es_ec.po,es_ec,es_ec,,es,ec

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_do.po,235,664,735,0,0,0,0,235,664,es_do.po,es_do,es_do,,es,do

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_cr.po,235,664,735,0,0,0,0,235,664,es_cr.po,es_cr,es_cr,,es,cr

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_co.po,235,664,735,0,0,0,0,235,664,es_co.po,es_co,es_co,,es,co

+ libvisual-0.4.0-27.fc31.src.rpm.stats.csv,po/es_es.po,62,303,364,51,204,92,548,205,1055,es_es.po,es_es,es_es,,es,es

+ libvisual-0.4.0-27.fc31.src.rpm.stats.csv,po/es_ar.po,62,303,364,51,204,92,548,205,1055,es_ar.po,es_ar,es_ar,,es,ar

+ lvm2-2.03.05-2.fc31.src.rpm.stats.csv,po/lvm2.po,0,0,0,0,0,1556,9826,1556,9826,lvm2.po,lvm2,lvm2,,lvm2,

+ lxsession-0.5.4-1.fc31.1.src.rpm.stats.csv,po/tt_ru.po,12,29,28,4,9,150,717,166,755,tt_ru.po,tt_ru,tt_ru,,tt,ru

+ lxsession-0.5.4-1.fc31.1.src.rpm.stats.csv,po/lg.po,111,295,376,0,0,55,460,166,755,lg.po,lg,lg,,lg,

+ lxsession-0.5.4-1.fc31.1.src.rpm.stats.csv,po/ur_pk.po,12,29,33,4,9,150,717,166,755,ur_pk.po,ur_pk,ur_pk,,ur,pk

+ lxsession-0.5.4-1.fc31.1.src.rpm.stats.csv,po/frp.po,10,16,16,5,15,151,724,166,755,frp.po,frp,frp,,frp,

+ mousetweaks-3.32.0-2.fc31.src.rpm.stats.csv,po/ht.po,30,114,117,0,0,0,0,30,114,ht.po,ht,ht,,ht,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/yi.po,29,31,31,32,59,1153,6886,1214,6976,yi.po,yi,yi,,yi,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/tk.po,994,5001,4101,81,321,139,1654,1214,6976,tk.po,tk,tk,,tk,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/io.po,451,1283,1212,14,44,766,6127,1231,7454,io.po,io,io,,io,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/ig.po,723,3745,3973,386,2655,205,1744,1314,8144,ig.po,ig,ig,,ig,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/ha.po,723,3745,4634,386,2655,205,1744,1314,8144,ha.po,ha,ha,,ha,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/fy.po,484,946,932,0,0,959,7938,1443,8884,fy.po,fy,fy,,fy,

+ nautilus-sendto-3.8.6-5.fc31.src.rpm.stats.csv,po/ln.po,8,45,56,0,0,0,0,8,45,ln.po,ln,ln,,ln,

+ net-tools-2.0-0.55.20160912git.fc31.src.rpm.stats.csv,po/et_ee.po,532,2439,2388,0,0,2,10,534,2449,et_ee.po,et_ee,et_ee,,et,ee

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/zh.po,481,3523,642,0,0,0,0,481,3523,zh.po,zh,zh,,zh,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/pt_br/lc_messages/zenmap.mo,85,165,194,0,0,0,0,85,165,zenmap.mo,zenmap,zenmap,,zenmap,

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/fil.po,6,6,8,0,0,692,4487,698,4493,fil.po,fil,fil,,fil,

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/vi_vn.po,0,0,0,0,0,1078,7678,1078,7678,vi_vn.po,vi_vn,vi_vn,,vi,vn

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/si_lk.po,0,0,0,0,0,1078,7678,1078,7678,si_lk.po,si_lk,si_lk,,si,lk

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/lv_lv.po,0,0,0,0,0,1078,7678,1078,7678,lv_lv.po,lv_lv,lv_lv,,lv,lv

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/lt_lt.po,0,0,0,0,0,1078,7678,1078,7678,lt_lt.po,lt_lt,lt_lt,,lt,lt

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/es_mx.po,0,0,0,0,0,1078,7678,1078,7678,es_mx.po,es_mx,es_mx,,es,mx

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/bn_bd.po,0,0,0,0,0,1078,7678,1078,7678,bn_bd.po,bn_bd,bn_bd,,bn,bd

+ python-humanize-0.5.1-17.fc31.src.rpm.stats.csv,humanize/locale/fr_fr/lc_messages/humanize.mo,32,77,83,0,0,0,0,32,77,humanize.mo,humanize,humanize,,humanize,

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/no.po,0,0,0,0,0,23,109,23,109,no.po,no,no,,no,

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,23,109,23,109,ach.po,ach,ach,,ach,

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/wo.po,0,0,0,0,0,23,109,23,109,wo.po,wo,wo,,wo,

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/ru_ru.po,0,0,0,0,0,23,109,23,109,ru_ru.po,ru_ru,ru_ru,,ru,ru

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/en_us.po,0,0,0,0,0,23,109,23,109,en_us.po,en_us,en_us,,en,us

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/aln.po,0,0,0,0,0,23,109,23,109,aln.po,aln,aln,,aln,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,16,42,16,42,anp.po,anp,anp,,anp,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,16,42,16,42,bal.po,bal,bal,,bal,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/kw_gb.po,0,0,0,0,0,16,42,16,42,kw_gb.po,kw_gb,kw_gb,,kw,gb

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/wba.po,0,0,0,0,0,16,42,16,42,wba.po,wba,wba,,wba,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,16,42,16,42,yo.po,yo,yo,,yo,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,16,42,16,42,tw.po,tw,tw,,tw,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,16,42,16,42,kw@uccor.po,kw@uccor,kw,uccor,kw,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,16,42,16,42,brx.po,brx,brx,,brx,

+ realmd-0.16.3-21.fc31.src.rpm.stats.csv,po/es_cl.po,0,0,0,0,0,125,778,125,778,es_cl.po,es_cl,es_cl,,es,cl

+ rpm-4.15.0-6.fc31.src.rpm.stats.csv,po/cmn.po,628,3183,1375,40,194,201,1145,869,4522,cmn.po,cmn,cmn,,cmn,

+ shadow-utils-4.6-16.fc31.src.rpm.stats.csv,po/tl.po,209,1015,1265,186,1271,204,1807,599,4093,tl.po,tl,tl,,tl,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/shn.po,4,4,8,0,0,141,585,145,589,shn.po,shn,shn,,shn,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/se.po,22,29,33,0,0,123,560,145,589,se.po,se,se,,se,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/sd.po,60,121,135,0,0,85,468,145,589,sd.po,sd,sd,,sd,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/mhr.po,29,34,41,0,0,116,555,145,589,mhr.po,mhr,mhr,,mhr,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/ce.po,0,0,0,0,0,145,589,145,589,ce.po,ce,ce,,ce,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/bo.po,87,325,208,0,0,58,264,145,589,bo.po,bo,bo,,bo,

+ sos-3.8-1.fc31.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,30,122,30,122,ur.po,ur,ur,,ur,

+ sos-3.8-1.fc31.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,30,122,30,122,lo.po,lo,lo,,lo,

+ sos-3.8-1.fc31.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,30,122,30,122,ilo.po,ilo,ilo,,ilo,

+ sos-3.8-1.fc31.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,30,122,30,122,hy.po,hy,hy,,hy,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,texk/web2c/cwebdir/po/de/cweb.po,128,578,711,0,0,0,0,128,578,cweb.po,cweb,cweb,,cweb,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,texk/web2c/cwebdir/po/de/cweb-tl.po,6,32,32,0,0,0,0,6,32,cweb-tl.po,cweb-tl,cweb-tl,,cweb-tl,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,texk/web2c/cwebdir/po/de/web2c-help.po,27,201,196,0,0,0,0,27,201,web2c-help.po,web2c-help,web2c-help,,web2c-help,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,utils/asymptote/gui/locale/th/lc_messages/base.po,1,1,1,0,0,0,0,1,1,base.po,base,base,,base,

+ totem-3.34.1-1.fc31.src.rpm.stats.csv,po/my.po,189,434,361,29,80,365,2053,583,2567,my.po,my,my,,my,

+ totem-3.34.1-1.fc31.src.rpm.stats.csv,po/mjw.po,213,429,399,0,0,167,929,380,1358,mjw.po,mjw,mjw,,mjw,

+ totem-3.34.1-1.fc31.src.rpm.stats.csv,po/gv.po,530,2169,2630,0,0,57,416,587,2585,gv.po,gv,gv,,gv,

+ udisks2-2.8.4-3.fc31.src.rpm.stats.csv,po/fo.po,0,0,0,0,0,478,1929,478,1929,fo.po,fo,fo,,fo,

+ volume_key-0.3.12-4.fc31.src.rpm.stats.csv,po/de_ch.po,49,186,184,0,0,105,577,154,763,de_ch.po,de_ch,de_ch,,de,ch

+ xdg-user-dirs-0.17-4.fc31.src.rpm.stats.csv,po/ia.po,28,28,28,0,0,0,0,28,28,ia.po,ia,ia,,ia,

+ xdg-user-dirs-gtk-0.10-16.fc31.src.rpm.stats.csv,po/csb.po,11,81,66,0,0,0,0,11,81,csb.po,csb,csb,,csb,

+ xdg-user-dirs-gtk-0.10-16.fc31.src.rpm.stats.csv,po/kg.po,11,81,55,0,0,0,0,11,81,kg.po,kg,kg,,kg,

+ xen-4.12.1-1.fc31.src.rpm.stats.csv,tools/qemu-xen/po/messages.po,0,0,0,0,0,19,35,19,35,messages.po,messages,messages,,messages,

+ xen-4.12.1-1.fc31.src.rpm.stats.csv,tools/qemu-xen/po/fr_fr.po,18,33,39,0,0,1,2,19,35,fr_fr.po,fr_fr,fr_fr,,fr,fr

+ xen-4.12.1-1.fc31.src.rpm.stats.csv,tools/qemu-xen/po/de_de.po,18,33,29,0,0,1,2,19,35,de_de.po,de_de,de_de,,de,de

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/li.po,23,51,43,47,96,78,459,148,606,li.po,li,li,,li,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/nso.po,55,110,169,33,67,60,429,148,606,nso.po,nso,nso,,nso,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/la.po,13,13,24,0,0,336,1022,349,1035,la.po,la,la,,la,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/br.po,100,176,215,22,42,235,876,357,1094,br.po,br,br,,br,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/ks.po,212,753,787,32,90,105,192,349,1035,ks.po,ks,ks,,ks,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/crh.po,357,1094,961,0,0,0,0,357,1094,crh.po,crh,crh,,crh,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/an.po,104,448,495,0,0,0,0,104,448,an.po,an,an,,an,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/zu.po,38,92,85,45,80,65,434,148,606,zu.po,zu,zu,,zu,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/nds.po,160,316,294,0,0,0,0,160,316,nds.po,nds,nds,,nds,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/km.po,56,78,62,0,0,1,0,57,78,km.po,km,km,,km,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/uz@cyrillic.po,17,19,20,0,0,75,219,92,238,uz@cyrillic.po,uz@cyrillic,uz,cyrillic,uz,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/gd.po,59,81,96,0,0,0,0,59,81,gd.po,gd,gd,,gd,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/wa.po,16,19,24,1,3,57,177,74,199,wa.po,wa,wa,,wa,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/ky.po,56,78,80,2,2,0,0,58,80,ky.po,ky,ky,,ky,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/cy.po,118,427,467,0,0,0,0,118,427,cy.po,cy,cy,,cy,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ru.po,196,891,865,0,0,0,0,196,891,ru.po,ru,ru,,ru,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mn.po,80,256,227,21,71,11,67,112,394,mn.po,mn,mn,,mn,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/nb.po,196,891,847,0,0,0,0,196,891,nb.po,nb,nb,,nb,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/bn.po,136,592,667,0,0,0,0,136,592,bn.po,bn,bn,,bn,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/zh_cn.po,199,896,255,0,0,0,0,199,896,zh_cn.po,zh_cn,zh_cn,,zh,cn

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/af.po,27,88,82,0,0,134,598,161,686,af.po,af,af,,af,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/az.po,82,272,251,20,70,10,52,112,394,az.po,az,az,,az,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/en_ca.po,130,559,568,0,0,0,0,130,559,en_ca.po,en_ca,en_ca,,en,ca

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/pl.po,199,896,923,0,0,0,0,199,896,pl.po,pl,pl,,pl,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ps.po,82,210,217,0,0,53,372,135,582,ps.po,ps,ps,,ps,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/nn.po,159,674,613,0,0,0,0,159,674,nn.po,nn,nn,,nn,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/gl.po,199,896,1130,0,0,0,0,199,896,gl.po,gl,gl,,gl,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/cs.po,199,896,869,0,0,0,0,199,896,cs.po,cs,cs,,cs,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/he.po,175,834,839,0,0,0,0,175,834,he.po,he,he,,he,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/kk.po,80,335,296,0,0,116,556,196,891,kk.po,kk,kk,,kk,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/it.po,199,896,1076,0,0,0,0,199,896,it.po,it,it,,it,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/lt.po,199,896,790,0,0,0,0,199,896,lt.po,lt,lt,,lt,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/hu.po,199,896,837,0,0,0,0,199,896,hu.po,hu,hu,,hu,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/vi.po,175,834,1197,0,0,0,0,175,834,vi.po,vi,vi,,vi,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/as.po,187,841,870,0,0,0,0,187,841,as.po,as,as,,as,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/nl.po,199,896,842,0,0,0,0,199,896,nl.po,nl,nl,,nl,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/bn_in.po,159,674,846,0,0,0,0,159,674,bn_in.po,bn_in,bn_in,,bn,in

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/be@latin.po,135,582,541,0,0,0,0,135,582,be@latin.po,be@latin,be,latin,be,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ar.po,159,674,658,0,0,0,0,159,674,ar.po,ar,ar,,ar,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ug.po,178,775,712,0,0,0,0,178,775,ug.po,ug,ug,,ug,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/eu.po,199,896,756,0,0,0,0,199,896,eu.po,eu,eu,,eu,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/sr.po,199,896,879,0,0,0,0,199,896,sr.po,sr,sr,,sr,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/uk.po,174,751,685,0,0,0,0,174,751,uk.po,uk,uk,,uk,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/xh.po,107,359,327,1,6,4,29,112,394,xh.po,xh,xh,,xh,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/fi.po,167,680,531,23,144,9,72,199,896,fi.po,fi,fi,,fi,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/es.po,199,896,1155,0,0,0,0,199,896,es.po,es,es,,es,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ga.po,89,329,345,0,0,47,260,136,589,ga.po,ga,ga,,ga,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/sv.po,199,896,805,0,0,0,0,199,896,sv.po,sv,sv,,sv,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mi.po,0,0,0,34,99,78,295,112,394,mi.po,mi,mi,,mi,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/tg.po,36,76,86,0,0,142,699,178,775,tg.po,tg,tg,,tg,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/rw.po,9,13,12,91,341,12,40,112,394,rw.po,rw,rw,,rw,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/hi.po,171,742,833,0,0,0,0,171,742,hi.po,hi,hi,,hi,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/oc.po,196,891,1212,0,0,0,0,196,891,oc.po,oc,oc,,oc,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/bs.po,190,877,846,0,0,0,0,190,877,bs.po,bs,bs,,bs,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/eo.po,198,881,787,0,0,1,15,199,896,eo.po,eo,eo,,eo,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/am.po,34,70,70,16,50,62,274,112,394,am.po,am,am,,am,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ka.po,116,421,317,0,0,4,120,120,541,ka.po,ka,ka,,ka,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mr.po,135,582,559,0,0,0,0,135,582,mr.po,mr,mr,,mr,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/id.po,199,896,845,0,0,0,0,199,896,id.po,id,id,,id,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/el.po,199,896,986,0,0,0,0,199,896,el.po,el,el,,el,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/en_gb.po,196,891,913,0,0,0,0,196,891,en_gb.po,en_gb,en_gb,,en,gb

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/pt.po,196,891,1062,0,0,0,0,196,891,pt.po,pt,pt,,pt,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mg.po,120,541,643,0,0,0,0,120,541,mg.po,mg,mg,,mg,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/sk.po,199,896,920,0,0,0,0,199,896,sk.po,sk,sk,,sk,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ko.po,199,896,803,0,0,0,0,199,896,ko.po,ko,ko,,ko,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/si.po,130,559,586,0,0,0,0,130,559,si.po,si,si,,si,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/bg.po,174,751,942,0,0,0,0,174,751,bg.po,bg,bg,,bg,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/de.po,199,896,835,0,0,0,0,199,896,de.po,de,de,,de,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/fur.po,199,896,1127,0,0,0,0,199,896,fur.po,fur,fur,,fur,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ast.po,142,612,699,0,0,0,0,142,612,ast.po,ast,ast,,ast,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/lv.po,199,896,789,0,0,0,0,199,896,lv.po,lv,lv,,lv,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/dz.po,129,554,267,0,0,0,0,129,554,dz.po,dz,dz,,dz,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mai.po,128,551,581,0,0,6,28,134,579,mai.po,mai,mai,,mai,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/or.po,159,674,690,0,0,0,0,159,674,or.po,or,or,,or,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ta.po,178,775,644,0,0,0,0,178,775,ta.po,ta,ta,,ta,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/hr.po,199,896,823,0,0,0,0,199,896,hr.po,hr,hr,,hr,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mk.po,135,582,598,0,0,0,0,135,582,mk.po,mk,mk,,mk,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/fa.po,178,775,803,0,0,0,0,178,775,fa.po,fa,fa,,fa,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ne.po,130,559,564,0,0,0,0,130,559,ne.po,ne,ne,,ne,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/tr.po,199,896,793,0,0,0,0,199,896,tr.po,tr,tr,,tr,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/zh_tw.po,199,896,272,0,0,0,0,199,896,zh_tw.po,zh_tw,zh_tw,,zh,tw

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ro.po,199,896,1000,0,0,0,0,199,896,ro.po,ro,ro,,ro,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/zh_hk.po,187,841,251,0,0,0,0,187,841,zh_hk.po,zh_hk,zh_hk,,zh,hk

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/is.po,55,139,119,34,125,23,130,112,394,is.po,is,is,,is,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/sq.po,135,582,701,0,0,0,0,135,582,sq.po,sq,sq,,sq,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/fr.po,199,896,1245,0,0,0,0,199,896,fr.po,fr,fr,,fr,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/sl.po,199,896,885,0,0,0,0,199,896,sl.po,sl,sl,,sl,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ku.po,18,20,20,1,4,93,370,112,394,ku.po,ku,ku,,ku,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/gu.po,159,674,694,0,0,0,0,159,674,gu.po,gu,gu,,gu,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/pa.po,174,751,802,0,0,0,0,174,751,pa.po,pa,pa,,pa,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ja.po,171,823,260,2,9,2,2,175,834,ja.po,ja,ja,,ja,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ml.po,199,896,783,0,0,0,0,199,896,ml.po,ml,ml,,ml,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/te.po,171,742,640,0,0,0,0,171,742,te.po,te,te,,te,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/kn.po,135,582,535,0,0,0,0,135,582,kn.po,kn,kn,,kn,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/et.po,180,783,639,0,0,0,0,180,783,et.po,et,et,,et,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/en@shaw.po,142,612,613,0,0,0,0,142,612,en@shaw.po,en@shaw,en,shaw,en,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/da.po,199,896,753,0,0,0,0,199,896,da.po,da,da,,da,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/th.po,196,891,322,0,0,0,0,196,891,th.po,th,th,,th,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ca.po,196,891,1145,0,0,0,0,196,891,ca.po,ca,ca,,ca,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ms.po,82,272,245,20,70,10,52,112,394,ms.po,ms,ms,,ms,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/pt_br.po,199,896,1119,0,0,0,0,199,896,pt_br.po,pt_br,pt_br,,pt,br

@@ -0,0 +1,193 @@ 

+ src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,territory

+ ceph-14.2.4-1.fc31.src.rpm.stats.csv,src/boost/tools/build/example/gettext/russian.po,1,1,2,0,0,0,0,1,1,russian.po,russian,russian,,russian,

+ eog-3.34.1-1.fc31.src.rpm.stats.csv,po/ts.po,320,1589,1886,0,0,0,0,320,1589,ts.po,ts,ts,,ts,

+ gnome-icon-theme-3.12.0-12.fc31.src.rpm.stats.csv,po/nhn.po,2,4,4,0,0,0,0,2,4,nhn.po,nhn,nhn,,nhn,

+ gnome-menus-3.32.0-2.fc31.src.rpm.stats.csv,po/szl.po,39,103,93,0,0,0,0,39,103,szl.po,szl,szl,,szl,

+ gtk-vnc-1.0.0-1.fc31.src.rpm.stats.csv,po/guc.po,3,8,10,0,0,0,0,3,8,guc.po,guc,guc,,guc,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/son.po,211,261,265,1,2,208,719,420,982,son.po,son,son,,son,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/pi.po,161,186,175,0,0,259,796,420,982,pi.po,pi,pi,,pi,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/pap.po,0,0,0,183,233,237,749,420,982,pap.po,pap,pap,,pap,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/nv.po,85,111,257,2,8,333,863,420,982,nv.po,nv,nv,,nv,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/nah.po,182,234,222,2,8,236,740,420,982,nah.po,nah,nah,,nah,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/na.po,151,187,178,2,8,267,787,420,982,na.po,na,na,,na,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/mo.po,27,31,31,0,0,393,951,420,982,mo.po,mo,mo,,mo,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/kv.po,109,133,128,2,8,309,841,420,982,kv.po,kv,kv,,kv,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/kl.po,0,0,0,98,123,322,859,420,982,kl.po,kl,kl,,kl,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ki.po,115,145,141,2,8,303,829,420,982,ki.po,ki,ki,,ki,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/kab.po,138,173,169,2,8,280,801,420,982,kab.po,kab,kab,,kab,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/jam.po,191,251,242,2,8,227,723,420,982,jam.po,jam,jam,,jam,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/iu.po,26,33,29,2,8,392,941,420,982,iu.po,iu,iu,,iu,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/gn.po,209,257,257,3,6,208,719,420,982,gn.po,gn,gn,,gn,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ff.po,82,96,86,2,8,336,878,420,982,ff.po,ff,ff,,ff,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ee.po,0,0,0,149,197,271,785,420,982,ee.po,ee,ee,,ee,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/dv.po,203,276,258,3,10,214,696,420,982,dv.po,dv,dv,,dv,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/cv.po,201,277,268,3,10,216,695,420,982,cv.po,cv,cv,,cv,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ckb.po,191,255,241,2,8,227,719,420,982,ckb.po,ckb,ckb,,ckb,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/chr.po,100,120,114,2,8,318,854,420,982,chr.po,chr,chr,,chr,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ch.po,23,31,25,0,0,397,951,420,982,ch.po,ch,ch,,ch,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/bi.po,0,0,0,81,103,339,879,420,982,bi.po,bi,bi,,bi,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/bar.po,153,200,188,2,8,265,774,420,982,bar.po,bar,bar,,bar,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ba.po,0,0,0,201,278,219,704,420,982,ba.po,ba,ba,,ba,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ay.po,0,0,0,69,98,351,884,420,982,ay.po,ay,ay,,ay,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ak.po,0,0,0,43,63,377,919,420,982,ak.po,ak,ak,,ak,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ace.po,0,0,0,180,237,240,745,420,982,ace.po,ace,ace,,ace,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-1/ab.po,0,0,0,50,72,370,910,420,982,ab.po,ab,ab,,ab,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-3/wal.po,1,2,2,4,15,26,87,31,104,wal.po,wal,wal,,wal,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-3/sw.po,0,0,0,2,5,29,99,31,104,sw.po,sw,sw,,sw,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-3/so.po,0,0,0,8,35,23,69,31,104,so.po,so,so,,so,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_3166-3/haw.po,0,0,0,0,0,31,104,31,104,haw.po,haw,haw,,haw,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/ve.po,40,40,42,4327,5593,4878,8215,9245,13848,ve.po,ve,ve,,ve,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/tig.po,120,123,120,2922,3857,6203,9868,9245,13848,tig.po,tig,tig,,tig,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/ti.po,121,124,121,2921,3856,6203,9868,9245,13848,ti.po,ti,ti,,ti,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/mt.po,239,261,264,4890,6429,4116,7158,9245,13848,mt.po,mt,mt,,mt,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/kok.po,119,124,122,2925,3904,6201,9820,9245,13848,kok.po,kok,kok,,kok,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/gez.po,120,123,120,2922,3857,6203,9868,9245,13848,gez.po,gez,gez,,gez,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/byn.po,120,123,120,2922,3857,6203,9868,9245,13848,byn.po,byn,byn,,byn,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-5/sc.po,115,258,269,0,0,0,0,115,258,sc.po,sc,sc,,sc,

+ kbd-2.0.4-14.fc31.src.rpm.stats.csv,po/gr.po,162,1063,1170,72,714,41,653,275,2430,gr.po,gr,gr,,gr,

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po-locations/ang.po,46,51,57,0,0,2655,3612,2701,3663,ang.po,ang,ang,,ang,

+ lvm2-2.03.05-2.fc31.src.rpm.stats.csv,po/lvm2.po,0,0,0,0,0,1556,9826,1556,9826,lvm2.po,lvm2,lvm2,,lvm2,

+ lxsession-0.5.4-1.fc31.1.src.rpm.stats.csv,po/tt_ru.po,12,29,28,4,9,150,717,166,755,tt_ru.po,tt_ru,tt_ru,,tt,ru

+ lxsession-0.5.4-1.fc31.1.src.rpm.stats.csv,po/lg.po,111,295,376,0,0,55,460,166,755,lg.po,lg,lg,,lg,

+ lxsession-0.5.4-1.fc31.1.src.rpm.stats.csv,po/frp.po,10,16,16,5,15,151,724,166,755,frp.po,frp,frp,,frp,

+ mousetweaks-3.32.0-2.fc31.src.rpm.stats.csv,po/ht.po,30,114,117,0,0,0,0,30,114,ht.po,ht,ht,,ht,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/yi.po,29,31,31,32,59,1153,6886,1214,6976,yi.po,yi,yi,,yi,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/tk.po,994,5001,4101,81,321,139,1654,1214,6976,tk.po,tk,tk,,tk,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/io.po,451,1283,1212,14,44,766,6127,1231,7454,io.po,io,io,,io,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/ig.po,723,3745,3973,386,2655,205,1744,1314,8144,ig.po,ig,ig,,ig,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/ha.po,723,3745,4634,386,2655,205,1744,1314,8144,ha.po,ha,ha,,ha,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/fy.po,484,946,932,0,0,959,7938,1443,8884,fy.po,fy,fy,,fy,

+ nautilus-sendto-3.8.6-5.fc31.src.rpm.stats.csv,po/ln.po,8,45,56,0,0,0,0,8,45,ln.po,ln,ln,,ln,

+ nmap-7.80-2.fc31.src.rpm.stats.csv,zenmap/share/zenmap/locale/pt_br/lc_messages/zenmap.mo,85,165,194,0,0,0,0,85,165,zenmap.mo,zenmap,zenmap,,zenmap,

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/fil.po,6,6,8,0,0,692,4487,698,4493,fil.po,fil,fil,,fil,

+ python-humanize-0.5.1-17.fc31.src.rpm.stats.csv,humanize/locale/fr_fr/lc_messages/humanize.mo,32,77,83,0,0,0,0,32,77,humanize.mo,humanize,humanize,,humanize,

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/no.po,0,0,0,0,0,23,109,23,109,no.po,no,no,,no,

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/ach.po,0,0,0,0,0,23,109,23,109,ach.po,ach,ach,,ach,

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/wo.po,0,0,0,0,0,23,109,23,109,wo.po,wo,wo,,wo,

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/aln.po,0,0,0,0,0,23,109,23,109,aln.po,aln,aln,,aln,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/anp.po,0,0,0,0,0,16,42,16,42,anp.po,anp,anp,,anp,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/bal.po,0,0,0,0,0,16,42,16,42,bal.po,bal,bal,,bal,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/wba.po,0,0,0,0,0,16,42,16,42,wba.po,wba,wba,,wba,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/yo.po,0,0,0,0,0,16,42,16,42,yo.po,yo,yo,,yo,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/tw.po,0,0,0,0,0,16,42,16,42,tw.po,tw,tw,,tw,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,16,42,16,42,kw@uccor.po,kw@uccor,kw,uccor,kw,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/brx.po,0,0,0,0,0,16,42,16,42,brx.po,brx,brx,,brx,

+ rpm-4.15.0-6.fc31.src.rpm.stats.csv,po/cmn.po,628,3183,1375,40,194,201,1145,869,4522,cmn.po,cmn,cmn,,cmn,

+ shadow-utils-4.6-16.fc31.src.rpm.stats.csv,po/tl.po,209,1015,1265,186,1271,204,1807,599,4093,tl.po,tl,tl,,tl,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/shn.po,4,4,8,0,0,141,585,145,589,shn.po,shn,shn,,shn,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/se.po,22,29,33,0,0,123,560,145,589,se.po,se,se,,se,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/sd.po,60,121,135,0,0,85,468,145,589,sd.po,sd,sd,,sd,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/mhr.po,29,34,41,0,0,116,555,145,589,mhr.po,mhr,mhr,,mhr,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/ce.po,0,0,0,0,0,145,589,145,589,ce.po,ce,ce,,ce,

+ simple-scan-3.34.1-1.fc31.src.rpm.stats.csv,po/bo.po,87,325,208,0,0,58,264,145,589,bo.po,bo,bo,,bo,

+ sos-3.8-1.fc31.src.rpm.stats.csv,po/ur.po,0,0,0,0,0,30,122,30,122,ur.po,ur,ur,,ur,

+ sos-3.8-1.fc31.src.rpm.stats.csv,po/lo.po,0,0,0,0,0,30,122,30,122,lo.po,lo,lo,,lo,

+ sos-3.8-1.fc31.src.rpm.stats.csv,po/ilo.po,0,0,0,0,0,30,122,30,122,ilo.po,ilo,ilo,,ilo,

+ sos-3.8-1.fc31.src.rpm.stats.csv,po/hy.po,0,0,0,0,0,30,122,30,122,hy.po,hy,hy,,hy,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,texk/web2c/cwebdir/po/de/cweb.po,128,578,711,0,0,0,0,128,578,cweb.po,cweb,cweb,,cweb,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,texk/web2c/cwebdir/po/de/cweb-tl.po,6,32,32,0,0,0,0,6,32,cweb-tl.po,cweb-tl,cweb-tl,,cweb-tl,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,texk/web2c/cwebdir/po/de/web2c-help.po,27,201,196,0,0,0,0,27,201,web2c-help.po,web2c-help,web2c-help,,web2c-help,

+ texlive-base-20190410-2.fc31.src.rpm.stats.csv,utils/asymptote/gui/locale/th/lc_messages/base.po,1,1,1,0,0,0,0,1,1,base.po,base,base,,base,

+ totem-3.34.1-1.fc31.src.rpm.stats.csv,po/my.po,189,434,361,29,80,365,2053,583,2567,my.po,my,my,,my,

+ totem-3.34.1-1.fc31.src.rpm.stats.csv,po/mjw.po,213,429,399,0,0,167,929,380,1358,mjw.po,mjw,mjw,,mjw,

+ totem-3.34.1-1.fc31.src.rpm.stats.csv,po/gv.po,530,2169,2630,0,0,57,416,587,2585,gv.po,gv,gv,,gv,

+ udisks2-2.8.4-3.fc31.src.rpm.stats.csv,po/fo.po,0,0,0,0,0,478,1929,478,1929,fo.po,fo,fo,,fo,

+ xdg-user-dirs-0.17-4.fc31.src.rpm.stats.csv,po/ia.po,28,28,28,0,0,0,0,28,28,ia.po,ia,ia,,ia,

+ xdg-user-dirs-gtk-0.10-16.fc31.src.rpm.stats.csv,po/csb.po,11,81,66,0,0,0,0,11,81,csb.po,csb,csb,,csb,

+ xdg-user-dirs-gtk-0.10-16.fc31.src.rpm.stats.csv,po/kg.po,11,81,55,0,0,0,0,11,81,kg.po,kg,kg,,kg,

+ xen-4.12.1-1.fc31.src.rpm.stats.csv,tools/qemu-xen/po/messages.po,0,0,0,0,0,19,35,19,35,messages.po,messages,messages,,messages,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/li.po,23,51,43,47,96,78,459,148,606,li.po,li,li,,li,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/nso.po,55,110,169,33,67,60,429,148,606,nso.po,nso,nso,,nso,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/la.po,13,13,24,0,0,336,1022,349,1035,la.po,la,la,,la,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/br.po,100,176,215,22,42,235,876,357,1094,br.po,br,br,,br,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/ks.po,212,753,787,32,90,105,192,349,1035,ks.po,ks,ks,,ks,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/crh.po,357,1094,961,0,0,0,0,357,1094,crh.po,crh,crh,,crh,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/an.po,104,448,495,0,0,0,0,104,448,an.po,an,an,,an,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/zu.po,38,92,85,45,80,65,434,148,606,zu.po,zu,zu,,zu,

+ yelp-3.34.0-1.fc31.src.rpm.stats.csv,po/nds.po,160,316,294,0,0,0,0,160,316,nds.po,nds,nds,,nds,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/km.po,56,78,62,0,0,1,0,57,78,km.po,km,km,,km,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/uz@cyrillic.po,17,19,20,0,0,75,219,92,238,uz@cyrillic.po,uz@cyrillic,uz,cyrillic,uz,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/gd.po,59,81,96,0,0,0,0,59,81,gd.po,gd,gd,,gd,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/wa.po,16,19,24,1,3,57,177,74,199,wa.po,wa,wa,,wa,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/ky.po,56,78,80,2,2,0,0,58,80,ky.po,ky,ky,,ky,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/cy.po,118,427,467,0,0,0,0,118,427,cy.po,cy,cy,,cy,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ru.po,196,891,865,0,0,0,0,196,891,ru.po,ru,ru,,ru,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mn.po,80,256,227,21,71,11,67,112,394,mn.po,mn,mn,,mn,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/nb.po,196,891,847,0,0,0,0,196,891,nb.po,nb,nb,,nb,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/af.po,27,88,82,0,0,134,598,161,686,af.po,af,af,,af,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/az.po,82,272,251,20,70,10,52,112,394,az.po,az,az,,az,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/pl.po,199,896,923,0,0,0,0,199,896,pl.po,pl,pl,,pl,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ps.po,82,210,217,0,0,53,372,135,582,ps.po,ps,ps,,ps,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/nn.po,159,674,613,0,0,0,0,159,674,nn.po,nn,nn,,nn,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/gl.po,199,896,1130,0,0,0,0,199,896,gl.po,gl,gl,,gl,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/cs.po,199,896,869,0,0,0,0,199,896,cs.po,cs,cs,,cs,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/he.po,175,834,839,0,0,0,0,175,834,he.po,he,he,,he,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/kk.po,80,335,296,0,0,116,556,196,891,kk.po,kk,kk,,kk,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/it.po,199,896,1076,0,0,0,0,199,896,it.po,it,it,,it,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/lt.po,199,896,790,0,0,0,0,199,896,lt.po,lt,lt,,lt,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/hu.po,199,896,837,0,0,0,0,199,896,hu.po,hu,hu,,hu,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/vi.po,175,834,1197,0,0,0,0,175,834,vi.po,vi,vi,,vi,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/as.po,187,841,870,0,0,0,0,187,841,as.po,as,as,,as,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/nl.po,199,896,842,0,0,0,0,199,896,nl.po,nl,nl,,nl,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/bn_in.po,159,674,846,0,0,0,0,159,674,bn_in.po,bn_in,bn_in,,bn,in

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/be@latin.po,135,582,541,0,0,0,0,135,582,be@latin.po,be@latin,be,latin,be,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ar.po,159,674,658,0,0,0,0,159,674,ar.po,ar,ar,,ar,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ug.po,178,775,712,0,0,0,0,178,775,ug.po,ug,ug,,ug,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/eu.po,199,896,756,0,0,0,0,199,896,eu.po,eu,eu,,eu,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/sr.po,199,896,879,0,0,0,0,199,896,sr.po,sr,sr,,sr,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/uk.po,174,751,685,0,0,0,0,174,751,uk.po,uk,uk,,uk,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/xh.po,107,359,327,1,6,4,29,112,394,xh.po,xh,xh,,xh,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/fi.po,167,680,531,23,144,9,72,199,896,fi.po,fi,fi,,fi,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/es.po,199,896,1155,0,0,0,0,199,896,es.po,es,es,,es,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ga.po,89,329,345,0,0,47,260,136,589,ga.po,ga,ga,,ga,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/sv.po,199,896,805,0,0,0,0,199,896,sv.po,sv,sv,,sv,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mi.po,0,0,0,34,99,78,295,112,394,mi.po,mi,mi,,mi,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/tg.po,36,76,86,0,0,142,699,178,775,tg.po,tg,tg,,tg,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/rw.po,9,13,12,91,341,12,40,112,394,rw.po,rw,rw,,rw,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/hi.po,171,742,833,0,0,0,0,171,742,hi.po,hi,hi,,hi,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/oc.po,196,891,1212,0,0,0,0,196,891,oc.po,oc,oc,,oc,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/bs.po,190,877,846,0,0,0,0,190,877,bs.po,bs,bs,,bs,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/eo.po,198,881,787,0,0,1,15,199,896,eo.po,eo,eo,,eo,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/am.po,34,70,70,16,50,62,274,112,394,am.po,am,am,,am,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ka.po,116,421,317,0,0,4,120,120,541,ka.po,ka,ka,,ka,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mr.po,135,582,559,0,0,0,0,135,582,mr.po,mr,mr,,mr,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/id.po,199,896,845,0,0,0,0,199,896,id.po,id,id,,id,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/el.po,199,896,986,0,0,0,0,199,896,el.po,el,el,,el,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mg.po,120,541,643,0,0,0,0,120,541,mg.po,mg,mg,,mg,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/sk.po,199,896,920,0,0,0,0,199,896,sk.po,sk,sk,,sk,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ko.po,199,896,803,0,0,0,0,199,896,ko.po,ko,ko,,ko,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/si.po,130,559,586,0,0,0,0,130,559,si.po,si,si,,si,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/bg.po,174,751,942,0,0,0,0,174,751,bg.po,bg,bg,,bg,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/de.po,199,896,835,0,0,0,0,199,896,de.po,de,de,,de,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/fur.po,199,896,1127,0,0,0,0,199,896,fur.po,fur,fur,,fur,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ast.po,142,612,699,0,0,0,0,142,612,ast.po,ast,ast,,ast,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/lv.po,199,896,789,0,0,0,0,199,896,lv.po,lv,lv,,lv,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/dz.po,129,554,267,0,0,0,0,129,554,dz.po,dz,dz,,dz,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mai.po,128,551,581,0,0,6,28,134,579,mai.po,mai,mai,,mai,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/or.po,159,674,690,0,0,0,0,159,674,or.po,or,or,,or,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ta.po,178,775,644,0,0,0,0,178,775,ta.po,ta,ta,,ta,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/hr.po,199,896,823,0,0,0,0,199,896,hr.po,hr,hr,,hr,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/mk.po,135,582,598,0,0,0,0,135,582,mk.po,mk,mk,,mk,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/fa.po,178,775,803,0,0,0,0,178,775,fa.po,fa,fa,,fa,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ne.po,130,559,564,0,0,0,0,130,559,ne.po,ne,ne,,ne,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/tr.po,199,896,793,0,0,0,0,199,896,tr.po,tr,tr,,tr,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ro.po,199,896,1000,0,0,0,0,199,896,ro.po,ro,ro,,ro,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/zh_hk.po,187,841,251,0,0,0,0,187,841,zh_hk.po,zh_hk,zh_hk,,zh,hk

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/is.po,55,139,119,34,125,23,130,112,394,is.po,is,is,,is,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/sq.po,135,582,701,0,0,0,0,135,582,sq.po,sq,sq,,sq,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/fr.po,199,896,1245,0,0,0,0,199,896,fr.po,fr,fr,,fr,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/sl.po,199,896,885,0,0,0,0,199,896,sl.po,sl,sl,,sl,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ku.po,18,20,20,1,4,93,370,112,394,ku.po,ku,ku,,ku,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/gu.po,159,674,694,0,0,0,0,159,674,gu.po,gu,gu,,gu,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/pa.po,174,751,802,0,0,0,0,174,751,pa.po,pa,pa,,pa,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ja.po,171,823,260,2,9,2,2,175,834,ja.po,ja,ja,,ja,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ml.po,199,896,783,0,0,0,0,199,896,ml.po,ml,ml,,ml,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/te.po,171,742,640,0,0,0,0,171,742,te.po,te,te,,te,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/kn.po,135,582,535,0,0,0,0,135,582,kn.po,kn,kn,,kn,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/et.po,180,783,639,0,0,0,0,180,783,et.po,et,et,,et,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/en@shaw.po,142,612,613,0,0,0,0,142,612,en@shaw.po,en@shaw,en,shaw,en,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/da.po,199,896,753,0,0,0,0,199,896,da.po,da,da,,da,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/th.po,196,891,322,0,0,0,0,196,891,th.po,th,th,,th,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ca.po,196,891,1145,0,0,0,0,196,891,ca.po,ca,ca,,ca,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ms.po,82,272,245,20,70,10,52,112,394,ms.po,ms,ms,,ms,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/pt_br.po,199,896,1119,0,0,0,0,199,896,pt_br.po,pt_br,pt_br,,pt,br

@@ -0,0 +1,17 @@ 

+ src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,territory

+ grub2-2.02-100.fc31.src.rpm.stats.csv,po/en@arabic.po,1341,7111,7111,1,4,2,4,1344,7119,en@arabic.po,en@arabic,en,arabic,en,

+ grub2-2.02-100.fc31.src.rpm.stats.csv,po/en@greek.po,1341,7111,7111,1,4,2,4,1344,7119,en@greek.po,en@greek,en,greek,en,

+ grub2-2.02-100.fc31.src.rpm.stats.csv,po/en@hebrew.po,1341,7111,7113,1,4,2,4,1344,7119,en@hebrew.po,en@hebrew,en,hebrew,en,

+ grub2-2.02-100.fc31.src.rpm.stats.csv,po/en@piglatin.po,1344,7119,7128,0,0,0,0,1344,7119,en@piglatin.po,en@piglatin,en,piglatin,en,

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-3/tt@iqtelif.po,149,155,156,3305,4421,5791,9272,9245,13848,tt@iqtelif.po,tt@iqtelif,tt,iqtelif,tt,

+ nautilus-3.34.1-1.fc31.src.rpm.stats.csv,po/sr@ije.po,1094,6241,5750,97,524,23,211,1214,6976,sr@ije.po,sr@ije,sr,ije,sr,

+ p11-kit-0.23.16.1-2.fc31.src.rpm.stats.csv,po/en@quot.po,81,476,476,0,0,0,0,81,476,en@quot.po,en@quot,en,quot,en,

+ p11-kit-0.23.16.1-2.fc31.src.rpm.stats.csv,po/en@boldquot.po,81,476,476,0,0,0,0,81,476,en@boldquot.po,en@boldquot,en,boldquot,en,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/kw@kkcor.po,0,0,0,0,0,16,42,16,42,kw@kkcor.po,kw@kkcor,kw,kkcor,kw,

+ python-simpleline-1.6-1.fc31.src.rpm.stats.csv,po/kw@uccor.po,0,0,0,0,0,16,42,16,42,kw@uccor.po,kw@uccor,kw,uccor,kw,

+ xdg-user-dirs-0.17-4.fc31.src.rpm.stats.csv,po/sr@latn.po,26,26,28,2,2,0,0,28,28,sr@latn.po,sr@latn,sr,latn,sr,

+ yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv,po/uz@cyrillic.po,17,19,20,0,0,75,219,92,238,uz@cyrillic.po,uz@cyrillic,uz,cyrillic,uz,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ca@valencia.po,196,891,1144,0,0,0,0,196,891,ca@valencia.po,ca@valencia,ca,valencia,ca,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/be@latin.po,135,582,541,0,0,0,0,135,582,be@latin.po,be@latin,be,latin,be,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/en@shaw.po,142,612,613,0,0,0,0,142,612,en@shaw.po,en@shaw,en,shaw,en,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/pt_br.po,199,896,1119,0,0,0,0,199,896,pt_br.po,pt_br,pt_br,,pt,br

@@ -0,0 +1,46 @@ 

+ src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords,basename,full_lang,lang,script,language,territory

+ avahi-0.7-20.fc31.src.rpm.stats.csv,po/en_nz.po,152,758,758,11,89,5,21,168,868,en_nz.po,en_nz,en_nz,,en,nz

+ cracklib-2.9.6-21.fc31.src.rpm.stats.csv,po/sl_si.po,15,93,80,0,0,1,3,16,96,sl_si.po,sl_si,sl_si,,sl,si

+ git-2.23.0-1.fc31.src.rpm.stats.csv,po/pt_pt.po,3198,21526,24299,0,0,0,0,3198,21526,pt_pt.po,pt_pt,pt_pt,,pt,pt

+ gtk3-3.24.12-3.fc31.src.rpm.stats.csv,po/az_ir.po,3,5,6,10,10,808,2417,821,2432,az_ir.po,az_ir,az_ir,,az,ir

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-5/zh_hant.po,115,258,115,0,0,0,0,115,258,zh_hant.po,zh_hant,zh_hant,,zh,hant

+ iso-codes-4.3-2.fc31.src.rpm.stats.csv,iso_639-5/nb_no.po,12,26,20,1,2,102,230,115,258,nb_no.po,nb_no,nb_no,,nb,no

+ libconfig-1.7.2-4.fc31.src.rpm.stats.csv,contrib/ls-config/src/po/pl_pl.po,52,255,260,0,0,0,0,52,255,pl_pl.po,pl_pl,pl_pl,,pl,pl

+ libexif-0.6.21-20.fc31.src.rpm.stats.csv,po/en_au.po,1172,6930,6930,5,47,0,0,1177,6977,en_au.po,en_au,en_au,,en,au

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_ve.po,235,664,735,0,0,0,0,235,664,es_ve.po,es_ve,es_ve,,es,ve

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_uy.po,235,664,735,0,0,0,0,235,664,es_uy.po,es_uy,es_uy,,es,uy

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_sv.po,235,664,735,0,0,0,0,235,664,es_sv.po,es_sv,es_sv,,es,sv

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_pr.po,235,664,735,0,0,0,0,235,664,es_pr.po,es_pr,es_pr,,es,pr

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_pe.po,235,664,735,0,0,0,0,235,664,es_pe.po,es_pe,es_pe,,es,pe

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_pa.po,235,664,735,0,0,0,0,235,664,es_pa.po,es_pa,es_pa,,es,pa

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_ni.po,235,664,735,0,0,0,0,235,664,es_ni.po,es_ni,es_ni,,es,ni

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_hn.po,235,664,735,0,0,0,0,235,664,es_hn.po,es_hn,es_hn,,es,hn

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_gt.po,235,664,735,0,0,0,0,235,664,es_gt.po,es_gt,es_gt,,es,gt

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_ec.po,235,664,735,0,0,0,0,235,664,es_ec.po,es_ec,es_ec,,es,ec

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_do.po,235,664,735,0,0,0,0,235,664,es_do.po,es_do,es_do,,es,do

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_cr.po,235,664,735,0,0,0,0,235,664,es_cr.po,es_cr,es_cr,,es,cr

+ libgweather-3.34.0-1.fc31.src.rpm.stats.csv,po/es_co.po,235,664,735,0,0,0,0,235,664,es_co.po,es_co,es_co,,es,co

+ libvisual-0.4.0-27.fc31.src.rpm.stats.csv,po/es_es.po,62,303,364,51,204,92,548,205,1055,es_es.po,es_es,es_es,,es,es

+ libvisual-0.4.0-27.fc31.src.rpm.stats.csv,po/es_ar.po,62,303,364,51,204,92,548,205,1055,es_ar.po,es_ar,es_ar,,es,ar

+ lxsession-0.5.4-1.fc31.1.src.rpm.stats.csv,po/ur_pk.po,12,29,33,4,9,150,717,166,755,ur_pk.po,ur_pk,ur_pk,,ur,pk

+ net-tools-2.0-0.55.20160912git.fc31.src.rpm.stats.csv,po/et_ee.po,532,2439,2388,0,0,2,10,534,2449,et_ee.po,et_ee,et_ee,,et,ee

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/vi_vn.po,0,0,0,0,0,1078,7678,1078,7678,vi_vn.po,vi_vn,vi_vn,,vi,vn

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/si_lk.po,0,0,0,0,0,1078,7678,1078,7678,si_lk.po,si_lk,si_lk,,si,lk

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/lv_lv.po,0,0,0,0,0,1078,7678,1078,7678,lv_lv.po,lv_lv,lv_lv,,lv,lv

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/lt_lt.po,0,0,0,0,0,1078,7678,1078,7678,lt_lt.po,lt_lt,lt_lt,,lt,lt

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/es_mx.po,0,0,0,0,0,1078,7678,1078,7678,es_mx.po,es_mx,es_mx,,es,mx

+ policycoreutils-2.9-5.fc31.src.rpm.stats.csv,po/bn_bd.po,0,0,0,0,0,1078,7678,1078,7678,bn_bd.po,bn_bd,bn_bd,,bn,bd

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/ru_ru.po,0,0,0,0,0,23,109,23,109,ru_ru.po,ru_ru,ru_ru,,ru,ru

+ python-meh-0.48-1.fc31.src.rpm.stats.csv,po/en_us.po,0,0,0,0,0,23,109,23,109,en_us.po,en_us,en_us,,en,us

+ realmd-0.16.3-21.fc31.src.rpm.stats.csv,po/es_cl.po,0,0,0,0,0,125,778,125,778,es_cl.po,es_cl,es_cl,,es,cl

+ volume_key-0.3.12-4.fc31.src.rpm.stats.csv,po/de_ch.po,49,186,184,0,0,105,577,154,763,de_ch.po,de_ch,de_ch,,de,ch

+ xen-4.12.1-1.fc31.src.rpm.stats.csv,tools/qemu-xen/po/fr_fr.po,18,33,39,0,0,1,2,19,35,fr_fr.po,fr_fr,fr_fr,,fr,fr

+ xen-4.12.1-1.fc31.src.rpm.stats.csv,tools/qemu-xen/po/de_de.po,18,33,29,0,0,1,2,19,35,de_de.po,de_de,de_de,,de,de

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/zh_cn.po,199,896,255,0,0,0,0,199,896,zh_cn.po,zh_cn,zh_cn,,zh,cn

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/en_ca.po,130,559,568,0,0,0,0,130,559,en_ca.po,en_ca,en_ca,,en,ca

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/bn_in.po,159,674,846,0,0,0,0,159,674,bn_in.po,bn_in,bn_in,,bn,in

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/en_gb.po,196,891,913,0,0,0,0,196,891,en_gb.po,en_gb,en_gb,,en,gb

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/zh_tw.po,199,896,272,0,0,0,0,199,896,zh_tw.po,zh_tw,zh_tw,,zh,tw

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/zh_hk.po,187,841,251,0,0,0,0,187,841,zh_hk.po,zh_hk,zh_hk,,zh,hk

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/ms.po,82,272,245,20,70,10,52,112,394,ms.po,ms,ms,,ms,

+ zenity-3.32.0-2.fc31.src.rpm.stats.csv,po/pt_br.po,199,896,1119,0,0,0,0,199,896,pt_br.po,pt_br,pt_br,,pt,br

@@ -0,0 +1,46 @@ 

+ src,filename,translatedMessages,translatedSourceWords,translatedTargetWords,fuzzyMessages,fuzzySourceWords,untranslatedMessages,untranslatedSourceWords,totalMessage,totalSourceWords

+ krb5-1.17-45.fc31.src.rpm.stats.csv,src/po/en_us.po,0,0,0,0,0,0,0,0,0

+ lvm2-2.03.05-2.fc31.src.rpm.stats.csv,po/de.po,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/zu.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/zh_hk.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/yo.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/wba.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/vi.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/ur.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/tw.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/tg.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/sq.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/si.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/ro.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/nso.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/nn.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/ne.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/mn.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/lv.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/ky.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/kw_gb.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/kw@uccor.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/kw@kkcor.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/kw.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/km.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/kk.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/ka.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/ilo.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/et.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/eo.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/cy.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/brx.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/br.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/bo.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/be.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/bal.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/anp.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/am.mo,0,0,0,0,0,0,0,0,0

+ pykickstart-3.21-1.fc31.src.rpm.stats.csv,po/af.mo,0,0,0,0,0,0,0,0,0

+ python-blivet-3.1.5-2.fc31.src.rpm.stats.csv,po/zu.mo,0,0,0,0,0,0,0,0,0

+ python-blivet-3.1.5-2.fc31.src.rpm.stats.csv,po/vi.mo,0,0,0,0,0,0,0,0,0

+ python-blivet-3.1.5-2.fc31.src.rpm.stats.csv,po/nn.mo,0,0,0,0,0,0,0,0,0

+ python-blivet-3.1.5-2.fc31.src.rpm.stats.csv,po/nds.mo,0,0,0,0,0,0,0,0,0

+ python-blivet-3.1.5-2.fc31.src.rpm.stats.csv,po/lt.mo,0,0,0,0,0,0,0,0,0

+ python-blivet-3.1.5-2.fc31.src.rpm.stats.csv,po/gl.mo,0,0,0,0,0,0,0,0,0

+ python-blivet-3.1.5-2.fc31.src.rpm.stats.csv,po/be.mo,0,0,0,0,0,0,0,0,0

file added
+15270
The added file is too large to be shown here, see it at: results/f31/3.result.csv
@@ -0,0 +1,337 @@ 

+ territory,population,officialstatus,language,language_population

+ af,34940837,official,ps,0.43

+ af,34940837,official,fa,0.5

+ af,34940837,official_regional,tk,0.016685347291480166

+ af,34940837,official_regional,uz_Arab,0.047

+ ax,26200,official,sv,0.99

+ al,3057220,official,sq,1.0

+ dz,41657488,official,ar,0.74

+ dz,41657488,official,fr,0.2

+ as,50826,official,sm,0.99

+ ad,85708,official,ca,0.51

+ ao,30355880,official,pt,0.67

+ ar,44694198,official,es,1.0

+ am,3038217,official,hy,0.98

+ aw,116576,official,nl,0.97

+ aw,116576,official,pap,0.61

+ at,8793370,official_regional,hr,0.012395702671444509

+ at,8793370,official,de,0.97

+ az,10046516,official,az,0.89

+ az,10046516,official,az_Cyrl,0.099

+ bh,1442659,official,ar,0.87

+ bd,159453001,official,bn,0.98

+ by,9527543,official,be,1.0

+ by,9527543,official,ru,0.12

+ be,11570762,official,nl,0.55

+ be,11570762,official,fr,0.38

+ be,11570762,official,de,0.22

+ bj,11340504,official,fr,0.35

+ bt,766397,official,dz,0.47

+ bo,11306341,official,ay,0.2

+ bo,11306341,official,qu,0.32

+ bo,11306341,official,es,0.61

+ ba,3849891,official,bs,0.99

+ ba,3849891,official,bs_Cyrl,0.99

+ ba,3849891,official,hr,0.12

+ ba,3849891,official,sr,0.1

+ ba,3849891,official,sr_Latn,0.1

+ bw,2249104,official,tn,0.62

+ br,208846892,official,pt,0.91

+ bn,450565,official,ms,0.93

+ bn,450565,official,ms_Arab,0.05

+ bg,7057504,official,bg,1.0

+ bf,19742715,official,fr,0.22

+ bi,11844520,official,fr,0.59

+ bi,11844520,official,rn,0.63

+ kh,16449519,official,km,0.89

+ cm,25640965,official,fr,0.68

+ ca,35881659,official,fr,0.22

+ ic,2098593,official,es,0.98

+ cv,568373,recognized,kea,0.91

+ cv,568373,official,pt,0.76

+ bq,20000,official,nl,0.08

+ bq,20000,recognized,pap,0.81

+ cf,5745062,official,fr,0.49

+ cf,5745062,official,sg,0.49

+ ea,150000,official,es,0.98

+ td,15833116,official,ar,0.17

+ td,15833116,official,fr,0.26

+ cl,17925262,official,es,0.98

+ cn,1384688986,official,zh,0.9

+ co,48168996,official,es,0.93

+ km,821164,official,ar,0.66

+ km,821164,official,fr,0.56

+ km,821164,official,wni,0.34

+ km,821164,official,zdj,0.37

+ cg,5062021,official,fr,0.84

+ cg,5062021,recognized,ln,0.023903496251793502

+ cd,85281024,official,fr,0.038

+ cd,85281024,official_regional,kg,0.015243719399992195

+ cd,85281024,official_regional,ln,0.031

+ cd,85281024,official_regional,lua,0.096

+ cd,85281024,official_regional,sw,0.5

+ cr,4987142,official,es,0.95

+ ci,26260582,official,fr,0.49

+ hr,4270480,official,hr,0.99

+ hr,4270480,official_regional,it,0.015525186864240086

+ cu,11116396,official,es,1.0

+ cw,150241,official,nl,0.08

+ cw,150241,de_facto_official,pap,0.81

+ cy,1237088,official,el,0.95

+ cy,1237088,official,tr,0.23

+ cz,10686269,official,cs,0.98

+ dk,5809502,official,da,0.93

+ dk,5809502,official_regional,de,0.47

+ dj,884017,official,ar,0.073

+ dj,884017,official,fr,0.0214927993466189

+ do,10298756,official,es,0.78

+ ec,16498502,official,qu,0.17

+ ec,16498502,official,es,0.96

+ eg,99413317,official,ar,0.94

+ sv,6187271,official,es,0.89

+ gq,797457,official,fr,0.08800000000000001

+ gq,797457,official,es,0.87

+ er,5970646,official,ar,0.049

+ er,5970646,de_facto_official,ti,0.6

+ ee,1244288,official,et,0.71

+ sz,1087200,official,ss,0.58

+ et,108386391,official,am,0.33

+ fo,51018,official,fo,0.95

+ fj,926276,official,hif,0.41

+ fj,926276,official,fj,0.39

+ fi,5537364,official,fi,0.94

+ fi,5537364,official,sv,0.44

+ fr,67364357,official,fr,0.99

+ gf,199509,official,fr,0.77

+ pf,290373,official,fr,0.61

+ pf,290373,official,ty,0.31

+ ga,2119036,official,fr,0.63

+ ge,4926087,official_regional,ab,0.022330096890290408

+ ge,4926087,official,ka,0.86

+ ge,4926087,official_regional,os,0.022127096009469584

+ de,80457737,official,de,0.91

+ gh,28102471,official_regional,ak,0.39

+ gh,28102471,official_regional,ee,0.11

+ gh,28102471,official_regional,gaa,0.028467247595416075

+ gr,10761523,official,el,0.99

+ gl,57691,official,kl,0.84

+ gp,452776,official,fr,0.9

+ gu,167772,official,ch,0.22

+ gt,16581273,official_regional,quc,0.07

+ gt,16581273,official,es,0.93

+ gn,11855411,official,fr,0.29

+ gw,1833247,official,pt,1.0

+ ht,10788440,official,fr,0.047

+ ht,10788440,official,ht,0.81

+ hn,9182766,official,es,0.78

+ hk,7213338,official,zh_Hant,0.95

+ hu,9825704,official,hu,1.0

+ is,343518,official,is,1.0

+ in,1296834042,official_regional,as,0.013031736870460716

+ in,1296834042,official_regional,bn,0.081

+ in,1296834042,official_regional,gu,0.045

+ in,1296834042,official,hi,0.41

+ in,1296834042,official_regional,kn,0.037000000000000005

+ in,1296834042,official_regional,mai,0.011952184703676988

+ in,1296834042,official_regional,ml,0.032

+ in,1296834042,official_regional,mr,0.07

+ in,1296834042,official_regional,or,0.032

+ in,1296834042,official_regional,pa,0.027991245467320944

+ in,1296834042,official_regional,ta,0.059000000000000004

+ in,1296834042,official_regional,te,0.07200000000000001

+ in,1296834042,official_regional,ur,0.05

+ id,262787403,official,id,0.64

+ ir,83024745,official,fa,0.75

+ iq,40194216,official,ar,0.68

+ iq,40194216,official_regional,az_Arab,0.018410609128437783

+ iq,40194216,official_regional,ckb,0.2

+ ie,5068050,official,ga,0.22

+ im,89407,official,gv,0.018902323084322256

+ il,8424904,official,ar,0.2

+ il,8424904,official,he,1.0

+ it,62246674,official_regional,fr,0.063

+ it,62246674,recognized,de,0.016000854921180207

+ it,62246674,official,it,0.95

+ it,62246674,recognized,sc,0.017029022305673713

+ jp,126168156,official,ja,0.95

+ jo,10458413,official,ar,1.0

+ kz,18744548,official,kk,0.64

+ kz,18744548,official,ru,0.72

+ ke,48397527,official,sw,0.66

+ ki,109367,official,gil,0.6

+ xk,1907592,official,sq,0.92

+ xk,1907592,official,sr,0.05

+ xk,1907592,official,sr_Latn,0.05

+ kw,2916467,official,ar,1.0

+ kg,5849296,official,ky,0.48

+ kg,5849296,official,ru,0.36

+ la,7234171,official,lo,0.69

+ lv,1923559,official,lv,0.61

+ lb,6100075,official,ar,0.86

+ ls,1962461,official,st,0.98

+ ly,6754507,official,ar,0.74

+ li,38547,official,de,1.0

+ li,38547,de_facto_official,gsw,0.85

+ lt,2793284,official,lt,0.86

+ lu,605764,official,fr,0.87

+ lu,605764,official,de,0.63

+ lu,605764,official,lb,0.67

+ mo,606340,official,zh_Hant,0.98

+ mo,606340,official,pt,0.05

+ mg,25683610,official,fr,0.69

+ mg,25683610,official,mg,0.9

+ mw,19842560,official,ny,0.63

+ my,31809660,official,ms,0.75

+ mv,392473,official,dv,0.94

+ ml,18429893,official,fr,0.46

+ mt,449043,official,mt,1.0

+ mh,75684,official,mh,0.73

+ mq,436131,official,fr,0.98

+ mr,3840429,official,ar,0.85

+ mu,1364283,official,fr,0.03

+ yt,194000,official,fr,0.57

+ mx,125959205,de_facto_official,es,0.83

+ md,3437720,recognized,gag,0.033

+ md,3437720,official,ro,0.63

+ md,3437720,recognized,ru,0.029961718813632292

+ md,3437720,recognized,uk,0.14

+ mc,30727,official,fr,0.99

+ mn,3103428,official,mn,0.93

+ me,614249,official,sr_Latn,1.0

+ ma,34314130,official,ar,0.62

+ ma,34314130,official,tzm,0.098

+ ma,34314130,de_facto_official,fr,0.2

+ mz,27233789,official,pt,0.27

+ mm,55622506,official,my,0.64

+ nr,9692,official,na,0.7108955839867932

+ np,29717587,official,ne,0.44

+ nl,17151228,official,nl,1.0

+ nl,17151228,official_regional,fy,0.043

+ nc,282754,official,fr,0.96

+ nz,4545627,official,mi,0.02837892330364986

+ ni,6085213,official,es,0.78

+ ne,19866231,official,fr,0.29

+ ng,203452505,official,yo,0.13

+ nu,1618,official,niu,0.6983930778739185

+ kp,25381085,official,ko,0.88

+ mk,2118945,official_regional,sq,0.25

+ mk,2118945,official,mk,0.67

+ no,5372191,official,nb,1.0

+ no,5372191,official,nn,0.25

+ om,3494116,official,ar,0.81

+ pk,207862518,official,ur,0.95

+ pw,21516,official,pau,0.74

+ ps,4635207,official,ar,1.0

+ pa,3800644,official,es,0.69

+ pg,7027332,official,ho,0.02148752897970382

+ pg,7027332,official,tpi,0.71

+ py,7025763,official,gn,0.8

+ py,7025763,official,es,0.032

+ pe,31331228,official,qu,0.15

+ pe,31331228,official,es,0.73

+ ph,105893381,official_regional,ceb,0.24

+ ph,105893381,official,fil,0.6

+ ph,105893381,official_regional,hil,0.084

+ ph,105893381,official_regional,ilo,0.096

+ ph,105893381,official_regional,mdh,0.01208762991522577

+ ph,105893381,official_regional,pag,0.013976322089479794

+ ph,105893381,official_regional,tsg,0.010859980001960652

+ ph,105893381,official_regional,war,0.029369163309650108

+ pl,38420687,official_regional,de,0.19

+ pl,38420687,official,pl,0.96

+ pt,10355493,official,pt,0.96

+ pr,3294626,official,es,0.87

+ qa,2363569,official,ar,0.89

+ re,787584,official,fr,0.89

+ ro,21457116,official,ro,0.9

+ ru,142122776,official_regional,ba,0.012594744138687525

+ ru,142122776,official,ru,0.94

+ ru,142122776,official_regional,tt,0.014213063217960223

+ rw,12187400,official,rw,0.77

+ ws,201316,official,sm,1.0

+ sm,33779,official,it,0.89

+ st,204454,official,pt,0.85

+ sa,33091113,official,ar,1.0

+ sn,15020945,official,fr,0.39

+ sn,15020945,official_regional,ff,0.21

+ sn,15020945,official_regional,dyo,0.026429761909120896

+ sn,15020945,official_regional,sav,0.014646215667522916

+ sn,15020945,official_regional,srr,0.11

+ sn,15020945,de_facto_official,wo,0.7

+ rs,7078110,official_regional,hu,0.048

+ rs,7078110,official_regional,ro,0.021192097890538577

+ rs,7078110,official,sr,0.99

+ rs,7078110,official,sr_Latn,0.99

+ sc,94633,official,fr,0.6

+ sg,5995991,official,zh,0.77

+ sg,5995991,official,ms,0.14

+ sg,5995991,official,ta,0.02084726277941378

+ sx,42677,official,nl,0.037256601916723295

+ sk,5445040,official,sk,0.9

+ si,2102126,official,sl,0.87

+ so,11259029,official,ar,0.34

+ so,11259029,official,so,0.78

+ za,55380210,official_regional,af,0.13

+ za,55380210,official_regional,nso,0.094

+ za,55380210,official_regional,nr,0.01599849476916032

+ za,55380210,official_regional,st,0.079

+ za,55380210,official_regional,ss,0.027085487758172096

+ za,55380210,official_regional,ts,0.044000000000000004

+ za,55380210,official_regional,tn,0.08199999999999999

+ za,55380210,official_regional,ve,0.022932379635252378

+ za,55380210,official_regional,xh,0.18

+ za,55380210,official_regional,zu,0.24

+ kr,51418097,official,ko,1.0

+ es,49331076,official_regional,ast,0.013297905766336823

+ es,49331076,official_regional,eu,0.019987401045134308

+ es,49331076,official_regional,ca,0.17

+ es,49331076,official_regional,gl,0.07

+ es,49331076,official,es,0.99

+ lk,22576592,official,si,0.68

+ lk,22576592,official,ta,0.15

+ bl,7160,official,fr,0.9567039106145251

+ mf,32284,official,fr,1.0

+ pm,5471,official,fr,0.9340157192469384

+ sd,43120843,official,ar,0.61

+ sr,597927,official,nl,0.9

+ sj,2583,official,nb,0.5807200929152149

+ se,10040995,official_regional,fi,0.02200977094401501

+ se,10040995,official,sv,0.95

+ ch,8292809,official,fr,0.21

+ ch,8292809,official,de,0.73

+ ch,8292809,official,it,0.043

+ ch,8292809,de_facto_official,gsw,0.65

+ sy,19454263,official,ar,0.8

+ sy,19454263,official,fr,0.059000000000000004

+ tw,23545963,official,zh_Hant,0.95

+ tj,8604882,official,tg,1.0

+ tz,55451343,official,sw,0.9

+ th,68615858,official,th,0.8

+ tl,1321929,official,pt,0.59

+ tl,1321929,official,tet,0.59

+ tg,8176449,official,fr,0.61

+ tk,1285,official,tkl,1.0

+ to,106398,official,to,0.95

+ tn,11516189,official,ar,0.9

+ tn,11516189,official,fr,0.74

+ tr,81257239,official,tr,0.93

+ tm,5411012,official,tk,0.7

+ tv,11147,official,tvl,0.8899255405041715

+ ug,40853749,official,sw,0.75

+ ua,43952299,de_facto_official,ru,0.46

+ ua,43952299,official,uk,0.65

+ ae,9701315,official,ar,0.78

+ us,329256465,official_regional,es,0.096

+ uy,3369299,official,es,0.88

+ uz,30023709,official,uz,0.85

+ uz,30023709,official,uz_Cyrl,0.15

+ vu,288037,official,bi,0.9

+ vu,288037,official,fr,0.5

+ va,1000,de_facto_official,it,0.824

+ ve,31689176,official,es,0.82

+ vn,97040334,official,vi,0.86

+ wf,15763,official,fr,0.4834105183023536

+ eh,619551,official,ar,1.0

+ ye,28667230,official,ar,0.74

+ zw,14030368,official,nd,0.12

+ zw,14030368,official,sn,0.81

@@ -0,0 +1,110 @@ 

+ full_language_code,message_progress_percentage,words_progress_percentage

+ af,0.09524373355847392,0.06171624213380543

+ an,0.062476512105596425,0.04512071248942271

+ ar,0.16253365525691252,0.10852508109959692

+ as,0.2335816400599231,0.1924718546668091

+ ast,0.18613223234096443,0.10503606028078351

+ az,0.06477253422154039,0.04206156616760527

+ be,0.18177184953333092,0.11300103271624722

+ be@latin,0.10230683298240918,0.06416491579716707

+ bg,0.2899886228500533,0.24302323018041164

+ bn,0.15041518875258045,0.09497343596057024

+ bn_in,0.1782660399796138,0.12891910728548245

+ br,0.07696307316897384,0.036112001383738025

+ bs,0.21066260315368418,0.1563445914666097

+ ca,0.4470756606211615,0.4248575987736283

+ ca@valencia,0.17234065555035033,0.12180455717839538

+ crh,0.11570715936761579,0.05416673025756859

+ cs,0.4680281494370627,0.4702411536576639

+ cy,0.11513057982280475,0.06678486095637325

+ da,0.4783705450221108,0.3954362081508274

+ de,0.7501145437042147,0.7391272275892944

+ dz,0.12030435163115383,0.07598858416128687

+ el,0.307100680054981,0.3048827638132157

+ en@boldquot,0.027485340979876344,0.037783170286260805

+ en@quot,0.03440429551760884,0.04381921869674262

+ en@shaw,0.08188973945811819,0.05680532874800537

+ en_ca,0.10708935438535076,0.07361876321630911

+ en_gb,0.27886887448584036,0.22201279618522418

+ eo,0.1971953523570263,0.13347052010574742

+ es,0.6458771988530185,0.6748241075652824

+ et,0.16565851046852237,0.10644353891000106

+ eu,0.24313638680250607,0.19554032765424184

+ fa,0.13722078363337778,0.08181520653477066

+ fi,0.3665604456136196,0.30473099352729405

+ fr,0.7278287146909379,0.708389081357352

+ fur,0.1622505135161571,0.11408970895716009

+ ga,0.08855644044499586,0.04935925807222909

+ gd,0.10892205365278586,0.06779383660020993

+ gl,0.35515240747700116,0.2832075929232653

+ gu,0.22789821311821426,0.18847410663261585

+ gv,0.014069570499719432,0.011002073911281366

+ he,0.18636904179686897,0.12764559348964824

+ hi,0.2108942645779386,0.16031266374657244

+ hr,0.2629614566870357,0.20699516878721128

+ hu,0.3972427142482072,0.3745029311166393

+ hy,0.04396419029184191,0.03561005719789658

+ ia,0.029189339456058977,0.01841846883282715

+ id,0.449762933142513,0.3744876693001779

+ is,0.13854897579910322,0.06643468705645346

+ it,0.5191429556908916,0.4385983208610378

+ ja,0.4447950826001678,0.3942737664636845

+ ka,0.10055135418972556,0.055516553135709766

+ kk,0.11433263491703947,0.06555713260992323

+ km,0.07326163841255295,0.057537048059460034

+ kn,0.24031526545825205,0.15739596104506137

+ ko,0.3045112201349814,0.2854409053987828

+ ku,0.05850223167172032,0.023592224613240134

+ ky,0.054244809497088785,0.019364701453433653

+ li,0.016504589470216064,0.012734290079649725

+ lt,0.2675329087923233,0.1892965489641466

+ lv,0.2295455832462458,0.20760648932435938

+ mai,0.09626304382519343,0.05651026696308506

+ mg,0.06043274354050729,0.034318737949524086

+ mk,0.1392851443250673,0.09205334174428996

+ ml,0.2014888107532085,0.14357553836057568

+ mn,0.05926928838758501,0.037475390320956

+ mr,0.26969508208536463,0.2113642876886318

+ ms,0.11473418138574716,0.072696271199087

+ my,0.04272866269581825,0.03055246079832866

+ nb,0.24171553006707885,0.176189192259885

+ nds,0.061230688446272566,0.020148989243810908

+ ne,0.10456167084515236,0.05794911710391771

+ nl,0.44784786536867627,0.3793621239022091

+ nn,0.13041508579194744,0.08288353368706833

+ nso,0.022790336114986435,0.018291287028982188

+ oc,0.19873461382040578,0.1357852289357257

+ or,0.21708219862135714,0.15019068791789822

+ pa,0.2834712147810285,0.18483670704264998

+ pl,0.5549423677856772,0.5209977158148029

+ ps,0.02855098353144675,0.012678330085957942

+ pt,0.3396465361469042,0.31882782466546944

+ pt_br,0.4743756724616343,0.48682311724296984

+ pt_pt,0.02124077858830676,0.021480158790721494

+ ro,0.2531493083619478,0.20128301003718796

+ ru,0.5654289082569279,0.574721853394991

+ si,0.06387162868277314,0.027053265435207655

+ sk,0.30464506895788396,0.22793777248701474

+ sl,0.31261422195223654,0.2824495893723493

+ sq,0.12152443513222719,0.07929446318256354

+ sr,0.39170858022435123,0.3571485500426483

+ sr@ije,0.019948622644132018,0.017949591915985396

+ sr@latin,0.26122142198930237,0.21591993990235828

+ sv,0.7254245839103419,0.7140986964712984

+ ta,0.2735046255064376,0.21766572212980345

+ te,0.22506679571066002,0.1732487489549895

+ tg,0.07147012339831865,0.04719971104294166

+ th,0.1491178847767556,0.09526595410941366

+ tk,0.016612698134868133,0.01031190065574938

+ tr,0.4212685779592173,0.3225169448556656

+ ug,0.14724914928776983,0.09556101589433397

+ uk,0.628461407780735,0.5354074141904369

+ uz,0.02528198343363415,0.013028503985877732

+ uz@cyrillic,0.02553938501613908,0.01374072208740951

+ vi,0.4402699627797312,0.3770541981017692

+ wa,0.0334622057256408,0.016363210882692592

+ xh,0.053127686629017394,0.04168680378560879

+ zh_cn,0.5293412063897369,0.5232607040445509

+ zh_hk,0.1756353958064134,0.12884873335402158

+ zh_tw,0.33623853919453894,0.28640409559323526

+ zu,0.019768441536378564,0.014196032945174467

@@ -0,0 +1,110 @@ 

+ full_language_code,message_progress_percentage,words_progress_percentage,FIFA,Dial,ISO3166-1-Alpha-3,MARC,is_independent,ISO3166-1-numeric,GAUL,FIPS,WMO,ISO3166-1-Alpha-2,ITU,IOC,DS,UNTERM Spanish Formal,Global Code,Intermediate Region Code,official_name_fr,UNTERM French Short,ISO4217-currency_name,Developed / Developing Countries,UNTERM Russian Formal,UNTERM English Short,ISO4217-currency_alphabetic_code,Small Island Developing States (SIDS),UNTERM Spanish Short,ISO4217-currency_numeric_code,UNTERM Chinese Formal,UNTERM French Formal,UNTERM Russian Short,M49,Sub-region Code,Region Code,official_name_ar,ISO4217-currency_minor_unit,UNTERM Arabic Formal,UNTERM Chinese Short,Land Locked Developing Countries (LLDC),Intermediate Region Name,official_name_es,UNTERM English Formal,official_name_cn,official_name_en,ISO4217-currency_country_name,Least Developed Countries (LDC),Region Name,UNTERM Arabic Short,Sub-region Name,official_name_ru,Global Name,Capital,Continent,TLD,Languages,Geoname ID,CLDR display name,EDGAR

+ af,0.09524373355847392,0.06171624213380543,AFG,93,AFG,af,Yes,4.0,1,AF,AF,af,AFG,AFG,AFG,República Islámica del Afganistán (la),True,,Afghanistan,Afghanistan (l') [masc.],Afghani,Developing,Исламская Республика Афганистан,Afghanistan,AFN,,Afganistán (el),971,阿富汗伊斯兰共和国,République islamique d'Afghanistan,Афганистан,4.0,34.0,142.0,أفغانستان,2,جمهورية أفغانستان الإسلامية,阿富汗,x,,Afganistán,the Islamic Republic of Afghanistan,阿富汗,Afghanistan,AFGHANISTAN,x,Asia,أفغانستان,Southern Asia,Афганистан,World,Kabul,AS,.af,"fa-AF,ps,uz-AF,tk",1149361.0,Afghanistan,B2

+ an,0.062476512105596425,0.04512071248942271,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ ar,0.16253365525691252,0.10852508109959692,ARG,54,ARG,ag,Yes,32.0,12,AR,AG,ar,ARG,ARG,RA,la República Argentina,True,5.0,Argentine,Argentine (l') [fém.],Argentine Peso,Developing,Аргентинская Республика,Argentina,ARS,,Argentina (la),032,阿根廷共和国,la République argentine,Аргентина,32.0,419.0,19.0,الأرجنتين,2,جمهورية الأرجنتين,阿根廷,,South America,Argentina,the Argentine Republic,阿根廷,Argentina,ARGENTINA,,Americas,الأرجنتين,Latin America and the Caribbean,Аргентина,World,Buenos Aires,SA,.ar,"es-AR,en,it,de,fr,gn",3865483.0,Argentina,C1

+ as,0.2335816400599231,0.1924718546668091,ASA,1-684,ASM,as,Territory of US,16.0,5,AQ, ,as,SMA,ASA,USA,,True,,Samoa américaines,,US Dollar,Developing,,,USD,x,,840,,,,16.0,61.0,9.0,ساموا الأمريكية,2,,,,,Samoa Americana,,美属萨摩亚,American Samoa,AMERICAN SAMOA,,Oceania,,Polynesia,Американское Самоа,World,Pago Pago,OC,.as,"en-AS,sm,to",5880801.0,American Samoa,B5

+ ast,0.18613223234096443,0.10503606028078351,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ az,0.06477253422154039,0.04206156616760527,AZE,994,AZE,aj,Yes,31.0,19,AJ,AJ,az,AZE,AZE,AZ,la República de Azerbaiyán,True,,Azerbaïdjan,Azerbaïdjan (l') [masc.],Azerbaijan Manat,Developing,Азербайджанская Республика,Azerbaijan,AZN,,Azerbaiyán,944,阿塞拜疆共和国,la République d'Azerbaïdjan,Азербайджан,31.0,145.0,142.0,أذربيجان,2,جمهورية أذربيجان,阿塞拜疆,x,,Azerbaiyán,the Republic of Azerbaijan,阿塞拜疆,Azerbaijan,AZERBAIJAN,,Asia,أذربيجان,Western Asia,Азербайджан,World,Baku,AS,.az,"az,ru,hy",587116.0,Azerbaijan,1D

+ be,0.18177184953333092,0.11300103271624722,BEL,32,BEL,be,Yes,56.0,27,BE,BX,be,BEL,BEL,B,el Reino de Bélgica,True,,Belgique,Belgique (la),Euro,Developed,Королевство Бельгия,Belgium,EUR,,Bélgica,978,比利时王国,le Royaume de Belgique,Бельгия,56.0,155.0,150.0,بلجيكا,2,مملكة بلجيكا,比利时,,,Bélgica,the Kingdom of Belgium,比利时,Belgium,BELGIUM,,Europe,بلجيكا,Western Europe,Бельгия,World,Brussels,EU,.be,"nl-BE,fr-BE,de-BE",2802361.0,Belgium,C9

+ be@latin,0.10230683298240918,0.06416491579716707,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ bg,0.2899886228500533,0.24302323018041164,BUL,359,BGR,bu,Yes,100.0,41,BU,BU,bg,BUL,BUL,BG,la República de Bulgaria,True,,Bulgarie,Bulgarie (la),Bulgarian Lev,Developed,Республика Болгария,Bulgaria,BGN,,Bulgaria,975,保加利亚共和国,la République de Bulgarie,Болгария,100.0,151.0,150.0,بلغاريا,2,جمهورية بلغاريا,保加利亚,,,Bulgaria,the Republic of Bulgaria,保加利亚,Bulgaria,BULGARIA,,Europe,بلغاريا,Eastern Europe,Болгария,World,Sofia,EU,.bg,"bg,tr-BG,rom",732800.0,Bulgaria,E0

+ bn,0.15041518875258045,0.09497343596057024,BRU,673,BRN,bx,Yes,96.0,40,BX,BD,bn,BRU,BRU,BRU,Brunei Darussalam,True,,Brunéi Darussalam,Brunéi Darussalam (le),Brunei Dollar,Developing,Бруней-Даруссалам,Brunei Darussalam,BND,,Brunei Darussalam,096,文莱达鲁萨兰国,le Brunéi Darussalam,Бруней-Даруссалам,96.0,35.0,142.0,بروني دار السلام,2,بروني دار السلام,文莱达鲁萨兰国,,,Brunei Darussalam,Brunei Darussalam,文莱达鲁萨兰国,Brunei Darussalam,BRUNEI DARUSSALAM,,Asia,بروني دار السلام,South-eastern Asia,Бруней-Даруссалам,World,Bandar Seri Begawan,AS,.bn,"ms-BN,en-BN",1820814.0,Brunei,D9

+ bn_in,0.1782660399796138,0.12891910728548245,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ br,0.07696307316897384,0.036112001383738025,BRA,55,BRA,bl,Yes,76.0,37,BR,BZ,br,B,BRA,BR,la República Federativa del Brasil,True,5.0,Brésil,Brésil (le),Brazilian Real,Developing,Федеративная Республика Бразилия,Brazil,BRL,,Brasil (el),986,巴西联邦共和国,la République fédérative du Brésil,Бразилия,76.0,419.0,19.0,البرازيل,2,الجمهورية الاتحادية البرازيلية,巴西,,South America,Brasil,the Federative Republic of Brazil,巴西,Brazil,BRAZIL,,Americas,البرازيل,Latin America and the Caribbean,Бразилия,World,Brasilia,SA,.br,"pt-BR,es,en,fr",3469034.0,Brazil,D5

+ bs,0.21066260315368418,0.1563445914666097,BAH,1-242,BHS,bf,Yes,44.0,20,BF,BA,bs,BAH,BAH,BS,el Commonwealth de las Bahamas,True,29.0,Bahamas,Bahamas (les) [fém.],Bahamian Dollar,Developing,Содружество Багамских Островов,Bahamas (the),BSD,x,Bahamas (las),044,巴哈马国,le Commonwealth des Bahamas,Багамские Острова,44.0,419.0,19.0,جزر البهاما,2,كمنولث جزر البهاما,巴哈马,,Caribbean,Bahamas,the Commonwealth of the Bahamas,巴哈马,Bahamas,BAHAMAS,,Americas,جزر البهاما,Latin America and the Caribbean,Багамские Острова,World,Nassau,,.bs,en-BS,3572887.0,Bahamas,C5

+ ca,0.4470756606211615,0.4248575987736283,CAN,1,CAN,xxc,Yes,124.0,46,CA,CN,ca,CAN,CAN,CDN,el Canadá,True,,Canada,Canada (le),Canadian Dollar,Developed,Канада,Canada,CAD,,Canadá (el),124,加拿大,le Canada,Канада,124.0,21.0,19.0,كندا,2,كندا,加拿大,,,Canadá,Canada,加拿大,Canada,CANADA,,Americas,كندا,Northern America,Канада,World,Ottawa,,.ca,"en-CA,fr-CA,iu",6251999.0,Canada,

+ ca@valencia,0.17234065555035033,0.12180455717839538,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ crh,0.11570715936761579,0.05416673025756859,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ cs,0.4680281494370627,0.4702411536576639,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ cy,0.11513057982280475,0.06678486095637325,CYP,357,CYP,cy,Yes,196.0,64,CY,CY,cy,CYP,CYP,CY,la República de Chipre,True,,Chypre,Chypre [fém.],Euro,Developed,Республика Кипр,Cyprus,EUR,,Chipre,978,塞浦路斯共和国,la République de Chypre,Кипр,196.0,145.0,142.0,قبرص,2,جمهورية قبرص,塞浦路斯,,,Chipre,the Republic of Cyprus,塞浦路斯,Cyprus,CYPRUS,,Asia,قبرص,Western Asia,Кипр,World,Nicosia,EU,.cy,"el-CY,tr-CY,en",146669.0,Cyprus,G4

+ da,0.4783705450221108,0.3954362081508274,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ de,0.7501145437042147,0.7391272275892944,GER,49,DEU,gw,Yes,276.0,93,GM,DL,de,D,GER,D,la República Federal de Alemania,True,,Allemagne,Allemagne (l') [fém.],Euro,Developed,Федеративная Республика Германия,Germany,EUR,,Alemania,978,德意志联邦共和国,la République fédérale d'Allemagne,Германия,276.0,155.0,150.0,ألمانيا,2,جمهورية ألمانيا الاتحادية,德国,,,Alemania,the Federal Republic of Germany,德国,Germany,GERMANY,,Europe,ألمانيا,Western Europe,Германия,World,Berlin,EU,.de,de,2921044.0,Germany,2M

+ dz,0.12030435163115383,0.07598858416128687,ALG,213,DZA,ae,Yes,12.0,4,AG,AL,dz,ALG,ALG,DZ,la República Argelina Democrática y Popular,True,,Algérie,Algérie (l') [fém.],Algerian Dinar,Developing,Алжирская Народная Демократическая Республика,Algeria,DZD,,Argelia,012,阿尔及利亚民主人民共和国,la République algérienne démocratique et populaire,Алжир,12.0,15.0,2.0,الجزائر,2,الجمهورية الجزائرية الديمقراطية الشعبية,阿尔及利亚,,,Argelia,the People's Democratic Republic of Algeria,阿尔及利亚,Algeria,ALGERIA,,Africa,الجزائر,Northern Africa,Алжир,World,Algiers,AF,.dz,ar-DZ,2589581.0,Algeria,B4

+ el,0.307100680054981,0.3048827638132157,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ en@boldquot,0.027485340979876344,0.037783170286260805,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ en@quot,0.03440429551760884,0.04381921869674262,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ en@shaw,0.08188973945811819,0.05680532874800537,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ en_ca,0.10708935438535076,0.07361876321630911,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ en_gb,0.27886887448584036,0.22201279618522418,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ eo,0.1971953523570263,0.13347052010574742,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ es,0.6458771988530185,0.6748241075652824,ESP,34,ESP,sp,Yes,724.0,229,SP,SP,es,E,ESP,E,el Reino de España,True,,Espagne,Espagne (l') [fém.],Euro,Developed,Королевство Испания,Spain,EUR,,España,978,西班牙王国,le Royaume d'Espagne,Испания,724.0,39.0,150.0,إسبانيا,2,مملكة إسبانيا,西班牙,,,España,the Kingdom of Spain,西班牙,Spain,SPAIN,,Europe,إسبانيا,Southern Europe,Испания,World,Madrid,EU,.es,"es-ES,ca,gl,eu,oc",2510769.0,Spain,U3

+ et,0.16565851046852237,0.10644353891000106,ETH,251,ETH,et,Yes,231.0,79,ET,ET,et,ETH,ETH,ETH,la República Democrática Federal de Etiopía,True,14.0,Éthiopie,Éthiopie (l') [fém.],Ethiopian Birr,Developing,Федеративная Демократическая Республика Эфиопия,Ethiopia,ETB,,Etiopía,230,埃塞俄比亚联邦民主共和国,la République fédérale démocratique d'Éthiopie,Эфиопия,231.0,202.0,2.0,إثيوبيا,2,جمهورية إثيوبيا الديمقراطية الاتحادية,埃塞俄比亚,x,Eastern Africa,Etiopía,the Federal Democratic Republic of Ethiopia,埃塞俄比亚,Ethiopia,ETHIOPIA,x,Africa,إثيوبيا,Sub-Saharan Africa,Эфиопия,World,Addis Ababa,AF,.et,"am,en-ET,om-ET,ti-ET,so-ET,sid",337996.0,Ethiopia,H5

+ eu,0.24313638680250607,0.19554032765424184,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ fa,0.13722078363337778,0.08181520653477066,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ fi,0.3665604456136196,0.30473099352729405,FIN,358,FIN,fi,Yes,246.0,84,FI,FI,fi,FIN,FIN,FIN,la República de Finlandia,True,,Finlande,Finlande (la),Euro,Developed,Финляндская Республика,Finland,EUR,,Finlandia,978,芬兰共和国,la République de Finlande,Финляндия,246.0,154.0,150.0,فنلندا,2,جمهورية فنلندا,芬兰,,,Finlandia,the Republic of Finland,芬兰,Finland,FINLAND,,Europe,فنلندا,Northern Europe,Финляндия,World,Helsinki,EU,.fi,"fi-FI,sv-FI,smn",660013.0,Finland,H9

+ fr,0.7278287146909379,0.708389081357352,FRA,33,FRA,fr,Yes,250.0,85,FR,FR,fr,F,FRA,F,la República Francesa,True,,France,France (la),Euro,Developed,Французская Республика,France,EUR,,Francia,978,法兰西共和国,la République française,Франция,250.0,155.0,150.0,فرنسا,2,الجمهورية الفرنسية,法国,,,Francia,the French Republic,法国,France,FRANCE,,Europe,فرنسا,Western Europe,Франция,World,Paris,EU,.fr,"fr-FR,frp,br,co,ca,eu,oc",3017382.0,France,I0

+ fur,0.1622505135161571,0.11408970895716009,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ ga,0.08855644044499586,0.04935925807222909,GAB,241,GAB,go,Yes,266.0,89,GB,GO,ga,GAB,GAB,G,la República Gabonesa,True,17.0,Gabon,Gabon (le),CFA Franc BEAC,Developing,Габонская Республика,Gabon,XAF,,Gabón (el),950,加蓬共和国,la République gabonaise,Габон,266.0,202.0,2.0,غابون,0,جمهورية الغابون,加蓬,,Middle Africa,Gabón,the Gabonese Republic,加蓬,Gabon,GABON,,Africa,غابون,Sub-Saharan Africa,Габон,World,Libreville,AF,.ga,fr-GA,2400553.0,Gabon,I5

+ gd,0.10892205365278586,0.06779383660020993,GRN,1-473,GRD,gd,Yes,308.0,99,GJ,GD,gd,GRD,GRN,WG,Granada,True,29.0,Grenade,Grenade (la),East Caribbean Dollar,Developing,Гренада,Grenada,XCD,x,Granada,951,格林纳达,la Grenade,Гренада,308.0,419.0,19.0,غرينادا,2,غرينادا,格林纳达,,Caribbean,Granada,Grenada,格林纳达,Grenada,GRENADA,,Americas,غرينادا,Latin America and the Caribbean,Гренада,World,St. George's,,.gd,en-GD,3580239.0,Grenada,J5

+ gl,0.35515240747700116,0.2832075929232653,GRL,299,GRL,gl,Part of DK,304.0,98,GL,GL,gl,GRL,GRL,DK,,True,,Groenland,,Danish Krone,Developed,,,DKK,,,208,,,,304.0,21.0,19.0,غرينلند,2,,,,,Groenlandia,,格陵兰,Greenland,GREENLAND,,Americas,,Northern America,Гренландия,World,Nuuk,,.gl,"kl,da-GL,en",3425505.0,Greenland,J4

+ gu,0.22789821311821426,0.18847410663261585,GUM,1-671,GUM,gu,Territory of US,316.0,101,GQ,GM,gu,GUM,GUM,USA,,True,,Guam,,US Dollar,Developing,,,USD,x,,840,,,,316.0,57.0,9.0,غوام,2,,,,,Guam,,关岛,Guam,GUAM,,Oceania,,Micronesia,Гуам,World,Hagatna,OC,.gu,"en-GU,ch-GU",4043988.0,Guam,GU

+ gv,0.014069570499719432,0.011002073911281366,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ he,0.18636904179686897,0.12764559348964824,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ hi,0.2108942645779386,0.16031266374657244,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ hr,0.2629614566870357,0.20699516878721128,CRO,385,HRV,ci,Yes,191.0,62,HR,RH,hr,HRV,CRO,HR,la República de Croacia,True,,Croatie,Croatie (la),Kuna,Developed,Республика Хорватия,Croatia,HRK,,Croacia,191,克罗地亚共和国,la République de Croatie,Хорватия,191.0,39.0,150.0,كرواتيا,2,جمهورية كرواتيا,克罗地亚,,,Croacia,the Republic of Croatia,克罗地亚,Croatia,CROATIA,,Europe,كرواتيا,Southern Europe,Хорватия,World,Zagreb,EU,.hr,"hr-HR,sr",3202326.0,Croatia,1M

+ hu,0.3972427142482072,0.3745029311166393,HUN,36,HUN,hu,Yes,348.0,113,HU,HU,hu,HNG,HUN,H,Hungría,True,,Hongrie,Hongrie (la),Forint,Developed,Венгрия,Hungary,HUF,,Hungría,348,匈牙利,la Hongrie,Венгрия,348.0,151.0,150.0,هنغاريا,2,هنغاريا,匈牙利,,,Hungría,Hungary,匈牙利,Hungary,HUNGARY,,Europe,هنغاريا,Eastern Europe,Венгрия,World,Budapest,EU,.hu,hu-HU,719819.0,Hungary,K5

+ hy,0.04396419029184191,0.03561005719789658,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ ia,0.029189339456058977,0.01841846883282715,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ id,0.449762933142513,0.3744876693001779,IDN,62,IDN,io,Yes,360.0,116,ID,ID,id,INS,INA,RI,la República de Indonesia,True,,Indonésie,Indonésie (l') [fém.],Rupiah,Developing,Республика Индонезия,Indonesia,IDR,,Indonesia,360,印度尼西亚共和国,la République d'Indonésie,Индонезия,360.0,35.0,142.0,إندونيسيا,2,جمهورية إندونيسيا,印度尼西亚,,,Indonesia,the Republic of Indonesia,印度尼西亚,Indonesia,INDONESIA,,Asia,إندونيسيا,South-eastern Asia,Индонезия,World,Jakarta,AS,.id,"id,en,nl,jv",1643084.0,Indonesia,K8

+ is,0.13854897579910322,0.06643468705645346,ISL,354,ISL,ic,Yes,352.0,114,IC,IL,is,ISL,ISL,IS,la República de Islandia,True,,Islande,Islande (l') [fém.],Iceland Krona,Developed,Республика Исландия,Iceland,ISK,,Islandia,352,冰岛共和国,la République d'Islande,Исландия,352.0,154.0,150.0,آيسلندا,0,جمهورية آيسلندا,冰岛,,,Islandia,the Republic of Iceland,冰岛,Iceland,ICELAND,,Europe,آيسلندا,Northern Europe,Исландия,World,Reykjavik,EU,.is,"is,en,de,da,sv,no",2629691.0,Iceland,K6

+ it,0.5191429556908916,0.4385983208610378,ITA,39,ITA,it,Yes,380.0,122,IT,IY,it,I,ITA,I,la República Italiana,True,,Italie,Italie (l') [fém.],Euro,Developed,Итальянская Республика,Italy,EUR,,Italia,978,意大利共和国,la République italienne,Италия,380.0,39.0,150.0,إيطاليا,2,جمهورية إيطاليا,意大利,,,Italia,the Republic of Italy,意大利,Italy,ITALY,,Europe,إيطاليا,Southern Europe,Италия,World,Rome,EU,.it,"it-IT,de-IT,fr-IT,sc,ca,co,sl",3175395.0,Italy,L6

+ ja,0.4447950826001678,0.3942737664636845,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ ka,0.10055135418972556,0.055516553135709766,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ kk,0.11433263491703947,0.06555713260992323,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ km,0.07326163841255295,0.057537048059460034,COM,269,COM,cq,Yes,174.0,58,CN,IC,km,COM,COM,KM,la Unión de las Comoras,True,14.0,Comores,Comores (les) [fém.],Comorian Franc ,Developing,Союз Коморских Островов,Comoros (the),KMF,x,Comoras (las),174,科摩罗联盟,l'Union des Comores,Коморские Острова,174.0,202.0,2.0,جزر القمر,0,اتحاد جزر القمر,科摩罗,,Eastern Africa,Comoras,the Union of the Comoros,科摩罗,Comoros,COMOROS,x,Africa,جزر القمر,Sub-Saharan Africa,Коморские Острова,World,Moroni,AF,.km,"ar,fr-KM",921929.0,Comoros,F9

+ kn,0.24031526545825205,0.15739596104506137,SKN,1-869,KNA,xd,Yes,659.0,208,SC,AT,kn,KNA,SKN,KN,Saint Kitts y Nevis,True,29.0,Saint-Kitts-et-Nevis,Saint-Kitts-et-Nevis [masc.],East Caribbean Dollar,Developing,Сент-Китс и Невис,Saint Kitts and Nevis,XCD,x,Saint Kitts y Nevis,951,圣基茨和尼维斯,Saint-Kitts-et-Nevis [masc.],Сент-Китс и Невис,659.0,419.0,19.0,سانت كيتس ونيفس,2,سانت كيتس ونيفس,圣基茨和尼维斯,,Caribbean,Saint Kitts y Nevis,Saint Kitts and Nevis,圣基茨和尼维斯,Saint Kitts and Nevis,SAINT KITTS AND NEVIS,,Americas,سانت كيتس ونيفس,Latin America and the Caribbean,Сент-Китс и Невис,World,Basseterre,,.kn,en-KN,3575174.0,St. Kitts & Nevis,U7

+ ko,0.3045112201349814,0.2854409053987828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ ku,0.05850223167172032,0.023592224613240134,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ ky,0.054244809497088785,0.019364701453433653,CAY,1-345,CYM,cj,Territory of GB,136.0,48,CJ,GC,ky,CYM,CAY,KY,,True,29.0,Îles Caïmanes,,Cayman Islands Dollar,Developing,,,KYD,,,136,,,,136.0,419.0,19.0,جزر كايمان,2,,,,Caribbean,Islas Caimán,,开曼群岛,Cayman Islands,CAYMAN ISLANDS,,Americas,,Latin America and the Caribbean,Кайман острова,World,George Town,,.ky,en-KY,3580718.0,Cayman Islands,E9

+ li,0.016504589470216064,0.012734290079649725,LIE,423,LIE,lh,Yes,438.0,146,LS, ,li,LIE,LIE,FL,el Principado de Liechtenstein,True,,Liechtenstein,Liechtenstein (le),Swiss Franc,Developed,Княжество Лихтенштейн,Liechtenstein,CHF,,Liechtenstein,756,列支敦士登公国,la Principauté du Liechtenstein,Лихтенштейн,438.0,155.0,150.0,ليختنشتاين,2,إمارة ليختنشتاين,列支敦士登,,,Liechtenstein,the Principality of Liechtenstein,列支敦士登,Liechtenstein,LIECHTENSTEIN,,Europe,ليختنشتاين,Western Europe,Лихтенштейн,World,Vaduz,EU,.li,de-LI,3042058.0,Liechtenstein,N2

+ lt,0.2675329087923233,0.1892965489641466,LTU,370,LTU,li,Yes,440.0,147,LH,LT,lt,LTU,LTU,LT,la República de Lituania,True,,Lituanie,Lituanie (la),Euro,Developed,Литовская Республика,Lithuania,EUR,,Lituania,978,立陶宛共和国,la République de Lituanie,Литва,440.0,154.0,150.0,ليتوانيا,2,جمهورية ليتوانيا,立陶宛,,,Lituania,the Republic of Lithuania,立陶宛,Lithuania,LITHUANIA,,Europe,ليتوانيا,Northern Europe,Литва,World,Vilnius,EU,.lt,"lt,ru,pl",597427.0,Lithuania,1Q

+ lv,0.2295455832462458,0.20760648932435938,LVA,371,LVA,lv,Yes,428.0,140,LG,LV,lv,LVA,LAT,LV,la República de Letonia,True,,Lettonie,Lettonie (la),Euro,Developed,Латвийская Республика,Latvia,EUR,,Letonia,978,拉脱维亚共和国,la République de Lettonie,Латвия,428.0,154.0,150.0,لاتفيا,2,جمهورية لاتفيا,拉脱维亚,,,Letonia,the Republic of Latvia,拉脱维亚,Latvia,LATVIA,,Europe,لاتفيا,Northern Europe,Латвия,World,Riga,EU,.lv,"lv,ru,lt",458258.0,Latvia,1R

+ mai,0.09626304382519343,0.05651026696308506,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ mg,0.06043274354050729,0.034318737949524086,MAD,261,MDG,mg,Yes,450.0,150,MA,MG,mg,MDG,MAD,RM,la República de Madagascar,True,14.0,Madagascar,Madagascar [fém.],Malagasy Ariary,Developing,Республика Мадагаскар,Madagascar,MGA,,Madagascar,969,马达加斯加共和国,la République de Madagascar,Мадагаскар,450.0,202.0,2.0,مدغشقر,2,جمهورية مدغشقر,马达加斯加,,Eastern Africa,Madagascar,the Republic of Madagascar,马达加斯加,Madagascar,MADAGASCAR,x,Africa,مدغشقر,Sub-Saharan Africa,Мадагаскар,World,Antananarivo,AF,.mg,"fr-MG,mg",1062947.0,Madagascar,N6

+ mk,0.1392851443250673,0.09205334174428996,MKD,389,MKD,xn,Yes,807.0,241,MK,MJ,mk,MKD,MKD,MK,ex República Yugoslava de Macedonia (la),True,,ex-République yougoslave de Macédoine,ex-République yougoslave de Macédoine (l') [fém.],Denar,Developed,бывшая югославская Республика Македония,the former Yugoslav Republic of Macedonia,MKD,,ex República Yugoslava de Macedonia,807,前南斯拉夫的马其顿共和国,l'ex-République yougoslave de Macédoine [fém.],бывшая югославская Республика Македония,807.0,39.0,150.0,جمهورية مقدونيا اليوغوسلافية سابقاً,2,جمهورية مقدونيا اليوغوسلافية سابقاً,前南斯拉夫的马其顿共和国,x,,ex República Yugoslava de Macedonia,the former Yugoslav Republic of Macedonia,前南斯拉夫的马其顿共和国,The former Yugoslav Republic of Macedonia,MACEDONIA (THE FORMER YUGOSLAV REPUBLIC OF),,Europe,جمهورية مقدونيا اليوغوسلافية سابقاً,Southern Europe,бывшая югославская Республика Македония,World,Skopje,EU,.mk,"mk,sq,tr,rmm,sr",718075.0,North Macedonia,

+ ml,0.2014888107532085,0.14357553836057568,MLI,223,MLI,ml,Yes,466.0,155,ML,MI,ml,MLI,MLI,RMM,la República de Malí,True,11.0,Mali,Mali (le),CFA Franc BCEAO,Developing,Республика Мали,Mali,XOF,,Malí,952,马里共和国,la République du Mali,Мали,466.0,202.0,2.0,مالي,0,جمهورية مالي,马里,x,Western Africa,Malí,the Republic of Mali,马里,Mali,MALI,x,Africa,مالي,Sub-Saharan Africa,Мали,World,Bamako,AF,.ml,"fr-ML,bm",2453866.0,Mali,O0

+ mn,0.05926928838758501,0.037475390320956,MNG,976,MNG,mp,Yes,496.0,167,MG,MO,mn,MNG,MGL,MGL,Mongolia,True,,Mongolie,Mongolie (la),Tugrik,Developing,Монголия,Mongolia,MNT,,Mongolia,496,蒙古国,la Mongolie,Монголия,496.0,30.0,142.0,منغوليا,2,منغوليا,蒙古,x,,Mongolia,Mongolia,蒙古,Mongolia,MONGOLIA,,Asia,منغوليا,Eastern Asia,Монголия,World,Ulan Bator,AS,.mn,"mn,ru",2029969.0,Mongolia,P0

+ mr,0.26969508208536463,0.2113642876886318,MTN,222,MRT,mu,Yes,478.0,159,MR,MT,mr,MTN,MTN,RIM,la República Islámica de Mauritania,True,11.0,Mauritanie,Mauritanie (la),Ouguiya,Developing,Исламская Республика Мавритания,Mauritania,MRU,,Mauritania,929,毛里塔尼亚伊斯兰共和国,la République islamique de Mauritanie,Мавритания,478.0,202.0,2.0,موريتانيا,2,الجمهورية الإسلامية الموريتانية,毛里塔尼亚,,Western Africa,Mauritania,the Islamic Republic of Mauritania,毛里塔尼亚,Mauritania,MAURITANIA,x,Africa,موريتانيا,Sub-Saharan Africa,Мавритания,World,Nouakchott,AF,.mr,"ar-MR,fuc,snk,fr,mey,wo",2378080.0,Mauritania,O3

+ ms,0.11473418138574716,0.072696271199087,MSR,1-664,MSR,mj,Territory of GB,500.0,168,MH, ,ms,MSR,MNT, ,,True,29.0,Montserrat,,East Caribbean Dollar,Developing,,,XCD,x,,951,,,,500.0,419.0,19.0,مونتسيرات,2,,,,Caribbean,Montserrat,,蒙特塞拉特,Montserrat,MONTSERRAT,,Americas,,Latin America and the Caribbean,Монтсеррат,World,Plymouth,,.ms,en-MS,3578097.0,Montserrat,P1

+ my,0.04272866269581825,0.03055246079832866,MAS,60,MYS,my,Yes,458.0,153,MY,MS,my,MLA,MAS,MAL,Federación de Malasia,True,,Malaisie,Malaisie (la),Malaysian Ringgit,Developing,Малайзия,Malaysia,MYR,,Malasia,458,马来西亚,la Malaisie,Малайзия,458.0,35.0,142.0,ماليزيا,2,ماليزيا,马来西亚,,,Malasia,Malaysia,马来西亚,Malaysia,MALAYSIA,,Asia,ماليزيا,South-eastern Asia,Малайзия,World,Kuala Lumpur,AS,.my,"ms-MY,en,zh,ta,te,ml,pa,th",1733045.0,Malaysia,N8

+ nb,0.24171553006707885,0.176189192259885,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ nds,0.061230688446272566,0.020148989243810908,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ ne,0.10456167084515236,0.05794911710391771,NIG,227,NER,ng,Yes,562.0,181,NG,NR,ne,NGR,NIG,RN,la República del Níger,True,11.0,Niger,Niger (le),CFA Franc BCEAO,Developing,Республика Нигер,Niger (the),XOF,,Níger (el),952,尼日尔共和国,la République du Niger,Нигер,562.0,202.0,2.0,النيجر,0,جمهورية النيجر,尼日尔,x,Western Africa,Níger,the Republic of the Niger,尼日尔,Niger,NIGER,x,Africa,النيجر,Sub-Saharan Africa,Нигер,World,Niamey,AF,.ne,"fr-NE,ha,kr,dje",2440476.0,Niger,Q4

+ nl,0.44784786536867627,0.3793621239022091,NED,31,NLD,ne,Yes,528.0,177,NL,NL,nl,HOL,NED,NL,el Reino de los Países Bajos,True,,Pays-Bas,Pays-Bas (les),Euro,Developed,Королевство Нидерландов,Netherlands (the),EUR,,Países Bajos (los),978,荷兰王国,le Royaume des Pays-Bas,Нидерланды,528.0,155.0,150.0,هولندا,2,مملكة هولندا,荷兰,,,Países Bajos,the Kingdom of the Netherlands,荷兰,Netherlands,NETHERLANDS,,Europe,هولندا,Western Europe,Нидерланды,World,Amsterdam,EU,.nl,"nl-NL,fy-NL",2750405.0,Netherlands,P7

+ nn,0.13041508579194744,0.08288353368706833,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ nso,0.022790336114986435,0.018291287028982188,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ oc,0.19873461382040578,0.1357852289357257,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ or,0.21708219862135714,0.15019068791789822,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ pa,0.2834712147810285,0.18483670704264998,PAN,507,PAN,pn,Yes,591.0,191,PM,PM,pa,PNR,PAN,PA,la República de Panamá,True,13.0,Panama,Panama (le),"Balboa,US Dollar",Developing,Республика Панама,Panama,"PAB,USD",,Panamá,"590,840",巴拿马共和国,la République du Panama,Панама,591.0,419.0,19.0,بنما,"2,2",جمهورية بنما,巴拿马,,Central America,Panamá,the Republic of Panama,巴拿马,Panama,PANAMA,,Americas,بنما,Latin America and the Caribbean,Панама,World,Panama City,,.pa,"es-PA,en",3703430.0,Panama,R1

+ pl,0.5549423677856772,0.5209977158148029,POL,48,POL,pl,Yes,616.0,198,PL,PL,pl,POL,POL,PL,la República de Polonia,True,,Pologne,Pologne (la),Zloty,Developed,Республика Польша,Poland,PLN,,Polonia,985,波兰共和国,la République de Pologne,Польша,616.0,151.0,150.0,بولندا,2,جمهورية بولندا,波兰,,,Polonia,the Republic of Poland,波兰,Poland,POLAND,,Europe,بولندا,Eastern Europe,Польша,World,Warsaw,EU,.pl,pl,798544.0,Poland,R9

+ ps,0.02855098353144675,0.012678330085957942,PLE,970,PSE,"gz,wj",In contention,275.0,"91,267","GZ,WE", ,ps, ,PLE, ,Estado  de Palestina,True,,État de Palestine,État de Palestine  *,No universal currency,Developing,Государство Палестина,State of Palestine  *,,,Estado  de Palestina  *,,巴勒斯坦国,État de Palestine,Государство Палестина  *,275.0,145.0,142.0,دولة فلسطين,,دولة فلسطين,巴勒斯坦国  *,,,Estado de Palestina,State of Palestine,巴勒斯坦国,State of Palestine,"PALESTINE, STATE OF",,Asia,دولة فلسطين  *,Western Asia,Государство Палестина,World,East Jerusalem,AS,.ps,ar-PS,6254930.0,Palestine,

+ pt,0.3396465361469042,0.31882782466546944,POR,351,PRT,po,Yes,620.0,199,PO,PO,pt,POR,POR,P,la República Portuguesa,True,,Portugal,Portugal (le),Euro,Developed,Португальская Республика,Portugal,EUR,,Portugal,978,葡萄牙共和国,la République portugaise,Португалия,620.0,39.0,150.0,البرتغال,2,جمهورية البرتغال,葡萄牙,,,Portugal,the Portuguese Republic,葡萄牙,Portugal,PORTUGAL,,Europe,البرتغال,Southern Europe,Португалия,World,Lisbon,EU,.pt,"pt-PT,mwl",2264397.0,Portugal,S1

+ pt_br,0.4743756724616343,0.48682311724296984,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ pt_pt,0.02124077858830676,0.021480158790721494,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ ro,0.2531493083619478,0.20128301003718796,ROU,40,ROU,rm,Yes,642.0,203,RO,RO,ro,ROU,ROU,RO,Rumania,True,,Roumanie,Roumanie (la),Romanian Leu,Developed,Румыния,Romania,RON,,Rumania,946,罗马尼亚,la Roumanie,Румыния,642.0,151.0,150.0,رومانيا,2,رومانيا,罗马尼亚,,,Rumania,Romania,罗马尼亚,Romania,ROMANIA,,Europe,رومانيا,Eastern Europe,Румыния,World,Bucharest,EU,.ro,"ro,hu,rom",798549.0,Romania,S5

+ ru,0.5654289082569279,0.574721853394991,RUS,7,RUS,ru,Yes,643.0,204,RS,RS,ru,RUS,RUS,RUS,la Federación de Rusia,True,,Fédération de Russie,Fédération de Russie (la),Russian Ruble,Developed,Российская Федерация,Russian Federation (the),RUB,,Federación de Rusia (la),643,俄罗斯联邦,la Fédération de Russie,Российская Федерация,643.0,151.0,150.0,الاتحاد الروسي,2,الاتحاد الروسي,俄罗斯联邦,,,Federación de Rusia,the Russian Federation,俄罗斯联邦,Russian Federation,RUSSIAN FEDERATION,,Europe,الاتحاد الروسي,Eastern Europe,Российская Федерация,World,Moscow,EU,.ru,"ru,tt,xal,cau,ady,kv,ce,tyv,cv,udm,tut,mns,bua,myv,mdf,chm,ba,inh,tut,kbd,krc,av,sah,nog",2017370.0,Russia,1Z

+ si,0.06387162868277314,0.027053265435207655,SVN,386,SVN,xv,Yes,705.0,224,SI,LJ,si,SVN,SLO,SLO,la República de Eslovenia,True,,Slovénie,Slovénie (la),Euro,Developed,Республика Словения,Slovenia,EUR,,Eslovenia,978,斯洛文尼亚共和国,la République de Slovénie,Словения,705.0,39.0,150.0,سلوفينيا,2,جمهورية سلوفينيا,斯洛文尼亚,,,Eslovenia,the Republic of Slovenia,斯洛文尼亚,Slovenia,SLOVENIA,,Europe,سلوفينيا,Southern Europe,Словения,World,Ljubljana,EU,.si,"sl,sh",3190538.0,Slovenia,2A

+ sk,0.30464506895788396,0.22793777248701474,SVK,421,SVK,xo,Yes,703.0,223,LO,SQ,sk,SVK,SVK,SK,la República Eslovaca,True,,Slovaquie,Slovaquie (la),Euro,Developed,Словацкая Республика,Slovakia,EUR,,Eslovaquia,978,斯洛伐克共和国,la République slovaque,Словакия,703.0,151.0,150.0,سلوفاكيا,2,الجمهورية السلوفاكية,斯洛伐克,,,Eslovaquia,the Slovak Republic,斯洛伐克,Slovakia,SLOVAKIA,,Europe,سلوفاكيا,Eastern Europe,Словакия,World,Bratislava,EU,.sk,"sk,hu",3057568.0,Slovakia,2B

+ sl,0.31261422195223654,0.2824495893723493,SLE,232,SLE,sl,Yes,694.0,221,SL,SL,sl,SRL,SLE,WAL,la República de Sierra Leona,True,11.0,Sierra Leone,Sierra Leone (la),Leone,Developing,Республика Сьерра-Леоне,Sierra Leone,SLL,,Sierra Leona,694,塞拉利昂共和国,la République de Sierra Leone,Сьерра-Леоне,694.0,202.0,2.0,سيراليون,2,جمهورية سيراليون,塞拉利昂,,Western Africa,Sierra Leona,the Republic of Sierra Leone,塞拉利昂,Sierra Leone,SIERRA LEONE,x,Africa,سيراليون,Sub-Saharan Africa,Сьерра-Леоне,World,Freetown,AF,.sl,"en-SL,men,tem",2403846.0,Sierra Leone,T8

+ sq,0.12152443513222719,0.07929446318256354,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ sr,0.39170858022435123,0.3571485500426483,SUR,597,SUR,sr,Yes,740.0,233,NS,SM,sr,SUR,SUR,SME,la República de Suriname,True,5.0,Suriname,Suriname (le),Surinam Dollar,Developing,Республика Суринам,Suriname,SRD,x,Suriname,968,苏里南共和国,la République du Suriname,Суринам,740.0,419.0,19.0,سورينام,2,جمهورية سورينام,苏里南,,South America,Suriname,the Republic of Suriname,苏里南,Suriname,SURINAME,,Americas,سورينام,Latin America and the Caribbean,Суринам,World,Paramaribo,SA,.sr,"nl-SR,en,srn,hns,jv",3382998.0,Suriname,V3

+ sr@ije,0.019948622644132018,0.017949591915985396,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ sr@latin,0.26122142198930237,0.21591993990235828,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ sv,0.7254245839103419,0.7140986964712984,SLV,503,SLV,es,Yes,222.0,75,ES,ES,sv,SLV,ESA,ES,la República de El Salvador,True,13.0,El Salvador,El Salvador [masc.],"El Salvador Colon,US Dollar",Developing,Республика Эль-Сальвадор,El Salvador,"SVC,USD",,El Salvador,"222,840",萨尔瓦多共和国,la République d'El Salvador,Сальвадор,222.0,419.0,19.0,السلفادور,"2,2",جمهورية السلفادور,萨尔瓦多,,Central America,El Salvador,the Republic of El Salvador,萨尔瓦多,El Salvador,EL SALVADOR,,Americas,السلفادور,Latin America and the Caribbean,Сальвадор,World,San Salvador,,.sv,es-SV,3585968.0,El Salvador,H3

+ ta,0.2735046255064376,0.21766572212980345,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ te,0.22506679571066002,0.1732487489549895,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ tg,0.07147012339831865,0.04719971104294166,TOG,228,TGO,tg,Yes,768.0,243,TO,TG,tg,TGO,TOG,TG,la República Togolesa,True,11.0,Togo,Togo (le),CFA Franc BCEAO,Developing,Тоголезская Республика,Togo,XOF,,Togo (el),952,多哥共和国,la République togolaise,Того,768.0,202.0,2.0,توغو,0,جمهورية توغو,多哥,,Western Africa,Togo,the Togolese Republic,多哥,Togo,TOGO,x,Africa,توغو,Sub-Saharan Africa,Того,World,Lome,AF,.tg,"fr-TG,ee,hna,kbp,dag,ha",2363686.0,Togo,W2

+ th,0.1491178847767556,0.09526595410941366,THA,66,THA,th,Yes,764.0,240,TH,TH,th,THA,THA,T,el Reino de Tailandia,True,,Thaïlande,Thaïlande (la),Baht,Developing,Королевство Таиланд,Thailand,THB,,Tailandia,764,泰王国,le Royaume de Thaïlande,Таиланд,764.0,35.0,142.0,تايلند,2,مملكة تايلند,泰国,,,Tailandia,the Kingdom of Thailand,泰国,Thailand,THAILAND,,Asia,تايلند,South-eastern Asia,Таиланд,World,Bangkok,AS,.th,"th,en",1605651.0,Thailand,W1

+ tk,0.016612698134868133,0.01031190065574938,TKL,690,TKL,tl,Territory of NZ,772.0,244,TL,TK,tk,TKL, ,NZ,,True,,Tokélaou,,New Zealand Dollar,Developing,,,NZD,,,554,,,,772.0,61.0,9.0,توكيلاو,2,,,,,Tokelau,,托克劳,Tokelau,TOKELAU,,Oceania,,Polynesia,Токелау,World,,OC,.tk,"tkl,en-TK",4031074.0,Tokelau,W3

+ tr,0.4212685779592173,0.3225169448556656,TUR,90,TUR,tu,Yes,792.0,249,TU,TU,tr,TUR,TUR,TR,la República de Turquía,True,,Turquie,Turquie (la),Turkish Lira,Developing,Турецкая Республика,Turkey,TRY,,Turquía,949,土耳其共和国,la République turque,Турция,792.0,145.0,142.0,تركيا,2,جمهورية تركيا,土耳其,,,Turquía,the Republic of Turkey,土耳其,Turkey,TURKEY,,Asia,تركيا,Western Asia,Турция,World,Ankara,AS,.tr,"tr-TR,ku,diq,az,av",298795.0,Turkey,W8

+ ug,0.14724914928776983,0.09556101589433397,UGA,256,UGA,ug,Yes,800.0,253,UG,UG,ug,UGA,UGA,EAU,la República de Uganda,True,14.0,Ouganda,Ouganda (l') [masc.],Uganda Shilling,Developing,Республика Уганда,Uganda,UGX,,Uganda,800,乌干达共和国,la République de l'Ouganda,Уганда,800.0,202.0,2.0,أوغندا,0,جمهورية أوغندا,乌干达,x,Eastern Africa,Uganda,the Republic of Uganda,乌干达,Uganda,UGANDA,x,Africa,أوغندا,Sub-Saharan Africa,Уганда,World,Kampala,AF,.ug,"en-UG,lg,sw,ar",226074.0,Uganda,W9

+ uk,0.628461407780735,0.5354074141904369,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ uz,0.02528198343363415,0.013028503985877732,UZB,998,UZB,uz,Yes,860.0,261,UZ,UZ,uz,UZB,UZB,UZ,la República de Uzbekistán,True,,Ouzbékistan,Ouzbékistan (l') [masc.],Uzbekistan Sum,Developing,Республика Узбекистан,Uzbekistan,UZS,,Uzbekistán,860,乌兹别克斯坦共和国,la République d'Ouzbékistan,Узбекистан,860.0,143.0,142.0,أوزبكستان,2,جمهورية أوزبكستان,乌兹别克斯坦,x,,Uzbekistán,the Republic of Uzbekistan,乌兹别克斯坦,Uzbekistan,UZBEKISTAN,,Asia,أوزبكستان,Central Asia,Узбекистан,World,Tashkent,AS,.uz,"uz,ru,tg",1512440.0,Uzbekistan,2K

+ uz@cyrillic,0.02553938501613908,0.01374072208740951,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ vi,0.4402699627797312,0.3770541981017692,VIR,1-340,VIR,vi,Territory of US,850.0,258,VQ,VI,vi,VIR,ISV,USA,,True,29.0,Îles Vierges américaines,,US Dollar,Developing,,,USD,x,,840,,,,850.0,419.0,19.0,جزر فرجن التابعة للولايات المتحدة,2,,,,Caribbean,Islas Vírgenes de los Estados Unidos,,美属维尔京群岛,United States Virgin Islands,VIRGIN ISLANDS (U.S.),,Americas,,Latin America and the Caribbean,Виргинские oстрова Coeдинeнныx Штaтoв,World,Charlotte Amalie,,.vi,en-VI,4796775.0,U.S. Virgin Islands,

+ wa,0.0334622057256408,0.016363210882692592,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ xh,0.053127686629017394,0.04168680378560879,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ zh_cn,0.5293412063897369,0.5232607040445509,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ zh_hk,0.1756353958064134,0.12884873335402158,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ zh_tw,0.33623853919453894,0.28640409559323526,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ zu,0.019768441536378564,0.014196032945174467,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

@@ -0,0 +1,337 @@ 

+ territory,population,officialstatus,language,language_population,message_progress_percentage,words_progress_percentage

+ af,34940837,official,ps,0.43,0.02855098353144675,0.012678330085957942

+ af,34940837,official,fa,0.5,0.13722078363337778,0.08181520653477066

+ af,34940837,official_regional,tk,0.016685347291480166,0.016612698134868133,0.01031190065574938

+ af,34940837,official_regional,uz_Arab,0.047,,

+ ax,26200,official,sv,0.99,0.7254245839103419,0.7140986964712984

+ al,3057220,official,sq,1.0,0.12152443513222719,0.07929446318256354

+ dz,41657488,official,ar,0.74,0.16253365525691252,0.10852508109959692

+ dz,41657488,official,fr,0.2,0.7278287146909379,0.708389081357352

+ as,50826,official,sm,0.99,,

+ ad,85708,official,ca,0.51,0.4470756606211615,0.4248575987736283

+ ao,30355880,official,pt,0.67,0.3396465361469042,0.31882782466546944

+ ar,44694198,official,es,1.0,0.6458771988530185,0.6748241075652824

+ am,3038217,official,hy,0.98,0.04396419029184191,0.03561005719789658

+ aw,116576,official,nl,0.97,0.44784786536867627,0.3793621239022091

+ aw,116576,official,pap,0.61,,

+ at,8793370,official_regional,hr,0.012395702671444509,0.2629614566870357,0.20699516878721128

+ at,8793370,official,de,0.97,0.7501145437042147,0.7391272275892944

+ az,10046516,official,az,0.89,0.06477253422154039,0.04206156616760527

+ az,10046516,official,az_Cyrl,0.099,,

+ bh,1442659,official,ar,0.87,0.16253365525691252,0.10852508109959692

+ bd,159453001,official,bn,0.98,0.15041518875258045,0.09497343596057024

+ by,9527543,official,be,1.0,0.18177184953333092,0.11300103271624722

+ by,9527543,official,ru,0.12,0.5654289082569279,0.574721853394991

+ be,11570762,official,nl,0.55,0.44784786536867627,0.3793621239022091

+ be,11570762,official,fr,0.38,0.7278287146909379,0.708389081357352

+ be,11570762,official,de,0.22,0.7501145437042147,0.7391272275892944

+ bj,11340504,official,fr,0.35,0.7278287146909379,0.708389081357352

+ bt,766397,official,dz,0.47,0.12030435163115383,0.07598858416128687

+ bo,11306341,official,ay,0.2,,

+ bo,11306341,official,qu,0.32,,

+ bo,11306341,official,es,0.61,0.6458771988530185,0.6748241075652824

+ ba,3849891,official,bs,0.99,0.21066260315368418,0.1563445914666097

+ ba,3849891,official,bs_Cyrl,0.99,,

+ ba,3849891,official,hr,0.12,0.2629614566870357,0.20699516878721128

+ ba,3849891,official,sr,0.1,0.39170858022435123,0.3571485500426483

+ ba,3849891,official,sr_Latn,0.1,,

+ bw,2249104,official,tn,0.62,,

+ br,208846892,official,pt,0.91,0.4743756724616343,0.48682311724296984

+ bn,450565,official,ms,0.93,0.11473418138574716,0.072696271199087

+ bn,450565,official,ms_Arab,0.05,,

+ bg,7057504,official,bg,1.0,0.2899886228500533,0.24302323018041164

+ bf,19742715,official,fr,0.22,0.7278287146909379,0.708389081357352

+ bi,11844520,official,fr,0.59,0.7278287146909379,0.708389081357352

+ bi,11844520,official,rn,0.63,,

+ kh,16449519,official,km,0.89,0.07326163841255295,0.057537048059460034

+ cm,25640965,official,fr,0.68,0.7278287146909379,0.708389081357352

+ ca,35881659,official,fr,0.22,0.7278287146909379,0.708389081357352

+ ic,2098593,official,es,0.98,0.6458771988530185,0.6748241075652824

+ cv,568373,recognized,kea,0.91,,

+ cv,568373,official,pt,0.76,0.3396465361469042,0.31882782466546944

+ bq,20000,official,nl,0.08,0.44784786536867627,0.3793621239022091

+ bq,20000,recognized,pap,0.81,,

+ cf,5745062,official,fr,0.49,0.7278287146909379,0.708389081357352

+ cf,5745062,official,sg,0.49,,

+ ea,150000,official,es,0.98,0.6458771988530185,0.6748241075652824

+ td,15833116,official,ar,0.17,0.16253365525691252,0.10852508109959692

+ td,15833116,official,fr,0.26,0.7278287146909379,0.708389081357352

+ cl,17925262,official,es,0.98,0.6458771988530185,0.6748241075652824

+ cn,1384688986,official,zh,0.9,0.5293412063897369,0.5232607040445509

+ co,48168996,official,es,0.93,0.6458771988530185,0.6748241075652824

+ km,821164,official,ar,0.66,0.16253365525691252,0.10852508109959692

+ km,821164,official,fr,0.56,0.7278287146909379,0.708389081357352

+ km,821164,official,wni,0.34,,

+ km,821164,official,zdj,0.37,,

+ cg,5062021,official,fr,0.84,0.7278287146909379,0.708389081357352

+ cg,5062021,recognized,ln,0.023903496251793502,,

+ cd,85281024,official,fr,0.038,0.7278287146909379,0.708389081357352

+ cd,85281024,official_regional,kg,0.015243719399992195,,

+ cd,85281024,official_regional,ln,0.031,,

+ cd,85281024,official_regional,lua,0.096,,

+ cd,85281024,official_regional,sw,0.5,,

+ cr,4987142,official,es,0.95,0.6458771988530185,0.6748241075652824

+ ci,26260582,official,fr,0.49,0.7278287146909379,0.708389081357352

+ hr,4270480,official,hr,0.99,0.2629614566870357,0.20699516878721128

+ hr,4270480,official_regional,it,0.015525186864240086,0.5191429556908916,0.4385983208610378

+ cu,11116396,official,es,1.0,0.6458771988530185,0.6748241075652824

+ cw,150241,official,nl,0.08,0.44784786536867627,0.3793621239022091

+ cw,150241,de_facto_official,pap,0.81,,

+ cy,1237088,official,el,0.95,0.307100680054981,0.3048827638132157

+ cy,1237088,official,tr,0.23,0.4212685779592173,0.3225169448556656

+ cz,10686269,official,cs,0.98,0.4680281494370627,0.4702411536576639

+ dk,5809502,official,da,0.93,0.4783705450221108,0.3954362081508274

+ dk,5809502,official_regional,de,0.47,0.7501145437042147,0.7391272275892944

+ dj,884017,official,ar,0.073,0.16253365525691252,0.10852508109959692

+ dj,884017,official,fr,0.0214927993466189,0.7278287146909379,0.708389081357352

+ do,10298756,official,es,0.78,0.6458771988530185,0.6748241075652824

+ ec,16498502,official,qu,0.17,,

+ ec,16498502,official,es,0.96,0.6458771988530185,0.6748241075652824

+ eg,99413317,official,ar,0.94,0.16253365525691252,0.10852508109959692

+ sv,6187271,official,es,0.89,0.6458771988530185,0.6748241075652824

+ gq,797457,official,fr,0.08800000000000001,0.7278287146909379,0.708389081357352

+ gq,797457,official,es,0.87,0.6458771988530185,0.6748241075652824

+ er,5970646,official,ar,0.049,0.16253365525691252,0.10852508109959692

+ er,5970646,de_facto_official,ti,0.6,,

+ ee,1244288,official,et,0.71,0.16565851046852237,0.10644353891000106

+ sz,1087200,official,ss,0.58,,

+ et,108386391,official,am,0.33,,

+ fo,51018,official,fo,0.95,,

+ fj,926276,official,hif,0.41,,

+ fj,926276,official,fj,0.39,,

+ fi,5537364,official,fi,0.94,0.3665604456136196,0.30473099352729405

+ fi,5537364,official,sv,0.44,0.7254245839103419,0.7140986964712984

+ fr,67364357,official,fr,0.99,0.7278287146909379,0.708389081357352

+ gf,199509,official,fr,0.77,0.7278287146909379,0.708389081357352

+ pf,290373,official,fr,0.61,0.7278287146909379,0.708389081357352

+ pf,290373,official,ty,0.31,,

+ ga,2119036,official,fr,0.63,0.7278287146909379,0.708389081357352

+ ge,4926087,official_regional,ab,0.022330096890290408,,

+ ge,4926087,official,ka,0.86,0.10055135418972556,0.055516553135709766

+ ge,4926087,official_regional,os,0.022127096009469584,,

+ de,80457737,official,de,0.91,0.7501145437042147,0.7391272275892944

+ gh,28102471,official_regional,ak,0.39,,

+ gh,28102471,official_regional,ee,0.11,,

+ gh,28102471,official_regional,gaa,0.028467247595416075,,

+ gr,10761523,official,el,0.99,0.307100680054981,0.3048827638132157

+ gl,57691,official,kl,0.84,,

+ gp,452776,official,fr,0.9,0.7278287146909379,0.708389081357352

+ gu,167772,official,ch,0.22,,

+ gt,16581273,official_regional,quc,0.07,,

+ gt,16581273,official,es,0.93,0.6458771988530185,0.6748241075652824

+ gn,11855411,official,fr,0.29,0.7278287146909379,0.708389081357352

+ gw,1833247,official,pt,1.0,0.3396465361469042,0.31882782466546944

+ ht,10788440,official,fr,0.047,0.7278287146909379,0.708389081357352

+ ht,10788440,official,ht,0.81,,

+ hn,9182766,official,es,0.78,0.6458771988530185,0.6748241075652824

+ hk,7213338,official,zh_Hant,0.95,,

+ hu,9825704,official,hu,1.0,0.3972427142482072,0.3745029311166393

+ is,343518,official,is,1.0,0.13854897579910322,0.06643468705645346

+ in,1296834042,official_regional,as,0.013031736870460716,0.2335816400599231,0.1924718546668091

+ in,1296834042,official_regional,bn,0.081,0.1782660399796138,0.12891910728548245

+ in,1296834042,official_regional,gu,0.045,0.22789821311821426,0.18847410663261585

+ in,1296834042,official,hi,0.41,0.2108942645779386,0.16031266374657244

+ in,1296834042,official_regional,kn,0.037000000000000005,0.24031526545825205,0.15739596104506137

+ in,1296834042,official_regional,mai,0.011952184703676988,0.09626304382519343,0.05651026696308506

+ in,1296834042,official_regional,ml,0.032,0.2014888107532085,0.14357553836057568

+ in,1296834042,official_regional,mr,0.07,0.26969508208536463,0.2113642876886318

+ in,1296834042,official_regional,or,0.032,0.21708219862135714,0.15019068791789822

+ in,1296834042,official_regional,pa,0.027991245467320944,0.2834712147810285,0.18483670704264998

+ in,1296834042,official_regional,ta,0.059000000000000004,0.2735046255064376,0.21766572212980345

+ in,1296834042,official_regional,te,0.07200000000000001,0.22506679571066002,0.1732487489549895

+ in,1296834042,official_regional,ur,0.05,,

+ id,262787403,official,id,0.64,0.449762933142513,0.3744876693001779

+ ir,83024745,official,fa,0.75,0.13722078363337778,0.08181520653477066

+ iq,40194216,official,ar,0.68,0.16253365525691252,0.10852508109959692

+ iq,40194216,official_regional,az_Arab,0.018410609128437783,,

+ iq,40194216,official_regional,ckb,0.2,,

+ ie,5068050,official,ga,0.22,0.08855644044499586,0.04935925807222909

+ im,89407,official,gv,0.018902323084322256,0.014069570499719432,0.011002073911281366

+ il,8424904,official,ar,0.2,0.16253365525691252,0.10852508109959692

+ il,8424904,official,he,1.0,0.18636904179686897,0.12764559348964824

+ it,62246674,official_regional,fr,0.063,0.7278287146909379,0.708389081357352

+ it,62246674,recognized,de,0.016000854921180207,0.7501145437042147,0.7391272275892944

+ it,62246674,official,it,0.95,0.5191429556908916,0.4385983208610378

+ it,62246674,recognized,sc,0.017029022305673713,,

+ jp,126168156,official,ja,0.95,0.4447950826001678,0.3942737664636845

+ jo,10458413,official,ar,1.0,0.16253365525691252,0.10852508109959692

+ kz,18744548,official,kk,0.64,0.11433263491703947,0.06555713260992323

+ kz,18744548,official,ru,0.72,0.5654289082569279,0.574721853394991

+ ke,48397527,official,sw,0.66,,

+ ki,109367,official,gil,0.6,,

+ xk,1907592,official,sq,0.92,0.12152443513222719,0.07929446318256354

+ xk,1907592,official,sr,0.05,0.39170858022435123,0.3571485500426483

+ xk,1907592,official,sr_Latn,0.05,,

+ kw,2916467,official,ar,1.0,0.16253365525691252,0.10852508109959692

+ kg,5849296,official,ky,0.48,0.054244809497088785,0.019364701453433653

+ kg,5849296,official,ru,0.36,0.5654289082569279,0.574721853394991

+ la,7234171,official,lo,0.69,,

+ lv,1923559,official,lv,0.61,0.2295455832462458,0.20760648932435938

+ lb,6100075,official,ar,0.86,0.16253365525691252,0.10852508109959692

+ ls,1962461,official,st,0.98,,

+ ly,6754507,official,ar,0.74,0.16253365525691252,0.10852508109959692

+ li,38547,official,de,1.0,0.7501145437042147,0.7391272275892944

+ li,38547,de_facto_official,gsw,0.85,,

+ lt,2793284,official,lt,0.86,0.2675329087923233,0.1892965489641466

+ lu,605764,official,fr,0.87,0.7278287146909379,0.708389081357352

+ lu,605764,official,de,0.63,0.7501145437042147,0.7391272275892944

+ lu,605764,official,lb,0.67,,

+ mo,606340,official,zh_Hant,0.98,,

+ mo,606340,official,pt,0.05,0.3396465361469042,0.31882782466546944

+ mg,25683610,official,fr,0.69,0.7278287146909379,0.708389081357352

+ mg,25683610,official,mg,0.9,0.06043274354050729,0.034318737949524086

+ mw,19842560,official,ny,0.63,,

+ my,31809660,official,ms,0.75,0.11473418138574716,0.072696271199087

+ mv,392473,official,dv,0.94,,

+ ml,18429893,official,fr,0.46,0.7278287146909379,0.708389081357352

+ mt,449043,official,mt,1.0,,

+ mh,75684,official,mh,0.73,,

+ mq,436131,official,fr,0.98,0.7278287146909379,0.708389081357352

+ mr,3840429,official,ar,0.85,0.16253365525691252,0.10852508109959692

+ mu,1364283,official,fr,0.03,0.7278287146909379,0.708389081357352

+ yt,194000,official,fr,0.57,0.7278287146909379,0.708389081357352

+ mx,125959205,de_facto_official,es,0.83,0.6458771988530185,0.6748241075652824

+ md,3437720,recognized,gag,0.033,,

+ md,3437720,official,ro,0.63,0.2531493083619478,0.20128301003718796

+ md,3437720,recognized,ru,0.029961718813632292,0.5654289082569279,0.574721853394991

+ md,3437720,recognized,uk,0.14,0.628461407780735,0.5354074141904369

+ mc,30727,official,fr,0.99,0.7278287146909379,0.708389081357352

+ mn,3103428,official,mn,0.93,0.05926928838758501,0.037475390320956

+ me,614249,official,sr_Latn,1.0,,

+ ma,34314130,official,ar,0.62,0.16253365525691252,0.10852508109959692

+ ma,34314130,official,tzm,0.098,,

+ ma,34314130,de_facto_official,fr,0.2,0.7278287146909379,0.708389081357352

+ mz,27233789,official,pt,0.27,0.3396465361469042,0.31882782466546944

+ mm,55622506,official,my,0.64,0.04272866269581825,0.03055246079832866

+ nr,9692,official,na,0.7108955839867932,,

+ np,29717587,official,ne,0.44,0.10456167084515236,0.05794911710391771

+ nl,17151228,official,nl,1.0,0.44784786536867627,0.3793621239022091

+ nl,17151228,official_regional,fy,0.043,,

+ nc,282754,official,fr,0.96,0.7278287146909379,0.708389081357352

+ nz,4545627,official,mi,0.02837892330364986,,

+ ni,6085213,official,es,0.78,0.6458771988530185,0.6748241075652824

+ ne,19866231,official,fr,0.29,0.7278287146909379,0.708389081357352

+ ng,203452505,official,yo,0.13,,

+ nu,1618,official,niu,0.6983930778739185,,

+ kp,25381085,official,ko,0.88,0.3045112201349814,0.2854409053987828

+ mk,2118945,official_regional,sq,0.25,0.12152443513222719,0.07929446318256354

+ mk,2118945,official,mk,0.67,0.1392851443250673,0.09205334174428996

+ no,5372191,official,nb,1.0,0.24171553006707885,0.176189192259885

+ no,5372191,official,nn,0.25,0.13041508579194744,0.08288353368706833

+ om,3494116,official,ar,0.81,0.16253365525691252,0.10852508109959692

+ pk,207862518,official,ur,0.95,,

+ pw,21516,official,pau,0.74,,

+ ps,4635207,official,ar,1.0,0.16253365525691252,0.10852508109959692

+ pa,3800644,official,es,0.69,0.6458771988530185,0.6748241075652824

+ pg,7027332,official,ho,0.02148752897970382,,

+ pg,7027332,official,tpi,0.71,,

+ py,7025763,official,gn,0.8,,

+ py,7025763,official,es,0.032,0.6458771988530185,0.6748241075652824

+ pe,31331228,official,qu,0.15,,

+ pe,31331228,official,es,0.73,0.6458771988530185,0.6748241075652824

+ ph,105893381,official_regional,ceb,0.24,,

+ ph,105893381,official,fil,0.6,,

+ ph,105893381,official_regional,hil,0.084,,

+ ph,105893381,official_regional,ilo,0.096,,

+ ph,105893381,official_regional,mdh,0.01208762991522577,,

+ ph,105893381,official_regional,pag,0.013976322089479794,,

+ ph,105893381,official_regional,tsg,0.010859980001960652,,

+ ph,105893381,official_regional,war,0.029369163309650108,,

+ pl,38420687,official_regional,de,0.19,0.7501145437042147,0.7391272275892944

+ pl,38420687,official,pl,0.96,0.5549423677856772,0.5209977158148029

+ pt,10355493,official,pt,0.96,0.3396465361469042,0.31882782466546944

+ pr,3294626,official,es,0.87,0.6458771988530185,0.6748241075652824

+ qa,2363569,official,ar,0.89,0.16253365525691252,0.10852508109959692

+ re,787584,official,fr,0.89,0.7278287146909379,0.708389081357352

+ ro,21457116,official,ro,0.9,0.2531493083619478,0.20128301003718796

+ ru,142122776,official_regional,ba,0.012594744138687525,,

+ ru,142122776,official,ru,0.94,0.5654289082569279,0.574721853394991

+ ru,142122776,official_regional,tt,0.014213063217960223,,

+ rw,12187400,official,rw,0.77,,

+ ws,201316,official,sm,1.0,,

+ sm,33779,official,it,0.89,0.5191429556908916,0.4385983208610378

+ st,204454,official,pt,0.85,0.3396465361469042,0.31882782466546944

+ sa,33091113,official,ar,1.0,0.16253365525691252,0.10852508109959692

+ sn,15020945,official,fr,0.39,0.7278287146909379,0.708389081357352

+ sn,15020945,official_regional,ff,0.21,,

+ sn,15020945,official_regional,dyo,0.026429761909120896,,

+ sn,15020945,official_regional,sav,0.014646215667522916,,

+ sn,15020945,official_regional,srr,0.11,,

+ sn,15020945,de_facto_official,wo,0.7,,

+ rs,7078110,official_regional,hu,0.048,0.3972427142482072,0.3745029311166393

+ rs,7078110,official_regional,ro,0.021192097890538577,0.2531493083619478,0.20128301003718796

+ rs,7078110,official,sr,0.99,0.39170858022435123,0.3571485500426483

+ rs,7078110,official,sr_Latn,0.99,,

+ sc,94633,official,fr,0.6,0.7278287146909379,0.708389081357352

+ sg,5995991,official,zh,0.77,,

+ sg,5995991,official,ms,0.14,0.11473418138574716,0.072696271199087

+ sg,5995991,official,ta,0.02084726277941378,0.2735046255064376,0.21766572212980345

+ sx,42677,official,nl,0.037256601916723295,0.44784786536867627,0.3793621239022091

+ sk,5445040,official,sk,0.9,0.30464506895788396,0.22793777248701474

+ si,2102126,official,sl,0.87,0.31261422195223654,0.2824495893723493

+ so,11259029,official,ar,0.34,0.16253365525691252,0.10852508109959692

+ so,11259029,official,so,0.78,,

+ za,55380210,official_regional,af,0.13,0.09524373355847392,0.06171624213380543

+ za,55380210,official_regional,nso,0.094,0.022790336114986435,0.018291287028982188

+ za,55380210,official_regional,nr,0.01599849476916032,,

+ za,55380210,official_regional,st,0.079,,

+ za,55380210,official_regional,ss,0.027085487758172096,,

+ za,55380210,official_regional,ts,0.044000000000000004,,

+ za,55380210,official_regional,tn,0.08199999999999999,,

+ za,55380210,official_regional,ve,0.022932379635252378,,

+ za,55380210,official_regional,xh,0.18,0.053127686629017394,0.04168680378560879

+ za,55380210,official_regional,zu,0.24,0.019768441536378564,0.014196032945174467

+ kr,51418097,official,ko,1.0,0.3045112201349814,0.2854409053987828

+ es,49331076,official_regional,ast,0.013297905766336823,0.18613223234096443,0.10503606028078351

+ es,49331076,official_regional,eu,0.019987401045134308,0.24313638680250607,0.19554032765424184

+ es,49331076,official_regional,ca,0.17,0.4470756606211615,0.4248575987736283

+ es,49331076,official_regional,gl,0.07,0.35515240747700116,0.2832075929232653

+ es,49331076,official,es,0.99,0.6458771988530185,0.6748241075652824

+ lk,22576592,official,si,0.68,0.06387162868277314,0.027053265435207655

+ lk,22576592,official,ta,0.15,0.2735046255064376,0.21766572212980345

+ bl,7160,official,fr,0.9567039106145251,0.7278287146909379,0.708389081357352

+ mf,32284,official,fr,1.0,0.7278287146909379,0.708389081357352

+ pm,5471,official,fr,0.9340157192469384,0.7278287146909379,0.708389081357352

+ sd,43120843,official,ar,0.61,0.16253365525691252,0.10852508109959692

+ sr,597927,official,nl,0.9,0.44784786536867627,0.3793621239022091

+ sj,2583,official,nb,0.5807200929152149,0.24171553006707885,0.176189192259885

+ se,10040995,official_regional,fi,0.02200977094401501,0.3665604456136196,0.30473099352729405

+ se,10040995,official,sv,0.95,0.7254245839103419,0.7140986964712984

+ ch,8292809,official,fr,0.21,0.7278287146909379,0.708389081357352

+ ch,8292809,official,de,0.73,0.7501145437042147,0.7391272275892944

+ ch,8292809,official,it,0.043,0.5191429556908916,0.4385983208610378

+ ch,8292809,de_facto_official,gsw,0.65,,

+ sy,19454263,official,ar,0.8,0.16253365525691252,0.10852508109959692

+ sy,19454263,official,fr,0.059000000000000004,0.7278287146909379,0.708389081357352

+ tw,23545963,official,zh_Hant,0.95,,

+ tj,8604882,official,tg,1.0,0.07147012339831865,0.04719971104294166

+ tz,55451343,official,sw,0.9,,

+ th,68615858,official,th,0.8,0.1491178847767556,0.09526595410941366

+ tl,1321929,official,pt,0.59,0.3396465361469042,0.31882782466546944

+ tl,1321929,official,tet,0.59,,

+ tg,8176449,official,fr,0.61,0.7278287146909379,0.708389081357352

+ tk,1285,official,tkl,1.0,,

+ to,106398,official,to,0.95,,

+ tn,11516189,official,ar,0.9,0.16253365525691252,0.10852508109959692

+ tn,11516189,official,fr,0.74,0.7278287146909379,0.708389081357352

+ tr,81257239,official,tr,0.93,0.4212685779592173,0.3225169448556656

+ tm,5411012,official,tk,0.7,0.016612698134868133,0.01031190065574938

+ tv,11147,official,tvl,0.8899255405041715,,

+ ug,40853749,official,sw,0.75,,

+ ua,43952299,de_facto_official,ru,0.46,0.5654289082569279,0.574721853394991

+ ua,43952299,official,uk,0.65,0.628461407780735,0.5354074141904369

+ ae,9701315,official,ar,0.78,0.16253365525691252,0.10852508109959692

+ us,329256465,official_regional,es,0.096,0.6458771988530185,0.6748241075652824

+ uy,3369299,official,es,0.88,0.6458771988530185,0.6748241075652824

+ uz,30023709,official,uz,0.85,0.02528198343363415,0.013028503985877732

+ uz,30023709,official,uz_Cyrl,0.15,,

+ vu,288037,official,bi,0.9,,

+ vu,288037,official,fr,0.5,0.7278287146909379,0.708389081357352

+ va,1000,de_facto_official,it,0.824,0.5191429556908916,0.4385983208610378

+ ve,31689176,official,es,0.82,0.6458771988530185,0.6748241075652824

+ vn,97040334,official,vi,0.86,0.4402699627797312,0.3770541981017692

+ wf,15763,official,fr,0.4834105183023536,0.7278287146909379,0.708389081357352

+ eh,619551,official,ar,1.0,0.16253365525691252,0.10852508109959692

+ ye,28667230,official,ar,0.74,0.16253365525691252,0.10852508109959692

+ zw,14030368,official,nd,0.12,,

+ zw,14030368,official,sn,0.81,,

@@ -0,0 +1,206 @@ 

+ territory,nb_lang,population,message_coverage,words_coverage

+ ad,1.0,85708.0,0.22800858691679238,0.21667737537455042

+ ae,1.0,9701315.0,0.12677625110039176,0.0846495632576856

+ af,4.0,34940837.0,0.08116450337303979,0.04653134284802367

+ al,1.0,3057220.0,0.12152443513222719,0.07929446318256354

+ am,1.0,3038217.0,0.043084906486005076,0.03489785605393865

+ ao,1.0,30355880.0,0.22756317921842584,0.21361464252586454

+ ar,1.0,44694198.0,0.6458771988530185,0.6748241075652824

+ as,1.0,50826.0,0.0,0.0

+ at,2.0,8793370.0,0.7308706994242307,0.7195192613283273

+ aw,2.0,116576.0,0.434412429407616,0.3679812601851428

+ ax,1.0,26200.0,0.7181703380712385,0.7069577095065854

+ az,2.0,10046516.0,0.05764755545717095,0.03743479388916869

+ ba,5.0,3849891.0,0.27928220994702674,0.21533542081067378

+ bd,1.0,159453001.0,0.14740688497752882,0.09307396724135884

+ be,3.0,11570762.0,0.6879164371502556,0.6404450091316536

+ bf,1.0,19742715.0,0.16012231723200634,0.15584559789861743

+ bg,1.0,7057504.0,0.2899886228500533,0.24302323018041164

+ bh,1.0,1442659.0,0.14140428007351388,0.09441682055664932

+ bi,2.0,11844520.0,0.4294189416676533,0.41794955800083766

+ bj,1.0,11340504.0,0.25474005014182827,0.24793617847507318

+ bl,1.0,7160.0,0.6963165776023638,0.6777186043712097

+ bn,2.0,450565.0,0.10670278868874486,0.06760753221515092

+ bo,3.0,11306341.0,0.3939850913003413,0.4116427056148223

+ bq,2.0,20000.0,0.0358278292294941,0.030348969912176726

+ br,1.0,208846892.0,0.43168186194008723,0.4430090366911026

+ bt,1.0,766397.0,0.0565430452666423,0.03571463455580483

+ bw,1.0,2249104.0,0.0,0.0

+ by,2.0,9527543.0,0.24962331852416225,0.18196765512364615

+ ca,1.0,35881659.0,0.16012231723200634,0.15584559789861743

+ cd,5.0,85281024.0,0.02765749115825564,0.026918785091579377

+ cf,2.0,5745062.0,0.3566360701985596,0.3471106498651025

+ cg,2.0,5062021.0,0.6113761203403878,0.5950468283401756

+ ch,4.0,8292809.0,0.722750794083882,0.7071843110222534

+ ci,1.0,26260582.0,0.3566360701985596,0.3471106498651025

+ cl,1.0,17925262.0,0.6329596548759582,0.6613276254139768

+ cm,1.0,25640965.0,0.4949235259898378,0.48170457532299943

+ cn,1.0,1384688986.0,0.47640708575076324,0.47093463364009586

+ co,1.0,48168996.0,0.6006657949333073,0.6275864200357127

+ cr,1.0,4987142.0,0.6135833389103675,0.6410829021870182

+ cu,1.0,11116396.0,0.6458771988530185,0.6748241075652824

+ cv,2.0,568373.0,0.2581313674716472,0.24230914674575676

+ cw,2.0,150241.0,0.0358278292294941,0.030348969912176726

+ cy,2.0,1237088.0,0.38863741898285187,0.36381752293935804

+ cz,1.0,10686269.0,0.45866758644832145,0.4608363305845106

+ de,1.0,80457737.0,0.6826042347708354,0.6726057771062579

+ dj,2.0,884017.0,0.027508033357314478,0.023147595305219835

+ dk,2.0,5809502.0,0.7974384424115439,0.7151454705472379

+ do,1.0,10298756.0,0.5037842151053544,0.5263628039009203

+ dz,2.0,41657488.0,0.26584064782830286,0.22198637628517215

+ ea,1.0,150000.0,0.6329596548759582,0.6613276254139768

+ ec,2.0,16498502.0,0.6200421108988977,0.6478311432626711

+ ee,1.0,1244288.0,0.11761754243265088,0.07557491262610075

+ eg,1.0,99413317.0,0.15278163594149777,0.1020135762336211

+ eh,1.0,619551.0,0.16253365525691252,0.10852508109959692

+ er,2.0,5970646.0,0.007964149107588714,0.00531772897388025

+ es,5.0,49331076.0,0.7476167910509105,0.7654312923667784

+ et,1.0,108386391.0,0.0,0.0

+ fi,2.0,5537364.0,0.6637536357973528,0.6006505603630277

+ fj,2.0,926276.0,0.0,0.0

+ fo,1.0,51018.0,0.0,0.0

+ fr,1.0,67364357.0,0.7205504275440285,0.7013051905437785

+ ga,1.0,2119036.0,0.4585320902552909,0.44628512125513176

+ ge,3.0,4926087.0,0.08647416460316398,0.0477442356967104

+ gf,1.0,199509.0,0.5604281103120222,0.5454595926451611

+ gh,3.0,28102471.0,0.0,0.0

+ gl,1.0,57691.0,0.0,0.0

+ gn,1.0,11855411.0,0.21107032726037198,0.20543283359363207

+ gp,1.0,452776.0,0.6550458432218441,0.6375501732216168

+ gq,2.0,797457.0,0.6259620898949286,0.6494352127412427

+ gr,1.0,10761523.0,0.30402967325443114,0.3018339361750836

+ gt,2.0,16581273.0,0.6006657949333073,0.6275864200357127

+ gu,1.0,167772.0,0.0,0.0

+ gw,1.0,1833247.0,0.3396465361469042,0.31882782466546944

+ hk,1.0,7213338.0,0.0,0.0

+ hn,1.0,9182766.0,0.5037842151053544,0.5263628039009203

+ hr,2.0,4270480.0,0.2683916335165203,0.2117345379890487

+ ht,2.0,10788440.0,0.03420794959047408,0.033294286823795545

+ hu,1.0,9825704.0,0.3972427142482072,0.3745029311166393

+ ic,1.0,2098593.0,0.6329596548759582,0.6613276254139768

+ id,1.0,262787403.0,0.2878482772112083,0.23967210835211386

+ ie,1.0,5068050.0,0.01948241689789909,0.0108590367758904

+ il,2.0,8424904.0,0.2188757728482515,0.14935060970956762

+ im,1.0,89407.0,0.00026594756724334604,0.00020796475566863342

+ in,13.0,1296834042.0,0.19679703287641134,0.1483453054444732

+ iq,3.0,40194216.0,0.11052288557470052,0.07379705514772592

+ ir,1.0,83024745.0,0.10291558772503334,0.061361404901078

+ is,1.0,343518.0,0.13854897579910322,0.06643468705645346

+ it,4.0,62246674.0,0.5510414909199546,0.4731235844804495

+ jo,1.0,10458413.0,0.16253365525691252,0.10852508109959692

+ jp,1.0,126168156.0,0.4225553284701594,0.37456007814050024

+ ke,1.0,48397527.0,0.0,0.0

+ kg,2.0,5849296.0,0.22959191553109667,0.21619492391984493

+ kh,1.0,16449519.0,0.06520285818717213,0.051207972772919434

+ ki,1.0,109367.0,0.0,0.0

+ km,4.0,821164.0,0.5148562926964876,0.46832443908585114

+ kp,1.0,25381085.0,0.2679698737187836,0.2511879967509289

+ kr,1.0,51418097.0,0.3045112201349814,0.2854409053987828

+ kw,1.0,2916467.0,0.16253365525691252,0.10852508109959692

+ kz,2.0,18744548.0,0.4802817002918934,0.45575629931474443

+ la,1.0,7234171.0,0.0,0.0

+ lb,1.0,6100075.0,0.13977894352094478,0.09333156974565335

+ li,2.0,38547.0,0.7501145437042147,0.7391272275892944

+ lk,2.0,22576592.0,0.08445840133025137,0.05104607881541172

+ ls,1.0,1962461.0,0.0,0.0

+ lt,1.0,2793284.0,0.23007830156139802,0.16279503210916607

+ lu,3.0,605764.0,1.1057831443147712,1.0819486541621517

+ lv,1.0,1923559.0,0.14002280578020992,0.12663995848785922

+ ly,1.0,6754507.0,0.12027490489011526,0.08030856001370172

+ ma,3.0,34314130.0,0.24633660919747336,0.2089633665532205

+ mc,1.0,30727.0,0.7205504275440285,0.7013051905437785

+ md,4.0,3437720.0,0.2644098833156232,0.2189849888775599

+ me,1.0,614249.0,0.0,0.0

+ mf,1.0,32284.0,0.7278287146909379,0.708389081357352

+ mg,2.0,25683610.0,0.5565912823232038,0.5196753302911445

+ mh,1.0,75684.0,0.0,0.0

+ mk,2.0,2118945.0,0.1237021554808519,0.08149935476431516

+ ml,1.0,18429893.0,0.3348012087578314,0.3258589774243819

+ mm,1.0,55622506.0,0.02734634412532368,0.019553574910930342

+ mn,1.0,3103428.0,0.055120438200454064,0.03485211299848908

+ mo,2.0,606340.0,0.01698232680734521,0.015941391233273473

+ mq,1.0,436131.0,0.7132721403971192,0.694221299730205

+ mr,1.0,3840429.0,0.13815360696837564,0.09224631893465739

+ mt,1.0,449043.0,0.0,0.0

+ mu,1.0,1364283.0,0.021834861440728135,0.02125167244072056

+ mv,1.0,392473.0,0.0,0.0

+ mw,1.0,19842560.0,0.0,0.0

+ mx,1.0,125959205.0,0.5360780750480053,0.5601040092791844

+ my,1.0,31809660.0,0.08605063603931037,0.05452220339931525

+ mz,1.0,27233789.0,0.09170456475966414,0.08608351265967676

+ nc,1.0,282754.0,0.6987155661033003,0.6800535181030579

+ ne,1.0,19866231.0,0.21107032726037198,0.20543283359363207

+ ng,1.0,203452505.0,0.0,0.0

+ ni,1.0,6085213.0,0.5037842151053544,0.5263628039009203

+ nl,2.0,17151228.0,0.44784786536867627,0.3793621239022091

+ no,2.0,5372191.0,0.2743193015150657,0.19691007568165209

+ np,1.0,29717587.0,0.04600713517186704,0.02549761152572379

+ nr,1.0,9692.0,0.0,0.0

+ nu,1.0,1618.0,0.0,0.0

+ nz,1.0,4545627.0,0.0,0.0

+ om,1.0,3494116.0,0.13165226075809916,0.08790531569067352

+ pa,1.0,3800644.0,0.44565526720858273,0.46562863422004486

+ pe,2.0,31331228.0,0.4714903551627035,0.4926215985226562

+ pf,2.0,290373.0,0.4439755159614721,0.4321173396279847

+ pg,2.0,7027332.0,0.0,0.0

+ ph,8.0,105893381.0,0.0,0.0

+ pk,1.0,207862518.0,0.0,0.0

+ pl,2.0,38420687.0,0.675266436378051,0.6405919804241768

+ pm,1.0,5471.0,0.6798034604406311,0.6616465373306651

+ pr,1.0,3294626.0,0.5619131630021261,0.5870969735817957

+ ps,1.0,4635207.0,0.16253365525691252,0.10852508109959692

+ pt,1.0,10355493.0,0.326060674701028,0.30607471167885064

+ pw,1.0,21516.0,0.0,0.0

+ py,2.0,7025763.0,0.020668070363296594,0.02159437144208904

+ qa,1.0,2363569.0,0.14465495317865215,0.09658732217864126

+ re,1.0,787584.0,0.6477675560749347,0.6304662824080433

+ ro,1.0,21457116.0,0.22783437752575306,0.18115470903346917

+ rs,4.0,7078110.0,0.4122239096297502,0.37581881448823085

+ ru,3.0,142122776.0,0.5315031737615122,0.5402385421912915

+ rw,1.0,12187400.0,0.0,0.0

+ sa,1.0,33091113.0,0.16253365525691252,0.10852508109959692

+ sc,1.0,94633.0,0.43669722881456274,0.4250334488144112

+ sd,1.0,43120843.0,0.09914552970671664,0.06620029947075412

+ se,2.0,10040995.0,0.6972212661599166,0.6851008210148113

+ sg,3.0,5995991.0,0.021764608193322463,0.014715212475183054

+ si,1.0,2102126.0,0.2719743730984458,0.2457311427539439

+ sj,1.0,2583.0,0.14036906507960445,0.10231660409981708

+ sk,1.0,5445040.0,0.27418056206209557,0.20514399523831328

+ sm,1.0,33779.0,0.46203723056489354,0.3903525055663236

+ sn,6.0,15020945.0,0.2838531987294658,0.2762717417293673

+ so,2.0,11259029.0,0.05526144278735026,0.03689852757386296

+ sr,1.0,597927.0,0.40306307883180864,0.3414259115119882

+ st,1.0,204454.0,0.28869955572486855,0.271003650965649

+ sv,1.0,6187271.0,0.5748307069791865,0.6005934557331014

+ sx,1.0,42677.0,0.01668528963929506,0.014133743632507263

+ sy,2.0,19454263.0,0.17296881837229536,0.12861502067976133

+ sz,1.0,1087200.0,0.0,0.0

+ td,2.0,15833116.0,0.21686618721331902,0.202630424939843

+ tg,1.0,8176449.0,0.4439755159614721,0.4321173396279847

+ th,1.0,68615858.0,0.11929430782140449,0.07621276328753093

+ tj,1.0,8604882.0,0.07147012339831865,0.04719971104294166

+ tk,1.0,1285.0,0.0,0.0

+ tl,2.0,1321929.0,0.20039145632667346,0.18810841655262697

+ tm,1.0,5411012.0,0.011628888694407691,0.007218330459024566

+ tn,2.0,11516189.0,0.6848735386025153,0.6218804931940778

+ to,1.0,106398.0,0.0,0.0

+ tr,1.0,81257239.0,0.3917797775020721,0.29994075871576903

+ tv,1.0,11147.0,0.0,0.0

+ tw,1.0,23545963.0,0.0,0.0

+ tz,1.0,55451343.0,0.0,0.0

+ ua,2.0,43952299.0,0.6685972128556646,0.6123868717854799

+ ug,1.0,40853749.0,0.0,0.0

+ us,1.0,329256465.0,0.06200421108988978,0.06478311432626711

+ uy,1.0,3369299.0,0.5683719349906563,0.5938452146574486

+ uz,2.0,30023709.0,0.021489685918589026,0.011074228387996071

+ va,1.0,1000.0,0.4277737954892947,0.3614050163894951

+ ve,1.0,31689176.0,0.5296193030594751,0.5533557682035316

+ vn,1.0,97040334.0,0.3786321679905688,0.3242666103675215

+ vu,2.0,288037.0,0.36391435734546895,0.354194540678676

+ wf,1.0,15763.0,0.35184005620408215,0.34244273297868566

+ ws,1.0,201316.0,0.0,0.0

+ xk,3.0,1907592.0,0.1313879093328666,0.09080833363009087

+ ye,1.0,28667230.0,0.12027490489011526,0.08030856001370172

+ yt,1.0,194000.0,0.4148623673738346,0.4037817763736906

+ za,10.0,55380210.0,0.028831386519364323,0.02065316504637049

+ zw,2.0,14030368.0,0.0,0.0

@@ -0,0 +1,256 @@ 

+ ADMIN,ISO_A3,FIFA,Dial,ISO3166-1-Alpha-3,MARC,is_independent,ISO3166-1-numeric,GAUL,FIPS,WMO,ISO3166-1-Alpha-2,ITU,IOC,DS,UNTERM Spanish Formal,Global Code,Intermediate Region Code,official_name_fr,UNTERM French Short,ISO4217-currency_name,Developed / Developing Countries,UNTERM Russian Formal,UNTERM English Short,ISO4217-currency_alphabetic_code,Small Island Developing States (SIDS),UNTERM Spanish Short,ISO4217-currency_numeric_code,UNTERM Chinese Formal,UNTERM French Formal,UNTERM Russian Short,M49,Sub-region Code,Region Code,official_name_ar,ISO4217-currency_minor_unit,UNTERM Arabic Formal,UNTERM Chinese Short,Land Locked Developing Countries (LLDC),Intermediate Region Name,official_name_es,UNTERM English Formal,official_name_cn,official_name_en,ISO4217-currency_country_name,Least Developed Countries (LDC),Region Name,UNTERM Arabic Short,Sub-region Name,official_name_ru,Global Name,Capital,Continent,TLD,Languages,Geoname ID,CLDR display name,EDGAR,territory,nb_lang,population,message_coverage,words_coverage

+ Aruba,ABW,ARU,297,ABW,aw,Part of NL,533.0,14,AA,NU,aw,ABW,ARU,AW,,True,29.0,Aruba,,Aruban Florin,Developing,,,AWG,x,,533,,,,533.0,419.0,19.0,أروبا,2,,,,Caribbean,Aruba,,阿鲁巴,Aruba,ARUBA,,Americas,,Latin America and the Caribbean,Аруба,World,Oranjestad,,.aw,"nl-AW,pap,es,en",3577279.0,Aruba,1C,aw,2.0,116576.0,0.434412429407616,0.3679812601851428

+ Afghanistan,AFG,AFG,93,AFG,af,Yes,4.0,1,AF,AF,af,AFG,AFG,AFG,República Islámica del Afganistán (la),True,,Afghanistan,Afghanistan (l') [masc.],Afghani,Developing,Исламская Республика Афганистан,Afghanistan,AFN,,Afganistán (el),971,阿富汗伊斯兰共和国,République islamique d'Afghanistan,Афганистан,4.0,34.0,142.0,أفغانستان,2,جمهورية أفغانستان الإسلامية,阿富汗,x,,Afganistán,the Islamic Republic of Afghanistan,阿富汗,Afghanistan,AFGHANISTAN,x,Asia,أفغانستان,Southern Asia,Афганистан,World,Kabul,AS,.af,"fa-AF,ps,uz-AF,tk",1149361.0,Afghanistan,B2,af,4.0,34940837.0,0.08116450337303979,0.04653134284802367

+ Angola,AGO,ANG,244,AGO,ao,Yes,24.0,8,AO,AN,ao,AGL,ANG,AO,la República de Angola,True,17.0,Angola,Angola (l') [masc.],Kwanza,Developing,Республика Ангола,Angola,AOA,,Angola,973,安哥拉共和国,la République d'Angola,Ангола,24.0,202.0,2.0,أنغولا,2,جمهورية أنغولا,安哥拉,,Middle Africa,Angola,the Republic of Angola,安哥拉,Angola,ANGOLA,x,Africa,أنغولا,Sub-Saharan Africa,Ангола,World,Luanda,AF,.ao,pt-AO,3351879.0,Angola,B7,ao,1.0,30355880.0,0.22756317921842584,0.21361464252586454

+ Anguilla,AIA,AIA,1-264,AIA,am,Territory of GB,660.0,9,AV, ,ai,AIA,AIA, ,,True,29.0,Anguilla,,East Caribbean Dollar,Developing,,,XCD,x,,951,,,,660.0,419.0,19.0,أنغيلا,2,,,,Caribbean,Anguila,,安圭拉,Anguilla,ANGUILLA,,Americas,,Latin America and the Caribbean,Ангилья,World,The Valley,,.ai,en-AI,3573511.0,Anguilla,1A,,,,,

+ Albania,ALB,ALB,355,ALB,aa,Yes,8.0,3,AL,AB,al,ALB,ALB,AL,la República de Albania,True,,Albanie,Albanie (l') [fém.],Lek,Developed,Республика Албания,Albania,ALL,,Albania,008,阿尔巴尼亚共和国,la République d'Albanie,Албания,8.0,39.0,150.0,ألبانيا,2,جمهورية ألبانيا,阿尔巴尼亚,,,Albania,the Republic of Albania,阿尔巴尼亚,Albania,ALBANIA,,Europe,ألبانيا,Southern Europe,Албания,World,Tirana,EU,.al,"sq,el",783754.0,Albania,B3,al,1.0,3057220.0,0.12152443513222719,0.07929446318256354

+ Aland,ALA,ALD,358,ALA, ,Part of FI,248.0,1242, , ,ax, , ,FIN,,True,,Îles d'Åland,,Euro,Developed,,,EUR,,,978,,,,248.0,154.0,150.0,جزر ألاند,2,,,,,Islas Åland,,奥兰群岛,Åland Islands,ÅLAND ISLANDS,,Europe,,Northern Europe,Аландские острова,World,Mariehamn,EU,.ax,sv-AX,661882.0,Åland Islands,,ax,1.0,26200.0,0.7181703380712385,0.7069577095065854

+ Andorra,AND,AND,376,AND,an,Yes,20.0,7,AN, ,ad,AND,AND,AND,el Principado de Andorra,True,,Andorre,Andorre (l') [fém.],Euro,Developed,Княжество Андорра,Andorra,EUR,,Andorra,978,安道尔公国,la Principauté d'Andorre,Андорра,20.0,39.0,150.0,أندورا,2,إمارة أندورا,安道尔,,,Andorra,the Principality of Andorra,安道尔,Andorra,ANDORRA,,Europe,أندورا,Southern Europe,Андорра,World,Andorra la Vella,EU,.ad,ca,3041565.0,Andorra,B6,ad,1.0,85708.0,0.22800858691679238,0.21667737537455042

+ United Arab Emirates,ARE,UAE,971,ARE,ts,Yes,784.0,255,AE,ER,ae,UAE,UAE, ,los Emiratos Árabes Unidos,True,,Émirats arabes unis,Émirats arabes unis (les),UAE Dirham,Developing,Объединенные Арабские Эмираты,United Arab Emirates (the),AED,,Emiratos Árabes Unidos (los),784,阿拉伯联合酋长国,les Émirats arabes unis,Объединенные Арабские Эмираты,784.0,145.0,142.0,الإمارات العربية المتحدة,2,الإمارات العربية المتحدة,阿拉伯联合酋长国,,,Emiratos Árabes Unidos,the United Arab Emirates,阿拉伯联合酋长国,United Arab Emirates,UNITED ARAB EMIRATES,,Asia,الإمارات العربية المتحدة,Western Asia,Объединенные Арабские Эмираты,World,Abu Dhabi,AS,.ae,"ar-AE,fa,en,hi,ur",290557.0,United Arab Emirates,C0,ae,1.0,9701315.0,0.12677625110039176,0.0846495632576856

+ Argentina,ARG,ARG,54,ARG,ag,Yes,32.0,12,AR,AG,ar,ARG,ARG,RA,la República Argentina,True,5.0,Argentine,Argentine (l') [fém.],Argentine Peso,Developing,Аргентинская Республика,Argentina,ARS,,Argentina (la),032,阿根廷共和国,la République argentine,Аргентина,32.0,419.0,19.0,الأرجنتين,2,جمهورية الأرجنتين,阿根廷,,South America,Argentina,the Argentine Republic,阿根廷,Argentina,ARGENTINA,,Americas,الأرجنتين,Latin America and the Caribbean,Аргентина,World,Buenos Aires,SA,.ar,"es-AR,en,it,de,fr,gn",3865483.0,Argentina,C1,ar,1.0,44694198.0,0.6458771988530185,0.6748241075652824

+ Armenia,ARM,ARM,374,ARM,ai,Yes,51.0,13,AM,AY,am,ARM,ARM,AM,la República de Armenia,True,,Arménie,Arménie (l') [fém.],Armenian Dram,Developing,Республика Армения,Armenia,AMD,,Armenia,051,亚美尼亚共和国,la République d'Arménie,Армения,51.0,145.0,142.0,أرمينيا,2,جمهورية أرمينيا,亚美尼亚,x,,Armenia,the Republic of Armenia,亚美尼亚,Armenia,ARMENIA,,Asia,أرمينيا,Western Asia,Армения,World,Yerevan,AS,.am,hy,174982.0,Armenia,1B,am,1.0,3038217.0,0.043084906486005076,0.03489785605393865

+ American Samoa,ASM,ASA,1-684,ASM,as,Territory of US,16.0,5,AQ, ,as,SMA,ASA,USA,,True,,Samoa américaines,,US Dollar,Developing,,,USD,x,,840,,,,16.0,61.0,9.0,ساموا الأمريكية,2,,,,,Samoa Americana,,美属萨摩亚,American Samoa,AMERICAN SAMOA,,Oceania,,Polynesia,Американское Самоа,World,Pago Pago,OC,.as,"en-AS,sm,to",5880801.0,American Samoa,B5,as,1.0,50826.0,0.0,0.0

+ Antarctica,ATA,ROS,672,ATA,ay,International,10.0,10,AY,AA,aq, , , ,,True,,Antarctique,,No universal currency,,,,,,,,,,,10.0,,,أنتاركتيكا,,,,,,Antártida,,南极洲,Antarctica,ANTARCTICA,,,,,Антарктике,World,,AN,.aq,,6697173.0,Antarctica,B8,,,,,

+ Ashmore and Cartier Islands,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ French Southern and Antarctic Lands,ATF,,262,ATF,fs,Territory of FR,260.0,88,FS, ,tf, , ,F,,True,14.0,Terres australes françaises,,Euro,Developing,,,EUR,,,978,,,,260.0,202.0,2.0,الأراضي الفرنسية الجنوبية الجنوبية,2,,,,Eastern Africa,Territorio de las Tierras Australes Francesas,,法属南方领地,French Southern Territories,FRENCH SOUTHERN TERRITORIES,,Africa,,Sub-Saharan Africa,Южные земли (французская заморская территория),World,Port-aux-Francais,AN,.tf,fr,1546748.0,French Southern Territories,2C,,,,,

+ Antigua and Barbuda,ATG,ATG,1-268,ATG,aq,Yes,28.0,11,AC,AT,ag,ATG,ANT, ,Antigua y Barbuda,True,29.0,Antigua-et-Barbuda,Antigua-et-Barbuda [fém.],East Caribbean Dollar,Developing,Антигуа и Барбуда,Antigua and Barbuda,XCD,x,Antigua y Barbuda,951,安提瓜和巴布达,Antigua-et-Barbuda [fém.],Антигуа и Барбуда,28.0,419.0,19.0,أنتيغوا وبربودا,2,أنتيغوا وبربودا,安提瓜和巴布达,,Caribbean,Antigua y Barbuda,Antigua and Barbuda,安提瓜和巴布达,Antigua and Barbuda,ANTIGUA AND BARBUDA,,Americas,أنتيغوا وبربودا,Latin America and the Caribbean,Антигуа и Барбуда,World,St. John's,,.ag,en-AG,3576396.0,Antigua & Barbuda,B9,,,,,

+ Australia,AUS,AUS,61,AUS,at,Yes,36.0,17,AS,AU,au,AUS,AUS,AUS,Australia,True,,Australie,Australie (l') [fém.],Australian Dollar,Developed,Австралия,Australia,AUD,,Australia,036,澳大利亚,l'Australie,Австралия,36.0,53.0,9.0,أستراليا,2,أستراليا,澳大利亚,,,Australia,Australia,澳大利亚,Australia,AUSTRALIA,,Oceania,أستراليا,Australia and New Zealand,Австралия,World,Canberra,OC,.au,en-AU,2077456.0,Australia,C3,,,,,

+ Austria,AUT,AUT,43,AUT,au,Yes,40.0,18,AU,OS,at,AUT,AUT,A,la República de Austria,True,,Autriche,Autriche (l') [fém.],Euro,Developed,Австрийская Республика,Austria,EUR,,Austria,978,奥地利共和国,la République d'Autriche,Австрия,40.0,155.0,150.0,النمسا,2,جمهورية النمسا,奥地利,,,Austria,the Republic of Austria,奥地利,Austria,AUSTRIA,,Europe,النمسا,Western Europe,Австрия,World,Vienna,EU,.at,"de-AT,hr,hu,sl",2782113.0,Austria,C4,at,2.0,8793370.0,0.7308706994242307,0.7195192613283273

+ Azerbaijan,AZE,AZE,994,AZE,aj,Yes,31.0,19,AJ,AJ,az,AZE,AZE,AZ,la República de Azerbaiyán,True,,Azerbaïdjan,Azerbaïdjan (l') [masc.],Azerbaijan Manat,Developing,Азербайджанская Республика,Azerbaijan,AZN,,Azerbaiyán,944,阿塞拜疆共和国,la République d'Azerbaïdjan,Азербайджан,31.0,145.0,142.0,أذربيجان,2,جمهورية أذربيجان,阿塞拜疆,x,,Azerbaiyán,the Republic of Azerbaijan,阿塞拜疆,Azerbaijan,AZERBAIJAN,,Asia,أذربيجان,Western Asia,Азербайджан,World,Baku,AS,.az,"az,ru,hy",587116.0,Azerbaijan,1D,az,2.0,10046516.0,0.05764755545717095,0.03743479388916869

+ Burundi,BDI,BDI,257,BDI,bd,Yes,108.0,43,BY,BI,bi,BDI,BDI,RU,la República de Burundi,True,14.0,Burundi,Burundi (le),Burundi Franc,Developing,Республика Бурунди,Burundi,BIF,,Burundi,108,布隆迪共和国,la République du Burundi,Бурунди,108.0,202.0,2.0,بوروندي,0,جمهورية بوروندي,布隆迪,x,Eastern Africa,Burundi,the Republic of Burundi,布隆迪,Burundi,BURUNDI,x,Africa,بوروندي,Sub-Saharan Africa,Бурунди,World,Bujumbura,AF,.bi,"fr-BI,rn",433561.0,Burundi,E2,bi,2.0,11844520.0,0.4294189416676533,0.41794955800083766

+ Belgium,BEL,BEL,32,BEL,be,Yes,56.0,27,BE,BX,be,BEL,BEL,B,el Reino de Bélgica,True,,Belgique,Belgique (la),Euro,Developed,Королевство Бельгия,Belgium,EUR,,Bélgica,978,比利时王国,le Royaume de Belgique,Бельгия,56.0,155.0,150.0,بلجيكا,2,مملكة بلجيكا,比利时,,,Bélgica,the Kingdom of Belgium,比利时,Belgium,BELGIUM,,Europe,بلجيكا,Western Europe,Бельгия,World,Brussels,EU,.be,"nl-BE,fr-BE,de-BE",2802361.0,Belgium,C9,be,3.0,11570762.0,0.6879164371502556,0.6404450091316536

+ Benin,BEN,BEN,229,BEN,dm,Yes,204.0,29,BN,BJ,bj,BEN,BEN,DY,la República de Benin,True,11.0,Bénin,Bénin (le),CFA Franc BCEAO,Developing,Республика Бенин,Benin,XOF,,Benin,952,贝宁共和国,la République du Bénin,Бенин,204.0,202.0,2.0,بنن,0,جمهورية بنن,贝宁,,Western Africa,Benin,the Republic of Benin,贝宁,Benin,BENIN,x,Africa,بنن,Sub-Saharan Africa,Бенин,World,Porto-Novo,AF,.bj,fr-BJ,2395170.0,Benin,G6,bj,1.0,11340504.0,0.25474005014182827,0.24793617847507318

+ Burkina Faso,BFA,BFA,226,BFA,uv,Yes,854.0,42,UV,HV,bf,BFA,BUR,BF,Burkina Faso,True,11.0,Burkina Faso,Burkina Faso (le),CFA Franc BCEAO,Developing,Буркина-Фасо,Burkina Faso,XOF,,Burkina Faso,952,布基纳法索,le Burkina Faso,Буркина-Фасо,854.0,202.0,2.0,بوركينا فاسو,0,بوركينا فاسو,布基纳法索,x,Western Africa,Burkina Faso,Burkina Faso,布基纳法索,Burkina Faso,BURKINA FASO,x,Africa,بوركينا فاسو,Sub-Saharan Africa,Буркина-Фасо,World,Ouagadougou,AF,.bf,"fr-BF,mos",2361809.0,Burkina Faso,X2,bf,1.0,19742715.0,0.16012231723200634,0.15584559789861743

+ Bangladesh,BGD,BAN,880,BGD,bg,Yes,50.0,23,BG,BW,bd,BGD,BAN,BD,la República Popular de Bangladesh,True,,Bangladesh,Bangladesh (le),Taka,Developing,Народная Республика Бангладеш,Bangladesh,BDT,,Bangladesh,050,孟加拉人民共和国,la République populaire du Bangladesh,Бангладеш,50.0,34.0,142.0,بنغلاديش,2,جمهورية بنغلاديش الشعبية,孟加拉国,,,Bangladesh,the People's Republic of Bangladesh,孟加拉国,Bangladesh,BANGLADESH,x,Asia,بنغلاديش,Southern Asia,Бангладеш,World,Dhaka,AS,.bd,"bn-BD,en",1210997.0,Bangladesh,C7,bd,1.0,159453001.0,0.14740688497752882,0.09307396724135884

+ Bulgaria,BGR,BUL,359,BGR,bu,Yes,100.0,41,BU,BU,bg,BUL,BUL,BG,la República de Bulgaria,True,,Bulgarie,Bulgarie (la),Bulgarian Lev,Developed,Республика Болгария,Bulgaria,BGN,,Bulgaria,975,保加利亚共和国,la République de Bulgarie,Болгария,100.0,151.0,150.0,بلغاريا,2,جمهورية بلغاريا,保加利亚,,,Bulgaria,the Republic of Bulgaria,保加利亚,Bulgaria,BULGARIA,,Europe,بلغاريا,Eastern Europe,Болгария,World,Sofia,EU,.bg,"bg,tr-BG,rom",732800.0,Bulgaria,E0,bg,1.0,7057504.0,0.2899886228500533,0.24302323018041164

+ Bahrain,BHR,BHR,973,BHR,ba,Yes,48.0,21,BA,BN,bh,BHR,BRN,BRN,el Reino de Bahrein,True,,Bahreïn,Bahreïn [masc.],Bahraini Dinar,Developing,Королевство Бахрейн,Bahrain,BHD,,Bahrein,048,巴林王国,le Royaume de Bahreïn,Бахрейн,48.0,145.0,142.0,البحرين,3,مملكة البحرين,巴林,,,Bahrein,the Kingdom of Bahrain,巴林,Bahrain,BAHRAIN,,Asia,البحرين,Western Asia,Бахрейн,World,Manama,AS,.bh,"ar-BH,en,fa,ur",290291.0,Bahrain,C6,bh,1.0,1442659.0,0.14140428007351388,0.09441682055664932

+ The Bahamas,BHS,BAH,1-242,BHS,bf,Yes,44.0,20,BF,BA,bs,BAH,BAH,BS,el Commonwealth de las Bahamas,True,29.0,Bahamas,Bahamas (les) [fém.],Bahamian Dollar,Developing,Содружество Багамских Островов,Bahamas (the),BSD,x,Bahamas (las),044,巴哈马国,le Commonwealth des Bahamas,Багамские Острова,44.0,419.0,19.0,جزر البهاما,2,كمنولث جزر البهاما,巴哈马,,Caribbean,Bahamas,the Commonwealth of the Bahamas,巴哈马,Bahamas,BAHAMAS,,Americas,جزر البهاما,Latin America and the Caribbean,Багамские Острова,World,Nassau,,.bs,en-BS,3572887.0,Bahamas,C5,,,,,

+ Bosnia and Herzegovina,BIH,BIH,387,BIH,bn,Yes,70.0,34,BK,BG,ba,BIH,BIH,BIH,Bosnia y Herzegovina,True,,Bosnie-Herzégovine,Bosnie-Herzégovine (la),Convertible Mark,Developed,Босния и Герцеговина,Bosnia and Herzegovina,BAM,,Bosnia y Herzegovina,977,波斯尼亚和黑塞哥维那,la Bosnie-Herzégovine,Босния и Герцеговина,70.0,39.0,150.0,البوسنة والهرسك,2,البوسنة والهرسك,波斯尼亚和黑塞哥维那,,,Bosnia y Herzegovina,Bosnia and Herzegovina,波斯尼亚和黑塞哥维那,Bosnia and Herzegovina,BOSNIA AND HERZEGOVINA,,Europe,البوسنة والهرسك,Southern Europe,Босния и Герцеговина,World,Sarajevo,EU,.ba,"bs,hr-BA,sr-BA",3277605.0,Bosnia,1E,ba,5.0,3849891.0,0.27928220994702674,0.21533542081067378

+ Bajo Nuevo Bank (Petrel Is.),-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Saint Barthelemy,BLM, ,590,BLM,sc,Part of FR,652.0,,TB, ,bl, , , ,,True,29.0,Saint-Barthélemy,,Euro,Developing,,,EUR,,,978,,,,652.0,419.0,19.0,سان بارتليمي,2,,,,Caribbean,San Bartolomé,,圣巴泰勒米,Saint Barthélemy,SAINT BARTHÉLEMY,,Americas,,Latin America and the Caribbean,Святой Варфоломей,World,Gustavia,,.gp,fr,3578476.0,St. Barthélemy,,bl,1.0,7160.0,0.6963165776023638,0.6777186043712097

+ Belarus,BLR,BLR,375,BLR,bw,Yes,112.0,26,BO,BY,by,BLR,BLR,BY,la República de Belarús,True,,Bélarus,Bélarus (le),Belarusian Ruble,Developed,Республика Беларусь,Belarus,BYN,,Belarús,933,白俄罗斯共和国,la République du Bélarus,Беларусь,112.0,151.0,150.0,بيلاروس,2,جمهورية بيلاروس,白俄罗斯,,,Belarús,the Republic of Belarus,白俄罗斯,Belarus,BELARUS,,Europe,بيلاروس,Eastern Europe,Беларусь,World,Minsk,EU,.by,"be,ru",630336.0,Belarus,1F,by,2.0,9527543.0,0.24962331852416225,0.18196765512364615

+ Belize,BLZ,BLZ,501,BLZ,bh,Yes,84.0,28,BH,BH,bz,BLZ,BIZ,BH,Belice,True,13.0,Belize,Belize (le),Belize Dollar,Developing,Белиз,Belize,BZD,x,Belice,084,伯利兹,le Belize,Белиз,84.0,419.0,19.0,بليز,2,بليز,伯利兹,,Central America,Belice,Belize,伯利兹,Belize,BELIZE,,Americas,بليز,Latin America and the Caribbean,Белиз,World,Belmopan,,.bz,"en-BZ,es",3582678.0,Belize,D1,,,,,

+ Bermuda,BMU,BER,1-441,BMU,bm,Territory of GB,60.0,30,BD,BE,bm,BER,BER,BM,,True,,Bermudes,,Bermudian Dollar,Developed,,,BMD,,,060,,,,60.0,21.0,19.0,برمودا,2,,,,,Bermuda,,百慕大,Bermuda,BERMUDA,,Americas,,Northern America,Бермудские острова,World,Hamilton,,.bm,"en-BM,pt",3573345.0,Bermuda,D0,,,,,

+ Bolivia,BOL,BOL,591,BOL,bo,Yes,68.0,33,BL,BO,bo,BOL,BOL,BOL,Estado Plurinacional de Bolivia,True,5.0,Bolivie (État plurinational de),Bolivie (État plurinational de) (l'),Boliviano,Developing,Многонациональное Государство Боливия,Bolivia (Plurinational State of),BOB,,Bolivia (Estado Plurinacional de),068,玻利维亚多民族国,État plurinational de Bolivie,Боливия (Многонациональное Государство),68.0,419.0,19.0,بوليفيا (دولة - المتعددة القوميات),2,دولة بوليفيا المتعددة القوميات,玻利维亚(多民族国),x,South America,Bolivia (Estado Plurinacional de),the Plurinational State of Bolivia,玻利维亚(多民族国),Bolivia (Plurinational State of),BOLIVIA (PLURINATIONAL STATE OF),,Americas,بوليفيا (دولة - المتعددة القوميات),Latin America and the Caribbean,Боливия (Многонациональное Государство),World,Sucre,SA,.bo,"es-BO,qu,ay",3923057.0,Bolivia,,bo,3.0,11306341.0,0.3939850913003413,0.4116427056148223

+ Brazil,BRA,BRA,55,BRA,bl,Yes,76.0,37,BR,BZ,br,B,BRA,BR,la República Federativa del Brasil,True,5.0,Brésil,Brésil (le),Brazilian Real,Developing,Федеративная Республика Бразилия,Brazil,BRL,,Brasil (el),986,巴西联邦共和国,la République fédérative du Brésil,Бразилия,76.0,419.0,19.0,البرازيل,2,الجمهورية الاتحادية البرازيلية,巴西,,South America,Brasil,the Federative Republic of Brazil,巴西,Brazil,BRAZIL,,Americas,البرازيل,Latin America and the Caribbean,Бразилия,World,Brasilia,SA,.br,"pt-BR,es,en,fr",3469034.0,Brazil,D5,br,1.0,208846892.0,0.43168186194008723,0.4430090366911026

+ Barbados,BRB,BRB,1-246,BRB,bb,Yes,52.0,24,BB,BR,bb,BRB,BAR,BDS,Barbados,True,29.0,Barbade,Barbade (la),Barbados Dollar,Developing,Барбадос,Barbados,BBD,x,Barbados,052,巴巴多斯,la Barbade,Барбадос,52.0,419.0,19.0,بربادوس,2,بربادوس,巴巴多斯,,Caribbean,Barbados,Barbados,巴巴多斯,Barbados,BARBADOS,,Americas,بربادوس,Latin America and the Caribbean,Барбадос,World,Bridgetown,,.bb,en-BB,3374084.0,Barbados,C8,,,,,

+ Brunei,BRN,BRU,673,BRN,bx,Yes,96.0,40,BX,BD,bn,BRU,BRU,BRU,Brunei Darussalam,True,,Brunéi Darussalam,Brunéi Darussalam (le),Brunei Dollar,Developing,Бруней-Даруссалам,Brunei Darussalam,BND,,Brunei Darussalam,096,文莱达鲁萨兰国,le Brunéi Darussalam,Бруней-Даруссалам,96.0,35.0,142.0,بروني دار السلام,2,بروني دار السلام,文莱达鲁萨兰国,,,Brunei Darussalam,Brunei Darussalam,文莱达鲁萨兰国,Brunei Darussalam,BRUNEI DARUSSALAM,,Asia,بروني دار السلام,South-eastern Asia,Бруней-Даруссалам,World,Bandar Seri Begawan,AS,.bn,"ms-BN,en-BN",1820814.0,Brunei,D9,bn,2.0,450565.0,0.10670278868874486,0.06760753221515092

+ Bhutan,BTN,BHU,975,BTN,bt,Yes,64.0,31,BT, ,bt,BTN,BHU,BT,el Reino de Bhután,True,,Bhoutan,Bhoutan (le),"Indian Rupee,Ngultrum",Developing,Королевство Бутан,Bhutan,"INR,BTN",,Bhután,"356,064",不丹王国,le Royaume du Bhoutan,Бутан,64.0,34.0,142.0,بوتان,"2,2",مملكة بوتان,不丹,x,,Bhután,the Kingdom of Bhutan,不丹,Bhutan,BHUTAN,x,Asia,بوتان,Southern Asia,Бутан,World,Thimphu,AS,.bt,dz,1252634.0,Bhutan,D2,bt,1.0,766397.0,0.0565430452666423,0.03571463455580483

+ Botswana,BWA,BOT,267,BWA,bs,Yes,72.0,35,BC,BC,bw,BOT,BOT,BW,la República de Botswana,True,18.0,Botswana,Botswana (le),Pula,Developing,Республика Ботсвана,Botswana,BWP,,Botswana,072,博茨瓦纳共和国,la République du Botswana,Ботсвана,72.0,202.0,2.0,بوتسوانا,2,جمهورية بوتسوانا,博茨瓦纳,x,Southern Africa,Botswana,the Republic of Botswana,博茨瓦纳,Botswana,BOTSWANA,,Africa,بوتسوانا,Sub-Saharan Africa,Ботсвана,World,Gaborone,AF,.bw,"en-BW,tn-BW",933860.0,Botswana,B1,bw,1.0,2249104.0,0.0,0.0

+ Central African Republic,CAF,CTA,236,CAF,cx,Yes,140.0,49,CT,CE,cf,CAF,CAF,RCA,la República Centroafricana,True,17.0,République centrafricaine,République centrafricaine (la),CFA Franc BEAC,Developing,Центральноафриканская Республика,Central African Republic (the),XAF,,República Centroafricana (la),950,中非共和国,la République centrafricaine,Центральноафриканская Республика,140.0,202.0,2.0,جمهورية أفريقيا الوسطى,0,جمهورية أفريقيا الوسطى,中非共和国,x,Middle Africa,República Centroafricana,the Central African Republic,中非共和国,Central African Republic,CENTRAL AFRICAN REPUBLIC,x,Africa,جمهورية أفريقيا الوسطى,Sub-Saharan Africa,Центральноафриканская Республика,World,Bangui,AF,.cf,"fr-CF,sg,ln,kg",239880.0,Central African Republic,F0,cf,2.0,5745062.0,0.3566360701985596,0.3471106498651025

+ Canada,CAN,CAN,1,CAN,xxc,Yes,124.0,46,CA,CN,ca,CAN,CAN,CDN,el Canadá,True,,Canada,Canada (le),Canadian Dollar,Developed,Канада,Canada,CAD,,Canadá (el),124,加拿大,le Canada,Канада,124.0,21.0,19.0,كندا,2,كندا,加拿大,,,Canadá,Canada,加拿大,Canada,CANADA,,Americas,كندا,Northern America,Канада,World,Ottawa,,.ca,"en-CA,fr-CA,iu",6251999.0,Canada,,ca,1.0,35881659.0,0.16012231723200634,0.15584559789861743

+ Switzerland,CHE,SUI,41,CHE,sz,Yes,756.0,237,SZ,SW,ch,SUI,SUI,CH,la Confederación Suiza,True,,Suisse,Suisse (la),Swiss Franc,Developed,Швейцарская Конфедерация,Switzerland,CHF,,Suiza,756,瑞士联邦,la Confédération suisse,Швейцария,756.0,155.0,150.0,سويسرا,2,الاتحاد السويسري,瑞士,,,Suiza,the Swiss Confederation,瑞士,Switzerland,SWITZERLAND,,Europe,سويسرا,Western Europe,Швейцария,World,Bern,EU,.ch,"de-CH,fr-CH,it-CH,rm",2658434.0,Switzerland,V8,ch,4.0,8292809.0,0.722750794083882,0.7071843110222534

+ Chile,CHL,CHI,56,CHL,cl,Yes,152.0,51,CI,CH,cl,CHL,CHI,RCH,la República de Chile,True,5.0,Chili,Chili (le),Chilean Peso,Developing,Республика Чили,Chile,CLP,,Chile,152,智利共和国,la République du Chili,Чили,152.0,419.0,19.0,شيلي,0,جمهورية شيلي,智利,,South America,Chile,the Republic of Chile,智利,Chile,CHILE,,Americas,شيلي,Latin America and the Caribbean,Чили,World,Santiago,SA,.cl,es-CL,3895114.0,Chile,F3,cl,1.0,17925262.0,0.6329596548759582,0.6613276254139768

+ China,CHN,CHN,86,CHN,cc,Yes,156.0,53,CH,CI,cn,CHN,CHN,CN,la República Popular China,True,,Chine,Chine (la),Yuan Renminbi,Developing,Китайская Народная Республика,China,CNY,,China,156,中华人民共和国,la République populaire de Chine,Китай,156.0,30.0,142.0,الصين,2,جمهورية الصين الشعبية,中国,,,China,the People's Republic of China,中国,China,CHINA,,Asia,الصين,Eastern Asia,Китай,World,Beijing,AS,.cn,"zh-CN,yue,wuu,dta,ug,za",1814991.0,China,F4,cn,1.0,1384688986.0,0.47640708575076324,0.47093463364009586

+ Ivory Coast,CIV,CIV,225,CIV,iv,Yes,384.0,66,IV,IV,ci,CTI,CIV,CI,la República de Côte d'Ivoire,True,11.0,Côte d'Ivoire,Côte d'Ivoire (la),CFA Franc BCEAO,Developing,Республика Кот-д'Ивуар,Côte d'Ivoire,XOF,,Côte d'Ivoire,952,科特迪瓦共和国,la République de Côte d'Ivoire,Кот-д'Ивуар,384.0,202.0,2.0,كوت ديفوار,0,جمهورية كوت ديفوار,科特迪瓦,,Western Africa,Côte d'Ivoire,the Republic of Côte d'Ivoire,科特迪瓦,Côte d'Ivoire,CÔTE D'IVOIRE,,Africa,كوت ديفوار,Sub-Saharan Africa,Кот-д'Ивуар,World,Yamoussoukro,AF,.ci,fr-CI,2287781.0,Côte d’Ivoire,,ci,1.0,26260582.0,0.3566360701985596,0.3471106498651025

+ Clipperton Island,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Cameroon,CMR,CMR,237,CMR,cm,Yes,120.0,45,CM,CM,cm,CME,CMR,CAM,la República del Camerún,True,17.0,Cameroun,Cameroun (le),CFA Franc BEAC,Developing,Республика Камерун,Cameroon,XAF,,Camerún (el),950,喀麦隆共和国,la République du Cameroun,Камерун,120.0,202.0,2.0,الكاميرون,0,جمهورية الكاميرون,喀麦隆,,Middle Africa,Camerún,the Republic of Cameroon,喀麦隆,Cameroon,CAMEROON,,Africa,الكاميرون,Sub-Saharan Africa,Камерун,World,Yaounde,AF,.cm,"en-CM,fr-CM",2233387.0,Cameroon,E4,cm,1.0,25640965.0,0.4949235259898378,0.48170457532299943

+ Cyprus No Mans Area,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Democratic Republic of the Congo,COD,COD,243,COD,cg,Yes,180.0,68,CG,ZR,cd,COD,COD,ZRE,la República Democrática del Congo,True,17.0,République démocratique du Congo,République démocratique du Congo (la),Congolese Franc,Developing,Демократическая Республика Конго,Democratic Republic of the Congo (the),CDF,,República Democrática del Congo (la),976,刚果民主共和国,la République démocratique du Congo,Демократическая Республика Конго,180.0,202.0,2.0,جمهورية الكونغو الديمقراطية,2,جمهورية الكونغو الديمقراطية,刚果民主共和国,,Middle Africa,República Democrática del Congo,the Democratic Republic of the Congo,刚果民主共和国,Democratic Republic of the Congo,CONGO (THE DEMOCRATIC REPUBLIC OF THE),x,Africa,جمهورية الكونغو الديمقراطية,Sub-Saharan Africa,Демократическая Республика Конго,World,Kinshasa,AF,.cd,"fr-CD,ln,ktu,kg,sw,lua",203312.0,Congo - Kinshasa,,cd,5.0,85281024.0,0.02765749115825564,0.026918785091579377

+ Republic of Congo,COG,CGO,242,COG,cf,Yes,178.0,59,CF,CG,cg,COG,CGO,RCB,la República del Congo,True,17.0,Congo,Congo (le),CFA Franc BEAC,Developing,Республика Конго,Congo (the),XAF,,Congo (el),950,刚果共和国,la République du Congo,Конго,178.0,202.0,2.0,الكونغو,0,جمهورية الكونغو,刚果,,Middle Africa,Congo,the Republic of the Congo,刚果,Congo,CONGO,,Africa,الكونغو,Sub-Saharan Africa,Конго,World,Brazzaville,AF,.cg,"fr-CG,kg,ln-CG",2260494.0,Congo - Brazzaville,G0,cg,2.0,5062021.0,0.6113761203403878,0.5950468283401756

+ Cook Islands,COK,COK,682,COK,cw,Associated with NZ,184.0,60,CW,KU,ck,CKH,COK,NZ,las Islas Cook,True,,Îles Cook,Îles Cook (les)    **,New Zealand Dollar,Developing,Острова Кука,Cook Islands (the)    **,NZD,x,Islas Cook (las)    **,554,库克群岛,les Îles Cook,Острова Кука    **,184.0,61.0,9.0,جزر كوك,2,جزر كوك,库克群岛    **,,,Islas Cook,the Cook Islands,库克群岛,Cook Islands,COOK ISLANDS,,Oceania,جزر كوك    **,Polynesia,Острова Кука,World,Avarua,OC,.ck,"en-CK,mi",1899402.0,Cook Islands,G1,,,,,

+ Colombia,COL,COL,57,COL,ck,Yes,170.0,57,CO,CO,co,CLM,COL,CO,la República de Colombia,True,5.0,Colombie,Colombie (la),Colombian Peso,Developing,Республика Колумбия,Colombia,COP,,Colombia,170,哥伦比亚共和国,la République de Colombie,Колумбия,170.0,419.0,19.0,كولومبيا,2,جمهورية كولومبيا,哥伦比亚,,South America,Colombia,the Republic of Colombia,哥伦比亚,Colombia,COLOMBIA,,Americas,كولومبيا,Latin America and the Caribbean,Колумбия,World,Bogota,SA,.co,es-CO,3686110.0,Colombia,F8,co,1.0,48168996.0,0.6006657949333073,0.6275864200357127

+ Comoros,COM,COM,269,COM,cq,Yes,174.0,58,CN,IC,km,COM,COM,KM,la Unión de las Comoras,True,14.0,Comores,Comores (les) [fém.],Comorian Franc ,Developing,Союз Коморских Островов,Comoros (the),KMF,x,Comoras (las),174,科摩罗联盟,l'Union des Comores,Коморские Острова,174.0,202.0,2.0,جزر القمر,0,اتحاد جزر القمر,科摩罗,,Eastern Africa,Comoras,the Union of the Comoros,科摩罗,Comoros,COMOROS,x,Africa,جزر القمر,Sub-Saharan Africa,Коморские Острова,World,Moroni,AF,.km,"ar,fr-KM",921929.0,Comoros,F9,km,4.0,821164.0,0.5148562926964876,0.46832443908585114

+ Cape Verde,CPV,CPV,238,CPV,cv,Yes,132.0,47,CV,CV,cv,CPV,CPV,CV,la República de Cabo Verde,True,11.0,Cabo Verde,Cabo Verde (sans article),Cabo Verde Escudo,Developing,Республика Кабо-Верде,Cabo Verde,CVE,x,Cabo Verde,132,佛得角共和国,la République de Cabo Verde,Кабо-Верде,132.0,202.0,2.0,كابو فيردي,2,جمهورية كابو فيردي,佛得角,,Western Africa,Cabo Verde,the Republic of Cabo Verde,佛得角,Cabo Verde,CABO VERDE,,Africa,كابو فيردي,Sub-Saharan Africa,Кабо-Верде,World,Praia,AF,.cv,pt-CV,3374766.0,Cape Verde,,cv,2.0,568373.0,0.2581313674716472,0.24230914674575676

+ Costa Rica,CRI,CRC,506,CRI,cr,Yes,188.0,61,CS,CS,cr,CTR,CRC,CR,la República de Costa Rica,True,13.0,Costa Rica,Costa Rica (le),Costa Rican Colon,Developing,Республика Коста-Рика,Costa Rica,CRC,,Costa Rica,188,哥斯达黎加共和国,la République du Costa Rica,Коста-Рика,188.0,419.0,19.0,كوستاريكا,2,جمهورية كوستاريكا,哥斯达黎加,,Central America,Costa Rica,the Republic of Costa Rica,哥斯达黎加,Costa Rica,COSTA RICA,,Americas,كوستاريكا,Latin America and the Caribbean,Коста-Рика,World,San Jose,,.cr,"es-CR,en",3624060.0,Costa Rica,G2,cr,1.0,4987142.0,0.6135833389103675,0.6410829021870182

+ Coral Sea Islands,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Cuba,CUB,CUB,53,CUB,cu,Yes,192.0,63,CU,CU,cu,CUB,CUB,C,la República de Cuba,True,29.0,Cuba,Cuba [fém.],"Cuban Peso,Peso Convertible",Developing,Республика Куба,Cuba,"CUP,CUC",x,Cuba,"192,931",古巴共和国,la République de Cuba,Куба,192.0,419.0,19.0,كوبا,"2,2",جمهورية كوبا,古巴,,Caribbean,Cuba,the Republic of Cuba,古巴,Cuba,CUBA,,Americas,كوبا,Latin America and the Caribbean,Куба,World,Havana,,.cu,"es-CU,pap",3562981.0,Cuba,G3,cu,1.0,11116396.0,0.6458771988530185,0.6748241075652824

+ Curaçao,CUW,,599,CUW,co,Part of NL,531.0,,UC,,cw,,,,,True,29.0,Curaçao,,Netherlands Antillean Guilder,Developing,,,ANG,x,,532,,,,531.0,419.0,19.0,كوراساو,2,,,,Caribbean,Curaçao,,库拉索,Curaçao,CURAÇAO,,Americas,,Latin America and the Caribbean,Кюрасао,World, Willemstad,,.cw,"nl,pap",7626836.0,Curaçao,,cw,2.0,150241.0,0.0358278292294941,0.030348969912176726

+ Cayman Islands,CYM,CAY,1-345,CYM,cj,Territory of GB,136.0,48,CJ,GC,ky,CYM,CAY,KY,,True,29.0,Îles Caïmanes,,Cayman Islands Dollar,Developing,,,KYD,,,136,,,,136.0,419.0,19.0,جزر كايمان,2,,,,Caribbean,Islas Caimán,,开曼群岛,Cayman Islands,CAYMAN ISLANDS,,Americas,,Latin America and the Caribbean,Кайман острова,World,George Town,,.ky,en-KY,3580718.0,Cayman Islands,E9,,,,,

+ Northern Cyprus,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Cyprus,CYP,CYP,357,CYP,cy,Yes,196.0,64,CY,CY,cy,CYP,CYP,CY,la República de Chipre,True,,Chypre,Chypre [fém.],Euro,Developed,Республика Кипр,Cyprus,EUR,,Chipre,978,塞浦路斯共和国,la République de Chypre,Кипр,196.0,145.0,142.0,قبرص,2,جمهورية قبرص,塞浦路斯,,,Chipre,the Republic of Cyprus,塞浦路斯,Cyprus,CYPRUS,,Asia,قبرص,Western Asia,Кипр,World,Nicosia,EU,.cy,"el-CY,tr-CY,en",146669.0,Cyprus,G4,cy,2.0,1237088.0,0.38863741898285187,0.36381752293935804

+ Czech Republic,CZE,CZE,420,CZE,xr,Yes,203.0,65,EZ,CZ,cz,CZE,CZE,CZ,la República Checa,True,,Tchéquie,République tchèque (la),Czech Koruna,Developed,Чешская Республика,Czech Republic (the),CZK,,República Checa (la),203,捷克共和国,la République tchèque,Чешская Республика,203.0,151.0,150.0,تشيكيا,2,الجمهورية التشيكية,捷克共和国,,,Chequia,the Czech Republic,捷克,Czechia,CZECHIA,,Europe,الجمهورية التشيكية,Eastern Europe,Чехия,World,Prague,EU,.cz,"cs,sk",3077311.0,Czechia,,cz,1.0,10686269.0,0.45866758644832145,0.4608363305845106

+ Germany,DEU,GER,49,DEU,gw,Yes,276.0,93,GM,DL,de,D,GER,D,la República Federal de Alemania,True,,Allemagne,Allemagne (l') [fém.],Euro,Developed,Федеративная Республика Германия,Germany,EUR,,Alemania,978,德意志联邦共和国,la République fédérale d'Allemagne,Германия,276.0,155.0,150.0,ألمانيا,2,جمهورية ألمانيا الاتحادية,德国,,,Alemania,the Federal Republic of Germany,德国,Germany,GERMANY,,Europe,ألمانيا,Western Europe,Германия,World,Berlin,EU,.de,de,2921044.0,Germany,2M,de,1.0,80457737.0,0.6826042347708354,0.6726057771062579

+ Djibouti,DJI,DJI,253,DJI,ft,Yes,262.0,70,DJ,DJ,dj,DJI,DJI,F,la República de Djibouti,True,14.0,Djibouti,Djibouti [masc.],Djibouti Franc,Developing,Республика Джибути,Djibouti,DJF,,Djibouti,262,吉布提共和国,la République de Djibouti,Джибути,262.0,202.0,2.0,جيبوتي,0,جمهورية جيبوتي,吉布提,,Eastern Africa,Djibouti,the Republic of Djibouti,吉布提,Djibouti,DJIBOUTI,x,Africa,جيبوتي,Sub-Saharan Africa,Джибути,World,Djibouti,AF,.dj,"fr-DJ,ar,so-DJ,aa",223816.0,Djibouti,1G,dj,2.0,884017.0,0.027508033357314478,0.023147595305219835

+ Dominica,DMA,DMA,1-767,DMA,dq,Yes,212.0,71,DO,DO,dm,DMA,DMA,WD,el Commonwealth de Dominica,True,29.0,Dominique,Dominique (la),East Caribbean Dollar,Developing,Содружество Доминики,Dominica,XCD,x,Dominica,951,多米尼克国,le Commonwealth de Dominique,Доминика,212.0,419.0,19.0,دومينيكا,2,كمنولث دومينيكا,多米尼克,,Caribbean,Dominica,the Commonwealth of Dominica,多米尼克,Dominica,DOMINICA,,Americas,دومينيكا,Latin America and the Caribbean,Доминика,World,Roseau,,.dm,en-DM,3575830.0,Dominica,G9,,,,,

+ Denmark,DNK,DEN,45,DNK,dk,Yes,208.0,69,DA,DN,dk,DNK,DEN,DK,el Reino de Dinamarca,True,,Danemark,Danemark (le),Danish Krone,Developed,Королевство Дания,Denmark,DKK,,Dinamarca,208,丹麦王国,le Royaume du Danemark,Дания,208.0,154.0,150.0,الدانمرك,2,مملكة الدانمرك,丹麦,,,Dinamarca,the Kingdom of Denmark,丹麦,Denmark,DENMARK,,Europe,الدانمرك,Northern Europe,Дания,World,Copenhagen,EU,.dk,"da-DK,en,fo,de-DK",2623032.0,Denmark,G7,dk,2.0,5809502.0,0.7974384424115439,0.7151454705472379

+ Dominican Republic,DOM,DOM,"1-809,1-829,1-849",DOM,dr,Yes,214.0,72,DR,DR,do,DOM,DOM,DOM,la República Dominicana,True,29.0,République dominicaine,République dominicaine (la),Dominican Peso,Developing,Доминиканская Республика,Dominican Republic (the),DOP,x,República Dominicana (la),214,多米尼加共和国,la République dominicaine,Доминиканская Республика,214.0,419.0,19.0,الجمهورية الدومينيكية,2,الجمهورية الدومينيكية,多米尼加,,Caribbean,República Dominicana,the Dominican Republic,多米尼加,Dominican Republic,DOMINICAN REPUBLIC,,Americas,الجمهورية الدومينيكية,Latin America and the Caribbean,Доминиканская Республика,World,Santo Domingo,,.do,es-DO,3508796.0,Dominican Republic,G8,do,1.0,10298756.0,0.5037842151053544,0.5263628039009203

+ Algeria,DZA,ALG,213,DZA,ae,Yes,12.0,4,AG,AL,dz,ALG,ALG,DZ,la República Argelina Democrática y Popular,True,,Algérie,Algérie (l') [fém.],Algerian Dinar,Developing,Алжирская Народная Демократическая Республика,Algeria,DZD,,Argelia,012,阿尔及利亚民主人民共和国,la République algérienne démocratique et populaire,Алжир,12.0,15.0,2.0,الجزائر,2,الجمهورية الجزائرية الديمقراطية الشعبية,阿尔及利亚,,,Argelia,the People's Democratic Republic of Algeria,阿尔及利亚,Algeria,ALGERIA,,Africa,الجزائر,Northern Africa,Алжир,World,Algiers,AF,.dz,ar-DZ,2589581.0,Algeria,B4,dz,2.0,41657488.0,0.26584064782830286,0.22198637628517215

+ Ecuador,ECU,ECU,593,ECU,ec,Yes,218.0,73,EC,EQ,ec,EQA,ECU,EC,la República del Ecuador,True,5.0,Équateur,Équateur (l') [masc.],US Dollar,Developing,Республика Эквадор,Ecuador,USD,,Ecuador (el),840,厄瓜多尔共和国,la République de l'Équateur,Эквадор,218.0,419.0,19.0,إكوادور,2,جمهورية إكوادور,厄瓜多尔,,South America,Ecuador,the Republic of Ecuador,厄瓜多尔,Ecuador,ECUADOR,,Americas,إكوادور,Latin America and the Caribbean,Эквадор,World,Quito,SA,.ec,es-EC,3658394.0,Ecuador,H1,ec,2.0,16498502.0,0.6200421108988977,0.6478311432626711

+ Egypt,EGY,EGY,20,EGY,ua,Yes,818.0,40765,EG,EG,eg,EGY,EGY,ET,la República Árabe de Egipto,True,,Égypte,Égypte (l') [fém.],Egyptian Pound,Developing,Арабская Республика Египет,Egypt,EGP,,Egipto,818,阿拉伯埃及共和国,la République arabe d'Égypte,Египет,818.0,15.0,2.0,مصر,2,جمهورية مصر العربية,埃及,,,Egipto,the Arab Republic of Egypt,埃及,Egypt,EGYPT,,Africa,مصر,Northern Africa,Египет,World,Cairo,AF,.eg,"ar-EG,en,fr",357994.0,Egypt,H2,eg,1.0,99413317.0,0.15278163594149777,0.1020135762336211

+ Eritrea,ERI,ERI,291,ERI,ea,Yes,232.0,77,ER, ,er,ERI,ERI,ER,el Estado de Eritrea,True,14.0,Érythrée,Érythrée (l') [fém.],Nakfa,Developing,Государство Эритрея,Eritrea,ERN,,Eritrea,232,厄立特里亚国,l'État d'Érythrée,Эритрея,232.0,202.0,2.0,إريتريا,2,دولة إريتريا,厄立特里亚,,Eastern Africa,Eritrea,the State of Eritrea,厄立特里亚,Eritrea,ERITREA,x,Africa,إريتريا,Sub-Saharan Africa,Эритрея,World,Asmara,AF,.er,"aa-ER,ar,tig,kun,ti-ER",338010.0,Eritrea,1J,er,2.0,5970646.0,0.007964149107588714,0.00531772897388025

+ Dhekelia Sovereign Base Area,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Spain,ESP,ESP,34,ESP,sp,Yes,724.0,229,SP,SP,es,E,ESP,E,el Reino de España,True,,Espagne,Espagne (l') [fém.],Euro,Developed,Королевство Испания,Spain,EUR,,España,978,西班牙王国,le Royaume d'Espagne,Испания,724.0,39.0,150.0,إسبانيا,2,مملكة إسبانيا,西班牙,,,España,the Kingdom of Spain,西班牙,Spain,SPAIN,,Europe,إسبانيا,Southern Europe,Испания,World,Madrid,EU,.es,"es-ES,ca,gl,eu,oc",2510769.0,Spain,U3,es,5.0,49331076.0,0.7476167910509105,0.7654312923667784

+ Estonia,EST,EST,372,EST,er,Yes,233.0,78,EN,EO,ee,EST,EST,EST,la República de Estonia,True,,Estonie,Estonie (l') [fém.],Euro,Developed,Эстонская Республика,Estonia,EUR,,Estonia,978,爱沙尼亚共和国,la République d'Estonie,Эстония,233.0,154.0,150.0,إستونيا,2,جمهورية إستونيا,爱沙尼亚,,,Estonia,the Republic of Estonia,爱沙尼亚,Estonia,ESTONIA,,Europe,إستونيا,Northern Europe,Эстония,World,Tallinn,EU,.ee,"et,ru",453733.0,Estonia,1H,ee,1.0,1244288.0,0.11761754243265088,0.07557491262610075

+ Ethiopia,ETH,ETH,251,ETH,et,Yes,231.0,79,ET,ET,et,ETH,ETH,ETH,la República Democrática Federal de Etiopía,True,14.0,Éthiopie,Éthiopie (l') [fém.],Ethiopian Birr,Developing,Федеративная Демократическая Республика Эфиопия,Ethiopia,ETB,,Etiopía,230,埃塞俄比亚联邦民主共和国,la République fédérale démocratique d'Éthiopie,Эфиопия,231.0,202.0,2.0,إثيوبيا,2,جمهورية إثيوبيا الديمقراطية الاتحادية,埃塞俄比亚,x,Eastern Africa,Etiopía,the Federal Democratic Republic of Ethiopia,埃塞俄比亚,Ethiopia,ETHIOPIA,x,Africa,إثيوبيا,Sub-Saharan Africa,Эфиопия,World,Addis Ababa,AF,.et,"am,en-ET,om-ET,ti-ET,so-ET,sid",337996.0,Ethiopia,H5,et,1.0,108386391.0,0.0,0.0

+ Finland,FIN,FIN,358,FIN,fi,Yes,246.0,84,FI,FI,fi,FIN,FIN,FIN,la República de Finlandia,True,,Finlande,Finlande (la),Euro,Developed,Финляндская Республика,Finland,EUR,,Finlandia,978,芬兰共和国,la République de Finlande,Финляндия,246.0,154.0,150.0,فنلندا,2,جمهورية فنلندا,芬兰,,,Finlandia,the Republic of Finland,芬兰,Finland,FINLAND,,Europe,فنلندا,Northern Europe,Финляндия,World,Helsinki,EU,.fi,"fi-FI,sv-FI,smn",660013.0,Finland,H9,fi,2.0,5537364.0,0.6637536357973528,0.6006505603630277

+ Fiji,FJI,FIJ,679,FJI,fj,Yes,242.0,83,FJ,FJ,fj,FJI,FIJ,FJI,la República de Fiji,True,,Fidji,Fidji (les) [fém.],Fiji Dollar,Developing,Республика  Фиджи,Fiji,FJD,x,Fiji,242,斐济共和国,la République des Fidji,Фиджи,242.0,54.0,9.0,فيجي,2,جمهورية فيجي,斐济,,,Fiji,the Republic of Fiji,斐济,Fiji,FIJI,,Oceania,فيجي,Melanesia,Фиджи,World,Suva,OC,.fj,"en-FJ,fj",2205218.0,Fiji,H8,fj,2.0,926276.0,0.0,0.0

+ Falkland Islands,FLK,FLK,500,FLK,fk,Territory of GB,238.0,81,FK,FK,fk,FLK,FLK, ,,True,5.0,Îles Falkland (Malvinas),,,Developing,,,,,,,,,,238.0,419.0,19.0,جزر فوكلاند (مالفيناس),,,,,South America,Islas Malvinas (Falkland),,福克兰群岛(马尔维纳斯),Falkland Islands (Malvinas),,,Americas,,Latin America and the Caribbean,Фолклендские (Мальвинские) острова,World,Stanley,SA,.fk,en-FK,3474414.0,Falkland Islands,,,,,,

+ France,FRA,FRA,33,FRA,fr,Yes,250.0,85,FR,FR,fr,F,FRA,F,la República Francesa,True,,France,France (la),Euro,Developed,Французская Республика,France,EUR,,Francia,978,法兰西共和国,la République française,Франция,250.0,155.0,150.0,فرنسا,2,الجمهورية الفرنسية,法国,,,Francia,the French Republic,法国,France,FRANCE,,Europe,فرنسا,Western Europe,Франция,World,Paris,EU,.fr,"fr-FR,frp,br,co,ca,eu,oc",3017382.0,France,I0,fr,1.0,67364357.0,0.7205504275440285,0.7013051905437785

+ Faroe Islands,FRO,FRO,298,FRO,fa,Part of DK,234.0,82,FO,FA,fo,FRO,FAR,FO,,True,,Îles Féroé,,Danish Krone,Developed,,,DKK,,,208,,,,234.0,154.0,150.0,جزر فايرو,2,,,,,Islas Feroe,,法罗群岛,Faroe Islands,FAROE ISLANDS,,Europe,,Northern Europe,Фарерские острова,World,Torshavn,EU,.fo,"fo,da-FO",2622320.0,Faroe Islands,H6,fo,1.0,51018.0,0.0,0.0

+ Federated States of Micronesia,FSM,FSM,691,FSM,fm,Yes,583.0,163,FM, ,fm,FSM,FSM, ,los Estados Federados de Micronesia,True,,Micronésie (États fédérés de),Micronésie (États fédérés de),US Dollar,Developing,Федеративные Штаты Микронезии,Micronesia (Federated States of),USD,x,Micronesia (Estados Federados de),840,密克罗尼西亚联邦,les États fédérés de Micronésie,Микронезия (Федеративные Штаты),583.0,57.0,9.0,ميكرونيزيا (ولايات - الموحدة),2,ولايات ميكرونيزيا الموحدة,密克罗尼西亚(联邦),,,Micronesia (Estados Federados de),the Federated States of Micronesia,密克罗尼西亚(联邦),Micronesia (Federated States of),MICRONESIA (FEDERATED STATES OF),,Oceania,ميكرونيزيا (ولايات - الموحدة),Micronesia,Микронезия (Федеративные Штаты),World,Palikir,OC,.fm,"en-FM,chk,pon,yap,kos,uli,woe,nkr,kpg",2081918.0,Micronesia,,,,,,

+ Gabon,GAB,GAB,241,GAB,go,Yes,266.0,89,GB,GO,ga,GAB,GAB,G,la República Gabonesa,True,17.0,Gabon,Gabon (le),CFA Franc BEAC,Developing,Габонская Республика,Gabon,XAF,,Gabón (el),950,加蓬共和国,la République gabonaise,Габон,266.0,202.0,2.0,غابون,0,جمهورية الغابون,加蓬,,Middle Africa,Gabón,the Gabonese Republic,加蓬,Gabon,GABON,,Africa,غابون,Sub-Saharan Africa,Габон,World,Libreville,AF,.ga,fr-GA,2400553.0,Gabon,I5,ga,1.0,2119036.0,0.4585320902552909,0.44628512125513176

+ United Kingdom,GBR,"ENG,NIR,SCO,WAL",44,GBR,xxk,Yes,826.0,256,UK,UK,gb,G,GBR,GB,el Reino Unido de Gran Bretaña e Irlanda del Norte,True,,Royaume-Uni de Grande-Bretagne et d'Irlande du Nord,Royaume-Uni de Grande-Bretagne et d'Irlande du Nord (le),Pound Sterling,Developed,Соединенное Королевство Великобритании и Северной Ирландии,United Kingdom of Great Britain and Northern Ireland (the),GBP,,Reino Unido de Gran Bretaña e Irlanda del Norte (el),826,大不列颠及北爱尔兰联合王国,le Royaume-Uni de Grande- Bretagne et d'Irlande du Nord,Соединенное Королевство Великобритании и Северной Ирландии,826.0,154.0,150.0,المملكة المتحدة لبريطانيا العظمى وآيرلندا الشمالية,2,المملكة المتحدة لبريطانيا العظمى وآيرلندا الشمالية,大不列颠及北爱尔兰联合王国,,,Reino Unido de Gran Bretaña e Irlanda del Norte,the United Kingdom of Great Britain and Northern Ireland,大不列颠及北爱尔兰联合王国,United Kingdom of Great Britain and Northern Ireland,UNITED KINGDOM OF GREAT BRITAIN AND NORTHERN IRELAND,,Europe,المملكة المتحدة لبريطانيا العظمى وآيرلندا الشمالية,Northern Europe,Соединенное Королевство Великобритании и Северной Ирландии,World,London,EU,.uk,"en-GB,cy-GB,gd",2635167.0,UK,,,,,,

+ Georgia,GEO,GEO,995,GEO,gs,Yes,268.0,92,GG,GG,ge,GEO,GEO,GE,Georgia,True,,Géorgie,Géorgie (la),Lari,Developing,Грузия,Georgia,GEL,,Georgia,981,格鲁吉亚,la Géorgie,Грузия,268.0,145.0,142.0,جورجيا,2,جورجيا,格鲁吉亚,,,Georgia,Georgia,格鲁吉亚,Georgia,GEORGIA,,Asia,جورجيا,Western Asia,Грузия,World,Tbilisi,AS,.ge,"ka,ru,hy,az",614540.0,Georgia,2Q,ge,3.0,4926087.0,0.08647416460316398,0.0477442356967104

+ Guernsey,GGY,GBG,44,GGY,uik,Crown dependency of GB,831.0,104,GK, ,gg, , ,GBG,,True,830.0,Guernesey,,Pound Sterling,Developed,,,GBP,,,826,,,,831.0,154.0,150.0,غيرنزي,2,,,,Channel Islands,Guernsey,,根西,Guernsey,GUERNSEY,,Europe,,Northern Europe,Гернси,World,St Peter Port,EU,.gg,"en,nrf",3042362.0,Guernsey,Y7,,,,,

+ Ghana,GHA,GHA,233,GHA,gh,Yes,288.0,94,GH,GH,gh,GHA,GHA,GH,la República de Ghana,True,11.0,Ghana,Ghana (le),Ghana Cedi,Developing,Республика Гана,Ghana,GHS,,Ghana,936,加纳共和国,la République du Ghana,Гана,288.0,202.0,2.0,غانا,2,جمهورية غانا,加纳,,Western Africa,Ghana,the Republic of Ghana,加纳,Ghana,GHANA,,Africa,غانا,Sub-Saharan Africa,Гана,World,Accra,AF,.gh,"en-GH,ak,ee,tw",2300660.0,Ghana,J0,gh,3.0,28102471.0,0.0,0.0

+ Gibraltar,GIB,GBZ,350,GIB,gi,Territory of GB,292.0,95,GI,GI,gi,GIB,GIB,GBZ,,True,,Gibraltar,,Gibraltar Pound,Developed,,,GIP,,,292,,,,292.0,39.0,150.0,جبل طارق,2,,,,,Gibraltar,,直布罗陀,Gibraltar,GIBRALTAR,,Europe,,Southern Europe,Гибралтар,World,Gibraltar,EU,.gi,"en-GI,es,it,pt",2411586.0,Gibraltar,J1,,,,,

+ Guinea,GIN,GUI,224,GIN,gv,Yes,324.0,106,GV,GN,gn,GUI,GUI,RG,la República de Guinea,True,11.0,Guinée,Guinée (la),Guinean Franc,Developing,Гвинейская Республика,Guinea,GNF,,Guinea,324,几内亚共和国,la République de Guinée,Гвинея,324.0,202.0,2.0,غينيا,0,جمهورية غينيا,几内亚,,Western Africa,Guinea,the Republic of Guinea,几内亚,Guinea,GUINEA,x,Africa,غينيا,Sub-Saharan Africa,Гвинея,World,Conakry,AF,.gn,fr-GN,2420477.0,Guinea,J9,gn,1.0,11855411.0,0.21107032726037198,0.20543283359363207

+ Gambia,GMB,GAM,220,GMB,gm,Yes,270.0,90,GA,GB,gm,GMB,GAM,WAG,la República de Gambia,True,11.0,Gambie,Gambie (la),Dalasi,Developing,Республика Гамбия,Gambia (the),GMD,,Gambia,270,冈比亚共和国,la République de Gambie,Гамбия,270.0,202.0,2.0,غامبيا,2,جمهورية غامبيا,冈比亚,,Western Africa,Gambia,the Republic of the Gambia,冈比亚,Gambia,GAMBIA,x,Africa,غامبيا,Sub-Saharan Africa,Гамбия,World,Banjul,AF,.gm,"en-GM,mnk,wof,wo,ff",2413451.0,Gambia,I6,,,,,

+ Guinea Bissau,GNB,GNB,245,GNB,pg,Yes,624.0,105,PU,GW,gw,GNB,GBS,GW,la República de Guinea-Bissau,True,11.0,Guinée-Bissau,Guinée-Bissau (la),CFA Franc BCEAO,Developing,Республика Гвинея-Бисау,Guinea-Bissau,XOF,x,Guinea-Bissau,952,几内亚比绍共和国,la République de Guinée-Bissau,Гвинея-Бисау,624.0,202.0,2.0,غينيا - بيساو,0,جمهورية غينيا - بيساو,几内亚比绍,,Western Africa,Guinea-Bissau,the Republic of Guinea-Bissau,几内亚比绍,Guinea-Bissau,GUINEA-BISSAU,x,Africa,غينيا - بيساو,Sub-Saharan Africa,Гвинея-Бисау,World,Bissau,AF,.gw,"pt-GW,pov",2372248.0,Guinea-Bissau,S0,gw,1.0,1833247.0,0.3396465361469042,0.31882782466546944

+ Equatorial Guinea,GNQ,EQG,240,GNQ,eg,Yes,226.0,76,EK,GQ,gq,GNE,GEQ,EQ,la República de Guinea Ecuatorial,True,17.0,Guinée équatoriale,Guinée équatoriale (la),CFA Franc BEAC,Developing,Республика Экваториальная Гвинея,Equatorial Guinea,XAF,,Guinea Ecuatorial,950,赤道几内亚共和国,la République de Guinée équatoriale,Экваториальная Гвинея,226.0,202.0,2.0,غينيا الاستوائية,0,جمهورية غينيا الاستوائية,赤道几内亚,,Middle Africa,Guinea Ecuatorial,the Republic of Equatorial Guinea,赤道几内亚,Equatorial Guinea,EQUATORIAL GUINEA,,Africa,غينيا الاستوائية,Sub-Saharan Africa,Экваториальная Гвинея,World,Malabo,AF,.gq,"es-GQ,fr",2309096.0,Equatorial Guinea,H4,gq,2.0,797457.0,0.6259620898949286,0.6494352127412427

+ Greece,GRC,GRE,30,GRC,gr,Yes,300.0,97,GR,GR,gr,GRC,GRE,GR,la República Helénica,True,,Grèce,Grèce (la),Euro,Developed,Греческая Республика,Greece,EUR,,Grecia,978,希腊共和国,la République hellénique,Греция,300.0,39.0,150.0,اليونان,2,الجمهورية الهيلينية,希腊,,,Grecia,the Hellenic Republic,希腊,Greece,GREECE,,Europe,اليونان,Southern Europe,Греция,World,Athens,EU,.gr,"el-GR,en,fr",390903.0,Greece,J3,gr,1.0,10761523.0,0.30402967325443114,0.3018339361750836

+ Grenada,GRD,GRN,1-473,GRD,gd,Yes,308.0,99,GJ,GD,gd,GRD,GRN,WG,Granada,True,29.0,Grenade,Grenade (la),East Caribbean Dollar,Developing,Гренада,Grenada,XCD,x,Granada,951,格林纳达,la Grenade,Гренада,308.0,419.0,19.0,غرينادا,2,غرينادا,格林纳达,,Caribbean,Granada,Grenada,格林纳达,Grenada,GRENADA,,Americas,غرينادا,Latin America and the Caribbean,Гренада,World,St. George's,,.gd,en-GD,3580239.0,Grenada,J5,,,,,

+ Greenland,GRL,GRL,299,GRL,gl,Part of DK,304.0,98,GL,GL,gl,GRL,GRL,DK,,True,,Groenland,,Danish Krone,Developed,,,DKK,,,208,,,,304.0,21.0,19.0,غرينلند,2,,,,,Groenlandia,,格陵兰,Greenland,GREENLAND,,Americas,,Northern America,Гренландия,World,Nuuk,,.gl,"kl,da-GL,en",3425505.0,Greenland,J4,gl,1.0,57691.0,0.0,0.0

+ Guatemala,GTM,GUA,502,GTM,gt,Yes,320.0,103,GT,GU,gt,GTM,GUA,GCA,la República de Guatemala,True,13.0,Guatemala,Guatemala (le),Quetzal,Developing,Республика Гватемала,Guatemala,GTQ,,Guatemala,320,危地马拉共和国,la République du Guatemala,Гватемала,320.0,419.0,19.0,غواتيمالا,2,جمهورية غواتيمالا,危地马拉,,Central America,Guatemala,the Republic of Guatemala,危地马拉,Guatemala,GUATEMALA,,Americas,غواتيمالا,Latin America and the Caribbean,Гватемала,World,Guatemala City,,.gt,es-GT,3595528.0,Guatemala,J8,gt,2.0,16581273.0,0.6006657949333073,0.6275864200357127

+ Guam,GUM,GUM,1-671,GUM,gu,Territory of US,316.0,101,GQ,GM,gu,GUM,GUM,USA,,True,,Guam,,US Dollar,Developing,,,USD,x,,840,,,,316.0,57.0,9.0,غوام,2,,,,,Guam,,关岛,Guam,GUAM,,Oceania,,Micronesia,Гуам,World,Hagatna,OC,.gu,"en-GU,ch-GU",4043988.0,Guam,GU,gu,1.0,167772.0,0.0,0.0

+ Guyana,GUY,GUY,592,GUY,gy,Yes,328.0,107,GY,GY,gy,GUY,GUY,GUY,la República de Guyana,True,5.0,Guyana,Guyana (le),Guyana Dollar,Developing,Республика Гайана,Guyana,GYD,x,Guyana,328,圭亚那共和国,la République du Guyana,Гайана,328.0,419.0,19.0,غيانا,2,جمهورية غيانا,圭亚那,,South America,Guyana,the Republic of Guyana,圭亚那,Guyana,GUYANA,,Americas,غيانا,Latin America and the Caribbean,Гайана,World,Georgetown,SA,.gy,en-GY,3378535.0,Guyana,K0,,,,,

+ Hong Kong S.A.R.,HKG,HKG,852,HKG, ,Part of CN,344.0,33364,HK,HK,hk,HKG,HKG,HK,,True,,"Chine, région administrative spéciale de Hong Kong",,Hong Kong Dollar,Developing,,,HKD,,,344,,,,344.0,30.0,142.0,منطقة هونغ كونغ الصينية الإدارية الخاصة,2,,,,,"China, región administrativa especial de Hong Kong",,中国香港特别行政区,"China, Hong Kong Special Administrative Region",HONG KONG,,Asia,,Eastern Asia,"Китай, Специальный административный район Гонконг",World,Hong Kong,AS,.hk,"zh-HK,yue,zh,en",1819730.0,Hong Kong,K3,hk,1.0,7213338.0,0.0,0.0

+ Heard Island and McDonald Islands,HMD,,672,HMD,hm,Territory of AU,334.0,109,HM, ,hm, , ,AUS,,True,,Île Heard-et-Îles MacDonald,,Australian Dollar,Developed,,,AUD,,,036,,,,334.0,53.0,9.0,جزيرة هيرد وجزر ماكدونالد,2,,,,,Islas Heard y McDonald,,赫德岛和麦克唐纳岛,Heard Island and McDonald Islands,HEARD ISLAND AND MCDONALD ISLANDS,,Oceania,,Australia and New Zealand,Остров Херд и острова Макдональд,World,,AN,.hm,,1547314.0,Heard & McDonald Islands,K4,,,,,

+ Honduras,HND,HON,504,HND,ho,Yes,340.0,111,HO,HO,hn,HND,HON, ,la República de Honduras,True,13.0,Honduras,Honduras (le),Lempira,Developing,Республика Гондурас,Honduras,HNL,,Honduras,340,洪都拉斯共和国,la République du Honduras,Гондурас,340.0,419.0,19.0,هندوراس,2,جمهورية هندوراس,洪都拉斯,,Central America,Honduras,the Republic of Honduras,洪都拉斯,Honduras,HONDURAS,,Americas,هندوراس,Latin America and the Caribbean,Гондурас,World,Tegucigalpa,,.hn,"es-HN,cab,miq",3608932.0,Honduras,K2,hn,1.0,9182766.0,0.5037842151053544,0.5263628039009203

+ Croatia,HRV,CRO,385,HRV,ci,Yes,191.0,62,HR,RH,hr,HRV,CRO,HR,la República de Croacia,True,,Croatie,Croatie (la),Kuna,Developed,Республика Хорватия,Croatia,HRK,,Croacia,191,克罗地亚共和国,la République de Croatie,Хорватия,191.0,39.0,150.0,كرواتيا,2,جمهورية كرواتيا,克罗地亚,,,Croacia,the Republic of Croatia,克罗地亚,Croatia,CROATIA,,Europe,كرواتيا,Southern Europe,Хорватия,World,Zagreb,EU,.hr,"hr-HR,sr",3202326.0,Croatia,1M,hr,2.0,4270480.0,0.2683916335165203,0.2117345379890487

+ Haiti,HTI,HAI,509,HTI,ht,Yes,332.0,108,HA,HA,ht,HTI,HAI,RH,la República de Haití,True,29.0,Haïti,Haïti [masc.],"Gourde,US Dollar",Developing,Республика Гаити,Haiti,"HTG,USD",x,Haití,"332,840",海地共和国,la République d'Haïti,Гаити,332.0,419.0,19.0,هايتي,"2,2",جمهورية هايتي,海地,,Caribbean,Haití,the Republic of Haiti,海地,Haiti,HAITI,x,Americas,هايتي,Latin America and the Caribbean,Гаити,World,Port-au-Prince,,.ht,"ht,fr-HT",3723988.0,Haiti,K1,ht,2.0,10788440.0,0.03420794959047408,0.033294286823795545

+ Hungary,HUN,HUN,36,HUN,hu,Yes,348.0,113,HU,HU,hu,HNG,HUN,H,Hungría,True,,Hongrie,Hongrie (la),Forint,Developed,Венгрия,Hungary,HUF,,Hungría,348,匈牙利,la Hongrie,Венгрия,348.0,151.0,150.0,هنغاريا,2,هنغاريا,匈牙利,,,Hungría,Hungary,匈牙利,Hungary,HUNGARY,,Europe,هنغاريا,Eastern Europe,Венгрия,World,Budapest,EU,.hu,hu-HU,719819.0,Hungary,K5,hu,1.0,9825704.0,0.3972427142482072,0.3745029311166393

+ Indonesia,IDN,IDN,62,IDN,io,Yes,360.0,116,ID,ID,id,INS,INA,RI,la República de Indonesia,True,,Indonésie,Indonésie (l') [fém.],Rupiah,Developing,Республика Индонезия,Indonesia,IDR,,Indonesia,360,印度尼西亚共和国,la République d'Indonésie,Индонезия,360.0,35.0,142.0,إندونيسيا,2,جمهورية إندونيسيا,印度尼西亚,,,Indonesia,the Republic of Indonesia,印度尼西亚,Indonesia,INDONESIA,,Asia,إندونيسيا,South-eastern Asia,Индонезия,World,Jakarta,AS,.id,"id,en,nl,jv",1643084.0,Indonesia,K8,id,1.0,262787403.0,0.2878482772112083,0.23967210835211386

+ Isle of Man,IMN,GBM,44,IMN,uik,Crown dependency of GB,833.0,120,IM, ,im, , ,GBM,,True,,Île de Man,,Pound Sterling,Developed,,,GBP,,,826,,,,833.0,154.0,150.0,جزيرة مان,2,,,,,Isla de Man,,马恩岛,Isle of Man,ISLE OF MAN,,Europe,,Northern Europe,Остров Мэн,World,Douglas,EU,.im,"en,gv",3042225.0,Isle of Man,Y8,im,1.0,89407.0,0.00026594756724334604,0.00020796475566863342

+ India,IND,IND,91,IND,ii,Yes,356.0,115,IN,IN,in,IND,IND,IND,la República de la India,True,,Inde,Inde (l') [fém.],Indian Rupee,Developing,Республика Индия,India,INR,,India (la),356,印度共和国,la République de l'Inde,Индия,356.0,34.0,142.0,الهند,2,جمهورية الهند,印度,,,India,the Republic of India,印度,India,INDIA,,Asia,الهند,Southern Asia,Индия,World,New Delhi,AS,.in,"en-IN,hi,bn,te,mr,ta,ur,gu,kn,ml,or,pa,as,bh,sat,ks,ne,sd,kok,doi,mni,sit,sa,fr,lus,inc",1269750.0,India,K7,in,13.0,1296834042.0,0.19679703287641134,0.1483453054444732

+ Indian Ocean Territories,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ British Indian Ocean Territory,IOT,,246,IOT,bi,Territory of GB,86.0,38,IO, ,io,BIO, , ,,True,14.0,Territoire britannique de l'océan Indien,,US Dollar,Developing,,,USD,,,840,,,,86.0,202.0,2.0,المحيط الهندي الإقليم البريطاني في,2,,,,Eastern Africa,Territorio Británico del Océano Índico,,英属印度洋领土,British Indian Ocean Territory,BRITISH INDIAN OCEAN TERRITORY,,Africa,,Sub-Saharan Africa,Британская территория в Индийском океане,World,Diego Garcia,AS,.io,en-IO,1282588.0,British Indian Ocean Territory,D6,,,,,

+ Ireland,IRL,IRL,353,IRL,ie,Yes,372.0,119,EI,IE,ie,IRL,IRL,IRL,Irlanda,True,,Irlande,Irlande (l') [fém.],Euro,Developed,Ирландия,Ireland,EUR,,Irlanda,978,爱尔兰,l'Irlande,Ирландия,372.0,154.0,150.0,آيرلندا,2,آيرلندا,爱尔兰,,,Irlanda,Ireland,爱尔兰,Ireland,IRELAND,,Europe,آيرلندا,Northern Europe,Ирландия,World,Dublin,EU,.ie,"en-IE,ga-IE",2963597.0,Ireland,L2,ie,1.0,5068050.0,0.01948241689789909,0.0108590367758904

+ Iran,IRN,IRN,98,IRN,ir,Yes,364.0,117,IR,IR,ir,IRN,IRI,IR,la República Islámica del Irán,True,,Iran (République islamique d'),Iran (République islamique d'),Iranian Rial,Developing,Исламская Республика Иран,Iran (Islamic Republic of),IRR,,Irán (República Islámica del),364,伊朗伊斯兰共和国,la République islamique d'Iran,Иран (Исламская Республика),364.0,34.0,142.0,إيران (جمهورية - الإسلامية),2,جمهورية إيران الإسلامية,伊朗(伊斯兰共和国),,,Irán (República Islámica del),the Islamic Republic of Iran,伊朗(伊斯兰共和国),Iran (Islamic Republic of),IRAN (ISLAMIC REPUBLIC OF),,Asia,إيران (جمهورية - الإسلامية),Southern Asia,Иран (Исламская Республика),World,Tehran,AS,.ir,"fa-IR,ku",130758.0,Iran,,ir,1.0,83024745.0,0.10291558772503334,0.061361404901078

+ Iraq,IRQ,IRQ,964,IRQ,iq,Yes,368.0,118,IZ,IQ,iq,IRQ,IRQ,IRQ,la República del Iraq,True,,Iraq,Iraq (l') [masc.],Iraqi Dinar,Developing,Республика Ирак,Iraq,IQD,,Iraq (el),368,伊拉克共和国,la République d'Iraq,Ирак,368.0,145.0,142.0,العراق,3,جمهورية العراق,伊拉克,,,Iraq,the Republic of Iraq,伊拉克,Iraq,IRAQ,,Asia,العراق,Western Asia,Ирак,World,Baghdad,AS,.iq,"ar-IQ,ku,hy",99237.0,Iraq,L0,iq,3.0,40194216.0,0.11052288557470052,0.07379705514772592

+ Iceland,ISL,ISL,354,ISL,ic,Yes,352.0,114,IC,IL,is,ISL,ISL,IS,la República de Islandia,True,,Islande,Islande (l') [fém.],Iceland Krona,Developed,Республика Исландия,Iceland,ISK,,Islandia,352,冰岛共和国,la République d'Islande,Исландия,352.0,154.0,150.0,آيسلندا,0,جمهورية آيسلندا,冰岛,,,Islandia,the Republic of Iceland,冰岛,Iceland,ICELAND,,Europe,آيسلندا,Northern Europe,Исландия,World,Reykjavik,EU,.is,"is,en,de,da,sv,no",2629691.0,Iceland,K6,is,1.0,343518.0,0.13854897579910322,0.06643468705645346

+ Israel,ISR,ISR,972,ISR,is,Yes,376.0,121,IS,IS,il,ISR,ISR,IL,el Estado de Israel,True,,Israël,Israël [masc.],New Israeli Sheqel,Developed,Государство Израиль,Israel,ILS,,Israel,376,以色列国,l'État d'Israël,Израиль,376.0,145.0,142.0,إسرائيل,2,دولة إسرائيل,以色列,,,Israel,the State of Israel,以色列,Israel,ISRAEL,,Asia,إسرائيل,Western Asia,Израиль,World,Jerusalem,AS,.il,"he,ar-IL,en-IL,",294640.0,Israel,L3,il,2.0,8424904.0,0.2188757728482515,0.14935060970956762

+ Italy,ITA,ITA,39,ITA,it,Yes,380.0,122,IT,IY,it,I,ITA,I,la República Italiana,True,,Italie,Italie (l') [fém.],Euro,Developed,Итальянская Республика,Italy,EUR,,Italia,978,意大利共和国,la République italienne,Италия,380.0,39.0,150.0,إيطاليا,2,جمهورية إيطاليا,意大利,,,Italia,the Republic of Italy,意大利,Italy,ITALY,,Europe,إيطاليا,Southern Europe,Италия,World,Rome,EU,.it,"it-IT,de-IT,fr-IT,sc,ca,co,sl",3175395.0,Italy,L6,it,4.0,62246674.0,0.5510414909199546,0.4731235844804495

+ Jamaica,JAM,JAM,1-876,JAM,jm,Yes,388.0,123,JM,JM,jm,JMC,JAM,JA,Jamaica,True,29.0,Jamaïque,Jamaïque (la),Jamaican Dollar,Developing,Ямайка,Jamaica,JMD,x,Jamaica,388,牙买加,la Jamaïque,Ямайка,388.0,419.0,19.0,جامايكا,2,جامايكا,牙买加,,Caribbean,Jamaica,Jamaica,牙买加,Jamaica,JAMAICA,,Americas,جامايكا,Latin America and the Caribbean,Ямайка,World,Kingston,,.jm,en-JM,3489940.0,Jamaica,L8,,,,,

+ Jersey,JEY,GBJ,44,JEY,uik,Crown dependency of GB,832.0,128,JE, ,je, , ,GBJ,,True,830.0,Jersey,,Pound Sterling,Developed,,,GBP,,,826,,,,832.0,154.0,150.0,جيرزي,2,,,,Channel Islands,Jersey,,泽西,Jersey,JERSEY,,Europe,,Northern Europe,Джерси,World,Saint Helier,EU,.je,"en,fr,nrf",3042142.0,Jersey,Y9,,,,,

+ Jordan,JOR,JOR,962,JOR,jo,Yes,400.0,130,JO,JD,jo,JOR,JOR,HKJ,el Reino Hachemita de Jordania,True,,Jordanie,Jordanie (la),Jordanian Dinar,Developing,Иорданское Хашимитское Королевство,Jordan,JOD,,Jordania,400,约旦哈希姆王国,le Royaume hachémite de Jordanie,Иордания,400.0,145.0,142.0,الأردن,3,المملكة الأردنية الهاشمية,约旦,,,Jordania,the Hashemite Kingdom of Jordan,约旦,Jordan,JORDAN,,Asia,الأردن,Western Asia,Иордания,World,Amman,AS,.jo,"ar-JO,en",248816.0,Jordan,M2,jo,1.0,10458413.0,0.16253365525691252,0.10852508109959692

+ Japan,JPN,JPN,81,JPN,ja,Yes,392.0,126,JA,JP,jp,J,JPN,J,el Japón,True,,Japon,Japon (le),Yen,Developed,Япония,Japan,JPY,,Japón (el),392,日本国,le Japon,Япония,392.0,30.0,142.0,اليابان,0,اليابان,日本,,,Japón,Japan,日本,Japan,JAPAN,,Asia,اليابان,Eastern Asia,Япония,World,Tokyo,AS,.jp,ja,1861060.0,Japan,M0,jp,1.0,126168156.0,0.4225553284701594,0.37456007814050024

+ Baykonur Cosmodrome,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Siachen Glacier,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Kazakhstan,KAZ,KAZ,7,KAZ,kz,Yes,398.0,132,KZ,KZ,kz,KAZ,KAZ,KZ,la República de Kazajstán,True,,Kazakhstan,Kazakhstan (le),Tenge,Developing,Республика Казахстан,Kazakhstan,KZT,,Kazajstán,398,哈萨克斯坦共和国,la République du Kazakhstan,Казахстан,398.0,143.0,142.0,كازاخستان,2,جمهورية كازاخستان,哈萨克斯坦,x,,Kazajstán,the Republic of Kazakhstan,哈萨克斯坦,Kazakhstan,KAZAKHSTAN,,Asia,كازاخستان,Central Asia,Казахстан,World,Astana,AS,.kz,"kk,ru",1522867.0,Kazakhstan,,kz,2.0,18744548.0,0.4802817002918934,0.45575629931474443

+ Kenya,KEN,KEN,254,KEN,ke,Yes,404.0,133,KE,KN,ke,KEN,KEN,EAK,la República de Kenya,True,14.0,Kenya,Kenya (le),Kenyan Shilling,Developing,Республика Кения,Kenya,KES,,Kenya,404,肯尼亚共和国,la République du Kenya,Кения,404.0,202.0,2.0,كينيا,2,جمهورية كينيا,肯尼亚,,Eastern Africa,Kenya,the Republic of Kenya,肯尼亚,Kenya,KENYA,,Africa,كينيا,Sub-Saharan Africa,Кения,World,Nairobi,AF,.ke,"en-KE,sw-KE",192950.0,Kenya,M3,ke,1.0,48397527.0,0.0,0.0

+ Kyrgyzstan,KGZ,KGZ,996,KGZ,kg,Yes,417.0,138,KG,KG,kg,KGZ,KGZ,KS,la República Kirguisa,True,,Kirghizistan,Kirghizistan (le),Som,Developing,Кыргызская Республика,Kyrgyzstan,KGS,,Kirguistán,417,吉尔吉斯共和国,la République kirghize,Кыргызстан,417.0,143.0,142.0,قيرغيزستان,2,جمهورية قيرغيزستان,吉尔吉斯斯坦,x,,Kirguistán,the Kyrgyz Republic,吉尔吉斯斯坦,Kyrgyzstan,KYRGYZSTAN,,Asia,قيرغيزستان,Central Asia,Кыргызстан,World,Bishkek,AS,.kg,"ky,uz,ru",1527747.0,Kyrgyzstan,1N,kg,2.0,5849296.0,0.22959191553109667,0.21619492391984493

+ Cambodia,KHM,CAM,855,KHM,cb,Yes,116.0,44,CB,KP,kh,CBG,CAM,K,el Reino de Camboya,True,,Cambodge,Cambodge (le),Riel,Developing,Королевство Камбоджа,Cambodia,KHR,,Camboya,116,柬埔寨王国,le Royaume du Cambodge,Камбоджа,116.0,35.0,142.0,كمبوديا,2,مملكة كمبوديا,柬埔寨,,,Camboya,the Kingdom of Cambodia,柬埔寨,Cambodia,CAMBODIA,x,Asia,كمبوديا,South-eastern Asia,Камбоджа,World,Phnom Penh,AS,.kh,"km,fr,en",1831722.0,Cambodia,E3,kh,1.0,16449519.0,0.06520285818717213,0.051207972772919434

+ Kiribati,KIR,KIR,686,KIR,gb,Yes,296.0,135,KR,KB,ki,KIR,KIR, ,la República de Kiribati,True,,Kiribati,Kiribati [fém.],Australian Dollar,Developing,Республика Кирибати,Kiribati,AUD,x,Kiribati,036,基里巴斯共和国,la République de Kiribati,Кирибати,296.0,57.0,9.0,كيريباس,2,جمهورية كيريباس,基里巴斯,,,Kiribati,the Republic of Kiribati,基里巴斯,Kiribati,KIRIBATI,x,Oceania,كيريباس,Micronesia,Кирибати,World,Tarawa,OC,.ki,"en-KI,gil",4030945.0,Kiribati,J2,ki,1.0,109367.0,0.0,0.0

+ Saint Kitts and Nevis,KNA,SKN,1-869,KNA,xd,Yes,659.0,208,SC,AT,kn,KNA,SKN,KN,Saint Kitts y Nevis,True,29.0,Saint-Kitts-et-Nevis,Saint-Kitts-et-Nevis [masc.],East Caribbean Dollar,Developing,Сент-Китс и Невис,Saint Kitts and Nevis,XCD,x,Saint Kitts y Nevis,951,圣基茨和尼维斯,Saint-Kitts-et-Nevis [masc.],Сент-Китс и Невис,659.0,419.0,19.0,سانت كيتس ونيفس,2,سانت كيتس ونيفس,圣基茨和尼维斯,,Caribbean,Saint Kitts y Nevis,Saint Kitts and Nevis,圣基茨和尼维斯,Saint Kitts and Nevis,SAINT KITTS AND NEVIS,,Americas,سانت كيتس ونيفس,Latin America and the Caribbean,Сент-Китс и Невис,World,Basseterre,,.kn,en-KN,3575174.0,St. Kitts & Nevis,U7,,,,,

+ South Korea,KOR,KOR,82,KOR,ko,Yes,410.0,202,KS,KO,kr,KOR,KOR,ROK,la República de Corea,True,,République de Corée,République de Corée (la),Won,Developing,Республика Корея,Republic of Korea (the),KRW,,República de Corea (la),410,大韩民国,la République de Corée,Республика Корея,410.0,30.0,142.0,جمهورية كوريا,0,جمهورية كوريا,大韩民国,,,República de Corea,the Republic of Korea,大韩民国,Republic of Korea,KOREA (THE REPUBLIC OF),,Asia,جمهورية كوريا,Eastern Asia,Республика Корея,World,Seoul,AS,.kr,"ko-KR,en",1835841.0,South Korea,,kr,1.0,51418097.0,0.3045112201349814,0.2854409053987828

+ Kosovo,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Kuwait,KWT,KUW,965,KWT,ku,Yes,414.0,137,KU,KW,kw,KWT,KUW,KWT,el Estado de Kuwait,True,,Koweït,Koweït (le),Kuwaiti Dinar,Developing,Государство Кувейт,Kuwait,KWD,,Kuwait,414,科威特国,l'État du Koweït,Кувейт,414.0,145.0,142.0,الكويت,3,دولة الكويت,科威特,,,Kuwait,the State of Kuwait,科威特,Kuwait,KUWAIT,,Asia,الكويت,Western Asia,Кувейт,World,Kuwait City,AS,.kw,"ar-KW,en",285570.0,Kuwait,M6,kw,1.0,2916467.0,0.16253365525691252,0.10852508109959692

+ Laos,LAO,LAO,856,LAO,ls,Yes,418.0,139,LA,LA,la,LAO,LAO,LAO,la República Democrática Popular Lao,True,,République démocratique populaire lao,République démocratique populaire lao (la),Lao Kip,Developing,Лаосская Народно-Демократическая Республика,Lao People's Democratic Republic (the),LAK,,República Democrática Popular Lao (la),418,老挝人民民主共和国,la République démocratique populaire lao,Лаосская Народно-Демократическая Республика,418.0,35.0,142.0,جمهورية لاو الديمقراطية الشعبية,2,جمهورية لاو الديمقراطية الشعبية,老挝人民民主共和国,x,,República Democrática Popular Lao,the Lao People's Democratic Republic,老挝人民民主共和国,Lao People's Democratic Republic,LAO PEOPLE’S DEMOCRATIC REPUBLIC,x,Asia,جمهورية لاو الديمقراطية الشعبية,South-eastern Asia,Лаосская Народно-Демократическая Республика,World,Vientiane,AS,.la,"lo,fr,en",1655842.0,Laos,,la,1.0,7234171.0,0.0,0.0

+ Lebanon,LBN,LIB,961,LBN,le,Yes,422.0,141,LE,LB,lb,LBN,LIB,RL,la República Libanesa,True,,Liban,Liban (le),Lebanese Pound,Developing,Ливанская Республика,Lebanon,LBP,,Líbano (el),422,黎巴嫩共和国,la République libanaise,Ливан,422.0,145.0,142.0,لبنان,2,الجمهورية اللبنانية,黎巴嫩,,,Líbano,the Lebanese Republic,黎巴嫩,Lebanon,LEBANON,,Asia,لبنان,Western Asia,Ливан,World,Beirut,AS,.lb,"ar-LB,fr-LB,en,hy",272103.0,Lebanon,M8,lb,1.0,6100075.0,0.13977894352094478,0.09333156974565335

+ Liberia,LBR,LBR,231,LBR,lb,Yes,430.0,144,LI,LI,lr,LBR,LBR,LB,la República de Liberia,True,11.0,Libéria,Libéria (le),Liberian Dollar,Developing,Республика Либерия,Liberia,LRD,,Liberia,430,利比里亚共和国,la République du Libéria,Либерия,430.0,202.0,2.0,ليبريا,2,جمهورية ليبريا,利比里亚,,Western Africa,Liberia,the Republic of Liberia,利比里亚,Liberia,LIBERIA,x,Africa,ليبريا,Sub-Saharan Africa,Либерия,World,Monrovia,AF,.lr,en-LR,2275384.0,Liberia,N0,,,,,

+ Libya,LBY,LBY,218,LBY,ly,Yes,434.0,145,LY,LY,ly,LBY,LBA,LAR,Libia,True,,Libye,Libye (la),Libyan Dinar,Developing,Ливия,Libya,LYD,,Libia,434,利比亚,la Libye,Ливия,434.0,15.0,2.0,ليبيا,3,ليبيا,利比亚,,,Libia,Libya,利比亚,Libya,LIBYA,,Africa,ليبيا,Northern Africa,Ливия,World,Tripoli,AF,.ly,"ar-LY,it,en",2215636.0,Libya,,ly,1.0,6754507.0,0.12027490489011526,0.08030856001370172

+ Saint Lucia,LCA,LCA,1-758,LCA,xk,Yes,662.0,209,ST,LC,lc,LCA,LCA,WL,Santa Lucía,True,29.0,Sainte-Lucie,Sainte-Lucie [fém.],East Caribbean Dollar,Developing,Сент-Люсия,Saint Lucia,XCD,x,Santa Lucía,951,圣卢西亚,Sainte-Lucie [fém.],Сент-Люсия,662.0,419.0,19.0,سانت لوسيا,2,سانت لوسيا,圣卢西亚,,Caribbean,Santa Lucía,Saint Lucia,圣卢西亚,Saint Lucia,SAINT LUCIA,,Americas,سانت لوسيا,Latin America and the Caribbean,Сент-Люсия,World,Castries,,.lc,en-LC,3576468.0,St. Lucia,U9,,,,,

+ Liechtenstein,LIE,LIE,423,LIE,lh,Yes,438.0,146,LS, ,li,LIE,LIE,FL,el Principado de Liechtenstein,True,,Liechtenstein,Liechtenstein (le),Swiss Franc,Developed,Княжество Лихтенштейн,Liechtenstein,CHF,,Liechtenstein,756,列支敦士登公国,la Principauté du Liechtenstein,Лихтенштейн,438.0,155.0,150.0,ليختنشتاين,2,إمارة ليختنشتاين,列支敦士登,,,Liechtenstein,the Principality of Liechtenstein,列支敦士登,Liechtenstein,LIECHTENSTEIN,,Europe,ليختنشتاين,Western Europe,Лихтенштейн,World,Vaduz,EU,.li,de-LI,3042058.0,Liechtenstein,N2,li,2.0,38547.0,0.7501145437042147,0.7391272275892944

+ Sri Lanka,LKA,SRI,94,LKA,ce,Yes,144.0,231,CE,SB,lk,CLN,SRI,CL,la República Socialista Democrática de Sri Lanka,True,,Sri Lanka,Sri Lanka [fém.],Sri Lanka Rupee,Developing,Демократическая Социалистическая Республика Шри-Ланка,Sri Lanka,LKR,,Sri Lanka,144,斯里兰卡民主社会主义共和国,la République socialiste démocratique de Sri Lanka,Шри-Ланка,144.0,34.0,142.0,سري لانكا,2,جمهورية سري لانكا الاشتراكية الديمقراطية,斯里兰卡,,,Sri Lanka,the Democratic Socialist Republic of Sri Lanka,斯里兰卡,Sri Lanka,SRI LANKA,,Asia,سري لانكا,Southern Asia,Шри-Ланка,World,Colombo,AS,.lk,"si,ta,en",1227603.0,Sri Lanka,F1,lk,2.0,22576592.0,0.08445840133025137,0.05104607881541172

+ Lesotho,LSO,LES,266,LSO,lo,Yes,426.0,142,LT,LS,ls,LSO,LES,LS,el Reino de Lesotho,True,18.0,Lesotho,Lesotho (le),"Loti,Rand",Developing,Королевство Лесото,Lesotho,"LSL,ZAR",,Lesotho,"426,710",莱索托王国,le Royaume du Lesotho,Лесото,426.0,202.0,2.0,ليسوتو,"2,2",مملكة ليسوتو,莱索托,x,Southern Africa,Lesotho,the Kingdom of Lesotho,莱索托,Lesotho,LESOTHO,x,Africa,ليسوتو,Sub-Saharan Africa,Лесото,World,Maseru,AF,.ls,"en-LS,st,zu,xh",932692.0,Lesotho,M9,ls,1.0,1962461.0,0.0,0.0

+ Lithuania,LTU,LTU,370,LTU,li,Yes,440.0,147,LH,LT,lt,LTU,LTU,LT,la República de Lituania,True,,Lituanie,Lituanie (la),Euro,Developed,Литовская Республика,Lithuania,EUR,,Lituania,978,立陶宛共和国,la République de Lituanie,Литва,440.0,154.0,150.0,ليتوانيا,2,جمهورية ليتوانيا,立陶宛,,,Lituania,the Republic of Lithuania,立陶宛,Lithuania,LITHUANIA,,Europe,ليتوانيا,Northern Europe,Литва,World,Vilnius,EU,.lt,"lt,ru,pl",597427.0,Lithuania,1Q,lt,1.0,2793284.0,0.23007830156139802,0.16279503210916607

+ Luxembourg,LUX,LUX,352,LUX,lu,Yes,442.0,148,LU,BX,lu,LUX,LUX,L,el Gran Ducado de Luxemburgo,True,,Luxembourg,Luxembourg (le),Euro,Developed,Великое Герцогство Люксембург,Luxembourg,EUR,,Luxemburgo,978,卢森堡大公国,le Grand-Duché de Luxembourg,Люксембург,442.0,155.0,150.0,لكسمبرغ,2,دوقية لكسمبرغ الكبرى,卢森堡,,,Luxemburgo,the Grand Duchy of Luxembourg,卢森堡,Luxembourg,LUXEMBOURG,,Europe,لكسمبرغ,Western Europe,Люксембург,World,Luxembourg,EU,.lu,"lb,de-LU,fr-LU",2960313.0,Luxembourg,N4,lu,3.0,605764.0,1.1057831443147712,1.0819486541621517

+ Latvia,LVA,LVA,371,LVA,lv,Yes,428.0,140,LG,LV,lv,LVA,LAT,LV,la República de Letonia,True,,Lettonie,Lettonie (la),Euro,Developed,Латвийская Республика,Latvia,EUR,,Letonia,978,拉脱维亚共和国,la République de Lettonie,Латвия,428.0,154.0,150.0,لاتفيا,2,جمهورية لاتفيا,拉脱维亚,,,Letonia,the Republic of Latvia,拉脱维亚,Latvia,LATVIA,,Europe,لاتفيا,Northern Europe,Латвия,World,Riga,EU,.lv,"lv,ru,lt",458258.0,Latvia,1R,lv,1.0,1923559.0,0.14002280578020992,0.12663995848785922

+ Macao S.A.R,MAC,MAC,853,MAC, ,Part of CN,446.0,149,MC,MU,mo,MAC,MAC,MO,,True,,"Chine, région administrative spéciale de Macao",,Pataca,Developing,,,MOP,,,446,,,,446.0,30.0,142.0,منطقة ماكاو الإدارية الخاصة التابعة للصين,2,,,,,"China, región administrativa especial de Macao",,中国澳门特别行政区,"China, Macao Special Administrative Region",MACAO,,Asia,,Eastern Asia,"Китай, Специальный административный район Макао",World,Macao,AS,.mo,"zh,zh-MO,pt",1821275.0,Macau,,mo,2.0,606340.0,0.01698232680734521,0.015941391233273473

+ Saint Martin,MAF, ,590,MAF,st,Part of FR,663.0,,RN, ,mf, , , ,,True,29.0,Saint-Martin (partie française),,Euro,Developing,,,EUR,,,978,,,,663.0,419.0,19.0,سان مارتن,2,,,,Caribbean,San Martín (parte francesa),,圣马丁(法属),Saint Martin (French Part),SAINT MARTIN (FRENCH PART),,Americas,,Latin America and the Caribbean,Сен-Мартен,World,Marigot,,.gp,fr,3578421.0,St. Martin,,mf,1.0,32284.0,0.7278287146909379,0.708389081357352

+ Morocco,MAR,MAR,212,MAR,mr,Yes,504.0,169,MO,MC,ma,MRC,MAR,MA,el Reino de Marruecos,True,,Maroc,Maroc (le),Moroccan Dirham,Developing,Королевство Марокко,Morocco,MAD,,Marruecos,504,摩洛哥王国,le Royaume du Maroc,Марокко,504.0,15.0,2.0,المغرب,2,المملكة المغربية,摩洛哥,,,Marruecos,the Kingdom of Morocco,摩洛哥,Morocco,MOROCCO,,Africa,المغرب,Northern Africa,Марокко,World,Rabat,AF,.ma,"ar-MA,ber,fr",2542007.0,Morocco,P2,ma,3.0,34314130.0,0.24633660919747336,0.2089633665532205

+ Monaco,MCO,MON,377,MCO,mc,Yes,492.0,166,MN, ,mc,MCO,MON,MC,el Principado de Mónaco,True,,Monaco,Monaco [masc.],Euro,Developed,Княжество Монако,Monaco,EUR,,Mónaco,978,摩纳哥公国,la Principauté de Monaco,Монако,492.0,155.0,150.0,موناكو,2,إمارة موناكو,摩纳哥,,,Mónaco,the Principality of Monaco,摩纳哥,Monaco,MONACO,,Europe,موناكو,Western Europe,Монако,World,Monaco,EU,.mc,"fr-MC,en,it",2993457.0,Monaco,O9,mc,1.0,30727.0,0.7205504275440285,0.7013051905437785

+ Moldova,MDA,MDA,373,MDA,mv,Yes,498.0,165,MD,RM,md,MDA,MDA,MD,la República de Moldova,True,,République de Moldova,République de Moldova (la),Moldovan Leu,Developed,Республика Молдова,Republic of Moldova (the),MDL,,la República de Moldova,498,摩尔多瓦共和国,la République de Moldova,Республика Молдова,498.0,151.0,150.0,جمهورية مولدوفا,2,جمهورية مولدوفا,摩尔多瓦共和国,x,,República de Moldova,the Republic of Moldova,摩尔多瓦共和国,Republic of Moldova,MOLDOVA (THE REPUBLIC OF),,Europe,جمهورية مولدوفا,Eastern Europe,Республика Молдова,World,Chisinau,EU,.md,"ro,ru,gag,tr",617790.0,Moldova,,md,4.0,3437720.0,0.2644098833156232,0.2189849888775599

+ Madagascar,MDG,MAD,261,MDG,mg,Yes,450.0,150,MA,MG,mg,MDG,MAD,RM,la República de Madagascar,True,14.0,Madagascar,Madagascar [fém.],Malagasy Ariary,Developing,Республика Мадагаскар,Madagascar,MGA,,Madagascar,969,马达加斯加共和国,la République de Madagascar,Мадагаскар,450.0,202.0,2.0,مدغشقر,2,جمهورية مدغشقر,马达加斯加,,Eastern Africa,Madagascar,the Republic of Madagascar,马达加斯加,Madagascar,MADAGASCAR,x,Africa,مدغشقر,Sub-Saharan Africa,Мадагаскар,World,Antananarivo,AF,.mg,"fr-MG,mg",1062947.0,Madagascar,N6,mg,2.0,25683610.0,0.5565912823232038,0.5196753302911445

+ Maldives,MDV,MDV,960,MDV,xc,Yes,462.0,154,MV,MV,mv,MLD,MDV,MV,la República de Maldivas,True,,Maldives,Maldives (les) [fém.],Rufiyaa,Developing,Мальдивская Республика,Maldives,MVR,x,Maldivas,462,马尔代夫共和国,la République des Maldives,Мальдивские Острова,462.0,34.0,142.0,ملديف,2,جمهورية ملديف,马尔代夫,,,Maldivas,the Republic of Maldives,马尔代夫,Maldives,MALDIVES,,Asia,ملديف,Southern Asia,Мальдивские Острова,World,Male,AS,.mv,"dv,en",1282028.0,Maldives,N9,mv,1.0,392473.0,0.0,0.0

+ Mexico,MEX,MEX,52,MEX,mx,Yes,484.0,162,MX,MX,mx,MEX,MEX,MEX,los Estados Unidos Mexicanos,True,13.0,Mexique,Mexique (le),Mexican Peso,Developing,Мексиканские Соединенные Штаты,Mexico,MXN,,México,484,墨西哥合众国,les États-Unis du Mexique,Мексика,484.0,419.0,19.0,المكسيك,2,الولايات المتحدة المكسيكية,墨西哥,,Central America,México,the United Mexican States,墨西哥,Mexico,MEXICO,,Americas,المكسيك,Latin America and the Caribbean,Мексика,World,Mexico City,,.mx,es-MX,3996063.0,Mexico,O5,mx,1.0,125959205.0,0.5360780750480053,0.5601040092791844

+ Marshall Islands,MHL,MHL,692,MHL,xe,Yes,584.0,157,RM,MH,mh,MHL,MSH, ,la República de las Islas Marshall,True,,Îles Marshall,Îles Marshall (les),US Dollar,Developing,Республика Маршалловы Острова,Marshall Islands (the),USD,x,Islas Marshall (las),840,马绍尔群岛共和国,la République des Îles Marshall,Маршалловы Острова,584.0,57.0,9.0,جزر مارشال,2,جمهورية جزر مارشال,马绍尔群岛,,,Islas Marshall,the Republic of the Marshall Islands,马绍尔群岛,Marshall Islands,MARSHALL ISLANDS,,Oceania,جزر مارشال,Micronesia,Маршалловы Острова,World,Majuro,OC,.mh,"mh,en-MH",2080185.0,Marshall Islands,1T,mh,1.0,75684.0,0.0,0.0

+ Macedonia,MKD,MKD,389,MKD,xn,Yes,807.0,241,MK,MJ,mk,MKD,MKD,MK,ex República Yugoslava de Macedonia (la),True,,ex-République yougoslave de Macédoine,ex-République yougoslave de Macédoine (l') [fém.],Denar,Developed,бывшая югославская Республика Македония,the former Yugoslav Republic of Macedonia,MKD,,ex República Yugoslava de Macedonia,807,前南斯拉夫的马其顿共和国,l'ex-République yougoslave de Macédoine [fém.],бывшая югославская Республика Македония,807.0,39.0,150.0,جمهورية مقدونيا اليوغوسلافية سابقاً,2,جمهورية مقدونيا اليوغوسلافية سابقاً,前南斯拉夫的马其顿共和国,x,,ex República Yugoslava de Macedonia,the former Yugoslav Republic of Macedonia,前南斯拉夫的马其顿共和国,The former Yugoslav Republic of Macedonia,MACEDONIA (THE FORMER YUGOSLAV REPUBLIC OF),,Europe,جمهورية مقدونيا اليوغوسلافية سابقاً,Southern Europe,бывшая югославская Республика Македония,World,Skopje,EU,.mk,"mk,sq,tr,rmm,sr",718075.0,North Macedonia,,mk,2.0,2118945.0,0.1237021554808519,0.08149935476431516

+ Mali,MLI,MLI,223,MLI,ml,Yes,466.0,155,ML,MI,ml,MLI,MLI,RMM,la República de Malí,True,11.0,Mali,Mali (le),CFA Franc BCEAO,Developing,Республика Мали,Mali,XOF,,Malí,952,马里共和国,la République du Mali,Мали,466.0,202.0,2.0,مالي,0,جمهورية مالي,马里,x,Western Africa,Malí,the Republic of Mali,马里,Mali,MALI,x,Africa,مالي,Sub-Saharan Africa,Мали,World,Bamako,AF,.ml,"fr-ML,bm",2453866.0,Mali,O0,ml,1.0,18429893.0,0.3348012087578314,0.3258589774243819

+ Malta,MLT,MLT,356,MLT,mm,Yes,470.0,156,MT,ML,mt,MLT,MLT,M,la República de Malta,True,,Malte,Malte [fém.],Euro,Developed,Республика Мальта,Malta,EUR,,Malta,978,马耳他共和国,la République de Malte,Мальта,470.0,39.0,150.0,مالطة,2,جمهورية مالطة,马耳他,,,Malta,the Republic of Malta,马耳他,Malta,MALTA,,Europe,مالطة,Southern Europe,Мальта,World,Valletta,EU,.mt,"mt,en-MT",2562770.0,Malta,O1,mt,1.0,449043.0,0.0,0.0

+ Myanmar,MMR,MYA,95,MMR,br,Yes,104.0,171,BM,BM,mm,MYA,MYA,BUR,la República de la Unión de Myanmar,True,,Myanmar,Myanmar (le),Kyat,Developing,Республика Союз Мьянма,Myanmar,MMK,,Myanmar,104,缅甸联邦共和国,la République de l'Union du Myanmar,Мьянма,104.0,35.0,142.0,ميانمار,2,جمهورية اتحاد ميانمار,缅甸,,,Myanmar,the Republic of the Union of Myanmar,缅甸,Myanmar,MYANMAR,x,Asia,ميانمار,South-eastern Asia,Мьянма,World,Nay Pyi Taw,AS,.mm,my,1327865.0,Myanmar,E1,mm,1.0,55622506.0,0.02734634412532368,0.019553574910930342

+ Montenegro,MNE,MNE,382,MNE,mo,Yes,499.0,2647,MJ, ,me,MNE,MGO,MNE,Montenegro,True,,Monténégro,Monténégro (le),Euro,Developed,Черногория,Montenegro,EUR,,Montenegro,978,黑山,le Monténégro,Черногория,499.0,39.0,150.0,الجبل الأسود,2,الجبل الأسود,黑山,,,Montenegro,Montenegro,黑山,Montenegro,MONTENEGRO,,Europe,الجبل الأسود,Southern Europe,Черногория,World,Podgorica,EU,.me,"sr,hu,bs,sq,hr,rom",3194884.0,Montenegro,Z5,me,1.0,614249.0,0.0,0.0

+ Mongolia,MNG,MNG,976,MNG,mp,Yes,496.0,167,MG,MO,mn,MNG,MGL,MGL,Mongolia,True,,Mongolie,Mongolie (la),Tugrik,Developing,Монголия,Mongolia,MNT,,Mongolia,496,蒙古国,la Mongolie,Монголия,496.0,30.0,142.0,منغوليا,2,منغوليا,蒙古,x,,Mongolia,Mongolia,蒙古,Mongolia,MONGOLIA,,Asia,منغوليا,Eastern Asia,Монголия,World,Ulan Bator,AS,.mn,"mn,ru",2029969.0,Mongolia,P0,mn,1.0,3103428.0,0.055120438200454064,0.03485211299848908

+ Northern Mariana Islands,MNP,NMI,1-670,MNP,nw,Commonwealth of US,580.0,185,CQ,MY,mp,MRA,NMA,USA,,True,,Îles Mariannes du Nord,,US Dollar,Developing,,,USD,x,,840,,,,580.0,57.0,9.0,جزر ماريانا الشمالية,2,,,,,Islas Marianas Septentrionales,,北马里亚纳群岛,Northern Mariana Islands,NORTHERN MARIANA ISLANDS,,Oceania,,Micronesia,Северные Марианские острова,World,Saipan,OC,.mp,"fil,tl,zh,ch-MP,en-MP",4041468.0,Northern Mariana Islands,1V,,,,,

+ Mozambique,MOZ,MOZ,258,MOZ,mz,Yes,508.0,170,MZ,MZ,mz,MOZ,MOZ,MOC,la República de Mozambique,True,14.0,Mozambique,Mozambique (le),Mozambique Metical,Developing,Республика Мозамбик,Mozambique,MZN,,Mozambique,943,莫桑比克共和国,la République du Mozambique,Мозамбик,508.0,202.0,2.0,موزامبيق,2,جمهورية موزامبيق,莫桑比克,,Eastern Africa,Mozambique,the Republic of Mozambique,莫桑比克,Mozambique,MOZAMBIQUE,x,Africa,موزامبيق,Sub-Saharan Africa,Мозамбик,World,Maputo,AF,.mz,"pt-MZ,vmw",1036973.0,Mozambique,P3,mz,1.0,27233789.0,0.09170456475966414,0.08608351265967676

+ Mauritania,MRT,MTN,222,MRT,mu,Yes,478.0,159,MR,MT,mr,MTN,MTN,RIM,la República Islámica de Mauritania,True,11.0,Mauritanie,Mauritanie (la),Ouguiya,Developing,Исламская Республика Мавритания,Mauritania,MRU,,Mauritania,929,毛里塔尼亚伊斯兰共和国,la République islamique de Mauritanie,Мавритания,478.0,202.0,2.0,موريتانيا,2,الجمهورية الإسلامية الموريتانية,毛里塔尼亚,,Western Africa,Mauritania,the Islamic Republic of Mauritania,毛里塔尼亚,Mauritania,MAURITANIA,x,Africa,موريتانيا,Sub-Saharan Africa,Мавритания,World,Nouakchott,AF,.mr,"ar-MR,fuc,snk,fr,mey,wo",2378080.0,Mauritania,O3,mr,1.0,3840429.0,0.13815360696837564,0.09224631893465739

+ Montserrat,MSR,MSR,1-664,MSR,mj,Territory of GB,500.0,168,MH, ,ms,MSR,MNT, ,,True,29.0,Montserrat,,East Caribbean Dollar,Developing,,,XCD,x,,951,,,,500.0,419.0,19.0,مونتسيرات,2,,,,Caribbean,Montserrat,,蒙特塞拉特,Montserrat,MONTSERRAT,,Americas,,Latin America and the Caribbean,Монтсеррат,World,Plymouth,,.ms,en-MS,3578097.0,Montserrat,P1,,,,,

+ Mauritius,MUS,MRI,230,MUS,mf,Yes,480.0,160,MP,MA,mu,MAU,MRI,MS,la República de Mauricio,True,14.0,Maurice,Maurice [fém.],Mauritius Rupee,Developing,Республика Маврикий,Mauritius,MUR,x,Mauricio,480,毛里求斯共和国,la République de Maurice,Маврикий,480.0,202.0,2.0,موريشيوس,2,جمهورية موريشيوس,毛里求斯,,Eastern Africa,Mauricio,the Republic of Mauritius,毛里求斯,Mauritius,MAURITIUS,,Africa,موريشيوس,Sub-Saharan Africa,Маврикий,World,Port Louis,AF,.mu,"en-MU,bho,fr",934292.0,Mauritius,O4,mu,1.0,1364283.0,0.021834861440728135,0.02125167244072056

+ Malawi,MWI,MWI,265,MWI,mw,Yes,454.0,152,MI,MW,mw,MWI,MAW,MW,la República de Malawi,True,14.0,Malawi,Malawi (le),Malawi Kwacha,Developing,Республика Малави,Malawi,MWK,,Malawi,454,马拉维共和国,la République du Malawi,Малави,454.0,202.0,2.0,ملاوي,2,جمهورية ملاوي,马拉维,x,Eastern Africa,Malawi,the Republic of Malawi,马拉维,Malawi,MALAWI,x,Africa,ملاوي,Sub-Saharan Africa,Малави,World,Lilongwe,AF,.mw,"ny,yao,tum,swk",927384.0,Malawi,N7,mw,1.0,19842560.0,0.0,0.0

+ Malaysia,MYS,MAS,60,MYS,my,Yes,458.0,153,MY,MS,my,MLA,MAS,MAL,Federación de Malasia,True,,Malaisie,Malaisie (la),Malaysian Ringgit,Developing,Малайзия,Malaysia,MYR,,Malasia,458,马来西亚,la Malaisie,Малайзия,458.0,35.0,142.0,ماليزيا,2,ماليزيا,马来西亚,,,Malasia,Malaysia,马来西亚,Malaysia,MALAYSIA,,Asia,ماليزيا,South-eastern Asia,Малайзия,World,Kuala Lumpur,AS,.my,"ms-MY,en,zh,ta,te,ml,pa,th",1733045.0,Malaysia,N8,my,1.0,31809660.0,0.08605063603931037,0.05452220339931525

+ Namibia,NAM,NAM,264,NAM,sx,Yes,516.0,172,WA,NM,,NMB,NAM,NAM,la República de Namibia,True,18.0,Namibie,Namibie (la),"Namibia Dollar,Rand",Developing,Республика Намибия,Namibia,"NAD,ZAR",,Namibia,"516,710",纳米比亚共和国,la République de Namibie,Намибия,516.0,202.0,2.0,ناميبيا,"2,2",جمهورية ناميبيا,纳米比亚,,Southern Africa,Namibia,the Republic of Namibia,纳米比亚,Namibia,NAMIBIA,,Africa,ناميبيا,Sub-Saharan Africa,Намибия,World,Windhoek,AF,.na,"en-NA,af,de,hz,naq",3355338.0,Namibia,T6,,,,,

+ New Caledonia,NCL,NCL,687,NCL,nl,Territory of FR,540.0,178,NC,NC,nc,NCL,NCD,F,,True,,Nouvelle-Calédonie,,CFP Franc,Developing,,,XPF,x,,953,,,,540.0,54.0,9.0,كاليدونيا الجديدة,0,,,,,Nueva Caledonia,,新喀里多尼亚,New Caledonia,NEW CALEDONIA,,Oceania,,Melanesia,Новая Каледония,World,Noumea,OC,.nc,fr-NC,2139685.0,New Caledonia,1W,nc,1.0,282754.0,0.6987155661033003,0.6800535181030579

+ Niger,NER,NIG,227,NER,ng,Yes,562.0,181,NG,NR,ne,NGR,NIG,RN,la República del Níger,True,11.0,Niger,Niger (le),CFA Franc BCEAO,Developing,Республика Нигер,Niger (the),XOF,,Níger (el),952,尼日尔共和国,la République du Niger,Нигер,562.0,202.0,2.0,النيجر,0,جمهورية النيجر,尼日尔,x,Western Africa,Níger,the Republic of the Niger,尼日尔,Niger,NIGER,x,Africa,النيجر,Sub-Saharan Africa,Нигер,World,Niamey,AF,.ne,"fr-NE,ha,kr,dje",2440476.0,Niger,Q4,ne,1.0,19866231.0,0.21107032726037198,0.20543283359363207

+ Norfolk Island,NFK,NFK,672,NFK,nx,Territory of AU,574.0,184,NF,NF,nf,NFK,NFI,AUS,,True,,Île Norfolk,,Australian Dollar,Developed,,,AUD,,,036,,,,574.0,53.0,9.0,جزيرة نورفلك,2,,,,,Islas Norfolk,,诺福克岛,Norfolk Island,NORFOLK ISLAND,,Oceania,,Australia and New Zealand,Остров Норфолк,World,Kingston,OC,.nf,en-NF,2155115.0,Norfolk Island,Q7,,,,,

+ Nigeria,NGA,NGA,234,NGA,nr,Yes,566.0,182,NI,NI,ng,NIG,NGR,WAN,la República Federal de Nigeria,True,11.0,Nigéria,Nigéria (le),Naira,Developing,Федеративная Республика Нигерия,Nigeria,NGN,,Nigeria,566,尼日利亚联邦共和国,la République fédérale du Nigéria,Нигерия,566.0,202.0,2.0,نيجيريا,2,جمهورية نيجيريا الاتحادية,尼日利亚,,Western Africa,Nigeria,the Federal Republic of Nigeria,尼日利亚,Nigeria,NIGERIA,,Africa,نيجيريا,Sub-Saharan Africa,Нигерия,World,Abuja,AF,.ng,"en-NG,ha,yo,ig,ff",2328926.0,Nigeria,Q5,ng,1.0,203452505.0,0.0,0.0

+ Nicaragua,NIC,NCA,505,NIC,nq,Yes,558.0,180,NU,NK,ni,NCG,NCA,NIC,la República de Nicaragua,True,13.0,Nicaragua,Nicaragua (le),Cordoba Oro,Developing,Республика Никарагуа,Nicaragua,NIO,,Nicaragua,558,尼加拉瓜共和国,la République du Nicaragua,Никарагуа,558.0,419.0,19.0,نيكاراغوا,2,جمهورية نيكاراغوا,尼加拉瓜,,Central America,Nicaragua,the Republic of Nicaragua,尼加拉瓜,Nicaragua,NICARAGUA,,Americas,نيكاراغوا,Latin America and the Caribbean,Никарагуа,World,Managua,,.ni,"es-NI,en",3617476.0,Nicaragua,Q3,ni,1.0,6085213.0,0.5037842151053544,0.5263628039009203

+ Niue,NIU,NIU,683,NIU,xh,Associated with NZ,570.0,183,NE, ,nu,NIU,NIU,NZ,Niue,True,,Nioué,Nioué    **,New Zealand Dollar,Developing,Ниуэ,Niue    **,NZD,x,Niue    **,554,纽埃,Nioué,Ниуэ    **,570.0,61.0,9.0,نيوي,2,نيوي,纽埃    **,,,Niue,Niue,纽埃,Niue,NIUE,,Oceania,نيوي    **,Polynesia,Ниуэ,World,Alofi,OC,.nu,"niu,en-NU",4036232.0,Niue,Q6,nu,1.0,1618.0,0.0,0.0

+ Netherlands,NLD,NED,31,NLD,ne,Yes,528.0,177,NL,NL,nl,HOL,NED,NL,el Reino de los Países Bajos,True,,Pays-Bas,Pays-Bas (les),Euro,Developed,Королевство Нидерландов,Netherlands (the),EUR,,Países Bajos (los),978,荷兰王国,le Royaume des Pays-Bas,Нидерланды,528.0,155.0,150.0,هولندا,2,مملكة هولندا,荷兰,,,Países Bajos,the Kingdom of the Netherlands,荷兰,Netherlands,NETHERLANDS,,Europe,هولندا,Western Europe,Нидерланды,World,Amsterdam,EU,.nl,"nl-NL,fy-NL",2750405.0,Netherlands,P7,nl,2.0,17151228.0,0.44784786536867627,0.3793621239022091

+ Norway,NOR,NOR,47,NOR,no,Yes,578.0,186,NO,NO,no,NOR,NOR,N,el Reino de Noruega,True,,Norvège,Norvège (la),Norwegian Krone,Developed,Королевство Норвегия,Norway,NOK,,Noruega,578,挪威王国,le Royaume de Norvège,Норвегия,578.0,154.0,150.0,النرويج,2,مملكة النرويج,挪威,,,Noruega,the Kingdom of Norway,挪威,Norway,NORWAY,,Europe,النرويج,Northern Europe,Норвегия,World,Oslo,EU,.no,"no,nb,nn,se,fi",3144096.0,Norway,Q8,no,2.0,5372191.0,0.2743193015150657,0.19691007568165209

+ Nepal,NPL,NEP,977,NPL,np,Yes,524.0,175,NP,NP,np,NPL,NEP,NEP,la República Democrática Federal de Nepal,True,,Népal,Népal (le),Nepalese Rupee,Developing,Федеративная Демократическая Республика Непал,Nepal,NPR,,Nepal,524,尼泊尔联邦民主共和国,la République fédérale démocratique du Népal,Непал,524.0,34.0,142.0,نيبال,2,جمهورية نيبال الديمقراطية الاتحادية,尼泊尔,x,,Nepal,the Federal Democratic Republic of Nepal,尼泊尔,Nepal,NEPAL,x,Asia,نيبال,Southern Asia,Непал,World,Kathmandu,AS,.np,"ne,en",1282988.0,Nepal,P6,np,1.0,29717587.0,0.04600713517186704,0.02549761152572379

+ Nauru,NRU,NRU,674,NRU,nu,Yes,520.0,173,NR,NW,nr,NRU,NRU,NAU,la República de Nauru,True,,Nauru,Nauru [fém.],Australian Dollar,Developing,Республика Науру,Nauru,AUD,x,Nauru,036,瑙鲁共和国,la République de Nauru,Науру,520.0,57.0,9.0,ناورو,2,جمهورية ناورو,瑙鲁,,,Nauru,the Republic of Nauru,瑙鲁,Nauru,NAURU,,Oceania,ناورو,Micronesia,Науру,World,Yaren,OC,.nr,"na,en-NR",2110425.0,Nauru,P5,nr,1.0,9692.0,0.0,0.0

+ New Zealand,NZL,NZL,64,NZL,nz,Yes,554.0,179,NZ,NZ,nz,NZL,NZL,NZ,Nueva Zelandia,True,,Nouvelle-Zélande,Nouvelle-Zélande (la),New Zealand Dollar,Developed,Новая Зеландия,New Zealand,NZD,,Nueva Zelandia,554,新西兰,la Nouvelle-Zélande,Новая Зеландия,554.0,53.0,9.0,نيوزيلندا,2,نيوزيلندا,新西兰,,,Nueva Zelandia,New Zealand,新西兰,New Zealand,NEW ZEALAND,,Oceania,نيوزيلندا,Australia and New Zealand,Новая Зеландия,World,Wellington,OC,.nz,"en-NZ,mi",2186224.0,New Zealand,Q2,nz,1.0,4545627.0,0.0,0.0

+ Oman,OMN,OMA,968,OMN,mk,Yes,512.0,187,MU,OM,om,OMA,OMA, ,la Sultanía de Omán,True,,Oman,Oman [masc.],Rial Omani,Developing,Султанат Оман,Oman,OMR,,Omán,512,阿曼苏丹国,le Sultanat d'Oman,Оман,512.0,145.0,142.0,عمان,3,سلطنة عمان,阿曼,,,Omán,the Sultanate of Oman,阿曼,Oman,OMAN,,Asia,عمان,Western Asia,Оман,World,Muscat,AS,.om,"ar-OM,en,bal,ur",286963.0,Oman,P4,om,1.0,3494116.0,0.13165226075809916,0.08790531569067352

+ Pakistan,PAK,PAK,92,PAK,pk,Yes,586.0,188,PK,PK,pk,PAK,PAK,PK,la República Islámica del Pakistán,True,,Pakistan,Pakistan (le),Pakistan Rupee,Developing,Исламская Республика Пакистан,Pakistan,PKR,,Pakistán (el),586,巴基斯坦伊斯兰共和国,la République islamique du Pakistan,Пакистан,586.0,34.0,142.0,باكستان,2,جمهورية باكستان الإسلامية,巴基斯坦,,,Pakistán,the Islamic Republic of Pakistan,巴基斯坦,Pakistan,PAKISTAN,,Asia,باكستان,Southern Asia,Пакистан,World,Islamabad,AS,.pk,"ur-PK,en-PK,pa,sd,ps,brh",1168579.0,Pakistan,R0,pk,1.0,207862518.0,0.0,0.0

+ Panama,PAN,PAN,507,PAN,pn,Yes,591.0,191,PM,PM,pa,PNR,PAN,PA,la República de Panamá,True,13.0,Panama,Panama (le),"Balboa,US Dollar",Developing,Республика Панама,Panama,"PAB,USD",,Panamá,"590,840",巴拿马共和国,la République du Panama,Панама,591.0,419.0,19.0,بنما,"2,2",جمهورية بنما,巴拿马,,Central America,Panamá,the Republic of Panama,巴拿马,Panama,PANAMA,,Americas,بنما,Latin America and the Caribbean,Панама,World,Panama City,,.pa,"es-PA,en",3703430.0,Panama,R1,pa,1.0,3800644.0,0.44565526720858273,0.46562863422004486

+ Pitcairn Islands,PCN,PCN,870,PCN,pc,Territory of GB,612.0,197,PC,PT,pn,PTC, , ,,True,,Pitcairn,,New Zealand Dollar,Developing,,,NZD,,,554,,,,612.0,61.0,9.0,بيتكيرن,2,,,,,Pitcairn,,皮特凯恩,Pitcairn,PITCAIRN,,Oceania,,Polynesia,Питкэрн,World,Adamstown,OC,.pn,en-PN,4030699.0,Pitcairn Islands,R8,,,,,

+ Peru,PER,PER,51,PER,pe,Yes,604.0,195,PE,PR,pe,PRU,PER,PE,la República del Perú,True,5.0,Pérou,Pérou (le),Sol,Developing,Республика Перу,Peru,PEN,,Perú (el),604,秘鲁共和国,la République du Pérou,Перу,604.0,419.0,19.0,بيرو,2,جمهورية بيرو,秘鲁,,South America,Perú,the Republic of Peru,秘鲁,Peru,PERU,,Americas,بيرو,Latin America and the Caribbean,Перу,World,Lima,SA,.pe,"es-PE,qu,ay",3932488.0,Peru,R5,pe,2.0,31331228.0,0.4714903551627035,0.4926215985226562

+ Spratly Islands,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Philippines,PHL,PHI,63,PHL,ph,Yes,608.0,196,RP,PH,ph,PHL,PHI,RP,la República de Filipinas,True,,Philippines,Philippines (les) [fém.],Philippine Peso,Developing,Республика Филиппины,Philippines (the),PHP,,Filipinas,608,菲律宾共和国,la République des Philippines,Филиппины,608.0,35.0,142.0,الفلبين,2,جمهورية الفلبين,菲律宾,,,Filipinas,the Republic of the Philippines,菲律宾,Philippines,PHILIPPINES,,Asia,الفلبين,South-eastern Asia,Филиппины,World,Manila,AS,.ph,"tl,en-PH,fil,ceb,tgl,ilo,hil,war,pam,bik,bcl,pag,mrw,tsg,mdh,cbk,krj,sgd,msb,akl,ibg,yka,mta,abx",1694008.0,Philippines,R6,ph,8.0,105893381.0,0.0,0.0

+ Palau,PLW,PLW,680,PLW,pw,Yes,585.0,189,PS, ,pw,PLW,PLW, ,la República de Palau,True,,Palaos,Palaos (les),US Dollar,Developing,Республика Палау,Palau,USD,x,Palau,840,帕劳共和国,la République des Palaos,Палау,585.0,57.0,9.0,بالاو,2,جمهورية بالاو,帕劳,,,Palau,the Republic of Palau,帕劳,Palau,PALAU,,Oceania,بالاو,Micronesia,Палау,World,Melekeok,OC,.pw,"pau,sov,en-PW,tox,ja,fil,zh",1559582.0,Palau,1Y,pw,1.0,21516.0,0.0,0.0

+ Papua New Guinea,PNG,PNG,675,PNG,pp,Yes,598.0,192,PP,NG,pg,PNG,PNG,PNG,Estado Independiente de Papua Nueva Guinea,True,,Papouasie-Nouvelle-Guinée,Papouasie-Nouvelle-Guinée (la),Kina,Developing,Независимое государство Папуа-Новая Гвинея,Papua New Guinea,PGK,x,Papua Nueva Guinea,598,巴布亚新几内亚独立国,l'État indépendant de Papouasie-Nouvelle-Guinée,Папуа-Новая Гвинея,598.0,54.0,9.0,بابوا غينيا الجديدة,2,دولة بابوا غينيا الجديدة المستقلة,巴布亚新几内亚,,,Papua Nueva Guinea,Independent State of Papua New Guinea,巴布亚新几内亚,Papua New Guinea,PAPUA NEW GUINEA,,Oceania,بابوا غينيا الجديدة,Melanesia,Папуа-Новая Гвинея,World,Port Moresby,OC,.pg,"en-PG,ho,meu,tpi",2088628.0,Papua New Guinea,R2,pg,2.0,7027332.0,0.0,0.0

+ Poland,POL,POL,48,POL,pl,Yes,616.0,198,PL,PL,pl,POL,POL,PL,la República de Polonia,True,,Pologne,Pologne (la),Zloty,Developed,Республика Польша,Poland,PLN,,Polonia,985,波兰共和国,la République de Pologne,Польша,616.0,151.0,150.0,بولندا,2,جمهورية بولندا,波兰,,,Polonia,the Republic of Poland,波兰,Poland,POLAND,,Europe,بولندا,Eastern Europe,Польша,World,Warsaw,EU,.pl,pl,798544.0,Poland,R9,pl,2.0,38420687.0,0.675266436378051,0.6405919804241768

+ Puerto Rico,PRI,PUR,1,PRI,pr,Commonwealth of US,630.0,200,RQ,PU,pr,PTR,PUR,USA,,True,29.0,Porto Rico,,US Dollar,Developing,,,USD,x,,840,,,,630.0,419.0,19.0,بورتوريكو,2,,,,Caribbean,Puerto Rico,,波多黎各,Puerto Rico,PUERTO RICO,,Americas,,Latin America and the Caribbean,Пуэрто-Рико,World,San Juan,,.pr,"en-PR,es-PR",4566966.0,Puerto Rico,PR,pr,1.0,3294626.0,0.5619131630021261,0.5870969735817957

+ North Korea,PRK,PRK,850,PRK,kn,Yes,408.0,67,KN,KR,kp,KRE,PRK, ,la República Popular Democrática de Corea,True,,République populaire démocratique de Corée,République populaire démocratique de Corée (la),North Korean Won,Developing,Корейская Народно-Демократическая Республика,Democratic People's Republic of Korea (the),KPW,,República Popular Democrática de Corea (la),408,朝鲜民主主义人民共和国,la République populaire démocratique de Corée,Корейская Народно-Демократическая Республика,408.0,30.0,142.0,جمهورية كوريا الشعبية الديمقراطية,2,جمهورية كوريا الشعبية الديمقراطية,朝鲜民主主义人民共和国,,,República Popular Democrática de Corea,the Democratic People's Republic of Korea,朝鲜民主主义人民共和国,Democratic People's Republic of Korea,KOREA (THE DEMOCRATIC PEOPLE’S REPUBLIC OF),,Asia,جمهورية كوريا الشعبية الديمقراطية,Eastern Asia,Корейская Народно-Демократическая Республика,World,Pyongyang,AS,.kp,ko-KP,1873107.0,North Korea,,kp,1.0,25381085.0,0.2679698737187836,0.2511879967509289

+ Portugal,PRT,POR,351,PRT,po,Yes,620.0,199,PO,PO,pt,POR,POR,P,la República Portuguesa,True,,Portugal,Portugal (le),Euro,Developed,Португальская Республика,Portugal,EUR,,Portugal,978,葡萄牙共和国,la République portugaise,Португалия,620.0,39.0,150.0,البرتغال,2,جمهورية البرتغال,葡萄牙,,,Portugal,the Portuguese Republic,葡萄牙,Portugal,PORTUGAL,,Europe,البرتغال,Southern Europe,Португалия,World,Lisbon,EU,.pt,"pt-PT,mwl",2264397.0,Portugal,S1,pt,1.0,10355493.0,0.326060674701028,0.30607471167885064

+ Paraguay,PRY,PAR,595,PRY,py,Yes,600.0,194,PA,PY,py,PRG,PAR,PY,la República del Paraguay,True,5.0,Paraguay,Paraguay (le),Guarani,Developing,Республика Парагвай,Paraguay,PYG,,Paraguay (el),600,巴拉圭共和国,la République du Paraguay,Парагвай,600.0,419.0,19.0,باراغواي,0,جمهورية باراغواي,巴拉圭,x,South America,Paraguay,the Republic of Paraguay,巴拉圭,Paraguay,PARAGUAY,,Americas,باراغواي,Latin America and the Caribbean,Парагвай,World,Asuncion,SA,.py,"es-PY,gn",3437598.0,Paraguay,R4,py,2.0,7025763.0,0.020668070363296594,0.02159437144208904

+ Palestine,PSE,PLE,970,PSE,"gz,wj",In contention,275.0,"91,267","GZ,WE", ,ps, ,PLE, ,Estado  de Palestina,True,,État de Palestine,État de Palestine  *,No universal currency,Developing,Государство Палестина,State of Palestine  *,,,Estado  de Palestina  *,,巴勒斯坦国,État de Palestine,Государство Палестина  *,275.0,145.0,142.0,دولة فلسطين,,دولة فلسطين,巴勒斯坦国  *,,,Estado de Palestina,State of Palestine,巴勒斯坦国,State of Palestine,"PALESTINE, STATE OF",,Asia,دولة فلسطين  *,Western Asia,Государство Палестина,World,East Jerusalem,AS,.ps,ar-PS,6254930.0,Palestine,,ps,1.0,4635207.0,0.16253365525691252,0.10852508109959692

+ French Polynesia,PYF,TAH,689,PYF,fp,Territory of FR,258.0,87,FP,PF,pf,OCE,FPO,F,,True,,Polynésie française,,CFP Franc,Developing,,,XPF,x,,953,,,,258.0,61.0,9.0,بولينيزيا الفرنسية,0,,,,,Polinesia Francesa,,法属波利尼西亚,French Polynesia,FRENCH POLYNESIA,,Oceania,,Polynesia,Французская Полинезия,World,Papeete,OC,.pf,"fr-PF,ty",4030656.0,French Polynesia,I4,pf,2.0,290373.0,0.4439755159614721,0.4321173396279847

+ Qatar,QAT,QAT,974,QAT,qa,Yes,634.0,201,QA,QT,qa,QAT,QAT,Q,el Estado de Qatar,True,,Qatar,Qatar (le),Qatari Rial,Developing,Государство Катар,Qatar,QAR,,Qatar,634,卡塔尔国,l'État du Qatar,Катар,634.0,145.0,142.0,قطر,2,دولة قطر,卡塔尔,,,Qatar,the State of Qatar,卡塔尔,Qatar,QATAR,,Asia,قطر,Western Asia,Катар,World,Doha,AS,.qa,"ar-QA,es",289688.0,Qatar,S3,qa,1.0,2363569.0,0.14465495317865215,0.09658732217864126

+ Romania,ROU,ROU,40,ROU,rm,Yes,642.0,203,RO,RO,ro,ROU,ROU,RO,Rumania,True,,Roumanie,Roumanie (la),Romanian Leu,Developed,Румыния,Romania,RON,,Rumania,946,罗马尼亚,la Roumanie,Румыния,642.0,151.0,150.0,رومانيا,2,رومانيا,罗马尼亚,,,Rumania,Romania,罗马尼亚,Romania,ROMANIA,,Europe,رومانيا,Eastern Europe,Румыния,World,Bucharest,EU,.ro,"ro,hu,rom",798549.0,Romania,S5,ro,1.0,21457116.0,0.22783437752575306,0.18115470903346917

+ Russia,RUS,RUS,7,RUS,ru,Yes,643.0,204,RS,RS,ru,RUS,RUS,RUS,la Federación de Rusia,True,,Fédération de Russie,Fédération de Russie (la),Russian Ruble,Developed,Российская Федерация,Russian Federation (the),RUB,,Federación de Rusia (la),643,俄罗斯联邦,la Fédération de Russie,Российская Федерация,643.0,151.0,150.0,الاتحاد الروسي,2,الاتحاد الروسي,俄罗斯联邦,,,Federación de Rusia,the Russian Federation,俄罗斯联邦,Russian Federation,RUSSIAN FEDERATION,,Europe,الاتحاد الروسي,Eastern Europe,Российская Федерация,World,Moscow,EU,.ru,"ru,tt,xal,cau,ady,kv,ce,tyv,cv,udm,tut,mns,bua,myv,mdf,chm,ba,inh,tut,kbd,krc,av,sah,nog",2017370.0,Russia,1Z,ru,3.0,142122776.0,0.5315031737615122,0.5402385421912915

+ Rwanda,RWA,RWA,250,RWA,rw,Yes,646.0,205,RW,RW,rw,RRW,RWA,RWA,la República de Rwanda,True,14.0,Rwanda,Rwanda (le),Rwanda Franc,Developing,Республика Руанда,Rwanda,RWF,,Rwanda,646,卢旺达共和国,la République du Rwanda,Руанда,646.0,202.0,2.0,رواندا,0,جمهورية رواندا,卢旺达,x,Eastern Africa,Rwanda,the Republic of Rwanda,卢旺达,Rwanda,RWANDA,x,Africa,رواندا,Sub-Saharan Africa,Руанда,World,Kigali,AF,.rw,"rw,en-RW,fr-RW,sw",49518.0,Rwanda,S6,rw,1.0,12187400.0,0.0,0.0

+ Western Sahara,ESH,SAH,212,ESH,ss,In contention,732.0,268,WI, ,eh,AOE, , ,,True,,Sahara occidental,,Moroccan Dirham,Developing,,,MAD,,,504,,,,732.0,15.0,2.0,الصحراء الغربية,2,,,,,Sáhara Occidental,,西撒哈拉,Western Sahara,WESTERN SAHARA,,Africa,,Northern Africa,Западная Сахара,World,El-Aaiun,AF,.eh,"ar,mey",2461445.0,Western Sahara,U5,eh,1.0,619551.0,0.16253365525691252,0.10852508109959692

+ Saudi Arabia,SAU,KSA,966,SAU,su,Yes,682.0,215,SA,SD,sa,ARS,KSA,SA,el Reino de la Arabia Saudita,True,,Arabie saoudite,Arabie saoudite (l') [fém.],Saudi Riyal,Developing,Королевство Саудовская Аравия,Saudi Arabia,SAR,,Arabia Saudita (la),682,沙特阿拉伯王国,le Royaume d'Arabie saoudite,Саудовская Аравия,682.0,145.0,142.0,المملكة العربية السعودية,2,المملكة العربية السعودية,沙特阿拉伯,,,Arabia Saudita,the Kingdom of Saudi Arabia,沙特阿拉伯,Saudi Arabia,SAUDI ARABIA,,Asia,المملكة العربية السعودية,Western Asia,Саудовская Аравия,World,Riyadh,AS,.sa,ar-SA,102358.0,Saudi Arabia,T0,sa,1.0,33091113.0,0.16253365525691252,0.10852508109959692

+ Scarborough Reef,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Sudan,SDN,SUD,249,SDN,sj,Yes,729.0,40764,SU,SU,sd,SDN,SUD,SUD,la República del Sudán,True,,Soudan,Soudan (le),Sudanese Pound,Developing,Республика Судан,Sudan (the),SDG,,Sudán (el),938,苏丹共和国,la République du Soudan,Судан,729.0,15.0,2.0,السودان,2,جمهورية السودان,苏丹,,,Sudán,the Republic of the Sudan,苏丹,Sudan,SUDAN,x,Africa,السودان,Northern Africa,Судан,World,Khartoum,AF,.sd,"ar-SD,en,fia",366755.0,Sudan,V2,sd,1.0,43120843.0,0.09914552970671664,0.06620029947075412

+ South Sudan,SSD,,211,SSD,sd,Yes,728.0,,OD,,ss,SSD,,,la República de Sudán del Sur,True,14.0,Soudan du Sud,Soudan du Sud (le),South Sudanese Pound,Developing,Республика Южный Судан,South Sudan,SSP,,Sudán del Sur,728,南苏丹共和国,la République du Soudan du Sud,Южный Судан,728.0,202.0,2.0,جنوب السودان,2,جمهورية جنوب السودان,南苏丹,x,Eastern Africa,Sudán del Sur,the Republic of South Sudan,南苏丹,South Sudan,SOUTH SUDAN,x,Africa,جنوب السودان,Sub-Saharan Africa,Южный Судан,World,Juba,AF,,en,7909807.0,South Sudan,,,,,,

+ Senegal,SEN,SEN,221,SEN,sg,Yes,686.0,217,SG,SG,sn,SEN,SEN,SN,la República del Senegal,True,11.0,Sénégal,Sénégal (le),CFA Franc BCEAO,Developing,Республика Сенегал,Senegal,XOF,,Senegal (el),952,塞内加尔共和国,la République du Sénégal,Сенегал,686.0,202.0,2.0,السنغال,0,جمهورية السنغال,塞内加尔,,Western Africa,Senegal,the Republic of Senegal,塞内加尔,Senegal,SENEGAL,x,Africa,السنغال,Sub-Saharan Africa,Сенегал,World,Dakar,AF,.sn,"fr-SN,wo,fuc,mnk",2245662.0,Senegal,T1,sn,6.0,15020945.0,0.2838531987294658,0.2762717417293673

+ Serranilla Bank,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Singapore,SGP,SIN,65,SGP,si,Yes,702.0,222,SN,SR,sg,SNG,SIN,SGP,la República de Singapur,True,,Singapour,Singapour [fém.],Singapore Dollar,Developing,Республика Сингапур,Singapore,SGD,x,Singapur,702,新加坡共和国,la République de Singapour,Сингапур,702.0,35.0,142.0,سنغافورة,2,جمهورية سنغافورة,新加坡,,,Singapur,the Republic of Singapore,新加坡,Singapore,SINGAPORE,,Asia,سنغافورة,South-eastern Asia,Сингапур,World,Singapore,AS,.sg,"cmn,en-SG,ms-SG,ta-SG,zh-SG",1880251.0,Singapore,U0,sg,3.0,5995991.0,0.021764608193322463,0.014715212475183054

+ South Georgia and South Sandwich Islands,SGS,,500,SGS,xs,Territory of GB,239.0,228,SX, ,gs, , , ,,True,5.0,Géorgie du Sud-et-les Îles Sandwich du Sud,,No universal currency,Developing,,,,,,,,,,239.0,419.0,19.0,جورجيا الجنوبية وجزر ساندويتش الجنوبية,,,,,South America,Georgia del Sur y las Islas Sandwich del Sur,,南乔治亚岛和南桑德韦奇岛,South Georgia and the South Sandwich Islands,SOUTH GEORGIA AND THE SOUTH SANDWICH ISLANDS,,Americas,,Latin America and the Caribbean,Южная Джорджия и Южные Сандвичевы острова,World,Grytviken,AN,.gs,en,3474415.0,South Georgia & South Sandwich Islands,1L,,,,,

+ Saint Helena,SHN,SHN,290,SHN,xj,Territory of GB,654.0,207,SH,HE,sh,SHN,HEL,SH,,True,11.0,Sainte-Hélène,,Saint Helena Pound,Developing,,,SHP,,,654,,,,654.0,202.0,2.0,سانت هيلانة,2,,,,Western Africa,Santa Elena,,圣赫勒拿,Saint Helena,"SAINT HELENA, ASCENSION AND TRISTAN DA CUNHA",,Africa,,Sub-Saharan Africa,Остров Святой Елены,World,Jamestown,AF,.sh,en-SH,3370751.0,St. Helena,,,,,,

+ Solomon Islands,SLB,SOL,677,SLB,bp,Yes,90.0,225,BP,SO,sb,SLM,SOL,SB,las Islas Salomón,True,,Îles Salomon,Îles Salomon (les),Solomon Islands Dollar,Developing,Соломоновы Острова,Solomon Islands,SBD,x,Islas Salomón (las),090,所罗门群岛,les Îles Salomon,Соломоновы Острова,90.0,54.0,9.0,جزر سليمان,2,جزر سليمان,所罗门群岛,,,Islas Salomón,Solomon Islands,所罗门群岛,Solomon Islands,SOLOMON ISLANDS,x,Oceania,جزر سليمان,Melanesia,Соломоновы Острова,World,Honiara,OC,.sb,"en-SB,tpi",2103350.0,Solomon Islands,D7,,,,,

+ Sierra Leone,SLE,SLE,232,SLE,sl,Yes,694.0,221,SL,SL,sl,SRL,SLE,WAL,la República de Sierra Leona,True,11.0,Sierra Leone,Sierra Leone (la),Leone,Developing,Республика Сьерра-Леоне,Sierra Leone,SLL,,Sierra Leona,694,塞拉利昂共和国,la République de Sierra Leone,Сьерра-Леоне,694.0,202.0,2.0,سيراليون,2,جمهورية سيراليون,塞拉利昂,,Western Africa,Sierra Leona,the Republic of Sierra Leone,塞拉利昂,Sierra Leone,SIERRA LEONE,x,Africa,سيراليون,Sub-Saharan Africa,Сьерра-Леоне,World,Freetown,AF,.sl,"en-SL,men,tem",2403846.0,Sierra Leone,T8,,,,,

+ El Salvador,SLV,SLV,503,SLV,es,Yes,222.0,75,ES,ES,sv,SLV,ESA,ES,la República de El Salvador,True,13.0,El Salvador,El Salvador [masc.],"El Salvador Colon,US Dollar",Developing,Республика Эль-Сальвадор,El Salvador,"SVC,USD",,El Salvador,"222,840",萨尔瓦多共和国,la République d'El Salvador,Сальвадор,222.0,419.0,19.0,السلفادور,"2,2",جمهورية السلفادور,萨尔瓦多,,Central America,El Salvador,the Republic of El Salvador,萨尔瓦多,El Salvador,EL SALVADOR,,Americas,السلفادور,Latin America and the Caribbean,Сальвадор,World,San Salvador,,.sv,es-SV,3585968.0,El Salvador,H3,sv,1.0,6187271.0,0.5748307069791865,0.6005934557331014

+ San Marino,SMR,SMR,378,SMR,sm,Yes,674.0,213,SM, ,sm,SMR,SMR,RSM,la República de San Marino,True,,Saint-Marin,Saint-Marin [masc.],Euro,Developed,Республика Сан-Марино,San Marino,EUR,,San Marino,978,圣马力诺共和国,la République de Saint-Marin,Сан-Марино,674.0,39.0,150.0,سان مارينو,2,جمهورية سان مارينو,圣马力诺,,,San Marino,the Republic of San Marino,圣马力诺,San Marino,SAN MARINO,,Europe,سان مارينو,Southern Europe,Сан-Марино,World,San Marino,EU,.sm,it-SM,3168068.0,San Marino,S8,sm,1.0,33779.0,0.46203723056489354,0.3903525055663236

+ Somaliland,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Somalia,SOM,SOM,252,SOM,so,Yes,706.0,226,SO,SI,so,SOM,SOM,SO,la República Federal de Somalia,True,14.0,Somalie,Somalie (la),Somali Shilling,Developing,Федеративная Республика Сомали,Somalia,SOS,,Somalia,706,索马里联邦共和国,la République fédérale de Somalie,Сомали,706.0,202.0,2.0,الصومال,2,جمهورية الصومال الاتحادية,索马里,,Eastern Africa,Somalia,the Federal Republic of Somalia,索马里,Somalia,SOMALIA,x,Africa,الصومال,Sub-Saharan Africa,Сомали,World,Mogadishu,AF,.so,"so-SO,ar-SO,it,en-SO",51537.0,Somalia,U1,so,2.0,11259029.0,0.05526144278735026,0.03689852757386296

+ Saint Pierre and Miquelon,SPM,SPM,508,SPM,xl,Part of FR,666.0,210,SB,FP,pm,SPM,SPM,F,,True,,Saint-Pierre-et-Miquelon,,Euro,Developed,,,EUR,,,978,,,,666.0,21.0,19.0,سان بيار وميكلون,2,,,,,Saint Pierre y Miquelon,,圣皮埃尔和密克隆,Saint Pierre and Miquelon,SAINT PIERRE AND MIQUELON,,Americas,,Northern America,Сен-Пьер и Микелон,World,Saint-Pierre,,.pm,fr-PM,3424932.0,St. Pierre & Miquelon,V0,pm,1.0,5471.0,0.6798034604406311,0.6616465373306651

+ Republic of Serbia,SRB,SRB,381,SRB,rb,Yes,688.0,2648,"RI,KV",YG,rs,SRB,SRB,SRB,la República de Serbia,True,,Serbie,Serbie (la),Serbian Dinar,Developed,Республика Сербия,Serbia,RSD,,Serbia,941,塞尔维亚共和国,la République de Serbie,Сербия,688.0,39.0,150.0,صربيا,2,جمهورية صربيا,塞尔维亚,,,Serbia,the Republic of Serbia,塞尔维亚,Serbia,SERBIA,,Europe,صربيا,Southern Europe,Сербия,World,Belgrade,EU,.rs,"sr,hu,bs,rom",6290252.0,Serbia,Z2,rs,4.0,7078110.0,0.4122239096297502,0.37581881448823085

+ Sao Tome and Principe,STP,STP,239,STP,sf,Yes,678.0,214,TP,TP,st,STP,STP,ST,la República Democrática de Santo Tomé y Príncipe,True,17.0,Sao Tomé-et-Principe,Sao Tomé-et-Principe [fém.],Dobra,Developing,Демократическая Республика Сан-Томе и Принсипи,Sao Tome and Principe,STN,x,Santo Tomé y Príncipe,930,圣多美和普林西比民主共和国,la République démocratique de Sao Tomé-et-Principe,Сан-Томе и Принсипи,678.0,202.0,2.0,سان تومي وبرينسيبي,2,جمهورية سان تومي وبرينسيبي الديمقراطية,圣多美和普林西比,,Middle Africa,Santo Tomé y Príncipe,the Democratic Republic of Sao Tome and Principe,圣多美和普林西比,Sao Tome and Principe,SAO TOME AND PRINCIPE,x,Africa,سان تومي وبرينسيبي,Sub-Saharan Africa,Сан-Томе и Принсипи,World,Sao Tome,AF,.st,pt-ST,2410758.0,São Tomé & Príncipe,S9,st,1.0,204454.0,0.28869955572486855,0.271003650965649

+ Suriname,SUR,SUR,597,SUR,sr,Yes,740.0,233,NS,SM,sr,SUR,SUR,SME,la República de Suriname,True,5.0,Suriname,Suriname (le),Surinam Dollar,Developing,Республика Суринам,Suriname,SRD,x,Suriname,968,苏里南共和国,la République du Suriname,Суринам,740.0,419.0,19.0,سورينام,2,جمهورية سورينام,苏里南,,South America,Suriname,the Republic of Suriname,苏里南,Suriname,SURINAME,,Americas,سورينام,Latin America and the Caribbean,Суринам,World,Paramaribo,SA,.sr,"nl-SR,en,srn,hns,jv",3382998.0,Suriname,V3,sr,1.0,597927.0,0.40306307883180864,0.3414259115119882

+ Slovakia,SVK,SVK,421,SVK,xo,Yes,703.0,223,LO,SQ,sk,SVK,SVK,SK,la República Eslovaca,True,,Slovaquie,Slovaquie (la),Euro,Developed,Словацкая Республика,Slovakia,EUR,,Eslovaquia,978,斯洛伐克共和国,la République slovaque,Словакия,703.0,151.0,150.0,سلوفاكيا,2,الجمهورية السلوفاكية,斯洛伐克,,,Eslovaquia,the Slovak Republic,斯洛伐克,Slovakia,SLOVAKIA,,Europe,سلوفاكيا,Eastern Europe,Словакия,World,Bratislava,EU,.sk,"sk,hu",3057568.0,Slovakia,2B,sk,1.0,5445040.0,0.27418056206209557,0.20514399523831328

+ Slovenia,SVN,SVN,386,SVN,xv,Yes,705.0,224,SI,LJ,si,SVN,SLO,SLO,la República de Eslovenia,True,,Slovénie,Slovénie (la),Euro,Developed,Республика Словения,Slovenia,EUR,,Eslovenia,978,斯洛文尼亚共和国,la République de Slovénie,Словения,705.0,39.0,150.0,سلوفينيا,2,جمهورية سلوفينيا,斯洛文尼亚,,,Eslovenia,the Republic of Slovenia,斯洛文尼亚,Slovenia,SLOVENIA,,Europe,سلوفينيا,Southern Europe,Словения,World,Ljubljana,EU,.si,"sl,sh",3190538.0,Slovenia,2A,si,1.0,2102126.0,0.2719743730984458,0.2457311427539439

+ Sweden,SWE,SWE,46,SWE,sw,Yes,752.0,236,SW,SN,se,S,SWE,S,el Reino de Suecia,True,,Suède,Suède (la),Swedish Krona,Developed,Королевство Швеция,Sweden,SEK,,Suecia,752,瑞典王国,le Royaume de Suède,Швеция,752.0,154.0,150.0,السويد,2,مملكة السويد,瑞典,,,Suecia,the Kingdom of Sweden,瑞典,Sweden,SWEDEN,,Europe,السويد,Northern Europe,Швеция,World,Stockholm,EU,.se,"sv-SE,se,sma,fi-SE",2661886.0,Sweden,V7,se,2.0,10040995.0,0.6972212661599166,0.6851008210148113

+ Swaziland,SWZ,SWZ,268,SWZ,sq,Yes,748.0,235,WZ,SV,sz,SWZ,SWZ,SD,,True,18.0,Eswatini,,Lilangeni,Developing,,,SZL,,,748,,,,748.0,202.0,2.0,إسواتيني,2,,,x,Southern Africa,Suazilandia,,斯威士兰,Eswatini,ESWATINI,,Africa,,Sub-Saharan Africa,Эсватини,World,Mbabane,AF,.sz,"en-SZ,ss-SZ",934841.0,Eswatini,,sz,1.0,1087200.0,0.0,0.0

+ Sint Maarten,SXM,,1-721,SXM,sn,Part of NL,534.0,,NN,,sx,,,,,True,29.0,Saint-Martin (partie néerlandaise),,Netherlands Antillean Guilder,Developing,,,ANG,x,,532,,,,534.0,419.0,19.0,سانت مارتن,2,,,,Caribbean,San Martín (parte holandés),,圣马丁(荷属),Sint Maarten (Dutch part),SINT MAARTEN (DUTCH PART),,Americas,,Latin America and the Caribbean,Синт-Мартен,World,Philipsburg,,.sx,"nl,en",7609695.0,Sint Maarten,,sx,1.0,42677.0,0.01668528963929506,0.014133743632507263

+ Seychelles,SYC,SEY,248,SYC,se,Yes,690.0,220,SE,SC,sc,SEY,SEY,SY,la República de Seychelles,True,14.0,Seychelles,Seychelles (les) [fém.],Seychelles Rupee,Developing,Республика Сейшельские Острова,Seychelles,SCR,x,Seychelles,690,塞舌尔共和国,la République des Seychelles,Сейшельские Острова,690.0,202.0,2.0,سيشيل,2,جمهورية سيشيل,塞舌尔,,Eastern Africa,Seychelles,the Republic of Seychelles,塞舌尔,Seychelles,SEYCHELLES,,Africa,سيشيل,Sub-Saharan Africa,Сейшельские Острова,World,Victoria,AF,.sc,"en-SC,fr-SC",241170.0,Seychelles,T2,sc,1.0,94633.0,0.43669722881456274,0.4250334488144112

+ Syria,SYR,SYR,963,SYR,sy,Yes,760.0,238,SY,SY,sy,SYR,SYR,SYR,la República Árabe Siria,True,,République arabe syrienne,République arabe syrienne (la),Syrian Pound,Developing,Сирийская Арабская Республика,Syrian Arab Republic,SYP,,República Árabe Siria (la),760,阿拉伯叙利亚共和国,la République arabe syrienne,Сирийская Арабская Республика,760.0,145.0,142.0,الجمهورية العربية السورية,2,الجمهورية العربية السورية,阿拉伯叙利亚共和国,,,República Árabe Siria,the Syrian Arab Republic,阿拉伯叙利亚共和国,Syrian Arab Republic,SYRIAN ARAB REPUBLIC,,Asia,الجمهورية العربية السورية,Western Asia,Сирийская Арабская Республика,World,Damascus,AS,.sy,"ar-SY,ku,hy,arc,fr,en",163843.0,Syria,V9,sy,2.0,19454263.0,0.17296881837229536,0.12861502067976133

+ Turks and Caicos Islands,TCA,TCA,1-649,TCA,tc,Territory of GB,796.0,251,TK,TI,tc,TCA,TKS, ,,True,29.0,Îles Turques-et-Caïques,,US Dollar,Developing,,,USD,,,840,,,,796.0,419.0,19.0,جزر تركس وكايكوس,2,,,,Caribbean,Islas Turcas y Caicos,,特克斯和凯科斯群岛,Turks and Caicos Islands,TURKS AND CAICOS ISLANDS,,Americas,,Latin America and the Caribbean,Острова Тёркс и Кайкос,World,Cockburn Town,,.tc,en-TC,3576916.0,Turks & Caicos Islands,W7,,,,,

+ Chad,TCD,CHA,235,TCD,cd,Yes,148.0,50,CD,CD,td,TCD,CHA,TCH,la República del Chad,True,17.0,Tchad,Tchad (le),CFA Franc BEAC,Developing,Республика Чад,Chad,XAF,,Chad (el),950,乍得共和国,la République du Tchad,Чад,148.0,202.0,2.0,تشاد,0,جمهورية تشاد,乍得,x,Middle Africa,Chad,the Republic of Chad,乍得,Chad,CHAD,x,Africa,تشاد,Sub-Saharan Africa,Чад,World,N'Djamena,AF,.td,"fr-TD,ar-TD,sre",2434508.0,Chad,F2,td,2.0,15833116.0,0.21686618721331902,0.202630424939843

+ Togo,TGO,TOG,228,TGO,tg,Yes,768.0,243,TO,TG,tg,TGO,TOG,TG,la República Togolesa,True,11.0,Togo,Togo (le),CFA Franc BCEAO,Developing,Тоголезская Республика,Togo,XOF,,Togo (el),952,多哥共和国,la République togolaise,Того,768.0,202.0,2.0,توغو,0,جمهورية توغو,多哥,,Western Africa,Togo,the Togolese Republic,多哥,Togo,TOGO,x,Africa,توغو,Sub-Saharan Africa,Того,World,Lome,AF,.tg,"fr-TG,ee,hna,kbp,dag,ha",2363686.0,Togo,W2,tg,1.0,8176449.0,0.4439755159614721,0.4321173396279847

+ Thailand,THA,THA,66,THA,th,Yes,764.0,240,TH,TH,th,THA,THA,T,el Reino de Tailandia,True,,Thaïlande,Thaïlande (la),Baht,Developing,Королевство Таиланд,Thailand,THB,,Tailandia,764,泰王国,le Royaume de Thaïlande,Таиланд,764.0,35.0,142.0,تايلند,2,مملكة تايلند,泰国,,,Tailandia,the Kingdom of Thailand,泰国,Thailand,THAILAND,,Asia,تايلند,South-eastern Asia,Таиланд,World,Bangkok,AS,.th,"th,en",1605651.0,Thailand,W1,th,1.0,68615858.0,0.11929430782140449,0.07621276328753093

+ Tajikistan,TJK,TJK,992,TJK,ta,Yes,762.0,239,TI,TA,tj,TJK,TJK,TJ,la República de Tayikistán,True,,Tadjikistan,Tadjikistan (le),Somoni,Developing,Республика Таджикистан,Tajikistan,TJS,,Tayikistán,972,塔吉克斯坦共和国,la République du Tadjikistan,Таджикистан,762.0,143.0,142.0,طاجيكستان,2,جمهورية طاجيكستان,塔吉克斯坦,x,,Tayikistán,the Republic of Tajikistan,塔吉克斯坦,Tajikistan,TAJIKISTAN,,Asia,طاجيكستان,Central Asia,Таджикистан,World,Dushanbe,AS,.tj,"tg,ru",1220409.0,Tajikistan,2D,tj,1.0,8604882.0,0.07147012339831865,0.04719971104294166

+ Turkmenistan,TKM,TKM,993,TKM,tk,Yes,795.0,250,TX,TR,tm,TKM,TKM,TM,Turkmenistán,True,,Turkménistan,Turkménistan (le),Turkmenistan New Manat,Developing,Туркменистан,Turkmenistan,TMT,,Turkmenistán,934,土库曼斯坦,le Turkménistan,Туркменистан,795.0,143.0,142.0,تركمانستان,2,تركمانستان,土库曼斯坦,x,,Turkmenistán,Turkmenistan,土库曼斯坦,Turkmenistan,TURKMENISTAN,,Asia,تركمانستان,Central Asia,Туркменистан,World,Ashgabat,AS,.tm,"tk,ru,uz",1218197.0,Turkmenistan,2E,tm,1.0,5411012.0,0.011628888694407691,0.007218330459024566

+ East Timor,TLS,TLS,670,TLS,em,Yes,626.0,242,TT,TM,tl,TLS,TLS,RI,la República Democrática de Timor-Leste,True,,Timor-Leste,Timor-Leste (le),US Dollar,Developing,Демократическая Республика Тимор-Лешти,Timor-Leste,USD,x,Timor-Leste,840,东帝汶民主共和国,la République démocratique du Timor-Leste,Тимор-Лешти,626.0,35.0,142.0,تيمور- ليشتي,2,جمهورية تيمور - ليشتي الديمقراطية,东帝汶,,,Timor-Leste,the Democratic Republic of Timor-Leste,东帝汶,Timor-Leste,TIMOR-LESTE,x,Asia,تيمور- ليشتي,South-eastern Asia,Тимор-Лешти,World,Dili,OC,.tl,"tet,pt-TL,id,en",1966436.0,Timor-Leste,Z3,tl,2.0,1321929.0,0.20039145632667346,0.18810841655262697

+ Tonga,TON,TGA,676,TON,to,Yes,776.0,245,TN,TO,to,TON,TGA,TO,el Reino de Tonga,True,,Tonga,Tonga (les) [fém.],Pa’anga,Developing,Королевство Тонга,Tonga,TOP,x,Tonga,776,汤加王国,le Royaume des Tonga,Тонга,776.0,61.0,9.0,تونغا,2,مملكة تونغا,汤加,,,Tonga,the Kingdom of Tonga,汤加,Tonga,TONGA,,Oceania,تونغا,Polynesia,Тонга,World,Nuku'alofa,OC,.to,"to,en-TO",4032283.0,Tonga,W4,to,1.0,106398.0,0.0,0.0

+ Trinidad and Tobago,TTO,TRI,1-868,TTO,tr,Yes,780.0,246,TD,TD,tt,TRD,TTO,TT,la República de Trinidad y Tabago,True,29.0,Trinité-et-Tobago,Trinité-et-Tobago (la),Trinidad and Tobago Dollar,Developing,Республика Тринидад и Тобаго,Trinidad and Tobago,TTD,x,Trinidad y Tabago,780,特立尼达和多巴哥共和国,la République de Trinité-et-Tobago,Тринидад и Тобаго,780.0,419.0,19.0,ترينيداد وتوباغو,2,جمهورية ترينيداد وتوباغو,特立尼达和多巴哥,,Caribbean,Trinidad y Tabago,the Republic of Trinidad and Tobago,特立尼达和多巴哥,Trinidad and Tobago,TRINIDAD AND TOBAGO,,Americas,ترينيداد وتوباغو,Latin America and the Caribbean,Тринидад и Тобаго,World,Port of Spain,,.tt,"en-TT,hns,fr,es,zh",3573591.0,Trinidad & Tobago,W5,,,,,

+ Tunisia,TUN,TUN,216,TUN,ti,Yes,788.0,248,TS,TS,tn,TUN,TUN,TN,la República de Túnez,True,,Tunisie,Tunisie (la),Tunisian Dinar,Developing,Тунисская Республика,Tunisia,TND,,Túnez,788,突尼斯共和国,la République tunisienne,Тунис,788.0,15.0,2.0,تونس,3,الجمهورية التونسية,突尼斯,,,Túnez,the Republic of Tunisia,突尼斯,Tunisia,TUNISIA,,Africa,تونس,Northern Africa,Тунис,World,Tunis,AF,.tn,"ar-TN,fr",2464461.0,Tunisia,W6,tn,2.0,11516189.0,0.6848735386025153,0.6218804931940778

+ Turkey,TUR,TUR,90,TUR,tu,Yes,792.0,249,TU,TU,tr,TUR,TUR,TR,la República de Turquía,True,,Turquie,Turquie (la),Turkish Lira,Developing,Турецкая Республика,Turkey,TRY,,Turquía,949,土耳其共和国,la République turque,Турция,792.0,145.0,142.0,تركيا,2,جمهورية تركيا,土耳其,,,Turquía,the Republic of Turkey,土耳其,Turkey,TURKEY,,Asia,تركيا,Western Asia,Турция,World,Ankara,AS,.tr,"tr-TR,ku,diq,az,av",298795.0,Turkey,W8,tr,1.0,81257239.0,0.3917797775020721,0.29994075871576903

+ Tuvalu,TUV,TUV,688,TUV,tv,Yes,798.0,252,TV,TV,tv,TUV,TUV,TV,Tuvalu,True,,Tuvalu,Tuvalu (les) [masc.],Australian Dollar,Developing,Тувалу,Tuvalu,AUD,x,Tuvalu,036,图瓦卢,Tuvalu (les) [masc.],Тувалу,798.0,61.0,9.0,توفالو,2,توفالو,图瓦卢,,,Tuvalu,Tuvalu,图瓦卢,Tuvalu,TUVALU,x,Oceania,توفالو,Polynesia,Тувалу,World,Funafuti,OC,.tv,"tvl,en,sm,gil",2110297.0,Tuvalu,2G,tv,1.0,11147.0,0.0,0.0

+ Taiwan,TWN,TPE,886,TWN,ch,Yes,158.0,925,TW, ,tw, ,TPE,RC,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Taipei,AS,.tw,"zh-TW,zh,nan,hak",1668284.0,Taiwan,,tw,1.0,23545963.0,0.0,0.0

+ United Republic of Tanzania,TZA,TAN,255,TZA,tz,Yes,834.0,257,TZ,TN,tz,TZA,TAN,EAT,la República Unida de Tanzanía,True,14.0,République-Unie de Tanzanie,République-Unie de Tanzanie (la),Tanzanian Shilling,Developing,Объединенная Республика Танзания,United Republic of Tanzania (the),TZS,,República Unida de Tanzanía (la),834,坦桑尼亚联合共和国,la République-Unie de Tanzanie,Объединенная Республика Танзания,834.0,202.0,2.0,جمهورية تنزانيا المتحدة,2,جمهورية تنزانيا المتحدة,坦桑尼亚联合共和国,,Eastern Africa,República Unida de Tanzanía,the United Republic of Tanzania,坦桑尼亚联合共和国,United Republic of Tanzania,"TANZANIA, UNITED REPUBLIC OF",x,Africa,جمهورية تنزانيا المتحدة,Sub-Saharan Africa,Объединенная Республика Танзания,World,Dodoma,AF,.tz,"sw-TZ,en,ar",149590.0,Tanzania,W0,tz,1.0,55451343.0,0.0,0.0

+ Uganda,UGA,UGA,256,UGA,ug,Yes,800.0,253,UG,UG,ug,UGA,UGA,EAU,la República de Uganda,True,14.0,Ouganda,Ouganda (l') [masc.],Uganda Shilling,Developing,Республика Уганда,Uganda,UGX,,Uganda,800,乌干达共和国,la République de l'Ouganda,Уганда,800.0,202.0,2.0,أوغندا,0,جمهورية أوغندا,乌干达,x,Eastern Africa,Uganda,the Republic of Uganda,乌干达,Uganda,UGANDA,x,Africa,أوغندا,Sub-Saharan Africa,Уганда,World,Kampala,AF,.ug,"en-UG,lg,sw,ar",226074.0,Uganda,W9,ug,1.0,40853749.0,0.0,0.0

+ Ukraine,UKR,UKR,380,UKR,un,Yes,804.0,254,UP,UR,ua,UKR,UKR,UA,Ucrania,True,,Ukraine,Ukraine (l') [fém.],Hryvnia,Developed,Украина,Ukraine,UAH,,Ucrania,980,乌克兰,l'Ukraine,Украина,804.0,151.0,150.0,أوكرانيا,2,أوكرانيا,乌克兰,,,Ucrania,Ukraine,乌克兰,Ukraine,UKRAINE,,Europe,أوكرانيا,Eastern Europe,Украина,World,Kyiv,EU,.ua,"uk,ru-UA,rom,pl,hu",690791.0,Ukraine,2H,ua,2.0,43952299.0,0.6685972128556646,0.6123868717854799

+ United States Minor Outlying Islands,UMI,, ,UMI,"ji,xf,wk,uc,up",Territories of US,581.0,,"FQ,HQ,DQ,JQ,KQ,MQ,BQ,LQ,WQ", ,um, , ,USA,,True,,Îles mineures éloignées des États-Unis,,US Dollar,Developing,,,USD,,,840,,,,581.0,57.0,9.0,نائية التابعة للولايات المتحدة,2,,,,,Islas menores alejadas de Estados Unidos,,美国本土外小岛屿,United States Minor Outlying Islands,UNITED STATES MINOR OUTLYING ISLANDS,,Oceania,,Micronesia,Внешние малые острова Coeдинeнныx Штaтoв,World,,OC,.um,en-UM,5854968.0,U.S. Outlying Islands,2J,,,,,

+ Uruguay,URY,URU,598,URY,uy,Yes,858.0,260,UY,UY,uy,URG,URU,ROU,la República Oriental del Uruguay,True,5.0,Uruguay,Uruguay (l') [masc.],Peso Uruguayo,Developing,Восточная Республика Уругвай,Uruguay,UYU,,Uruguay (el),858,乌拉圭东岸共和国,la République orientale de l'Uruguay,Уругвай,858.0,419.0,19.0,أوروغواي,2,جمهورية أوروغواي الشرقية,乌拉圭,,South America,Uruguay,the Eastern Republic of Uruguay,乌拉圭,Uruguay,URUGUAY,,Americas,أوروغواي,Latin America and the Caribbean,Уругвай,World,Montevideo,SA,.uy,es-UY,3439705.0,Uruguay,X3,uy,1.0,3369299.0,0.5683719349906563,0.5938452146574486

+ United States of America,USA,USA,1,USA,xxu,Yes,840.0,259,US,US,us,USA,USA,USA,los Estados Unidos de América,True,,États-Unis d'Amérique,États-Unis d'Amérique (les),US Dollar,Developed,Соединенные Штаты Америки,United States of America (the),USD,,Estados Unidos de América (los),840,美利坚合众国,les États-Unis d'Amérique,Соединенные Штаты Америки,840.0,21.0,19.0,الولايات المتحدة الأمريكية,2,الولايات المتحدة الأمريكية,美利坚合众国,,,Estados Unidos de América,the United States of America,美利坚合众国,United States of America,UNITED STATES OF AMERICA,,Americas,الولايات المتحدة الأمريكية,Northern America,Соединенные Штаты Америки,World,Washington,,.us,"en-US,es-US,haw,fr",6252001.0,US,,us,1.0,329256465.0,0.06200421108988978,0.06478311432626711

+ US Naval Base Guantanamo Bay,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Uzbekistan,UZB,UZB,998,UZB,uz,Yes,860.0,261,UZ,UZ,uz,UZB,UZB,UZ,la República de Uzbekistán,True,,Ouzbékistan,Ouzbékistan (l') [masc.],Uzbekistan Sum,Developing,Республика Узбекистан,Uzbekistan,UZS,,Uzbekistán,860,乌兹别克斯坦共和国,la République d'Ouzbékistan,Узбекистан,860.0,143.0,142.0,أوزبكستان,2,جمهورية أوزبكستان,乌兹别克斯坦,x,,Uzbekistán,the Republic of Uzbekistan,乌兹别克斯坦,Uzbekistan,UZBEKISTAN,,Asia,أوزبكستان,Central Asia,Узбекистан,World,Tashkent,AS,.uz,"uz,ru,tg",1512440.0,Uzbekistan,2K,uz,2.0,30023709.0,0.021489685918589026,0.011074228387996071

+ Vatican,VAT,VAT,39-06,VAT,vc,Yes,336.0,110,VT, ,va,CVA, ,V,la Santa Sede,True,,Saint-Siège,Saint-Siège (le)  *,Euro,Developed,Святой Престол,Holy See (the)  *,EUR,,Santa Sede (la)  *,978,教廷,le Saint-Siège,Святой Престол  *,336.0,39.0,150.0,الكرسي الرسولي,2,الكرسي الرسولي,教廷  *,,,Santa Sede,the Holy See,教廷,Holy See,HOLY SEE,,Europe,الكرسي الرسولي  *,Southern Europe,Святой Престол,World,Vatican City,EU,.va,"la,it,fr",3164670.0,Vatican City,,va,1.0,1000.0,0.4277737954892947,0.3614050163894951

+ Saint Vincent and the Grenadines,VCT,VIN,1-784,VCT,xm,Yes,670.0,211,VC,VG,vc,VCT,VIN,WV,San Vicente y las Granadinas,True,29.0,Saint-Vincent-et-les Grenadines,Saint-Vincent-et-les Grenadines [fém.],East Caribbean Dollar,Developing,Сент-Винсент и Гренадины,Saint Vincent and the Grenadines,XCD,x,San Vicente y las Granadinas,951,圣文森特和格林纳丁斯,Saint-Vincent-et-les Grenadines [fém.],Сент-Винсент и Гренадины,670.0,419.0,19.0,سانت فنسنت وجزر غرينادين,2,سانت فنسنت وجزر غرينادين,圣文森特和格林纳丁斯,,Caribbean,San Vicente y las Granadinas,Saint Vincent and the Grenadines,圣文森特和格林纳丁斯,Saint Vincent and the Grenadines,SAINT VINCENT AND THE GRENADINES,,Americas,سانت فنسنت وجزر غرينادين,Latin America and the Caribbean,Сент-Винсент и Гренадины,World,Kingstown,,.vc,"en-VC,fr",3577815.0,St. Vincent & Grenadines,V1,,,,,

+ Venezuela,VEN,VEN,58,VEN,ve,Yes,862.0,263,VE,VN,ve,VEN,VEN,YV,la República Bolivariana de Venezuela,True,5.0,Venezuela (République bolivarienne du),Venezuela (République bolivarienne du),Bolívar,Developing,Боливарианская Республика Венесуэла,Venezuela (Bolivarian Republic of),VEF,,Venezuela (República Bolivariana de),937,委内瑞拉玻利瓦尔共和国,la République bolivarienne du Venezuela,Венесуэла (Боливарианская Республика),862.0,419.0,19.0,فنزويلا (جمهورية - البوليفارية),2,جمهورية فنزويلا البوليفارية,委内瑞拉(玻利瓦尔共和国),,South America,Venezuela (República Bolivariana de),the Bolivarian Republic of Venezuela,委内瑞拉(玻利瓦尔共和国),Venezuela (Bolivarian Republic of),VENEZUELA (BOLIVARIAN REPUBLIC OF),,Americas,فنزويلا,Latin America and the Caribbean,Венесуэла (Боливарианская Республика),World,Caracas,SA,.ve,es-VE,3625428.0,Venezuela,,ve,1.0,31689176.0,0.5296193030594751,0.5533557682035316

+ British Virgin Islands,VGB,VGB,1-284,VGB,vb,Territory of GB,92.0,39,VI,VI,vg,VRG,IVB,BVI,,True,29.0,Îles Vierges britanniques,,US Dollar,Developing,,,USD,x,,840,,,,92.0,419.0,19.0,جزر فرجن البريطانية,2,,,,Caribbean,Islas Vírgenes Británicas,,英属维尔京群岛,British Virgin Islands,VIRGIN ISLANDS (BRITISH),,Americas,,Latin America and the Caribbean,Британские Виргинские острова,World,Road Town,,.vg,en-VG,3577718.0,British Virgin Islands,,,,,,

+ United States Virgin Islands,VIR,VIR,1-340,VIR,vi,Territory of US,850.0,258,VQ,VI,vi,VIR,ISV,USA,,True,29.0,Îles Vierges américaines,,US Dollar,Developing,,,USD,x,,840,,,,850.0,419.0,19.0,جزر فرجن التابعة للولايات المتحدة,2,,,,Caribbean,Islas Vírgenes de los Estados Unidos,,美属维尔京群岛,United States Virgin Islands,VIRGIN ISLANDS (U.S.),,Americas,,Latin America and the Caribbean,Виргинские oстрова Coeдинeнныx Штaтoв,World,Charlotte Amalie,,.vi,en-VI,4796775.0,U.S. Virgin Islands,,,,,,

+ Vietnam,VNM,VIE,84,VNM,vm,Yes,704.0,264,VM,VS,vn,VTN,VIE,VN,la República Socialista de Viet Nam,True,,Viet Nam,Viet Nam (le),Dong,Developing,Социалистическая Республика Вьетнам,Viet Nam,VND,,Viet Nam,704,越南社会主义共和国,la République socialiste du Viet Nam,Вьетнам,704.0,35.0,142.0,فييت نام,0,جمهورية فييت نام الاشتراكية,越南,,,Viet Nam,the Socialist Republic of Viet Nam,越南,Viet Nam,VIET NAM,,Asia,فييت نام,South-eastern Asia,Вьетнам,World,Hanoi,AS,.vn,"vi,en,fr,zh,km",1562822.0,Vietnam,Q1,vn,1.0,97040334.0,0.3786321679905688,0.3242666103675215

+ Vanuatu,VUT,VAN,678,VUT,nn,Yes,548.0,262,NH,NV,vu,VUT,VAN,VU,la República de Vanuatu,True,,Vanuatu,Vanuatu (le) [masc.],Vatu,Developing,Республика Вануату,Vanuatu,VUV,x,Vanuatu,548,瓦努阿图共和国,la République de Vanuatu,Вануату,548.0,54.0,9.0,فانواتو,0,جمهورية فانواتو,瓦努阿图,,,Vanuatu,the Republic of Vanuatu,瓦努阿图,Vanuatu,VANUATU,x,Oceania,فانواتو,Melanesia,Вануату,World,Port Vila,OC,.vu,"bi,en-VU,fr-VU",2134431.0,Vanuatu,2L,vu,2.0,288037.0,0.36391435734546895,0.354194540678676

+ Wallis and Futuna,WLF,WLF,681,WLF,wf,Territory of FR,876.0,266,WF,FW,wf,WAL,WAF,F,,True,,Îles Wallis-et-Futuna,,CFP Franc,Developing,,,XPF,,,953,,,,876.0,61.0,9.0,جزر واليس وفوتونا,0,,,,,Islas Wallis y Futuna,,瓦利斯群岛和富图纳群岛,Wallis and Futuna Islands,WALLIS AND FUTUNA,,Oceania,,Polynesia,Острова Уоллис и Футуна,World,Mata Utu,OC,.wf,"wls,fud,fr-WF",4034749.0,Wallis & Futuna,X8,wf,1.0,15763.0,0.35184005620408215,0.34244273297868566

+ Akrotiri Sovereign Base Area,-99,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,

+ Samoa,WSM,SAM,685,WSM,ws,Yes,882.0,212,WS,ZM,ws,SMO,SAM,WS,el Estado Independiente de Samoa,True,,Samoa,Samoa (le),Tala,Developing,Независимое Государство Самоа,Samoa,WST,x,Samoa,882,萨摩亚独立国,l'État indépendant du Samoa,Самоа,882.0,61.0,9.0,ساموا,2,دولة ساموا المستقلة,萨摩亚,,,Samoa,the Independent State of Samoa,萨摩亚,Samoa,SAMOA,,Oceania,ساموا,Polynesia,Самоа,World,Apia,OC,.ws,"sm,en-WS",4034894.0,Samoa,Y0,ws,1.0,201316.0,0.0,0.0

+ Yemen,YEM,YEM,967,YEM,ye,Yes,887.0,269,YM,YE,ye,YEM,YEM,YAR,la República del Yemen,True,,Yémen,Yémen (le),Yemeni Rial,Developing,Йеменская Республика,Yemen,YER,,Yemen (el),886,也门共和国,la République du Yémen,Йемен,887.0,145.0,142.0,اليمن,2,الجمهورية اليمنية,也门,,,Yemen,the Republic of Yemen,也门,Yemen,YEMEN,x,Asia,اليمن,Western Asia,Йемен,World,Sanaa,AS,.ye,ar-YE,69543.0,Yemen,T7,ye,1.0,28667230.0,0.12027490489011526,0.08030856001370172

+ South Africa,ZAF,RSA,27,ZAF,sa,Yes,710.0,227,SF,ZA,za,AFS,RSA,ZA,la República de Sudáfrica,True,18.0,Afrique du Sud,Afrique du Sud (l') [fém.],Rand,Developing,Южно-Африканская Республика,South Africa,ZAR,,Sudáfrica,710,南非共和国,la République sud-africaine,Южная Африка,710.0,202.0,2.0,جنوب أفريقيا,2,جمهورية جنوب أفريقيا,南非,,Southern Africa,Sudáfrica,the Republic of South Africa,南非,South Africa,SOUTH AFRICA,,Africa,جنوب أفريقيا,Sub-Saharan Africa,Южная Африка,World,Pretoria,AF,.za,"zu,xh,af,nso,en-ZA,tn,st,ts,ss,ve,nr",953987.0,South Africa,T3,za,10.0,55380210.0,0.028831386519364323,0.02065316504637049

+ Zambia,ZMB,ZAM,260,ZMB,za,Yes,894.0,270,ZA,ZB,zm,ZMB,ZAM,Z,la República de Zambia,True,14.0,Zambie,Zambie (la),Zambian Kwacha,Developing,Республика Замбия,Zambia,ZMW,,Zambia,967,赞比亚共和国,la République de Zambie,Замбия,894.0,202.0,2.0,زامبيا,2,جمهورية زامبيا,赞比亚,x,Eastern Africa,Zambia,the Republic of Zambia,赞比亚,Zambia,ZAMBIA,x,Africa,زامبيا,Sub-Saharan Africa,Замбия,World,Lusaka,AF,.zm,"en-ZM,bem,loz,lun,lue,ny,toi",895949.0,Zambia,Y4,,,,,

+ Zimbabwe,ZWE,ZIM,263,ZWE,rh,Yes,716.0,271,ZI,ZW,zw,ZWE,ZIM,ZW,la República de Zimbabwe,True,14.0,Zimbabwe,Zimbabwe (le),Zimbabwe Dollar,Developing,Республика Зимбабве,Zimbabwe,ZWL,,Zimbabwe,932,津巴布韦共和国,la République du Zimbabwe,Зимбабве,716.0,202.0,2.0,زمبابوي,2,جمهورية زمبابوي,津巴布韦,x,Eastern Africa,Zimbabwe,the Republic of Zimbabwe,津巴布韦,Zimbabwe,ZIMBABWE,,Africa,زمبابوي,Sub-Saharan Africa,Зимбабве,World,Harare,AF,.zw,"en-ZW,sn,nr,nd",878675.0,Zimbabwe,Y5,zw,2.0,14030368.0,0.0,0.0

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,87 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ca.po,  496, 4074, 5384, 0, 0, 0, 0, 496, 4074 

+ po/cs.po,  497, 4088, 3994, 0, 0, 0, 0, 497, 4088 

+ po/uk.po,  497, 4088, 3802, 0, 0, 0, 0, 497, 4088 

+ po/sr@latin.po,  497, 4088, 4232, 0, 0, 0, 0, 497, 4088 

+ po/sq.po,  485, 4024, 4807, 0, 0, 0, 0, 485, 4024 

+ po/en_GB.po,  497, 4088, 4088, 0, 0, 0, 0, 497, 4088 

+ po/ms.po,  345, 2295, 2161, 33, 242, 83, 1417, 461, 3954 

+ po/tr.po,  497, 4088, 3404, 0, 0, 0, 0, 497, 4088 

+ po/ar.po,  474, 3940, 3574, 9, 91, 1, 4, 484, 4035 

+ po/ja.po,  496, 4074, 1646, 0, 0, 0, 0, 496, 4074 

+ po/sl.po,  497, 4088, 4084, 0, 0, 0, 0, 497, 4088 

+ po/he.po,  497, 4088, 4087, 0, 0, 0, 0, 497, 4088 

+ po/pa.po,  497, 4088, 4701, 0, 0, 0, 0, 497, 4088 

+ po/de.po,  497, 4088, 4533, 0, 0, 0, 0, 497, 4088 

+ po/az.po,  397, 3479, 3208, 31, 234, 33, 241, 461, 3954 

+ po/ast.po,  497, 4088, 4700, 0, 0, 0, 0, 497, 4088 

+ po/eu.po,  497, 4088, 3796, 0, 0, 0, 0, 497, 4088 

+ po/bs.po,  443, 3832, 3670, 11, 72, 7, 50, 461, 3954 

+ po/bn.po,  485, 4024, 4139, 0, 0, 0, 0, 485, 4024 

+ po/fr.po,  497, 4088, 5075, 0, 0, 0, 0, 497, 4088 

+ po/hr.po,  415, 3478, 3446, 6, 52, 51, 432, 472, 3962 

+ po/gu.po,  497, 4088, 4445, 0, 0, 0, 0, 497, 4088 

+ po/sv.po,  497, 4088, 3991, 0, 0, 0, 0, 497, 4088 

+ po/pl.po,  496, 4074, 4023, 0, 0, 0, 0, 496, 4074 

+ po/zh_HK.po,  497, 4088, 1300, 0, 0, 0, 0, 497, 4088 

+ po/or.po,  497, 4088, 4141, 0, 0, 0, 0, 497, 4088 

+ po/te.po,  497, 4088, 3604, 0, 0, 0, 0, 497, 4088 

+ po/fi.po,  497, 4088, 3293, 0, 0, 0, 0, 497, 4088 

+ po/zh_TW.po,  497, 4088, 1300, 0, 0, 0, 0, 497, 4088 

+ po/yi.po,  1, 1, 1, 0, 0, 460, 3953, 461, 3954 

+ po/mk.po,  477, 4004, 4344, 0, 0, 0, 0, 477, 4004 

+ po/ne.po,  480, 4026, 3967, 0, 0, 1, 6, 481, 4032 

+ po/be.po,  497, 4088, 3838, 0, 0, 0, 0, 497, 4088 

+ po/lv.po,  496, 4074, 3481, 0, 0, 0, 0, 496, 4074 

+ po/th.po,  497, 4088, 1820, 0, 0, 0, 0, 497, 4088 

+ po/id.po,  497, 4088, 4008, 0, 0, 0, 0, 497, 4088 

+ po/es.po,  496, 4074, 5057, 0, 0, 0, 0, 496, 4074 

+ po/nl.po,  497, 4088, 4205, 0, 0, 0, 0, 497, 4088 

+ po/fa.po,  444, 3752, 4159, 4, 24, 13, 178, 461, 3954 

+ po/hu.po,  497, 4088, 4032, 0, 0, 0, 0, 497, 4088 

+ po/xh.po,  443, 3832, 3244, 11, 72, 7, 50, 461, 3954 

+ po/da.po,  497, 4088, 3891, 0, 0, 0, 0, 497, 4088 

+ po/pt_BR.po,  497, 4088, 4748, 0, 0, 0, 0, 497, 4088 

+ po/bn_IN.po,  485, 4024, 4183, 0, 0, 0, 0, 485, 4024 

+ po/mr.po,  485, 4024, 3849, 0, 0, 0, 0, 485, 4024 

+ po/hi.po,  496, 4074, 4733, 0, 0, 0, 0, 496, 4074 

+ po/lt.po,  497, 4088, 3544, 0, 0, 0, 0, 497, 4088 

+ po/kn.po,  484, 4035, 3566, 0, 0, 0, 0, 484, 4035 

+ po/vi.po,  485, 4024, 5953, 5, 25, 7, 39, 497, 4088 

+ po/ug.po,  497, 4088, 3801, 0, 0, 0, 0, 497, 4088 

+ po/rw.po,  3, 3, 3, 428, 3832, 30, 119, 461, 3954 

+ po/km.po,  497, 4088, 1957, 0, 0, 0, 0, 497, 4088 

+ po/ca@valencia.po,  496, 4074, 5380, 0, 0, 0, 0, 496, 4074 

+ po/cy.po,  484, 4035, 4233, 0, 0, 0, 0, 484, 4035 

+ po/nn.po,  477, 4004, 4022, 0, 0, 0, 0, 477, 4004 

+ po/ku.po,  9, 10, 12, 0, 0, 452, 3944, 461, 3954 

+ po/as.po,  497, 4088, 4103, 0, 0, 0, 0, 497, 4088 

+ po/eo.po,  114, 553, 576, 2, 19, 380, 3502, 496, 4074 

+ po/mai.po,  429, 3565, 3838, 0, 0, 47, 421, 476, 3986 

+ po/nb.po,  497, 4088, 4003, 0, 0, 0, 0, 497, 4088 

+ po/el.po,  496, 4074, 4400, 0, 0, 0, 0, 496, 4074 

+ po/mn.po,  443, 3832, 3414, 11, 72, 7, 50, 461, 3954 

+ po/ta.po,  497, 4088, 3251, 0, 0, 0, 0, 497, 4088 

+ po/ro.po,  485, 4024, 4546, 0, 0, 0, 0, 485, 4024 

+ po/si.po,  11, 22, 29, 0, 0, 470, 4010, 481, 4032 

+ po/hy.po,  483, 4025, 3888, 0, 0, 0, 0, 483, 4025 

+ po/zh_CN.po,  497, 4088, 1124, 0, 0, 0, 0, 497, 4088 

+ po/ka.po,  481, 4032, 3302, 0, 0, 0, 0, 481, 4032 

+ po/en_CA.po,  481, 4032, 4030, 0, 0, 0, 0, 481, 4032 

+ po/am.po,  19, 40, 40, 2, 9, 440, 3905, 461, 3954 

+ po/gl.po,  497, 4088, 5218, 0, 0, 0, 0, 497, 4088 

+ po/sk.po,  461, 3957, 3742, 0, 0, 16, 47, 477, 4004 

+ po/dz.po,  477, 4004, 2148, 0, 0, 0, 0, 477, 4004 

+ po/it.po,  497, 4088, 4609, 0, 0, 0, 0, 497, 4088 

+ po/sr.po,  497, 4088, 4232, 0, 0, 0, 0, 497, 4088 

+ po/oc.po,  45, 188, 228, 0, 0, 426, 3767, 471, 3955 

+ po/ml.po,  496, 4074, 3459, 0, 0, 0, 0, 496, 4074 

+ po/ru.po,  497, 4088, 3972, 0, 0, 0, 0, 497, 4088 

+ po/pt.po,  497, 4088, 4675, 0, 0, 0, 0, 497, 4088 

+ po/is.po,  178, 1159, 1217, 22, 133, 261, 2662, 461, 3954 

+ po/ga.po,  61, 264, 277, 16, 89, 384, 3601, 461, 3954 

+ po/et.po,  393, 2728, 2310, 0, 0, 90, 1286, 483, 4014 

+ po/mg.po,  477, 3998, 4428, 2, 19, 0, 0, 479, 4017 

+ po/ko.po,  497, 4088, 3534, 0, 0, 0, 0, 497, 4088 

+ po/bg.po,  497, 4088, 4854, 0, 0, 0, 0, 497, 4088 

+ po/en@shaw.po,  484, 4035, 4035, 0, 0, 0, 0, 484, 4035 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

@@ -0,0 +1,28 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/id.gmo,  17, 134, 132, 0, 0, 0, 0, 17, 134 

+ po/id.po,  17, 134, 132, 0, 0, 0, 0, 17, 134 

+ po/fr.gmo,  17, 134, 177, 0, 0, 0, 0, 17, 134 

+ po/de.po,  13, 105, 106, 2, 15, 2, 14, 17, 134 

+ po/pl.po,  17, 134, 124, 0, 0, 0, 0, 17, 134 

+ po/pt_BR.gmo,  17, 134, 178, 0, 0, 0, 0, 17, 134 

+ po/fur.gmo,  17, 134, 204, 0, 0, 0, 0, 17, 134 

+ po/cs.gmo,  17, 134, 166, 0, 0, 0, 0, 17, 134 

+ po/sk.po,  17, 134, 132, 0, 0, 0, 0, 17, 134 

+ po/tr.po,  17, 134, 137, 0, 0, 0, 0, 17, 134 

+ po/fur.po,  17, 134, 204, 0, 0, 0, 0, 17, 134 

+ po/uk.gmo,  17, 134, 147, 0, 0, 0, 0, 17, 134 

+ po/it.gmo,  17, 134, 182, 0, 0, 0, 0, 17, 134 

+ po/it.po,  17, 134, 182, 0, 0, 0, 0, 17, 134 

+ po/fr.po,  17, 134, 177, 0, 0, 0, 0, 17, 134 

+ po/sv.po,  17, 134, 135, 0, 0, 0, 0, 17, 134 

+ po/pt_BR.po,  17, 134, 178, 0, 0, 0, 0, 17, 134 

+ po/cs.po,  17, 134, 166, 0, 0, 0, 0, 17, 134 

+ po/ModemManager.pot,  0, 0, 0, 0, 0, 17, 134, 17, 134 

+ po/tr.gmo,  17, 134, 137, 0, 0, 0, 0, 17, 134 

+ po/de.gmo,  13, 105, 106, 0, 0, 0, 0, 13, 105 

+ po/uk.po,  17, 134, 147, 0, 0, 0, 0, 17, 134 

+ po/sk.gmo,  17, 134, 132, 0, 0, 0, 0, 17, 134 

+ po/hu.po,  17, 134, 157, 0, 0, 0, 0, 17, 134 

+ po/pl.gmo,  17, 134, 124, 0, 0, 0, 0, 17, 134 

+ po/sv.gmo,  17, 134, 135, 0, 0, 0, 0, 17, 134 

+ po/hu.gmo,  17, 134, 157, 0, 0, 0, 0, 17, 134 

@@ -0,0 +1,6 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

@@ -0,0 +1,67 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  2059, 23046, 5523, 17, 646, 19, 624, 2095, 24316 

+ po/zh_HK.po,  30, 156, 63, 374, 1565, 1691, 22595, 2095, 24316 

+ po/zh_CN.po,  2111, 24616, 8871, 0, 0, 0, 0, 2111, 24616 

+ po/wa.po,  0, 0, 0, 167, 591, 1928, 23725, 2095, 24316 

+ po/vi.po,  20, 137, 175, 79, 414, 1996, 23765, 2095, 24316 

+ po/uk.po,  2082, 23993, 23661, 11, 294, 2, 29, 2095, 24316 

+ po/tr.po,  992, 6775, 6081, 425, 2381, 678, 15160, 2095, 24316 

+ po/th.po,  8, 13, 11, 328, 1285, 1759, 23018, 2095, 24316 

+ po/te.po,  757, 4699, 4122, 537, 3420, 801, 16197, 2095, 24316 

+ po/ta.po,  928, 6212, 5445, 461, 2665, 706, 15439, 2095, 24316 

+ po/sv.po,  1800, 18964, 16695, 190, 2797, 105, 2555, 2095, 24316 

+ po/sr@latin.po,  127, 599, 624, 654, 3245, 1314, 20472, 2095, 24316 

+ po/sr.po,  127, 599, 624, 654, 3245, 1314, 20472, 2095, 24316 

+ po/sq.po,  0, 0, 0, 80, 291, 2015, 24025, 2095, 24316 

+ po/sl.po,  249, 1228, 1253, 519, 2442, 1327, 20646, 2095, 24316 

+ po/sk.po,  485, 1759, 1779, 224, 1133, 1386, 21424, 2095, 24316 

+ po/rw.po,  0, 0, 0, 255, 1018, 1840, 23298, 2095, 24316 

+ po/ru.po,  1813, 21643, 19402, 226, 1819, 56, 854, 2095, 24316 

+ po/pt_BR.po,  2102, 24460, 27002, 0, 0, 0, 0, 2102, 24460 

+ po/pt.po,  2, 2, 2, 231, 885, 1862, 23429, 2095, 24316 

+ po/pl.po,  1759, 12416, 12254, 0, 0, 0, 0, 1759, 12416 

+ po/pa.po,  1047, 5352, 6050, 334, 2350, 714, 16614, 2095, 24316 

+ po/or.po,  671, 3889, 4028, 584, 3535, 840, 16892, 2095, 24316 

+ po/oc.po,  132, 427, 520, 353, 1541, 1610, 22348, 2095, 24316 

+ po/nl.po,  14, 92, 88, 32, 172, 2049, 24052, 2095, 24316 

+ po/ne.po,  2, 2, 4, 159, 615, 1934, 23699, 2095, 24316 

+ po/nb.po,  9, 45, 44, 36, 205, 2050, 24066, 2095, 24316 

+ po/mr.po,  757, 4699, 4528, 538, 3426, 800, 16191, 2095, 24316 

+ po/ml.po,  671, 3889, 3279, 584, 3535, 840, 16892, 2095, 24316 

+ po/mk.po,  0, 0, 0, 4, 32, 2091, 24284, 2095, 24316 

+ po/lv.po,  5, 10, 10, 319, 1279, 1771, 23027, 2095, 24316 

+ po/lt.po,  529, 2692, 2368, 558, 3251, 1008, 18373, 2095, 24316 

+ po/ku.po,  1, 2, 2, 302, 1214, 1792, 23100, 2095, 24316 

+ po/ko.po,  1783, 21430, 17327, 263, 2106, 65, 1080, 2111, 24616 

+ po/kn.po,  757, 4699, 4247, 537, 3420, 801, 16197, 2095, 24316 

+ po/ka.po,  8, 13, 13, 328, 1285, 1759, 23018, 2095, 24316 

+ po/ja.po,  2111, 24616, 9596, 0, 0, 0, 0, 2111, 24616 

+ po/it.po,  2015, 23495, 24991, 63, 539, 17, 282, 2095, 24316 

+ po/id.po,  1831, 19335, 18256, 172, 2846, 92, 2135, 2095, 24316 

+ po/hu.po,  317, 1602, 1574, 629, 3317, 1149, 19397, 2095, 24316 

+ po/hr.po,  91, 336, 307, 544, 2668, 1460, 21312, 2095, 24316 

+ po/hi.po,  757, 4699, 5252, 598, 4414, 740, 15203, 2095, 24316 

+ po/he.po,  0, 0, 0, 4, 32, 2091, 24284, 2095, 24316 

+ po/gu.po,  682, 3947, 4230, 634, 4574, 779, 15795, 2095, 24316 

+ po/gl.po,  465, 1914, 2386, 509, 2428, 1121, 19974, 2095, 24316 

+ po/gd.po,  124, 994, 1281, 407, 2210, 1564, 21112, 2095, 24316 

+ po/fr.po,  2111, 24616, 27745, 0, 0, 0, 0, 2111, 24616 

+ po/fi.po,  89, 430, 370, 444, 2055, 1562, 21831, 2095, 24316 

+ po/eu.po,  99, 419, 458, 447, 2080, 1549, 21817, 2095, 24316 

+ po/et.po,  24, 156, 121, 81, 414, 1990, 23746, 2095, 24316 

+ po/es.po,  1968, 22413, 25942, 79, 1101, 48, 802, 2095, 24316 

+ po/eo.po,  199, 922, 841, 468, 2184, 1428, 21210, 2095, 24316 

+ po/en_GB.po,  243, 1192, 1191, 616, 3028, 1236, 20096, 2095, 24316 

+ po/en_CA.po,  3, 5, 5, 426, 1820, 1666, 22491, 2095, 24316 

+ po/el.po,  717, 4543, 4963, 617, 4431, 761, 15342, 2095, 24316 

+ po/dz.po,  2, 2, 2, 236, 907, 1857, 23407, 2095, 24316 

+ po/de.po,  1895, 21243, 20703, 144, 2219, 56, 854, 2095, 24316 

+ po/da.po,  436, 3694, 3452, 481, 2346, 1178, 18276, 2095, 24316 

+ po/cs.po,  402, 1243, 1204, 466, 2492, 1227, 20581, 2095, 24316 

+ po/ca.po,  1147, 8060, 9833, 391, 2583, 557, 13673, 2095, 24316 

+ po/bs.po,  0, 0, 0, 84, 311, 2011, 24005, 2095, 24316 

+ po/bn_IN.po,  760, 4720, 4876, 595, 4393, 740, 15203, 2095, 24316 

+ po/bg.po,  133, 625, 785, 556, 2739, 1406, 20952, 2095, 24316 

+ po/be@latin.po,  0, 0, 0, 8, 39, 2087, 24277, 2095, 24316 

+ po/as.po,  767, 4768, 4856, 589, 4351, 739, 15197, 2095, 24316 

+ po/ar.po,  2, 2, 2, 174, 676, 1919, 23638, 2095, 24316 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,54 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/mr.po,  9, 34, 33, 2, 5, 585, 3202, 596, 3241 

+ po/ca@valencia.po,  9, 34, 38, 5, 11, 582, 3196, 596, 3241 

+ po/fi.po,  154, 527, 452, 39, 238, 799, 4895, 992, 5660 

+ po/pa.po,  122, 463, 530, 31, 156, 443, 2622, 596, 3241 

+ po/bn_IN.po,  9, 34, 35, 2, 5, 585, 3202, 596, 3241 

+ po/ro.po,  16, 54, 54, 2, 5, 578, 3182, 596, 3241 

+ po/tg.po,  6, 10, 10, 0, 0, 543, 3054, 549, 3064 

+ po/ug.po,  427, 2314, 2171, 20, 104, 489, 2908, 936, 5326 

+ po/fa.po,  15, 51, 62, 2, 5, 579, 3185, 596, 3241 

+ po/eu.po,  512, 2754, 2871, 146, 876, 458, 2732, 1116, 6362 

+ po/tr.po,  690, 3862, 3695, 0, 0, 426, 2500, 1116, 6362 

+ po/gu.po,  16, 54, 66, 2, 5, 578, 3182, 596, 3241 

+ po/ko.po,  16, 54, 49, 2, 5, 578, 3182, 596, 3241 

+ po/te.po,  9, 34, 34, 2, 5, 585, 3202, 596, 3241 

+ po/sr@latin.po,  963, 5506, 6068, 0, 0, 153, 856, 1116, 6362 

+ po/kn.po,  9, 34, 36, 2, 5, 585, 3202, 596, 3241 

+ po/hu.po,  970, 5550, 5902, 0, 0, 146, 812, 1116, 6362 

+ po/da.po,  1110, 6328, 6004, 0, 0, 6, 34, 1116, 6362 

+ po/sv.po,  963, 5506, 5232, 0, 0, 153, 856, 1116, 6362 

+ po/gl.po,  156, 780, 1018, 21, 127, 419, 2334, 596, 3241 

+ po/bs.po,  815, 4586, 4629, 0, 0, 301, 1776, 1116, 6362 

+ po/pt.po,  841, 4756, 5448, 0, 0, 275, 1606, 1116, 6362 

+ po/zh_HK.po,  16, 54, 34, 2, 5, 578, 3182, 596, 3241 

+ po/en_GB.po,  468, 2531, 2531, 21, 105, 447, 2690, 936, 5326 

+ po/fr.po,  58, 213, 247, 9, 44, 529, 2984, 596, 3241 

+ po/pl.po,  1176, 6641, 7263, 0, 0, 0, 0, 1176, 6641 

+ po/lt.po,  1099, 6264, 5876, 0, 0, 17, 98, 1116, 6362 

+ po/he.po,  16, 54, 64, 2, 5, 578, 3182, 596, 3241 

+ po/de.po,  1042, 5964, 5923, 0, 0, 74, 398, 1116, 6362 

+ po/or.po,  16, 54, 71, 2, 5, 578, 3182, 596, 3241 

+ po/as.po,  16, 54, 68, 2, 5, 578, 3182, 596, 3241 

+ po/vi.po,  31, 134, 191, 2, 5, 563, 3102, 596, 3241 

+ po/el.po,  507, 2723, 2999, 12, 69, 597, 3570, 1116, 6362 

+ po/sr.po,  963, 5506, 6068, 0, 0, 153, 856, 1116, 6362 

+ po/nb.po,  35, 128, 124, 6, 28, 555, 3085, 596, 3241 

+ po/es.po,  1138, 6436, 8151, 10, 48, 16, 109, 1164, 6593 

+ po/it.po,  93, 346, 400, 391, 1798, 390, 2780, 874, 4924 

+ po/ta.po,  9, 34, 33, 2, 5, 585, 3202, 596, 3241 

+ po/ar.po,  10, 48, 51, 0, 0, 539, 3016, 549, 3064 

+ po/et.po,  32, 139, 133, 2, 5, 562, 3097, 596, 3241 

+ po/cs.po,  1077, 6171, 6384, 4, 21, 35, 170, 1116, 6362 

+ po/nl.po,  1113, 6352, 5724, 0, 0, 0, 0, 1113, 6352 

+ po/sl.po,  480, 2593, 2936, 20, 94, 616, 3675, 1116, 6362 

+ po/pt_BR.po,  1110, 6328, 7398, 0, 0, 6, 34, 1116, 6362 

+ po/uk.po,  81, 305, 336, 17, 102, 498, 2834, 596, 3241 

+ po/lv.po,  32, 139, 133, 2, 5, 562, 3097, 596, 3241 

+ po/zh_TW.po,  23, 86, 44, 2, 11, 571, 3144, 596, 3241 

+ po/eo.po,  6, 15, 14, 0, 0, 590, 3226, 596, 3241 

+ po/ru.po,  32, 139, 129, 2, 5, 562, 3097, 596, 3241 

+ po/zh_CN.po,  112, 468, 245, 18, 81, 466, 2692, 596, 3241 

+ po/ca.po,  1110, 6328, 8206, 0, 0, 6, 34, 1116, 6362 

+ po/id.po,  970, 5550, 5624, 0, 0, 146, 812, 1116, 6362 

+ po/bg.po,  16, 54, 59, 2, 5, 578, 3182, 596, 3241 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,60 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/sk.po,  5, 14, 14, 26, 60, 138, 975, 169, 1049 

+ po/bs.po,  169, 1049, 1020, 0, 0, 0, 0, 169, 1049 

+ po/ka.po,  9, 30, 20, 33, 82, 127, 937, 169, 1049 

+ po/fr.po,  161, 997, 1230, 2, 11, 6, 41, 169, 1049 

+ po/de.po,  256, 1847, 1773, 0, 0, 0, 0, 256, 1847 

+ po/eo.po,  30, 43, 41, 2, 6, 137, 1000, 169, 1049 

+ po/hu.po,  249, 1768, 1634, 0, 0, 0, 0, 249, 1768 

+ po/mk.po,  9, 32, 42, 32, 78, 128, 939, 169, 1049 

+ po/da.po,  255, 1846, 1733, 0, 0, 0, 0, 255, 1846 

+ po/he.po,  29, 82, 87, 14, 31, 126, 936, 169, 1049 

+ po/zh_TW.po,  42, 102, 68, 16, 134, 111, 813, 169, 1049 

+ po/es.po,  246, 1695, 2036, 3, 41, 7, 118, 256, 1854 

+ po/zh_CN.po,  126, 750, 338, 11, 59, 32, 240, 169, 1049 

+ po/as.po,  48, 121, 137, 18, 151, 103, 777, 169, 1049 

+ po/et.po,  71, 207, 167, 11, 137, 87, 705, 169, 1049 

+ po/fi.po,  113, 358, 277, 17, 169, 126, 1320, 256, 1847 

+ po/sr@latin.po,  247, 1734, 1749, 0, 0, 0, 0, 247, 1734 

+ po/th.po,  10, 31, 21, 27, 72, 132, 946, 169, 1049 

+ po/vi.po,  7, 22, 31, 32, 78, 130, 949, 169, 1049 

+ po/ro.po,  52, 147, 156, 21, 165, 96, 737, 169, 1049 

+ po/ca.po,  256, 1847, 2279, 0, 0, 0, 0, 256, 1847 

+ po/ar.po,  10, 33, 34, 37, 97, 122, 919, 169, 1049 

+ po/ps.po,  36, 93, 102, 15, 50, 118, 906, 169, 1049 

+ po/ca@valencia.po,  52, 133, 154, 26, 189, 91, 727, 169, 1049 

+ po/ug.po,  28, 77, 71, 14, 31, 127, 941, 169, 1049 

+ po/nl.po,  110, 449, 417, 0, 0, 26, 308, 136, 757 

+ po/eu.po,  160, 972, 857, 3, 36, 6, 41, 169, 1049 

+ po/sv.po,  256, 1847, 1685, 0, 0, 0, 0, 256, 1847 

+ po/id.po,  256, 1847, 1813, 0, 0, 0, 0, 256, 1847 

+ po/mr.po,  48, 121, 133, 18, 151, 103, 777, 169, 1049 

+ po/pa.po,  96, 356, 373, 0, 0, 43, 435, 139, 791 

+ po/lv.po,  249, 1768, 1623, 0, 0, 0, 0, 249, 1768 

+ po/ta.po,  49, 125, 126, 19, 156, 101, 768, 169, 1049 

+ po/el.po,  199, 1222, 1341, 6, 64, 24, 327, 229, 1613 

+ po/tr.po,  168, 1164, 1051, 7, 40, 37, 265, 212, 1469 

+ po/lt.po,  256, 1854, 1720, 0, 0, 0, 0, 256, 1854 

+ po/ja.po,  118, 451, 253, 4, 25, 47, 573, 169, 1049 

+ po/cs.po,  255, 1846, 1739, 0, 0, 0, 0, 255, 1846 

+ po/it.po,  256, 1847, 2030, 0, 0, 0, 0, 256, 1847 

+ po/ru.po,  209, 1328, 1274, 1, 1, 44, 510, 254, 1839 

+ po/nb.po,  86, 242, 223, 7, 29, 76, 778, 169, 1049 

+ po/pl.po,  256, 1854, 1801, 0, 0, 0, 0, 256, 1854 

+ po/pt.po,  180, 1265, 1374, 0, 0, 0, 0, 180, 1265 

+ po/dz.po,  9, 31, 10, 36, 94, 124, 924, 169, 1049 

+ po/en_GB.po,  134, 788, 788, 10, 77, 25, 184, 169, 1049 

+ po/uk.po,  71, 207, 195, 11, 137, 87, 705, 169, 1049 

+ po/zh_HK.po,  42, 102, 68, 16, 134, 111, 813, 169, 1049 

+ po/be.po,  96, 337, 334, 15, 164, 58, 548, 169, 1049 

+ po/gl.po,  249, 1768, 2126, 0, 0, 0, 0, 249, 1768 

+ po/ko.po,  34, 97, 86, 33, 95, 102, 857, 169, 1049 

+ po/sr.po,  247, 1734, 1749, 0, 0, 0, 0, 247, 1734 

+ po/sl.po,  159, 969, 964, 4, 39, 6, 41, 169, 1049 

+ po/hr.po,  77, 283, 281, 2, 2, 177, 1562, 256, 1847 

+ po/gu.po,  29, 82, 85, 14, 31, 126, 936, 169, 1049 

+ po/kn.po,  49, 125, 123, 19, 156, 101, 768, 169, 1049 

+ po/pt_BR.po,  256, 1854, 2176, 0, 0, 0, 0, 256, 1854 

+ po/fa.po,  70, 205, 231, 12, 139, 87, 705, 169, 1049 

+ po/te.po,  49, 125, 122, 19, 156, 101, 768, 169, 1049 

+ po/bg.po,  70, 205, 229, 12, 139, 87, 705, 169, 1049 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,60 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  44, 144, 74, 0, 0, 0, 0, 44, 144 

+ po/zh_HK.po,  44, 144, 74, 0, 0, 0, 0, 44, 144 

+ po/zh_CN.po,  66, 280, 142, 0, 0, 0, 0, 66, 280 

+ po/vi.po,  129, 588, 817, 0, 0, 0, 0, 129, 588 

+ po/uk.po,  44, 144, 138, 0, 0, 0, 0, 44, 144 

+ po/ug.po,  38, 102, 106, 0, 0, 6, 42, 44, 144 

+ po/tr.po,  71, 407, 401, 0, 0, 0, 0, 71, 407 

+ po/th.po,  129, 584, 313, 0, 0, 0, 0, 129, 584 

+ po/te.po,  43, 118, 127, 0, 0, 0, 0, 43, 118 

+ po/ta.po,  44, 144, 151, 0, 0, 0, 0, 44, 144 

+ po/sv.po,  84, 509, 465, 0, 0, 0, 0, 84, 509 

+ po/sr@latin.po,  84, 509, 527, 0, 0, 0, 0, 84, 509 

+ po/sr.po,  84, 509, 527, 0, 0, 0, 0, 84, 509 

+ po/sl.po,  77, 415, 403, 0, 0, 0, 0, 77, 415 

+ po/ru.po,  84, 509, 485, 0, 0, 0, 0, 84, 509 

+ po/ro.po,  44, 144, 161, 0, 0, 0, 0, 44, 144 

+ po/pt_BR.po,  84, 509, 588, 0, 0, 0, 0, 84, 509 

+ po/pt.po,  71, 407, 458, 0, 0, 0, 0, 71, 407 

+ po/pl.po,  84, 509, 509, 0, 0, 0, 0, 84, 509 

+ po/pa.po,  54, 188, 202, 0, 0, 23, 227, 77, 415 

+ po/oc.po,  74, 410, 486, 0, 0, 0, 0, 74, 410 

+ po/nl.po,  84, 509, 457, 0, 0, 0, 0, 84, 509 

+ po/nb.po,  56, 193, 184, 0, 0, 21, 222, 77, 415 

+ po/mr.po,  42, 115, 145, 0, 0, 0, 0, 42, 115 

+ po/mk.po,  129, 584, 617, 0, 0, 0, 0, 129, 584 

+ po/lv.po,  84, 509, 474, 0, 0, 0, 0, 84, 509 

+ po/lt.po,  84, 509, 475, 0, 0, 0, 0, 84, 509 

+ po/ko.po,  44, 144, 132, 0, 0, 0, 0, 44, 144 

+ po/kn.po,  43, 118, 117, 0, 0, 0, 0, 43, 118 

+ po/ka.po,  129, 584, 412, 0, 0, 0, 0, 129, 584 

+ po/ja.po,  62, 273, 149, 1, 2, 3, 5, 66, 280 

+ po/it.po,  84, 509, 560, 0, 0, 0, 0, 84, 509 

+ po/id.po,  84, 509, 516, 0, 0, 0, 0, 84, 509 

+ po/hu.po,  84, 509, 476, 0, 0, 0, 0, 84, 509 

+ po/hr.po,  83, 508, 477, 0, 0, 1, 1, 84, 509 

+ po/he.po,  44, 144, 149, 0, 0, 0, 0, 44, 144 

+ po/gu.po,  44, 144, 171, 0, 0, 0, 0, 44, 144 

+ po/gl.po,  77, 415, 501, 0, 0, 0, 0, 77, 415 

+ po/fur.po,  84, 509, 581, 0, 0, 0, 0, 84, 509 

+ po/fr.po,  77, 415, 511, 0, 0, 0, 0, 77, 415 

+ po/fi.po,  47, 147, 118, 0, 0, 27, 263, 74, 410 

+ po/fa.po,  44, 144, 173, 0, 0, 24, 145, 68, 289 

+ po/eu.po,  74, 410, 389, 0, 0, 0, 0, 74, 410 

+ po/et.po,  44, 144, 122, 0, 0, 0, 0, 44, 144 

+ po/es.po,  84, 509, 625, 0, 0, 0, 0, 84, 509 

+ po/eo.po,  22, 37, 34, 0, 0, 44, 243, 66, 280 

+ po/en_GB.po,  44, 144, 144, 0, 0, 0, 0, 44, 144 

+ po/el.po,  71, 407, 475, 0, 0, 0, 0, 71, 407 

+ po/de.po,  84, 509, 470, 0, 0, 0, 0, 84, 509 

+ po/da.po,  84, 509, 463, 0, 0, 0, 0, 84, 509 

+ po/cs.po,  84, 509, 485, 0, 0, 0, 0, 84, 509 

+ po/ca@valencia.po,  42, 115, 145, 1, 3, 1, 26, 44, 144 

+ po/ca.po,  84, 509, 650, 0, 0, 0, 0, 84, 509 

+ po/bs.po,  74, 410, 411, 0, 0, 0, 0, 74, 410 

+ po/bn_IN.po,  42, 115, 170, 0, 0, 0, 0, 42, 115 

+ po/bg.po,  44, 144, 172, 0, 0, 0, 0, 44, 144 

+ po/be@latin.po,  41, 114, 109, 0, 0, 0, 0, 41, 114 

+ po/as.po,  42, 115, 144, 0, 0, 0, 0, 42, 115 

+ po/ar.po,  7, 11, 13, 16, 55, 18, 46, 41, 112 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,53 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  15, 35, 20, 9, 23, 45, 228, 69, 286 

+ po/zh_HK.po,  15, 35, 20, 9, 23, 45, 228, 69, 286 

+ po/zh_CN.po,  17, 39, 24, 14, 43, 38, 204, 69, 286 

+ po/vi.po,  4, 18, 24, 14, 29, 51, 239, 69, 286 

+ po/uk.po,  17, 39, 36, 14, 43, 38, 204, 69, 286 

+ po/ug.po,  7, 24, 23, 6, 10, 56, 252, 69, 286 

+ po/th.po,  4, 16, 9, 13, 36, 52, 234, 69, 286 

+ po/te.po,  16, 37, 35, 13, 36, 40, 213, 69, 286 

+ po/ta.po,  16, 37, 36, 13, 36, 40, 213, 69, 286 

+ po/sv.po,  29, 115, 99, 22, 87, 18, 84, 69, 286 

+ po/sl.po,  32, 120, 118, 21, 85, 16, 81, 69, 286 

+ po/sk.po,  1, 2, 2, 11, 21, 57, 263, 69, 286 

+ po/ru.po,  29, 115, 110, 22, 87, 18, 84, 69, 286 

+ po/ro.po,  17, 39, 40, 14, 43, 38, 204, 69, 286 

+ po/pt_BR.po,  32, 120, 133, 21, 85, 16, 81, 69, 286 

+ po/pt.po,  17, 39, 41, 15, 55, 37, 192, 69, 286 

+ po/ps.po,  11, 26, 33, 12, 27, 46, 233, 69, 286 

+ po/pl.po,  32, 120, 123, 21, 85, 16, 81, 69, 286 

+ po/pa.po,  17, 39, 41, 15, 55, 37, 192, 69, 286 

+ po/nl.po,  13, 32, 32, 15, 38, 41, 216, 69, 286 

+ po/nb.po,  24, 61, 58, 13, 39, 32, 186, 69, 286 

+ po/mr.po,  16, 37, 43, 13, 36, 40, 213, 69, 286 

+ po/mk.po,  4, 18, 25, 14, 29, 51, 239, 69, 286 

+ po/lv.po,  29, 115, 107, 22, 87, 18, 84, 69, 286 

+ po/lt.po,  32, 120, 113, 21, 85, 16, 81, 69, 286 

+ po/ko.po,  8, 27, 21, 14, 39, 47, 220, 69, 286 

+ po/kn.po,  16, 37, 33, 13, 36, 40, 213, 69, 286 

+ po/ka.po,  4, 16, 8, 14, 37, 51, 233, 69, 286 

+ po/ja.po,  5, 19, 9, 15, 41, 49, 226, 69, 286 

+ po/it.po,  17, 39, 39, 14, 43, 38, 204, 69, 286 

+ po/id.po,  32, 120, 124, 21, 85, 16, 81, 69, 286 

+ po/hu.po,  29, 115, 106, 22, 87, 18, 84, 69, 286 

+ po/he.po,  22, 64, 55, 2, 3, 45, 219, 69, 286 

+ po/gu.po,  7, 24, 25, 6, 10, 56, 252, 69, 286 

+ po/gl.po,  29, 115, 144, 22, 87, 18, 84, 69, 286 

+ po/fr.po,  29, 115, 143, 22, 87, 18, 84, 69, 286 

+ po/fi.po,  15, 34, 24, 15, 51, 39, 201, 69, 286 

+ po/fa.po,  17, 39, 41, 14, 43, 38, 204, 69, 286 

+ po/eu.po,  17, 39, 37, 14, 43, 38, 204, 69, 286 

+ po/et.po,  17, 39, 30, 14, 43, 38, 204, 69, 286 

+ po/es.po,  32, 120, 144, 21, 85, 16, 81, 69, 286 

+ po/en_GB.po,  8, 27, 27, 14, 39, 47, 220, 69, 286 

+ po/el.po,  17, 39, 40, 14, 43, 38, 204, 69, 286 

+ po/dz.po,  5, 19, 7, 14, 37, 50, 230, 69, 286 

+ po/de.po,  32, 120, 112, 21, 85, 16, 81, 69, 286 

+ po/da.po,  15, 34, 32, 14, 39, 40, 213, 69, 286 

+ po/cs.po,  73, 297, 282, 0, 0, 0, 0, 73, 297 

+ po/ca@valencia.po,  16, 37, 40, 14, 48, 39, 201, 69, 286 

+ po/ca.po,  17, 39, 42, 15, 55, 37, 192, 69, 286 

+ po/bg.po,  17, 39, 38, 14, 43, 38, 204, 69, 286 

+ po/as.po,  16, 37, 38, 13, 36, 40, 213, 69, 286 

+ po/ar.po,  5, 19, 19, 16, 41, 48, 226, 69, 286 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

@@ -0,0 +1,60 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/sv.po,  101, 606, 536, 0, 0, 0, 0, 101, 606 

+ po/id.po,  101, 606, 610, 0, 0, 0, 0, 101, 606 

+ po/kn.po,  36, 139, 124, 0, 0, 0, 0, 36, 139 

+ po/ja.po,  83, 439, 256, 0, 0, 0, 0, 83, 439 

+ po/ug.po,  38, 114, 118, 0, 0, 3, 42, 41, 156 

+ po/pt.po,  86, 479, 517, 0, 0, 0, 0, 86, 479 

+ po/lt.po,  101, 606, 548, 0, 0, 0, 0, 101, 606 

+ po/eo.po,  19, 38, 30, 0, 0, 40, 231, 59, 269 

+ po/gu.po,  41, 156, 183, 0, 0, 0, 0, 41, 156 

+ po/cs.po,  101, 606, 571, 0, 0, 0, 0, 101, 606 

+ po/ta.po,  36, 139, 142, 0, 0, 0, 0, 36, 139 

+ po/ru.po,  87, 464, 444, 0, 0, 14, 142, 101, 606 

+ po/bs.po,  91, 494, 482, 0, 0, 0, 0, 91, 494 

+ po/mr.po,  36, 139, 163, 0, 0, 0, 0, 36, 139 

+ po/et.po,  41, 156, 140, 0, 0, 0, 0, 41, 156 

+ po/sr@latin.po,  101, 606, 616, 0, 0, 0, 0, 101, 606 

+ po/zh_CN.po,  41, 156, 85, 0, 0, 0, 0, 41, 156 

+ po/bg.po,  41, 156, 183, 0, 0, 0, 0, 41, 156 

+ po/zh_TW.po,  41, 156, 80, 0, 0, 0, 0, 41, 156 

+ po/sk.po,  37, 143, 154, 1, 4, 3, 9, 41, 156 

+ po/vi.po,  54, 303, 413, 0, 0, 0, 0, 54, 303 

+ po/nl.po,  101, 606, 545, 0, 0, 0, 0, 101, 606 

+ po/ca@valencia.po,  34, 135, 167, 1, 2, 2, 6, 37, 143 

+ po/fi.po,  54, 168, 144, 3, 64, 44, 374, 101, 606 

+ po/sl.po,  84, 442, 449, 0, 0, 0, 0, 84, 442 

+ po/el.po,  86, 479, 532, 0, 0, 0, 0, 86, 479 

+ po/eu.po,  84, 442, 424, 0, 0, 0, 0, 84, 442 

+ po/tr.po,  91, 494, 456, 0, 0, 0, 0, 91, 494 

+ po/ko.po,  41, 156, 136, 0, 0, 0, 0, 41, 156 

+ po/fr.po,  86, 444, 554, 0, 0, 0, 0, 86, 444 

+ po/pl.po,  101, 606, 592, 0, 0, 0, 0, 101, 606 

+ po/sr.po,  101, 606, 616, 0, 0, 0, 0, 101, 606 

+ po/fur.po,  101, 606, 688, 0, 0, 0, 0, 101, 606 

+ po/pa.po,  64, 246, 273, 1, 12, 19, 167, 84, 425 

+ po/lv.po,  101, 606, 544, 0, 0, 0, 0, 101, 606 

+ po/ro.po,  41, 156, 171, 0, 0, 0, 0, 41, 156 

+ po/gl.po,  86, 444, 537, 0, 0, 0, 0, 86, 444 

+ po/ca.po,  101, 606, 745, 0, 0, 0, 0, 101, 606 

+ po/pt_BR.po,  101, 606, 709, 0, 0, 0, 0, 101, 606 

+ po/it.po,  101, 606, 652, 0, 0, 0, 0, 101, 606 

+ po/he.po,  41, 156, 162, 0, 0, 0, 0, 41, 156 

+ po/de.po,  101, 606, 565, 0, 0, 0, 0, 101, 606 

+ po/or.po,  41, 156, 176, 0, 0, 0, 0, 41, 156 

+ po/te.po,  36, 139, 129, 0, 0, 0, 0, 36, 139 

+ po/fa.po,  37, 143, 160, 1, 4, 16, 97, 54, 244 

+ po/bn_IN.po,  36, 139, 168, 0, 0, 0, 0, 36, 139 

+ po/nb.po,  69, 285, 266, 0, 0, 17, 159, 86, 444 

+ po/ar.po,  16, 89, 92, 6, 12, 11, 32, 33, 133 

+ po/uk.po,  41, 156, 149, 0, 0, 0, 0, 41, 156 

+ po/zh_HK.po,  41, 156, 80, 0, 0, 0, 0, 41, 156 

+ po/hu.po,  101, 606, 553, 0, 0, 0, 0, 101, 606 

+ po/es.po,  101, 606, 745, 0, 0, 0, 0, 101, 606 

+ po/mk.po,  31, 128, 145, 0, 0, 1, 4, 32, 132 

+ po/th.po,  52, 328, 146, 0, 0, 0, 0, 52, 328 

+ po/da.po,  101, 606, 554, 0, 0, 0, 0, 101, 606 

+ po/en_GB.po,  86, 444, 444, 0, 0, 0, 0, 86, 444 

+ po/as.po,  36, 139, 153, 0, 0, 0, 0, 36, 139 

+ po/dz.po,  52, 328, 121, 0, 0, 0, 0, 52, 328 

+ po/ka.po,  52, 328, 216, 0, 0, 0, 0, 52, 328 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,70 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/eo.po,  85, 180, 166, 0, 0, 236, 1102, 321, 1282 

+ po/sr.po,  310, 1239, 1178, 0, 0, 11, 43, 321, 1282 

+ po/nl.po,  310, 1239, 1244, 0, 0, 11, 43, 321, 1282 

+ po/cs.po,  321, 1282, 1318, 0, 0, 0, 0, 321, 1282 

+ po/tr.po,  310, 1239, 1096, 0, 0, 11, 43, 321, 1282 

+ po/mr.po,  239, 877, 920, 0, 0, 82, 405, 321, 1282 

+ po/he.po,  242, 893, 846, 0, 0, 79, 389, 321, 1282 

+ po/bn_IN.po,  239, 877, 1077, 0, 0, 82, 405, 321, 1282 

+ po/ar.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/pl.po,  321, 1282, 1237, 0, 0, 0, 0, 321, 1282 

+ po/uk.po,  321, 1282, 1276, 0, 0, 0, 0, 321, 1282 

+ po/cy.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/nn.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/hr.po,  318, 1275, 1177, 0, 0, 3, 7, 321, 1282 

+ po/ast.po,  27, 38, 41, 0, 0, 294, 1244, 321, 1282 

+ po/sr@latin.po,  242, 903, 856, 0, 0, 79, 379, 321, 1282 

+ po/sq.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/ca.po,  321, 1282, 1615, 0, 0, 0, 0, 321, 1282 

+ po/br.po,  126, 370, 490, 2, 6, 198, 952, 326, 1328 

+ po/fr.po,  310, 1239, 1639, 0, 0, 11, 43, 321, 1282 

+ po/zh_CN.po,  319, 1277, 338, 0, 0, 2, 5, 321, 1282 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/sv.po,  319, 1277, 1201, 0, 0, 2, 5, 321, 1282 

+ po/nb.po,  20, 73, 71, 0, 0, 301, 1209, 321, 1282 

+ po/ca@valencia.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/bg.po,  247, 931, 1041, 0, 0, 74, 351, 321, 1282 

+ po/en_GB.po,  321, 1282, 1282, 0, 0, 0, 0, 321, 1282 

+ po/it.po,  321, 1282, 1457, 0, 0, 0, 0, 321, 1282 

+ po/oc.po,  138, 339, 427, 0, 0, 183, 943, 321, 1282 

+ po/es.po,  302, 1195, 1391, 0, 0, 19, 87, 321, 1282 

+ po/ml.po,  239, 877, 740, 0, 0, 82, 405, 321, 1282 

+ po/kk.po,  117, 326, 296, 0, 0, 204, 956, 321, 1282 

+ po/de.po,  321, 1282, 1320, 0, 0, 0, 0, 321, 1282 

+ po/lt.po,  263, 1013, 873, 0, 0, 58, 269, 321, 1282 

+ po/ja.po,  285, 1108, 330, 0, 0, 36, 174, 321, 1282 

+ po/zh_TW.po,  321, 1282, 354, 0, 0, 0, 0, 321, 1282 

+ po/te.po,  239, 877, 703, 0, 0, 82, 405, 321, 1282 

+ po/hi.po,  239, 877, 1118, 0, 0, 82, 405, 321, 1282 

+ po/as.po,  239, 877, 1004, 0, 0, 82, 405, 321, 1282 

+ po/id.po,  321, 1282, 1259, 0, 0, 0, 0, 321, 1282 

+ po/pa.po,  310, 1239, 1633, 0, 0, 11, 43, 321, 1282 

+ po/pt_BR.po,  321, 1282, 1477, 0, 0, 0, 0, 321, 1282 

+ po/fo.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/wa.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/gu.po,  239, 877, 1112, 0, 0, 82, 405, 321, 1282 

+ po/az.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/el.po,  305, 1211, 1330, 0, 0, 16, 71, 321, 1282 

+ po/ga.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/kn.po,  239, 877, 772, 0, 0, 82, 405, 321, 1282 

+ po/fi.po,  290, 1142, 902, 0, 0, 31, 140, 321, 1282 

+ po/ro.po,  247, 931, 1057, 0, 0, 74, 351, 321, 1282 

+ po/ms.po,  2, 6, 6, 0, 0, 324, 1322, 326, 1328 

+ po/ru.po,  321, 1282, 1130, 0, 0, 0, 0, 321, 1282 

+ po/ia.po,  81, 318, 381, 0, 0, 240, 964, 321, 1282 

+ po/da.po,  310, 1239, 1176, 0, 0, 11, 43, 321, 1282 

+ po/eu.po,  310, 1239, 1114, 0, 0, 11, 43, 321, 1282 

+ po/vi.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/gl.po,  305, 1211, 1415, 0, 0, 16, 71, 321, 1282 

+ po/ka.po,  54, 118, 104, 0, 0, 267, 1164, 321, 1282 

+ po/lv.po,  261, 1007, 851, 0, 0, 60, 275, 321, 1282 

+ po/or.po,  239, 877, 941, 0, 0, 82, 405, 321, 1282 

+ po/th.po,  21, 77, 33, 0, 0, 300, 1205, 321, 1282 

+ po/sl.po,  305, 1211, 1195, 0, 0, 16, 71, 321, 1282 

+ po/fa.po,  0, 0, 0, 0, 0, 326, 1328, 326, 1328 

+ po/hu.po,  319, 1277, 1100, 0, 0, 2, 5, 321, 1282 

+ po/ta.po,  239, 877, 703, 0, 0, 82, 405, 321, 1282 

+ po/sk.po,  321, 1282, 1283, 0, 0, 0, 0, 321, 1282 

+ po/pt.po,  307, 1221, 1445, 0, 0, 14, 61, 321, 1282 

+ po/ko.po,  319, 1277, 1103, 0, 0, 2, 5, 321, 1282 

file added
+20734
The added file is too large to be shown here, see it at: results/f31/_concat.csv
@@ -0,0 +1,111 @@ 

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ caution: filename not matched:  -q

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: L'archive contient « 9\0\213\003#,\236\034 » alors qu'une valeur numérique de type mode_t est attendue.

+ tar: L'archive contient « 808\0Dellfeld » alors qu'une valeur numérique de type time_t est attendue.

+ tar: L'archive contient « 808\0Stel » alors qu'une valeur numérique de type uid_t est attendue.

+ tar: L'archive contient « zenberg » alors qu'une valeur numérique de type gid_t est attendue.

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: L'archive contient « 9\0\213\003#,\236\034 » alors qu'une valeur numérique de type mode_t est attendue.

+ tar: L'archive contient « 808\0Dellfeld » alors qu'une valeur numérique de type time_t est attendue.

+ tar: L'archive contient « 808\0Stel » alors qu'une valeur numérique de type uid_t est attendue.

+ tar: L'archive contient « zenberg » alors qu'une valeur numérique de type gid_t est attendue.

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ caution: filename not matched:  -q

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

+ tar: Ceci ne ressemble pas à une archive de type « tar »

+ tar: On saute à l'en-tête suivant

+ tar: Arrêt avec code d'échec à cause des erreurs précédentes

The added file is too large to be shown here, see it at: results/f31/_srpm.out.txt
@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./appstream/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./appstream/org.gnome.cantarell.metainfo.xml.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./appstream/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./appstream/POTFILES.in)

@@ -0,0 +1,34 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ appstream/sr@latin.po,  3, 27, 23, 0, 0, 0, 0, 3, 27 

+ appstream/oc.po,  3, 27, 32, 0, 0, 0, 0, 3, 27 

+ appstream/da.po,  3, 27, 21, 0, 0, 0, 0, 3, 27 

+ appstream/es.po,  3, 27, 27, 0, 0, 0, 0, 3, 27 

+ appstream/gl.po,  3, 27, 39, 0, 0, 0, 0, 3, 27 

+ appstream/ro.po,  3, 27, 28, 0, 0, 0, 0, 3, 27 

+ appstream/de.po,  3, 27, 26, 0, 0, 0, 0, 3, 27 

+ appstream/id.po,  3, 27, 25, 0, 0, 0, 0, 3, 27 

+ appstream/sv.po,  3, 27, 24, 0, 0, 0, 0, 3, 27 

+ appstream/is.po,  3, 27, 28, 0, 0, 0, 0, 3, 27 

+ appstream/lv.po,  3, 27, 25, 0, 0, 0, 0, 3, 27 

+ appstream/el.po,  3, 27, 29, 0, 0, 0, 0, 3, 27 

+ appstream/hr.po,  3, 27, 24, 0, 0, 0, 0, 3, 27 

+ appstream/ca.po,  3, 27, 40, 0, 0, 0, 0, 3, 27 

+ appstream/pt_BR.po,  3, 27, 29, 0, 0, 0, 0, 3, 27 

+ appstream/zh_CN.po,  3, 27, 7, 0, 0, 0, 0, 3, 27 

+ appstream/tr.po,  3, 27, 26, 0, 0, 0, 0, 3, 27 

+ appstream/pa.po,  3, 27, 35, 0, 0, 0, 0, 3, 27 

+ appstream/sk.po,  3, 27, 26, 0, 0, 0, 0, 3, 27 

+ appstream/zh_TW.po,  3, 27, 6, 0, 0, 0, 0, 3, 27 

+ appstream/pl.po,  3, 27, 23, 0, 0, 0, 0, 3, 27 

+ appstream/hu.po,  3, 27, 22, 0, 0, 0, 0, 3, 27 

+ appstream/sl.po,  3, 27, 24, 0, 0, 0, 0, 3, 27 

+ appstream/lt.po,  3, 27, 24, 0, 0, 0, 0, 3, 27 

+ appstream/fr.po,  3, 27, 32, 0, 0, 0, 0, 3, 27 

+ appstream/ko.po,  3, 27, 19, 0, 0, 0, 0, 3, 27 

+ appstream/sr.po,  3, 27, 23, 0, 0, 0, 0, 3, 27 

+ appstream/it.po,  3, 27, 37, 0, 0, 0, 0, 3, 27 

+ appstream/cs.po,  3, 27, 22, 0, 0, 0, 0, 3, 27 

+ appstream/fur.po,  3, 27, 32, 0, 0, 0, 0, 3, 27 

+ appstream/fi.po,  3, 27, 19, 0, 0, 0, 0, 3, 27 

+ appstream/ru.po,  3, 27, 24, 0, 0, 0, 0, 3, 27 

+ appstream/nl.po,  3, 27, 27, 0, 0, 0, 0, 3, 27 

@@ -0,0 +1,6 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

@@ -0,0 +1,108 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/eo.po,  34, 198, 175, 0, 0, 442, 3771, 476, 3969 

+ po/ro.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/zh_HK.po,  1, 2, 1, 0, 0, 475, 3967, 476, 3969 

+ po/bg.po,  153, 1116, 1228, 0, 0, 323, 2853, 476, 3969 

+ po/mk.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/ne.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/sk.po,  316, 2414, 2332, 0, 0, 160, 1555, 476, 3969 

+ po/brx.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/af.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/ks.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/hy.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/si.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/bal.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/es.po,  476, 3969, 4863, 0, 0, 0, 0, 476, 3969 

+ po/xh.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/he.po,  47, 407, 376, 0, 0, 429, 3562, 476, 3969 

+ po/uz.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/cs.po,  476, 3969, 3718, 0, 0, 0, 0, 476, 3969 

+ po/zh_CN.po,  476, 3969, 1413, 0, 0, 0, 0, 476, 3969 

+ po/as.po,  328, 2488, 2595, 0, 0, 148, 1481, 476, 3969 

+ po/dz.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/kk.po,  11, 13, 16, 0, 0, 465, 3956, 476, 3969 

+ po/tr.po,  250, 1915, 1606, 0, 0, 226, 2054, 476, 3969 

+ po/is.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/ko.po,  368, 2835, 2449, 0, 0, 108, 1134, 476, 3969 

+ po/lt.po,  476, 3969, 3442, 0, 0, 0, 0, 476, 3969 

+ po/da.po,  476, 3969, 3749, 0, 0, 0, 0, 476, 3969 

+ po/mg.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/ky.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/sr.po,  476, 3969, 4034, 0, 0, 0, 0, 476, 3969 

+ po/zh_TW.po,  476, 3969, 1335, 0, 0, 0, 0, 476, 3969 

+ po/pt_BR.po,  476, 3969, 4511, 0, 0, 0, 0, 476, 3969 

+ po/cy.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/nl.po,  476, 3969, 4192, 0, 0, 0, 0, 476, 3969 

+ po/id.po,  55, 363, 341, 0, 0, 421, 3606, 476, 3969 

+ po/sv.po,  476, 3969, 3778, 0, 0, 0, 0, 476, 3969 

+ po/bo.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/am.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/zu.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/ja.po,  476, 3969, 1407, 0, 0, 0, 0, 476, 3969 

+ po/ca.po,  476, 3969, 5170, 0, 0, 0, 0, 476, 3969 

+ po/wo.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/nn.po,  4, 18, 19, 0, 0, 472, 3951, 476, 3969 

+ po/bn_IN.po,  340, 2546, 2780, 0, 0, 136, 1423, 476, 3969 

+ po/kn.po,  341, 2564, 2358, 0, 0, 135, 1405, 476, 3969 

+ po/ru_RU.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/fur.po,  143, 997, 1210, 0, 0, 333, 2972, 476, 3969 

+ po/ar.po,  14, 149, 129, 0, 0, 462, 3820, 476, 3969 

+ po/ia.po,  83, 567, 691, 0, 0, 393, 3402, 476, 3969 

+ po/no.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/de.po,  476, 3969, 3905, 0, 0, 0, 0, 476, 3969 

+ po/en_US.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/it.po,  476, 3969, 4384, 0, 0, 0, 0, 476, 3969 

+ po/el.po,  19, 151, 176, 0, 0, 457, 3818, 476, 3969 

+ po/ku.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/ru.po,  476, 3969, 3808, 0, 0, 0, 0, 476, 3969 

+ po/az.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/hi.po,  340, 2546, 3067, 0, 0, 136, 1423, 476, 3969 

+ po/gl.po,  81, 603, 745, 0, 0, 395, 3366, 476, 3969 

+ po/tl.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/eu.po,  48, 307, 275, 1, 14, 427, 3648, 476, 3969 

+ po/ga.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/br.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/ta.po,  342, 2566, 2293, 0, 0, 134, 1403, 476, 3969 

+ po/be.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/ach.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/fi.po,  280, 1656, 1286, 0, 0, 196, 2313, 476, 3969 

+ po/sr@latin.po,  1, 1, 1, 0, 0, 475, 3968, 476, 3969 

+ po/ur.po,  12, 92, 139, 0, 0, 464, 3877, 476, 3969 

+ po/en_GB.po,  249, 2212, 2211, 0, 0, 227, 1757, 476, 3969 

+ po/ka.po,  17, 64, 57, 0, 0, 459, 3905, 476, 3969 

+ po/ms.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/pa.po,  284, 2105, 2429, 0, 0, 192, 1864, 476, 3969 

+ po/nb.po,  56, 242, 245, 0, 0, 420, 3727, 476, 3969 

+ po/nds.po,  1, 1, 1, 0, 0, 475, 3968, 476, 3969 

+ po/fr.po,  476, 3969, 4841, 0, 0, 0, 0, 476, 3969 

+ po/th.po,  143, 1204, 587, 0, 0, 333, 2765, 476, 3969 

+ po/fa.po,  17, 64, 78, 0, 0, 459, 3905, 476, 3969 

+ po/nso.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/vi.po,  7, 24, 45, 0, 0, 469, 3945, 476, 3969 

+ po/sl.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/mr.po,  340, 2563, 2428, 2, 7, 134, 1399, 476, 3969 

+ po/bs.po,  19, 150, 157, 0, 0, 457, 3819, 476, 3969 

+ po/km.po,  41, 303, 97, 0, 0, 435, 3666, 476, 3969 

+ po/mai.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/tg.po,  4, 10, 11, 0, 0, 472, 3959, 476, 3969 

+ po/pl.po,  476, 3969, 3953, 0, 0, 0, 0, 476, 3969 

+ po/gu.po,  341, 2564, 2821, 0, 0, 135, 1405, 476, 3969 

+ po/my.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/or.po,  340, 2546, 2653, 0, 0, 136, 1423, 476, 3969 

+ po/ilo.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/bn.po,  128, 927, 1039, 0, 0, 348, 3042, 476, 3969 

+ po/uk.po,  476, 3969, 4321, 0, 0, 0, 0, 476, 3969 

+ po/hu.po,  476, 3969, 3981, 0, 0, 0, 0, 476, 3969 

+ po/aln.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/la.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/mn.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/sq.po,  476, 3969, 4685, 0, 0, 0, 0, 476, 3969 

+ po/lo.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/pt.po,  183, 1321, 1518, 14, 126, 279, 2522, 476, 3969 

+ po/ml.po,  342, 2549, 2040, 1, 5, 133, 1415, 476, 3969 

+ po/ast.po,  1, 1, 1, 0, 0, 475, 3968, 476, 3969 

+ po/hr.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/et.po,  148, 1034, 898, 0, 0, 328, 2935, 476, 3969 

+ po/de_CH.po,  0, 0, 0, 0, 0, 390, 3230, 390, 3230 

+ po/te.po,  341, 2564, 2189, 0, 0, 135, 1405, 476, 3969 

+ po/lv.po,  19, 64, 55, 0, 0, 457, 3905, 476, 3969 

@@ -0,0 +1,10 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,76 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  10, 59, 13, 0, 0, 0, 0, 10, 59 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/zh_CN.po,  10, 59, 13, 0, 0, 0, 0, 10, 59 

+ po/wa.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/vi.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/uk.po,  10, 59, 60, 0, 0, 0, 0, 10, 59 

+ po/tr.po,  10, 59, 58, 0, 0, 0, 0, 10, 59 

+ po/th.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/te.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/ta.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/sv.po,  10, 59, 52, 0, 0, 0, 0, 10, 59 

+ po/sr@latin.po,  10, 59, 67, 0, 0, 0, 0, 10, 59 

+ po/sr.po,  10, 59, 67, 0, 0, 0, 0, 10, 59 

+ po/sq.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/sl.po,  10, 59, 55, 0, 0, 0, 0, 10, 59 

+ po/sk.po,  10, 59, 61, 0, 0, 0, 0, 10, 59 

+ po/ru.po,  10, 59, 62, 0, 0, 0, 0, 10, 59 

+ po/ro.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/pt_BR.po,  10, 59, 69, 0, 0, 0, 0, 10, 59 

+ po/pt.po,  10, 59, 76, 0, 0, 0, 0, 10, 59 

+ po/pl.po,  12, 73, 66, 0, 0, 0, 0, 12, 73 

+ po/pa.po,  10, 59, 62, 0, 0, 0, 0, 10, 59 

+ po/or.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/oc.po,  10, 59, 73, 0, 0, 0, 0, 10, 59 

+ po/nn.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/nl.po,  10, 59, 55, 0, 0, 0, 0, 10, 59 

+ po/nb.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/ms.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/mr.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/ml.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/lv.po,  10, 59, 53, 0, 0, 0, 0, 10, 59 

+ po/lt.po,  12, 73, 67, 0, 0, 0, 0, 12, 73 

+ po/ky.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/ko.po,  10, 59, 49, 0, 0, 0, 0, 10, 59 

+ po/kn.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/kk.po,  10, 59, 59, 0, 0, 0, 0, 10, 59 

+ po/ka.po,  10, 59, 52, 0, 0, 0, 0, 10, 59 

+ po/ja.po,  10, 59, 12, 0, 0, 0, 0, 10, 59 

+ po/it.po,  12, 73, 84, 0, 0, 0, 0, 12, 73 

+ po/id.po,  10, 59, 56, 0, 0, 0, 0, 10, 59 

+ po/ia.po,  10, 59, 80, 0, 0, 0, 0, 10, 59 

+ po/hu.po,  10, 59, 50, 0, 0, 0, 0, 10, 59 

+ po/hr.po,  10, 59, 57, 0, 0, 0, 0, 10, 59 

+ po/hi.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/he.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/gu.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/gl.po,  10, 59, 76, 0, 0, 0, 0, 10, 59 

+ po/ga.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/fur.po,  10, 59, 80, 0, 0, 0, 0, 10, 59 

+ po/fr.po,  10, 59, 78, 0, 0, 0, 0, 10, 59 

+ po/fo.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/fi.po,  10, 59, 39, 0, 0, 0, 0, 10, 59 

+ po/fa.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/eu.po,  10, 59, 48, 0, 0, 0, 0, 10, 59 

+ po/et.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/es.po,  10, 59, 72, 0, 0, 0, 0, 10, 59 

+ po/eo.po,  10, 59, 53, 0, 0, 0, 0, 10, 59 

+ po/en_GB.po,  10, 59, 59, 0, 0, 0, 0, 10, 59 

+ po/en.po,  10, 59, 59, 0, 0, 0, 0, 10, 59 

+ po/el.po,  10, 59, 62, 0, 0, 0, 0, 10, 59 

+ po/de.po,  10, 59, 60, 0, 0, 0, 0, 10, 59 

+ po/da.po,  12, 73, 73, 0, 0, 0, 0, 12, 73 

+ po/cy.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/cs.po,  10, 59, 59, 0, 0, 0, 0, 10, 59 

+ po/ca@valencia.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/ca.po,  10, 59, 80, 0, 0, 0, 0, 10, 59 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/bg.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/be.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/az.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/ast.po,  10, 59, 76, 0, 0, 0, 0, 10, 59 

+ po/as.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/ar.po,  10, 59, 53, 0, 0, 0, 0, 10, 59 

+ po/af.po,  0, 0, 0, 0, 0, 10, 59, 10, 59 

+ po/accounts-service.pot,  0, 0, 0, 0, 0, 10, 59, 10, 59 

@@ -0,0 +1,15 @@ 

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf6 in position 8: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xb6 in position 7: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 8: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

@@ -0,0 +1,15 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/gl.gmo,  49, 395, 447, 0, 0, 0, 0, 49, 395 

+ po/en@boldquot.po,  52, 500, 502, 0, 0, 0, 0, 52, 500 

+ po/sv.po,  49, 395, 380, 3, 105, 0, 0, 52, 500 

+ po/acl.pot,  0, 0, 0, 0, 0, 52, 500, 52, 500 

+ po/en@boldquot.gmo,  52, 500, 502, 0, 0, 0, 0, 52, 500 

+ po/en@quot.po,  52, 500, 500, 0, 0, 0, 0, 52, 500 

+ po/fr.po,  48, 370, 424, 4, 130, 0, 0, 52, 500 

+ po/pl.po,  49, 395, 400, 3, 105, 0, 0, 52, 500 

+ po/es.po,  49, 395, 447, 3, 105, 0, 0, 52, 500 

+ po/en@quot.gmo,  52, 500, 500, 0, 0, 0, 0, 52, 500 

+ po/de.gmo,  49, 395, 362, 0, 0, 0, 0, 49, 395 

+ po/gl.po,  49, 395, 447, 3, 105, 0, 0, 52, 500 

+ po/de.po,  49, 395, 362, 3, 105, 0, 0, 52, 500 

+ po/es.gmo,  49, 395, 447, 0, 0, 0, 0, 49, 395 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./alsaconf/po/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,11 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ alsaconf/po/ru.po,  34, 407, 373, 1, 130, 1, 1, 36, 538 

+ alsaconf/po/ja.po,  35, 537, 213, 0, 0, 1, 1, 36, 538 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ja.gmo,  245, 1080, 594, 0, 0, 0, 0, 245, 1080 

+ po/de.gmo,  294, 1260, 1171, 0, 0, 0, 0, 294, 1260 

+ po/alsa-utils.pot,  0, 0, 0, 0, 0, 323, 1794, 323, 1794 

+ po/fr.po,  264, 1144, 1449, 22, 481, 37, 169, 323, 1794 

+ po/ja.po,  245, 1080, 594, 23, 492, 55, 222, 323, 1794 

+ po/de.po,  294, 1260, 1171, 21, 480, 8, 54, 323, 1794 

+ po/fr.gmo,  264, 1144, 1449, 0, 0, 0, 0, 264, 1144 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.am)

@@ -0,0 +1,100 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/nb.po,  726, 3244, 2967, 8, 17, 555, 4562, 1289, 7823 

+ po/kn.po,  765, 3909, 3510, 3, 32, 521, 3882, 1289, 7823 

+ po/lv.po,  46, 243, 193, 0, 0, 1243, 7580, 1289, 7823 

+ po/or.po,  452, 2431, 2483, 0, 0, 837, 5392, 1289, 7823 

+ po/nso.po,  14, 66, 90, 0, 0, 1275, 7757, 1289, 7823 

+ po/bn.po,  37, 227, 240, 0, 0, 1252, 7596, 1289, 7823 

+ po/br.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/si.po,  40, 225, 224, 0, 0, 1249, 7598, 1289, 7823 

+ po/bal.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/he.po,  1183, 6713, 6049, 0, 0, 106, 1110, 1289, 7823 

+ po/ca.po,  1266, 7566, 8951, 0, 0, 23, 257, 1289, 7823 

+ po/zh_CN.po,  1255, 7548, 2430, 0, 0, 34, 275, 1289, 7823 

+ po/is.po,  23, 112, 107, 0, 0, 1266, 7711, 1289, 7823 

+ po/vi.po,  14, 66, 64, 0, 0, 1275, 7757, 1289, 7823 

+ po/be.po,  1283, 7785, 6922, 0, 0, 6, 38, 1289, 7823 

+ po/nn.po,  35, 243, 201, 0, 0, 1254, 7580, 1289, 7823 

+ po/fa.po,  149, 476, 555, 0, 0, 1140, 7347, 1289, 7823 

+ po/fr.po,  1288, 7800, 9331, 0, 0, 1, 23, 1289, 7823 

+ po/ga.po,  248, 452, 504, 0, 0, 1041, 7371, 1289, 7823 

+ po/anp.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/tr.po,  1194, 6962, 5741, 0, 0, 95, 861, 1289, 7823 

+ po/yo.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/ia.po,  629, 2944, 3325, 0, 0, 660, 4879, 1289, 7823 

+ po/mai.po,  24, 144, 176, 0, 0, 1265, 7679, 1289, 7823 

+ po/ja.po,  1241, 7423, 2413, 0, 0, 48, 400, 1289, 7823 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/ne.po,  17, 79, 76, 0, 0, 1272, 7744, 1289, 7823 

+ po/pl.po,  1289, 7823, 7366, 0, 0, 0, 0, 1289, 7823 

+ po/pa.po,  862, 3475, 4066, 0, 0, 427, 4348, 1289, 7823 

+ po/nds.po,  4, 8, 7, 0, 0, 1285, 7815, 1289, 7823 

+ po/mn.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/tw.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/gu.po,  780, 3504, 4109, 0, 0, 509, 4319, 1289, 7823 

+ po/ast.po,  32, 192, 194, 0, 0, 1257, 7631, 1289, 7823 

+ po/ru.po,  1283, 7785, 6742, 0, 0, 6, 38, 1289, 7823 

+ po/sq.po,  992, 5599, 6581, 0, 0, 297, 2224, 1289, 7823 

+ po/bg.po,  956, 5425, 5592, 0, 0, 333, 2398, 1289, 7823 

+ po/ta.po,  861, 4632, 4203, 0, 0, 428, 3191, 1289, 7823 

+ po/id.po,  1276, 7729, 7340, 0, 0, 13, 94, 1289, 7823 

+ po/fil.po,  92, 540, 615, 1, 14, 1196, 7269, 1289, 7823 

+ po/ml.po,  426, 2237, 1766, 0, 0, 863, 5586, 1289, 7823 

+ po/af.po,  901, 4446, 4475, 21, 183, 367, 3194, 1289, 7823 

+ po/zh_TW.po,  1244, 7454, 2268, 0, 0, 45, 369, 1289, 7823 

+ po/nl.po,  1289, 7823, 7833, 0, 0, 0, 0, 1289, 7823 

+ po/ms.po,  16, 71, 64, 0, 0, 1273, 7752, 1289, 7823 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/te.po,  441, 2324, 1890, 0, 0, 848, 5499, 1289, 7823 

+ po/sk.po,  1289, 7823, 7331, 0, 0, 0, 0, 1289, 7823 

+ po/fur.po,  1261, 7635, 8813, 0, 0, 28, 188, 1289, 7823 

+ po/zh_HK.po,  231, 1091, 341, 0, 0, 1058, 6732, 1289, 7823 

+ po/de_CH.po,  20, 125, 119, 0, 0, 1269, 7698, 1289, 7823 

+ po/sv.po,  1289, 7823, 7198, 0, 0, 0, 0, 1289, 7823 

+ po/lt.po,  1289, 7823, 6451, 0, 0, 0, 0, 1289, 7823 

+ po/am.po,  14, 66, 58, 0, 0, 1275, 7757, 1289, 7823 

+ po/bo.po,  1, 1, 1, 0, 0, 1288, 7822, 1289, 7823 

+ po/eo.po,  1101, 5681, 5219, 32, 152, 156, 1990, 1289, 7823 

+ po/cy.po,  14, 66, 67, 0, 0, 1275, 7757, 1289, 7823 

+ po/as.po,  877, 4754, 5125, 0, 0, 412, 3069, 1289, 7823 

+ po/sl.po,  17, 79, 67, 0, 0, 1272, 7744, 1289, 7823 

+ po/pt_BR.po,  1228, 7304, 7924, 0, 0, 61, 519, 1289, 7823 

+ po/uk.po,  1289, 7823, 7780, 0, 0, 0, 0, 1289, 7823 

+ po/brx.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/ka.po,  314, 705, 636, 0, 0, 975, 7118, 1289, 7823 

+ po/mk.po,  17, 79, 77, 0, 0, 1272, 7744, 1289, 7823 

+ po/hu.po,  1283, 7785, 7073, 0, 0, 6, 38, 1289, 7823 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/gl.po,  304, 1390, 1654, 0, 0, 985, 6433, 1289, 7823 

+ po/el.po,  34, 191, 197, 0, 0, 1255, 7632, 1289, 7823 

+ po/it.po,  1086, 6207, 6473, 6, 46, 197, 1570, 1289, 7823 

+ po/da.po,  1289, 7823, 7104, 0, 0, 0, 0, 1289, 7823 

+ po/eu.po,  213, 487, 467, 0, 0, 1076, 7336, 1289, 7823 

+ po/ko.po,  1239, 7373, 6068, 0, 0, 50, 450, 1289, 7823 

+ po/ro.po,  1062, 5952, 6431, 0, 0, 227, 1871, 1289, 7823 

+ po/tg.po,  16, 46, 48, 0, 0, 1273, 7777, 1289, 7823 

+ po/cs.po,  1289, 7823, 7205, 0, 0, 0, 0, 1289, 7823 

+ po/wba.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/bn_IN.po,  886, 4866, 5240, 0, 0, 403, 2957, 1289, 7823 

+ po/en_GB.po,  37, 227, 227, 0, 0, 1252, 7596, 1289, 7823 

+ po/pt.po,  322, 1179, 1330, 0, 0, 967, 6644, 1289, 7823 

+ po/sr.po,  1186, 6620, 6363, 0, 0, 103, 1203, 1289, 7823 

+ po/hr.po,  984, 5512, 5130, 0, 0, 305, 2311, 1289, 7823 

+ po/ilo.po,  14, 66, 77, 0, 0, 1275, 7757, 1289, 7823 

+ po/th.po,  166, 645, 307, 0, 0, 1123, 7178, 1289, 7823 

+ po/ar.po,  554, 2592, 2531, 0, 0, 735, 5231, 1289, 7823 

+ po/sr@latin.po,  28, 170, 159, 0, 0, 1261, 7653, 1289, 7823 

+ po/zu.po,  11, 52, 37, 0, 0, 1278, 7771, 1289, 7823 

+ po/fi.po,  1001, 5232, 3899, 0, 0, 288, 2591, 1289, 7823 

+ po/et.po,  171, 559, 475, 0, 0, 1118, 7264, 1289, 7823 

+ po/km.po,  276, 2280, 1052, 0, 0, 1013, 5543, 1289, 7823 

+ po/kw.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/hi.po,  426, 2151, 2511, 0, 0, 863, 5672, 1289, 7823 

+ po/de.po,  1256, 7553, 7179, 0, 0, 33, 270, 1289, 7823 

+ po/bs.po,  18, 93, 79, 0, 0, 1271, 7730, 1289, 7823 

+ po/es.po,  1281, 7740, 8750, 0, 0, 8, 83, 1289, 7823 

+ po/ky.po,  0, 0, 0, 0, 0, 1198, 7236, 1198, 7236 

+ po/mr.po,  487, 2750, 2524, 0, 0, 802, 5073, 1289, 7823 

+ po/kk.po,  1082, 6183, 5328, 0, 0, 207, 1640, 1289, 7823 

+ po/ur.po,  54, 220, 291, 0, 0, 1235, 7603, 1289, 7823 

+ po/my.po,  64, 287, 183, 0, 0, 1225, 7536, 1289, 7823 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,72 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  2, 10, 2, 0, 0, 0, 0, 2, 10 

+ po/zh_HK.po,  2, 10, 2, 0, 0, 0, 0, 2, 10 

+ po/zh_CN.po,  2, 10, 2, 0, 0, 0, 0, 2, 10 

+ po/vi.po,  14, 96, 121, 0, 0, 0, 0, 14, 96 

+ po/uz@cyrillic.po,  1, 5, 5, 0, 0, 0, 0, 1, 5 

+ po/uk.po,  18, 122, 119, 0, 0, 0, 0, 18, 122 

+ po/ug.po,  14, 96, 115, 0, 0, 0, 0, 14, 96 

+ po/tr.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/tg.po,  1, 5, 5, 0, 0, 0, 0, 1, 5 

+ po/te.po,  18, 122, 109, 0, 0, 0, 0, 18, 122 

+ po/ta.po,  1, 5, 3, 0, 0, 0, 0, 1, 5 

+ po/sv.po,  2, 10, 13, 0, 0, 0, 0, 2, 10 

+ po/sr@latin.po,  2, 10, 11, 0, 0, 0, 0, 2, 10 

+ po/sr.po,  2, 10, 11, 0, 0, 0, 0, 2, 10 

+ po/sq.po,  18, 122, 145, 0, 0, 0, 0, 18, 122 

+ po/sl.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/sk.po,  2, 10, 11, 0, 0, 0, 0, 2, 10 

+ po/ru.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/ro.po,  2, 10, 13, 0, 0, 0, 0, 2, 10 

+ po/pt_BR.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/pt.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/pl.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/pa.po,  2, 10, 14, 0, 0, 0, 0, 2, 10 

+ po/or.po,  18, 122, 125, 0, 0, 0, 0, 18, 122 

+ po/oc.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/nl.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/ne.po,  2, 10, 11, 0, 0, 0, 0, 2, 10 

+ po/nb.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/ms.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/mr.po,  14, 96, 103, 0, 0, 0, 0, 14, 96 

+ po/ml.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/lv.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/lt.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/ko.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/kn.po,  18, 122, 123, 0, 0, 0, 0, 18, 122 

+ po/km.po,  1, 5, 5, 0, 0, 0, 0, 1, 5 

+ po/kk.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/ja.po,  1, 5, 1, 0, 0, 0, 0, 1, 5 

+ po/it.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/id.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/hu.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/hr.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/hi.po,  1, 5, 5, 0, 0, 0, 0, 1, 5 

+ po/he.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/gu.po,  18, 122, 143, 0, 0, 0, 0, 18, 122 

+ po/gl.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/gd.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/ga.po,  1, 5, 6, 0, 0, 0, 0, 1, 5 

+ po/fur.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/fr.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/fi.po,  1, 5, 4, 0, 0, 0, 0, 1, 5 

+ po/fa.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/eu.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/et.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/es.po,  2, 10, 13, 0, 0, 0, 0, 2, 10 

+ po/eo.po,  1, 5, 5, 0, 0, 0, 0, 1, 5 

+ po/en_GB.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/en_CA.po,  1, 5, 5, 0, 0, 0, 0, 1, 5 

+ po/el.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/de.po,  2, 10, 11, 0, 0, 0, 0, 2, 10 

+ po/da.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/cs.po,  2, 10, 11, 0, 0, 0, 0, 2, 10 

+ po/ca@valencia.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/ca.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/bs.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

+ po/bn_IN.po,  18, 122, 139, 0, 0, 0, 0, 18, 122 

+ po/bg.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/be.po,  2, 10, 12, 0, 0, 0, 0, 2, 10 

+ po/ast.po,  14, 96, 111, 0, 0, 0, 0, 14, 96 

+ po/as.po,  2, 10, 9, 0, 0, 0, 0, 2, 10 

+ po/an.po,  2, 10, 10, 0, 0, 0, 0, 2, 10 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,100 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/en_CA.po,  123, 370, 361, 1, 1, 2, 4, 126, 375 

+ po/hu.po,  169, 440, 334, 0, 0, 0, 0, 169, 440 

+ po/th.po,  136, 392, 157, 0, 0, 3, 6, 139, 398 

+ po/zh_CN.po,  169, 440, 181, 0, 0, 0, 0, 169, 440 

+ po/nn.po,  139, 398, 315, 0, 0, 0, 0, 139, 398 

+ po/si.po,  31, 38, 40, 0, 0, 95, 337, 126, 375 

+ po/hr.po,  169, 440, 427, 0, 0, 0, 0, 169, 440 

+ po/lt.po,  169, 440, 381, 0, 0, 0, 0, 169, 440 

+ po/mn.po,  126, 375, 298, 0, 0, 0, 0, 126, 375 

+ po/es.po,  169, 440, 561, 0, 0, 0, 0, 169, 440 

+ po/tr.po,  169, 440, 385, 0, 0, 0, 0, 169, 440 

+ po/sr.po,  169, 440, 421, 0, 0, 0, 0, 169, 440 

+ po/zu.po,  98, 224, 203, 1, 2, 27, 149, 126, 375 

+ po/as.po,  169, 440, 409, 0, 0, 0, 0, 169, 440 

+ po/gu.po,  139, 398, 470, 0, 0, 0, 0, 139, 398 

+ po/yi.po,  31, 31, 32, 48, 96, 47, 248, 126, 375 

+ po/pt.po,  169, 440, 528, 0, 0, 0, 0, 169, 440 

+ po/ms.po,  74, 121, 124, 10, 19, 42, 235, 126, 375 

+ po/ast.po,  139, 398, 457, 0, 0, 0, 0, 139, 398 

+ po/da.po,  169, 440, 309, 0, 0, 0, 0, 169, 440 

+ po/lv.po,  169, 440, 402, 0, 0, 0, 0, 169, 440 

+ po/an.po,  169, 440, 522, 0, 0, 0, 0, 169, 440 

+ po/ru.po,  169, 440, 425, 0, 0, 0, 0, 169, 440 

+ po/bn_IN.po,  139, 398, 342, 0, 0, 0, 0, 139, 398 

+ po/fur.po,  169, 440, 517, 0, 0, 0, 0, 169, 440 

+ po/wa.po,  64, 142, 188, 2, 2, 60, 231, 126, 375 

+ po/ro.po,  169, 440, 439, 0, 0, 0, 0, 169, 440 

+ po/ne.po,  169, 440, 426, 0, 0, 0, 0, 169, 440 

+ po/sq.po,  126, 375, 431, 0, 0, 0, 0, 126, 375 

+ po/kn.po,  139, 398, 353, 0, 0, 0, 0, 139, 398 

+ po/fr.po,  169, 440, 536, 0, 0, 0, 0, 169, 440 

+ po/li.po,  31, 31, 31, 48, 96, 47, 248, 126, 375 

+ po/te.po,  139, 398, 332, 0, 0, 0, 0, 139, 398 

+ po/eo.po,  167, 410, 350, 1, 21, 1, 9, 169, 440 

+ po/en@shaw.po,  126, 375, 376, 0, 0, 0, 0, 126, 375 

+ po/hy.po,  126, 375, 338, 0, 0, 0, 0, 126, 375 

+ po/ca@valencia.po,  169, 440, 527, 0, 0, 0, 0, 169, 440 

+ po/bg.po,  169, 440, 524, 0, 0, 0, 0, 169, 440 

+ po/ml.po,  139, 398, 333, 0, 0, 0, 0, 139, 398 

+ po/ja.po,  139, 398, 157, 0, 0, 0, 0, 139, 398 

+ po/el.po,  169, 440, 451, 0, 0, 0, 0, 169, 440 

+ po/pa.po,  169, 440, 456, 0, 0, 0, 0, 169, 440 

+ po/pl.po,  169, 440, 419, 0, 0, 0, 0, 169, 440 

+ po/ug.po,  139, 398, 343, 0, 0, 0, 0, 139, 398 

+ po/zh_TW.po,  169, 440, 186, 0, 0, 0, 0, 169, 440 

+ po/is.po,  31, 31, 32, 48, 96, 47, 248, 126, 375 

+ po/ar.po,  126, 375, 341, 0, 0, 0, 0, 126, 375 

+ po/af.po,  108, 334, 288, 12, 31, 6, 10, 126, 375 

+ po/et.po,  139, 398, 285, 0, 0, 0, 0, 139, 398 

+ po/gl.po,  169, 440, 529, 0, 0, 0, 0, 169, 440 

+ po/ca.po,  169, 440, 527, 0, 0, 0, 0, 169, 440 

+ po/sk.po,  169, 440, 415, 0, 0, 0, 0, 169, 440 

+ po/kk.po,  52, 78, 76, 0, 0, 117, 362, 169, 440 

+ po/or.po,  139, 398, 347, 0, 0, 0, 0, 139, 398 

+ po/km.po,  139, 398, 164, 0, 0, 0, 0, 139, 398 

+ po/cs.po,  169, 440, 417, 0, 0, 0, 0, 169, 440 

+ po/mai.po,  123, 370, 388, 1, 1, 2, 4, 126, 375 

+ po/nl.po,  169, 440, 371, 0, 0, 0, 0, 169, 440 

+ po/tt.po,  114, 359, 292, 7, 8, 5, 8, 126, 375 

+ po/bs.po,  169, 440, 430, 0, 0, 0, 0, 169, 440 

+ po/de.po,  169, 440, 353, 0, 0, 0, 0, 169, 440 

+ po/en_GB.po,  169, 440, 440, 0, 0, 0, 0, 169, 440 

+ po/rw.po,  5, 5, 5, 85, 299, 36, 71, 126, 375 

+ po/az.po,  114, 359, 314, 7, 8, 5, 8, 126, 375 

+ po/ga.po,  25, 25, 26, 15, 26, 86, 324, 126, 375 

+ po/fi.po,  159, 417, 297, 5, 9, 5, 14, 169, 440 

+ po/tg.po,  40, 46, 48, 0, 0, 99, 352, 139, 398 

+ po/nb.po,  169, 440, 362, 0, 0, 0, 0, 169, 440 

+ po/zh_HK.po,  169, 440, 186, 0, 0, 0, 0, 169, 440 

+ po/uk.po,  139, 398, 360, 0, 0, 0, 0, 139, 398 

+ po/be.po,  169, 440, 398, 0, 0, 0, 0, 169, 440 

+ po/he.po,  169, 440, 441, 0, 0, 0, 0, 169, 440 

+ po/gd.po,  169, 440, 477, 0, 0, 0, 0, 169, 440 

+ po/oc.po,  169, 440, 528, 0, 0, 0, 0, 169, 440 

+ po/be@latin.po,  125, 374, 337, 1, 1, 0, 0, 126, 375 

+ po/dz.po,  123, 370, 188, 1, 1, 2, 4, 126, 375 

+ po/ku.po,  121, 348, 331, 1, 1, 4, 26, 126, 375 

+ po/fa.po,  139, 398, 380, 0, 0, 0, 0, 139, 398 

+ po/vi.po,  169, 440, 635, 0, 0, 0, 0, 169, 440 

+ po/eu.po,  169, 440, 341, 0, 0, 0, 0, 169, 440 

+ po/pt_BR.po,  169, 440, 529, 0, 0, 0, 0, 169, 440 

+ po/am.po,  24, 24, 28, 26, 53, 76, 298, 126, 375 

+ po/sv.po,  169, 440, 326, 0, 0, 0, 0, 169, 440 

+ po/id.po,  169, 440, 415, 0, 0, 0, 0, 169, 440 

+ po/ka.po,  123, 370, 300, 1, 1, 2, 4, 126, 375 

+ po/sr@ije.po,  114, 359, 336, 7, 8, 5, 8, 126, 375 

+ po/ko.po,  169, 440, 396, 0, 0, 0, 0, 169, 440 

+ po/mr.po,  126, 375, 347, 0, 0, 0, 0, 126, 375 

+ po/sr@latin.po,  169, 440, 421, 0, 0, 0, 0, 169, 440 

+ po/mk.po,  123, 370, 436, 1, 1, 2, 4, 126, 375 

+ po/hi.po,  139, 398, 432, 0, 0, 0, 0, 139, 398 

+ po/ps.po,  123, 370, 436, 1, 1, 2, 4, 126, 375 

+ po/cy.po,  126, 375, 382, 0, 0, 0, 0, 126, 375 

+ po/sl.po,  169, 440, 393, 0, 0, 0, 0, 169, 440 

+ po/xh.po,  114, 359, 319, 7, 8, 5, 8, 126, 375 

+ po/tk.po,  111, 348, 291, 8, 9, 7, 18, 126, 375 

+ po/it.po,  169, 440, 491, 0, 0, 0, 0, 169, 440 

+ po/bn.po,  126, 375, 346, 0, 0, 0, 0, 126, 375 

+ po/ta.po,  139, 398, 326, 0, 0, 0, 0, 139, 398 

@@ -0,0 +1,15 @@ 

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe4 in position 27: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xb6 in position 38: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 55: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

@@ -0,0 +1,19 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/gl.gmo,  28, 293, 319, 0, 0, 0, 0, 28, 293 

+ po/en@boldquot.po,  30, 348, 350, 0, 0, 0, 0, 30, 348 

+ po/sv.po,  22, 208, 206, 7, 138, 1, 2, 30, 348 

+ po/nl.po,  22, 208, 209, 7, 138, 1, 2, 30, 348 

+ po/en@boldquot.gmo,  30, 348, 350, 0, 0, 0, 0, 30, 348 

+ po/en@quot.po,  30, 348, 348, 0, 0, 0, 0, 30, 348 

+ po/fr.po,  22, 208, 239, 7, 138, 1, 2, 30, 348 

+ po/pl.po,  28, 293, 288, 2, 55, 0, 0, 30, 348 

+ po/cs.gmo,  28, 293, 290, 0, 0, 0, 0, 28, 293 

+ po/es.po,  28, 293, 319, 2, 55, 0, 0, 30, 348 

+ po/en@quot.gmo,  30, 348, 348, 0, 0, 0, 0, 30, 348 

+ po/de.gmo,  21, 197, 186, 0, 0, 0, 0, 21, 197 

+ po/gl.po,  28, 293, 319, 2, 55, 0, 0, 30, 348 

+ po/de.po,  21, 197, 186, 8, 149, 1, 2, 30, 348 

+ po/es.gmo,  28, 293, 319, 0, 0, 0, 0, 28, 293 

+ po/attr.pot,  0, 0, 0, 0, 0, 30, 348, 30, 348 

+ po/nl.gmo,  22, 208, 209, 0, 0, 0, 0, 22, 208 

+ po/cs.po,  28, 293, 290, 2, 55, 0, 0, 30, 348 

@@ -0,0 +1,6 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: cannot process src/man/po/authselect-migration.7.adoc.: does not exist

+ translate.tools.pocount: ERROR: cannot process src/man/po/authselect-profiles.5.adoc.: does not exist

+ translate.tools.pocount: ERROR: cannot process src/man/po/authselect.8.adoc.: does not exist

@@ -0,0 +1,22 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  303, 1748, 690, 0, 0, 39, 217, 342, 1965 

+ po/zh_CN.po,  303, 1748, 543, 0, 0, 39, 217, 342, 1965 

+ po/uk.po,  342, 1965, 2002, 0, 0, 0, 0, 342, 1965 

+ po/sv.po,  307, 1772, 1723, 0, 0, 35, 193, 342, 1965 

+ po/ru.po,  303, 1748, 1661, 0, 0, 39, 217, 342, 1965 

+ po/pt_BR.po,  303, 1748, 1999, 0, 0, 39, 217, 342, 1965 

+ po/pl.po,  342, 1965, 1969, 0, 0, 0, 0, 342, 1965 

+ po/nl.po,  342, 1965, 2051, 0, 0, 0, 0, 342, 1965 

+ po/ko.po,  303, 1748, 1553, 0, 0, 39, 217, 342, 1965 

+ po/ja.po,  303, 1748, 842, 0, 0, 39, 217, 342, 1965 

+ po/it.po,  303, 1748, 1873, 0, 0, 39, 217, 342, 1965 

+ po/hu.po,  271, 1564, 1446, 0, 0, 71, 401, 342, 1965 

+ po/fr.po,  342, 1965, 2346, 0, 0, 0, 0, 342, 1965 

+ po/es.po,  307, 1772, 2159, 0, 0, 35, 193, 342, 1965 

+ po/de.po,  303, 1748, 1726, 0, 0, 39, 217, 342, 1965 

+ po/cs.po,  244, 1344, 1241, 0, 0, 98, 621, 342, 1965 

+ po/ca.po,  171, 919, 1131, 0, 0, 171, 1046, 342, 1965 

+ po/authselect.pot,  0, 0, 0, 0, 0, 342, 1965, 342, 1965 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

@@ -0,0 +1,44 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/en_NZ.po,  152, 758, 758, 11, 89, 5, 21, 168, 868 

+ po/en_CA.po,  1, 1, 1, 1, 1, 166, 866, 168, 868 

+ po/sk.po,  165, 865, 870, 2, 2, 1, 1, 168, 868 

+ po/eo.po,  67, 167, 141, 1, 1, 100, 700, 168, 868 

+ po/sr@latin.po,  165, 865, 896, 2, 2, 1, 1, 168, 868 

+ po/pl.po,  168, 868, 865, 0, 0, 0, 0, 168, 868 

+ po/uk.po,  168, 868, 883, 0, 0, 0, 0, 168, 868 

+ po/fr.po,  165, 865, 989, 2, 2, 1, 1, 168, 868 

+ po/nl.po,  165, 865, 846, 2, 2, 1, 1, 168, 868 

+ po/es.po,  165, 865, 1070, 2, 2, 1, 1, 168, 868 

+ po/el.po,  165, 865, 876, 2, 2, 1, 1, 168, 868 

+ po/oc.po,  168, 868, 993, 0, 0, 0, 0, 168, 868 

+ po/tr.po,  168, 868, 789, 0, 0, 0, 0, 168, 868 

+ po/fi.po,  164, 794, 634, 2, 2, 2, 72, 168, 868 

+ po/fa.po,  74, 224, 245, 1, 1, 93, 643, 168, 868 

+ po/ms.po,  40, 94, 95, 1, 1, 127, 773, 168, 868 

+ po/ja.po,  165, 865, 449, 2, 2, 1, 1, 168, 868 

+ po/bg.po,  165, 865, 1001, 2, 2, 1, 1, 168, 868 

+ po/et.po,  129, 477, 405, 2, 2, 37, 389, 168, 868 

+ po/cs.po,  133, 642, 607, 2, 2, 33, 224, 168, 868 

+ po/sv.po,  168, 868, 807, 0, 0, 0, 0, 168, 868 

+ po/hu.po,  168, 868, 780, 0, 0, 0, 0, 168, 868 

+ po/ar.po,  91, 262, 267, 2, 2, 75, 604, 168, 868 

+ po/sl.po,  165, 865, 882, 2, 2, 1, 1, 168, 868 

+ po/id.po,  168, 868, 850, 0, 0, 0, 0, 168, 868 

+ po/he.po,  103, 332, 318, 2, 2, 63, 534, 168, 868 

+ po/pt_BR.po,  165, 865, 1009, 2, 2, 1, 1, 168, 868 

+ po/en_AU.po,  2, 2, 2, 1, 1, 165, 865, 168, 868 

+ po/fo.po,  113, 413, 366, 2, 2, 53, 453, 168, 868 

+ po/zh_TW.po,  165, 865, 391, 2, 2, 1, 1, 168, 868 

+ po/ko.po,  0, 0, 0, 0, 0, 168, 868, 168, 868 

+ po/ach.po,  0, 0, 0, 0, 0, 168, 868, 168, 868 

+ po/it.po,  165, 865, 986, 2, 2, 1, 1, 168, 868 

+ po/ru.po,  165, 865, 828, 2, 2, 1, 1, 168, 868 

+ po/da.po,  165, 865, 761, 2, 2, 1, 1, 168, 868 

+ po/lv.po,  165, 865, 776, 2, 2, 1, 1, 168, 868 

+ po/sr.po,  165, 865, 896, 2, 2, 1, 1, 168, 868 

+ po/gl.po,  165, 865, 1161, 2, 2, 1, 1, 168, 868 

+ po/de.po,  165, 865, 779, 2, 2, 1, 1, 168, 868 

+ po/en_GB.po,  165, 865, 865, 2, 2, 1, 1, 168, 868 

+ po/ca.po,  165, 865, 1145, 2, 2, 1, 1, 168, 868 

+ po/zh_CN.po,  165, 865, 414, 2, 2, 1, 1, 168, 868 

+ po/ro.po,  165, 865, 882, 2, 2, 1, 1, 168, 868 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./debian/po/POTFILES.in)

@@ -0,0 +1,14 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ debian/po/cs.po,  4, 67, 68, 0, 0, 0, 0, 4, 67 

+ debian/po/da.po,  4, 67, 64, 0, 0, 0, 0, 4, 67 

+ debian/po/de.po,  4, 67, 64, 0, 0, 0, 0, 4, 67 

+ debian/po/es.po,  0, 0, 0, 1, 22, 3, 45, 4, 67 

+ debian/po/fr.po,  4, 67, 73, 0, 0, 0, 0, 4, 67 

+ debian/po/id.po,  4, 67, 45, 0, 0, 0, 0, 4, 67 

+ debian/po/it.po,  4, 67, 70, 0, 0, 0, 0, 4, 67 

+ debian/po/ja.po,  4, 67, 10, 0, 0, 0, 0, 4, 67 

+ debian/po/pl.po,  4, 67, 65, 0, 0, 0, 0, 4, 67 

+ debian/po/pt.po,  4, 67, 72, 0, 0, 0, 0, 4, 67 

+ debian/po/ru.po,  4, 67, 53, 0, 0, 0, 0, 4, 67 

+ debian/po/sv.po,  4, 67, 66, 0, 0, 0, 0, 4, 67 

+ debian/po/templates.pot,  0, 0, 0, 0, 0, 4, 67, 4, 67 

@@ -0,0 +1,19 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/scan-remote.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/scan-home.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/scan-folder.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/scan-file-system.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/question-trash.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/question-open-folder.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/problem-slow-scan.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/problem-permissions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-view-chart.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/media/hicolor_apps_48x48_baobab.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,120 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/zh_CN/zh_CN.po,  57, 820, 118, 0, 0, 0, 0, 57, 820 

+ help/sv/sv.po,  67, 1103, 1032, 0, 0, 0, 0, 67, 1103 

+ help/sl/sl.po,  57, 820, 734, 0, 0, 0, 0, 57, 820 

+ help/ru/ru.po,  57, 820, 717, 0, 0, 0, 0, 57, 820 

+ help/pt_BR/pt_BR.po,  67, 1103, 1218, 0, 0, 0, 0, 67, 1103 

+ help/pt/pt.po,  67, 1103, 1132, 0, 0, 0, 0, 67, 1103 

+ help/pl/pl.po,  67, 1103, 864, 0, 0, 0, 0, 67, 1103 

+ help/ko/ko.po,  67, 1103, 749, 0, 0, 0, 0, 67, 1103 

+ help/it/it.po,  67, 1103, 1105, 0, 0, 0, 0, 67, 1103 

+ help/id/id.po,  67, 1103, 978, 0, 0, 0, 0, 67, 1103 

+ help/hu/hu.po,  67, 1103, 890, 0, 0, 0, 0, 67, 1103 

+ help/hr/hr.po,  67, 1103, 910, 0, 0, 0, 0, 67, 1103 

+ help/gl/gl.po,  39, 345, 388, 7, 255, 21, 503, 67, 1103 

+ help/fr/fr.po,  67, 1103, 1186, 0, 0, 0, 0, 67, 1103 

+ help/fi/fi.po,  47, 688, 411, 3, 56, 17, 359, 67, 1103 

+ help/es/es.po,  67, 1103, 1180, 0, 0, 0, 0, 67, 1103 

+ help/el/el.po,  67, 1103, 1126, 0, 0, 0, 0, 67, 1103 

+ help/de/de.po,  67, 1103, 1060, 0, 0, 0, 0, 67, 1103 

+ help/da/da.po,  67, 1103, 967, 0, 0, 0, 0, 67, 1103 

+ help/cs/cs.po,  67, 1103, 955, 0, 0, 0, 0, 67, 1103 

+ help/ca/ca.po,  41, 703, 758, 0, 0, 0, 0, 41, 703 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  73, 275, 125, 0, 0, 0, 0, 73, 275 

+ po/zh_HK.po,  57, 210, 109, 0, 0, 0, 0, 57, 210 

+ po/zh_CN.po,  65, 247, 109, 0, 0, 0, 0, 65, 247 

+ po/xh.po,  12, 23, 21, 40, 128, 74, 389, 126, 540 

+ po/wa.po,  6, 6, 6, 44, 128, 76, 406, 126, 540 

+ po/vi.po,  74, 278, 394, 0, 0, 0, 0, 74, 278 

+ po/uk.po,  30, 108, 116, 0, 0, 0, 0, 30, 108 

+ po/ug.po,  57, 184, 166, 0, 0, 0, 0, 57, 184 

+ po/tr.po,  74, 278, 245, 0, 0, 0, 0, 74, 278 

+ po/th.po,  58, 180, 86, 0, 0, 0, 0, 58, 180 

+ po/tg.po,  57, 210, 214, 0, 0, 0, 0, 57, 210 

+ po/te.po,  57, 210, 198, 0, 0, 0, 0, 57, 210 

+ po/ta.po,  57, 210, 192, 0, 0, 0, 0, 57, 210 

+ po/sv.po,  74, 278, 273, 0, 0, 0, 0, 74, 278 

+ po/sr@latin.po,  65, 247, 268, 0, 0, 0, 0, 65, 247 

+ po/sr.po,  74, 278, 308, 0, 0, 0, 0, 74, 278 

+ po/sq.po,  12, 23, 23, 40, 128, 74, 389, 126, 540 

+ po/sl.po,  74, 278, 284, 0, 0, 0, 0, 74, 278 

+ po/sk.po,  74, 278, 278, 0, 0, 0, 0, 74, 278 

+ po/si.po,  80, 210, 246, 19, 79, 27, 251, 126, 540 

+ po/rw.po,  2, 2, 2, 47, 141, 77, 397, 126, 540 

+ po/ru.po,  74, 278, 263, 0, 0, 0, 0, 74, 278 

+ po/ro.po,  74, 278, 333, 0, 0, 0, 0, 74, 278 

+ po/pt_BR.po,  74, 278, 418, 0, 0, 0, 0, 74, 278 

+ po/pt.po,  63, 243, 279, 0, 0, 0, 0, 63, 243 

+ po/ps.po,  99, 282, 317, 5, 18, 22, 240, 126, 540 

+ po/pl.po,  74, 278, 303, 0, 0, 0, 0, 74, 278 

+ po/pa.po,  57, 210, 251, 0, 0, 0, 0, 57, 210 

+ po/or.po,  57, 210, 231, 0, 0, 0, 0, 57, 210 

+ po/oc.po,  57, 185, 213, 0, 0, 6, 58, 63, 243 

+ po/nn.po,  72, 229, 230, 0, 0, 0, 0, 72, 229 

+ po/nl.po,  74, 278, 284, 0, 0, 0, 0, 74, 278 

+ po/ne.po,  64, 246, 227, 0, 0, 0, 0, 64, 246 

+ po/nds.po,  44, 84, 78, 1, 3, 81, 453, 126, 540 

+ po/nb.po,  65, 247, 249, 0, 0, 0, 0, 65, 247 

+ po/ms.po,  9, 15, 24, 40, 134, 77, 391, 126, 540 

+ po/mr.po,  57, 210, 217, 0, 0, 0, 0, 57, 210 

+ po/mn.po,  8, 14, 13, 41, 135, 77, 391, 126, 540 

+ po/ml.po,  65, 247, 222, 0, 0, 0, 0, 65, 247 

+ po/mk.po,  109, 370, 431, 9, 38, 8, 132, 126, 540 

+ po/mjw.po,  38, 102, 105, 0, 0, 35, 173, 73, 275 

+ po/mg.po,  50, 132, 149, 48, 193, 28, 215, 126, 540 

+ po/mai.po,  94, 287, 348, 7, 24, 25, 229, 126, 540 

+ po/lv.po,  74, 278, 266, 0, 0, 0, 0, 74, 278 

+ po/lt.po,  74, 278, 268, 0, 0, 0, 0, 74, 278 

+ po/ku.po,  54, 118, 132, 26, 104, 46, 318, 126, 540 

+ po/ko.po,  74, 278, 238, 0, 0, 0, 0, 74, 278 

+ po/kn.po,  57, 210, 187, 0, 0, 0, 0, 57, 210 

+ po/km.po,  126, 540, 243, 0, 0, 0, 0, 126, 540 

+ po/kk.po,  74, 278, 245, 0, 0, 0, 0, 74, 278 

+ po/ka.po,  11, 22, 24, 42, 157, 73, 361, 126, 540 

+ po/ja.po,  71, 225, 129, 0, 0, 3, 53, 74, 278 

+ po/it.po,  74, 278, 321, 0, 0, 0, 0, 74, 278 

+ po/is.po,  65, 247, 245, 0, 0, 0, 0, 65, 247 

+ po/id.po,  74, 278, 299, 0, 0, 0, 0, 74, 278 

+ po/hu.po,  74, 278, 290, 0, 0, 0, 0, 74, 278 

+ po/hr.po,  73, 275, 268, 0, 0, 0, 0, 73, 275 

+ po/hi.po,  57, 210, 245, 0, 0, 0, 0, 57, 210 

+ po/he.po,  63, 243, 264, 0, 0, 0, 0, 63, 243 

+ po/gu.po,  57, 210, 227, 0, 0, 0, 0, 57, 210 

+ po/gl.po,  74, 278, 394, 0, 0, 0, 0, 74, 278 

+ po/gd.po,  64, 246, 324, 0, 0, 0, 0, 64, 246 

+ po/ga.po,  45, 124, 162, 1, 6, 11, 80, 57, 210 

+ po/fur.po,  74, 278, 317, 0, 0, 0, 0, 74, 278 

+ po/fr.po,  74, 278, 350, 0, 0, 0, 0, 74, 278 

+ po/fi.po,  74, 278, 256, 0, 0, 0, 0, 74, 278 

+ po/fa.po,  73, 275, 276, 0, 0, 0, 0, 73, 275 

+ po/eu.po,  73, 275, 253, 0, 0, 0, 0, 73, 275 

+ po/et.po,  57, 210, 189, 0, 0, 0, 0, 57, 210 

+ po/es.po,  74, 278, 394, 0, 0, 0, 0, 74, 278 

+ po/eo.po,  62, 196, 187, 1, 13, 1, 37, 64, 246 

+ po/en_GB.po,  74, 278, 301, 0, 0, 0, 0, 74, 278 

+ po/en_CA.po,  11, 22, 25, 42, 157, 73, 361, 126, 540 

+ po/en@shaw.po,  100, 413, 414, 24, 123, 2, 4, 126, 540 

+ po/el.po,  74, 278, 321, 0, 0, 0, 0, 74, 278 

+ po/dz.po,  90, 285, 133, 24, 103, 12, 152, 126, 540 

+ po/de.po,  74, 278, 324, 0, 0, 0, 0, 74, 278 

+ po/da.po,  73, 275, 269, 0, 0, 0, 0, 73, 275 

+ po/cy.po,  50, 132, 164, 52, 203, 24, 205, 126, 540 

+ po/cs.po,  74, 278, 325, 0, 0, 0, 0, 74, 278 

+ po/crh.po,  57, 184, 157, 0, 0, 0, 0, 57, 184 

+ po/ca@valencia.po,  64, 246, 313, 0, 0, 0, 0, 64, 246 

+ po/ca.po,  74, 278, 356, 0, 0, 0, 0, 74, 278 

+ po/bs.po,  57, 210, 217, 0, 0, 0, 0, 57, 210 

+ po/br.po,  57, 210, 244, 0, 0, 0, 0, 57, 210 

+ po/bn_IN.po,  57, 210, 224, 0, 0, 0, 0, 57, 210 

+ po/bn.po,  122, 526, 596, 2, 10, 2, 4, 126, 540 

+ po/bg.po,  64, 246, 306, 0, 0, 0, 0, 64, 246 

+ po/be@latin.po,  109, 370, 341, 9, 38, 8, 132, 126, 540 

+ po/be.po,  65, 247, 245, 0, 0, 0, 0, 65, 247 

+ po/az.po,  9, 15, 29, 40, 134, 77, 391, 126, 540 

+ po/ast.po,  126, 540, 625, 0, 0, 0, 0, 126, 540 

+ po/as.po,  57, 210, 227, 0, 0, 0, 0, 57, 210 

+ po/ar.po,  64, 244, 257, 0, 0, 0, 0, 64, 244 

+ po/an.po,  57, 210, 255, 0, 0, 0, 0, 57, 210 

+ po/am.po,  6, 6, 10, 16, 35, 104, 499, 126, 540 

+ po/af.po,  65, 247, 248, 0, 0, 0, 0, 65, 247 

@@ -0,0 +1,16 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-builtins)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/README)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf5 in position 6: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xea in position 18: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfe in position 14: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,75 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/es.gmo,  565, 9806, 11294, 0, 0, 0, 0, 565, 9806 

+ po/hu.po,  565, 9806, 8278, 20, 1695, 1, 6, 586, 11507 

+ po/ja.gmo,  531, 5986, 2439, 0, 0, 0, 0, 531, 5986 

+ po/it.po,  487, 5568, 6137, 74, 5784, 25, 155, 586, 11507 

+ po/sr.po,  565, 9806, 9161, 20, 1695, 1, 6, 586, 11507 

+ po/gl.gmo,  468, 3199, 3776, 0, 0, 0, 0, 468, 3199 

+ po/af.po,  15, 46, 52, 220, 759, 351, 10702, 586, 11507 

+ po/sl.po,  487, 5568, 5327, 74, 5784, 25, 155, 586, 11507 

+ po/vi.gmo,  550, 9017, 11285, 0, 0, 0, 0, 550, 9017 

+ po/ca.gmo,  556, 9738, 10809, 0, 0, 0, 0, 556, 9738 

+ po/nl.po,  565, 9806, 9808, 20, 1695, 1, 6, 586, 11507 

+ po/pl.po,  584, 11184, 10311, 2, 323, 0, 0, 586, 11507 

+ po/en@boldquot.gmo,  586, 11507, 11544, 0, 0, 0, 0, 586, 11507 

+ po/pt_BR.gmo,  584, 11184, 12173, 0, 0, 0, 0, 584, 11184 

+ po/bash.pot,  0, 0, 0, 0, 0, 586, 11507, 586, 11507 

+ po/ru.gmo,  543, 6142, 5719, 0, 0, 0, 0, 543, 6142 

+ po/ro.po,  125, 431, 477, 173, 827, 288, 10249, 586, 11507 

+ po/en@quot.gmo,  586, 11507, 11507, 0, 0, 0, 0, 586, 11507 

+ po/zh_CN.gmo,  584, 11184, 3906, 0, 0, 0, 0, 584, 11184 

+ po/sk.po,  487, 5568, 5224, 74, 5784, 25, 155, 586, 11507 

+ po/fr.po,  584, 11184, 12921, 2, 323, 0, 0, 586, 11507 

+ po/it.gmo,  487, 5568, 6137, 0, 0, 0, 0, 487, 5568 

+ po/sr.gmo,  565, 9806, 9161, 0, 0, 0, 0, 565, 9806 

+ po/nb.gmo,  565, 9806, 8856, 0, 0, 0, 0, 565, 9806 

+ po/en@boldquot.po,  586, 11507, 11544, 0, 0, 0, 0, 586, 11507 

+ po/ga.gmo,  565, 6907, 7485, 0, 0, 0, 0, 565, 6907 

+ po/hr.po,  584, 11184, 10476, 2, 323, 0, 0, 586, 11507 

+ po/zh_TW.gmo,  584, 11184, 3900, 0, 0, 0, 0, 584, 11184 

+ po/nl.gmo,  565, 9806, 9808, 0, 0, 0, 0, 565, 9806 

+ po/el.po,  501, 3498, 3673, 11, 251, 74, 7758, 586, 11507 

+ po/eo.po,  565, 9806, 9056, 20, 1695, 1, 6, 586, 11507 

+ po/tr.gmo,  553, 8541, 7240, 0, 0, 0, 0, 553, 8541 

+ po/ru.po,  543, 6142, 5719, 42, 5359, 1, 6, 586, 11507 

+ po/id.po,  510, 5842, 5584, 63, 5591, 13, 74, 586, 11507 

+ po/bg.po,  565, 9806, 10657, 20, 1695, 1, 6, 586, 11507 

+ po/da.po,  458, 4836, 4619, 96, 6469, 32, 202, 586, 11507 

+ po/et.po,  153, 660, 647, 47, 189, 386, 10658, 586, 11507 

+ po/pt.gmo,  584, 11184, 11647, 0, 0, 0, 0, 584, 11184 

+ po/gl.po,  468, 3199, 3776, 51, 1438, 67, 6870, 586, 11507 

+ po/ja.po,  531, 5986, 2439, 48, 5483, 7, 38, 586, 11507 

+ po/ga.po,  565, 6907, 7485, 1, 164, 20, 4436, 586, 11507 

+ po/pt_BR.po,  584, 11184, 12173, 2, 323, 0, 0, 586, 11507 

+ po/bg.gmo,  565, 9806, 10657, 0, 0, 0, 0, 565, 9806 

+ po/eo.gmo,  565, 9806, 9056, 0, 0, 0, 0, 565, 9806 

+ po/sv.po,  584, 11184, 10408, 2, 323, 0, 0, 586, 11507 

+ po/de.gmo,  500, 5904, 5612, 0, 0, 0, 0, 500, 5904 

+ po/tr.po,  553, 8541, 7240, 17, 1181, 16, 1785, 586, 11507 

+ po/sl.gmo,  487, 5568, 5327, 0, 0, 0, 0, 487, 5568 

+ po/cs.gmo,  584, 11184, 10087, 0, 0, 0, 0, 584, 11184 

+ po/lt.po,  326, 1512, 1409, 77, 1231, 183, 8764, 586, 11507 

+ po/id.gmo,  510, 5842, 5584, 0, 0, 0, 0, 510, 5842 

+ po/uk.gmo,  565, 9806, 8768, 0, 0, 0, 0, 565, 9806 

+ po/zh_CN.po,  584, 11184, 3906, 2, 323, 0, 0, 586, 11507 

+ po/cs.po,  584, 11184, 10087, 2, 323, 0, 0, 586, 11507 

+ po/es.po,  565, 9806, 11294, 20, 1695, 1, 6, 586, 11507 

+ po/vi.po,  550, 9017, 11285, 30, 2456, 6, 34, 586, 11507 

+ po/pt.po,  584, 11184, 11647, 2, 323, 0, 0, 586, 11507 

+ po/ca.po,  556, 9738, 10809, 20, 1695, 10, 74, 586, 11507 

+ po/pl.gmo,  584, 11184, 10311, 0, 0, 0, 0, 584, 11184 

+ po/de.po,  500, 5904, 5612, 1, 164, 85, 5439, 586, 11507 

+ po/fi.gmo,  459, 4966, 3719, 0, 0, 0, 0, 459, 4966 

+ po/da.gmo,  458, 4836, 4619, 0, 0, 0, 0, 458, 4836 

+ po/uk.po,  565, 9806, 8768, 20, 1695, 1, 6, 586, 11507 

+ po/fi.po,  459, 4966, 3719, 92, 6318, 35, 223, 586, 11507 

+ po/hr.gmo,  584, 11184, 10476, 0, 0, 0, 0, 584, 11184 

+ po/sk.gmo,  487, 5568, 5224, 0, 0, 0, 0, 487, 5568 

+ po/hu.gmo,  565, 9806, 8278, 0, 0, 0, 0, 565, 9806 

+ po/lt.gmo,  326, 1512, 1409, 0, 0, 0, 0, 326, 1512 

+ po/sv.gmo,  584, 11184, 10408, 0, 0, 0, 0, 584, 11184 

+ po/en@quot.po,  586, 11507, 11507, 0, 0, 0, 0, 586, 11507 

+ po/zh_TW.po,  584, 11184, 3900, 2, 323, 0, 0, 586, 11507 

+ po/el.gmo,  501, 3498, 3673, 0, 0, 0, 0, 501, 3498 

+ po/fr.gmo,  584, 11184, 12921, 0, 0, 0, 0, 584, 11184 

+ po/nb.po,  565, 9806, 8857, 20, 1695, 1, 6, 586, 11507 

@@ -0,0 +1,29 @@ 

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./bfd/po/BLD-POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./bfd/po/SRC-POTFILES.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe3 in position 6: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./bfd/po/Make-in)

+ translate.tools.pocount: ERROR: Unknown filetype (./binutils/po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xce in position 3: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe6 in position 14: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./binutils/po/Make-in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gas/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gas/po/Make-in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gold/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gold/po/Make-in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xed in position 19: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gprof/po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe3 in position 17: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf8 in position 30: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gprof/po/Make-in)

+ translate.tools.pocount: ERROR: Unknown filetype (./ld/po/BLD-POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./ld/po/SRC-POTFILES.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe6 in position 12: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./ld/po/Make-in)

+ translate.tools.pocount: ERROR: Unknown filetype (./opcodes/po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfe in position 12: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf8 in position 2: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./opcodes/po/Make-in)

@@ -0,0 +1,239 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ bfd/po/rw.gmo,  1, 2, 2, 0, 0, 0, 0, 1, 2 

+ bfd/po/fi.gmo,  1398, 9119, 7687, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/id.gmo,  1312, 8369, 8501, 0, 0, 0, 0, 1312, 8369 

+ bfd/po/sr.po,  1398, 9119, 9435, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/ja.po,  1013, 6811, 4307, 0, 0, 286, 1419, 1299, 8230 

+ bfd/po/vi.gmo,  1312, 8369, 12106, 0, 0, 0, 0, 1312, 8369 

+ bfd/po/da.po,  1398, 9119, 8504, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/tr.gmo,  592, 4098, 3794, 0, 0, 0, 0, 592, 4098 

+ bfd/po/zh_CN.gmo,  214, 935, 437, 0, 0, 0, 0, 214, 935 

+ bfd/po/vi.po,  1312, 8369, 12106, 0, 0, 0, 0, 1312, 8369 

+ bfd/po/ro.po,  592, 4098, 4407, 0, 0, 0, 0, 592, 4098 

+ bfd/po/sv.po,  1398, 9119, 8364, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/zh_CN.po,  214, 935, 437, 521, 2842, 663, 5342, 1398, 9119 

+ bfd/po/es.po,  1771, 11953, 13950, 0, 0, 0, 0, 1771, 11953 

+ bfd/po/tr.po,  592, 4098, 3794, 0, 0, 0, 0, 592, 4098 

+ bfd/po/es.gmo,  1771, 11953, 13950, 0, 0, 0, 0, 1771, 11953 

+ bfd/po/bfd.pot,  0, 0, 0, 0, 0, 1692, 11391, 1692, 11391 

+ bfd/po/da.gmo,  1398, 9119, 8504, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/fi.po,  1398, 9119, 7687, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/fr.po,  1692, 11391, 13903, 0, 0, 0, 0, 1692, 11391 

+ bfd/po/sv.gmo,  1398, 9119, 8364, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/id.po,  1312, 8369, 8501, 0, 0, 0, 0, 1312, 8369 

+ bfd/po/hr.gmo,  79, 195, 199, 0, 0, 0, 0, 79, 195 

+ bfd/po/ru.po,  1692, 11391, 11334, 0, 0, 0, 0, 1692, 11391 

+ bfd/po/hr.po,  79, 195, 199, 0, 0, 1233, 8174, 1312, 8369 

+ bfd/po/sr.gmo,  1398, 9119, 9435, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/pt.po,  1692, 11391, 12183, 0, 0, 0, 0, 1692, 11391 

+ bfd/po/uk.po,  1692, 11391, 12006, 0, 0, 0, 0, 1692, 11391 

+ bfd/po/rw.po,  1, 2, 2, 508, 3879, 83, 217, 592, 4098 

+ bfd/po/ja.gmo,  1013, 6811, 4307, 0, 0, 0, 0, 1013, 6811 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ binutils/po/uk.gmo,  2144, 13443, 13640, 0, 0, 0, 0, 2144, 13443 

+ binutils/po/rw.gmo,  5, 8, 9, 0, 0, 0, 0, 5, 8 

+ binutils/po/fi.gmo,  1698, 10376, 8212, 0, 0, 0, 0, 1698, 10376 

+ binutils/po/id.gmo,  1144, 7903, 7882, 0, 0, 0, 0, 1144, 7903 

+ binutils/po/sr.po,  1698, 10376, 10383, 0, 0, 0, 0, 1698, 10376 

+ binutils/po/ja.po,  1296, 6741, 3758, 396, 3872, 432, 2682, 2124, 13295 

+ binutils/po/bg.po,  851, 5112, 5558, 1, 13, 1292, 8318, 2144, 13443 

+ binutils/po/vi.gmo,  1516, 9516, 14252, 0, 0, 0, 0, 1516, 9516 

+ binutils/po/it.gmo,  1496, 9431, 10831, 0, 0, 0, 0, 1496, 9431 

+ binutils/po/ca.gmo,  1698, 10376, 13004, 0, 0, 0, 0, 1698, 10376 

+ binutils/po/da.po,  780, 3498, 3134, 254, 2242, 281, 2948, 1315, 8688 

+ binutils/po/tr.gmo,  979, 6367, 5810, 0, 0, 0, 0, 979, 6367 

+ binutils/po/zh_CN.gmo,  973, 4740, 2285, 0, 0, 0, 0, 973, 4740 

+ binutils/po/vi.po,  1516, 9516, 14252, 0, 0, 0, 0, 1516, 9516 

+ binutils/po/ro.po,  261, 968, 1038, 0, 0, 718, 5399, 979, 6367 

+ binutils/po/ca.po,  1698, 10376, 13004, 0, 0, 0, 0, 1698, 10376 

+ binutils/po/bg.gmo,  851, 5112, 5558, 0, 0, 0, 0, 851, 5112 

+ binutils/po/sv.po,  2124, 13295, 11933, 0, 0, 0, 0, 2124, 13295 

+ binutils/po/zh_CN.po,  973, 4740, 2285, 513, 3613, 212, 2023, 1698, 10376 

+ binutils/po/ru.gmo,  2218, 13724, 13433, 0, 0, 0, 0, 2218, 13724 

+ binutils/po/sk.po,  1106, 7582, 7268, 0, 0, 0, 0, 1106, 7582 

+ binutils/po/es.po,  1400, 7316, 9310, 457, 4071, 361, 2337, 2218, 13724 

+ binutils/po/pt.gmo,  2144, 13443, 14641, 0, 0, 0, 0, 2144, 13443 

+ binutils/po/tr.po,  979, 6367, 5810, 0, 0, 0, 0, 979, 6367 

+ binutils/po/es.gmo,  1400, 7316, 9310, 0, 0, 0, 0, 1400, 7316 

+ binutils/po/sk.gmo,  1106, 7582, 7268, 0, 0, 0, 0, 1106, 7582 

+ binutils/po/fr.gmo,  2144, 13443, 16467, 0, 0, 0, 0, 2144, 13443 

+ binutils/po/zh_TW.gmo,  881, 4106, 1957, 0, 0, 0, 0, 881, 4106 

+ binutils/po/fi.po,  1698, 10376, 8212, 0, 0, 0, 0, 1698, 10376 

+ binutils/po/zh_TW.po,  881, 4106, 1957, 238, 2663, 397, 2747, 1516, 9516 

+ binutils/po/fr.po,  2144, 13443, 16467, 0, 0, 0, 0, 2144, 13443 

+ binutils/po/binutils.pot,  0, 0, 0, 0, 0, 2144, 13443, 2144, 13443 

+ binutils/po/sv.gmo,  2124, 13295, 11933, 0, 0, 0, 0, 2124, 13295 

+ binutils/po/id.po,  1144, 7903, 7882, 0, 0, 0, 0, 1144, 7903 

+ binutils/po/hr.gmo,  262, 1097, 1060, 0, 0, 0, 0, 262, 1097 

+ binutils/po/ru.po,  2218, 13724, 13433, 0, 0, 0, 0, 2218, 13724 

+ binutils/po/hr.po,  262, 1097, 1060, 7, 107, 1247, 8312, 1516, 9516 

+ binutils/po/sr.gmo,  1698, 10376, 10383, 0, 0, 0, 0, 1698, 10376 

+ binutils/po/pt.po,  2144, 13443, 14641, 0, 0, 0, 0, 2144, 13443 

+ binutils/po/it.po,  1496, 9431, 10831, 0, 0, 0, 0, 1496, 9431 

+ binutils/po/uk.po,  2144, 13443, 13640, 0, 0, 0, 0, 2144, 13443 

+ binutils/po/rw.po,  5, 8, 9, 761, 5299, 144, 503, 910, 5810 

+ binutils/po/ja.gmo,  1296, 6741, 3758, 0, 0, 0, 0, 1296, 6741 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ gas/po/uk.gmo,  4434, 28082, 29970, 0, 0, 0, 0, 4434, 28082 

+ gas/po/rw.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ gas/po/fi.gmo,  3702, 23106, 19304, 0, 0, 0, 0, 3702, 23106 

+ gas/po/id.gmo,  3702, 23106, 23606, 0, 0, 0, 0, 3702, 23106 

+ gas/po/ja.po,  302, 1631, 975, 6, 34, 3317, 20926, 3625, 22591 

+ gas/po/tr.gmo,  2368, 13963, 12564, 0, 0, 0, 0, 2368, 13963 

+ gas/po/zh_CN.gmo,  46, 142, 74, 0, 0, 0, 0, 46, 142 

+ gas/po/sv.po,  4102, 25598, 23039, 293, 2143, 7, 62, 4402, 27803 

+ gas/po/zh_CN.po,  46, 142, 74, 2348, 11907, 1740, 13875, 4134, 25924 

+ gas/po/ru.gmo,  4434, 28082, 27594, 0, 0, 0, 0, 4434, 28082 

+ gas/po/es.po,  4325, 27075, 33160, 8, 110, 94, 929, 4427, 28114 

+ gas/po/tr.po,  2368, 13963, 12564, 229, 1879, 99, 646, 2696, 16488 

+ gas/po/es.gmo,  4325, 27075, 33160, 0, 0, 0, 0, 4325, 27075 

+ gas/po/fr.gmo,  4434, 28082, 33690, 0, 0, 0, 0, 4434, 28082 

+ gas/po/fi.po,  3702, 23106, 19304, 0, 0, 0, 0, 3702, 23106 

+ gas/po/fr.po,  4434, 28082, 33690, 0, 0, 0, 0, 4434, 28082 

+ gas/po/sv.gmo,  4102, 25598, 23039, 0, 0, 0, 0, 4102, 25598 

+ gas/po/id.po,  3702, 23106, 23606, 0, 0, 0, 0, 3702, 23106 

+ gas/po/ru.po,  4434, 28082, 27594, 0, 0, 0, 0, 4434, 28082 

+ gas/po/gas.pot,  0, 0, 0, 0, 0, 4433, 28077, 4433, 28077 

+ gas/po/uk.po,  4434, 28082, 29970, 0, 0, 0, 0, 4434, 28082 

+ gas/po/rw.po,  0, 0, 0, 304, 1492, 2652, 16769, 2956, 18261 

+ gas/po/ja.gmo,  302, 1631, 975, 0, 0, 0, 0, 302, 1631 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ gold/po/uk.gmo,  914, 5911, 6300, 0, 0, 0, 0, 914, 5911 

+ gold/po/fi.gmo,  741, 4571, 3687, 0, 0, 0, 0, 741, 4571 

+ gold/po/id.gmo,  485, 2803, 2852, 0, 0, 0, 0, 485, 2803 

+ gold/po/ja.po,  120, 678, 431, 0, 0, 365, 2125, 485, 2803 

+ gold/po/vi.gmo,  485, 2803, 4426, 0, 0, 0, 0, 485, 2803 

+ gold/po/it.gmo,  485, 2803, 3294, 0, 0, 0, 0, 485, 2803 

+ gold/po/zh_CN.gmo,  118, 459, 190, 0, 0, 0, 0, 118, 459 

+ gold/po/vi.po,  485, 2803, 4426, 0, 0, 0, 0, 485, 2803 

+ gold/po/sv.po,  59, 245, 245, 168, 840, 514, 3486, 741, 4571 

+ gold/po/zh_CN.po,  118, 459, 190, 319, 1692, 304, 2420, 741, 4571 

+ gold/po/es.po,  792, 4808, 5615, 0, 0, 89, 815, 881, 5623 

+ gold/po/es.gmo,  792, 4808, 5615, 0, 0, 0, 0, 792, 4808 

+ gold/po/fr.gmo,  905, 5831, 7784, 0, 0, 0, 0, 905, 5831 

+ gold/po/fi.po,  741, 4571, 3687, 0, 0, 0, 0, 741, 4571 

+ gold/po/fr.po,  905, 5831, 7784, 0, 0, 0, 0, 905, 5831 

+ gold/po/sv.gmo,  59, 245, 245, 0, 0, 0, 0, 59, 245 

+ gold/po/id.po,  485, 2803, 2852, 0, 0, 0, 0, 485, 2803 

+ gold/po/gold.pot,  0, 0, 0, 0, 0, 914, 5911, 914, 5911 

+ gold/po/it.po,  485, 2803, 3294, 0, 0, 0, 0, 485, 2803 

+ gold/po/uk.po,  914, 5911, 6300, 0, 0, 0, 0, 914, 5911 

+ gold/po/ja.gmo,  120, 678, 431, 0, 0, 0, 0, 120, 678 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ gprof/po/uk.gmo,  98, 533, 552, 0, 0, 0, 0, 98, 533 

+ gprof/po/rw.gmo,  2, 2, 2, 0, 0, 0, 0, 2, 2 

+ gprof/po/fi.gmo,  97, 526, 487, 0, 0, 0, 0, 97, 526 

+ gprof/po/id.gmo,  97, 525, 517, 0, 0, 0, 0, 97, 525 

+ gprof/po/eo.gmo,  98, 533, 535, 0, 0, 0, 0, 98, 533 

+ gprof/po/sr.po,  98, 533, 543, 0, 0, 0, 0, 98, 533 

+ gprof/po/ja.po,  28, 119, 90, 36, 136, 33, 270, 97, 525 

+ gprof/po/bg.po,  98, 533, 601, 0, 0, 0, 0, 98, 533 

+ gprof/po/pt_BR.gmo,  98, 533, 613, 0, 0, 0, 0, 98, 533 

+ gprof/po/vi.gmo,  97, 525, 879, 0, 0, 0, 0, 97, 525 

+ gprof/po/it.gmo,  97, 525, 595, 0, 0, 0, 0, 97, 525 

+ gprof/po/da.po,  97, 526, 505, 0, 0, 0, 0, 97, 526 

+ gprof/po/hu.po,  98, 533, 545, 0, 0, 0, 0, 98, 533 

+ gprof/po/tr.gmo,  98, 533, 517, 0, 0, 0, 0, 98, 533 

+ gprof/po/vi.po,  97, 525, 879, 0, 0, 0, 0, 97, 525 

+ gprof/po/ro.po,  93, 486, 539, 0, 0, 0, 0, 93, 486 

+ gprof/po/bg.gmo,  98, 533, 601, 0, 0, 0, 0, 98, 533 

+ gprof/po/sv.po,  98, 533, 505, 0, 0, 0, 0, 98, 533 

+ gprof/po/ru.gmo,  98, 533, 536, 0, 0, 0, 0, 98, 533 

+ gprof/po/ms.gmo,  98, 533, 534, 0, 0, 0, 0, 98, 533 

+ gprof/po/es.po,  98, 533, 625, 0, 0, 0, 0, 98, 533 

+ gprof/po/tr.po,  98, 533, 517, 0, 0, 0, 0, 98, 533 

+ gprof/po/nl.po,  97, 525, 552, 0, 0, 0, 0, 97, 525 

+ gprof/po/es.gmo,  98, 533, 625, 0, 0, 0, 0, 98, 533 

+ gprof/po/fr.gmo,  98, 533, 614, 0, 0, 0, 0, 98, 533 

+ gprof/po/de.po,  97, 525, 492, 0, 0, 0, 0, 97, 525 

+ gprof/po/pt_BR.po,  98, 533, 613, 0, 0, 0, 0, 98, 533 

+ gprof/po/eo.po,  98, 533, 535, 0, 0, 0, 0, 98, 533 

+ gprof/po/fi.po,  97, 526, 487, 0, 0, 0, 0, 97, 526 

+ gprof/po/fr.po,  98, 533, 614, 0, 0, 0, 0, 98, 533 

+ gprof/po/ms.po,  98, 533, 534, 0, 0, 0, 0, 98, 533 

+ gprof/po/sv.gmo,  98, 533, 505, 0, 0, 0, 0, 98, 533 

+ gprof/po/id.po,  97, 525, 517, 0, 0, 0, 0, 97, 525 

+ gprof/po/nl.gmo,  97, 525, 552, 0, 0, 0, 0, 97, 525 

+ gprof/po/ru.po,  98, 533, 536, 0, 0, 0, 0, 98, 533 

+ gprof/po/gprof.pot,  0, 0, 0, 0, 0, 98, 533, 98, 533 

+ gprof/po/de.gmo,  97, 525, 492, 0, 0, 0, 0, 97, 525 

+ gprof/po/ga.po,  97, 524, 587, 0, 0, 0, 0, 97, 524 

+ gprof/po/sr.gmo,  98, 533, 543, 0, 0, 0, 0, 98, 533 

+ gprof/po/it.po,  97, 525, 595, 0, 0, 0, 0, 97, 525 

+ gprof/po/hu.gmo,  98, 533, 545, 0, 0, 0, 0, 98, 533 

+ gprof/po/uk.po,  98, 533, 552, 0, 0, 0, 0, 98, 533 

+ gprof/po/rw.po,  2, 2, 2, 67, 425, 24, 59, 93, 486 

+ gprof/po/ja.gmo,  28, 119, 90, 0, 0, 0, 0, 28, 119 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ ld/po/uk.gmo,  882, 6063, 6356, 0, 0, 0, 0, 882, 6063 

+ ld/po/fi.gmo,  323, 1737, 1422, 0, 0, 0, 0, 323, 1737 

+ ld/po/id.gmo,  489, 2902, 2970, 0, 0, 0, 0, 489, 2902 

+ ld/po/sr.po,  497, 2968, 3045, 0, 0, 0, 0, 497, 2968 

+ ld/po/ja.po,  489, 2902, 1516, 0, 0, 0, 0, 489, 2902 

+ ld/po/bg.po,  609, 3789, 4374, 0, 0, 273, 2274, 882, 6063 

+ ld/po/pt_BR.gmo,  882, 6063, 7031, 0, 0, 0, 0, 882, 6063 

+ ld/po/vi.gmo,  489, 2902, 4515, 0, 0, 0, 0, 489, 2902 

+ ld/po/it.gmo,  488, 2898, 3402, 0, 0, 0, 0, 488, 2898 

+ ld/po/da.po,  386, 2177, 2100, 0, 0, 100, 713, 486, 2890 

+ ld/po/tr.gmo,  460, 2690, 2463, 0, 0, 0, 0, 460, 2690 

+ ld/po/zh_CN.gmo,  497, 2968, 1311, 0, 0, 0, 0, 497, 2968 

+ ld/po/vi.po,  489, 2902, 4515, 0, 0, 0, 0, 489, 2902 

+ ld/po/bg.gmo,  609, 3789, 4374, 0, 0, 0, 0, 609, 3789 

+ ld/po/sv.po,  497, 2968, 2891, 0, 0, 0, 0, 497, 2968 

+ ld/po/zh_CN.po,  497, 2968, 1311, 0, 0, 0, 0, 497, 2968 

+ ld/po/ru.gmo,  55, 420, 482, 0, 0, 0, 0, 55, 420 

+ ld/po/es.po,  809, 5484, 6987, 19, 162, 56, 442, 884, 6088 

+ ld/po/ga.gmo,  497, 2968, 3409, 0, 0, 0, 0, 497, 2968 

+ ld/po/tr.po,  460, 2690, 2463, 50, 370, 64, 488, 574, 3548 

+ ld/po/es.gmo,  809, 5484, 6987, 0, 0, 0, 0, 809, 5484 

+ ld/po/fr.gmo,  884, 6088, 7743, 0, 0, 0, 0, 884, 6088 

+ ld/po/de.po,  453, 2685, 2640, 0, 0, 0, 0, 453, 2685 

+ ld/po/zh_TW.gmo,  497, 2968, 1403, 0, 0, 0, 0, 497, 2968 

+ ld/po/pt_BR.po,  882, 6063, 7031, 0, 0, 0, 0, 882, 6063 

+ ld/po/fi.po,  323, 1737, 1422, 316, 2308, 245, 2043, 884, 6088 

+ ld/po/zh_TW.po,  497, 2968, 1403, 0, 0, 0, 0, 497, 2968 

+ ld/po/fr.po,  884, 6088, 7743, 0, 0, 0, 0, 884, 6088 

+ ld/po/ld.pot,  0, 0, 0, 0, 0, 882, 6063, 882, 6063 

+ ld/po/sv.gmo,  497, 2968, 2891, 0, 0, 0, 0, 497, 2968 

+ ld/po/id.po,  489, 2902, 2970, 0, 0, 0, 0, 489, 2902 

+ ld/po/ru.po,  55, 420, 482, 3, 24, 428, 2446, 486, 2890 

+ ld/po/de.gmo,  453, 2685, 2640, 0, 0, 0, 0, 453, 2685 

+ ld/po/ga.po,  497, 2968, 3409, 0, 0, 0, 0, 497, 2968 

+ ld/po/sr.gmo,  497, 2968, 3045, 0, 0, 0, 0, 497, 2968 

+ ld/po/it.po,  488, 2898, 3402, 0, 0, 0, 0, 488, 2898 

+ ld/po/uk.po,  882, 6063, 6356, 0, 0, 0, 0, 882, 6063 

+ ld/po/ja.gmo,  489, 2902, 1516, 0, 0, 0, 0, 489, 2902 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ opcodes/po/uk.gmo,  453, 2685, 2795, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/fi.gmo,  287, 1602, 1393, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/id.gmo,  292, 1632, 1687, 0, 0, 0, 0, 292, 1632 

+ opcodes/po/sr.po,  287, 1602, 1611, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/pt_BR.gmo,  453, 2685, 3051, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/vi.gmo,  292, 1632, 2494, 0, 0, 0, 0, 292, 1632 

+ opcodes/po/it.gmo,  234, 1371, 1595, 0, 0, 0, 0, 234, 1371 

+ opcodes/po/da.po,  179, 968, 946, 0, 0, 55, 403, 234, 1371 

+ opcodes/po/tr.gmo,  148, 863, 783, 0, 0, 0, 0, 148, 863 

+ opcodes/po/zh_CN.gmo,  219, 1192, 525, 0, 0, 0, 0, 219, 1192 

+ opcodes/po/vi.po,  292, 1632, 2494, 0, 0, 0, 0, 292, 1632 

+ opcodes/po/ro.po,  148, 863, 909, 0, 0, 0, 0, 148, 863 

+ opcodes/po/sv.po,  436, 2594, 2402, 0, 0, 0, 0, 436, 2594 

+ opcodes/po/zh_CN.po,  219, 1192, 525, 108, 650, 43, 303, 370, 2145 

+ opcodes/po/opcodes.pot,  0, 0, 0, 0, 0, 453, 2685, 453, 2685 

+ opcodes/po/es.po,  370, 2145, 2527, 0, 0, 0, 0, 370, 2145 

+ opcodes/po/ga.gmo,  287, 1602, 1830, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/tr.po,  148, 863, 783, 0, 0, 0, 0, 148, 863 

+ opcodes/po/nl.po,  234, 1371, 1419, 0, 0, 0, 0, 234, 1371 

+ opcodes/po/es.gmo,  370, 2145, 2527, 0, 0, 0, 0, 370, 2145 

+ opcodes/po/fr.gmo,  362, 2108, 2378, 0, 0, 0, 0, 362, 2108 

+ opcodes/po/de.po,  453, 2685, 2640, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/pt_BR.po,  453, 2685, 3051, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/fi.po,  287, 1602, 1393, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/fr.po,  362, 2108, 2378, 0, 0, 0, 0, 362, 2108 

+ opcodes/po/sv.gmo,  436, 2594, 2402, 0, 0, 0, 0, 436, 2594 

+ opcodes/po/id.po,  292, 1632, 1687, 0, 0, 0, 0, 292, 1632 

+ opcodes/po/nl.gmo,  234, 1371, 1419, 0, 0, 0, 0, 234, 1371 

+ opcodes/po/de.gmo,  453, 2685, 2640, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/ga.po,  287, 1602, 1830, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/sr.gmo,  287, 1602, 1611, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/it.po,  234, 1371, 1595, 0, 0, 0, 0, 234, 1371 

+ opcodes/po/uk.po,  453, 2685, 2795, 0, 0, 0, 0, 453, 2685 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

@@ -0,0 +1,73 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  218, 753, 344, 0, 0, 5, 62, 223, 815 

+ po/zh_CN.po,  184, 687, 328, 0, 0, 39, 128, 223, 815 

+ po/vi.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/uk.po,  223, 815, 839, 0, 0, 0, 0, 223, 815 

+ po/tr.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/th.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/te.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/ta.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/sv.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/sr.po,  218, 753, 792, 0, 0, 5, 62, 223, 815 

+ po/sq.po,  132, 481, 575, 3, 11, 88, 323, 223, 815 

+ po/sl.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/sk.po,  223, 815, 800, 0, 0, 0, 0, 223, 815 

+ po/si.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/ru.po,  135, 492, 471, 0, 0, 88, 323, 223, 815 

+ po/ro.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/pt_BR.po,  40, 151, 160, 0, 0, 183, 664, 223, 815 

+ po/pl.po,  223, 815, 845, 0, 0, 0, 0, 223, 815 

+ po/or.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/nn.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/nl.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/nds.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/nb.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/ms.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/mr.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/mn.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/ml.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/mai.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/lv.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/ky.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/ko.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/kn.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/kk.po,  135, 492, 485, 0, 0, 88, 323, 223, 815 

+ po/ka.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/ja.po,  98, 276, 133, 0, 0, 125, 539, 223, 815 

+ po/it.po,  135, 492, 535, 0, 0, 88, 323, 223, 815 

+ po/is.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/id.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/hu.po,  223, 815, 789, 0, 0, 0, 0, 223, 815 

+ po/hr.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/hi.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/he.po,  77, 163, 168, 1, 1, 145, 651, 223, 815 

+ po/gu.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/gl.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/ga.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/fur.po,  215, 749, 887, 0, 0, 8, 66, 223, 815 

+ po/fr.po,  223, 815, 1010, 0, 0, 0, 0, 223, 815 

+ po/fi.po,  115, 313, 283, 0, 0, 108, 502, 223, 815 

+ po/fa.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/eu.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/et.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/es.po,  220, 809, 951, 2, 2, 1, 4, 223, 815 

+ po/eo.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/en_GB.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/el.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/de_CH.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/da.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/cy.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/cs.po,  222, 811, 796, 0, 0, 1, 4, 223, 815 

+ po/ca.po,  218, 775, 965, 0, 0, 5, 40, 223, 815 

+ po/bs.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/brx.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/br.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/blivet-gui.pot,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/bg.po,  126, 466, 515, 0, 0, 97, 349, 223, 815 

+ po/ast.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/as.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/ar.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/anp.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/am.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

+ po/af.po,  0, 0, 0, 0, 0, 223, 815, 223, 815 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Failed to guess file type.

+ translate.tools.pocount: ERROR: Unknown filetype (./tools/build/example/gettext/main.cpp)

+ translate.tools.pocount: ERROR: Unknown filetype (./tools/build/example/gettext/jamroot.jam)

+ translate.tools.pocount: ERROR: Unknown filetype (./tools/build/example/gettext/jamfile.jam)

@@ -0,0 +1,2 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ tools/build/example/gettext/russian.po,  1, 1, 2, 0, 0, 0, 0, 1, 1 

@@ -0,0 +1,454 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/zh_CN.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/ru.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/de.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/hu.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/lv.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/logo48.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/el.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/en_GB.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/es.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/id.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/id/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/fi.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/bg.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/ro.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/pl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/pt.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/eu.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/zh_HK.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_HK/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/ja.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/gl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/fr.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/zh_TW.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_TW/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/te.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/te/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/ko.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/it.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/cs.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/sl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/pt_BR.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/brasero-main-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/sv.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/project-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/prob-cd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/prob-dvd.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/tools-blank.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/project-image-burn.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/split-track.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/ca.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/project-audio.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/project-video.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/tools-check-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/project-disc-copy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/project-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/create-cover.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,112 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/zh_CN/zh_CN.po,  143, 2095, 431, 4, 92, 0, 0, 147, 2187 

+ help/ru/ru.po,  147, 2187, 1704, 0, 0, 0, 0, 147, 2187 

+ help/de/de.po,  144, 2202, 2138, 0, 0, 0, 0, 144, 2202 

+ help/hu/hu.po,  144, 2202, 1719, 0, 0, 0, 0, 144, 2202 

+ help/lv/lv.po,  144, 2202, 1704, 0, 0, 0, 0, 144, 2202 

+ help/el/el.po,  144, 2202, 2092, 0, 0, 0, 0, 144, 2202 

+ help/en_GB/en_GB.po,  261, 3510, 3509, 0, 0, 0, 0, 261, 3510 

+ help/es/es.po,  144, 2202, 2196, 0, 0, 0, 0, 144, 2202 

+ help/id/id.po,  144, 2202, 1944, 0, 0, 0, 0, 144, 2202 

+ help/fi/fi.po,  6, 29, 23, 26, 208, 112, 1965, 144, 2202 

+ help/bg/bg.po,  260, 3508, 3353, 0, 0, 0, 0, 260, 3508 

+ help/ro/ro.po,  144, 2202, 2205, 0, 0, 0, 0, 144, 2202 

+ help/pl/pl.po,  144, 2202, 1723, 0, 0, 0, 0, 144, 2202 

+ help/pt/pt.po,  144, 2202, 2190, 0, 0, 0, 0, 144, 2202 

+ help/eu/eu.po,  261, 3510, 2710, 0, 0, 0, 0, 261, 3510 

+ help/zh_HK/zh_HK.po,  110, 1173, 188, 8, 118, 29, 896, 147, 2187 

+ help/ja/ja.po,  145, 2204, 168, 0, 0, 0, 0, 145, 2204 

+ help/gl/gl.po,  147, 2187, 2099, 0, 0, 0, 0, 147, 2187 

+ help/fr/fr.po,  144, 2202, 2346, 0, 0, 0, 0, 144, 2202 

+ help/zh_TW/zh_TW.po,  110, 1173, 188, 8, 118, 29, 896, 147, 2187 

+ help/te/te.po,  10, 18, 22, 0, 0, 137, 2169, 147, 2187 

+ help/ko/ko.po,  144, 2202, 1487, 0, 0, 0, 0, 144, 2202 

+ help/it/it.po,  261, 3510, 3376, 0, 0, 0, 0, 261, 3510 

+ help/cs/cs.po,  144, 2202, 1787, 0, 0, 0, 0, 144, 2202 

+ help/sl/sl.po,  147, 2187, 1760, 0, 0, 0, 0, 147, 2187 

+ help/pt_BR/pt_BR.po,  144, 2202, 2272, 0, 0, 0, 0, 144, 2202 

+ help/sv/sv.po,  144, 2202, 2067, 0, 0, 0, 0, 144, 2202 

+ help/ca/ca.po,  89, 977, 1016, 0, 0, 54, 1202, 143, 2179 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/eo.po,  295, 842, 819, 0, 0, 673, 4704, 968, 5546 

+ po/sr.po,  968, 5546, 5134, 0, 0, 0, 0, 968, 5546 

+ po/nl.po,  968, 5546, 5419, 0, 0, 0, 0, 968, 5546 

+ po/cs.po,  969, 5549, 4930, 0, 0, 0, 0, 969, 5549 

+ po/tr.po,  969, 5549, 4538, 0, 0, 0, 0, 969, 5549 

+ po/mr.po,  968, 5546, 5220, 0, 0, 0, 0, 968, 5546 

+ po/he.po,  968, 5546, 4911, 0, 0, 0, 0, 968, 5546 

+ po/tg.po,  968, 5546, 5738, 0, 0, 0, 0, 968, 5546 

+ po/bn_IN.po,  968, 5546, 6053, 0, 0, 0, 0, 968, 5546 

+ po/ar.po,  946, 5182, 4531, 0, 0, 22, 364, 968, 5546 

+ po/et.po,  968, 5546, 4251, 0, 0, 0, 0, 968, 5546 

+ po/pl.po,  969, 5549, 4970, 0, 0, 0, 0, 969, 5549 

+ po/uk.po,  968, 5546, 4764, 0, 0, 0, 0, 968, 5546 

+ po/en@shaw.po,  986, 5408, 5406, 0, 0, 0, 0, 986, 5408 

+ po/gd.po,  968, 5546, 7062, 0, 0, 0, 0, 968, 5546 

+ po/af.po,  805, 4286, 4324, 11, 129, 152, 1131, 968, 5546 

+ po/my.po,  935, 4765, 1866, 4, 18, 54, 769, 993, 5552 

+ po/nn.po,  986, 5520, 5110, 3, 63, 0, 0, 989, 5583 

+ po/hr.po,  969, 5549, 5030, 0, 0, 0, 0, 969, 5549 

+ po/ast.po,  971, 5493, 5661, 0, 0, 0, 0, 971, 5493 

+ po/mk.po,  971, 5493, 5653, 0, 0, 0, 0, 971, 5493 

+ po/sr@latin.po,  968, 5546, 5134, 0, 0, 0, 0, 968, 5546 

+ po/ku.po,  672, 2889, 3030, 26, 152, 289, 2411, 987, 5452 

+ po/ca.po,  969, 5549, 6275, 0, 0, 0, 0, 969, 5549 

+ po/br.po,  984, 5393, 6173, 0, 0, 2, 15, 986, 5408 

+ po/be.po,  968, 5546, 4784, 0, 0, 0, 0, 968, 5546 

+ po/fr.po,  969, 5549, 6366, 0, 0, 0, 0, 969, 5549 

+ po/en_CA.po,  971, 5493, 5494, 0, 0, 0, 0, 971, 5493 

+ po/zh_CN.po,  968, 5546, 1589, 0, 0, 0, 0, 968, 5546 

+ po/zh_HK.po,  968, 5546, 1661, 0, 0, 0, 0, 968, 5546 

+ po/sv.po,  969, 5549, 5097, 0, 0, 0, 0, 969, 5549 

+ po/nb.po,  969, 5549, 5123, 0, 0, 0, 0, 969, 5549 

+ po/ca@valencia.po,  968, 5546, 6268, 0, 0, 0, 0, 968, 5546 

+ po/bn.po,  986, 5408, 5606, 0, 0, 0, 0, 986, 5408 

+ po/bg.po,  968, 5546, 6078, 0, 0, 0, 0, 968, 5546 

+ po/en_GB.po,  968, 5546, 5558, 0, 0, 0, 0, 968, 5546 

+ po/it.po,  982, 5608, 5414, 0, 0, 0, 0, 982, 5608 

+ po/nds.po,  466, 1332, 1259, 0, 0, 518, 4070, 984, 5402 

+ po/oc.po,  968, 5546, 6238, 0, 0, 0, 0, 968, 5546 

+ po/es.po,  969, 5549, 6058, 0, 0, 0, 0, 969, 5549 

+ po/ml.po,  968, 5546, 4199, 0, 0, 0, 0, 968, 5546 

+ po/kk.po,  304, 921, 798, 0, 0, 665, 4628, 969, 5549 

+ po/de.po,  969, 5549, 5351, 0, 0, 0, 0, 969, 5549 

+ po/bs.po,  968, 5546, 5058, 0, 0, 0, 0, 968, 5546 

+ po/lt.po,  969, 5549, 4473, 0, 0, 0, 0, 969, 5549 

+ po/ja.po,  968, 5546, 1743, 0, 0, 0, 0, 968, 5546 

+ po/zh_TW.po,  968, 5546, 1661, 0, 0, 0, 0, 968, 5546 

+ po/te.po,  968, 5546, 4519, 0, 0, 0, 0, 968, 5546 

+ po/hi.po,  968, 5546, 6441, 0, 0, 0, 0, 968, 5546 

+ po/as.po,  968, 5546, 5755, 0, 0, 0, 0, 968, 5546 

+ po/fur.po,  969, 5549, 5917, 0, 0, 0, 0, 969, 5549 

+ po/id.po,  969, 5549, 4998, 0, 0, 0, 0, 969, 5549 

+ po/pa.po,  968, 5546, 5994, 0, 0, 0, 0, 968, 5546 

+ po/pt_BR.po,  969, 5549, 5990, 0, 0, 0, 0, 969, 5549 

+ po/gu.po,  968, 5546, 5899, 0, 0, 0, 0, 968, 5546 

+ po/el.po,  968, 5546, 5813, 0, 0, 0, 0, 968, 5546 

+ po/ga.po,  495, 1562, 1688, 9, 66, 476, 3904, 980, 5532 

+ po/ne.po,  213, 476, 491, 497, 2045, 259, 3028, 969, 5549 

+ po/kn.po,  968, 5546, 4614, 0, 0, 0, 0, 968, 5546 

+ po/fi.po,  968, 5546, 4099, 0, 0, 0, 0, 968, 5546 

+ po/ro.po,  968, 5546, 5785, 0, 0, 0, 0, 968, 5546 

+ po/is.po,  669, 2636, 2505, 0, 0, 299, 2910, 968, 5546 

+ po/ms.po,  56, 256, 219, 576, 1796, 354, 3356, 986, 5408 

+ po/ru.po,  968, 5546, 4751, 0, 0, 0, 0, 968, 5546 

+ po/da.po,  968, 5546, 5079, 0, 0, 0, 0, 968, 5546 

+ po/eu.po,  968, 5546, 4622, 0, 0, 0, 0, 968, 5546 

+ po/vi.po,  969, 5549, 7376, 0, 0, 0, 0, 969, 5549 

+ po/dz.po,  752, 3949, 1203, 0, 0, 0, 0, 752, 3949 

+ po/gl.po,  968, 5546, 6224, 0, 0, 0, 0, 968, 5546 

+ po/lv.po,  968, 5546, 4488, 0, 0, 0, 0, 968, 5546 

+ po/or.po,  968, 5546, 5396, 0, 0, 0, 0, 968, 5546 

+ po/th.po,  968, 5546, 1743, 0, 0, 0, 0, 968, 5546 

+ po/km.po,  966, 5474, 1968, 5, 19, 0, 0, 971, 5493 

+ po/sl.po,  969, 5549, 5068, 0, 0, 0, 0, 969, 5549 

+ po/fa.po,  968, 5546, 5951, 0, 0, 0, 0, 968, 5546 

+ po/hu.po,  968, 5546, 4597, 0, 0, 0, 0, 968, 5546 

+ po/mai.po,  133, 242, 317, 0, 0, 828, 5038, 961, 5280 

+ po/ta.po,  968, 5546, 4597, 0, 0, 0, 0, 968, 5546 

+ po/ug.po,  977, 5515, 4331, 0, 0, 0, 0, 977, 5515 

+ po/sk.po,  969, 5549, 5121, 0, 0, 0, 0, 969, 5549 

+ po/pt.po,  968, 5546, 5958, 0, 0, 0, 0, 968, 5546 

+ po/ko.po,  968, 5546, 4229, 0, 0, 0, 0, 968, 5546 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./Messages/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./Messages/TRANSLATORS)

+ translate.tools.pocount: ERROR: Unknown filetype (./Messages/reldeps.mk)

+ translate.tools.pocount: ERROR: Unknown filetype (./Messages/LINGUAS)

@@ -0,0 +1,6 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Messages/brltty.pot,  0, 0, 0, 0, 0, 825, 2703, 825, 2703 

+ Messages/de.po,  796, 2533, 2287, 4, 18, 25, 152, 825, 2703 

+ Messages/fr.po,  802, 2636, 3468, 0, 0, 0, 0, 802, 2636 

+ Messages/it.po,  136, 194, 210, 0, 0, 666, 2442, 802, 2636 

+ Messages/zh.po,  774, 2496, 1015, 6, 34, 0, 0, 780, 2530 

@@ -0,0 +1,71 @@ 

+ translate.tools.pocount: ERROR: Failed to guess file type.

+ translate.tools.pocount: ERROR: Unknown filetype (./src/boost/tools/build/example/gettext/main.cpp)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/boost/tools/build/example/gettext/jamroot.jam)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/boost/tools/build/example/gettext/jamfile.jam)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-group/info-group.component.scss)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-group/info-group.component.html)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-card/info-card.component.scss)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-card/info-card.component.html)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-card/info-card-popover.scss)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health/health.component.scss)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health/health.component.html)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health-pie/health-pie.component.scss)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health-pie/health-pie.component.html)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/dashboard/dashboard.component.scss)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/dashboard/dashboard.component.html)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-group/info-group.component.scss)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-group/info-group.component.html)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-card/info-card.component.scss)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-card/info-card.component.html)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/info-card/info-card-popover.scss)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health/health.component.scss)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health/health.component.html)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health-pie/health-pie.component.scss)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/health-pie/health-pie.component.html)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/dashboard/dashboard.component.scss)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/dashboard/dashboard.component.html)

+ translate.tools.pocount: ERROR: Start tag expected, '<' not found, line 1, column 1 (<string>, line 1)

+ translate.tools.pocount: ERROR: cannot process src/pybind/mgr/dashboard/frontend/src/app/shared/components/usage-bar/usage-: does not exist

+ translate.tools.pocount: ERROR: cannot process src/pybind/mgr/dashboard/frontend/src/app/shared/components/usage-bar/usage-: does not exist

+ translate.tools.pocount: ERROR: cannot process src/pybind/mgr/dashboard/frontend/src/app/shared/directives/dimless-binary-: does not exist

+ translate.tools.pocount: ERROR: cannot process src/pybind/mgr/dashboard/frontend/src/app/shared/directives/dimless-binary-: does not exist

+ translate.tools.pocount: ERROR: cannot process src/pybind/mgr/dashboard/frontend/src/app/shared/pipes/dimless-binary-: does not exist

@@ -0,0 +1,9 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ src/boost/tools/build/example/gettext/russian.po,  1, 1, 2, 0, 0, 0, 0, 1, 1 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

@@ -0,0 +1,32 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ChangeLog.pre-git)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/webcams.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/video-record.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-resolution.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-image-properties.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-fullscreen.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-flash.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-countdown.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/photo-view.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/photo-take.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/photo-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/photo-delete.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/no-device.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/mode-wide.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/image-properties.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/effects.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/cheese.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/effects-apply.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/closed.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/card-graphic.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/burst-mode.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/README.translators)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog.pre-git)

@@ -0,0 +1,108 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/zh_CN/zh_CN.po,  118, 1665, 219, 1, 15, 0, 0, 119, 1680 

+ help/sv/sv.po,  112, 1472, 1412, 0, 0, 0, 0, 112, 1472 

+ help/sl/sl.po,  114, 1707, 1468, 0, 0, 0, 0, 114, 1707 

+ help/ru/ru.po,  115, 1705, 1379, 0, 0, 0, 0, 115, 1705 

+ help/pt_BR/pt_BR.po,  112, 1472, 1569, 0, 0, 0, 0, 112, 1472 

+ help/pl/pl.po,  112, 1472, 1179, 0, 0, 0, 0, 112, 1472 

+ help/nl/nl.po,  112, 1472, 1557, 0, 0, 0, 0, 112, 1472 

+ help/ko/ko.po,  112, 1472, 1038, 0, 0, 0, 0, 112, 1472 

+ help/id/id.po,  112, 1472, 1291, 0, 0, 0, 0, 112, 1472 

+ help/hu/hu.po,  112, 1472, 1243, 0, 0, 0, 0, 112, 1472 

+ help/gl/gl.po,  112, 1472, 1474, 0, 0, 0, 0, 112, 1472 

+ help/fr/fr.po,  112, 1472, 1632, 0, 0, 0, 0, 112, 1472 

+ help/fi/fi.po,  79, 877, 606, 26, 472, 7, 120, 112, 1469 

+ help/es/es.po,  112, 1472, 1575, 0, 0, 0, 0, 112, 1472 

+ help/el/el.po,  112, 1472, 1626, 0, 0, 0, 0, 112, 1472 

+ help/de/de.po,  112, 1472, 1529, 0, 0, 0, 0, 112, 1472 

+ help/cs/cs.po,  112, 1472, 1302, 0, 0, 0, 0, 112, 1472 

+ help/ca/ca.po,  118, 1652, 1870, 0, 0, 0, 0, 118, 1652 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  70, 185, 164, 2, 109, 0, 0, 72, 294 

+ po/zh_TW.po,  122, 614, 153, 0, 0, 0, 0, 122, 614 

+ po/zh_HK.po,  121, 630, 154, 0, 0, 0, 0, 121, 630 

+ po/zh_CN.po,  122, 614, 204, 0, 0, 0, 0, 122, 614 

+ po/xh.po,  71, 193, 178, 14, 44, 24, 267, 109, 504 

+ po/vi.po,  130, 628, 770, 0, 0, 0, 0, 130, 628 

+ po/uk.po,  123, 614, 518, 0, 0, 0, 0, 123, 614 

+ po/ug.po,  125, 574, 442, 0, 0, 0, 0, 125, 574 

+ po/tr.po,  130, 628, 485, 0, 0, 0, 0, 130, 628 

+ po/th.po,  123, 614, 168, 0, 0, 0, 0, 123, 614 

+ po/tg.po,  120, 613, 608, 0, 0, 0, 0, 120, 613 

+ po/te.po,  120, 613, 509, 0, 0, 0, 0, 120, 613 

+ po/ta.po,  120, 613, 500, 0, 0, 0, 0, 120, 613 

+ po/sv.po,  131, 631, 596, 0, 0, 0, 0, 131, 631 

+ po/sr@latin.po,  123, 614, 609, 0, 0, 0, 0, 123, 614 

+ po/sr.po,  130, 628, 626, 0, 0, 0, 0, 130, 628 

+ po/sq.po,  99, 527, 567, 0, 0, 0, 0, 99, 527 

+ po/sl.po,  131, 631, 582, 0, 0, 0, 0, 131, 631 

+ po/sk.po,  123, 614, 565, 0, 0, 0, 0, 123, 614 

+ po/ru.po,  122, 614, 511, 0, 0, 0, 0, 122, 614 

+ po/ro.po,  131, 631, 678, 0, 0, 0, 0, 131, 631 

+ po/pt_BR.po,  131, 631, 728, 0, 0, 0, 0, 131, 631 

+ po/pt.po,  123, 614, 655, 0, 0, 0, 0, 123, 614 

+ po/ps.po,  72, 333, 367, 0, 0, 7, 56, 79, 389 

+ po/pl.po,  130, 628, 587, 0, 0, 0, 0, 130, 628 

+ po/pa.po,  120, 613, 644, 0, 0, 0, 0, 120, 613 

+ po/or.po,  120, 613, 577, 0, 0, 0, 0, 120, 613 

+ po/oc.po,  123, 614, 690, 0, 0, 0, 0, 123, 614 

+ po/nn.po,  103, 530, 538, 0, 0, 0, 0, 103, 530 

+ po/nl.po,  122, 614, 657, 0, 0, 0, 0, 122, 614 

+ po/ne.po,  123, 614, 531, 0, 0, 0, 0, 123, 614 

+ po/nds.po,  54, 104, 96, 0, 0, 68, 556, 122, 660 

+ po/nb.po,  131, 631, 608, 0, 0, 0, 0, 131, 631 

+ po/ms.po,  95, 372, 333, 16, 197, 9, 82, 120, 651 

+ po/mr.po,  120, 613, 513, 0, 0, 0, 0, 120, 613 

+ po/ml.po,  123, 614, 477, 0, 0, 0, 0, 123, 614 

+ po/mk.po,  119, 550, 599, 0, 0, 0, 0, 119, 550 

+ po/mjw.po,  35, 62, 63, 0, 0, 96, 569, 131, 631 

+ po/mai.po,  29, 146, 167, 0, 0, 93, 513, 122, 659 

+ po/lv.po,  130, 628, 525, 0, 0, 0, 0, 130, 628 

+ po/lt.po,  130, 628, 515, 0, 0, 0, 0, 130, 628 

+ po/lo.po,  123, 614, 182, 0, 0, 0, 0, 123, 614 

+ po/ky.po,  125, 576, 441, 0, 0, 0, 0, 125, 576 

+ po/ku.po,  92, 398, 415, 0, 0, 7, 128, 99, 526 

+ po/ko.po,  130, 628, 460, 0, 0, 0, 0, 130, 628 

+ po/kn.po,  120, 613, 502, 0, 0, 0, 0, 120, 613 

+ po/km.po,  119, 550, 193, 0, 0, 0, 0, 119, 550 

+ po/kk.po,  122, 614, 472, 0, 0, 0, 0, 122, 614 

+ po/ka.po,  120, 651, 503, 0, 0, 0, 0, 120, 651 

+ po/ja.po,  129, 627, 190, 0, 0, 1, 1, 130, 628 

+ po/it.po,  130, 628, 616, 0, 0, 0, 0, 130, 628 

+ po/is.po,  122, 614, 566, 0, 0, 0, 0, 122, 614 

+ po/id.po,  131, 631, 600, 0, 0, 0, 0, 131, 631 

+ po/hu.po,  131, 631, 522, 0, 0, 0, 0, 131, 631 

+ po/hr.po,  131, 631, 576, 0, 0, 0, 0, 131, 631 

+ po/hi.po,  123, 614, 672, 0, 0, 0, 0, 123, 614 

+ po/he.po,  123, 614, 608, 0, 0, 0, 0, 123, 614 

+ po/gu.po,  123, 614, 591, 0, 0, 0, 0, 123, 614 

+ po/gl.po,  130, 628, 726, 0, 0, 0, 0, 130, 628 

+ po/ga.po,  76, 238, 325, 32, 244, 12, 73, 120, 555 

+ po/fur.po,  131, 631, 683, 0, 0, 0, 0, 131, 631 

+ po/fr.po,  131, 631, 733, 0, 0, 0, 0, 131, 631 

+ po/fi.po,  130, 628, 436, 0, 0, 0, 0, 130, 628 

+ po/fa.po,  130, 628, 611, 0, 0, 0, 0, 130, 628 

+ po/eu.po,  131, 631, 532, 0, 0, 0, 0, 131, 631 

+ po/et.po,  122, 614, 438, 0, 0, 0, 0, 122, 614 

+ po/es.po,  131, 631, 732, 0, 0, 0, 0, 131, 631 

+ po/eo.po,  131, 631, 595, 0, 0, 0, 0, 131, 631 

+ po/en_GB.po,  130, 628, 641, 0, 0, 0, 0, 130, 628 

+ po/en@shaw.po,  114, 592, 593, 6, 59, 0, 0, 120, 651 

+ po/el.po,  131, 631, 683, 0, 0, 0, 0, 131, 631 

+ po/dz.po,  59, 304, 183, 0, 0, 0, 0, 59, 304 

+ po/de.po,  131, 631, 631, 0, 0, 0, 0, 131, 631 

+ po/da.po,  122, 614, 559, 0, 0, 0, 0, 122, 614 

+ po/cs.po,  130, 628, 596, 0, 0, 0, 0, 130, 628 

+ po/ca@valencia.po,  123, 614, 692, 0, 0, 0, 0, 123, 614 

+ po/ca.po,  131, 631, 712, 0, 0, 0, 0, 131, 631 

+ po/bs.po,  120, 613, 578, 0, 0, 0, 0, 120, 613 

+ po/bn_IN.po,  120, 613, 602, 0, 0, 0, 0, 120, 613 

+ po/bn.po,  120, 651, 671, 0, 0, 0, 0, 120, 651 

+ po/bg.po,  123, 614, 561, 0, 0, 0, 0, 123, 614 

+ po/be@latin.po,  90, 412, 381, 0, 0, 9, 115, 99, 527 

+ po/be.po,  123, 614, 502, 0, 0, 0, 0, 123, 614 

+ po/ast.po,  118, 538, 574, 0, 0, 1, 12, 119, 550 

+ po/as.po,  120, 613, 581, 0, 0, 0, 0, 120, 613 

+ po/ar.po,  119, 530, 502, 0, 0, 4, 84, 123, 614 

+ po/an.po,  123, 614, 667, 0, 0, 0, 0, 123, 614 

+ po/af.po,  123, 614, 603, 0, 0, 0, 0, 123, 614 

@@ -0,0 +1,8 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/zanata.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.cvsignore)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/zanata.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.cvsignore)

@@ -0,0 +1,152 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  94, 503, 265, 0, 0, 9, 52, 103, 555 

+ po/zh_CN.po,  96, 524, 263, 0, 0, 7, 31, 103, 555 

+ po/vi.po,  72, 346, 441, 0, 0, 31, 209, 103, 555 

+ po/ur.po,  82, 400, 422, 0, 0, 21, 155, 103, 555 

+ po/uk.po,  96, 524, 503, 0, 0, 7, 31, 103, 555 

+ po/tr.po,  92, 480, 410, 4, 44, 7, 31, 103, 555 

+ po/th.po,  29, 180, 103, 0, 0, 74, 375, 103, 555 

+ po/tg.po,  91, 477, 531, 0, 0, 12, 78, 103, 555 

+ po/te.po,  94, 503, 418, 0, 0, 9, 52, 103, 555 

+ po/ta.po,  94, 503, 434, 0, 0, 9, 52, 103, 555 

+ po/sv.po,  96, 524, 539, 0, 0, 7, 31, 103, 555 

+ po/sr@latin.po,  88, 438, 418, 0, 0, 15, 117, 103, 555 

+ po/sr.po,  96, 524, 499, 0, 0, 7, 31, 103, 555 

+ po/sq.po,  95, 519, 567, 1, 5, 7, 31, 103, 555 

+ po/sl.po,  84, 413, 410, 0, 0, 19, 142, 103, 555 

+ po/sk.po,  96, 524, 519, 0, 0, 7, 31, 103, 555 

+ po/si.po,  12, 38, 38, 0, 0, 91, 517, 103, 555 

+ po/ru.po,  96, 524, 482, 0, 0, 7, 31, 103, 555 

+ po/ro.po,  0, 0, 0, 0, 0, 96, 513, 96, 513 

+ po/pt_BR.po,  96, 524, 570, 0, 0, 7, 31, 103, 555 

+ po/pt.po,  96, 524, 601, 0, 0, 7, 31, 103, 555 

+ po/pl.po,  96, 524, 543, 0, 0, 7, 31, 103, 555 

+ po/pa.po,  92, 480, 555, 0, 0, 11, 75, 103, 555 

+ po/or.po,  94, 503, 568, 0, 0, 9, 52, 103, 555 

+ po/nn.po,  6, 6, 6, 0, 0, 97, 549, 103, 555 

+ po/nl.po,  96, 524, 545, 0, 0, 7, 31, 103, 555 

+ po/nds.po,  6, 6, 6, 0, 0, 97, 549, 103, 555 

+ po/nb.po,  92, 480, 491, 0, 0, 11, 75, 103, 555 

+ po/my.po,  0, 0, 0, 0, 0, 93, 487, 93, 487 

+ po/ms.po,  84, 413, 405, 0, 0, 19, 142, 103, 555 

+ po/mr.po,  94, 503, 482, 0, 0, 9, 52, 103, 555 

+ po/ml.po,  96, 524, 440, 0, 0, 7, 31, 103, 555 

+ po/mk.po,  84, 413, 463, 0, 0, 19, 142, 103, 555 

+ po/mai.po,  88, 438, 509, 0, 0, 15, 117, 103, 555 

+ po/lv.po,  91, 477, 428, 0, 0, 12, 78, 103, 555 

+ po/lo.po,  0, 0, 0, 0, 0, 93, 487, 93, 487 

+ po/ku.po,  0, 0, 0, 0, 0, 93, 487, 93, 487 

+ po/ko.po,  96, 524, 467, 0, 0, 7, 31, 103, 555 

+ po/kn.po,  94, 503, 464, 0, 0, 9, 52, 103, 555 

+ po/km.po,  96, 524, 301, 0, 0, 7, 31, 103, 555 

+ po/ka.po,  55, 237, 221, 0, 0, 48, 318, 103, 555 

+ po/ja.po,  95, 516, 295, 1, 8, 7, 31, 103, 555 

+ po/it.po,  94, 503, 531, 0, 0, 9, 52, 103, 555 

+ po/is.po,  91, 477, 481, 0, 0, 12, 78, 103, 555 

+ po/id.po,  94, 503, 506, 0, 0, 9, 52, 103, 555 

+ po/ia.po,  94, 503, 546, 0, 0, 9, 52, 103, 555 

+ po/hy.po,  0, 0, 0, 0, 0, 93, 487, 93, 487 

+ po/hu.po,  94, 503, 503, 0, 0, 9, 52, 103, 555 

+ po/hr.po,  84, 413, 412, 0, 0, 19, 142, 103, 555 

+ po/hi.po,  94, 503, 601, 0, 0, 9, 52, 103, 555 

+ po/he.po,  0, 0, 0, 0, 0, 96, 513, 96, 513 

+ po/gu.po,  94, 503, 547, 0, 0, 9, 52, 103, 555 

+ po/gl.po,  94, 503, 579, 0, 0, 9, 52, 103, 555 

+ po/fr.po,  96, 524, 591, 0, 0, 7, 31, 103, 555 

+ po/fi.po,  96, 524, 460, 0, 0, 7, 31, 103, 555 

+ po/fa.po,  91, 477, 513, 0, 0, 12, 78, 103, 555 

+ po/eu.po,  6, 6, 6, 0, 0, 97, 549, 103, 555 

+ po/et.po,  92, 480, 423, 0, 0, 11, 75, 103, 555 

+ po/es.po,  96, 524, 580, 0, 0, 7, 31, 103, 555 

+ po/en_GB.po,  88, 438, 438, 0, 0, 15, 117, 103, 555 

+ po/el.po,  94, 503, 517, 0, 0, 9, 52, 103, 555 

+ po/de.po,  96, 524, 553, 0, 0, 7, 31, 103, 555 

+ po/da.po,  92, 480, 481, 0, 0, 11, 75, 103, 555 

+ po/cy.po,  84, 413, 438, 0, 0, 19, 142, 103, 555 

+ po/cs.po,  96, 524, 482, 0, 0, 7, 31, 103, 555 

+ po/chkconfig.pot,  0, 0, 0, 0, 0, 107, 573, 107, 573 

+ po/ca.po,  96, 524, 641, 0, 0, 7, 31, 103, 555 

+ po/bs.po,  82, 400, 398, 0, 0, 21, 155, 103, 555 

+ po/bn_IN.po,  92, 480, 488, 0, 0, 11, 75, 103, 555 

+ po/bn.po,  91, 477, 485, 0, 0, 12, 78, 103, 555 

+ po/bg.po,  95, 522, 554, 0, 0, 8, 33, 103, 555 

+ po/be.po,  81, 393, 372, 0, 0, 22, 162, 103, 555 

+ po/bal.po,  84, 413, 436, 0, 0, 19, 142, 103, 555 

+ po/as.po,  94, 503, 505, 0, 0, 9, 52, 103, 555 

+ po/ar.po,  90, 453, 442, 0, 0, 13, 102, 103, 555 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  94, 503, 265, 0, 0, 9, 52, 103, 555 

+ po/zh_CN.po,  96, 524, 263, 0, 0, 7, 31, 103, 555 

+ po/vi.po,  72, 346, 441, 0, 0, 31, 209, 103, 555 

+ po/ur.po,  82, 400, 422, 0, 0, 21, 155, 103, 555 

+ po/uk.po,  96, 524, 503, 0, 0, 7, 31, 103, 555 

+ po/tr.po,  92, 480, 410, 4, 44, 7, 31, 103, 555 

+ po/th.po,  29, 180, 103, 0, 0, 74, 375, 103, 555 

+ po/tg.po,  91, 477, 531, 0, 0, 12, 78, 103, 555 

+ po/te.po,  94, 503, 418, 0, 0, 9, 52, 103, 555 

+ po/ta.po,  94, 503, 434, 0, 0, 9, 52, 103, 555 

+ po/sv.po,  96, 524, 539, 0, 0, 7, 31, 103, 555 

+ po/sr@latin.po,  88, 438, 418, 0, 0, 15, 117, 103, 555 

+ po/sr.po,  96, 524, 499, 0, 0, 7, 31, 103, 555 

+ po/sq.po,  95, 519, 567, 1, 5, 7, 31, 103, 555 

+ po/sl.po,  84, 413, 410, 0, 0, 19, 142, 103, 555 

+ po/sk.po,  96, 524, 519, 0, 0, 7, 31, 103, 555 

+ po/si.po,  12, 38, 38, 0, 0, 91, 517, 103, 555 

+ po/ru.po,  96, 524, 482, 0, 0, 7, 31, 103, 555 

+ po/ro.po,  0, 0, 0, 0, 0, 96, 513, 96, 513 

+ po/pt_BR.po,  96, 524, 570, 0, 0, 7, 31, 103, 555 

+ po/pt.po,  96, 524, 601, 0, 0, 7, 31, 103, 555 

+ po/pl.po,  96, 524, 543, 0, 0, 7, 31, 103, 555 

+ po/pa.po,  92, 480, 555, 0, 0, 11, 75, 103, 555 

+ po/or.po,  94, 503, 568, 0, 0, 9, 52, 103, 555 

+ po/nn.po,  6, 6, 6, 0, 0, 97, 549, 103, 555 

+ po/nl.po,  96, 524, 545, 0, 0, 7, 31, 103, 555 

+ po/nds.po,  6, 6, 6, 0, 0, 97, 549, 103, 555 

+ po/nb.po,  92, 480, 491, 0, 0, 11, 75, 103, 555 

+ po/my.po,  0, 0, 0, 0, 0, 93, 487, 93, 487 

+ po/ms.po,  84, 413, 405, 0, 0, 19, 142, 103, 555 

+ po/mr.po,  94, 503, 482, 0, 0, 9, 52, 103, 555 

+ po/ml.po,  96, 524, 440, 0, 0, 7, 31, 103, 555 

+ po/mk.po,  84, 413, 463, 0, 0, 19, 142, 103, 555 

+ po/mai.po,  88, 438, 509, 0, 0, 15, 117, 103, 555 

+ po/lv.po,  91, 477, 428, 0, 0, 12, 78, 103, 555 

+ po/lo.po,  0, 0, 0, 0, 0, 93, 487, 93, 487 

+ po/ku.po,  0, 0, 0, 0, 0, 93, 487, 93, 487 

+ po/ko.po,  96, 524, 467, 0, 0, 7, 31, 103, 555 

+ po/kn.po,  94, 503, 464, 0, 0, 9, 52, 103, 555 

+ po/km.po,  96, 524, 301, 0, 0, 7, 31, 103, 555 

+ po/ka.po,  55, 237, 221, 0, 0, 48, 318, 103, 555 

+ po/ja.po,  95, 516, 295, 1, 8, 7, 31, 103, 555 

+ po/it.po,  94, 503, 531, 0, 0, 9, 52, 103, 555 

+ po/is.po,  91, 477, 481, 0, 0, 12, 78, 103, 555 

+ po/id.po,  94, 503, 506, 0, 0, 9, 52, 103, 555 

+ po/ia.po,  94, 503, 546, 0, 0, 9, 52, 103, 555 

+ po/hy.po,  0, 0, 0, 0, 0, 93, 487, 93, 487 

+ po/hu.po,  94, 503, 503, 0, 0, 9, 52, 103, 555 

+ po/hr.po,  84, 413, 412, 0, 0, 19, 142, 103, 555 

+ po/hi.po,  94, 503, 601, 0, 0, 9, 52, 103, 555 

+ po/he.po,  0, 0, 0, 0, 0, 96, 513, 96, 513 

+ po/gu.po,  94, 503, 547, 0, 0, 9, 52, 103, 555 

+ po/gl.po,  94, 503, 579, 0, 0, 9, 52, 103, 555 

+ po/fr.po,  96, 524, 591, 0, 0, 7, 31, 103, 555 

+ po/fi.po,  96, 524, 460, 0, 0, 7, 31, 103, 555 

+ po/fa.po,  91, 477, 513, 0, 0, 12, 78, 103, 555 

+ po/eu.po,  6, 6, 6, 0, 0, 97, 549, 103, 555 

+ po/et.po,  92, 480, 423, 0, 0, 11, 75, 103, 555 

+ po/es.po,  96, 524, 580, 0, 0, 7, 31, 103, 555 

+ po/en_GB.po,  88, 438, 438, 0, 0, 15, 117, 103, 555 

+ po/el.po,  94, 503, 517, 0, 0, 9, 52, 103, 555 

+ po/de.po,  96, 524, 553, 0, 0, 7, 31, 103, 555 

+ po/da.po,  92, 480, 481, 0, 0, 11, 75, 103, 555 

+ po/cy.po,  84, 413, 438, 0, 0, 19, 142, 103, 555 

+ po/cs.po,  96, 524, 482, 0, 0, 7, 31, 103, 555 

+ po/chkconfig.pot,  0, 0, 0, 0, 0, 107, 573, 107, 573 

+ po/ca.po,  96, 524, 641, 0, 0, 7, 31, 103, 555 

+ po/bs.po,  82, 400, 398, 0, 0, 21, 155, 103, 555 

+ po/bn_IN.po,  92, 480, 488, 0, 0, 11, 75, 103, 555 

+ po/bn.po,  91, 477, 485, 0, 0, 12, 78, 103, 555 

+ po/bg.po,  95, 522, 554, 0, 0, 8, 33, 103, 555 

+ po/be.po,  81, 393, 372, 0, 0, 22, 162, 103, 555 

+ po/bal.po,  84, 413, 436, 0, 0, 19, 142, 103, 555 

+ po/as.po,  94, 503, 505, 0, 0, 9, 52, 103, 555 

+ po/ar.po,  90, 453, 442, 0, 0, 13, 102, 103, 555 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/README)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,30 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/tr.po,  49, 313, 288, 0, 0, 0, 0, 49, 313 

+ po/template.pot,  0, 0, 0, 0, 0, 49, 313, 49, 313 

+ po/sv.po,  49, 313, 304, 0, 0, 0, 0, 49, 313 

+ po/sr.po,  49, 313, 315, 0, 0, 0, 0, 49, 313 

+ po/sl.po,  13, 14, 15, 19, 59, 14, 235, 46, 308 

+ po/sk.po,  47, 329, 354, 0, 0, 0, 0, 47, 329 

+ po/ru.po,  49, 313, 292, 0, 0, 0, 0, 49, 313 

+ po/pt_BR.po,  49, 313, 390, 0, 0, 0, 0, 49, 313 

+ po/pt.po,  11, 13, 18, 9, 31, 26, 264, 46, 308 

+ po/pl.po,  49, 313, 304, 0, 0, 0, 0, 49, 313 

+ po/oc.po,  44, 184, 251, 2, 124, 0, 0, 46, 308 

+ po/nl.po,  49, 313, 333, 0, 0, 0, 0, 49, 313 

+ po/nb.po,  20, 30, 29, 0, 0, 27, 299, 47, 329 

+ po/ko.po,  46, 331, 325, 0, 0, 0, 0, 46, 331 

+ po/it.po,  47, 329, 388, 0, 0, 0, 0, 47, 329 

+ po/id.po,  49, 313, 314, 0, 0, 0, 0, 49, 313 

+ po/hu.po,  49, 313, 306, 0, 0, 0, 0, 49, 313 

+ po/hr.po,  49, 313, 301, 0, 0, 0, 0, 49, 313 

+ po/gl.po,  47, 329, 418, 0, 0, 0, 0, 47, 329 

+ po/gd.po,  46, 331, 444, 0, 0, 0, 0, 46, 331 

+ po/fr.po,  46, 331, 436, 0, 0, 0, 0, 46, 331 

+ po/fi.po,  38, 139, 121, 3, 61, 8, 113, 49, 313 

+ po/et.po,  40, 162, 164, 0, 0, 9, 151, 49, 313 

+ po/es.po,  49, 313, 394, 0, 0, 0, 0, 49, 313 

+ po/el.po,  28, 109, 135, 2, 32, 16, 167, 46, 308 

+ po/de.po,  49, 313, 331, 0, 0, 0, 0, 49, 313 

+ po/da.po,  49, 313, 312, 0, 0, 0, 0, 49, 313 

+ po/cs.po,  49, 313, 317, 0, 0, 0, 0, 49, 313 

+ po/ca.po,  46, 331, 412, 0, 0, 0, 0, 46, 331 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

@@ -0,0 +1,130 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ro.po,  514, 2335, 2272, 95, 459, 66, 263, 675, 3057 

+ po/ca@valencia.gmo,  669, 3022, 3468, 0, 0, 0, 0, 669, 3022 

+ po/ast.gmo,  515, 2319, 2411, 0, 0, 0, 0, 515, 2319 

+ po/eo.po,  287, 983, 904, 71, 295, 317, 1779, 675, 3057 

+ po/pt.gmo,  675, 3057, 3395, 0, 0, 0, 0, 675, 3057 

+ po/az_IR.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po/sl.po,  675, 3057, 2589, 0, 0, 0, 0, 675, 3057 

+ po/yi.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po/ml.gmo,  124, 296, 240, 0, 0, 0, 0, 124, 296 

+ po/sr@latin.gmo,  675, 3057, 2710, 0, 0, 0, 0, 675, 3057 

+ po/sv.po,  675, 3057, 2402, 0, 0, 0, 0, 675, 3057 

+ po/ar.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po/it.gmo,  675, 3057, 3074, 0, 0, 0, 0, 675, 3057 

+ po/ps.po,  1, 1, 1, 0, 0, 674, 3056, 675, 3057 

+ po/de.gmo,  675, 3057, 2821, 0, 0, 0, 0, 675, 3057 

+ po/ug.gmo,  153, 372, 339, 0, 0, 0, 0, 153, 372 

+ po/clutter-1.0.pot,  0, 0, 0, 0, 0, 675, 3057, 675, 3057 

+ po/it.po,  675, 3057, 3074, 0, 0, 0, 0, 675, 3057 

+ po/bg.po,  675, 3057, 3108, 0, 0, 0, 0, 675, 3057 

+ po/ko.gmo,  16, 50, 41, 0, 0, 0, 0, 16, 50 

+ po/ca.po,  675, 3057, 3514, 0, 0, 0, 0, 675, 3057 

+ po/sr.po,  675, 3057, 2708, 0, 0, 0, 0, 675, 3057 

+ po/lv.po,  675, 3057, 2351, 0, 0, 0, 0, 675, 3057 

+ po/pt.po,  675, 3057, 3395, 0, 0, 0, 0, 675, 3057 

+ po/sk.gmo,  675, 3057, 2724, 0, 0, 0, 0, 675, 3057 

+ po/en_GB.gmo,  675, 3057, 3057, 0, 0, 0, 0, 675, 3057 

+ po/kk.gmo,  67, 113, 119, 0, 0, 0, 0, 67, 113 

+ po/an.gmo,  672, 3030, 3299, 0, 0, 0, 0, 672, 3030 

+ po/sr@latin.po,  675, 3057, 2710, 0, 0, 0, 0, 675, 3057 

+ po/kk.po,  67, 113, 119, 0, 0, 608, 2944, 675, 3057 

+ po/ur.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po/cs.gmo,  675, 3057, 2742, 0, 0, 0, 0, 675, 3057 

+ po/ro.gmo,  514, 2335, 2272, 0, 0, 0, 0, 514, 2335 

+ po/nl.gmo,  439, 1893, 1867, 0, 0, 0, 0, 439, 1893 

+ po/fa.po,  1, 1, 1, 0, 0, 674, 3056, 675, 3057 

+ po/lt.gmo,  675, 3057, 2240, 0, 0, 0, 0, 675, 3057 

+ po/bs.gmo,  672, 3030, 2656, 0, 0, 0, 0, 672, 3030 

+ po/ps.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po/ca.gmo,  675, 3057, 3514, 0, 0, 0, 0, 675, 3057 

+ po/lt.po,  675, 3057, 2240, 0, 0, 0, 0, 675, 3057 

+ po/kn.po,  304, 928, 732, 32, 169, 339, 1960, 675, 3057 

+ po/mk.po,  521, 2366, 2379, 93, 447, 61, 244, 675, 3057 

+ po/es.gmo,  675, 3057, 3534, 0, 0, 0, 0, 675, 3057 

+ po/gl.po,  675, 3057, 3384, 0, 0, 0, 0, 675, 3057 

+ po/km.gmo,  527, 2389, 733, 0, 0, 0, 0, 527, 2389 

+ po/fr.po,  675, 3057, 3443, 0, 0, 0, 0, 675, 3057 

+ po/or.po,  307, 945, 838, 62, 251, 306, 1861, 675, 3057 

+ po/an.po,  672, 3030, 3299, 3, 27, 0, 0, 675, 3057 

+ po/tr.po,  527, 2223, 1743, 35, 202, 113, 632, 675, 3057 

+ po/fa.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po/hr.po,  17, 58, 62, 1, 3, 657, 2996, 675, 3057 

+ po/zh_HK.po,  669, 3022, 919, 3, 27, 3, 8, 675, 3057 

+ po/da.gmo,  675, 3057, 2397, 0, 0, 0, 0, 675, 3057 

+ po/de.po,  675, 3057, 2821, 0, 0, 0, 0, 675, 3057 

+ po/id.po,  675, 3057, 2573, 0, 0, 0, 0, 675, 3057 

+ po/el.gmo,  675, 3057, 2998, 0, 0, 0, 0, 675, 3057 

+ po/az_IR.po,  1, 1, 1, 0, 0, 674, 3056, 675, 3057 

+ po/fur.po,  174, 587, 622, 0, 0, 501, 2470, 675, 3057 

+ po/mk.gmo,  521, 2366, 2379, 0, 0, 0, 0, 521, 2366 

+ po/be.po,  675, 3057, 2357, 0, 0, 0, 0, 675, 3057 

+ po/eu.gmo,  675, 3057, 2345, 0, 0, 0, 0, 675, 3057 

+ po/zh_HK.gmo,  669, 3022, 919, 0, 0, 0, 0, 669, 3022 

+ po/hi.gmo,  653, 2947, 2999, 0, 0, 0, 0, 653, 2947 

+ po/pt_BR.po,  675, 3057, 3290, 0, 0, 0, 0, 675, 3057 

+ po/pt_BR.gmo,  675, 3057, 3290, 0, 0, 0, 0, 675, 3057 

+ po/fur.gmo,  174, 587, 622, 0, 0, 0, 0, 174, 587 

+ po/zh_CN.gmo,  675, 3057, 902, 0, 0, 0, 0, 675, 3057 

+ po/ja.po,  653, 2947, 743, 14, 85, 8, 25, 675, 3057 

+ po/te.gmo,  653, 2947, 2268, 0, 0, 0, 0, 653, 2947 

+ po/ru.po,  675, 3057, 2485, 0, 0, 0, 0, 675, 3057 

+ po/be.gmo,  675, 3057, 2357, 0, 0, 0, 0, 675, 3057 

+ po/fi.po,  44, 122, 91, 6, 34, 625, 2901, 675, 3057 

+ po/nl.po,  439, 1893, 1867, 128, 624, 108, 540, 675, 3057 

+ po/pa.po,  66, 142, 142, 15, 51, 594, 2864, 675, 3057 

+ po/he.gmo,  675, 3057, 3057, 0, 0, 0, 0, 675, 3057 

+ po/zh_TW.gmo,  675, 3057, 932, 0, 0, 0, 0, 675, 3057 

+ po/ar.po,  1, 1, 1, 0, 0, 674, 3056, 675, 3057 

+ po/eu.po,  675, 3057, 2345, 0, 0, 0, 0, 675, 3057 

+ po/pl.gmo,  675, 3057, 2599, 0, 0, 0, 0, 675, 3057 

+ po/fi.gmo,  44, 122, 91, 0, 0, 0, 0, 44, 122 

+ po/ca@valencia.po,  669, 3022, 3468, 3, 27, 3, 8, 675, 3057 

+ po/pl.po,  675, 3057, 2599, 0, 0, 0, 0, 675, 3057 

+ po/hr.gmo,  17, 58, 62, 0, 0, 0, 0, 17, 58 

+ po/nb.gmo,  351, 1069, 849, 0, 0, 0, 0, 351, 1069 

+ po/ast.po,  515, 2319, 2411, 93, 441, 67, 297, 675, 3057 

+ po/pa.gmo,  66, 142, 142, 0, 0, 0, 0, 66, 142 

+ po/as.gmo,  669, 3022, 2472, 0, 0, 0, 0, 669, 3022 

+ po/ru.gmo,  675, 3057, 2485, 0, 0, 0, 0, 675, 3057 

+ po/yi.po,  1, 1, 1, 0, 0, 674, 3056, 675, 3057 

+ po/ml.po,  124, 296, 240, 3, 15, 548, 2746, 675, 3057 

+ po/hu.gmo,  675, 3057, 2541, 0, 0, 0, 0, 675, 3057 

+ po/bs.po,  672, 3030, 2656, 3, 27, 0, 0, 675, 3057 

+ po/zh_CN.po,  675, 3057, 902, 0, 0, 0, 0, 675, 3057 

+ po/gl.gmo,  675, 3057, 3384, 0, 0, 0, 0, 675, 3057 

+ po/oc.po,  675, 3057, 3457, 0, 0, 0, 0, 675, 3057 

+ po/cs.po,  675, 3057, 2742, 0, 0, 0, 0, 675, 3057 

+ po/lv.gmo,  675, 3057, 2351, 0, 0, 0, 0, 675, 3057 

+ po/as.po,  669, 3022, 2472, 3, 27, 3, 8, 675, 3057 

+ po/ur.po,  1, 1, 1, 0, 0, 674, 3056, 675, 3057 

+ po/tr.gmo,  527, 2223, 1743, 0, 0, 0, 0, 527, 2223 

+ po/sl.gmo,  675, 3057, 2589, 0, 0, 0, 0, 675, 3057 

+ po/sk.po,  675, 3057, 2724, 0, 0, 0, 0, 675, 3057 

+ po/te.po,  653, 2947, 2268, 14, 85, 8, 25, 675, 3057 

+ po/eo.gmo,  287, 983, 904, 0, 0, 0, 0, 287, 983 

+ po/hi.po,  653, 2947, 2999, 14, 85, 8, 25, 675, 3057 

+ po/zh_TW.po,  675, 3057, 932, 0, 0, 0, 0, 675, 3057 

+ po/ko.po,  16, 50, 41, 0, 0, 659, 3007, 675, 3057 

+ po/id.gmo,  675, 3057, 2573, 0, 0, 0, 0, 675, 3057 

+ po/ug.po,  153, 372, 339, 1, 2, 521, 2683, 675, 3057 

+ po/hu.po,  675, 3057, 2541, 0, 0, 0, 0, 675, 3057 

+ po/da.po,  675, 3057, 2397, 0, 0, 0, 0, 675, 3057 

+ po/uk.gmo,  672, 3030, 2651, 0, 0, 0, 0, 672, 3030 

+ po/or.gmo,  307, 945, 838, 0, 0, 0, 0, 307, 945 

+ po/ta.gmo,  515, 2319, 1645, 0, 0, 0, 0, 515, 2319 

+ po/es.po,  675, 3057, 3534, 0, 0, 0, 0, 675, 3057 

+ po/oc.gmo,  675, 3057, 3457, 0, 0, 0, 0, 675, 3057 

+ po/he.po,  675, 3057, 3057, 0, 0, 0, 0, 675, 3057 

+ po/nb.po,  351, 1069, 849, 19, 110, 305, 1878, 675, 3057 

+ po/sv.gmo,  675, 3057, 2402, 0, 0, 0, 0, 675, 3057 

+ po/el.po,  675, 3057, 2998, 0, 0, 0, 0, 675, 3057 

+ po/ja.gmo,  653, 2947, 743, 0, 0, 0, 0, 653, 2947 

+ po/fr.gmo,  675, 3057, 3443, 0, 0, 0, 0, 675, 3057 

+ po/en_GB.po,  675, 3057, 3057, 0, 0, 0, 0, 675, 3057 

+ po/kn.gmo,  304, 928, 732, 0, 0, 0, 0, 304, 928 

+ po/sr.gmo,  675, 3057, 2708, 0, 0, 0, 0, 675, 3057 

+ po/bg.gmo,  675, 3057, 3108, 0, 0, 0, 0, 675, 3057 

+ po/km.po,  527, 2389, 733, 88, 428, 60, 240, 675, 3057 

+ po/ta.po,  515, 2319, 1645, 93, 441, 67, 297, 675, 3057 

+ po/uk.po,  672, 3030, 2651, 3, 27, 0, 0, 675, 3057 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

@@ -0,0 +1,8 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/cluttergtk-1.0.pot,  0, 0, 0, 0, 0, 1, 5, 1, 5 

+ po/zh_CN.gmo,  1, 5, 3, 0, 0, 0, 0, 1, 5 

+ po/ja.po,  1, 5, 4, 0, 0, 0, 0, 1, 5 

+ po/pl.gmo,  1, 5, 5, 0, 0, 0, 0, 1, 5 

+ po/pl.po,  1, 5, 5, 0, 0, 0, 0, 1, 5 

+ po/zh_CN.po,  1, 5, 3, 0, 0, 0, 0, 1, 5 

+ po/ja.gmo,  1, 5, 4, 0, 0, 0, 0, 1, 5 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

@@ -0,0 +1,124 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ne.po,  37, 161, 170, 22, 61, 21, 171, 80, 393 

+ po/ro.po,  80, 393, 454, 0, 0, 0, 0, 80, 393 

+ po/ca@valencia.gmo,  80, 393, 552, 0, 0, 0, 0, 80, 393 

+ po/ast.gmo,  4, 15, 21, 0, 0, 0, 0, 4, 15 

+ po/eo.po,  7, 15, 17, 0, 0, 66, 340, 73, 355 

+ po/pt.gmo,  80, 393, 464, 0, 0, 0, 0, 80, 393 

+ po/sl.po,  76, 378, 358, 0, 0, 0, 0, 76, 378 

+ po/ml.gmo,  13, 37, 36, 0, 0, 0, 0, 13, 37 

+ po/en_CA.gmo,  4, 15, 15, 0, 0, 0, 0, 4, 15 

+ po/sr@latin.gmo,  80, 393, 389, 0, 0, 0, 0, 80, 393 

+ po/sv.po,  80, 393, 340, 0, 0, 0, 0, 80, 393 

+ po/ar.gmo,  4, 15, 15, 0, 0, 0, 0, 4, 15 

+ po/it.gmo,  76, 378, 455, 0, 0, 0, 0, 76, 378 

+ po/de.gmo,  76, 378, 323, 0, 0, 0, 0, 76, 378 

+ po/ug.gmo,  69, 295, 332, 0, 0, 0, 0, 69, 295 

+ po/it.po,  76, 378, 455, 0, 0, 0, 0, 76, 378 

+ po/bg.po,  80, 393, 589, 0, 0, 0, 0, 80, 393 

+ po/ko.gmo,  80, 393, 353, 0, 0, 0, 0, 80, 393 

+ po/ca.po,  76, 378, 523, 0, 0, 0, 0, 76, 378 

+ po/sr.po,  80, 393, 389, 0, 0, 0, 0, 80, 393 

+ po/th.gmo,  80, 393, 144, 0, 0, 0, 0, 80, 393 

+ po/lv.po,  80, 393, 344, 0, 0, 0, 0, 80, 393 

+ po/pt.po,  80, 393, 464, 0, 0, 0, 0, 80, 393 

+ po/sk.gmo,  80, 393, 436, 0, 0, 0, 0, 80, 393 

+ po/en_GB.gmo,  76, 378, 378, 0, 0, 0, 0, 76, 378 

+ po/an.gmo,  80, 393, 501, 0, 0, 0, 0, 80, 393 

+ po/sr@latin.po,  80, 393, 389, 0, 0, 0, 0, 80, 393 

+ po/cs.gmo,  80, 393, 414, 0, 0, 0, 0, 80, 393 

+ po/ro.gmo,  80, 393, 454, 0, 0, 0, 0, 80, 393 

+ po/nl.gmo,  80, 393, 349, 0, 0, 0, 0, 80, 393 

+ po/fa.po,  4, 15, 18, 0, 0, 71, 346, 75, 361 

+ po/lt.gmo,  80, 393, 345, 0, 0, 0, 0, 80, 393 

+ po/bs.gmo,  76, 378, 382, 0, 0, 0, 0, 76, 378 

+ po/ca.gmo,  76, 378, 523, 0, 0, 0, 0, 76, 378 

+ po/th.po,  80, 393, 144, 0, 0, 0, 0, 80, 393 

+ po/lt.po,  80, 393, 345, 0, 0, 0, 0, 80, 393 

+ po/kn.po,  4, 15, 15, 0, 0, 71, 346, 75, 361 

+ po/es.gmo,  80, 393, 530, 0, 0, 0, 0, 80, 393 

+ po/gl.po,  77, 370, 496, 0, 0, 0, 0, 77, 370 

+ po/km.gmo,  71, 320, 136, 0, 0, 0, 0, 71, 320 

+ po/fr.po,  80, 393, 531, 0, 0, 0, 0, 80, 393 

+ po/or.po,  4, 15, 19, 0, 0, 71, 346, 75, 361 

+ po/an.po,  80, 393, 501, 0, 0, 0, 0, 80, 393 

+ po/tr.po,  80, 393, 374, 0, 0, 0, 0, 80, 393 

+ po/fa.gmo,  4, 15, 18, 0, 0, 0, 0, 4, 15 

+ po/hr.po,  80, 393, 388, 0, 0, 0, 0, 80, 393 

+ po/zh_HK.po,  76, 378, 141, 0, 0, 0, 0, 76, 378 

+ po/da.gmo,  76, 378, 319, 0, 0, 0, 0, 76, 378 

+ po/de.po,  76, 378, 323, 0, 0, 0, 0, 76, 378 

+ po/id.po,  80, 393, 388, 0, 0, 0, 0, 80, 393 

+ po/el.gmo,  80, 393, 410, 0, 0, 0, 0, 80, 393 

+ po/fur.po,  80, 393, 530, 0, 0, 0, 0, 80, 393 

+ po/be.po,  80, 393, 361, 0, 0, 0, 0, 80, 393 

+ po/eu.gmo,  80, 393, 369, 0, 0, 0, 0, 80, 393 

+ po/zh_HK.gmo,  76, 378, 141, 0, 0, 0, 0, 76, 378 

+ po/hi.gmo,  76, 378, 510, 0, 0, 0, 0, 76, 378 

+ po/pt_BR.po,  80, 393, 515, 0, 0, 0, 0, 80, 393 

+ po/pt_BR.gmo,  80, 393, 515, 0, 0, 0, 0, 80, 393 

+ po/fur.gmo,  80, 393, 530, 0, 0, 0, 0, 80, 393 

+ po/zh_CN.gmo,  80, 393, 164, 0, 0, 0, 0, 80, 393 

+ po/ja.po,  76, 378, 119, 0, 0, 0, 0, 76, 378 

+ po/te.gmo,  76, 378, 349, 0, 0, 0, 0, 76, 378 

+ po/ru.po,  76, 378, 343, 0, 0, 0, 0, 76, 378 

+ po/be.gmo,  80, 393, 361, 0, 0, 0, 0, 80, 393 

+ po/nl.po,  80, 393, 349, 0, 0, 0, 0, 80, 393 

+ po/pa.po,  25, 62, 63, 0, 0, 51, 316, 76, 378 

+ po/he.gmo,  76, 378, 378, 0, 0, 0, 0, 76, 378 

+ po/zh_TW.gmo,  76, 378, 141, 0, 0, 0, 0, 76, 378 

+ po/ar.po,  4, 15, 15, 0, 0, 71, 346, 75, 361 

+ po/eu.po,  80, 393, 369, 0, 0, 0, 0, 80, 393 

+ po/pl.gmo,  80, 393, 388, 0, 0, 0, 0, 80, 393 

+ po/vi.po,  4, 15, 17, 0, 0, 71, 346, 75, 361 

+ po/ca@valencia.po,  80, 393, 552, 0, 0, 0, 0, 80, 393 

+ po/en_CA.po,  4, 15, 15, 0, 0, 71, 346, 75, 361 

+ po/pl.po,  80, 393, 388, 0, 0, 0, 0, 80, 393 

+ po/hr.gmo,  80, 393, 388, 0, 0, 0, 0, 80, 393 

+ po/nb.gmo,  23, 85, 87, 0, 0, 0, 0, 23, 85 

+ po/ast.po,  4, 15, 21, 0, 0, 71, 346, 75, 361 

+ po/pa.gmo,  25, 62, 63, 0, 0, 0, 0, 25, 62 

+ po/as.gmo,  76, 378, 418, 0, 0, 0, 0, 76, 378 

+ po/ru.gmo,  76, 378, 343, 0, 0, 0, 0, 76, 378 

+ po/ml.po,  13, 37, 36, 28, 78, 39, 278, 80, 393 

+ po/hu.gmo,  76, 378, 339, 0, 0, 0, 0, 76, 378 

+ po/vi.gmo,  4, 15, 17, 0, 0, 0, 0, 4, 15 

+ po/bs.po,  76, 378, 382, 0, 0, 0, 0, 76, 378 

+ po/zh_CN.po,  80, 393, 164, 0, 0, 0, 0, 80, 393 

+ po/gl.gmo,  77, 370, 496, 0, 0, 0, 0, 77, 370 

+ po/oc.po,  80, 393, 535, 0, 0, 0, 0, 80, 393 

+ po/cs.po,  80, 393, 414, 0, 0, 0, 0, 80, 393 

+ po/lv.gmo,  80, 393, 344, 0, 0, 0, 0, 80, 393 

+ po/as.po,  76, 378, 418, 0, 0, 0, 0, 76, 378 

+ po/ne.gmo,  37, 161, 170, 0, 0, 0, 0, 37, 161 

+ po/tr.gmo,  80, 393, 374, 0, 0, 0, 0, 80, 393 

+ po/sl.gmo,  76, 378, 358, 0, 0, 0, 0, 76, 378 

+ po/sk.po,  80, 393, 436, 0, 0, 0, 0, 80, 393 

+ po/te.po,  76, 378, 349, 0, 0, 0, 0, 76, 378 

+ po/eo.gmo,  7, 15, 17, 0, 0, 0, 0, 7, 15 

+ po/hi.po,  76, 378, 510, 0, 0, 0, 0, 76, 378 

+ po/zh_TW.po,  76, 378, 141, 0, 0, 0, 0, 76, 378 

+ po/ko.po,  80, 393, 353, 0, 0, 0, 0, 80, 393 

+ po/id.gmo,  80, 393, 388, 0, 0, 0, 0, 80, 393 

+ po/ug.po,  69, 295, 332, 0, 0, 11, 98, 80, 393 

+ po/hu.po,  76, 378, 339, 0, 0, 0, 0, 76, 378 

+ po/da.po,  76, 378, 319, 0, 0, 0, 0, 76, 378 

+ po/uk.gmo,  80, 393, 360, 0, 0, 0, 0, 80, 393 

+ po/or.gmo,  4, 15, 19, 0, 0, 0, 0, 4, 15 

+ po/ta.gmo,  76, 378, 346, 0, 0, 0, 0, 76, 378 

+ po/es.po,  80, 393, 530, 0, 0, 0, 0, 80, 393 

+ po/oc.gmo,  80, 393, 535, 0, 0, 0, 0, 80, 393 

+ po/cogl.pot,  0, 0, 0, 0, 0, 80, 393, 80, 393 

+ po/he.po,  76, 378, 378, 0, 0, 0, 0, 76, 378 

+ po/nb.po,  23, 85, 87, 0, 0, 57, 308, 80, 393 

+ po/sv.gmo,  80, 393, 340, 0, 0, 0, 0, 80, 393 

+ po/el.po,  80, 393, 410, 0, 0, 0, 0, 80, 393 

+ po/ja.gmo,  76, 378, 119, 0, 0, 0, 0, 76, 378 

+ po/fr.gmo,  80, 393, 531, 0, 0, 0, 0, 80, 393 

+ po/en_GB.po,  76, 378, 378, 0, 0, 0, 0, 76, 378 

+ po/kn.gmo,  4, 15, 15, 0, 0, 0, 0, 4, 15 

+ po/sr.gmo,  80, 393, 389, 0, 0, 0, 0, 80, 393 

+ po/bg.gmo,  80, 393, 589, 0, 0, 0, 0, 80, 393 

+ po/km.po,  71, 320, 136, 4, 41, 0, 0, 75, 361 

+ po/ta.po,  76, 378, 346, 0, 0, 0, 0, 76, 378 

+ po/uk.po,  80, 393, 360, 0, 0, 0, 0, 80, 393 

@@ -0,0 +1,10 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,106 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  253, 1990, 546, 0, 0, 0, 0, 253, 1990 

+ po/zh_CN.po,  253, 1990, 504, 0, 0, 0, 0, 253, 1990 

+ po/uk.po,  253, 1990, 1960, 0, 0, 0, 0, 253, 1990 

+ po/tr.po,  211, 1928, 1622, 0, 0, 42, 62, 253, 1990 

+ po/th.po,  2, 11, 4, 0, 0, 97, 377, 99, 388 

+ po/ta.po,  8, 25, 22, 0, 0, 91, 363, 99, 388 

+ po/sv.po,  253, 1990, 1728, 0, 0, 0, 0, 253, 1990 

+ po/sr@latin.po,  8, 25, 32, 0, 0, 91, 363, 99, 388 

+ po/sr.po,  211, 1928, 1817, 0, 0, 42, 62, 253, 1990 

+ po/sl.po,  127, 522, 496, 0, 0, 126, 1468, 253, 1990 

+ po/sk.po,  89, 334, 319, 0, 0, 164, 1656, 253, 1990 

+ po/ru.po,  253, 1990, 1910, 0, 0, 0, 0, 253, 1990 

+ po/ro.po,  75, 303, 343, 0, 0, 178, 1687, 253, 1990 

+ po/pt_BR.po,  253, 1990, 2325, 0, 0, 0, 0, 253, 1990 

+ po/pt.po,  111, 372, 427, 0, 0, 142, 1618, 253, 1990 

+ po/pl.po,  253, 1990, 1896, 0, 0, 0, 0, 253, 1990 

+ po/pa.po,  8, 25, 26, 0, 0, 91, 363, 99, 388 

+ po/or.po,  8, 25, 29, 0, 0, 91, 363, 99, 388 

+ po/oc.po,  120, 432, 520, 0, 0, 133, 1558, 253, 1990 

+ po/nl.po,  97, 386, 417, 0, 0, 156, 1604, 253, 1990 

+ po/nb.po,  150, 673, 565, 0, 0, 103, 1317, 253, 1990 

+ po/mr.po,  8, 25, 23, 0, 0, 91, 363, 99, 388 

+ po/ml.po,  8, 25, 24, 0, 0, 91, 363, 99, 388 

+ po/lv.po,  121, 497, 401, 0, 0, 132, 1493, 253, 1990 

+ po/lt.po,  59, 209, 193, 0, 0, 194, 1781, 253, 1990 

+ po/ko.po,  253, 1990, 1519, 0, 0, 0, 0, 253, 1990 

+ po/kn.po,  8, 25, 25, 0, 0, 91, 363, 99, 388 

+ po/kk.po,  5, 5, 5, 0, 0, 198, 1880, 203, 1885 

+ po/ja.po,  134, 545, 175, 0, 0, 119, 1445, 253, 1990 

+ po/it.po,  253, 1990, 2088, 0, 0, 0, 0, 253, 1990 

+ po/is.po,  132, 448, 399, 0, 0, 121, 1542, 253, 1990 

+ po/id.po,  215, 837, 785, 0, 0, 38, 1153, 253, 1990 

+ po/hu.po,  253, 1990, 1682, 0, 0, 0, 0, 253, 1990 

+ po/hr.po,  166, 899, 803, 0, 0, 87, 1091, 253, 1990 

+ po/hi.po,  8, 25, 28, 0, 0, 91, 363, 99, 388 

+ po/he.po,  38, 162, 135, 0, 0, 215, 1828, 253, 1990 

+ po/gu.po,  8, 25, 25, 0, 0, 91, 363, 99, 388 

+ po/gl.po,  151, 630, 726, 0, 0, 102, 1360, 253, 1990 

+ po/fur.po,  179, 753, 888, 0, 0, 74, 1237, 253, 1990 

+ po/fr.po,  148, 732, 832, 0, 0, 105, 1258, 253, 1990 

+ po/fi.po,  43, 161, 100, 0, 0, 210, 1829, 253, 1990 

+ po/eu.po,  49, 129, 105, 0, 0, 204, 1861, 253, 1990 

+ po/es.po,  197, 1850, 2073, 0, 0, 56, 140, 253, 1990 

+ po/eo.po,  5, 5, 5, 0, 0, 198, 1880, 203, 1885 

+ po/en_GB.po,  252, 1986, 1986, 0, 0, 1, 4, 253, 1990 

+ po/el.po,  203, 1885, 2153, 0, 0, 50, 105, 253, 1990 

+ po/de.po,  246, 1865, 1697, 0, 0, 7, 125, 253, 1990 

+ po/da.po,  253, 1990, 1767, 0, 0, 0, 0, 253, 1990 

+ po/cs.po,  253, 1990, 1889, 0, 0, 0, 0, 253, 1990 

+ po/ca.po,  253, 1990, 2435, 0, 0, 0, 0, 253, 1990 

+ po/bn_IN.po,  8, 25, 34, 0, 0, 91, 363, 99, 388 

+ po/as.po,  8, 25, 29, 0, 0, 91, 363, 99, 388 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  253, 1990, 546, 0, 0, 0, 0, 253, 1990 

+ po/zh_CN.po,  253, 1990, 504, 0, 0, 0, 0, 253, 1990 

+ po/uk.po,  253, 1990, 1960, 0, 0, 0, 0, 253, 1990 

+ po/tr.po,  211, 1928, 1622, 0, 0, 42, 62, 253, 1990 

+ po/th.po,  2, 11, 4, 0, 0, 97, 377, 99, 388 

+ po/ta.po,  8, 25, 22, 0, 0, 91, 363, 99, 388 

+ po/sv.po,  253, 1990, 1728, 0, 0, 0, 0, 253, 1990 

+ po/sr@latin.po,  8, 25, 32, 0, 0, 91, 363, 99, 388 

+ po/sr.po,  211, 1928, 1817, 0, 0, 42, 62, 253, 1990 

+ po/sl.po,  127, 522, 496, 0, 0, 126, 1468, 253, 1990 

+ po/sk.po,  89, 334, 319, 0, 0, 164, 1656, 253, 1990 

+ po/ru.po,  253, 1990, 1910, 0, 0, 0, 0, 253, 1990 

+ po/ro.po,  75, 303, 343, 0, 0, 178, 1687, 253, 1990 

+ po/pt_BR.po,  253, 1990, 2325, 0, 0, 0, 0, 253, 1990 

+ po/pt.po,  111, 372, 427, 0, 0, 142, 1618, 253, 1990 

+ po/pl.po,  253, 1990, 1896, 0, 0, 0, 0, 253, 1990 

+ po/pa.po,  8, 25, 26, 0, 0, 91, 363, 99, 388 

+ po/or.po,  8, 25, 29, 0, 0, 91, 363, 99, 388 

+ po/oc.po,  120, 432, 520, 0, 0, 133, 1558, 253, 1990 

+ po/nl.po,  97, 386, 417, 0, 0, 156, 1604, 253, 1990 

+ po/nb.po,  150, 673, 565, 0, 0, 103, 1317, 253, 1990 

+ po/mr.po,  8, 25, 23, 0, 0, 91, 363, 99, 388 

+ po/ml.po,  8, 25, 24, 0, 0, 91, 363, 99, 388 

+ po/lv.po,  121, 497, 401, 0, 0, 132, 1493, 253, 1990 

+ po/lt.po,  59, 209, 193, 0, 0, 194, 1781, 253, 1990 

+ po/ko.po,  253, 1990, 1519, 0, 0, 0, 0, 253, 1990 

+ po/kn.po,  8, 25, 25, 0, 0, 91, 363, 99, 388 

+ po/kk.po,  5, 5, 5, 0, 0, 198, 1880, 203, 1885 

+ po/ja.po,  134, 545, 175, 0, 0, 119, 1445, 253, 1990 

+ po/it.po,  253, 1990, 2088, 0, 0, 0, 0, 253, 1990 

+ po/is.po,  132, 448, 399, 0, 0, 121, 1542, 253, 1990 

+ po/id.po,  215, 837, 785, 0, 0, 38, 1153, 253, 1990 

+ po/hu.po,  253, 1990, 1682, 0, 0, 0, 0, 253, 1990 

+ po/hr.po,  166, 899, 803, 0, 0, 87, 1091, 253, 1990 

+ po/hi.po,  8, 25, 28, 0, 0, 91, 363, 99, 388 

+ po/he.po,  38, 162, 135, 0, 0, 215, 1828, 253, 1990 

+ po/gu.po,  8, 25, 25, 0, 0, 91, 363, 99, 388 

+ po/gl.po,  151, 630, 726, 0, 0, 102, 1360, 253, 1990 

+ po/fur.po,  179, 753, 888, 0, 0, 74, 1237, 253, 1990 

+ po/fr.po,  148, 732, 832, 0, 0, 105, 1258, 253, 1990 

+ po/fi.po,  43, 161, 100, 0, 0, 210, 1829, 253, 1990 

+ po/eu.po,  49, 129, 105, 0, 0, 204, 1861, 253, 1990 

+ po/es.po,  197, 1850, 2073, 0, 0, 56, 140, 253, 1990 

+ po/eo.po,  5, 5, 5, 0, 0, 198, 1880, 203, 1885 

+ po/en_GB.po,  252, 1986, 1986, 0, 0, 1, 4, 253, 1990 

+ po/el.po,  203, 1885, 2153, 0, 0, 50, 105, 253, 1990 

+ po/de.po,  246, 1865, 1697, 0, 0, 7, 125, 253, 1990 

+ po/da.po,  253, 1990, 1767, 0, 0, 0, 0, 253, 1990 

+ po/cs.po,  253, 1990, 1889, 0, 0, 0, 0, 253, 1990 

+ po/ca.po,  253, 1990, 2435, 0, 0, 0, 0, 253, 1990 

+ po/bn_IN.po,  8, 25, 34, 0, 0, 91, 363, 99, 388 

+ po/as.po,  8, 25, 29, 0, 0, 91, 363, 99, 388 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,2 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/en_GB.po,  0, 0, 0, 0, 0, 1, 5, 1, 5 

@@ -0,0 +1,34 @@ 

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe1 in position 172: invalid continuation byte

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xba in position 16: invalid start byte

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

@@ -0,0 +1,30 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_CN.po,  162, 1101, 403, 45, 211, 106, 590, 313, 1902 

+ po/cpio.pot,  0, 0, 0, 0, 0, 313, 1902, 313, 1902 

+ po/sv.po,  293, 1795, 1770, 15, 86, 5, 21, 313, 1902 

+ po/sr.po,  293, 1795, 1866, 15, 86, 5, 21, 313, 1902 

+ po/tr.po,  293, 1795, 1606, 15, 86, 5, 21, 313, 1902 

+ po/it.po,  293, 1795, 2020, 15, 86, 5, 21, 313, 1902 

+ po/nl.po,  293, 1795, 1808, 15, 86, 5, 21, 313, 1902 

+ po/uk.po,  293, 1795, 1786, 15, 86, 5, 21, 313, 1902 

+ po/ja.po,  293, 1795, 846, 15, 86, 5, 21, 313, 1902 

+ po/pt_BR.po,  38, 197, 244, 52, 272, 223, 1433, 313, 1902 

+ po/ga.po,  162, 1101, 1453, 45, 211, 106, 590, 313, 1902 

+ po/zh_TW.gmo,  178, 899, 458, 0, 0, 0, 0, 178, 899 

+ po/ru.po,  293, 1795, 1785, 15, 86, 5, 21, 313, 1902 

+ po/pl.po,  293, 1795, 1800, 15, 86, 5, 21, 313, 1902 

+ po/vi.po,  293, 1795, 2633, 15, 86, 5, 21, 313, 1902 

+ po/ro.po,  38, 197, 235, 52, 272, 223, 1433, 313, 1902 

+ po/fi.po,  293, 1795, 1472, 15, 86, 5, 21, 313, 1902 

+ po/id.po,  293, 1795, 1804, 15, 86, 5, 21, 313, 1902 

+ po/gl.po,  125, 567, 722, 9, 43, 179, 1292, 313, 1902 

+ po/ko.po,  33, 174, 159, 57, 295, 223, 1433, 313, 1902 

+ po/hr.po,  293, 1795, 1754, 15, 86, 5, 21, 313, 1902 

+ po/hu.po,  293, 1795, 1799, 15, 86, 5, 21, 313, 1902 

+ po/fr.po,  293, 1795, 2158, 15, 86, 5, 21, 313, 1902 

+ po/de.po,  293, 1795, 1765, 15, 86, 5, 21, 313, 1902 

+ po/zh_TW.po,  178, 899, 458, 39, 240, 96, 763, 313, 1902 

+ po/da.po,  293, 1795, 1722, 15, 86, 5, 21, 313, 1902 

+ po/es.po,  267, 1598, 1983, 15, 86, 31, 218, 313, 1902 

+ po/ko.gmo,  33, 174, 159, 0, 0, 0, 0, 33, 174 

+ po/gl.gmo,  125, 567, 722, 0, 0, 0, 0, 125, 567 

@@ -0,0 +1,11 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

@@ -0,0 +1,72 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/cs.po,  15, 93, 74, 0, 0, 1, 3, 16, 96 

+ po/ko.po,  15, 93, 64, 0, 0, 1, 3, 16, 96 

+ po/te.gmo,  15, 93, 73, 0, 0, 0, 0, 15, 93 

+ po/ru.po,  15, 93, 66, 0, 0, 1, 3, 16, 96 

+ po/pt_BR.po,  15, 93, 89, 0, 0, 1, 3, 16, 96 

+ po/or.po,  15, 93, 88, 0, 0, 1, 3, 16, 96 

+ po/fi.po,  15, 93, 51, 0, 0, 1, 3, 16, 96 

+ po/gu.gmo,  15, 93, 80, 0, 0, 0, 0, 15, 93 

+ po/ja.po,  15, 93, 15, 0, 0, 1, 3, 16, 96 

+ po/bn_IN.gmo,  15, 93, 96, 0, 0, 0, 0, 15, 93 

+ po/es.po,  15, 93, 83, 0, 0, 1, 3, 16, 96 

+ po/de.po,  15, 93, 83, 0, 0, 1, 3, 16, 96 

+ po/de.gmo,  15, 93, 83, 0, 0, 0, 0, 15, 93 

+ po/sl_SI.gmo,  15, 93, 80, 0, 0, 0, 0, 15, 93 

+ po/ko.gmo,  15, 93, 64, 0, 0, 0, 0, 15, 93 

+ po/ml.gmo,  15, 93, 52, 0, 0, 0, 0, 15, 93 

+ po/bn_IN.po,  15, 93, 96, 0, 0, 1, 3, 16, 96 

+ po/pl.po,  15, 93, 73, 0, 0, 1, 3, 16, 96 

+ po/sk.gmo,  15, 93, 80, 0, 0, 0, 0, 15, 93 

+ po/hu.gmo,  15, 93, 65, 0, 0, 0, 0, 15, 93 

+ po/zh_TW.po,  15, 93, 17, 0, 0, 1, 3, 16, 96 

+ po/nl.po,  15, 93, 93, 0, 0, 1, 3, 16, 96 

+ po/ja.gmo,  15, 93, 15, 0, 0, 0, 0, 15, 93 

+ po/pt.po,  15, 93, 103, 0, 0, 1, 3, 16, 96 

+ po/fi.gmo,  15, 93, 51, 0, 0, 0, 0, 15, 93 

+ po/mr.gmo,  15, 93, 66, 0, 0, 0, 0, 15, 93 

+ po/kn.po,  15, 93, 68, 0, 0, 1, 3, 16, 96 

+ po/hi.po,  15, 93, 105, 0, 0, 1, 3, 16, 96 

+ po/gu.po,  15, 93, 80, 0, 0, 1, 3, 16, 96 

+ po/as.gmo,  15, 93, 82, 0, 0, 0, 0, 15, 93 

+ po/sk.po,  15, 93, 80, 0, 0, 1, 3, 16, 96 

+ po/pa.gmo,  15, 93, 97, 0, 0, 0, 0, 15, 93 

+ po/it.gmo,  15, 93, 84, 0, 0, 0, 0, 15, 93 

+ po/ta.gmo,  15, 93, 72, 0, 0, 0, 0, 15, 93 

+ po/fr.gmo,  15, 93, 87, 0, 0, 0, 0, 15, 93 

+ po/ml.po,  15, 93, 52, 0, 0, 1, 3, 16, 96 

+ po/cracklib.pot,  0, 0, 0, 0, 0, 16, 96, 16, 96 

+ po/lt.gmo,  15, 93, 77, 0, 0, 0, 0, 15, 93 

+ po/hi.gmo,  15, 93, 105, 0, 0, 0, 0, 15, 93 

+ po/nb.po,  15, 93, 85, 0, 0, 1, 3, 16, 96 

+ po/it.po,  15, 93, 84, 0, 0, 1, 3, 16, 96 

+ po/pl.gmo,  15, 93, 73, 0, 0, 0, 0, 15, 93 

+ po/es.gmo,  15, 93, 83, 0, 0, 0, 0, 15, 93 

+ po/el.gmo,  15, 93, 67, 0, 0, 0, 0, 15, 93 

+ po/cs.gmo,  15, 93, 74, 0, 0, 0, 0, 15, 93 

+ po/zh_CN.gmo,  15, 93, 1, 0, 0, 0, 0, 15, 93 

+ po/or.gmo,  15, 93, 88, 0, 0, 0, 0, 15, 93 

+ po/el.po,  15, 93, 67, 0, 0, 1, 3, 16, 96 

+ po/sl_SI.po,  15, 93, 80, 0, 0, 1, 3, 16, 96 

+ po/uk.gmo,  15, 93, 78, 0, 0, 0, 0, 15, 93 

+ po/ru.gmo,  15, 93, 66, 0, 0, 0, 0, 15, 93 

+ po/te.po,  15, 93, 73, 0, 0, 1, 3, 16, 96 

+ po/tr.gmo,  15, 93, 89, 0, 0, 0, 0, 15, 93 

+ po/ta.po,  15, 93, 72, 0, 0, 1, 3, 16, 96 

+ po/pa.po,  15, 93, 97, 0, 0, 1, 3, 16, 96 

+ po/as.po,  15, 93, 82, 0, 0, 1, 3, 16, 96 

+ po/uk.po,  15, 93, 78, 0, 0, 1, 3, 16, 96 

+ po/hu.po,  15, 93, 65, 0, 0, 1, 3, 16, 96 

+ po/pt_BR.gmo,  15, 93, 89, 0, 0, 0, 0, 15, 93 

+ po/nl.gmo,  15, 93, 93, 0, 0, 0, 0, 15, 93 

+ po/mr.po,  15, 93, 66, 0, 0, 1, 3, 16, 96 

+ po/lt.po,  15, 93, 77, 0, 0, 1, 3, 16, 96 

+ po/nb.gmo,  15, 93, 85, 0, 0, 0, 0, 15, 93 

+ po/da.gmo,  15, 93, 90, 0, 0, 0, 0, 15, 93 

+ po/fr.po,  15, 93, 87, 0, 0, 1, 3, 16, 96 

+ po/zh_TW.gmo,  15, 93, 17, 0, 0, 0, 0, 15, 93 

+ po/da.po,  15, 93, 90, 0, 0, 1, 3, 16, 96 

+ po/pt.gmo,  15, 93, 103, 0, 0, 0, 0, 15, 93 

+ po/zh_CN.po,  15, 93, 1, 0, 0, 1, 3, 16, 96 

+ po/tr.po,  15, 93, 89, 0, 0, 1, 3, 16, 96 

+ po/kn.gmo,  15, 93, 68, 0, 0, 0, 0, 15, 93 

@@ -0,0 +1,25 @@ 

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

@@ -0,0 +1,25 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/sv.po,  665, 4420, 4221, 83, 549, 46, 405, 794, 5374 

+ po/sr.gmo,  146, 912, 888, 0, 0, 0, 0, 146, 912 

+ po/nl.po,  146, 912, 923, 419, 2743, 229, 1719, 794, 5374 

+ po/cryptsetup.pot,  0, 0, 0, 0, 0, 794, 5374, 794, 5374 

+ po/fr.po,  794, 5374, 7214, 0, 0, 0, 0, 794, 5374 

+ po/vi.gmo,  146, 912, 1351, 0, 0, 0, 0, 146, 912 

+ po/fi.gmo,  139, 873, 624, 0, 0, 0, 0, 139, 873 

+ po/ru.po,  794, 5374, 5268, 0, 0, 0, 0, 794, 5374 

+ po/pl.po,  794, 5374, 5615, 0, 0, 0, 0, 794, 5374 

+ po/zh_CN.po,  413, 2525, 969, 233, 1652, 148, 1197, 794, 5374 

+ po/nl.gmo,  146, 912, 923, 0, 0, 0, 0, 146, 912 

+ po/es.po,  794, 5374, 7669, 0, 0, 0, 0, 794, 5374 

+ po/cs.po,  794, 5374, 5444, 0, 0, 0, 0, 794, 5374 

+ po/da.po,  665, 4420, 4013, 83, 549, 46, 405, 794, 5374 

+ po/fi.po,  139, 873, 624, 416, 2715, 239, 1786, 794, 5374 

+ po/pt_BR.po,  665, 4420, 5660, 83, 549, 46, 405, 794, 5374 

+ po/id.gmo,  60, 340, 343, 0, 0, 0, 0, 60, 340 

+ po/uk.po,  794, 5374, 5935, 0, 0, 0, 0, 794, 5374 

+ po/id.po,  60, 340, 343, 279, 1733, 455, 3301, 794, 5374 

+ po/de.po,  794, 5374, 5534, 0, 0, 0, 0, 794, 5374 

+ po/sr.po,  146, 912, 888, 404, 2646, 244, 1816, 794, 5374 

+ po/vi.po,  146, 912, 1351, 418, 2737, 230, 1725, 794, 5374 

+ po/it.po,  665, 4420, 5329, 83, 549, 46, 405, 794, 5374 

+ po/ja.po,  794, 5374, 2166, 0, 0, 0, 0, 794, 5374 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,37 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  22, 149, 22, 0, 0, 0, 0, 22, 149 

+ po/pl.po,  22, 149, 132, 0, 0, 0, 0, 22, 149 

+ po/hu.po,  22, 149, 98, 0, 0, 0, 0, 22, 149 

+ po/nl.po,  22, 149, 164, 0, 0, 0, 0, 22, 149 

+ po/id.po,  22, 149, 149, 0, 0, 0, 0, 22, 149 

+ po/cs.po,  22, 149, 129, 0, 0, 0, 0, 22, 149 

+ po/sl.po,  22, 149, 127, 0, 0, 0, 0, 22, 149 

+ po/sv.po,  22, 149, 166, 0, 0, 0, 0, 22, 149 

+ po/pt.po,  22, 149, 153, 0, 0, 0, 0, 22, 149 

+ po/hr.po,  22, 149, 135, 0, 0, 0, 0, 22, 149 

+ po/zh_CN.po,  22, 149, 22, 0, 0, 0, 0, 22, 149 

+ po/ka.po,  16, 90, 59, 0, 0, 6, 59, 22, 149 

+ po/uk.po,  22, 149, 159, 0, 0, 0, 0, 22, 149 

+ po/gl.po,  22, 149, 152, 0, 0, 0, 0, 22, 149 

+ po/fr.po,  22, 149, 168, 0, 0, 0, 0, 22, 149 

+ po/sk.po,  22, 149, 127, 0, 0, 0, 0, 22, 149 

+ po/sr.po,  22, 149, 133, 0, 0, 0, 0, 22, 149 

+ po/ru.po,  22, 149, 135, 0, 0, 0, 0, 22, 149 

+ po/en_GB.po,  22, 149, 149, 0, 0, 0, 0, 22, 149 

+ po/lv.po,  22, 149, 118, 0, 0, 0, 0, 22, 149 

+ po/eo.po,  22, 149, 127, 0, 0, 0, 0, 22, 149 

+ po/it.po,  22, 149, 204, 0, 0, 0, 0, 22, 149 

+ po/ca.po,  22, 149, 208, 0, 0, 0, 0, 22, 149 

+ po/pt_BR.po,  22, 149, 154, 0, 0, 0, 0, 22, 149 

+ po/fi.po,  7, 30, 29, 0, 0, 15, 119, 22, 149 

+ po/es.po,  22, 149, 185, 0, 0, 0, 0, 22, 149 

+ po/ko.po,  22, 149, 101, 0, 0, 0, 0, 22, 149 

+ po/en.po,  22, 149, 149, 0, 0, 0, 0, 22, 149 

+ po/kk.po,  20, 136, 112, 0, 0, 2, 13, 22, 149 

+ po/oc.po,  22, 149, 168, 0, 0, 0, 0, 22, 149 

+ po/ja.po,  22, 149, 22, 0, 0, 0, 0, 22, 149 

+ po/ia.po,  22, 149, 158, 0, 0, 0, 0, 22, 149 

+ po/da.po,  22, 149, 156, 0, 0, 0, 0, 22, 149 

+ po/de.po,  22, 149, 158, 0, 0, 0, 0, 22, 149 

+ po/eu.po,  22, 149, 131, 0, 0, 0, 0, 22, 149 

+ po/tr.po,  22, 149, 168, 0, 0, 0, 0, 22, 149 

@@ -0,0 +1,16 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfa in position 11: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 191: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe3 in position 11: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe5 in position 3: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

@@ -0,0 +1,66 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/de.gmo,  266, 1886, 1862, 0, 0, 0, 0, 266, 1886 

+ po/ru.gmo,  266, 1886, 1855, 0, 0, 0, 0, 266, 1886 

+ po/bg.gmo,  266, 1886, 2185, 0, 0, 0, 0, 266, 1886 

+ po/sr.gmo,  263, 1839, 1747, 0, 0, 0, 0, 263, 1839 

+ po/da.po,  263, 1839, 1794, 3, 47, 0, 0, 266, 1886 

+ po/pt.gmo,  266, 1886, 2039, 0, 0, 0, 0, 266, 1886 

+ po/ru.po,  266, 1886, 1855, 0, 0, 0, 0, 266, 1886 

+ po/fr.po,  266, 1886, 2289, 0, 0, 0, 0, 266, 1886 

+ po/pt_BR.po,  266, 1886, 2207, 0, 0, 0, 0, 266, 1886 

+ po/ja.gmo,  204, 1495, 748, 0, 0, 0, 0, 204, 1495 

+ po/cs.gmo,  266, 1886, 1876, 0, 0, 0, 0, 266, 1886 

+ po/vi.gmo,  266, 1886, 2782, 0, 0, 0, 0, 266, 1886 

+ po/uk.po,  266, 1886, 1950, 0, 0, 0, 0, 266, 1886 

+ po/pl.gmo,  263, 1839, 1828, 0, 0, 0, 0, 263, 1839 

+ po/el.gmo,  263, 1839, 2017, 0, 0, 0, 0, 263, 1839 

+ po/nb.gmo,  266, 1886, 1965, 0, 0, 0, 0, 266, 1886 

+ po/zh_CN.gmo,  266, 1886, 851, 0, 0, 0, 0, 266, 1886 

+ po/es.gmo,  232, 1668, 2009, 0, 0, 0, 0, 232, 1668 

+ po/ca.po,  84, 415, 537, 125, 1085, 57, 386, 266, 1886 

+ po/id.po,  232, 1668, 1635, 23, 164, 11, 54, 266, 1886 

+ po/it.po,  247, 1735, 1962, 14, 138, 5, 13, 266, 1886 

+ po/uk.gmo,  266, 1886, 1950, 0, 0, 0, 0, 266, 1886 

+ po/diffutils.pot,  0, 0, 0, 0, 0, 266, 1886, 266, 1886 

+ po/sr.po,  263, 1839, 1747, 3, 47, 0, 0, 266, 1886 

+ po/sv.gmo,  266, 1886, 1862, 0, 0, 0, 0, 266, 1886 

+ po/nl.po,  266, 1886, 1991, 0, 0, 0, 0, 266, 1886 

+ po/ms.po,  121, 630, 641, 134, 1104, 11, 152, 266, 1886 

+ po/hr.po,  151, 724, 741, 19, 123, 96, 1039, 266, 1886 

+ po/vi.po,  266, 1886, 2782, 0, 0, 0, 0, 266, 1886 

+ po/eo.gmo,  263, 1839, 1776, 0, 0, 0, 0, 263, 1839 

+ po/pt.po,  266, 1886, 2039, 0, 0, 0, 0, 266, 1886 

+ po/gl.gmo,  110, 554, 655, 0, 0, 0, 0, 110, 554 

+ po/he.po,  73, 318, 351, 129, 1094, 64, 474, 266, 1886 

+ po/hu.po,  263, 1839, 1839, 3, 47, 0, 0, 266, 1886 

+ po/nb.po,  266, 1886, 1965, 0, 0, 0, 0, 266, 1886 

+ po/sv.po,  266, 1886, 1862, 0, 0, 0, 0, 266, 1886 

+ po/zh_TW.po,  85, 421, 250, 124, 1079, 57, 386, 266, 1886 

+ po/zh_CN.po,  266, 1886, 851, 0, 0, 0, 0, 266, 1886 

+ po/ro.po,  72, 315, 341, 130, 1097, 64, 474, 266, 1886 

+ po/pt_BR.gmo,  266, 1886, 2207, 0, 0, 0, 0, 266, 1886 

+ po/it.gmo,  247, 1735, 1962, 0, 0, 0, 0, 247, 1735 

+ po/ms.gmo,  121, 630, 641, 0, 0, 0, 0, 121, 630 

+ po/ga.po,  84, 415, 450, 125, 1085, 57, 386, 266, 1886 

+ po/fi.gmo,  143, 788, 691, 0, 0, 0, 0, 143, 788 

+ po/fi.po,  143, 788, 691, 101, 884, 22, 214, 266, 1886 

+ po/el.po,  263, 1839, 2017, 3, 47, 0, 0, 266, 1886 

+ po/da.gmo,  263, 1839, 1794, 0, 0, 0, 0, 263, 1839 

+ po/tr.gmo,  266, 1886, 1811, 0, 0, 0, 0, 266, 1886 

+ po/id.gmo,  232, 1668, 1635, 0, 0, 0, 0, 232, 1668 

+ po/pl.po,  263, 1839, 1828, 3, 47, 0, 0, 266, 1886 

+ po/cs.po,  266, 1886, 1876, 0, 0, 0, 0, 266, 1886 

+ po/de.po,  266, 1886, 1862, 0, 0, 0, 0, 266, 1886 

+ po/es.po,  232, 1668, 2009, 23, 164, 11, 54, 266, 1886 

+ po/ja.po,  204, 1495, 748, 50, 332, 12, 59, 266, 1886 

+ po/hr.gmo,  151, 724, 741, 0, 0, 0, 0, 151, 724 

+ po/eo.po,  263, 1839, 1776, 3, 47, 0, 0, 266, 1886 

+ po/hu.gmo,  263, 1839, 1839, 0, 0, 0, 0, 263, 1839 

+ po/zh_TW.gmo,  85, 421, 250, 0, 0, 0, 0, 85, 421 

+ po/fr.gmo,  266, 1886, 2289, 0, 0, 0, 0, 266, 1886 

+ po/bg.po,  266, 1886, 2185, 0, 0, 0, 0, 266, 1886 

+ po/nl.gmo,  266, 1886, 1991, 0, 0, 0, 0, 266, 1886 

+ po/lv.gmo,  232, 1668, 1554, 0, 0, 0, 0, 232, 1668 

+ po/lv.po,  232, 1668, 1554, 23, 164, 11, 54, 266, 1886 

+ po/tr.po,  266, 1886, 1811, 0, 0, 0, 0, 266, 1886 

+ po/gl.po,  110, 554, 655, 129, 1085, 27, 247, 266, 1886 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/zanata.xml)

+ translate.tools.pocount: ERROR: Failed to guess file type.

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,53 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  675, 3318, 1174, 0, 0, 78, 413, 753, 3731 

+ po/zh_CN.po,  664, 3274, 1291, 3, 52, 86, 405, 753, 3731 

+ po/ur.po,  0, 0, 0, 0, 0, 470, 1748, 470, 1748 

+ po/uk.po,  752, 3726, 3877, 0, 0, 1, 5, 753, 3731 

+ po/tr.po,  559, 2344, 2179, 0, 0, 194, 1387, 753, 3731 

+ po/th.po,  57, 195, 138, 0, 0, 696, 3536, 753, 3731 

+ po/sv.po,  743, 3662, 3582, 0, 0, 10, 69, 753, 3731 

+ po/sr@latin.po,  134, 476, 490, 1, 5, 335, 1267, 470, 1748 

+ po/sr.po,  429, 1715, 1804, 0, 0, 324, 2016, 753, 3731 

+ po/sq.po,  20, 91, 103, 0, 0, 733, 3640, 753, 3731 

+ po/sk.po,  176, 636, 659, 1, 2, 576, 3093, 753, 3731 

+ po/ru.po,  717, 3493, 3418, 0, 0, 36, 238, 753, 3731 

+ po/pt_BR.po,  681, 3336, 3696, 1, 6, 71, 389, 753, 3731 

+ po/pt.po,  440, 1917, 2176, 23, 140, 290, 1674, 753, 3731 

+ po/pl.po,  752, 3726, 3795, 0, 0, 1, 5, 753, 3731 

+ po/pa.po,  540, 1899, 2463, 0, 0, 213, 1832, 753, 3731 

+ po/nl.po,  752, 3726, 3783, 0, 0, 1, 5, 753, 3731 

+ po/nb.po,  92, 294, 330, 0, 0, 661, 3437, 753, 3731 

+ po/ms.po,  8, 22, 22, 0, 0, 745, 3709, 753, 3731 

+ po/mr.po,  63, 157, 181, 0, 0, 690, 3574, 753, 3731 

+ po/ml.po,  16, 50, 57, 1, 4, 736, 3677, 753, 3731 

+ po/lt.po,  218, 711, 659, 1, 2, 534, 3018, 753, 3731 

+ po/ko.po,  400, 2221, 1971, 3, 29, 350, 1481, 753, 3731 

+ po/kk.po,  135, 326, 316, 1, 2, 617, 3403, 753, 3731 

+ po/ka.po,  105, 221, 214, 1, 2, 647, 3508, 753, 3731 

+ po/ja.po,  667, 3284, 1369, 0, 0, 86, 447, 753, 3731 

+ po/it.po,  620, 3061, 3568, 0, 0, 133, 670, 753, 3731 

+ po/id.po,  217, 640, 669, 1, 2, 535, 3089, 753, 3731 

+ po/hu.po,  752, 3726, 3688, 0, 0, 1, 5, 753, 3731 

+ po/hr.po,  0, 0, 0, 0, 0, 753, 3731, 753, 3731 

+ po/hi.po,  0, 0, 0, 0, 0, 470, 1748, 470, 1748 

+ po/he.po,  45, 93, 103, 0, 0, 708, 3638, 753, 3731 

+ po/gu.po,  78, 176, 224, 0, 0, 675, 3555, 753, 3731 

+ po/gd.po,  0, 0, 0, 0, 0, 753, 3731, 753, 3731 

+ po/fur.po,  549, 2546, 3156, 2, 8, 202, 1177, 753, 3731 

+ po/fr.po,  752, 3726, 4723, 0, 0, 1, 5, 753, 3731 

+ po/fil.po,  144, 513, 665, 0, 0, 609, 3218, 753, 3731 

+ po/fi.po,  339, 1142, 1035, 0, 0, 414, 2589, 753, 3731 

+ po/fa.po,  11, 16, 34, 0, 0, 742, 3715, 753, 3731 

+ po/eu.po,  331, 1131, 1111, 0, 0, 422, 2600, 753, 3731 

+ po/es.po,  742, 3652, 4327, 0, 0, 11, 79, 753, 3731 

+ po/eo.po,  537, 2091, 2049, 0, 0, 216, 1640, 753, 3731 

+ po/en_GB.po,  332, 1376, 1376, 0, 0, 421, 2355, 753, 3731 

+ po/el.po,  5, 5, 6, 0, 0, 748, 3726, 753, 3731 

+ po/dnf.pot,  0, 0, 0, 0, 0, 753, 3731, 753, 3731 

+ po/de.po,  670, 3279, 3280, 0, 0, 83, 452, 753, 3731 

+ po/da.po,  748, 3700, 3566, 0, 0, 5, 31, 753, 3731 

+ po/cs.po,  616, 2878, 2813, 0, 0, 137, 853, 753, 3731 

+ po/ca.po,  616, 2829, 3686, 0, 0, 137, 902, 753, 3731 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 753, 3731, 753, 3731 

+ po/bg.po,  381, 1643, 1769, 0, 0, 372, 2088, 753, 3731 

+ po/ar.po,  21, 80, 71, 0, 0, 732, 3651, 753, 3731 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/zanata.xml)

+ translate.tools.pocount: ERROR: Failed to guess file type.

@@ -0,0 +1,27 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  147, 953, 344, 0, 0, 42, 241, 189, 1194 

+ po/zh_CN.po,  136, 770, 299, 0, 0, 53, 424, 189, 1194 

+ po/uk.po,  188, 1180, 1203, 0, 0, 1, 14, 189, 1194 

+ po/tr.po,  65, 347, 307, 0, 0, 124, 847, 189, 1194 

+ po/sv.po,  188, 1180, 1091, 0, 0, 1, 14, 189, 1194 

+ po/sr.po,  50, 237, 240, 0, 0, 139, 957, 189, 1194 

+ po/sq.po,  2, 10, 9, 0, 0, 187, 1184, 189, 1194 

+ po/ru.po,  188, 1180, 1136, 0, 0, 1, 14, 189, 1194 

+ po/pt_BR.po,  133, 746, 845, 0, 0, 56, 448, 189, 1194 

+ po/pl.po,  188, 1180, 1162, 0, 0, 1, 14, 189, 1194 

+ po/pa.po,  26, 103, 130, 0, 0, 163, 1091, 189, 1194 

+ po/ko.po,  116, 652, 594, 0, 0, 73, 542, 189, 1194 

+ po/ja.po,  136, 770, 326, 0, 0, 53, 424, 189, 1194 

+ po/it.po,  131, 726, 866, 1, 13, 57, 455, 189, 1194 

+ po/id.po,  38, 219, 229, 0, 0, 151, 975, 189, 1194 

+ po/hu.po,  188, 1180, 1132, 0, 0, 1, 14, 189, 1194 

+ po/fur.po,  183, 1150, 1415, 0, 0, 6, 44, 189, 1194 

+ po/fr.po,  188, 1180, 1418, 0, 0, 1, 14, 189, 1194 

+ po/fi.po,  40, 164, 139, 0, 0, 149, 1030, 189, 1194 

+ po/eu.po,  5, 5, 5, 0, 0, 184, 1189, 189, 1194 

+ po/es.po,  184, 1133, 1287, 0, 0, 5, 61, 189, 1194 

+ po/dnf-plugins-core.pot,  0, 0, 0, 0, 0, 189, 1194, 189, 1194 

+ po/de.po,  131, 729, 734, 0, 0, 58, 465, 189, 1194 

+ po/da.po,  188, 1180, 1089, 0, 0, 1, 14, 189, 1194 

+ po/cs.po,  127, 708, 676, 0, 0, 62, 486, 189, 1194 

+ po/ca.po,  119, 673, 851, 0, 0, 70, 521, 189, 1194 

empty or binary file added
@@ -0,0 +1,11 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/de.po,  501, 2918, 2721, 0, 0, 0, 0, 501, 2918 

+ po/fr.po,  400, 2284, 3028, 46, 285, 55, 349, 501, 2918 

+ po/id.po,  132, 745, 738, 153, 858, 216, 1315, 501, 2918 

+ po/es.po,  253, 1430, 1605, 186, 1101, 62, 387, 501, 2918 

+ po/it.po,  0, 0, 0, 0, 0, 501, 2918, 501, 2918 

+ po/fi.po,  0, 0, 0, 0, 0, 501, 2918, 501, 2918 

+ po/ro.po,  134, 757, 775, 152, 856, 215, 1305, 501, 2918 

+ po/pt_BR.po,  0, 0, 0, 0, 0, 501, 2918, 501, 2918 

+ po/no.po,  134, 757, 754, 152, 856, 215, 1305, 501, 2918 

+ po/pl.po,  484, 2805, 3128, 11, 70, 6, 43, 501, 2918 

empty or binary file added
@@ -0,0 +1,31 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po-man/zh_CN.po,  292, 4132, 900, 0, 0, 0, 0, 292, 4132 

+ po-man/uk.po,  280, 3838, 3963, 3, 18, 9, 276, 292, 4132 

+ po-man/sv.po,  292, 4132, 3629, 0, 0, 0, 0, 292, 4132 

+ po-man/pt_BR.po,  292, 4132, 4495, 0, 0, 0, 0, 292, 4132 

+ po-man/pl.po,  292, 4132, 3748, 0, 0, 0, 0, 292, 4132 

+ po-man/nl.po,  257, 3253, 2975, 9, 92, 26, 787, 292, 4132 

+ po-man/fr.po,  292, 4132, 4593, 0, 0, 0, 0, 292, 4132 

+ po-man/es.po,  237, 2897, 3205, 13, 195, 42, 1040, 292, 4132 

+ po-man/dos2unix-man.pot,  0, 0, 0, 0, 0, 292, 4132, 292, 4132 

+ po-man/de.po,  292, 4132, 3876, 0, 0, 0, 0, 292, 4132 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  73, 649, 403, 31, 266, 21, 123, 125, 1038 

+ po/zh_CN.po,  125, 1038, 567, 0, 0, 0, 0, 125, 1038 

+ po/vi.po,  124, 928, 1291, 0, 0, 1, 110, 125, 1038 

+ po/uk.po,  120, 993, 1099, 0, 0, 5, 45, 125, 1038 

+ po/sv.po,  125, 1038, 960, 0, 0, 0, 0, 125, 1038 

+ po/sr.po,  120, 993, 969, 0, 0, 5, 45, 125, 1038 

+ po/ru.po,  125, 1038, 1029, 0, 0, 0, 0, 125, 1038 

+ po/pt_BR.po,  125, 1038, 1228, 0, 0, 0, 0, 125, 1038 

+ po/pl.po,  125, 1038, 997, 0, 0, 0, 0, 125, 1038 

+ po/nl.po,  119, 883, 851, 0, 0, 6, 155, 125, 1038 

+ po/nb.po,  125, 1038, 926, 0, 0, 0, 0, 125, 1038 

+ po/ja.po,  120, 993, 691, 0, 0, 5, 45, 125, 1038 

+ po/hu.po,  120, 993, 947, 0, 0, 5, 45, 125, 1038 

+ po/fr.po,  125, 1038, 1225, 0, 0, 0, 0, 125, 1038 

+ po/es.po,  116, 938, 1118, 4, 55, 5, 45, 125, 1038 

+ po/eo.po,  114, 815, 740, 5, 68, 6, 155, 125, 1038 

+ po/dos2unix.pot,  0, 0, 0, 0, 0, 125, 1038, 125, 1038 

+ po/de.po,  120, 993, 987, 0, 0, 5, 45, 125, 1038 

+ po/da.po,  120, 993, 864, 0, 0, 5, 45, 125, 1038 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xb0 in position 9: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/at-expand.pl)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,43 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_CN.po,  1499, 9697, 3127, 49, 444, 18, 119, 1566, 10260 

+ po/zh_CN.gmo,  1499, 9697, 3127, 0, 0, 0, 0, 1499, 9697 

+ po/vi.po,  1547, 10128, 14506, 13, 85, 6, 47, 1566, 10260 

+ po/vi.gmo,  1547, 10128, 14506, 0, 0, 0, 0, 1547, 10128 

+ po/uk.po,  1579, 10359, 11319, 0, 0, 0, 0, 1579, 10359 

+ po/uk.gmo,  1579, 10359, 11319, 0, 0, 0, 0, 1579, 10359 

+ po/tr.po,  672, 3766, 3843, 424, 2918, 470, 3576, 1566, 10260 

+ po/tr.gmo,  672, 3766, 3843, 0, 0, 0, 0, 672, 3766 

+ po/sv.po,  1579, 10359, 10081, 0, 0, 0, 0, 1579, 10359 

+ po/sv.gmo,  1579, 10359, 10081, 0, 0, 0, 0, 1579, 10359 

+ po/sr.po,  1516, 9796, 10467, 35, 360, 15, 104, 1566, 10260 

+ po/sr.gmo,  1516, 9796, 10467, 0, 0, 0, 0, 1516, 9796 

+ po/pt.po,  1579, 10359, 12086, 0, 0, 0, 0, 1579, 10359 

+ po/pt.gmo,  1579, 10359, 12086, 0, 0, 0, 0, 1579, 10359 

+ po/pl.po,  1579, 10359, 10619, 0, 0, 0, 0, 1579, 10359 

+ po/pl.gmo,  1579, 10359, 10619, 0, 0, 0, 0, 1579, 10359 

+ po/nl.po,  1498, 9349, 9806, 28, 437, 53, 573, 1579, 10359 

+ po/nl.gmo,  1466, 9141, 9617, 0, 0, 0, 0, 1466, 9141 

+ po/ms.po,  242, 975, 985, 643, 2979, 694, 6405, 1579, 10359 

+ po/ms.gmo,  242, 975, 985, 0, 0, 0, 0, 242, 975 

+ po/it.po,  607, 3115, 3631, 483, 3282, 476, 3863, 1566, 10260 

+ po/it.gmo,  607, 3115, 3631, 0, 0, 0, 0, 607, 3115 

+ po/id.po,  816, 4875, 4947, 358, 2583, 392, 2802, 1566, 10260 

+ po/id.gmo,  816, 4875, 4947, 0, 0, 0, 0, 816, 4875 

+ po/hu.po,  1516, 9796, 9661, 35, 360, 15, 104, 1566, 10260 

+ po/hu.gmo,  1516, 9796, 9661, 0, 0, 0, 0, 1516, 9796 

+ po/fr.po,  1564, 10240, 13359, 1, 4, 1, 16, 1566, 10260 

+ po/fi.po,  241, 1074, 898, 106, 528, 1219, 8658, 1566, 10260 

+ po/fi.gmo,  241, 1074, 898, 0, 0, 0, 0, 241, 1074 

+ po/es.po,  1579, 10359, 14275, 0, 0, 0, 0, 1579, 10359 

+ po/es.gmo,  1579, 10359, 14275, 0, 0, 0, 0, 1579, 10359 

+ po/eo.po,  918, 5210, 5268, 152, 897, 496, 4153, 1566, 10260 

+ po/eo.gmo,  918, 5210, 5268, 0, 0, 0, 0, 918, 5210 

+ po/e2fsprogs.pot,  0, 0, 0, 0, 0, 1579, 10359, 1579, 10359 

+ po/de.po,  1516, 9796, 10937, 35, 360, 15, 104, 1566, 10260 

+ po/de.gmo,  1516, 9796, 10937, 0, 0, 0, 0, 1516, 9796 

+ po/da.po,  1365, 8206, 8136, 1, 4, 200, 2050, 1566, 10260 

+ po/da.gmo,  1365, 8206, 8136, 0, 0, 0, 0, 1365, 8206 

+ po/cs.po,  1579, 10359, 10734, 0, 0, 0, 0, 1579, 10359 

+ po/cs.gmo,  1579, 10359, 10734, 0, 0, 0, 0, 1579, 10359 

+ po/ca.po,  1253, 7784, 11026, 186, 1409, 127, 1067, 1566, 10260 

+ po/ca.gmo,  1253, 7784, 11026, 0, 0, 0, 0, 1253, 7784 

@@ -0,0 +1,20 @@ 

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

@@ -0,0 +1,9 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/pl.po,  1125, 7486, 7859, 101, 853, 17, 153, 1243, 8492 

+ po/elfutils.pot,  0, 0, 0, 0, 0, 1243, 8492, 1243, 8492 

+ po/uk.po,  1085, 7158, 7796, 128, 1036, 30, 298, 1243, 8492 

+ po/ja.po,  513, 2958, 1529, 248, 1408, 482, 4126, 1243, 8492 

+ po/de.po,  226, 875, 847, 179, 892, 838, 6725, 1243, 8492 

+ po/en@quot.po,  1243, 8492, 8492, 0, 0, 0, 0, 1243, 8492 

+ po/es.po,  899, 5985, 7201, 242, 1677, 102, 830, 1243, 8492 

+ po/en@boldquot.po,  1243, 8492, 8493, 0, 0, 0, 0, 1243, 8492 

@@ -0,0 +1,89 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/lv/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ko/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/zoom.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/view.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/translate.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/slideshow.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/shortcuts.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/rename-multiple.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/print.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/plugins.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/plugin-zoom-width.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/plugin-slideshow-shuffle.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/plugin-send-by-mail.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/plugin-python-console.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/plugin-picasa.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/plugin-fullscreen-double-click.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/plugin-fullscreen-background.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/plugin-exif-digital.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/open.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/license.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Failed to guess file type.

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/formats-view.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/formats-save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/format-change.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/flip-rotate.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/prefs-plugins.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/plugins-all.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/org.gnome.eog.svg)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/org.gnome.eog-symbolic.svg)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/multiple-rename-count.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/multiple-convert.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/edit.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/documentation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/develop.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/desktop-background.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/default.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/copy-paste.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commandline.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/bug-filing.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,138 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/zh_TW/zh_TW.po,  115, 1550, 373, 0, 0, 19, 39, 134, 1589 

+ help/zh_CN/zh_CN.po,  99, 327, 186, 134, 1203, 151, 3019, 384, 4549 

+ help/uk/uk.po,  234, 3273, 2766, 0, 0, 0, 0, 234, 3273 

+ help/th/th.po,  75, 763, 298, 0, 0, 159, 2504, 234, 3267 

+ help/te/te.po,  38, 41, 45, 0, 0, 346, 4497, 384, 4538 

+ help/sv/sv.po,  394, 4784, 4383, 0, 0, 0, 0, 394, 4784 

+ help/sl/sl.po,  430, 5061, 4248, 0, 0, 0, 0, 430, 5061 

+ help/ru/ru.po,  419, 4931, 4187, 0, 0, 11, 130, 430, 5061 

+ help/ro/ro.po,  56, 256, 273, 0, 0, 360, 4620, 416, 4876 

+ help/pt_BR/pt_BR.po,  394, 4784, 5191, 0, 0, 0, 0, 394, 4784 

+ help/pl/pl.po,  394, 4784, 3828, 0, 0, 0, 0, 394, 4784 

+ help/pa/pa.po,  174, 1453, 1506, 0, 0, 60, 1820, 234, 3273 

+ help/oc/oc.po,  69, 162, 193, 0, 0, 165, 3107, 234, 3269 

+ help/ne/ne.po,  19, 35, 42, 118, 415, 257, 4334, 394, 4784 

+ help/lv/lv.po,  398, 4739, 3657, 0, 0, 0, 0, 398, 4739 

+ help/ko/ko.po,  416, 4876, 3439, 0, 0, 0, 0, 416, 4876 

+ help/ja/ja.po,  414, 4866, 885, 2, 10, 0, 0, 416, 4876 

+ help/it/it.po,  234, 3273, 3350, 0, 0, 0, 0, 234, 3273 

+ help/hu/hu.po,  394, 4784, 3948, 0, 0, 0, 0, 394, 4784 

+ help/gl/gl.po,  430, 5061, 5061, 0, 0, 0, 0, 430, 5061 

+ help/fr/fr.po,  396, 4699, 5219, 0, 0, 0, 0, 396, 4699 

+ help/fi/fi.po,  404, 4805, 3018, 2, 31, 10, 40, 416, 4876 

+ help/eu/eu.po,  217, 3053, 2295, 0, 0, 0, 0, 217, 3053 

+ help/es/es.po,  394, 4784, 5082, 0, 0, 0, 0, 394, 4784 

+ help/en_GB/en_GB.po,  234, 3273, 3285, 0, 0, 0, 0, 234, 3273 

+ help/el/el.po,  416, 4876, 4841, 0, 0, 0, 0, 416, 4876 

+ help/de/de.po,  394, 4784, 4566, 0, 0, 0, 0, 394, 4784 

+ help/da/da.po,  17, 60, 57, 40, 244, 337, 4480, 394, 4784 

+ help/cs/cs.po,  394, 4784, 4219, 0, 0, 0, 0, 394, 4784 

+ help/ca/ca.po,  245, 3008, 3119, 100, 1269, 53, 462, 398, 4739 

+ help/ar/ar.po,  228, 2853, 2290, 0, 0, 6, 420, 234, 3273 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  290, 1144, 961, 5, 40, 26, 416, 321, 1600 

+ po/zh_TW.po,  327, 1680, 457, 0, 0, 0, 0, 327, 1680 

+ po/zh_HK.po,  339, 1746, 485, 0, 0, 0, 0, 339, 1746 

+ po/zh_CN.po,  324, 1675, 484, 0, 0, 0, 0, 324, 1675 

+ po/xh.po,  293, 1140, 993, 7, 37, 20, 412, 320, 1589 

+ po/wa.po,  190, 819, 1091, 0, 0, 0, 0, 190, 819 

+ po/vi.po,  327, 1680, 2018, 0, 0, 0, 0, 327, 1680 

+ po/uz@cyrillic.po,  235, 727, 658, 0, 0, 46, 474, 281, 1201 

+ po/uz.po,  235, 727, 658, 0, 0, 46, 474, 281, 1201 

+ po/uk.po,  324, 1672, 1459, 0, 0, 0, 0, 324, 1672 

+ po/ug.po,  327, 1616, 1263, 0, 0, 0, 0, 327, 1616 

+ po/ts.po,  320, 1589, 1886, 0, 0, 0, 0, 320, 1589 

+ po/tr.po,  327, 1680, 1366, 0, 0, 0, 0, 327, 1680 

+ po/tk.po,  60, 143, 139, 24, 79, 66, 335, 150, 557 

+ po/th.po,  323, 1675, 545, 0, 0, 0, 0, 323, 1675 

+ po/tg.po,  292, 1559, 1578, 0, 0, 0, 0, 292, 1559 

+ po/te.po,  327, 1616, 1331, 0, 0, 0, 0, 327, 1616 

+ po/ta.po,  327, 1616, 1334, 0, 0, 0, 0, 327, 1616 

+ po/sv.po,  326, 1688, 1551, 0, 0, 0, 0, 326, 1688 

+ po/sr@latin.po,  327, 1675, 1754, 0, 0, 0, 0, 327, 1675 

+ po/sr.po,  327, 1680, 1758, 0, 0, 0, 0, 327, 1680 

+ po/sq.po,  282, 1223, 1354, 0, 0, 0, 0, 282, 1223 

+ po/sl.po,  327, 1680, 1607, 0, 0, 0, 0, 327, 1680 

+ po/sk.po,  327, 1680, 1575, 0, 0, 0, 0, 327, 1680 

+ po/si.po,  156, 349, 392, 0, 0, 75, 607, 231, 956 

+ po/rw.po,  35, 36, 39, 108, 568, 35, 63, 178, 667 

+ po/ru.po,  327, 1680, 1512, 0, 0, 0, 0, 327, 1680 

+ po/ro.po,  327, 1680, 1841, 0, 0, 0, 0, 327, 1680 

+ po/pt_BR.po,  327, 1680, 1953, 0, 0, 0, 0, 327, 1680 

+ po/pt.po,  323, 1675, 1843, 0, 0, 0, 0, 323, 1675 

+ po/ps.po,  252, 750, 824, 0, 0, 26, 443, 278, 1193 

+ po/pl.po,  326, 1688, 1568, 0, 0, 0, 0, 326, 1688 

+ po/pa.po,  326, 1674, 1767, 0, 0, 0, 0, 326, 1674 

+ po/or.po,  244, 1200, 1193, 53, 242, 7, 81, 304, 1523 

+ po/oc.po,  316, 1606, 1796, 2, 8, 5, 63, 323, 1677 

+ po/nso.po,  149, 554, 815, 2, 5, 7, 55, 158, 614 

+ po/nn.po,  270, 1152, 1146, 0, 0, 0, 0, 270, 1152 

+ po/nl.po,  326, 1688, 1633, 0, 0, 0, 0, 326, 1688 

+ po/ne.po,  230, 802, 797, 76, 431, 20, 455, 326, 1688 

+ po/nds.po,  143, 293, 274, 0, 0, 160, 1220, 303, 1513 

+ po/nb.po,  327, 1675, 1537, 0, 0, 0, 0, 327, 1675 

+ po/my.po,  126, 225, 222, 0, 0, 190, 1400, 316, 1625 

+ po/ms.po,  141, 481, 460, 3, 41, 6, 35, 150, 557 

+ po/mr.po,  339, 1746, 1605, 0, 0, 0, 0, 339, 1746 

+ po/mn.po,  88, 324, 280, 30, 143, 32, 90, 150, 557 

+ po/ml.po,  327, 1675, 1278, 0, 0, 0, 0, 327, 1675 

+ po/mk.po,  323, 1607, 1700, 0, 0, 0, 0, 323, 1607 

+ po/mjw.po,  134, 316, 292, 0, 0, 192, 1372, 326, 1688 

+ po/mg.po,  192, 821, 887, 0, 0, 0, 0, 192, 821 

+ po/mai.po,  180, 676, 752, 0, 0, 105, 579, 285, 1255 

+ po/lv.po,  326, 1688, 1435, 0, 0, 0, 0, 326, 1688 

+ po/lt.po,  326, 1688, 1445, 0, 0, 0, 0, 326, 1688 

+ po/ku.po,  180, 445, 479, 11, 51, 56, 502, 247, 998 

+ po/ks.po,  246, 953, 1020, 4, 16, 28, 224, 278, 1193 

+ po/ko.po,  327, 1680, 1275, 0, 0, 0, 0, 327, 1680 

+ po/kn.po,  327, 1616, 1368, 0, 0, 0, 0, 327, 1616 

+ po/km.po,  324, 1603, 625, 2, 10, 1, 3, 327, 1616 

+ po/kk.po,  327, 1680, 1392, 0, 0, 0, 0, 327, 1680 

+ po/ka.po,  187, 695, 598, 0, 0, 0, 0, 187, 695 

+ po/ja.po,  326, 1688, 487, 0, 0, 0, 0, 326, 1688 

+ po/it.po,  326, 1688, 1708, 0, 0, 0, 0, 326, 1688 

+ po/is.po,  324, 1675, 1589, 0, 0, 0, 0, 324, 1675 

+ po/id.po,  326, 1688, 1608, 0, 0, 0, 0, 326, 1688 

+ po/hu.po,  326, 1688, 1445, 0, 0, 0, 0, 326, 1688 

+ po/hr.po,  326, 1688, 1589, 0, 0, 0, 0, 326, 1688 

+ po/hi.po,  327, 1616, 1857, 0, 0, 0, 0, 327, 1616 

+ po/he.po,  323, 1675, 1577, 0, 0, 0, 0, 323, 1675 

+ po/gu.po,  326, 1615, 1689, 0, 0, 0, 0, 326, 1615 

+ po/gl.po,  327, 1680, 1966, 0, 0, 0, 0, 327, 1680 

+ po/gd.po,  327, 1675, 2167, 0, 0, 0, 0, 327, 1675 

+ po/ga.po,  190, 410, 506, 41, 172, 102, 1083, 333, 1665 

+ po/fy.po,  119, 210, 218, 0, 0, 193, 1395, 312, 1605 

+ po/fur.po,  327, 1680, 1953, 0, 0, 0, 0, 327, 1680 

+ po/fr.po,  326, 1688, 1926, 0, 0, 0, 0, 326, 1688 

+ po/fi.po,  327, 1680, 1255, 0, 0, 0, 0, 327, 1680 

+ po/fa.po,  326, 1688, 1790, 0, 0, 0, 0, 326, 1688 

+ po/eu.po,  326, 1688, 1371, 0, 0, 0, 0, 326, 1688 

+ po/et.po,  288, 1502, 1215, 0, 0, 0, 0, 288, 1502 

+ po/es.po,  327, 1680, 1944, 0, 0, 0, 0, 327, 1680 

+ po/eo.po,  327, 1680, 1587, 0, 0, 0, 0, 327, 1680 

+ po/en_GB.po,  326, 1674, 1706, 0, 0, 0, 0, 326, 1674 

+ po/en_CA.po,  323, 1607, 1610, 0, 0, 0, 0, 323, 1607 

+ po/en@shaw.po,  304, 1523, 1523, 0, 0, 0, 0, 304, 1523 

+ po/el.po,  326, 1688, 1769, 0, 0, 0, 0, 326, 1688 

+ po/dz.po,  270, 1152, 585, 0, 0, 0, 0, 270, 1152 

+ po/de.po,  326, 1688, 1663, 0, 0, 0, 0, 326, 1688 

+ po/da.po,  326, 1688, 1561, 0, 0, 0, 0, 326, 1688 

+ po/cy.po,  187, 706, 807, 0, 0, 0, 0, 187, 706 

+ po/cs.po,  326, 1688, 1571, 0, 0, 0, 0, 326, 1688 

+ po/ca@valencia.po,  327, 1675, 1964, 0, 0, 0, 0, 327, 1675 

+ po/ca.po,  327, 1680, 1975, 0, 0, 0, 0, 327, 1680 

+ po/bs.po,  288, 1502, 1472, 0, 0, 0, 0, 288, 1502 

+ po/br.po,  183, 467, 555, 0, 0, 111, 973, 294, 1440 

+ po/bn_IN.po,  312, 1566, 1757, 0, 0, 0, 0, 312, 1566 

+ po/bn.po,  305, 1527, 1615, 0, 0, 0, 0, 305, 1527 

+ po/bg.po,  327, 1675, 1733, 0, 0, 0, 0, 327, 1675 

+ po/be@latin.po,  285, 1255, 1103, 0, 0, 0, 0, 285, 1255 

+ po/be.po,  327, 1675, 1559, 0, 0, 0, 0, 327, 1675 

+ po/az.po,  87, 324, 297, 28, 141, 35, 92, 150, 557 

+ po/ast.po,  320, 1589, 1753, 0, 0, 0, 0, 320, 1589 

+ po/as.po,  339, 1746, 1770, 0, 0, 0, 0, 339, 1746 

+ po/ar.po,  323, 1539, 1491, 0, 0, 4, 141, 327, 1680 

+ po/an.po,  288, 1502, 1637, 0, 0, 0, 0, 288, 1502 

+ po/am.po,  30, 80, 68, 42, 94, 78, 383, 150, 557 

+ po/af.po,  318, 1404, 1393, 0, 0, 9, 271, 327, 1675 

@@ -0,0 +1,48 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/media/private-browsing-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/media/epiphany-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/media/private-browsing-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/media/epiphany-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/media/private-browsing-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/media/epiphany-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/media/private-browsing-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/media/epiphany-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/media/private-browsing-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/media/epiphany-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/source.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/proxy.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/prob-restore-closed-page.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-privacy.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-passwords.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-mouse-gestures.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-language.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-font.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-downloads.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-css.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/pref-cookies.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/media/web-browser.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/media/web-browser-icon)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/media/private-browsing-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/media/epiphany-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/history.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/history-delete.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/data-personal-data.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/data-passwords.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/data-cookies.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/cookies.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/cert.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/browse-webapps.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/browse-webapps-del.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/browse-web.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/browse-tab.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/browse-private.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/browse-local.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,118 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/sv/sv.po,  185, 2714, 2537, 0, 0, 0, 0, 185, 2714 

+ help/ru/ru.po,  51, 568, 471, 10, 69, 126, 1998, 187, 2635 

+ help/pt_BR/pt_BR.po,  179, 2570, 2618, 0, 0, 0, 0, 179, 2570 

+ help/pl/pl.po,  185, 2714, 1976, 0, 0, 0, 0, 185, 2714 

+ help/ko/ko.po,  179, 2570, 1846, 0, 0, 0, 0, 179, 2570 

+ help/hu/hu.po,  249, 2476, 2064, 0, 0, 0, 0, 249, 2476 

+ help/gl/gl.po,  91, 215, 224, 0, 0, 158, 2261, 249, 2476 

+ help/fur/fur.po,  90, 1152, 1250, 0, 0, 95, 1562, 185, 2714 

+ help/fr/fr.po,  162, 2231, 2377, 0, 0, 0, 0, 162, 2231 

+ help/es/es.po,  165, 2153, 2167, 7, 314, 4, 81, 176, 2548 

+ help/el/el.po,  291, 3054, 3142, 0, 0, 0, 0, 291, 3054 

+ help/de/de.po,  185, 2714, 2506, 0, 0, 0, 0, 185, 2714 

+ help/cs/cs.po,  179, 2570, 2028, 0, 0, 0, 0, 179, 2570 

+ help/ca/ca.po,  185, 2714, 2893, 0, 0, 0, 0, 185, 2714 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  717, 3876, 1088, 0, 0, 0, 0, 717, 3876 

+ po/zh_HK.po,  593, 2564, 827, 0, 0, 0, 0, 593, 2564 

+ po/zh_CN.po,  708, 3808, 1064, 0, 0, 0, 0, 708, 3808 

+ po/yo.po,  479, 1553, 1795, 95, 276, 87, 533, 661, 2362 

+ po/wa.po,  528, 1137, 1371, 0, 0, 237, 1595, 765, 2732 

+ po/vi.po,  495, 1757, 2381, 0, 0, 0, 0, 495, 1757 

+ po/uz@cyrillic.po,  539, 1807, 1653, 4, 17, 121, 1049, 664, 2873 

+ po/uz.po,  681, 2405, 2215, 0, 0, 71, 599, 752, 3004 

+ po/uk.po,  633, 3278, 2764, 0, 0, 0, 0, 633, 3278 

+ po/ug.po,  570, 2461, 2118, 0, 0, 0, 0, 570, 2461 

+ po/tr.po,  776, 4191, 3636, 0, 0, 0, 0, 776, 4191 

+ po/tk.po,  573, 1702, 1598, 0, 0, 207, 1080, 780, 2782 

+ po/th.po,  597, 2618, 969, 0, 0, 0, 0, 597, 2618 

+ po/tg.po,  172, 265, 309, 6, 10, 399, 2219, 577, 2494 

+ po/te.po,  574, 2413, 2121, 0, 0, 0, 0, 574, 2413 

+ po/ta.po,  570, 2461, 2259, 0, 0, 0, 0, 570, 2461 

+ po/sv.po,  776, 4191, 3915, 0, 0, 0, 0, 776, 4191 

+ po/sr@latin.po,  776, 4191, 4245, 0, 0, 0, 0, 776, 4191 

+ po/sr.po,  776, 4191, 4245, 0, 0, 0, 0, 776, 4191 

+ po/sq.po,  755, 3011, 3382, 0, 0, 0, 0, 755, 3011 

+ po/sl.po,  776, 4191, 4001, 0, 0, 0, 0, 776, 4191 

+ po/sk.po,  613, 2652, 2594, 21, 122, 74, 996, 708, 3770 

+ po/si.po,  127, 197, 282, 0, 0, 756, 3864, 883, 4061 

+ po/rw.po,  141, 251, 230, 588, 2753, 109, 216, 838, 3220 

+ po/ru.po,  738, 4012, 3601, 0, 0, 0, 0, 738, 4012 

+ po/ro.po,  776, 4191, 4403, 0, 0, 0, 0, 776, 4191 

+ po/pt_BR.po,  776, 4191, 4709, 0, 0, 0, 0, 776, 4191 

+ po/pt.po,  652, 2826, 2953, 1, 3, 11, 44, 664, 2873 

+ po/ps.po,  219, 401, 412, 8, 12, 502, 2469, 729, 2882 

+ po/pl.po,  776, 4191, 3812, 0, 0, 0, 0, 776, 4191 

+ po/pa.po,  609, 2013, 2217, 2, 54, 52, 804, 663, 2871 

+ po/or.po,  469, 1495, 1695, 40, 184, 79, 860, 588, 2539 

+ po/oc.po,  701, 3593, 4087, 0, 0, 15, 180, 716, 3773 

+ po/nn.po,  753, 3006, 2822, 0, 0, 0, 0, 753, 3006 

+ po/nl.po,  776, 4191, 4213, 0, 0, 0, 0, 776, 4191 

+ po/ne.po,  353, 808, 868, 266, 1036, 157, 2347, 776, 4191 

+ po/nds.po,  468, 1047, 987, 15, 52, 257, 1954, 740, 3053 

+ po/nb.po,  676, 3166, 3010, 1, 14, 35, 577, 712, 3757 

+ po/ms.po,  467, 1537, 1438, 181, 669, 93, 867, 741, 3073 

+ po/mr.po,  574, 2413, 2356, 0, 0, 0, 0, 574, 2413 

+ po/mn.po,  758, 3054, 2643, 0, 0, 0, 0, 758, 3054 

+ po/ml.po,  360, 988, 894, 150, 763, 187, 1848, 697, 3599 

+ po/mk.po,  613, 2199, 2300, 0, 0, 0, 0, 613, 2199 

+ po/mi.po,  98, 114, 166, 76, 122, 591, 2496, 765, 2732 

+ po/mg.po,  830, 3684, 4108, 12, 99, 1, 15, 843, 3798 

+ po/mai.po,  657, 2530, 2728, 0, 0, 83, 501, 740, 3031 

+ po/lv.po,  738, 4012, 3489, 0, 0, 0, 0, 738, 4012 

+ po/lt.po,  776, 4191, 3537, 0, 0, 0, 0, 776, 4191 

+ po/li.po,  406, 1057, 1002, 223, 718, 136, 957, 765, 2732 

+ po/ku.po,  433, 1078, 1126, 40, 165, 280, 1762, 753, 3005 

+ po/ko.po,  776, 4191, 3318, 0, 0, 0, 0, 776, 4191 

+ po/kn.po,  574, 2413, 2097, 0, 0, 0, 0, 574, 2413 

+ po/km.po,  599, 2072, 991, 2, 35, 12, 92, 613, 2199 

+ po/kk.po,  462, 1174, 1142, 0, 0, 255, 2702, 717, 3876 

+ po/ka.po,  729, 3010, 2578, 0, 0, 2, 37, 731, 3047 

+ po/ja.po,  686, 3068, 1062, 0, 0, 90, 1123, 776, 4191 

+ po/it.po,  776, 4191, 4532, 0, 0, 0, 0, 776, 4191 

+ po/is.po,  266, 518, 517, 28, 83, 301, 1988, 595, 2589 

+ po/ig.po,  536, 1949, 2038, 146, 511, 70, 544, 752, 3004 

+ po/id.po,  776, 4191, 3994, 0, 0, 0, 0, 776, 4191 

+ po/hy.po,  367, 1241, 1046, 0, 0, 385, 1760, 752, 3001 

+ po/hu.po,  776, 4191, 3830, 0, 0, 0, 0, 776, 4191 

+ po/hr.po,  776, 4191, 3849, 0, 0, 0, 0, 776, 4191 

+ po/hi.po,  570, 2461, 2958, 0, 0, 0, 0, 570, 2461 

+ po/he.po,  578, 2810, 2649, 0, 0, 0, 0, 578, 2810 

+ po/gv.po,  666, 2764, 3387, 44, 198, 21, 82, 731, 3044 

+ po/gu.po,  499, 1423, 1645, 22, 167, 72, 974, 593, 2564 

+ po/gl.po,  776, 4191, 4751, 0, 0, 0, 0, 776, 4191 

+ po/ga.po,  413, 1062, 1264, 32, 97, 133, 1336, 578, 2495 

+ po/fur.po,  776, 4191, 4949, 0, 0, 0, 0, 776, 4191 

+ po/fr.po,  776, 4191, 5058, 0, 0, 0, 0, 776, 4191 

+ po/fi.po,  714, 3107, 2404, 5, 36, 57, 1048, 776, 4191 

+ po/fa.po,  664, 2873, 3187, 0, 0, 0, 0, 664, 2873 

+ po/eu.po,  776, 4191, 3705, 0, 0, 0, 0, 776, 4191 

+ po/et.po,  496, 1758, 1541, 0, 0, 0, 0, 496, 1758 

+ po/es.po,  776, 4191, 4746, 0, 0, 0, 0, 776, 4191 

+ po/eo.po,  662, 2828, 2638, 1, 3, 0, 0, 663, 2831 

+ po/en_GB.po,  776, 4191, 4215, 0, 0, 0, 0, 776, 4191 

+ po/en_CA.po,  651, 2291, 2298, 0, 0, 0, 0, 651, 2291 

+ po/en@shaw.po,  692, 2644, 2645, 41, 408, 0, 0, 733, 3052 

+ po/el.po,  776, 4191, 4516, 0, 0, 0, 0, 776, 4191 

+ po/dz.po,  918, 4246, 2200, 0, 0, 0, 0, 918, 4246 

+ po/de.po,  545, 3394, 3327, 0, 0, 0, 0, 545, 3394 

+ po/da.po,  778, 4181, 3950, 0, 0, 0, 0, 778, 4181 

+ po/cy.po,  844, 3788, 4130, 0, 0, 0, 0, 844, 3788 

+ po/cs.po,  776, 4191, 4060, 0, 0, 0, 0, 776, 4191 

+ po/ca@valencia.po,  696, 3589, 4224, 0, 0, 0, 0, 696, 3589 

+ po/ca.po,  775, 4087, 4809, 0, 0, 3, 131, 778, 4218 

+ po/bs.po,  596, 2615, 2505, 0, 0, 0, 0, 596, 2615 

+ po/br.po,  574, 1751, 1984, 0, 0, 163, 1250, 737, 3001 

+ po/bn_IN.po,  643, 2291, 2660, 0, 0, 0, 0, 643, 2291 

+ po/bn.po,  352, 1132, 1375, 101, 382, 142, 1075, 595, 2589 

+ po/bg.po,  613, 2698, 2900, 2, 54, 3, 35, 618, 2787 

+ po/be@latin.po,  918, 4246, 3748, 0, 0, 0, 0, 918, 4246 

+ po/be.po,  717, 3876, 3421, 0, 0, 0, 0, 717, 3876 

+ po/az.po,  780, 2782, 2711, 0, 0, 0, 0, 780, 2782 

+ po/ast.po,  741, 3073, 3335, 0, 0, 0, 0, 741, 3073 

+ po/as.po,  594, 2592, 2854, 0, 0, 0, 0, 594, 2592 

+ po/ar.po,  584, 2328, 2196, 0, 0, 32, 454, 616, 2782 

+ po/an.po,  495, 1757, 1920, 0, 0, 0, 0, 495, 1757 

+ po/am.po,  197, 288, 350, 251, 522, 317, 1922, 765, 2732 

+ po/af.po,  604, 1952, 1976, 0, 0, 144, 2088, 748, 4040 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Failed to guess file type.

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,89 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  1442, 7607, 2643, 0, 0, 0, 0, 1442, 7607 

+ po/zh_HK.po,  1076, 5406, 1974, 0, 0, 0, 0, 1076, 5406 

+ po/zh_CN.po,  999, 4444, 1786, 176, 1505, 7, 108, 1182, 6057 

+ po/xh.po,  956, 4657, 4632, 3, 19, 3, 16, 962, 4692 

+ po/wa.po,  651, 866, 953, 554, 1199, 2928, 15005, 4133, 17070 

+ po/vi.po,  1127, 5365, 7655, 0, 0, 36, 302, 1163, 5667 

+ po/uk.po,  1074, 5398, 5219, 0, 0, 0, 0, 1074, 5398 

+ po/ug.po,  1157, 5571, 5390, 0, 0, 6, 96, 1163, 5667 

+ po/tr.po,  1434, 7640, 6394, 0, 0, 0, 0, 1434, 7640 

+ po/th.po,  1129, 5489, 2522, 0, 0, 12, 40, 1141, 5529 

+ po/tg.po,  1, 1, 1, 0, 0, 1163, 5679, 1164, 5680 

+ po/te.po,  1104, 5314, 4640, 10, 79, 6, 70, 1120, 5463 

+ po/ta.po,  1074, 5400, 4899, 0, 0, 0, 0, 1074, 5400 

+ po/sv.po,  1434, 7640, 7217, 0, 0, 0, 0, 1434, 7640 

+ po/sr@latin.po,  1263, 6683, 7068, 0, 0, 0, 0, 1263, 6683 

+ po/sr.po,  1373, 6935, 7274, 21, 244, 49, 429, 1443, 7608 

+ po/sq.po,  1042, 5021, 6248, 0, 0, 0, 0, 1042, 5021 

+ po/sl.po,  1434, 7640, 8007, 0, 0, 0, 0, 1434, 7640 

+ po/sk.po,  1238, 6321, 6617, 4, 33, 10, 80, 1252, 6434 

+ po/si.po,  113, 149, 203, 0, 0, 927, 4891, 1040, 5040 

+ po/rw.po,  57, 68, 73, 702, 4191, 203, 433, 962, 4692 

+ po/ru.po,  1147, 5716, 5689, 0, 0, 0, 0, 1147, 5716 

+ po/ro.po,  1434, 7640, 8865, 0, 0, 0, 0, 1434, 7640 

+ po/pt_BR.po,  1434, 7640, 9167, 0, 0, 0, 0, 1434, 7640 

+ po/pt.po,  1158, 5824, 6731, 0, 0, 0, 0, 1158, 5824 

+ po/pl.po,  1434, 7640, 7794, 0, 0, 0, 0, 1434, 7640 

+ po/pa.po,  808, 3479, 4177, 302, 1734, 332, 2394, 1442, 7607 

+ po/or.po,  1074, 5398, 5609, 0, 0, 0, 0, 1074, 5398 

+ po/oc.po,  1449, 7493, 9115, 0, 0, 0, 0, 1449, 7493 

+ po/nn.po,  1033, 4985, 4924, 0, 0, 1, 3, 1034, 4988 

+ po/nl.po,  1434, 7640, 7581, 0, 0, 0, 0, 1434, 7640 

+ po/ne.po,  703, 2797, 2973, 399, 2116, 150, 1521, 1252, 6434 

+ po/nb.po,  1227, 6088, 6004, 0, 0, 26, 352, 1253, 6440 

+ po/ms.po,  597, 3008, 3200, 211, 1120, 69, 376, 877, 4504 

+ po/mr.po,  1074, 5396, 5486, 0, 0, 0, 0, 1074, 5396 

+ po/mn.po,  202, 585, 581, 139, 737, 536, 3182, 877, 4504 

+ po/ml.po,  699, 2924, 2671, 338, 1691, 215, 1819, 1252, 6434 

+ po/mk.po,  1042, 5021, 5892, 0, 0, 0, 0, 1042, 5021 

+ po/mai.po,  106, 157, 172, 0, 0, 935, 4937, 1041, 5094 

+ po/lv.po,  1264, 6686, 6127, 0, 0, 0, 0, 1264, 6686 

+ po/lt.po,  1434, 7640, 6689, 0, 0, 0, 0, 1434, 7640 

+ po/ku.po,  3, 3, 5, 56, 67, 953, 4796, 1012, 4866 

+ po/ko.po,  1434, 7640, 6668, 0, 0, 0, 0, 1434, 7640 

+ po/kn.po,  1164, 5673, 5091, 0, 0, 0, 0, 1164, 5673 

+ po/km.po,  992, 4693, 2572, 0, 0, 0, 0, 992, 4693 

+ po/kk.po,  532, 1636, 1596, 0, 0, 910, 5971, 1442, 7607 

+ po/ka.po,  160, 295, 287, 519, 3000, 339, 1611, 1018, 4906 

+ po/ja.po,  1023, 5039, 2210, 76, 388, 48, 289, 1147, 5716 

+ po/it.po,  1434, 7640, 8445, 0, 0, 0, 0, 1434, 7640 

+ po/is.po,  314, 766, 686, 46, 154, 737, 4502, 1097, 5422 

+ po/id.po,  1434, 7640, 7526, 0, 0, 0, 0, 1434, 7640 

+ po/hu.po,  1434, 7640, 7331, 0, 0, 0, 0, 1434, 7640 

+ po/hr.po,  887, 4051, 4136, 87, 584, 90, 479, 1064, 5114 

+ po/hi.po,  1074, 5396, 6550, 0, 0, 0, 0, 1074, 5396 

+ po/he.po,  846, 3709, 3883, 0, 0, 117, 875, 963, 4584 

+ po/gu.po,  1163, 5667, 6278, 0, 0, 0, 0, 1163, 5667 

+ po/gl.po,  1434, 7640, 9789, 0, 0, 0, 0, 1434, 7640 

+ po/ga.po,  290, 785, 905, 134, 489, 560, 3285, 984, 4559 

+ po/fur.po,  1433, 7639, 9351, 0, 0, 0, 0, 1433, 7639 

+ po/fr.po,  1434, 7640, 9337, 0, 0, 0, 0, 1434, 7640 

+ po/fi.po,  1045, 4326, 3455, 233, 1488, 171, 1679, 1449, 7493 

+ po/fa.po,  768, 3317, 3977, 147, 945, 133, 803, 1048, 5065 

+ po/eu.po,  1434, 7640, 7132, 0, 0, 0, 0, 1434, 7640 

+ po/et.po,  985, 4681, 4249, 0, 0, 0, 0, 985, 4681 

+ po/es.po,  1434, 7640, 9439, 0, 0, 0, 0, 1434, 7640 

+ po/eo.po,  869, 3144, 3023, 52, 303, 479, 3452, 1400, 6899 

+ po/en_GB.po,  1434, 7640, 7639, 0, 0, 0, 0, 1434, 7640 

+ po/en_CA.po,  1041, 5044, 5044, 0, 0, 0, 0, 1041, 5044 

+ po/en_AU.po,  29, 166, 187, 175, 1000, 673, 3338, 877, 4504 

+ po/en@shaw.po,  716, 3166, 3167, 210, 1238, 0, 0, 926, 4404 

+ po/el.po,  1401, 6930, 7314, 17, 252, 31, 311, 1449, 7493 

+ po/dz.po,  1042, 5021, 2638, 0, 0, 0, 0, 1042, 5021 

+ po/de.po,  1434, 7640, 7565, 0, 0, 0, 0, 1434, 7640 

+ po/da.po,  1434, 7640, 7045, 0, 0, 0, 0, 1434, 7640 

+ po/cy.po,  1018, 4906, 5441, 0, 0, 0, 0, 1018, 4906 

+ po/cs.po,  1434, 7640, 7407, 0, 0, 0, 0, 1434, 7640 

+ po/ca@valencia.po,  1252, 6434, 8901, 0, 0, 0, 0, 1252, 6434 

+ po/ca.po,  1434, 7640, 10167, 0, 0, 0, 0, 1434, 7640 

+ po/bs.po,  1082, 5383, 5461, 0, 0, 0, 0, 1082, 5383 

+ po/bn_IN.po,  1074, 5398, 5905, 0, 0, 0, 0, 1074, 5398 

+ po/bn.po,  997, 4910, 5506, 0, 0, 0, 0, 997, 4910 

+ po/bg.po,  1141, 5529, 6391, 0, 0, 0, 0, 1141, 5529 

+ po/be.po,  1166, 5681, 5467, 0, 0, 0, 0, 1166, 5681 

+ po/az.po,  717, 3438, 3215, 101, 528, 59, 538, 877, 4504 

+ po/ast.po,  982, 4619, 5531, 0, 0, 0, 0, 982, 4619 

+ po/as.po,  1074, 5398, 5855, 0, 0, 0, 0, 1074, 5398 

+ po/ar.po,  755, 3632, 3702, 197, 862, 32, 177, 984, 4671 

+ po/am.po,  73, 99, 104, 137, 672, 667, 3733, 877, 4504 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Failed to guess file type.

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,19 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/bs.po,  4390, 23653, 21639, 939, 3796, 757, 10563, 6086, 38012 

+ po/exiv2.pot,  0, 0, 0, 0, 0, 6086, 38012, 6086, 38012 

+ po/fr.po,  1414, 4976, 5716, 2708, 8431, 1964, 24605, 6086, 38012 

+ po/vi.po,  1133, 3333, 5045, 1979, 5636, 2974, 29043, 6086, 38012 

+ po/nl.po,  1157, 3521, 2933, 0, 0, 4929, 34491, 6086, 38012 

+ po/fi.po,  207, 419, 324, 1783, 4259, 4096, 33334, 6086, 38012 

+ po/sk.po,  2003, 9069, 8406, 2335, 7381, 1748, 21562, 6086, 38012 

+ po/ms.po,  4877, 28305, 25657, 677, 2977, 532, 6730, 6086, 38012 

+ po/ca.po,  4240, 20842, 26987, 0, 0, 1846, 17170, 6086, 38012 

+ po/gl.po,  3879, 18175, 21481, 1098, 4311, 1109, 15526, 6086, 38012 

+ po/ug.po,  2058, 4663, 4763, 1644, 4415, 2384, 28934, 6086, 38012 

+ po/pl.po,  2604, 12391, 11584, 1983, 6457, 1499, 19164, 6086, 38012 

+ po/uk.po,  2102, 7418, 7022, 1764, 5067, 2220, 25527, 6086, 38012 

+ po/ru.po,  729, 3302, 2861, 3196, 9739, 2161, 24971, 6086, 38012 

+ po/pt.po,  1853, 11784, 13364, 2073, 6846, 2160, 19382, 6086, 38012 

+ po/sv.po,  5602, 35017, 27785, 345, 1703, 139, 1292, 6086, 38012 

+ po/de.po,  2563, 13583, 12358, 2068, 6889, 1455, 17540, 6086, 38012 

+ po/es.po,  4297, 26869, 31146, 327, 1668, 1462, 9475, 6086, 38012 

@@ -0,0 +1,27 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/troubleshooting-password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/troubleshooting-archive-open.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/test-integrity.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/supported-formats.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/password-protection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/last-output.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/keyboard-shortcuts.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/file-roller-icon.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/archive-view.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/archive-properties.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/archive-open.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/archive-extract.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/archive-extract-advanced-options.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/archive-edit.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/archive-create.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/make-potfiles-in.py)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,124 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/zh_CN/zh_CN.po,  191, 1742, 267, 2, 8, 0, 0, 193, 1750 

+ help/te/te.po,  28, 192, 158, 0, 0, 3, 143, 31, 335 

+ help/sv/sv.po,  181, 1641, 1477, 0, 0, 0, 0, 181, 1641 

+ help/sl/sl.po,  191, 1830, 1542, 0, 0, 0, 0, 191, 1830 

+ help/ru/ru.po,  191, 1829, 1517, 0, 0, 0, 0, 191, 1829 

+ help/pt_BR/pt_BR.po,  181, 1641, 1746, 0, 0, 0, 0, 181, 1641 

+ help/pl/pl.po,  181, 1641, 1209, 0, 0, 0, 0, 181, 1641 

+ help/ko/ko.po,  181, 1641, 1273, 0, 0, 0, 0, 181, 1641 

+ help/ja/ja.po,  191, 1829, 272, 0, 0, 0, 0, 191, 1829 

+ help/id/id.po,  181, 1641, 1491, 0, 0, 0, 0, 181, 1641 

+ help/hu/hu.po,  181, 1641, 1344, 0, 0, 0, 0, 181, 1641 

+ help/gl/gl.po,  181, 1641, 1622, 0, 0, 0, 0, 181, 1641 

+ help/fr/fr.po,  181, 1641, 1879, 0, 0, 0, 0, 181, 1641 

+ help/fi/fi.po,  166, 1346, 846, 11, 221, 4, 74, 181, 1641 

+ help/es/es.po,  181, 1641, 1728, 0, 0, 0, 0, 181, 1641 

+ help/el/el.po,  181, 1641, 1768, 0, 0, 0, 0, 181, 1641 

+ help/de/de.po,  181, 1641, 1564, 0, 0, 0, 0, 181, 1641 

+ help/da/da.po,  181, 1641, 1522, 0, 0, 0, 0, 181, 1641 

+ help/cs/cs.po,  181, 1641, 1370, 0, 0, 0, 0, 181, 1641 

+ help/ca/ca.po,  194, 1836, 1941, 0, 0, 0, 0, 194, 1836 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  297, 1254, 1058, 5, 20, 33, 245, 335, 1519 

+ po/zh_TW.po,  276, 1207, 335, 0, 0, 0, 0, 276, 1207 

+ po/zh_HK.po,  268, 1195, 326, 0, 0, 0, 0, 268, 1195 

+ po/zh_CN.po,  275, 1204, 350, 0, 0, 0, 0, 275, 1204 

+ po/xh.po,  238, 928, 788, 4, 29, 2, 14, 244, 971 

+ po/vi.po,  276, 1207, 1591, 0, 0, 0, 0, 276, 1207 

+ po/ur.po,  259, 1159, 1332, 0, 0, 0, 0, 259, 1159 

+ po/uk.po,  269, 1181, 1017, 0, 0, 0, 0, 269, 1181 

+ po/ug.po,  292, 1325, 996, 0, 0, 0, 0, 292, 1325 

+ po/tr.po,  276, 1207, 979, 0, 0, 0, 0, 276, 1207 

+ po/tk.po,  194, 702, 608, 13, 77, 37, 192, 244, 971 

+ po/th.po,  267, 1187, 428, 0, 0, 0, 0, 267, 1187 

+ po/tg.po,  268, 1195, 1160, 0, 0, 0, 0, 268, 1195 

+ po/te.po,  268, 1195, 1015, 0, 0, 0, 0, 268, 1195 

+ po/ta.po,  268, 1195, 1039, 0, 0, 0, 0, 268, 1195 

+ po/sv.po,  276, 1207, 1151, 0, 0, 0, 0, 276, 1207 

+ po/sr@latin.po,  275, 1201, 1229, 0, 0, 0, 0, 275, 1201 

+ po/sr@ije.po,  205, 799, 766, 32, 138, 7, 34, 244, 971 

+ po/sr.po,  276, 1207, 1237, 0, 0, 0, 0, 276, 1207 

+ po/sq.po,  270, 1205, 1292, 0, 0, 0, 0, 270, 1205 

+ po/sl.po,  276, 1207, 1152, 0, 0, 0, 0, 276, 1207 

+ po/sk.po,  276, 1207, 1129, 0, 0, 0, 0, 276, 1207 

+ po/si.po,  206, 651, 716, 0, 0, 42, 417, 248, 1068 

+ po/rw.po,  19, 20, 21, 171, 838, 54, 113, 244, 971 

+ po/ru.po,  276, 1207, 1045, 0, 0, 0, 0, 276, 1207 

+ po/ro.po,  276, 1207, 1258, 0, 0, 0, 0, 276, 1207 

+ po/pt_BR.po,  276, 1207, 1327, 0, 0, 0, 0, 276, 1207 

+ po/pt.po,  275, 1206, 1244, 0, 0, 0, 0, 275, 1206 

+ po/ps.po,  270, 1200, 1258, 1, 6, 0, 0, 271, 1206 

+ po/pl.po,  276, 1207, 1130, 0, 0, 0, 0, 276, 1207 

+ po/pa.po,  274, 1200, 1327, 0, 0, 0, 0, 274, 1200 

+ po/or.po,  270, 1198, 1305, 0, 0, 0, 0, 270, 1198 

+ po/oc.po,  270, 1198, 1351, 0, 0, 0, 0, 270, 1198 

+ po/nn.po,  338, 1525, 1451, 1, 1, 0, 0, 339, 1526 

+ po/nl.po,  276, 1207, 1185, 0, 0, 0, 0, 276, 1207 

+ po/ne.po,  196, 616, 610, 49, 272, 23, 307, 268, 1195 

+ po/nds.po,  146, 352, 339, 0, 0, 145, 966, 291, 1318 

+ po/nb.po,  274, 1200, 1148, 0, 0, 0, 0, 274, 1200 

+ po/my.po,  267, 1035, 440, 0, 0, 38, 348, 305, 1383 

+ po/ms.po,  228, 872, 781, 13, 77, 3, 22, 244, 971 

+ po/mr.po,  268, 1195, 1167, 0, 0, 0, 0, 268, 1195 

+ po/mn.po,  203, 785, 658, 34, 152, 7, 34, 244, 971 

+ po/ml.po,  292, 1325, 1034, 0, 0, 0, 0, 292, 1325 

+ po/mk.po,  337, 1548, 1603, 0, 0, 0, 0, 337, 1548 

+ po/mg.po,  226, 886, 935, 31, 117, 6, 175, 263, 1178 

+ po/mai.po,  235, 898, 982, 0, 0, 49, 369, 284, 1267 

+ po/lv.po,  276, 1207, 1029, 0, 0, 0, 0, 276, 1207 

+ po/lt.po,  276, 1207, 973, 0, 0, 0, 0, 276, 1207 

+ po/ku.po,  233, 903, 995, 2, 15, 8, 29, 243, 947 

+ po/ko.po,  276, 1207, 975, 0, 0, 0, 0, 276, 1207 

+ po/kn.po,  268, 1195, 1057, 0, 0, 0, 0, 268, 1195 

+ po/km.po,  334, 1484, 620, 0, 0, 3, 64, 337, 1548 

+ po/kk.po,  276, 1207, 987, 0, 0, 0, 0, 276, 1207 

+ po/ka.po,  239, 952, 760, 0, 0, 0, 0, 239, 952 

+ po/ja.po,  276, 1207, 367, 0, 0, 0, 0, 276, 1207 

+ po/it.po,  276, 1207, 1219, 0, 0, 0, 0, 276, 1207 

+ po/is.po,  275, 1204, 1161, 0, 0, 0, 0, 275, 1204 

+ po/id.po,  276, 1207, 1129, 0, 0, 0, 0, 276, 1207 

+ po/hy.po,  239, 955, 837, 0, 0, 2, 3, 241, 958 

+ po/hu.po,  276, 1207, 1066, 0, 0, 0, 0, 276, 1207 

+ po/hr.po,  275, 1204, 1118, 0, 0, 0, 0, 275, 1204 

+ po/hi.po,  268, 1195, 1409, 0, 0, 0, 0, 268, 1195 

+ po/he.po,  269, 1181, 1086, 0, 0, 0, 0, 269, 1181 

+ po/gu.po,  270, 1198, 1319, 0, 0, 0, 0, 270, 1198 

+ po/gl.po,  276, 1207, 1360, 0, 0, 0, 0, 276, 1207 

+ po/gd.po,  274, 1200, 1551, 0, 0, 0, 0, 274, 1200 

+ po/ga.po,  150, 412, 484, 18, 75, 123, 838, 291, 1325 

+ po/fy.po,  152, 470, 483, 0, 0, 153, 913, 305, 1383 

+ po/fur.po,  276, 1207, 1391, 0, 0, 0, 0, 276, 1207 

+ po/fr.po,  276, 1207, 1404, 0, 0, 0, 0, 276, 1207 

+ po/fi.po,  276, 1207, 920, 0, 0, 0, 0, 276, 1207 

+ po/fa.po,  275, 1204, 1250, 0, 0, 0, 0, 275, 1204 

+ po/eu.po,  275, 1204, 1001, 0, 0, 0, 0, 275, 1204 

+ po/et.po,  276, 1201, 1011, 0, 0, 0, 0, 276, 1201 

+ po/es.po,  275, 1204, 1300, 0, 0, 0, 0, 275, 1204 

+ po/eo.po,  276, 1207, 1146, 0, 0, 0, 0, 276, 1207 

+ po/en_GB.po,  275, 1201, 1228, 0, 0, 0, 0, 275, 1201 

+ po/en_CA.po,  253, 1084, 1093, 0, 0, 0, 0, 253, 1084 

+ po/en@shaw.po,  243, 1043, 1043, 56, 335, 0, 0, 299, 1378 

+ po/el.po,  276, 1207, 1291, 0, 0, 0, 0, 276, 1207 

+ po/dz.po,  259, 1159, 570, 0, 0, 0, 0, 259, 1159 

+ po/de.po,  276, 1207, 1244, 0, 0, 0, 0, 276, 1207 

+ po/da.po,  275, 1204, 1122, 0, 0, 0, 0, 275, 1204 

+ po/cy.po,  242, 957, 941, 0, 0, 0, 0, 242, 957 

+ po/csb.po,  21, 41, 45, 0, 0, 319, 1514, 340, 1555 

+ po/cs.po,  276, 1207, 1116, 0, 0, 0, 0, 276, 1207 

+ po/ca@valencia.po,  274, 1200, 1384, 0, 0, 0, 0, 274, 1200 

+ po/ca.po,  276, 1207, 1394, 0, 0, 0, 0, 276, 1207 

+ po/bs.po,  268, 1195, 1160, 0, 0, 0, 0, 268, 1195 

+ po/br.po,  264, 1007, 1200, 0, 0, 28, 318, 292, 1325 

+ po/bn_IN.po,  268, 1195, 1330, 0, 0, 0, 0, 268, 1195 

+ po/bn.po,  297, 1370, 1466, 0, 0, 0, 0, 297, 1370 

+ po/bg.po,  274, 1200, 1245, 0, 0, 0, 0, 274, 1200 

+ po/be@latin.po,  284, 1267, 1127, 0, 0, 0, 0, 284, 1267 

+ po/be.po,  274, 1200, 1101, 0, 0, 0, 0, 274, 1200 

+ po/az.po,  228, 872, 771, 13, 77, 3, 22, 244, 971 

+ po/ast.po,  335, 1519, 1536, 0, 0, 0, 0, 335, 1519 

+ po/as.po,  270, 1198, 1309, 0, 0, 0, 0, 270, 1198 

+ po/ar.po,  275, 1201, 1101, 0, 0, 0, 0, 275, 1201 

+ po/an.po,  270, 1198, 1238, 0, 0, 0, 0, 270, 1198 

+ po/am.po,  66, 110, 142, 53, 145, 125, 716, 244, 971 

+ po/af.po,  275, 1201, 1278, 0, 0, 0, 0, 275, 1201 

@@ -0,0 +1,42 @@ 

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfa in position 5: invalid start byte

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xb0 in position 2: invalid start byte

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfe in position 8: invalid start byte

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

@@ -0,0 +1,51 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/lt.po,  54, 405, 378, 31, 237, 154, 1926, 239, 2568 

+ po/bg.gmo,  118, 1223, 1378, 0, 0, 0, 0, 118, 1223 

+ po/hu.po,  235, 2545, 2410, 4, 23, 0, 0, 239, 2568 

+ po/sl.po,  235, 2545, 2473, 4, 23, 0, 0, 239, 2568 

+ po/pt.gmo,  123, 1094, 1176, 0, 0, 0, 0, 123, 1094 

+ po/nl.po,  230, 2510, 2419, 6, 38, 3, 20, 239, 2568 

+ po/vi.po,  235, 2545, 3335, 3, 16, 1, 7, 239, 2568 

+ po/be.po,  23, 82, 78, 33, 306, 183, 2180, 239, 2568 

+ po/ko.po,  21, 86, 91, 30, 228, 188, 2254, 239, 2568 

+ po/rw.po,  2, 2, 2, 80, 699, 157, 1867, 239, 2568 

+ po/ms.po,  16, 55, 58, 9, 54, 214, 2459, 239, 2568 

+ po/hr.po,  178, 1856, 1729, 20, 220, 41, 492, 239, 2568 

+ po/fi.po,  230, 2510, 2022, 7, 45, 2, 13, 239, 2568 

+ po/zh_TW.po,  42, 447, 224, 57, 598, 140, 1523, 239, 2568 

+ po/ca.po,  56, 583, 704, 63, 747, 120, 1238, 239, 2568 

+ po/rw.gmo,  2, 2, 2, 0, 0, 0, 0, 2, 2 

+ po/zh_CN.po,  194, 2063, 798, 15, 129, 30, 376, 239, 2568 

+ po/sv.po,  235, 2545, 2420, 3, 16, 1, 7, 239, 2568 

+ po/eo.po,  230, 2510, 2438, 7, 45, 2, 13, 239, 2568 

+ po/lg.gmo,  27, 103, 129, 0, 0, 0, 0, 27, 103 

+ po/uk.po,  235, 2545, 2505, 3, 16, 1, 7, 239, 2568 

+ po/sk.po,  49, 508, 510, 61, 689, 129, 1371, 239, 2568 

+ po/ja.po,  180, 1866, 809, 18, 208, 41, 494, 239, 2568 

+ po/fr.po,  235, 2545, 2880, 4, 23, 0, 0, 239, 2568 

+ po/ga.po,  145, 1474, 1697, 40, 504, 54, 590, 239, 2568 

+ po/tr.po,  222, 2422, 2054, 13, 119, 4, 27, 239, 2568 

+ po/pt.po,  123, 1094, 1176, 61, 877, 55, 597, 239, 2568 

+ po/nb.po,  235, 2545, 2432, 3, 16, 1, 7, 239, 2568 

+ po/pl.po,  235, 2545, 2423, 3, 16, 1, 7, 239, 2568 

+ po/ca.gmo,  56, 583, 704, 0, 0, 0, 0, 56, 583 

+ po/lt.gmo,  54, 405, 378, 0, 0, 0, 0, 54, 405 

+ po/de.po,  230, 2510, 2486, 7, 45, 2, 13, 239, 2568 

+ po/ru.po,  235, 2545, 2424, 3, 16, 1, 7, 239, 2568 

+ po/et.po,  235, 2545, 2079, 3, 16, 1, 7, 239, 2568 

+ po/lg.po,  27, 103, 129, 34, 315, 178, 2150, 239, 2568 

+ po/id.po,  145, 1474, 1477, 40, 504, 54, 590, 239, 2568 

+ po/el.po,  230, 2510, 2568, 6, 38, 3, 20, 239, 2568 

+ po/bg.po,  118, 1223, 1378, 49, 603, 72, 742, 239, 2568 

+ po/zh_TW.gmo,  42, 447, 224, 0, 0, 0, 0, 42, 447 

+ po/es.po,  171, 1768, 2151, 5, 32, 63, 768, 239, 2568 

+ po/ms.gmo,  16, 55, 58, 0, 0, 0, 0, 16, 55 

+ po/sr.po,  235, 2545, 2542, 3, 16, 1, 7, 239, 2568 

+ po/sk.gmo,  49, 508, 510, 0, 0, 0, 0, 49, 508 

+ po/ro.po,  51, 515, 534, 62, 705, 126, 1348, 239, 2568 

+ po/da.po,  235, 2545, 2409, 3, 16, 1, 7, 239, 2568 

+ po/it.po,  222, 2422, 2635, 13, 119, 4, 27, 239, 2568 

+ po/pt_BR.po,  235, 2545, 2918, 3, 16, 1, 7, 239, 2568 

+ po/be.gmo,  23, 82, 78, 0, 0, 0, 0, 23, 82 

+ po/findutils.pot,  0, 0, 0, 0, 0, 239, 2568, 239, 2568 

+ po/cs.po,  235, 2545, 2385, 4, 23, 0, 0, 239, 2568 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,49 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/gu.po,  293, 1496, 1558, 0, 0, 122, 721, 415, 2217 

+ po/zh_CN.po,  415, 2217, 678, 0, 0, 0, 0, 415, 2217 

+ po/en_US.po,  293, 1496, 1496, 67, 314, 55, 407, 415, 2217 

+ po/da.po,  415, 2217, 1939, 0, 0, 0, 0, 415, 2217 

+ po/zh_TW.po,  415, 2217, 620, 0, 0, 0, 0, 415, 2217 

+ po/it.po,  415, 2217, 2309, 0, 0, 0, 0, 415, 2217 

+ po/eu.po,  64, 116, 118, 0, 0, 351, 2101, 415, 2217 

+ po/es.po,  415, 2217, 2442, 0, 0, 0, 0, 415, 2217 

+ po/pt_BR.po,  415, 2217, 2472, 0, 0, 0, 0, 415, 2217 

+ po/tr.po,  235, 760, 733, 0, 0, 180, 1457, 415, 2217 

+ po/sr.po,  297, 1507, 1455, 0, 0, 118, 710, 415, 2217 

+ po/ta.po,  293, 1496, 1238, 0, 0, 122, 721, 415, 2217 

+ po/ko.po,  414, 2209, 1796, 0, 0, 1, 8, 415, 2217 

+ po/hi.po,  293, 1496, 1676, 0, 0, 122, 721, 415, 2217 

+ po/sr@latin.po,  34, 212, 207, 0, 0, 381, 2005, 415, 2217 

+ po/ja.po,  414, 2209, 681, 0, 0, 1, 8, 415, 2217 

+ po/gl.po,  108, 434, 547, 0, 0, 307, 1783, 415, 2217 

+ po/ml.po,  293, 1496, 1168, 0, 0, 122, 721, 415, 2217 

+ po/ia.po,  4, 9, 13, 0, 0, 411, 2208, 415, 2217 

+ po/et.po,  93, 216, 206, 0, 0, 322, 2001, 415, 2217 

+ po/fi.po,  302, 1124, 879, 0, 0, 113, 1093, 415, 2217 

+ po/fr.po,  415, 2217, 2569, 0, 0, 0, 0, 415, 2217 

+ po/nl.po,  415, 2217, 2199, 0, 0, 0, 0, 415, 2217 

+ po/ca.po,  415, 2217, 2631, 0, 0, 0, 0, 415, 2217 

+ po/te.po,  293, 1496, 1267, 0, 0, 122, 721, 415, 2217 

+ po/pa.po,  295, 1496, 1624, 0, 0, 120, 721, 415, 2217 

+ po/de.po,  415, 2217, 2055, 0, 0, 0, 0, 415, 2217 

+ po/or.po,  293, 1496, 1492, 0, 0, 122, 721, 415, 2217 

+ po/uk.po,  415, 2217, 2139, 0, 0, 0, 0, 415, 2217 

+ po/ru.po,  415, 2217, 1853, 0, 0, 0, 0, 415, 2217 

+ po/hu.po,  415, 2217, 2069, 0, 0, 0, 0, 415, 2217 

+ po/el.po,  125, 584, 647, 0, 0, 290, 1633, 415, 2217 

+ po/pl.po,  415, 2217, 2094, 0, 0, 0, 0, 415, 2217 

+ po/kn.po,  293, 1496, 1253, 0, 0, 122, 721, 415, 2217 

+ po/ka.po,  82, 180, 170, 0, 0, 333, 2037, 415, 2217 

+ po/pt.po,  290, 1453, 1544, 0, 0, 125, 764, 415, 2217 

+ po/ar.po,  415, 2217, 1964, 0, 0, 0, 0, 415, 2217 

+ po/en_GB.po,  203, 819, 819, 0, 0, 212, 1398, 415, 2217 

+ po/id.po,  36, 135, 137, 0, 0, 379, 2082, 415, 2217 

+ po/lt.po,  304, 1162, 1054, 0, 0, 111, 1055, 415, 2217 

+ po/sq.po,  86, 141, 152, 0, 0, 329, 2076, 415, 2217 

+ po/sv.po,  415, 2217, 2024, 0, 0, 0, 0, 415, 2217 

+ po/as.po,  293, 1496, 1515, 0, 0, 122, 721, 415, 2217 

+ po/sk.po,  415, 2217, 2029, 0, 0, 0, 0, 415, 2217 

+ po/mr.po,  293, 1496, 1407, 0, 0, 122, 721, 415, 2217 

+ po/bg.po,  134, 622, 664, 0, 0, 281, 1595, 415, 2217 

+ po/bn_IN.po,  293, 1496, 1517, 0, 0, 122, 721, 415, 2217 

+ po/cs.po,  415, 2217, 2026, 0, 0, 0, 0, 415, 2217 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,63 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  130, 1056, 263, 0, 0, 0, 0, 130, 1056 

+ po/zh_HK.po,  123, 1003, 257, 0, 0, 0, 0, 123, 1003 

+ po/zh_CN.po,  130, 1056, 224, 0, 0, 0, 0, 130, 1056 

+ po/vi.po,  130, 1056, 1422, 0, 0, 0, 0, 130, 1056 

+ po/uk.po,  114, 947, 843, 0, 0, 0, 0, 114, 947 

+ po/ug.po,  111, 858, 778, 0, 0, 0, 0, 111, 858 

+ po/tr.po,  130, 1056, 881, 0, 0, 0, 0, 130, 1056 

+ po/tg.po,  6, 6, 6, 0, 0, 105, 852, 111, 858 

+ po/te.po,  123, 1003, 812, 0, 0, 0, 0, 123, 1003 

+ po/ta.po,  123, 1003, 886, 0, 0, 0, 0, 123, 1003 

+ po/sv.po,  130, 1056, 997, 0, 0, 0, 0, 130, 1056 

+ po/sr@latin.po,  130, 1056, 1072, 0, 0, 0, 0, 130, 1056 

+ po/sr.po,  130, 1056, 1071, 0, 0, 0, 0, 130, 1056 

+ po/sl.po,  130, 1056, 1022, 0, 0, 0, 0, 130, 1056 

+ po/sk.po,  130, 1056, 1093, 0, 0, 0, 0, 130, 1056 

+ po/ru.po,  130, 1056, 995, 0, 0, 0, 0, 130, 1056 

+ po/ro.po,  130, 1056, 1260, 0, 0, 0, 0, 130, 1056 

+ po/pt_BR.po,  130, 1056, 1252, 0, 0, 0, 0, 130, 1056 

+ po/pt.po,  130, 1056, 1181, 0, 0, 0, 0, 130, 1056 

+ po/pl.po,  130, 1056, 1067, 0, 0, 0, 0, 130, 1056 

+ po/pa.po,  123, 1003, 1122, 0, 0, 0, 0, 123, 1003 

+ po/or.po,  123, 1003, 952, 0, 0, 0, 0, 123, 1003 

+ po/oc.po,  130, 1056, 1335, 0, 0, 0, 0, 130, 1056 

+ po/nl.po,  130, 1056, 1018, 0, 0, 0, 0, 130, 1056 

+ po/ne.po,  57, 365, 334, 17, 100, 56, 591, 130, 1056 

+ po/nb.po,  115, 811, 784, 0, 0, 15, 245, 130, 1056 

+ po/mr.po,  123, 1003, 876, 0, 0, 0, 0, 123, 1003 

+ po/ml.po,  130, 1056, 828, 0, 0, 0, 0, 130, 1056 

+ po/lv.po,  130, 1056, 925, 0, 0, 0, 0, 130, 1056 

+ po/lt.po,  130, 1056, 868, 0, 0, 0, 0, 130, 1056 

+ po/ko.po,  130, 1056, 909, 0, 0, 0, 0, 130, 1056 

+ po/kn.po,  123, 1003, 845, 0, 0, 0, 0, 123, 1003 

+ po/kk.po,  8, 10, 14, 0, 0, 122, 1046, 130, 1056 

+ po/ja.po,  109, 843, 315, 0, 0, 1, 8, 110, 851 

+ po/it.po,  130, 1056, 1217, 0, 0, 0, 0, 130, 1056 

+ po/id.po,  130, 1056, 1026, 0, 0, 0, 0, 130, 1056 

+ po/hu.po,  130, 1056, 953, 0, 0, 0, 0, 130, 1056 

+ po/hr.po,  130, 1056, 955, 0, 0, 0, 0, 130, 1056 

+ po/hi.po,  123, 1003, 1165, 0, 0, 0, 0, 123, 1003 

+ po/he.po,  80, 517, 558, 0, 0, 30, 334, 110, 851 

+ po/gu.po,  123, 1003, 1052, 0, 0, 0, 0, 123, 1003 

+ po/gl.po,  130, 1056, 1366, 0, 0, 0, 0, 130, 1056 

+ po/fur.po,  130, 1056, 1319, 0, 0, 0, 0, 130, 1056 

+ po/fr.po,  130, 1056, 1341, 0, 0, 0, 0, 130, 1056 

+ po/fi.po,  55, 328, 288, 7, 48, 68, 680, 130, 1056 

+ po/fa.po,  130, 1056, 1113, 0, 0, 0, 0, 130, 1056 

+ po/eu.po,  130, 1056, 965, 0, 0, 0, 0, 130, 1056 

+ po/es.po,  130, 1056, 1344, 0, 0, 0, 0, 130, 1056 

+ po/eo.po,  55, 330, 323, 6, 37, 69, 689, 130, 1056 

+ po/en_GB.po,  130, 1056, 1056, 0, 0, 0, 0, 130, 1056 

+ po/el.po,  130, 1056, 1177, 0, 0, 0, 0, 130, 1056 

+ po/de.po,  130, 1056, 1058, 0, 0, 0, 0, 130, 1056 

+ po/da.po,  130, 1056, 980, 0, 0, 0, 0, 130, 1056 

+ po/cs.po,  130, 1056, 1049, 0, 0, 0, 0, 130, 1056 

+ po/ca@valencia.po,  130, 1056, 1416, 0, 0, 0, 0, 130, 1056 

+ po/ca.po,  130, 1056, 1416, 0, 0, 0, 0, 130, 1056 

+ po/bs.po,  124, 1011, 953, 0, 0, 0, 0, 124, 1011 

+ po/bn_IN.po,  123, 1003, 1004, 0, 0, 0, 0, 123, 1003 

+ po/bg.po,  110, 851, 1037, 0, 0, 0, 0, 110, 851 

+ po/be.po,  130, 1056, 1001, 0, 0, 0, 0, 130, 1056 

+ po/as.po,  123, 1003, 966, 0, 0, 0, 0, 123, 1003 

+ po/ar.po,  13, 41, 40, 0, 0, 96, 810, 109, 851 

@@ -0,0 +1,26 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-conf/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

@@ -0,0 +1,8 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po-conf/zh_CN.gmo,  29, 157, 66, 0, 0, 0, 0, 29, 157 

+ po-conf/fontconfig-conf.pot,  0, 0, 0, 0, 0, 29, 157, 29, 157 

+ po-conf/zh_CN.po,  29, 157, 66, 0, 0, 0, 0, 29, 157 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_CN.gmo,  106, 756, 375, 0, 0, 0, 0, 106, 756 

+ po/fontconfig.pot,  0, 0, 0, 0, 0, 106, 756, 106, 756 

+ po/zh_CN.po,  106, 756, 375, 0, 0, 0, 0, 106, 756 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,72 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/pt_BR.po,  57, 419, 452, 0, 0, 0, 0, 57, 419 

+ po/ja.po,  57, 419, 79, 0, 0, 0, 0, 57, 419 

+ po/da.po,  57, 419, 347, 0, 0, 0, 0, 57, 419 

+ po/nl.po,  57, 419, 412, 0, 0, 0, 0, 57, 419 

+ po/he.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/sq.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/tr.po,  57, 419, 352, 0, 0, 0, 0, 57, 419 

+ po/mr.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/zh_CN.po,  57, 419, 90, 0, 0, 0, 0, 57, 419 

+ po/de.po,  57, 419, 454, 0, 0, 0, 0, 57, 419 

+ po/be.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/it.po,  57, 419, 376, 0, 0, 0, 0, 57, 419 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/te.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/vi.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/cs.po,  57, 419, 384, 0, 0, 0, 0, 57, 419 

+ po/ka.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/ast.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/kk.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/eo.po,  23, 151, 144, 0, 0, 34, 268, 57, 419 

+ po/hr.po,  57, 419, 395, 0, 0, 0, 0, 57, 419 

+ po/cy.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/bg.po,  25, 163, 164, 0, 0, 32, 256, 57, 419 

+ po/ms.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/hi.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/oc.po,  57, 419, 411, 0, 0, 0, 0, 57, 419 

+ po/sr.po,  57, 419, 408, 0, 0, 0, 0, 57, 419 

+ po/az.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/pt.po,  57, 419, 435, 0, 0, 0, 0, 57, 419 

+ po/ko.po,  57, 419, 259, 0, 0, 0, 0, 57, 419 

+ po/ro.po,  23, 151, 183, 0, 0, 34, 268, 57, 419 

+ po/pl.po,  57, 419, 398, 0, 0, 0, 0, 57, 419 

+ po/th.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/ga.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/ta.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/zh_TW.po,  57, 419, 90, 0, 0, 0, 0, 57, 419 

+ po/lv.po,  57, 419, 359, 0, 0, 0, 0, 57, 419 

+ po/sk.po,  57, 419, 337, 0, 0, 0, 0, 57, 419 

+ po/or.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/eu.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/ar.po,  23, 151, 113, 0, 0, 34, 268, 57, 419 

+ po/fur.po,  57, 419, 577, 0, 0, 0, 0, 57, 419 

+ po/lt.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/fi.po,  28, 205, 127, 0, 0, 29, 214, 57, 419 

+ po/fo.po,  23, 151, 138, 0, 0, 34, 268, 57, 419 

+ po/ca.po,  57, 419, 417, 0, 0, 0, 0, 57, 419 

+ po/en_GB.po,  57, 419, 419, 0, 0, 0, 0, 57, 419 

+ po/fa.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/ca@valencia.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/id.po,  57, 419, 403, 0, 0, 0, 0, 57, 419 

+ po/kn.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/ml.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/wa.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/sr@latin.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/el.po,  57, 419, 500, 0, 0, 0, 0, 57, 419 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/sv.po,  57, 419, 344, 0, 0, 0, 0, 57, 419 

+ po/uk.po,  57, 419, 412, 0, 0, 0, 0, 57, 419 

+ po/et.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/nb.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/gu.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/es.po,  57, 419, 461, 0, 0, 0, 0, 57, 419 

+ po/pa.po,  28, 183, 193, 0, 0, 29, 236, 57, 419 

+ po/as.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/gl.po,  57, 419, 515, 0, 0, 0, 0, 57, 419 

+ po/nn.po,  0, 0, 0, 0, 0, 57, 419, 57, 419 

+ po/ia.po,  57, 419, 448, 0, 0, 0, 0, 57, 419 

+ po/fr.po,  57, 419, 435, 0, 0, 0, 0, 57, 419 

+ po/hu.po,  57, 419, 364, 0, 0, 0, 0, 57, 419 

+ po/sl.po,  57, 419, 367, 0, 0, 0, 0, 57, 419 

+ po/ru.po,  57, 419, 393, 0, 0, 0, 0, 57, 419 

@@ -0,0 +1,20 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/test-deps)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/make-images.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/make-images)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/its/appdata.loc)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/its/appdata.its)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/test-deps)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/make-images.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/make-images)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/its/appdata.loc)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/its/appdata.its)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,70 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  228, 1109, 308, 0, 0, 0, 0, 228, 1109 

+ po/zh_CN.po,  295, 1445, 393, 0, 0, 0, 0, 295, 1445 

+ po/uk.po,  295, 1445, 1497, 0, 0, 0, 0, 295, 1445 

+ po/tr.po,  53, 164, 183, 0, 0, 0, 0, 53, 164 

+ po/sv.po,  240, 1159, 1152, 0, 0, 0, 0, 240, 1159 

+ po/sr.po,  180, 718, 715, 0, 0, 0, 0, 180, 718 

+ po/sk.po,  90, 380, 383, 0, 0, 0, 0, 90, 380 

+ po/ru.po,  295, 1445, 1404, 0, 0, 0, 0, 295, 1445 

+ po/pt_BR.po,  295, 1445, 1674, 0, 0, 0, 0, 295, 1445 

+ po/pl.po,  295, 1445, 1498, 0, 0, 0, 0, 295, 1445 

+ po/oc.po,  35, 93, 129, 0, 0, 0, 0, 35, 93 

+ po/nl.po,  102, 433, 463, 0, 0, 0, 0, 102, 433 

+ po/lt.po,  274, 1201, 1263, 0, 0, 0, 0, 274, 1201 

+ po/ky.po,  13, 15, 15, 0, 0, 0, 0, 13, 15 

+ po/ko.po,  295, 1445, 1195, 0, 0, 0, 0, 295, 1445 

+ po/kk.po,  8, 8, 9, 0, 0, 0, 0, 8, 8 

+ po/it.po,  295, 1445, 1592, 0, 0, 0, 0, 295, 1445 

+ po/id.po,  180, 718, 707, 0, 0, 0, 0, 180, 718 

+ po/hu.po,  282, 1361, 1227, 0, 0, 0, 0, 282, 1361 

+ po/hr.po,  293, 1439, 1383, 0, 0, 0, 0, 293, 1439 

+ po/hi.po,  17, 82, 109, 0, 0, 0, 0, 17, 82 

+ po/he.po,  24, 96, 91, 0, 0, 0, 0, 24, 96 

+ po/fur.po,  158, 650, 856, 0, 0, 0, 0, 158, 650 

+ po/fr.po,  17, 82, 117, 0, 0, 0, 0, 17, 82 

+ po/fi.po,  295, 1445, 1080, 0, 0, 0, 0, 295, 1445 

+ po/eu.po,  10, 12, 13, 0, 0, 0, 0, 10, 12 

+ po/eo.po,  19, 24, 23, 0, 0, 0, 0, 19, 24 

+ po/en_GB.po,  245, 1195, 1195, 0, 0, 0, 0, 245, 1195 

+ po/de.po,  212, 993, 939, 0, 0, 0, 0, 212, 993 

+ po/da.po,  295, 1445, 1352, 0, 0, 0, 0, 295, 1445 

+ po/cs.po,  228, 1109, 1120, 0, 0, 0, 0, 228, 1109 

+ po/ca.po,  295, 1445, 1875, 0, 0, 0, 0, 295, 1445 

+ po/ast.po,  15, 16, 17, 0, 0, 0, 0, 15, 16 

+ po/af.po,  94, 205, 242, 0, 0, 0, 0, 94, 205 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  228, 1109, 308, 0, 0, 0, 0, 228, 1109 

+ po/zh_CN.po,  295, 1445, 393, 0, 0, 0, 0, 295, 1445 

+ po/uk.po,  295, 1445, 1497, 0, 0, 0, 0, 295, 1445 

+ po/tr.po,  53, 164, 183, 0, 0, 0, 0, 53, 164 

+ po/sv.po,  240, 1159, 1152, 0, 0, 0, 0, 240, 1159 

+ po/sr.po,  180, 718, 715, 0, 0, 0, 0, 180, 718 

+ po/sk.po,  90, 380, 383, 0, 0, 0, 0, 90, 380 

+ po/ru.po,  295, 1445, 1404, 0, 0, 0, 0, 295, 1445 

+ po/pt_BR.po,  295, 1445, 1674, 0, 0, 0, 0, 295, 1445 

+ po/pl.po,  295, 1445, 1498, 0, 0, 0, 0, 295, 1445 

+ po/oc.po,  35, 93, 129, 0, 0, 0, 0, 35, 93 

+ po/nl.po,  102, 433, 463, 0, 0, 0, 0, 102, 433 

+ po/lt.po,  274, 1201, 1263, 0, 0, 0, 0, 274, 1201 

+ po/ky.po,  13, 15, 15, 0, 0, 0, 0, 13, 15 

+ po/ko.po,  295, 1445, 1195, 0, 0, 0, 0, 295, 1445 

+ po/kk.po,  8, 8, 9, 0, 0, 0, 0, 8, 8 

+ po/it.po,  295, 1445, 1592, 0, 0, 0, 0, 295, 1445 

+ po/id.po,  180, 718, 707, 0, 0, 0, 0, 180, 718 

+ po/hu.po,  282, 1361, 1227, 0, 0, 0, 0, 282, 1361 

+ po/hr.po,  293, 1439, 1383, 0, 0, 0, 0, 293, 1439 

+ po/hi.po,  17, 82, 109, 0, 0, 0, 0, 17, 82 

+ po/he.po,  24, 96, 91, 0, 0, 0, 0, 24, 96 

+ po/fur.po,  158, 650, 856, 0, 0, 0, 0, 158, 650 

+ po/fr.po,  17, 82, 117, 0, 0, 0, 0, 17, 82 

+ po/fi.po,  295, 1445, 1080, 0, 0, 0, 0, 295, 1445 

+ po/eu.po,  10, 12, 13, 0, 0, 0, 0, 10, 12 

+ po/eo.po,  19, 24, 23, 0, 0, 0, 0, 19, 24 

+ po/en_GB.po,  245, 1195, 1195, 0, 0, 0, 0, 245, 1195 

+ po/de.po,  212, 993, 939, 0, 0, 0, 0, 212, 993 

+ po/da.po,  295, 1445, 1352, 0, 0, 0, 0, 295, 1445 

+ po/cs.po,  228, 1109, 1120, 0, 0, 0, 0, 228, 1109 

+ po/ca.po,  295, 1445, 1875, 0, 0, 0, 0, 295, 1445 

+ po/ast.po,  15, 16, 17, 0, 0, 0, 0, 15, 16 

+ po/af.po,  94, 205, 242, 0, 0, 0, 0, 94, 205 

@@ -0,0 +1,19 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe6 in position 27: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe8 in position 16: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf2 in position 16: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog.1)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/README)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog.0)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

@@ -0,0 +1,35 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/id.gmo,  628, 3928, 3962, 0, 0, 0, 0, 628, 3928 

+ po/pt_BR.gmo,  766, 4925, 5620, 0, 0, 0, 0, 766, 4925 

+ po/zh_CN.gmo,  766, 4925, 1594, 0, 0, 0, 0, 766, 4925 

+ po/ms.po,  5, 36, 32, 6, 41, 759, 4922, 770, 4999 

+ po/zh_CN.po,  766, 4925, 1594, 3, 63, 1, 11, 770, 4999 

+ po/sv.po,  766, 4925, 5000, 3, 63, 1, 11, 770, 4999 

+ po/de.gmo,  706, 4499, 4996, 0, 0, 0, 0, 706, 4499 

+ po/pl.po,  534, 3253, 3372, 102, 721, 134, 1025, 770, 4999 

+ po/nl.gmo,  655, 4131, 4159, 0, 0, 0, 0, 655, 4131 

+ po/fi.gmo,  691, 4386, 3758, 0, 0, 0, 0, 691, 4386 

+ po/ko.gmo,  766, 4925, 4658, 0, 0, 0, 0, 766, 4925 

+ po/es.gmo,  707, 4507, 5415, 0, 0, 0, 0, 707, 4507 

+ po/pt_BR.po,  766, 4925, 5620, 3, 63, 1, 11, 770, 4999 

+ po/id.po,  628, 3928, 3962, 107, 764, 35, 307, 770, 4999 

+ po/fr.gmo,  766, 4925, 5723, 0, 0, 0, 0, 766, 4925 

+ po/vi.po,  707, 4507, 6930, 45, 324, 18, 168, 770, 4999 

+ po/pt.po,  766, 4925, 5299, 3, 63, 1, 11, 770, 4999 

+ po/gawk.pot,  0, 0, 0, 0, 0, 770, 4999, 770, 4999 

+ po/ms.gmo,  5, 36, 32, 0, 0, 0, 0, 5, 36 

+ po/ja.gmo,  383, 2475, 1260, 0, 0, 0, 0, 383, 2475 

+ po/ko.po,  766, 4925, 4658, 3, 63, 1, 11, 770, 4999 

+ po/pl.gmo,  534, 3253, 3372, 0, 0, 0, 0, 534, 3253 

+ po/sv.gmo,  766, 4925, 5000, 0, 0, 0, 0, 766, 4925 

+ po/es.po,  707, 4507, 5415, 45, 324, 18, 168, 770, 4999 

+ po/pt.gmo,  766, 4925, 5299, 0, 0, 0, 0, 766, 4925 

+ po/fi.po,  691, 4386, 3758, 55, 389, 24, 224, 770, 4999 

+ po/da.po,  444, 2775, 2778, 114, 739, 212, 1485, 770, 4999 

+ po/fr.po,  766, 4925, 5723, 3, 63, 1, 11, 770, 4999 

+ po/de.po,  706, 4499, 4996, 46, 332, 18, 168, 770, 4999 

+ po/ja.po,  383, 2475, 1260, 143, 906, 244, 1618, 770, 4999 

+ po/vi.gmo,  707, 4507, 6930, 0, 0, 0, 0, 707, 4507 

+ po/ca.po,  650, 4098, 5304, 91, 648, 29, 253, 770, 4999 

+ po/nl.po,  655, 4131, 4159, 85, 561, 30, 307, 770, 4999 

+ po/it.po,  764, 4917, 5497, 5, 71, 1, 11, 770, 4999 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

@@ -0,0 +1,29 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/cs.po,  30, 127, 133, 0, 0, 0, 0, 30, 127 

+ po/eu.po,  33, 159, 159, 0, 0, 0, 0, 33, 159 

+ po/hu.po,  30, 127, 134, 0, 0, 0, 0, 30, 127 

+ po/zh_CN.po,  32, 154, 72, 0, 0, 0, 0, 32, 154 

+ po/nb.po,  20, 76, 80, 0, 0, 12, 78, 32, 154 

+ po/sr.po,  34, 162, 173, 0, 0, 0, 0, 34, 162 

+ po/gl.po,  32, 154, 202, 0, 0, 0, 0, 32, 154 

+ po/sr@latin.po,  34, 162, 173, 0, 0, 0, 0, 34, 162 

+ po/lt.po,  34, 162, 148, 0, 0, 0, 0, 34, 162 

+ po/da.po,  34, 162, 168, 0, 0, 0, 0, 34, 162 

+ po/oc.po,  33, 159, 200, 0, 0, 0, 0, 33, 159 

+ po/ru.po,  34, 162, 164, 0, 0, 0, 0, 34, 162 

+ po/fr.po,  30, 127, 161, 0, 0, 0, 0, 30, 127 

+ po/tr.po,  34, 162, 147, 0, 0, 0, 0, 34, 162 

+ po/es.po,  30, 127, 159, 0, 0, 0, 0, 30, 127 

+ po/pt_BR.po,  30, 127, 147, 0, 0, 0, 0, 30, 127 

+ po/fur.po,  34, 162, 198, 0, 0, 0, 0, 34, 162 

+ po/pl.po,  30, 127, 140, 0, 0, 0, 0, 30, 127 

+ po/id.po,  30, 127, 137, 0, 0, 0, 0, 30, 127 

+ po/sl.po,  34, 162, 181, 0, 0, 0, 0, 34, 162 

+ po/tg.po,  32, 152, 171, 0, 0, 0, 0, 32, 152 

+ po/bs.po,  32, 154, 150, 0, 0, 0, 0, 32, 154 

+ po/el.po,  34, 162, 178, 0, 0, 0, 0, 34, 162 

+ po/lv.po,  32, 154, 146, 0, 0, 0, 0, 32, 154 

+ po/de.po,  30, 127, 141, 0, 0, 0, 0, 30, 127 

+ po/pt.po,  34, 162, 179, 0, 0, 0, 0, 34, 162 

+ po/sv.po,  30, 127, 126, 0, 0, 0, 0, 30, 127 

+ po/fi.po,  24, 101, 83, 0, 0, 6, 26, 30, 127 

@@ -0,0 +1,8 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./gcc/po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./gcc/po/EXCLUDES)

+ translate.tools.pocount: ERROR: Unknown filetype (./gcc/po/exgettext)

+ translate.tools.pocount: ERROR: Unknown filetype (./libcpp/po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./libstdc++-v3/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./libstdc++-v3/po/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./libstdc++-v3/po/string_literals.cc)

+ translate.tools.pocount: ERROR: Unknown filetype (./libstdc++-v3/po/Makefile.am)

@@ -0,0 +1,48 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ gcc/po/vi.po,  4470, 26367, 37749, 1667, 11722, 7127, 66969, 13264, 105058 

+ gcc/po/ja.po,  2297, 13642, 6536, 5263, 36459, 5704, 54957, 13264, 105058 

+ gcc/po/hr.po,  121, 511, 485, 199, 985, 12944, 103562, 13264, 105058 

+ gcc/po/sv.po,  13264, 105058, 97773, 0, 0, 0, 0, 13264, 105058 

+ gcc/po/sr.po,  2616, 17546, 16952, 6693, 48906, 3955, 38606, 13264, 105058 

+ gcc/po/el.po,  41, 169, 184, 4182, 25260, 9041, 79629, 13264, 105058 

+ gcc/po/es.po,  9252, 68619, 86449, 3203, 27964, 809, 8475, 13264, 105058 

+ gcc/po/zh_CN.po,  4565, 30750, 9723, 7045, 56600, 1654, 17708, 13264, 105058 

+ gcc/po/gcc.pot,  0, 0, 0, 0, 0, 13264, 105058, 13264, 105058 

+ gcc/po/nl.po,  807, 4291, 4336, 5927, 41337, 6530, 59430, 13264, 105058 

+ gcc/po/fr.po,  13264, 105058, 130509, 0, 0, 0, 0, 13264, 105058 

+ gcc/po/id.po,  3088, 21287, 21509, 6884, 51767, 3292, 32004, 13264, 105058 

+ gcc/po/fi.po,  2056, 12479, 9649, 8741, 66407, 2467, 26172, 13264, 105058 

+ gcc/po/tr.po,  2437, 15864, 13880, 7031, 51570, 3796, 37624, 13264, 105058 

+ gcc/po/da.po,  1868, 11142, 10169, 6403, 44657, 4993, 49259, 13264, 105058 

+ gcc/po/zh_TW.po,  2216, 14092, 6144, 8984, 70143, 2064, 20823, 13264, 105058 

+ gcc/po/de.po,  13264, 105058, 98308, 0, 0, 0, 0, 13264, 105058 

+ gcc/po/uk.po,  1110, 5351, 5459, 0, 0, 12154, 99707, 13264, 105058 

+ gcc/po/be.po,  62, 208, 205, 2314, 13175, 10888, 91675, 13264, 105058 

+ gcc/po/ru.po,  10873, 83627, 79117, 1124, 8756, 1267, 12675, 13264, 105058 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ libcpp/po/vi.po,  211, 1340, 2142, 1, 5, 4, 18, 216, 1363 

+ libcpp/po/ja.po,  188, 1148, 556, 20, 167, 8, 48, 216, 1363 

+ libcpp/po/pt_BR.po,  216, 1363, 1575, 0, 0, 0, 0, 216, 1363 

+ libcpp/po/sv.po,  216, 1363, 1300, 0, 0, 0, 0, 216, 1363 

+ libcpp/po/sr.po,  207, 1309, 1286, 4, 30, 5, 24, 216, 1363 

+ libcpp/po/el.po,  5, 13, 16, 73, 380, 138, 970, 216, 1363 

+ libcpp/po/es.po,  211, 1340, 1677, 1, 5, 4, 18, 216, 1363 

+ libcpp/po/zh_CN.po,  183, 1112, 440, 22, 175, 11, 76, 216, 1363 

+ libcpp/po/cpplib.pot,  0, 0, 0, 0, 0, 216, 1363, 216, 1363 

+ libcpp/po/nl.po,  205, 1299, 1352, 5, 37, 6, 27, 216, 1363 

+ libcpp/po/fr.po,  216, 1363, 1717, 0, 0, 0, 0, 216, 1363 

+ libcpp/po/id.po,  182, 1105, 1114, 23, 182, 11, 76, 216, 1363 

+ libcpp/po/fi.po,  216, 1363, 1079, 0, 0, 0, 0, 216, 1363 

+ libcpp/po/tr.po,  185, 1122, 986, 22, 187, 9, 54, 216, 1363 

+ libcpp/po/da.po,  216, 1363, 1304, 0, 0, 0, 0, 216, 1363 

+ libcpp/po/zh_TW.po,  216, 1363, 507, 0, 0, 0, 0, 216, 1363 

+ libcpp/po/eo.po,  216, 1363, 1396, 0, 0, 0, 0, 216, 1363 

+ libcpp/po/de.po,  216, 1363, 1256, 0, 0, 0, 0, 216, 1363 

+ libcpp/po/uk.po,  216, 1363, 1345, 0, 0, 0, 0, 216, 1363 

+ libcpp/po/be.po,  4, 12, 12, 27, 139, 185, 1212, 216, 1363 

+ libcpp/po/ca.po,  151, 932, 1126, 41, 264, 24, 167, 216, 1363 

+ libcpp/po/ru.po,  216, 1363, 1320, 0, 0, 0, 0, 216, 1363 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ libstdc++-v3/po/libstdc++.pot,  0, 0, 0, 0, 0, 10, 34, 10, 34 

+ libstdc++-v3/po/fr.po,  4, 5, 6, 0, 0, 0, 0, 4, 5 

+ libstdc++-v3/po/de.po,  4, 5, 4, 0, 0, 0, 0, 4, 5 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./bfd/po/SRC-POTFILES.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./bfd/po/Make-in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./bfd/po/BLD-POTFILES.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe3 in position 6: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf8 in position 2: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./opcodes/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./opcodes/po/Make-in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfe in position 12: invalid start byte

@@ -0,0 +1,65 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ bfd/po/uk.po,  1692, 11391, 12006, 0, 0, 0, 0, 1692, 11391 

+ bfd/po/ja.po,  1013, 6811, 4307, 0, 0, 286, 1419, 1299, 8230 

+ bfd/po/da.gmo,  1398, 9119, 8504, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/sr.po,  1398, 9119, 9435, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/fr.po,  1692, 11391, 13903, 0, 0, 0, 0, 1692, 11391 

+ bfd/po/ro.po,  592, 4098, 4407, 0, 0, 0, 0, 592, 4098 

+ bfd/po/sr.gmo,  1398, 9119, 9435, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/fi.gmo,  1398, 9119, 7687, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/id.po,  1312, 8369, 8501, 0, 0, 0, 0, 1312, 8369 

+ bfd/po/da.po,  1398, 9119, 8504, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/fi.po,  1398, 9119, 7687, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/id.gmo,  1312, 8369, 8501, 0, 0, 0, 0, 1312, 8369 

+ bfd/po/pt.po,  1692, 11391, 12183, 0, 0, 0, 0, 1692, 11391 

+ bfd/po/tr.po,  592, 4098, 3794, 0, 0, 0, 0, 592, 4098 

+ bfd/po/zh_CN.gmo,  214, 935, 437, 0, 0, 0, 0, 214, 935 

+ bfd/po/sv.po,  1398, 9119, 8364, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/sv.gmo,  1398, 9119, 8364, 0, 0, 0, 0, 1398, 9119 

+ bfd/po/bfd.pot,  0, 0, 0, 0, 0, 1692, 11391, 1692, 11391 

+ bfd/po/hr.po,  79, 195, 199, 0, 0, 1233, 8174, 1312, 8369 

+ bfd/po/es.po,  1771, 11953, 13950, 0, 0, 0, 0, 1771, 11953 

+ bfd/po/rw.po,  1, 2, 2, 508, 3879, 83, 217, 592, 4098 

+ bfd/po/zh_CN.po,  214, 935, 437, 521, 2842, 663, 5342, 1398, 9119 

+ bfd/po/vi.gmo,  1312, 8369, 12106, 0, 0, 0, 0, 1312, 8369 

+ bfd/po/rw.gmo,  1, 2, 2, 0, 0, 0, 0, 1, 2 

+ bfd/po/hr.gmo,  79, 195, 199, 0, 0, 0, 0, 79, 195 

+ bfd/po/ru.po,  1692, 11391, 11334, 0, 0, 0, 0, 1692, 11391 

+ bfd/po/es.gmo,  1771, 11953, 13950, 0, 0, 0, 0, 1771, 11953 

+ bfd/po/tr.gmo,  592, 4098, 3794, 0, 0, 0, 0, 592, 4098 

+ bfd/po/ja.gmo,  1013, 6811, 4307, 0, 0, 0, 0, 1013, 6811 

+ bfd/po/vi.po,  1312, 8369, 12106, 0, 0, 0, 0, 1312, 8369 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ opcodes/po/uk.po,  453, 2685, 2795, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/it.po,  234, 1371, 1595, 0, 0, 0, 0, 234, 1371 

+ opcodes/po/nl.gmo,  234, 1371, 1419, 0, 0, 0, 0, 234, 1371 

+ opcodes/po/ga.po,  287, 1602, 1830, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/de.po,  453, 2685, 2640, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/de.gmo,  453, 2685, 2640, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/sr.po,  287, 1602, 1611, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/fr.po,  453, 2685, 3059, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/ro.po,  148, 863, 909, 0, 0, 0, 0, 148, 863 

+ opcodes/po/sr.gmo,  287, 1602, 1611, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/fi.gmo,  287, 1602, 1393, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/id.po,  292, 1632, 1687, 0, 0, 0, 0, 292, 1632 

+ opcodes/po/nl.po,  234, 1371, 1419, 0, 0, 0, 0, 234, 1371 

+ opcodes/po/pt_BR.gmo,  453, 2685, 3051, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/da.po,  179, 968, 946, 0, 0, 55, 403, 234, 1371 

+ opcodes/po/fi.po,  287, 1602, 1393, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/id.gmo,  292, 1632, 1687, 0, 0, 0, 0, 292, 1632 

+ opcodes/po/tr.po,  148, 863, 783, 0, 0, 0, 0, 148, 863 

+ opcodes/po/zh_CN.gmo,  219, 1192, 525, 0, 0, 0, 0, 219, 1192 

+ opcodes/po/opcodes.pot,  0, 0, 0, 0, 0, 453, 2685, 453, 2685 

+ opcodes/po/sv.po,  453, 2685, 2485, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/fr.gmo,  453, 2685, 3059, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/sv.gmo,  453, 2685, 2485, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/es.po,  370, 2145, 2527, 0, 0, 0, 0, 370, 2145 

+ opcodes/po/it.gmo,  234, 1371, 1595, 0, 0, 0, 0, 234, 1371 

+ opcodes/po/zh_CN.po,  219, 1192, 525, 108, 650, 43, 303, 370, 2145 

+ opcodes/po/pt_BR.po,  453, 2685, 3051, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/vi.gmo,  292, 1632, 2494, 0, 0, 0, 0, 292, 1632 

+ opcodes/po/ga.gmo,  287, 1602, 1830, 0, 0, 0, 0, 287, 1602 

+ opcodes/po/uk.gmo,  453, 2685, 2795, 0, 0, 0, 0, 453, 2685 

+ opcodes/po/es.gmo,  370, 2145, 2527, 0, 0, 0, 0, 370, 2145 

+ opcodes/po/tr.gmo,  148, 863, 783, 0, 0, 0, 0, 148, 863 

+ opcodes/po/vi.po,  292, 1632, 2494, 0, 0, 0, 0, 292, 1632 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,28 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/da.po,  205, 739, 686, 4, 19, 15, 58, 224, 816 

+ po/ja.po,  78, 246, 143, 53, 224, 93, 346, 224, 816 

+ po/sr.gmo,  205, 739, 810, 0, 0, 0, 0, 205, 739 

+ po/fr.po,  220, 800, 1062, 1, 7, 3, 9, 224, 816 

+ po/pt_BR.po,  220, 800, 1003, 1, 7, 3, 9, 224, 816 

+ po/pl.gmo,  220, 800, 861, 0, 0, 0, 0, 220, 800 

+ po/fi.po,  165, 582, 512, 30, 134, 29, 100, 224, 816 

+ po/eo.gmo,  205, 739, 749, 0, 0, 0, 0, 205, 739 

+ po/uk.po,  220, 800, 903, 1, 7, 3, 9, 224, 816 

+ po/sv.po,  205, 739, 747, 4, 19, 15, 58, 224, 816 

+ po/vi.gmo,  220, 800, 1292, 0, 0, 0, 0, 220, 800 

+ po/gdbm.pot,  0, 0, 0, 0, 0, 224, 816, 224, 816 

+ po/de.po,  165, 582, 585, 30, 134, 29, 100, 224, 816 

+ po/da.gmo,  205, 739, 686, 0, 0, 0, 0, 205, 739 

+ po/vi.po,  220, 800, 1292, 1, 7, 3, 9, 224, 816 

+ po/eo.po,  205, 739, 749, 4, 19, 15, 58, 224, 816 

+ po/ja.gmo,  78, 246, 143, 0, 0, 0, 0, 78, 246 

+ po/uk.gmo,  220, 800, 903, 0, 0, 0, 0, 220, 800 

+ po/fi.gmo,  165, 582, 512, 0, 0, 0, 0, 165, 582 

+ po/fr.gmo,  220, 800, 1062, 0, 0, 0, 0, 220, 800 

+ po/sv.gmo,  205, 739, 747, 0, 0, 0, 0, 205, 739 

+ po/de.gmo,  165, 582, 585, 0, 0, 0, 0, 165, 582 

+ po/pl.po,  220, 800, 861, 1, 7, 3, 9, 224, 816 

+ po/es.gmo,  205, 739, 813, 0, 0, 0, 0, 205, 739 

+ po/pt_BR.gmo,  220, 800, 1003, 0, 0, 0, 0, 220, 800 

+ po/sr.po,  205, 739, 810, 4, 19, 15, 58, 224, 816 

+ po/es.po,  205, 739, 813, 4, 19, 15, 58, 224, 816 

@@ -0,0 +1,11 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,107 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  212, 1415, 488, 0, 0, 0, 0, 212, 1415 

+ po/zh_HK.po,  203, 1360, 484, 0, 0, 0, 0, 203, 1360 

+ po/zh_CN.po,  208, 1393, 482, 0, 0, 0, 0, 208, 1393 

+ po/yi.po,  118, 792, 751, 73, 466, 11, 90, 202, 1348 

+ po/xh.po,  151, 987, 880, 45, 294, 6, 67, 202, 1348 

+ po/wa.po,  134, 910, 1377, 32, 181, 36, 257, 202, 1348 

+ po/vi.po,  202, 1351, 1831, 0, 0, 0, 0, 202, 1351 

+ po/uz@cyrillic.po,  28, 158, 137, 6, 30, 168, 1160, 202, 1348 

+ po/uz.po,  28, 158, 137, 6, 30, 168, 1160, 202, 1348 

+ po/uk.po,  203, 1360, 1432, 0, 0, 0, 0, 203, 1360 

+ po/ug.po,  202, 1354, 1107, 0, 0, 0, 0, 202, 1354 

+ po/tt.po,  67, 388, 269, 25, 118, 110, 842, 202, 1348 

+ po/tr.po,  213, 1420, 1160, 0, 0, 0, 0, 213, 1420 

+ po/tk.po,  18, 92, 81, 26, 119, 158, 1137, 202, 1348 

+ po/th.po,  203, 1360, 553, 0, 0, 0, 0, 203, 1360 

+ po/tg.po,  2, 9, 12, 0, 0, 200, 1345, 202, 1354 

+ po/te.po,  202, 1354, 1098, 0, 0, 0, 0, 202, 1354 

+ po/ta.po,  197, 1288, 1079, 5, 60, 0, 0, 202, 1348 

+ po/sv.po,  213, 1420, 1361, 0, 0, 0, 0, 213, 1420 

+ po/sr@latin.po,  211, 1409, 1518, 0, 0, 0, 0, 211, 1409 

+ po/sr@ije.po,  137, 915, 884, 59, 376, 6, 57, 202, 1348 

+ po/sr.po,  213, 1420, 1533, 0, 0, 0, 0, 213, 1420 

+ po/sq.po,  185, 1208, 1474, 12, 89, 5, 51, 202, 1348 

+ po/sl.po,  213, 1420, 1491, 0, 0, 0, 0, 213, 1420 

+ po/sk.po,  212, 1415, 1417, 0, 0, 0, 0, 212, 1415 

+ po/si.po,  151, 995, 995, 35, 204, 16, 149, 202, 1348 

+ po/ru.po,  208, 1393, 1505, 0, 0, 0, 0, 208, 1393 

+ po/ro.po,  213, 1420, 1676, 0, 0, 0, 0, 213, 1420 

+ po/pt_BR.po,  213, 1420, 1771, 0, 0, 0, 0, 213, 1420 

+ po/pt.po,  207, 1382, 1537, 0, 0, 0, 0, 207, 1382 

+ po/ps.po,  25, 120, 137, 4, 19, 173, 1209, 202, 1348 

+ po/pl.po,  213, 1420, 1496, 0, 0, 0, 0, 213, 1420 

+ po/pa.po,  203, 1360, 1608, 0, 0, 0, 0, 203, 1360 

+ po/or.po,  201, 1345, 1293, 0, 0, 0, 0, 201, 1345 

+ po/oc.po,  211, 1409, 1808, 0, 0, 0, 0, 211, 1409 

+ po/nso.po,  137, 915, 1487, 59, 376, 6, 57, 202, 1348 

+ po/nn.po,  185, 1208, 1176, 12, 89, 5, 51, 202, 1348 

+ po/nl.po,  213, 1420, 1363, 0, 0, 0, 0, 213, 1420 

+ po/ne.po,  158, 1061, 1021, 39, 236, 5, 51, 202, 1348 

+ po/nds.po,  49, 257, 283, 1, 3, 152, 1088, 202, 1348 

+ po/nb.po,  211, 1409, 1351, 0, 0, 0, 0, 211, 1409 

+ po/my.po,  184, 1192, 942, 12, 89, 6, 67, 202, 1348 

+ po/ms.po,  132, 870, 827, 56, 355, 14, 123, 202, 1348 

+ po/mr.po,  197, 1288, 1322, 5, 60, 0, 0, 202, 1348 

+ po/mn.po,  137, 915, 859, 59, 376, 6, 57, 202, 1348 

+ po/ml.po,  202, 1354, 1111, 0, 0, 0, 0, 202, 1354 

+ po/mk.po,  163, 1102, 1311, 34, 195, 5, 51, 202, 1348 

+ po/mi.po,  118, 741, 839, 58, 359, 26, 248, 202, 1348 

+ po/mai.po,  184, 1192, 1283, 12, 89, 6, 67, 202, 1348 

+ po/lv.po,  213, 1420, 1265, 0, 0, 0, 0, 213, 1420 

+ po/lt.po,  213, 1420, 1242, 0, 0, 0, 0, 213, 1420 

+ po/li.po,  118, 792, 749, 73, 466, 11, 90, 202, 1348 

+ po/ku.po,  177, 1171, 1263, 20, 126, 5, 51, 202, 1348 

+ po/ko.po,  213, 1420, 1223, 0, 0, 0, 0, 213, 1420 

+ po/kn.po,  186, 1213, 1047, 11, 84, 5, 51, 202, 1348 

+ po/km.po,  192, 1245, 598, 4, 27, 4, 66, 200, 1338 

+ po/kk.po,  61, 267, 257, 0, 0, 151, 1148, 212, 1415 

+ po/ka.po,  185, 1208, 995, 12, 89, 5, 51, 202, 1348 

+ po/ja.po,  202, 1354, 518, 0, 0, 0, 0, 202, 1354 

+ po/it.po,  213, 1420, 1614, 0, 0, 0, 0, 213, 1420 

+ po/is.po,  212, 1415, 1376, 0, 0, 0, 0, 212, 1415 

+ po/io.po,  57, 299, 276, 25, 117, 120, 932, 202, 1348 

+ po/id.po,  213, 1420, 1436, 0, 0, 0, 0, 213, 1420 

+ po/ia.po,  6, 49, 42, 29, 173, 167, 1126, 202, 1348 

+ po/hy.po,  194, 1250, 1187, 8, 98, 0, 0, 202, 1348 

+ po/hu.po,  213, 1420, 1306, 0, 0, 0, 0, 213, 1420 

+ po/hr.po,  213, 1420, 1356, 0, 0, 0, 0, 213, 1420 

+ po/hi.po,  202, 1354, 1605, 0, 0, 0, 0, 202, 1354 

+ po/he.po,  211, 1409, 1349, 0, 0, 0, 0, 211, 1409 

+ po/gu.po,  184, 1192, 1226, 12, 89, 6, 67, 202, 1348 

+ po/gl.po,  213, 1420, 1924, 0, 0, 0, 0, 213, 1420 

+ po/ga.po,  172, 1060, 1278, 5, 50, 25, 238, 202, 1348 

+ po/fur.po,  213, 1420, 1857, 0, 0, 0, 0, 213, 1420 

+ po/fr.po,  213, 1420, 1804, 0, 0, 0, 0, 213, 1420 

+ po/fi.po,  148, 872, 665, 42, 420, 21, 117, 211, 1409 

+ po/fa.po,  150, 991, 1035, 45, 294, 7, 63, 202, 1348 

+ po/eu.po,  213, 1420, 1363, 0, 0, 0, 0, 213, 1420 

+ po/et.po,  203, 1360, 1095, 0, 0, 0, 0, 203, 1360 

+ po/es.po,  213, 1420, 1931, 0, 0, 0, 0, 213, 1420 

+ po/eo.po,  163, 1201, 1057, 4, 41, 41, 151, 208, 1393 

+ po/en_GB.po,  211, 1409, 1409, 0, 0, 0, 0, 211, 1409 

+ po/en_CA.po,  175, 1166, 1168, 22, 131, 5, 51, 202, 1348 

+ po/en@shaw.po,  174, 1158, 1158, 28, 190, 0, 0, 202, 1348 

+ po/el.po,  212, 1415, 1660, 0, 0, 0, 0, 212, 1415 

+ po/dz.po,  162, 1095, 573, 35, 202, 5, 51, 202, 1348 

+ po/de.po,  213, 1420, 1405, 0, 0, 0, 0, 213, 1420 

+ po/da.po,  213, 1420, 1318, 0, 0, 0, 0, 213, 1420 

+ po/cy.po,  175, 1162, 1357, 22, 135, 5, 51, 202, 1348 

+ po/csb.po,  66, 481, 474, 4, 43, 131, 821, 201, 1345 

+ po/cs.po,  213, 1420, 1454, 0, 0, 0, 0, 213, 1420 

+ po/crh.po,  202, 1354, 1118, 0, 0, 0, 0, 202, 1354 

+ po/ca@valencia.po,  211, 1409, 1916, 0, 0, 0, 0, 211, 1409 

+ po/ca.po,  213, 1420, 1936, 0, 0, 0, 0, 213, 1420 

+ po/bs.po,  228, 1478, 1532, 0, 0, 0, 0, 228, 1478 

+ po/br.po,  53, 264, 326, 7, 39, 142, 1045, 202, 1348 

+ po/bn_IN.po,  197, 1288, 1310, 5, 60, 0, 0, 202, 1348 

+ po/bn.po,  195, 1266, 1254, 7, 82, 0, 0, 202, 1348 

+ po/bg.po,  205, 1372, 1774, 0, 0, 0, 0, 205, 1372 

+ po/be@latin.po,  185, 1208, 1205, 12, 89, 5, 51, 202, 1348 

+ po/be.po,  211, 1409, 1436, 0, 0, 0, 0, 211, 1409 

+ po/az.po,  137, 915, 795, 59, 376, 6, 57, 202, 1348 

+ po/ast.po,  197, 1288, 1581, 5, 60, 0, 0, 202, 1348 

+ po/as.po,  203, 1360, 1264, 0, 0, 0, 0, 203, 1360 

+ po/ar.po,  195, 1266, 1236, 7, 82, 0, 0, 202, 1348 

+ po/ang.po,  42, 223, 183, 32, 163, 128, 962, 202, 1348 

+ po/af.po,  183, 1180, 1152, 8, 72, 11, 96, 202, 1348 

@@ -0,0 +1,85 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/tr/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/tr/tr.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/tr/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/uk/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/uk/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/uk/uk.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ru/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ru/ru.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ru/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/el/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/el/el.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/el/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/fr/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/fr/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/fr/fr.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/en_GB/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/en_GB/en_GB.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/en_GB/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/id/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/id/id.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/id/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/te/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/te/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/te/te.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/cs/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/cs/cs.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/cs/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/oc/oc.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/oc/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/oc/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/zh_CN/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/zh_CN/zh_CN.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/zh_CN/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/hu/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/hu/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/hu/hu.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ca/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ca/ca.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ca/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/pt_BR/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/pt_BR/pt_BR.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/pt_BR/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ro/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ro/ro.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ro/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/it/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/it/it.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/it/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/C/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ko/ko.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ko/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/ko/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/gl/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/gl/gl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/gl/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/es/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/es/es.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/es/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/sl/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/sl/sl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/sl/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/sv/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/sv/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/sv/sv.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/de/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/de/de.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./docs/de/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

@@ -0,0 +1,239 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ docs/tr/tr.po,  41, 156, 151, 0, 0, 314, 9204, 355, 9360 

+ docs/uk/uk.po,  863, 14012, 11584, 127, 4651, 95, 5569, 1085, 24232 

+ docs/ru/ru.po,  293, 6757, 5318, 17, 946, 44, 1595, 354, 9298 

+ docs/el/el.po,  355, 9360, 9757, 0, 0, 0, 0, 355, 9360 

+ docs/fr/fr.po,  355, 9360, 10190, 0, 0, 0, 0, 355, 9360 

+ docs/en_GB/en_GB.po,  333, 7968, 7974, 0, 0, 0, 0, 333, 7968 

+ docs/id/id.po,  355, 9360, 8302, 0, 0, 0, 0, 355, 9360 

+ docs/te/te.po,  22, 52, 52, 0, 0, 348, 9227, 370, 9279 

+ docs/cs/cs.po,  355, 9360, 8300, 0, 0, 0, 0, 355, 9360 

+ docs/oc/oc.po,  5, 5, 5, 0, 0, 1229, 30404, 1234, 30409 

+ docs/zh_CN/zh_CN.po,  355, 9360, 1812, 0, 0, 0, 0, 355, 9360 

+ docs/hu/hu.po,  30, 645, 504, 0, 0, 325, 8715, 355, 9360 

+ docs/ca/ca.po,  354, 9346, 9902, 1, 14, 0, 0, 355, 9360 

+ docs/pt_BR/pt_BR.po,  35, 114, 137, 3, 30, 316, 9161, 354, 9305 

+ docs/ro/ro.po,  355, 9360, 9532, 0, 0, 0, 0, 355, 9360 

+ docs/it/it.po,  68, 1304, 1351, 0, 0, 248, 6350, 316, 7654 

+ docs/ko/ko.po,  411, 502, 503, 11, 24, 788, 28731, 1210, 29257 

+ docs/gl/gl.po,  294, 6142, 6433, 0, 0, 61, 3218, 355, 9360 

+ docs/es/es.po,  355, 9360, 10345, 0, 0, 0, 0, 355, 9360 

+ docs/sl/sl.po,  39, 51, 51, 0, 0, 329, 9133, 368, 9184 

+ docs/sv/sv.po,  355, 9360, 8129, 0, 0, 0, 0, 355, 9360 

+ docs/de/de.po,  355, 9360, 8559, 0, 0, 0, 0, 355, 9360 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/en_GB.gmo,  84, 622, 622, 0, 0, 0, 0, 84, 622 

+ po/si.po,  20, 116, 110, 21, 143, 46, 391, 87, 650 

+ po/pt_BR.po,  88, 629, 790, 0, 0, 0, 0, 88, 629 

+ po/sr.po,  88, 629, 656, 0, 0, 0, 0, 88, 629 

+ po/ca@valencia.po,  85, 626, 799, 0, 0, 0, 0, 85, 626 

+ po/bn.gmo,  49, 258, 280, 0, 0, 0, 0, 49, 258 

+ po/mr.po,  81, 619, 533, 3, 15, 3, 16, 87, 650 

+ po/es.gmo,  88, 629, 811, 0, 0, 0, 0, 88, 629 

+ po/nds.gmo,  24, 87, 87, 0, 0, 0, 0, 24, 87 

+ po/ro.gmo,  88, 629, 666, 0, 0, 0, 0, 88, 629 

+ po/nl.po,  88, 629, 571, 0, 0, 0, 0, 88, 629 

+ po/ta.po,  81, 619, 488, 3, 15, 3, 16, 87, 650 

+ po/fi.gmo,  88, 629, 441, 0, 0, 0, 0, 88, 629 

+ po/xh.po,  7, 21, 26, 35, 224, 45, 405, 87, 650 

+ po/vi.po,  88, 629, 875, 0, 0, 0, 0, 88, 629 

+ po/zh_HK.gmo,  87, 650, 161, 0, 0, 0, 0, 87, 650 

+ po/sq.gmo,  37, 175, 207, 0, 0, 0, 0, 37, 175 

+ po/id.po,  88, 629, 592, 0, 0, 0, 0, 88, 629 

+ po/zu.po,  7, 21, 22, 35, 224, 45, 405, 87, 650 

+ po/eo.gmo,  88, 629, 580, 0, 0, 0, 0, 88, 629 

+ po/bg.po,  85, 626, 694, 0, 0, 0, 0, 85, 626 

+ po/uk.po,  84, 622, 524, 0, 0, 0, 0, 84, 622 

+ po/el.gmo,  88, 629, 684, 0, 0, 0, 0, 88, 629 

+ po/ca.gmo,  88, 629, 802, 0, 0, 0, 0, 88, 629 

+ po/fr.gmo,  88, 629, 745, 0, 0, 0, 0, 88, 629 

+ po/pa.po,  88, 629, 722, 0, 0, 0, 0, 88, 629 

+ po/mg.po,  34, 159, 174, 19, 142, 34, 349, 87, 650 

+ po/hu.gmo,  88, 629, 556, 0, 0, 0, 0, 88, 629 

+ po/pt.gmo,  84, 622, 711, 0, 0, 0, 0, 84, 622 

+ po/sr@latin.gmo,  88, 629, 656, 0, 0, 0, 0, 88, 629 

+ po/en_CA.gmo,  8, 30, 31, 0, 0, 0, 0, 8, 30 

+ po/af.gmo,  88, 629, 627, 0, 0, 0, 0, 88, 629 

+ po/mn.gmo,  7, 21, 21, 0, 0, 0, 0, 7, 21 

+ po/mi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/mjw.po,  87, 620, 546, 0, 0, 1, 9, 88, 629 

+ po/ga.po,  40, 173, 218, 5, 26, 42, 451, 87, 650 

+ po/wa.gmo,  3, 8, 17, 0, 0, 0, 0, 3, 8 

+ po/bs.gmo,  87, 650, 629, 0, 0, 0, 0, 87, 650 

+ po/zh_HK.po,  87, 650, 161, 0, 0, 0, 0, 87, 650 

+ po/nds.po,  24, 87, 87, 6, 26, 57, 537, 87, 650 

+ po/uk.gmo,  84, 622, 524, 0, 0, 0, 0, 84, 622 

+ po/uz.po,  8, 17, 15, 4, 21, 75, 612, 87, 650 

+ po/mk.gmo,  60, 422, 490, 0, 0, 0, 0, 60, 422 

+ po/de.po,  88, 629, 617, 0, 0, 0, 0, 88, 629 

+ po/et.gmo,  88, 629, 505, 0, 0, 0, 0, 88, 629 

+ po/eu.po,  88, 629, 557, 0, 0, 0, 0, 88, 629 

+ po/ja.gmo,  87, 626, 171, 0, 0, 0, 0, 87, 626 

+ po/csb.po,  25, 112, 117, 10, 46, 52, 492, 87, 650 

+ po/fur.gmo,  88, 629, 764, 0, 0, 0, 0, 88, 629 

+ po/be.gmo,  88, 629, 577, 0, 0, 0, 0, 88, 629 

+ po/sv.po,  88, 629, 567, 0, 0, 0, 0, 88, 629 

+ po/am.gmo,  2, 2, 3, 0, 0, 0, 0, 2, 2 

+ po/ky.po,  67, 524, 422, 7, 41, 13, 85, 87, 650 

+ po/am.po,  2, 2, 3, 5, 9, 80, 639, 87, 650 

+ po/mr.gmo,  81, 619, 533, 0, 0, 0, 0, 81, 619 

+ po/ne.gmo,  87, 608, 524, 0, 0, 0, 0, 87, 608 

+ po/ca.po,  88, 629, 802, 0, 0, 0, 0, 88, 629 

+ po/ru.po,  88, 629, 574, 0, 0, 0, 0, 88, 629 

+ po/bn.po,  49, 258, 280, 12, 57, 26, 335, 87, 650 

+ po/be@latin.po,  38, 171, 170, 21, 129, 28, 350, 87, 650 

+ po/fy.po,  22, 93, 80, 11, 52, 54, 505, 87, 650 

+ po/ne.po,  87, 608, 524, 1, 21, 0, 0, 88, 629 

+ po/hr.po,  88, 629, 577, 0, 0, 0, 0, 88, 629 

+ po/wa.po,  3, 8, 17, 16, 74, 68, 568, 87, 650 

+ po/cs.po,  88, 629, 557, 0, 0, 0, 0, 88, 629 

+ po/sv.gmo,  88, 629, 567, 0, 0, 0, 0, 88, 629 

+ po/tg.po,  87, 650, 659, 0, 0, 0, 0, 87, 650 

+ po/tr.gmo,  88, 629, 547, 0, 0, 0, 0, 88, 629 

+ po/pt.po,  84, 622, 711, 0, 0, 0, 0, 84, 622 

+ po/gd.po,  88, 629, 851, 0, 0, 0, 0, 88, 629 

+ po/uz@cyrillic.po,  45, 228, 184, 4, 19, 38, 403, 87, 650 

+ po/vi.gmo,  88, 629, 875, 0, 0, 0, 0, 88, 629 

+ po/id.gmo,  88, 629, 592, 0, 0, 0, 0, 88, 629 

+ po/zh_CN.gmo,  88, 629, 157, 0, 0, 0, 0, 88, 629 

+ po/ta.gmo,  81, 619, 488, 0, 0, 0, 0, 81, 619 

+ po/gv.po,  41, 206, 246, 16, 91, 30, 353, 87, 650 

+ po/as.gmo,  81, 619, 593, 0, 0, 0, 0, 81, 619 

+ po/br.gmo,  44, 218, 269, 0, 0, 0, 0, 44, 218 

+ po/or.po,  81, 619, 585, 3, 15, 3, 16, 87, 650 

+ po/ko.gmo,  88, 629, 478, 0, 0, 0, 0, 88, 629 

+ po/en@shaw.gmo,  28, 119, 119, 0, 0, 0, 0, 28, 119 

+ po/ku.gmo,  31, 121, 122, 0, 0, 0, 0, 31, 121 

+ po/nl.gmo,  88, 629, 571, 0, 0, 0, 0, 88, 629 

+ po/ms.po,  81, 619, 574, 4, 19, 2, 12, 87, 650 

+ po/km.po,  80, 578, 216, 3, 15, 4, 57, 87, 650 

+ po/crh.gmo,  73, 514, 437, 0, 0, 0, 0, 73, 514 

+ po/pl.gmo,  88, 629, 585, 0, 0, 0, 0, 88, 629 

+ po/hi.gmo,  80, 578, 697, 0, 0, 0, 0, 80, 578 

+ po/gl.gmo,  88, 629, 817, 0, 0, 0, 0, 88, 629 

+ po/sr@latin.po,  88, 629, 656, 0, 0, 0, 0, 88, 629 

+ po/gu.gmo,  84, 622, 636, 0, 0, 0, 0, 84, 622 

+ po/sk.po,  88, 629, 609, 0, 0, 0, 0, 88, 629 

+ po/uz.gmo,  8, 17, 15, 0, 0, 0, 0, 8, 17 

+ po/lt.gmo,  88, 629, 512, 0, 0, 0, 0, 88, 629 

+ po/cy.gmo,  8, 30, 33, 0, 0, 0, 0, 8, 30 

+ po/ps.po,  27, 109, 124, 12, 76, 48, 465, 87, 650 

+ po/ro.po,  88, 629, 666, 0, 0, 0, 0, 88, 629 

+ po/bs.po,  87, 650, 629, 0, 0, 0, 0, 87, 650 

+ po/ja.po,  87, 626, 171, 0, 0, 1, 3, 88, 629 

+ po/mi.po,  0, 0, 0, 1, 2, 86, 648, 87, 650 

+ po/xh.gmo,  7, 21, 26, 0, 0, 0, 0, 7, 21 

+ po/sl.po,  88, 629, 612, 0, 0, 0, 0, 88, 629 

+ po/rw.po,  1, 1, 2, 39, 239, 47, 410, 87, 650 

+ po/nn.po,  50, 299, 265, 17, 85, 20, 266, 87, 650 

+ po/te.po,  81, 619, 487, 3, 15, 3, 16, 87, 650 

+ po/kk.gmo,  88, 629, 539, 0, 0, 0, 0, 88, 629 

+ po/ms.gmo,  81, 619, 574, 0, 0, 0, 0, 81, 619 

+ po/as.po,  81, 619, 593, 3, 15, 3, 16, 87, 650 

+ po/es.po,  88, 629, 811, 0, 0, 0, 0, 88, 629 

+ po/dz.gmo,  12, 50, 22, 0, 0, 0, 0, 12, 50 

+ po/kn.gmo,  78, 566, 445, 0, 0, 0, 0, 78, 566 

+ po/pl.po,  88, 629, 585, 0, 0, 0, 0, 88, 629 

+ po/az.po,  7, 21, 27, 35, 224, 45, 405, 87, 650 

+ po/th.gmo,  87, 650, 197, 0, 0, 0, 0, 87, 650 

+ po/br.po,  44, 218, 269, 17, 97, 26, 335, 87, 650 

+ po/en_CA.po,  8, 30, 31, 33, 217, 46, 403, 87, 650 

+ po/ku.po,  31, 121, 122, 16, 97, 40, 432, 87, 650 

+ po/ca@valencia.gmo,  85, 626, 799, 0, 0, 0, 0, 85, 626 

+ po/ga.gmo,  40, 173, 218, 0, 0, 0, 0, 40, 173 

+ po/ug.po,  75, 558, 454, 4, 23, 8, 69, 87, 650 

+ po/bn_IN.po,  80, 578, 602, 3, 15, 4, 57, 87, 650 

+ po/an.po,  87, 650, 790, 0, 0, 0, 0, 87, 650 

+ po/kk.po,  88, 629, 539, 0, 0, 0, 0, 88, 629 

+ po/he.gmo,  84, 622, 607, 0, 0, 0, 0, 84, 622 

+ po/ml.po,  88, 629, 480, 0, 0, 0, 0, 88, 629 

+ po/gv.gmo,  41, 206, 246, 0, 0, 0, 0, 41, 206 

+ po/cy.po,  8, 30, 33, 33, 217, 46, 403, 87, 650 

+ po/eu.gmo,  88, 629, 557, 0, 0, 0, 0, 88, 629 

+ po/lv.gmo,  88, 629, 527, 0, 0, 0, 0, 88, 629 

+ po/ru.gmo,  88, 629, 574, 0, 0, 0, 0, 88, 629 

+ po/bn_IN.gmo,  80, 578, 602, 0, 0, 0, 0, 80, 578 

+ po/sq.po,  37, 175, 207, 23, 176, 27, 299, 87, 650 

+ po/ka.po,  4, 6, 7, 38, 212, 45, 432, 87, 650 

+ po/de.gmo,  88, 629, 617, 0, 0, 0, 0, 88, 629 

+ po/zh_TW.po,  88, 629, 160, 0, 0, 0, 0, 88, 629 

+ po/ky.gmo,  67, 524, 422, 0, 0, 0, 0, 67, 524 

+ po/hy.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po/gd.gmo,  88, 629, 851, 0, 0, 0, 0, 88, 629 

+ po/zu.gmo,  7, 21, 22, 0, 0, 0, 0, 7, 21 

+ po/ml.gmo,  88, 629, 480, 0, 0, 0, 0, 88, 629 

+ po/lv.po,  88, 629, 527, 0, 0, 0, 0, 88, 629 

+ po/hy.po,  1, 1, 1, 9, 40, 77, 609, 87, 650 

+ po/sr.gmo,  88, 629, 656, 0, 0, 0, 0, 88, 629 

+ po/hr.gmo,  88, 629, 577, 0, 0, 0, 0, 88, 629 

+ po/nb.po,  88, 629, 581, 0, 0, 0, 0, 88, 629 

+ po/fr.po,  88, 629, 745, 0, 0, 0, 0, 88, 629 

+ po/be@latin.gmo,  38, 171, 170, 0, 0, 0, 0, 38, 171 

+ po/sl.gmo,  88, 629, 612, 0, 0, 0, 0, 88, 629 

+ po/si.gmo,  20, 116, 110, 0, 0, 0, 0, 20, 116 

+ po/is.po,  88, 629, 636, 0, 0, 0, 0, 88, 629 

+ po/mn.po,  7, 21, 21, 35, 224, 45, 405, 87, 650 

+ po/or.gmo,  81, 619, 585, 0, 0, 0, 0, 81, 619 

+ po/bg.gmo,  85, 626, 694, 0, 0, 0, 0, 85, 626 

+ po/be.po,  88, 629, 577, 0, 0, 0, 0, 88, 629 

+ po/fi.po,  88, 629, 441, 0, 0, 0, 0, 88, 629 

+ po/fy.gmo,  22, 93, 80, 0, 0, 0, 0, 22, 93 

+ po/mg.gmo,  34, 159, 174, 0, 0, 0, 0, 34, 159 

+ po/oc.gmo,  88, 629, 734, 0, 0, 0, 0, 88, 629 

+ po/th.po,  87, 650, 197, 0, 0, 0, 0, 87, 650 

+ po/uz@cyrillic.gmo,  45, 228, 184, 0, 0, 0, 0, 45, 228 

+ po/te.gmo,  81, 619, 487, 0, 0, 0, 0, 81, 619 

+ po/en_GB.po,  84, 622, 622, 0, 0, 0, 0, 84, 622 

+ po/kab.gmo,  87, 650, 752, 0, 0, 0, 0, 87, 650 

+ po/hu.po,  88, 629, 556, 0, 0, 0, 0, 88, 629 

+ po/mai.gmo,  42, 205, 220, 0, 0, 0, 0, 42, 205 

+ po/an.gmo,  87, 650, 790, 0, 0, 0, 0, 87, 650 

+ po/it.gmo,  88, 629, 702, 0, 0, 0, 0, 88, 629 

+ po/crh.po,  73, 514, 437, 5, 64, 9, 72, 87, 650 

+ po/nso.gmo,  7, 21, 37, 0, 0, 0, 0, 7, 21 

+ po/csb.gmo,  25, 112, 117, 0, 0, 0, 0, 25, 112 

+ po/gl.po,  88, 629, 817, 0, 0, 0, 0, 88, 629 

+ po/el.po,  88, 629, 684, 0, 0, 0, 0, 88, 629 

+ po/he.po,  84, 622, 607, 0, 0, 0, 0, 84, 622 

+ po/nb.gmo,  88, 629, 581, 0, 0, 0, 0, 88, 629 

+ po/ast.po,  57, 352, 403, 13, 89, 17, 209, 87, 650 

+ po/da.gmo,  88, 629, 558, 0, 0, 0, 0, 88, 629 

+ po/dz.po,  12, 50, 22, 37, 236, 38, 364, 87, 650 

+ po/ast.gmo,  57, 352, 403, 0, 0, 0, 0, 57, 352 

+ po/tr.po,  88, 629, 547, 0, 0, 0, 0, 88, 629 

+ po/fur.po,  88, 629, 764, 0, 0, 0, 0, 88, 629 

+ po/gdm.pot,  0, 0, 0, 0, 0, 88, 629, 88, 629 

+ po/da.po,  88, 629, 558, 0, 0, 0, 0, 88, 629 

+ po/it.po,  88, 629, 702, 0, 0, 0, 0, 88, 629 

+ po/ka.gmo,  4, 6, 7, 0, 0, 0, 0, 4, 6 

+ po/sk.gmo,  88, 629, 609, 0, 0, 0, 0, 88, 629 

+ po/mk.po,  60, 422, 490, 14, 95, 13, 133, 87, 650 

+ po/eo.po,  88, 629, 580, 0, 0, 0, 0, 88, 629 

+ po/ko.po,  88, 629, 478, 0, 0, 0, 0, 88, 629 

+ po/km.gmo,  80, 578, 216, 0, 0, 0, 0, 80, 578 

+ po/is.gmo,  88, 629, 636, 0, 0, 0, 0, 88, 629 

+ po/pt_BR.gmo,  88, 629, 790, 0, 0, 0, 0, 88, 629 

+ po/lt.po,  88, 629, 512, 0, 0, 0, 0, 88, 629 

+ po/mjw.gmo,  87, 620, 546, 0, 0, 0, 0, 87, 620 

+ po/mai.po,  42, 205, 220, 19, 145, 26, 300, 87, 650 

+ po/gu.po,  84, 622, 636, 0, 0, 0, 0, 84, 622 

+ po/fa.po,  88, 629, 674, 0, 0, 0, 0, 88, 629 

+ po/zh_TW.gmo,  88, 629, 160, 0, 0, 0, 0, 88, 629 

+ po/hi.po,  80, 578, 697, 3, 15, 4, 57, 87, 650 

+ po/oc.po,  88, 629, 734, 0, 0, 0, 0, 88, 629 

+ po/af.po,  88, 629, 627, 0, 0, 0, 0, 88, 629 

+ po/kab.po,  87, 650, 752, 0, 0, 0, 0, 87, 650 

+ po/ug.gmo,  75, 558, 454, 0, 0, 0, 0, 75, 558 

+ po/et.po,  88, 629, 505, 0, 0, 0, 0, 88, 629 

+ po/zh_CN.po,  88, 629, 157, 0, 0, 0, 0, 88, 629 

+ po/en@shaw.po,  28, 119, 119, 33, 196, 26, 335, 87, 650 

+ po/tg.gmo,  87, 650, 659, 0, 0, 0, 0, 87, 650 

+ po/cs.gmo,  88, 629, 557, 0, 0, 0, 0, 88, 629 

+ po/nn.gmo,  50, 299, 265, 0, 0, 0, 0, 50, 299 

+ po/ar.po,  87, 620, 531, 1, 9, 0, 0, 88, 629 

+ po/rw.gmo,  1, 1, 2, 0, 0, 0, 0, 1, 1 

+ po/az.gmo,  7, 21, 27, 0, 0, 0, 0, 7, 21 

+ po/pa.gmo,  88, 629, 722, 0, 0, 0, 0, 88, 629 

+ po/ps.gmo,  27, 109, 124, 0, 0, 0, 0, 27, 109 

+ po/nso.po,  7, 21, 37, 35, 224, 45, 405, 87, 650 

+ po/kn.po,  78, 566, 445, 3, 15, 6, 69, 87, 650 

@@ -0,0 +1,67 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/gedit3-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/gedit-html-snippet.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/gedit3-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/gedit-html-snippet.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/gedit3-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/gedit-html-snippet.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/figures/gedit3-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/figures/gedit-html-snippet.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/gedit3-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/gedit-html-snippet.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/gedit3-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/gedit-html-snippet.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/gedit3-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/gedit-html-snippet.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/gedit3-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/gedit-html-snippet.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/schematron.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gnome-help.sct)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-undo-recent-action.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-tabs.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-tabs-moving.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-tab-groups.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-syntax-highlighting.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-shortcut-keys.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-search.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-save-file.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-replace.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-quickstart.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-printing.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-printing-select.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-printing-order.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-sort.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-snippets.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-quick-open.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-pyconsole.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-modelines.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-install.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-insert-date-time.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-file-browser.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-external-tools.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-doc-stats.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugins-change-case.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-plugin-guide.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-open-recent.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-open-on-server.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-open-files.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-open-files-from-sidepane.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-full-screen.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-files-basic.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-edit-as-root.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-create-new-file.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-close-file.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-change-default-font.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gedit-change-color-scheme.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/gedit3-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/gedit-icon.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/gedit-html-snippet.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/check_status.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,135 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/zh_TW/zh_TW.po,  433, 5312, 1030, 0, 0, 0, 0, 433, 5312 

+ help/zh_HK/zh_HK.po,  436, 5390, 1035, 0, 0, 0, 0, 436, 5390 

+ help/zh_CN/zh_CN.po,  581, 6612, 1204, 0, 0, 0, 0, 581, 6612 

+ help/uk/uk.po,  552, 6577, 5320, 0, 0, 0, 0, 552, 6577 

+ help/th/th.po,  219, 2555, 778, 0, 0, 456, 5022, 675, 7577 

+ help/te/te.po,  15, 29, 30, 0, 0, 580, 7436, 595, 7465 

+ help/sv/sv.po,  595, 6607, 6127, 0, 0, 0, 0, 595, 6607 

+ help/sl/sl.po,  600, 7570, 6316, 0, 0, 0, 0, 600, 7570 

+ help/ru/ru.po,  580, 6559, 5328, 0, 0, 0, 0, 580, 6559 

+ help/ro/ro.po,  580, 6559, 6440, 0, 0, 0, 0, 580, 6559 

+ help/pt_BR/pt_BR.po,  595, 6607, 6968, 0, 0, 0, 0, 595, 6607 

+ help/pl/pl.po,  595, 6607, 5141, 0, 0, 0, 0, 595, 6607 

+ help/oc/oc.po,  96, 141, 165, 0, 0, 592, 7615, 688, 7756 

+ help/lv/lv.po,  581, 6603, 5046, 0, 0, 0, 0, 581, 6603 

+ help/ko/ko.po,  692, 7740, 5726, 0, 0, 0, 0, 692, 7740 

+ help/ja/ja.po,  71, 316, 168, 164, 1181, 366, 6089, 601, 7586 

+ help/it/it.po,  675, 7613, 7707, 0, 0, 0, 0, 675, 7613 

+ help/id/id.po,  581, 6603, 5951, 0, 0, 0, 0, 581, 6603 

+ help/hu/hu.po,  595, 6607, 5511, 0, 0, 0, 0, 595, 6607 

+ help/gl/gl.po,  580, 6559, 6456, 0, 0, 0, 0, 580, 6559 

+ help/fr/fr.po,  580, 6559, 7117, 0, 0, 0, 0, 580, 6559 

+ help/fi/fi.po,  211, 2280, 1403, 133, 1567, 208, 2730, 552, 6577 

+ help/eu/eu.po,  675, 7577, 5738, 0, 0, 0, 0, 675, 7577 

+ help/es/es.po,  597, 6613, 6845, 0, 0, 0, 0, 597, 6613 

+ help/el/el.po,  581, 6612, 6702, 0, 0, 0, 0, 581, 6612 

+ help/de/de.po,  593, 6567, 6343, 0, 0, 2, 40, 595, 6607 

+ help/da/da.po,  670, 7555, 7171, 0, 0, 0, 0, 670, 7555 

+ help/cs/cs.po,  595, 6607, 5916, 0, 0, 0, 0, 595, 6607 

+ help/ca/ca.po,  595, 6607, 6813, 0, 0, 0, 0, 595, 6607 

+ help/bg/bg.po,  595, 7465, 6650, 0, 0, 0, 0, 595, 7465 

+ help/ar/ar.po,  513, 4492, 3525, 3, 62, 153, 2637, 669, 7191 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  727, 4279, 979, 0, 0, 0, 0, 727, 4279 

+ po/zh_HK.po,  682, 4080, 930, 0, 0, 0, 0, 682, 4080 

+ po/zh_CN.po,  726, 4278, 1057, 0, 0, 0, 0, 726, 4278 

+ po/xh.po,  999, 4120, 3612, 17, 73, 3, 12, 1019, 4205 

+ po/wa.po,  501, 2030, 2528, 128, 511, 391, 1665, 1020, 4206 

+ po/vi.po,  729, 4304, 5359, 0, 0, 0, 0, 729, 4304 

+ po/uk.po,  722, 4266, 3754, 0, 0, 0, 0, 722, 4266 

+ po/ug.po,  754, 4362, 3285, 0, 0, 0, 0, 754, 4362 

+ po/tr.po,  729, 4304, 3438, 0, 0, 0, 0, 729, 4304 

+ po/tk.po,  526, 2502, 2118, 179, 906, 315, 798, 1020, 4206 

+ po/th.po,  722, 4266, 1225, 0, 0, 0, 0, 722, 4266 

+ po/tg.po,  150, 214, 257, 1, 1, 603, 4147, 754, 4362 

+ po/te.po,  683, 4083, 3336, 0, 0, 0, 0, 683, 4083 

+ po/ta.po,  684, 4084, 3444, 0, 0, 0, 0, 684, 4084 

+ po/sv.po,  730, 4306, 4070, 0, 0, 0, 0, 730, 4306 

+ po/sr@latin.po,  721, 4267, 4427, 0, 0, 0, 0, 721, 4267 

+ po/sr.po,  729, 4304, 4458, 0, 0, 0, 0, 729, 4304 

+ po/sq.po,  1093, 4942, 5720, 0, 0, 0, 0, 1093, 4942 

+ po/sl.po,  727, 4279, 4169, 0, 0, 0, 0, 727, 4279 

+ po/sk.po,  726, 4278, 4046, 0, 0, 0, 0, 726, 4278 

+ po/si.po,  659, 1941, 2161, 0, 0, 443, 3122, 1102, 5063 

+ po/rw.po,  202, 244, 252, 648, 3615, 170, 347, 1020, 4206 

+ po/ru.po,  726, 4278, 3713, 0, 0, 0, 0, 726, 4278 

+ po/ro.po,  730, 4306, 4728, 0, 0, 0, 0, 730, 4306 

+ po/pt_BR.po,  730, 4306, 4833, 0, 0, 0, 0, 730, 4306 

+ po/pt.po,  722, 4266, 4599, 0, 0, 0, 0, 722, 4266 

+ po/ps.po,  622, 1929, 2072, 0, 0, 475, 3081, 1097, 5010 

+ po/pl.po,  729, 4304, 4077, 0, 0, 0, 0, 729, 4304 

+ po/pa.po,  727, 4292, 4635, 0, 0, 2, 12, 729, 4304 

+ po/or.po,  684, 4084, 4096, 0, 0, 0, 0, 684, 4084 

+ po/oc.po,  721, 4267, 4839, 0, 0, 0, 0, 721, 4267 

+ po/nn.po,  655, 3549, 3368, 1, 1, 92, 799, 748, 4349 

+ po/nl.po,  726, 4278, 4222, 0, 0, 0, 0, 726, 4278 

+ po/ne.po,  440, 1902, 1902, 263, 1988, 26, 414, 729, 4304 

+ po/nds.po,  239, 438, 408, 0, 0, 861, 4515, 1100, 4953 

+ po/nb.po,  730, 4306, 4075, 0, 0, 0, 0, 730, 4306 

+ po/my.po,  475, 1513, 1137, 0, 0, 633, 3491, 1108, 5004 

+ po/ms.po,  541, 2390, 2105, 176, 884, 303, 932, 1020, 4206 

+ po/mr.po,  683, 4083, 3807, 0, 0, 0, 0, 683, 4083 

+ po/mn.po,  507, 2180, 1901, 211, 1293, 301, 732, 1019, 4205 

+ po/ml.po,  721, 4271, 3425, 0, 0, 0, 0, 721, 4271 

+ po/mk.po,  739, 4316, 4378, 0, 0, 0, 0, 739, 4316 

+ po/mi.po,  54, 68, 74, 131, 232, 835, 3906, 1020, 4206 

+ po/mg.po,  1032, 4328, 4766, 14, 45, 0, 0, 1046, 4373 

+ po/mai.po,  1104, 4965, 5469, 0, 0, 0, 0, 1104, 4965 

+ po/lv.po,  729, 4304, 3724, 0, 0, 0, 0, 729, 4304 

+ po/lt.po,  729, 4304, 3590, 0, 0, 0, 0, 729, 4304 

+ po/ln.po,  724, 4280, 4594, 0, 0, 0, 0, 724, 4280 

+ po/la.po,  8, 9, 16, 0, 0, 1085, 4933, 1093, 4942 

+ po/ku.po,  297, 676, 760, 19, 39, 786, 4348, 1102, 5063 

+ po/ko.po,  729, 4304, 3092, 0, 0, 0, 0, 729, 4304 

+ po/kn.po,  684, 4084, 3430, 0, 0, 0, 0, 684, 4084 

+ po/km.po,  751, 4360, 1654, 0, 0, 0, 0, 751, 4360 

+ po/kk.po,  669, 3162, 2540, 0, 0, 57, 1116, 726, 4278 

+ po/ka.po,  311, 491, 475, 371, 1693, 352, 2099, 1034, 4283 

+ po/ja.po,  729, 4304, 1001, 0, 0, 0, 0, 729, 4304 

+ po/it.po,  729, 4304, 4489, 0, 0, 0, 0, 729, 4304 

+ po/is.po,  713, 3974, 3681, 0, 0, 7, 296, 720, 4270 

+ po/id.po,  730, 4306, 3965, 0, 0, 0, 0, 730, 4306 

+ po/hy.po,  156, 415, 357, 0, 0, 877, 3917, 1033, 4332 

+ po/hu.po,  729, 4304, 3699, 0, 0, 0, 0, 729, 4304 

+ po/hr.po,  726, 4282, 4094, 0, 0, 4, 24, 730, 4306 

+ po/hi.po,  683, 4083, 4844, 0, 0, 0, 0, 683, 4083 

+ po/he.po,  722, 4266, 3803, 0, 0, 0, 0, 722, 4266 

+ po/gu.po,  712, 4184, 4421, 0, 0, 0, 0, 712, 4184 

+ po/gl.po,  729, 4304, 4856, 0, 0, 0, 0, 729, 4304 

+ po/gd.po,  721, 4267, 6000, 0, 0, 0, 0, 721, 4267 

+ po/ga.po,  397, 996, 1124, 35, 158, 315, 3122, 747, 4276 

+ po/fur.po,  725, 4280, 4923, 0, 0, 4, 24, 729, 4304 

+ po/fr.po,  729, 4304, 4968, 0, 0, 0, 0, 729, 4304 

+ po/fi.po,  729, 4304, 3184, 0, 0, 0, 0, 729, 4304 

+ po/fa.po,  729, 4304, 4671, 0, 0, 0, 0, 729, 4304 

+ po/eu.po,  730, 4306, 3503, 0, 0, 0, 0, 730, 4306 

+ po/et.po,  747, 4276, 3369, 0, 0, 0, 0, 747, 4276 

+ po/es.po,  730, 4306, 4847, 0, 0, 0, 0, 730, 4306 

+ po/eo.po,  710, 4082, 3751, 2, 10, 4, 24, 716, 4116 

+ po/en_GB.po,  729, 4304, 4335, 0, 0, 0, 0, 729, 4304 

+ po/en_CA.po,  1028, 4339, 4344, 0, 0, 0, 0, 1028, 4339 

+ po/en@shaw.po,  1110, 5063, 5069, 0, 0, 0, 0, 1110, 5063 

+ po/el.po,  730, 4306, 4507, 0, 0, 0, 0, 730, 4306 

+ po/dz.po,  1099, 4983, 2458, 0, 0, 0, 0, 1099, 4983 

+ po/de.po,  730, 4306, 4281, 0, 0, 0, 0, 730, 4306 

+ po/da.po,  730, 4306, 3945, 0, 0, 0, 0, 730, 4306 

+ po/cy.po,  953, 3827, 4389, 100, 747, 50, 388, 1103, 4962 

+ po/cs.po,  729, 4304, 4121, 0, 0, 0, 0, 729, 4304 

+ po/crh.po,  754, 4362, 3447, 0, 0, 0, 0, 754, 4362 

+ po/ca@valencia.po,  722, 4266, 4981, 0, 0, 0, 0, 722, 4266 

+ po/ca.po,  729, 4304, 5041, 0, 0, 0, 0, 729, 4304 

+ po/bs.po,  685, 4087, 4003, 0, 0, 0, 0, 685, 4087 

+ po/br.po,  787, 2495, 2806, 103, 787, 214, 1681, 1104, 4963 

+ po/bn_IN.po,  684, 4084, 4396, 0, 0, 0, 0, 684, 4084 

+ po/bn.po,  1107, 5003, 5417, 0, 0, 0, 0, 1107, 5003 

+ po/bg.po,  722, 4266, 4420, 0, 0, 0, 0, 722, 4266 

+ po/be@latin.po,  1099, 4948, 4656, 0, 0, 0, 0, 1099, 4948 

+ po/be.po,  721, 4271, 3896, 0, 0, 0, 0, 721, 4271 

+ po/az.po,  548, 2626, 2196, 176, 884, 296, 696, 1020, 4206 

+ po/ast.po,  734, 4323, 4477, 0, 0, 0, 0, 734, 4323 

+ po/as.po,  684, 4084, 4244, 0, 0, 0, 0, 684, 4084 

+ po/ar.po,  721, 4265, 4174, 0, 0, 0, 0, 721, 4265 

+ po/an.po,  688, 4104, 4705, 0, 0, 0, 0, 688, 4104 

+ po/am.po,  257, 521, 547, 203, 553, 560, 3132, 1020, 4206 

+ po/af.po,  683, 3317, 3347, 41, 824, 3, 138, 727, 4279 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,62 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/en_GB.gmo,  596, 3578, 3578, 0, 0, 0, 0, 596, 3578 

+ po/tr.gmo,  614, 2379, 2085, 0, 0, 0, 0, 614, 2379 

+ po/gegl-0.4.pot,  0, 0, 0, 0, 0, 1830, 8885, 1830, 8885 

+ po/de.gmo,  1609, 6737, 5861, 0, 0, 0, 0, 1609, 6737 

+ po/ko.gmo,  148, 345, 285, 0, 0, 0, 0, 148, 345 

+ po/mr.gmo,  1490, 6617, 5826, 0, 0, 0, 0, 1490, 6617 

+ po/is.gmo,  753, 1436, 1353, 0, 0, 0, 0, 753, 1436 

+ po/sr.po,  1504, 7291, 7040, 0, 0, 0, 0, 1504, 7291 

+ po/lv.gmo,  1418, 5684, 5158, 0, 0, 0, 0, 1418, 5684 

+ po/it.gmo,  1878, 9197, 9885, 0, 0, 0, 0, 1878, 9197 

+ po/uk.po,  1344, 4646, 4344, 149, 505, 264, 3304, 1757, 8455 

+ po/pt_BR.gmo,  1764, 8483, 9471, 0, 0, 0, 0, 1764, 8483 

+ po/zh_CN.gmo,  1878, 9197, 3187, 0, 0, 0, 0, 1878, 9197 

+ po/el.po,  1878, 9197, 9419, 0, 0, 0, 0, 1878, 9197 

+ po/eu.gmo,  1719, 8130, 6866, 0, 0, 0, 0, 1719, 8130 

+ po/ca.gmo,  1878, 9197, 11067, 0, 0, 0, 0, 1878, 9197 

+ po/bs.gmo,  1327, 6792, 6166, 0, 0, 0, 0, 1327, 6792 

+ po/de.po,  1609, 6737, 5861, 75, 491, 121, 1509, 1805, 8737 

+ po/zh_CN.po,  1878, 9197, 3187, 0, 0, 0, 0, 1878, 9197 

+ po/tr.po,  614, 2379, 2085, 34, 64, 765, 4492, 1413, 6935 

+ po/da.po,  1852, 9021, 8014, 0, 0, 0, 0, 1852, 9021 

+ po/sl.po,  1591, 6690, 6319, 66, 433, 221, 2074, 1878, 9197 

+ po/da.gmo,  1852, 9021, 8014, 0, 0, 0, 0, 1852, 9021 

+ po/it.po,  1878, 9197, 9885, 0, 0, 0, 0, 1878, 9197 

+ po/sk.gmo,  68, 151, 159, 0, 0, 0, 0, 68, 151 

+ po/mr.po,  1490, 6617, 5826, 11, 51, 256, 1787, 1757, 8455 

+ po/pt.po,  1504, 7265, 8037, 6, 66, 7, 57, 1517, 7388 

+ po/ca.po,  1878, 9197, 11067, 0, 0, 0, 0, 1878, 9197 

+ po/sv.po,  1855, 9050, 7846, 0, 0, 0, 0, 1855, 9050 

+ po/nb.gmo,  122, 187, 177, 0, 0, 0, 0, 122, 187 

+ po/pt.gmo,  1504, 7265, 8037, 0, 0, 0, 0, 1504, 7265 

+ po/oc.gmo,  1292, 5922, 6708, 0, 0, 0, 0, 1292, 5922 

+ po/oc.po,  1292, 5922, 6708, 0, 0, 196, 1298, 1488, 7220 

+ po/eo.po,  127, 178, 173, 106, 209, 1478, 7709, 1711, 8096 

+ po/pl.gmo,  1878, 9197, 8587, 0, 0, 0, 0, 1878, 9197 

+ po/sk.po,  68, 151, 159, 0, 0, 1416, 7018, 1484, 7169 

+ po/sl.gmo,  1591, 6690, 6319, 0, 0, 0, 0, 1591, 6690 

+ po/nb.po,  122, 187, 177, 626, 1556, 747, 5495, 1495, 7238 

+ po/es.po,  1860, 9095, 10856, 0, 0, 0, 0, 1860, 9095 

+ po/pt_BR.po,  1764, 8483, 9471, 0, 0, 1, 2, 1765, 8485 

+ po/ko.po,  148, 345, 285, 105, 247, 698, 4805, 951, 5397 

+ po/el.gmo,  1878, 9197, 9419, 0, 0, 0, 0, 1878, 9197 

+ po/es.gmo,  1860, 9095, 10856, 0, 0, 0, 0, 1860, 9095 

+ po/eu.po,  1719, 8130, 6866, 0, 0, 0, 0, 1719, 8130 

+ po/sr.gmo,  1504, 7291, 7040, 0, 0, 0, 0, 1504, 7291 

+ po/id.gmo,  76, 115, 110, 0, 0, 0, 0, 76, 115 

+ po/pl.po,  1878, 9197, 8587, 0, 0, 0, 0, 1878, 9197 

+ po/en_GB.po,  596, 3578, 3578, 196, 913, 159, 906, 951, 5397 

+ po/fr.po,  1186, 5686, 6517, 2, 55, 241, 1264, 1429, 7005 

+ po/sv.gmo,  1855, 9050, 7846, 0, 0, 0, 0, 1855, 9050 

+ po/is.po,  753, 1436, 1353, 9, 19, 1111, 7682, 1873, 9137 

+ po/ru.gmo,  1078, 2944, 2870, 0, 0, 0, 0, 1078, 2944 

+ po/fr.gmo,  1186, 5686, 6517, 0, 0, 0, 0, 1186, 5686 

+ po/uk.gmo,  1344, 4646, 4344, 0, 0, 0, 0, 1344, 4646 

+ po/lv.po,  1418, 5684, 5158, 111, 758, 218, 1963, 1747, 8405 

+ po/id.po,  76, 115, 110, 313, 714, 562, 4568, 951, 5397 

+ po/ru.po,  1078, 2944, 2870, 124, 434, 645, 5605, 1847, 8983 

+ po/gl.gmo,  170, 283, 325, 0, 0, 0, 0, 170, 283 

+ po/bs.po,  1327, 6792, 6166, 0, 0, 0, 0, 1327, 6792 

+ po/gl.po,  170, 283, 325, 132, 287, 649, 4827, 951, 5397 

+ po/eo.gmo,  127, 178, 173, 0, 0, 0, 0, 127, 178 

@@ -0,0 +1,116 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/Rules-quot)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xb8 in position 29: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/Makefile.in.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfc in position 10: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/LINGUAS)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe6 in position 45: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/ChangeLog.0)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/ChangeLog)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xb6 in position 0: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-runtime/po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++-gnome/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++-gnome/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++-gnome/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++-kde/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++-kde/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++-kde/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++-qt/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++-qt/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++-wxwidgets/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++-wxwidgets/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c++/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c-gnome/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c-gnome/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c-gnome/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c-gnome3/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c-gnome3/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c-gnome3/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-c/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-clisp/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-clisp/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-csharp-forms/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-csharp-forms/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-csharp/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-csharp/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-gawk/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-gawk/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-guile/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-guile/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-java-awt/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-java-awt/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-java-qtjambi/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-java-qtjambi/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-java-swing/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-java-swing/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-java/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-java/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-librep/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-librep/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-objc-gnome/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-objc-gnome/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-objc-gnome/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-objc-gnustep/po/LocaleAliases)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-objc-gnustep/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-objc-gnustep/po/GNUmakefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-objc/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-objc/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-objc/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-pascal/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-pascal/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-perl/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-perl/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-php/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-php/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-python/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-python/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-sh/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-sh/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-smalltalk/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-smalltalk/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-tcl-tk/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-tcl-tk/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-tcl/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-tcl/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-ycp/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/hello-ycp/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/po/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/po/mmsmallpo.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/examples/po/xsmallpot.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/Rules-quot)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xa5 in position 36: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/Makevars.template)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/ChangeLog.1)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf5 in position 4: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/LINGUAS)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 43: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/en@quot.header)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe8 in position 6: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe3 in position 38: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/ChangeLog.0)

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/ChangeLog)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xdd in position 1: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gettext-tools/po/en@boldquot.header)

The added file is too large to be shown here, see it at: results/f31/gettext-0.20.1-2.fc31.src.rpm.stats.csv
@@ -0,0 +1,14 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./git-gui/po/po2msg.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./git-gui/po/glossary/txt-to-pot.sh)

+ translate.tools.pocount: ERROR: Failed to guess file type.

+ translate.tools.pocount: ERROR: Unknown filetype (./git-gui/po/glossary/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./git-gui/po/README)

+ translate.tools.pocount: ERROR: Unknown filetype (./git-gui/po/.gitignore)

+ translate.tools.pocount: ERROR: Unknown filetype (./git-gui/po/glossary/txt-to-pot.sh)

+ translate.tools.pocount: ERROR: Failed to guess file type.

+ translate.tools.pocount: ERROR: Unknown filetype (./git-gui/po/glossary/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./gitk-git/po/po2msg.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./gitk-git/po/.gitignore)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/TEAMS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/README)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,65 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ git-gui/po/zh_cn.po,  366, 1755, 665, 7, 18, 17, 60, 390, 1833 

+ git-gui/po/vi.po,  543, 2517, 3958, 0, 0, 0, 0, 543, 2517 

+ git-gui/po/sv.po,  547, 2534, 2614, 0, 0, 0, 0, 547, 2534 

+ git-gui/po/ru.po,  520, 2359, 2239, 0, 0, 0, 0, 520, 2359 

+ git-gui/po/pt_pt.po,  550, 2546, 2885, 0, 0, 0, 0, 550, 2546 

+ git-gui/po/pt_br.po,  520, 2359, 2659, 0, 0, 0, 0, 520, 2359 

+ git-gui/po/nb.po,  474, 1882, 1982, 0, 0, 39, 443, 513, 2325 

+ git-gui/po/ja.po,  546, 2532, 896, 0, 0, 1, 2, 547, 2534 

+ git-gui/po/it.po,  519, 2358, 2830, 0, 0, 1, 1, 520, 2359 

+ git-gui/po/hu.po,  514, 2328, 2367, 0, 0, 0, 0, 514, 2328 

+ git-gui/po/glossary/zh_cn.po,  34, 70, 34, 0, 0, 0, 0, 34, 70 

+ git-gui/po/glossary/pt_pt.po,  67, 119, 127, 0, 0, 0, 0, 67, 119 

+ git-gui/po/glossary/pt_br.po,  37, 62, 54, 0, 0, 1, 13, 38, 75 

+ git-gui/po/glossary/it.po,  37, 74, 195, 0, 0, 0, 0, 37, 74 

+ git-gui/po/glossary/git-gui-glossary.pot,  0, 0, 0, 0, 0, 38, 75, 38, 75 

+ git-gui/po/glossary/fr.po,  36, 61, 51, 0, 0, 1, 13, 37, 74 

+ git-gui/po/glossary/el.po,  36, 60, 57, 1, 2, 1, 13, 38, 75 

+ git-gui/po/glossary/de.po,  38, 75, 159, 0, 0, 0, 0, 38, 75 

+ git-gui/po/glossary/bg.po,  67, 119, 120, 0, 0, 0, 0, 67, 119 

+ git-gui/po/git-gui.pot,  0, 0, 0, 0, 0, 520, 2359, 520, 2359 

+ git-gui/po/fr.po,  520, 2359, 2916, 0, 0, 0, 0, 520, 2359 

+ git-gui/po/el.po,  381, 1827, 1982, 4, 9, 6, 6, 391, 1842 

+ git-gui/po/de.po,  520, 2359, 2430, 0, 0, 0, 0, 520, 2359 

+ git-gui/po/bg.po,  565, 2607, 3145, 0, 0, 0, 0, 565, 2607 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ git-gui/po/glossary/zh_cn.po,  34, 70, 34, 0, 0, 0, 0, 34, 70 

+ git-gui/po/glossary/pt_pt.po,  67, 119, 127, 0, 0, 0, 0, 67, 119 

+ git-gui/po/glossary/pt_br.po,  37, 62, 54, 0, 0, 1, 13, 38, 75 

+ git-gui/po/glossary/it.po,  37, 74, 195, 0, 0, 0, 0, 37, 74 

+ git-gui/po/glossary/git-gui-glossary.pot,  0, 0, 0, 0, 0, 38, 75, 38, 75 

+ git-gui/po/glossary/fr.po,  36, 61, 51, 0, 0, 1, 13, 37, 74 

+ git-gui/po/glossary/el.po,  36, 60, 57, 1, 2, 1, 13, 38, 75 

+ git-gui/po/glossary/de.po,  38, 75, 159, 0, 0, 0, 0, 38, 75 

+ git-gui/po/glossary/bg.po,  67, 119, 120, 0, 0, 0, 0, 67, 119 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ gitk-git/po/vi.po,  307, 1135, 1820, 0, 0, 0, 0, 307, 1135 

+ gitk-git/po/sv.po,  311, 1143, 1160, 0, 0, 0, 0, 311, 1143 

+ gitk-git/po/ru.po,  317, 1167, 1198, 0, 0, 0, 0, 317, 1167 

+ gitk-git/po/pt_pt.po,  311, 1143, 1351, 0, 0, 0, 0, 311, 1143 

+ gitk-git/po/pt_br.po,  279, 970, 1113, 16, 116, 12, 49, 307, 1135 

+ gitk-git/po/ja.po,  311, 1143, 515, 0, 0, 0, 0, 311, 1143 

+ gitk-git/po/it.po,  274, 963, 1181, 17, 119, 16, 53, 307, 1135 

+ gitk-git/po/hu.po,  277, 976, 1025, 18, 121, 12, 38, 307, 1135 

+ gitk-git/po/fr.po,  311, 1143, 1470, 0, 0, 0, 0, 311, 1143 

+ gitk-git/po/es.po,  184, 634, 780, 46, 179, 77, 322, 307, 1135 

+ gitk-git/po/de.po,  307, 1135, 1107, 0, 0, 0, 0, 307, 1135 

+ gitk-git/po/ca.po,  307, 1135, 1494, 0, 0, 0, 0, 307, 1135 

+ gitk-git/po/bg.po,  317, 1167, 1340, 0, 0, 0, 0, 317, 1167 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_CN.po,  4674, 31373, 12269, 0, 0, 0, 0, 4674, 31373 

+ po/vi.po,  4674, 31373, 46661, 0, 0, 0, 0, 4674, 31373 

+ po/sv.po,  4676, 31426, 30070, 0, 0, 0, 0, 4676, 31426 

+ po/ru.po,  3521, 23660, 24475, 0, 0, 1060, 7003, 4581, 30663 

+ po/pt_PT.po,  3198, 21526, 24299, 0, 0, 0, 0, 3198, 21526 

+ po/ko.po,  3608, 24346, 21312, 0, 0, 0, 0, 3608, 24346 

+ po/it.po,  4674, 31373, 36494, 0, 0, 0, 0, 4674, 31373 

+ po/is.po,  14, 81, 80, 0, 0, 0, 0, 14, 81 

+ po/git.pot,  0, 0, 0, 0, 0, 4674, 31373, 4674, 31373 

+ po/fr.po,  4674, 31373, 36716, 0, 0, 0, 0, 4674, 31373 

+ po/es.po,  4674, 31373, 35540, 0, 0, 0, 0, 4674, 31373 

+ po/el.po,  1038, 7892, 9184, 0, 0, 3325, 21434, 4363, 29326 

+ po/de.po,  4674, 31373, 32001, 0, 0, 0, 0, 4674, 31373 

+ po/ca.po,  3802, 24528, 29905, 491, 3374, 383, 3524, 4676, 31426 

+ po/bg.po,  4674, 31373, 38306, 0, 0, 0, 0, 4674, 31373 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,69 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  41, 271, 102, 0, 0, 0, 0, 41, 271 

+ po/zh_HK.po,  29, 161, 70, 0, 0, 0, 0, 29, 161 

+ po/zh_CN.po,  42, 278, 100, 0, 0, 0, 0, 42, 278 

+ po/vi.po,  29, 161, 218, 0, 0, 0, 0, 29, 161 

+ po/uk.po,  24, 135, 125, 0, 0, 0, 0, 24, 135 

+ po/ug.po,  29, 161, 137, 0, 0, 0, 0, 29, 161 

+ po/tr.po,  41, 269, 206, 0, 0, 0, 0, 41, 269 

+ po/th.po,  29, 161, 74, 0, 0, 0, 0, 29, 161 

+ po/tg.po,  29, 161, 168, 0, 0, 0, 0, 29, 161 

+ po/te.po,  28, 153, 140, 0, 0, 0, 0, 28, 153 

+ po/ta.po,  16, 86, 81, 0, 0, 0, 0, 16, 86 

+ po/sv.po,  41, 269, 256, 0, 0, 0, 0, 41, 269 

+ po/sr@latin.po,  36, 229, 276, 0, 0, 0, 0, 36, 229 

+ po/sr.po,  41, 269, 323, 0, 0, 0, 0, 41, 269 

+ po/sl.po,  41, 269, 324, 0, 0, 0, 0, 41, 269 

+ po/sk.po,  37, 247, 308, 0, 0, 2, 11, 39, 258 

+ po/ru.po,  41, 271, 277, 0, 0, 0, 0, 41, 271 

+ po/ro.po,  41, 269, 355, 0, 0, 0, 0, 41, 269 

+ po/pt_BR.po,  41, 269, 321, 0, 0, 0, 0, 41, 269 

+ po/pt.po,  28, 157, 181, 0, 0, 0, 0, 28, 157 

+ po/pl.po,  41, 269, 301, 0, 0, 0, 0, 41, 269 

+ po/pa.po,  29, 161, 193, 0, 0, 0, 0, 29, 161 

+ po/or.po,  24, 135, 137, 0, 0, 0, 0, 24, 135 

+ po/oc.po,  36, 229, 305, 0, 0, 2, 21, 38, 250 

+ po/nl.po,  40, 262, 237, 0, 0, 0, 0, 40, 262 

+ po/ne.po,  24, 139, 120, 0, 0, 5, 24, 29, 163 

+ po/nb.po,  32, 174, 159, 0, 0, 4, 55, 36, 229 

+ po/mr.po,  24, 135, 124, 0, 0, 0, 0, 24, 135 

+ po/ml.po,  29, 163, 137, 0, 0, 0, 0, 29, 163 

+ po/lv.po,  41, 269, 274, 0, 0, 0, 0, 41, 269 

+ po/lt.po,  41, 269, 270, 0, 0, 0, 0, 41, 269 

+ po/ko.po,  41, 269, 222, 0, 0, 0, 0, 41, 269 

+ po/kn.po,  16, 86, 84, 0, 0, 0, 0, 16, 86 

+ po/km.po,  24, 135, 80, 0, 0, 0, 0, 24, 135 

+ po/kk.po,  28, 153, 145, 0, 0, 13, 118, 41, 271 

+ po/ja.po,  28, 157, 68, 0, 0, 0, 0, 28, 157 

+ po/it.po,  41, 269, 316, 0, 0, 0, 0, 41, 269 

+ po/id.po,  41, 269, 261, 0, 0, 0, 0, 41, 269 

+ po/hu.po,  41, 269, 267, 0, 0, 0, 0, 41, 269 

+ po/hr.po,  41, 269, 267, 0, 0, 0, 0, 41, 269 

+ po/hi.po,  29, 161, 195, 0, 0, 0, 0, 29, 161 

+ po/he.po,  32, 171, 165, 0, 0, 4, 58, 36, 229 

+ po/gu.po,  16, 86, 110, 0, 0, 0, 0, 16, 86 

+ po/gl.po,  41, 269, 376, 0, 0, 0, 0, 41, 269 

+ po/gd.po,  29, 163, 214, 0, 0, 0, 0, 29, 163 

+ po/fur.po,  40, 263, 348, 0, 0, 0, 0, 40, 263 

+ po/fr.po,  41, 269, 363, 0, 0, 0, 0, 41, 269 

+ po/fi.po,  29, 165, 126, 0, 0, 12, 106, 41, 271 

+ po/fa.po,  29, 163, 191, 0, 0, 0, 0, 29, 163 

+ po/eu.po,  41, 269, 256, 0, 0, 0, 0, 41, 269 

+ po/et.po,  29, 161, 128, 0, 0, 0, 0, 29, 161 

+ po/es.po,  41, 269, 344, 0, 0, 0, 0, 41, 269 

+ po/eo.po,  22, 123, 123, 2, 11, 5, 29, 29, 163 

+ po/en_GB.po,  41, 269, 269, 0, 0, 0, 0, 41, 269 

+ po/en_CA.po,  1, 4, 4, 0, 0, 0, 0, 1, 4 

+ po/el.po,  29, 163, 178, 0, 0, 0, 0, 29, 163 

+ po/de.po,  41, 269, 287, 0, 0, 0, 0, 41, 269 

+ po/da.po,  42, 278, 266, 0, 0, 0, 0, 42, 278 

+ po/cs.po,  41, 269, 287, 0, 0, 0, 0, 41, 269 

+ po/ca@valencia.po,  29, 163, 249, 0, 0, 0, 0, 29, 163 

+ po/ca.po,  41, 269, 420, 0, 0, 0, 0, 41, 269 

+ po/bs.po,  28, 157, 154, 0, 0, 0, 0, 28, 157 

+ po/bn_IN.po,  16, 86, 98, 0, 0, 0, 0, 16, 86 

+ po/bg.po,  29, 163, 199, 0, 0, 0, 0, 29, 163 

+ po/be.po,  39, 258, 245, 0, 0, 0, 0, 39, 258 

+ po/as.po,  29, 161, 155, 0, 0, 0, 0, 29, 161 

+ po/ar.po,  28, 153, 161, 0, 0, 0, 0, 28, 153 

+ po/an.po,  29, 161, 199, 0, 0, 0, 0, 29, 161 

@@ -0,0 +1,6 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/po2tbl.sed.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,99 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  988, 5877, 1967, 114, 938, 37, 291, 1139, 7106 

+ po/zh_HK.po,  905, 5703, 1802, 0, 0, 0, 0, 905, 5703 

+ po/zh_CN.po,  1067, 6647, 2046, 0, 0, 0, 0, 1067, 6647 

+ po/yi.po,  105, 688, 692, 127, 715, 515, 3374, 747, 4777 

+ po/xh.po,  131, 902, 729, 142, 769, 474, 3106, 747, 4777 

+ po/wa.po,  68, 281, 386, 123, 657, 556, 3839, 747, 4777 

+ po/vi.po,  916, 5762, 8063, 0, 0, 0, 0, 916, 5762 

+ po/uk.po,  903, 5675, 5555, 0, 0, 0, 0, 903, 5675 

+ po/ug.po,  860, 5426, 5080, 0, 0, 4, 38, 864, 5464 

+ po/tt.po,  81, 345, 297, 101, 513, 565, 3919, 747, 4777 

+ po/tr.po,  1154, 7302, 6381, 0, 0, 0, 0, 1154, 7302 

+ po/tl.po,  150, 1021, 1212, 129, 676, 468, 3080, 747, 4777 

+ po/th.po,  1066, 6642, 2868, 0, 0, 0, 0, 1066, 6642 

+ po/tg.po,  79, 119, 115, 27, 101, 758, 5244, 864, 5464 

+ po/te.po,  905, 5703, 4929, 0, 0, 0, 0, 905, 5703 

+ po/ta.po,  905, 5703, 4992, 0, 0, 0, 0, 905, 5703 

+ po/sv.po,  1154, 7302, 6987, 0, 0, 0, 0, 1154, 7302 

+ po/sr@latin.po,  1131, 7036, 7206, 0, 0, 0, 0, 1131, 7036 

+ po/sr@ije.po,  106, 706, 648, 134, 736, 507, 3335, 747, 4777 

+ po/sr.po,  1154, 7302, 7486, 0, 0, 0, 0, 1154, 7302 

+ po/sq.po,  358, 2080, 2542, 98, 476, 291, 2221, 747, 4777 

+ po/sl.po,  1150, 7157, 7302, 0, 0, 0, 0, 1150, 7157 

+ po/sk.po,  1092, 6591, 6603, 39, 446, 8, 69, 1139, 7106 

+ po/si.po,  97, 385, 417, 115, 566, 535, 3826, 747, 4777 

+ po/rw.po,  32, 36, 44, 239, 1640, 476, 3101, 747, 4777 

+ po/ru.po,  1050, 6425, 6351, 51, 374, 30, 237, 1131, 7036 

+ po/ro.po,  1154, 7302, 8478, 0, 0, 0, 0, 1154, 7302 

+ po/pt_BR.po,  1154, 7302, 8492, 0, 0, 0, 0, 1154, 7302 

+ po/pt.po,  1060, 6469, 7445, 0, 0, 6, 173, 1066, 6642 

+ po/ps.po,  131, 466, 588, 69, 305, 547, 4006, 747, 4777 

+ po/pl.po,  1154, 7302, 7469, 0, 0, 0, 0, 1154, 7302 

+ po/pa.po,  976, 5551, 6274, 110, 1091, 68, 660, 1154, 7302 

+ po/or.po,  905, 5703, 5749, 0, 0, 0, 0, 905, 5703 

+ po/oc.po,  1066, 6642, 8396, 0, 0, 0, 0, 1066, 6642 

+ po/nn.po,  362, 2080, 2137, 89, 460, 296, 2237, 747, 4777 

+ po/nl.po,  665, 2857, 2879, 260, 2059, 225, 2241, 1150, 7157 

+ po/ne.po,  403, 1706, 1792, 403, 2232, 301, 3018, 1107, 6956 

+ po/nds.po,  96, 259, 278, 39, 201, 612, 4317, 747, 4777 

+ po/nb.po,  1088, 6534, 6548, 1, 8, 38, 476, 1127, 7018 

+ po/ms.po,  105, 698, 651, 135, 744, 507, 3335, 747, 4777 

+ po/mr.po,  905, 5703, 5424, 0, 0, 0, 0, 905, 5703 

+ po/mn.po,  131, 902, 774, 142, 769, 474, 3106, 747, 4777 

+ po/ml.po,  587, 3073, 2653, 42, 333, 235, 2058, 864, 5464 

+ po/mk.po,  347, 2025, 2333, 104, 515, 296, 2237, 747, 4777 

+ po/mg.po,  164, 1135, 1210, 121, 630, 462, 3012, 747, 4777 

+ po/mai.po,  287, 1667, 1866, 93, 452, 367, 2658, 747, 4777 

+ po/lv.po,  1131, 7036, 6454, 0, 0, 0, 0, 1131, 7036 

+ po/lt.po,  1154, 7302, 6283, 0, 0, 0, 0, 1154, 7302 

+ po/ku.po,  41, 71, 77, 90, 442, 616, 4264, 747, 4777 

+ po/ko.po,  1154, 7302, 6382, 0, 0, 0, 0, 1154, 7302 

+ po/kn.po,  904, 5697, 5056, 0, 0, 0, 0, 904, 5697 

+ po/kk.po,  339, 1072, 1019, 0, 0, 811, 6085, 1150, 7157 

+ po/ka.po,  193, 1287, 1058, 120, 605, 434, 2885, 747, 4777 

+ po/ja.po,  671, 4078, 1761, 92, 660, 101, 731, 864, 5469 

+ po/it.po,  1154, 7302, 8282, 0, 0, 0, 0, 1154, 7302 

+ po/is.po,  163, 788, 744, 160, 917, 589, 4034, 912, 5739 

+ po/id.po,  1154, 7302, 7413, 0, 0, 0, 0, 1154, 7302 

+ po/hy.po,  643, 4085, 3998, 42, 304, 62, 388, 747, 4777 

+ po/hu.po,  1154, 7302, 7138, 0, 0, 0, 0, 1154, 7302 

+ po/hr.po,  178, 1017, 968, 0, 0, 652, 4237, 830, 5254 

+ po/hi.po,  905, 5703, 6753, 0, 0, 0, 0, 905, 5703 

+ po/he.po,  1127, 7018, 7022, 0, 0, 0, 0, 1127, 7018 

+ po/gu.po,  904, 5697, 6111, 0, 0, 0, 0, 904, 5697 

+ po/gl.po,  1154, 7302, 9157, 0, 0, 0, 0, 1154, 7302 

+ po/gd.po,  149, 400, 516, 0, 0, 958, 6556, 1107, 6956 

+ po/ga.po,  189, 628, 758, 48, 219, 534, 3954, 771, 4801 

+ po/fur.po,  681, 3407, 4189, 5, 38, 468, 3857, 1154, 7302 

+ po/fr.po,  1154, 7302, 9229, 0, 0, 0, 0, 1154, 7302 

+ po/fi.po,  662, 3319, 2746, 280, 2275, 189, 1442, 1131, 7036 

+ po/fa.po,  492, 2602, 2979, 38, 244, 291, 2375, 821, 5221 

+ po/eu.po,  1154, 7302, 6919, 0, 0, 0, 0, 1154, 7302 

+ po/et.po,  536, 2825, 2459, 151, 897, 444, 3314, 1131, 7036 

+ po/es.po,  1154, 7302, 9275, 0, 0, 0, 0, 1154, 7302 

+ po/eo.po,  626, 3373, 3327, 245, 2038, 202, 1324, 1073, 6735 

+ po/en_GB.po,  1154, 7302, 7317, 0, 0, 0, 0, 1154, 7302 

+ po/en_CA.po,  771, 4801, 4804, 0, 0, 0, 0, 771, 4801 

+ po/en@shaw.po,  423, 2582, 2581, 66, 377, 258, 1818, 747, 4777 

+ po/el.po,  717, 3615, 3831, 300, 2566, 122, 925, 1139, 7106 

+ po/dz.po,  166, 1138, 621, 123, 637, 458, 3002, 747, 4777 

+ po/de.po,  1154, 7302, 7440, 0, 0, 0, 0, 1154, 7302 

+ po/da.po,  1154, 7302, 7090, 0, 0, 0, 0, 1154, 7302 

+ po/cy.po,  270, 1620, 1788, 101, 503, 376, 2654, 747, 4777 

+ po/cs.po,  1154, 7302, 7048, 0, 0, 0, 0, 1154, 7302 

+ po/ca@valencia.po,  1107, 6956, 9502, 0, 0, 0, 0, 1107, 6956 

+ po/ca.po,  1154, 7302, 9962, 0, 0, 0, 0, 1154, 7302 

+ po/bs.po,  904, 5697, 5735, 0, 0, 0, 0, 904, 5697 

+ po/bn_IN.po,  915, 5750, 5872, 0, 0, 0, 0, 915, 5750 

+ po/bn.po,  447, 2552, 2699, 57, 301, 243, 1924, 747, 4777 

+ po/bg.po,  914, 5755, 6494, 0, 0, 0, 0, 914, 5755 

+ po/be@latin.po,  347, 2025, 1955, 104, 515, 296, 2237, 747, 4777 

+ po/be.po,  865, 5478, 5365, 0, 0, 0, 0, 865, 5478 

+ po/az.po,  104, 696, 627, 135, 744, 508, 3337, 747, 4777 

+ po/ast.po,  433, 2489, 3154, 66, 335, 248, 1953, 747, 4777 

+ po/as.po,  905, 5703, 5806, 0, 0, 0, 0, 905, 5703 

+ po/ar.po,  431, 2303, 2337, 0, 0, 408, 2992, 839, 5295 

+ po/an.po,  864, 5464, 7395, 0, 0, 1, 5, 865, 5469 

+ po/am.po,  37, 51, 54, 86, 414, 624, 4312, 747, 4777 

+ po/af.po,  137, 351, 407, 46, 261, 588, 4189, 771, 4801 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: cannot process intl/tst-gettext4-: does not exist

+ translate.tools.pocount: ERROR: Unknown filetype (./po/pot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,38 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  1460, 8066, 3398, 3, 17, 3, 15, 1466, 8098 

+ po/zh_CN.po,  1405, 7667, 2960, 46, 276, 15, 155, 1466, 8098 

+ po/vi.po,  1448, 7924, 12479, 11, 131, 7, 43, 1466, 8098 

+ po/uk.po,  1466, 8098, 8792, 0, 0, 0, 0, 1466, 8098 

+ po/tr.po,  1237, 6372, 5759, 172, 1172, 57, 554, 1466, 8098 

+ po/sv.po,  1466, 8098, 7829, 0, 0, 0, 0, 1466, 8098 

+ po/sl.po,  526, 2708, 2830, 361, 1639, 579, 3751, 1466, 8098 

+ po/sk.po,  1017, 5002, 5216, 230, 1290, 219, 1806, 1466, 8098 

+ po/rw.po,  14, 19, 21, 1090, 5893, 362, 2186, 1466, 8098 

+ po/ru.po,  1462, 8075, 8093, 3, 15, 1, 8, 1466, 8098 

+ po/pt_BR.po,  1466, 8098, 9771, 0, 0, 0, 0, 1466, 8098 

+ po/pl.po,  1466, 8098, 8447, 0, 0, 0, 0, 1466, 8098 

+ po/nl.po,  1466, 8098, 8274, 0, 0, 0, 0, 1466, 8098 

+ po/nb.po,  697, 3102, 3004, 410, 2284, 359, 2712, 1466, 8098 

+ po/lt.po,  396, 1566, 1402, 379, 1759, 691, 4773, 1466, 8098 

+ po/libc.pot,  0, 0, 0, 0, 0, 1466, 8098, 1466, 8098 

+ po/ko.po,  1434, 7853, 7405, 22, 191, 10, 54, 1466, 8098 

+ po/ja.po,  1286, 6906, 3013, 113, 739, 67, 453, 1466, 8098 

+ po/it.po,  1293, 6945, 8183, 109, 720, 64, 433, 1466, 8098 

+ po/id.po,  1231, 6626, 6955, 144, 808, 91, 664, 1466, 8098 

+ po/ia.po,  516, 3232, 4133, 41, 272, 909, 4594, 1466, 8098 

+ po/hu.po,  379, 1553, 1594, 82, 348, 1005, 6197, 1466, 8098 

+ po/hr.po,  1462, 8075, 8815, 3, 15, 1, 8, 1466, 8098 

+ po/gl.po,  1008, 4948, 6246, 239, 1351, 219, 1799, 1466, 8098 

+ po/fr.po,  1425, 7774, 10025, 29, 248, 12, 76, 1466, 8098 

+ po/fi.po,  1213, 5958, 5124, 129, 1007, 124, 1133, 1466, 8098 

+ po/es.po,  1368, 7435, 10123, 60, 365, 38, 298, 1466, 8098 

+ po/eo.po,  836, 3486, 3419, 46, 222, 584, 4390, 1466, 8098 

+ po/en_GB.po,  10, 64, 64, 0, 0, 1078, 5305, 1088, 5369 

+ po/el.po,  704, 3078, 3615, 371, 2025, 391, 2995, 1466, 8098 

+ po/de.po,  1466, 8098, 9021, 0, 0, 0, 0, 1466, 8098 

+ po/da.po,  1231, 6626, 6372, 143, 804, 92, 668, 1466, 8098 

+ po/cs.po,  1466, 8098, 8239, 0, 0, 0, 0, 1466, 8098 

+ po/ca.po,  1385, 7548, 10814, 54, 329, 27, 221, 1466, 8098 

+ po/bg.po,  1466, 8098, 9917, 0, 0, 0, 0, 1466, 8098 

+ po/be.po,  628, 3387, 3281, 0, 0, 838, 4711, 1466, 8098 

@@ -0,0 +1,6 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.cvsignore)

@@ -0,0 +1,98 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  16, 31, 18, 0, 0, 0, 0, 16, 31 

+ po/zh_HK.po,  18, 30, 19, 0, 0, 0, 0, 18, 30 

+ po/zh_CN.po,  16, 31, 16, 0, 0, 0, 0, 16, 31 

+ po/xh.po,  18, 30, 32, 0, 0, 0, 0, 18, 30 

+ po/vi.po,  18, 29, 48, 0, 0, 0, 0, 18, 29 

+ po/uz@cyrillic.po,  18, 24, 28, 0, 0, 0, 0, 18, 24 

+ po/uz.po,  7, 14, 11, 0, 0, 2, 4, 9, 18 

+ po/uk.po,  18, 29, 27, 0, 0, 0, 0, 18, 29 

+ po/ug.po,  18, 24, 30, 0, 0, 0, 0, 18, 24 

+ po/tr.po,  15, 26, 29, 0, 0, 0, 0, 15, 26 

+ po/th.po,  18, 24, 20, 0, 0, 0, 0, 18, 24 

+ po/tg.po,  18, 29, 28, 0, 0, 0, 0, 18, 29 

+ po/te.po,  18, 30, 29, 0, 0, 0, 0, 18, 30 

+ po/ta.po,  18, 30, 27, 0, 0, 0, 0, 18, 30 

+ po/sv.po,  15, 26, 26, 0, 0, 0, 0, 15, 26 

+ po/sr@latin.po,  16, 31, 33, 0, 0, 0, 0, 16, 31 

+ po/sr.po,  15, 26, 29, 0, 0, 0, 0, 15, 26 

+ po/sq.po,  17, 23, 24, 0, 0, 0, 0, 17, 23 

+ po/sl.po,  15, 26, 27, 0, 0, 0, 0, 15, 26 

+ po/sk.po,  16, 31, 35, 0, 0, 0, 0, 16, 31 

+ po/si.po,  9, 18, 19, 0, 0, 0, 0, 9, 18 

+ po/rw.po,  0, 0, 0, 0, 0, 10, 35, 10, 35 

+ po/ru.po,  16, 31, 31, 0, 0, 0, 0, 16, 31 

+ po/ro.po,  15, 26, 32, 0, 0, 0, 0, 15, 26 

+ po/pt_BR.po,  15, 26, 34, 0, 0, 0, 0, 15, 26 

+ po/pt.po,  18, 29, 34, 0, 0, 0, 0, 18, 29 

+ po/ps.po,  9, 18, 25, 0, 0, 0, 0, 9, 18 

+ po/pl.po,  15, 26, 28, 0, 0, 0, 0, 15, 26 

+ po/pa.po,  15, 26, 33, 0, 0, 0, 0, 15, 26 

+ po/or.po,  18, 30, 33, 0, 0, 0, 0, 18, 30 

+ po/oc.po,  16, 31, 36, 0, 0, 0, 0, 16, 31 

+ po/nn.po,  17, 23, 21, 0, 0, 0, 0, 17, 23 

+ po/nl.po,  15, 26, 25, 0, 0, 0, 0, 15, 26 

+ po/ne.po,  15, 26, 26, 0, 0, 0, 0, 15, 26 

+ po/nds.po,  17, 23, 22, 0, 0, 0, 0, 17, 23 

+ po/nb.po,  15, 26, 26, 0, 0, 0, 0, 15, 26 

+ po/ms.po,  15, 20, 23, 0, 0, 2, 3, 17, 23 

+ po/mr.po,  18, 30, 28, 0, 0, 0, 0, 18, 30 

+ po/mn.po,  17, 23, 23, 0, 0, 0, 0, 17, 23 

+ po/ml.po,  16, 31, 30, 0, 0, 0, 0, 16, 31 

+ po/mk.po,  17, 23, 21, 0, 0, 0, 0, 17, 23 

+ po/mjw.po,  15, 26, 26, 0, 0, 0, 0, 15, 26 

+ po/mg.po,  17, 23, 22, 0, 0, 0, 0, 17, 23 

+ po/mai.po,  8, 16, 18, 1, 2, 0, 0, 9, 18 

+ po/lv.po,  15, 26, 27, 0, 0, 0, 0, 15, 26 

+ po/lt.po,  15, 26, 26, 0, 0, 0, 0, 15, 26 

+ po/ky.po,  16, 22, 21, 1, 1, 1, 1, 18, 24 

+ po/ku.po,  18, 24, 24, 0, 0, 0, 0, 18, 24 

+ po/ko.po,  15, 26, 34, 0, 0, 0, 0, 15, 26 

+ po/kn.po,  18, 30, 28, 0, 0, 0, 0, 18, 30 

+ po/km.po,  18, 30, 21, 0, 0, 0, 0, 18, 30 

+ po/kk.po,  15, 26, 27, 0, 0, 0, 0, 15, 26 

+ po/ka.po,  9, 18, 18, 0, 0, 0, 0, 9, 18 

+ po/ja.po,  18, 30, 20, 0, 0, 0, 0, 18, 30 

+ po/it.po,  15, 26, 29, 0, 0, 0, 0, 15, 26 

+ po/is.po,  15, 26, 25, 0, 0, 0, 0, 15, 26 

+ po/id.po,  15, 26, 30, 0, 0, 0, 0, 15, 26 

+ po/hy.po,  17, 23, 22, 0, 0, 0, 0, 17, 23 

+ po/hu.po,  15, 26, 27, 0, 0, 0, 0, 15, 26 

+ po/hr.po,  15, 26, 30, 0, 0, 0, 0, 15, 26 

+ po/hi.po,  18, 30, 33, 0, 0, 0, 0, 18, 30 

+ po/he.po,  18, 29, 34, 0, 0, 0, 0, 18, 29 

+ po/gu.po,  18, 30, 30, 0, 0, 0, 0, 18, 30 

+ po/gl.po,  15, 26, 33, 0, 0, 0, 0, 15, 26 

+ po/gd.po,  18, 29, 28, 0, 0, 0, 0, 18, 29 

+ po/ga.po,  18, 30, 31, 0, 0, 0, 0, 18, 30 

+ po/fy.po,  17, 23, 21, 0, 0, 0, 0, 17, 23 

+ po/fur.po,  15, 26, 33, 0, 0, 0, 0, 15, 26 

+ po/fr.po,  15, 26, 31, 0, 0, 0, 0, 15, 26 

+ po/fi.po,  15, 26, 25, 0, 0, 0, 0, 15, 26 

+ po/fa.po,  15, 26, 29, 0, 0, 0, 0, 15, 26 

+ po/eu.po,  15, 26, 27, 0, 0, 0, 0, 15, 26 

+ po/et.po,  15, 26, 23, 0, 0, 0, 0, 15, 26 

+ po/es.po,  15, 26, 32, 0, 0, 0, 0, 15, 26 

+ po/eo.po,  16, 31, 32, 0, 0, 0, 0, 16, 31 

+ po/en_GB.po,  15, 26, 26, 0, 0, 0, 0, 15, 26 

+ po/en_CA.po,  9, 18, 19, 0, 0, 0, 0, 9, 18 

+ po/en@shaw.po,  17, 23, 23, 0, 0, 0, 0, 17, 23 

+ po/el.po,  15, 26, 25, 0, 0, 0, 0, 15, 26 

+ po/dz.po,  9, 18, 11, 0, 0, 0, 0, 9, 18 

+ po/de.po,  15, 26, 25, 0, 0, 0, 0, 15, 26 

+ po/da.po,  16, 31, 29, 0, 0, 0, 0, 16, 31 

+ po/cy.po,  17, 23, 29, 0, 0, 0, 0, 17, 23 

+ po/cs.po,  15, 26, 28, 0, 0, 0, 0, 15, 26 

+ po/ca@valencia.po,  18, 29, 37, 0, 0, 0, 0, 18, 29 

+ po/ca.po,  15, 26, 33, 0, 0, 0, 0, 15, 26 

+ po/bs.po,  18, 30, 29, 0, 0, 0, 0, 18, 30 

+ po/bn_IN.po,  17, 23, 31, 0, 0, 0, 0, 17, 23 

+ po/bn.po,  17, 29, 38, 0, 0, 0, 0, 17, 29 

+ po/bg.po,  18, 29, 31, 0, 0, 0, 0, 18, 29 

+ po/be@latin.po,  16, 22, 20, 0, 0, 1, 1, 17, 23 

+ po/be.po,  15, 26, 26, 0, 0, 0, 0, 15, 26 

+ po/ast.po,  17, 23, 22, 0, 0, 0, 0, 17, 23 

+ po/as.po,  18, 30, 29, 0, 0, 0, 0, 18, 30 

+ po/ar.po,  18, 30, 29, 0, 0, 0, 0, 18, 30 

+ po/an.po,  18, 30, 31, 0, 0, 0, 0, 18, 30 

+ po/af.po,  13, 22, 20, 0, 0, 3, 9, 16, 31 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,87 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  192, 663, 574, 0, 0, 0, 0, 192, 663 

+ po/zh_TW.po,  111, 373, 139, 0, 0, 0, 0, 111, 373 

+ po/zh_HK.po,  102, 308, 132, 0, 0, 0, 0, 102, 308 

+ po/zh_CN.po,  111, 373, 139, 0, 0, 0, 0, 111, 373 

+ po/xh.po,  174, 596, 511, 1, 3, 0, 0, 175, 599 

+ po/vi.po,  111, 373, 504, 0, 0, 0, 0, 111, 373 

+ po/uk.po,  110, 372, 334, 0, 0, 0, 0, 110, 372 

+ po/ug.po,  95, 303, 266, 0, 0, 0, 0, 95, 303 

+ po/tr.po,  110, 373, 323, 0, 0, 0, 0, 110, 373 

+ po/th.po,  110, 372, 169, 0, 0, 0, 0, 110, 372 

+ po/tg.po,  102, 309, 340, 0, 0, 0, 0, 102, 309 

+ po/te.po,  102, 309, 286, 0, 0, 0, 0, 102, 309 

+ po/ta.po,  102, 309, 276, 0, 0, 0, 0, 102, 309 

+ po/sv.po,  110, 373, 337, 0, 0, 0, 0, 110, 373 

+ po/sr@latin.po,  111, 373, 392, 0, 0, 0, 0, 111, 373 

+ po/sr.po,  110, 373, 392, 0, 0, 0, 0, 110, 373 

+ po/sl.po,  110, 373, 391, 0, 0, 0, 0, 110, 373 

+ po/sk.po,  111, 373, 389, 0, 0, 0, 0, 111, 373 

+ po/ru.po,  111, 373, 340, 0, 0, 0, 0, 111, 373 

+ po/ro.po,  110, 373, 382, 0, 0, 0, 0, 110, 373 

+ po/pt_BR.po,  110, 373, 413, 0, 0, 0, 0, 110, 373 

+ po/pt.po,  110, 372, 383, 0, 0, 0, 0, 110, 372 

+ po/pl.po,  110, 373, 368, 0, 0, 0, 0, 110, 373 

+ po/pa.po,  111, 373, 419, 0, 0, 0, 0, 111, 373 

+ po/or.po,  102, 309, 333, 0, 0, 0, 0, 102, 309 

+ po/oc.po,  106, 349, 385, 0, 0, 4, 23, 110, 372 

+ po/nn.po,  177, 646, 620, 0, 0, 4, 18, 181, 664 

+ po/nl.po,  111, 373, 355, 0, 0, 0, 0, 111, 373 

+ po/ne.po,  13, 15, 18, 67, 144, 22, 150, 102, 309 

+ po/nb.po,  111, 373, 362, 0, 0, 0, 0, 111, 373 

+ po/ms.po,  160, 519, 486, 2, 9, 29, 169, 191, 697 

+ po/mr.po,  102, 309, 309, 0, 0, 0, 0, 102, 309 

+ po/mn.po,  87, 230, 231, 0, 0, 68, 284, 155, 514 

+ po/ml.po,  111, 373, 320, 0, 0, 0, 0, 111, 373 

+ po/mk.po,  175, 599, 654, 0, 0, 0, 0, 175, 599 

+ po/mjw.po,  85, 249, 249, 0, 0, 25, 124, 110, 373 

+ po/mai.po,  37, 63, 75, 0, 0, 120, 530, 157, 593 

+ po/lv.po,  110, 373, 343, 0, 0, 0, 0, 110, 373 

+ po/lt.po,  110, 373, 328, 0, 0, 0, 0, 110, 373 

+ po/ku.po,  188, 650, 720, 0, 0, 4, 12, 192, 662 

+ po/ko.po,  110, 373, 289, 0, 0, 0, 0, 110, 373 

+ po/kn.po,  102, 309, 296, 0, 0, 0, 0, 102, 309 

+ po/km.po,  144, 460, 257, 0, 0, 0, 0, 144, 460 

+ po/kk.po,  111, 373, 329, 0, 0, 0, 0, 111, 373 

+ po/ka.po,  118, 321, 284, 0, 0, 37, 193, 155, 514 

+ po/ja.po,  109, 370, 151, 0, 0, 1, 3, 110, 373 

+ po/it.po,  110, 373, 358, 0, 0, 0, 0, 110, 373 

+ po/is.po,  111, 373, 359, 0, 0, 0, 0, 111, 373 

+ po/id.po,  110, 373, 334, 0, 0, 0, 0, 110, 373 

+ po/hy.po,  181, 664, 631, 0, 0, 0, 0, 181, 664 

+ po/hu.po,  110, 373, 325, 0, 0, 0, 0, 110, 373 

+ po/hr.po,  110, 373, 357, 0, 0, 0, 0, 110, 373 

+ po/hi.po,  102, 309, 361, 0, 0, 0, 0, 102, 309 

+ po/he.po,  110, 372, 345, 0, 0, 0, 0, 110, 372 

+ po/gu.po,  102, 309, 355, 0, 0, 0, 0, 102, 309 

+ po/gl.po,  110, 373, 389, 0, 0, 0, 0, 110, 373 

+ po/gd.po,  111, 373, 493, 0, 0, 0, 0, 111, 373 

+ po/ga.po,  70, 156, 204, 0, 0, 26, 154, 96, 310 

+ po/fy.po,  13, 15, 20, 0, 0, 142, 499, 155, 514 

+ po/fur.po,  110, 373, 409, 0, 0, 0, 0, 110, 373 

+ po/fr.po,  110, 373, 423, 0, 0, 0, 0, 110, 373 

+ po/fi.po,  110, 373, 282, 0, 0, 0, 0, 110, 373 

+ po/fa.po,  110, 373, 407, 0, 0, 0, 0, 110, 373 

+ po/eu.po,  110, 373, 315, 0, 0, 0, 0, 110, 373 

+ po/et.po,  96, 310, 257, 0, 0, 0, 0, 96, 310 

+ po/es.po,  110, 373, 397, 0, 0, 0, 0, 110, 373 

+ po/eo.po,  110, 372, 357, 0, 0, 0, 0, 110, 372 

+ po/en_GB.po,  110, 373, 373, 0, 0, 0, 0, 110, 373 

+ po/en@shaw.po,  121, 419, 419, 66, 256, 0, 0, 187, 675 

+ po/el.po,  111, 373, 390, 0, 0, 0, 0, 111, 373 

+ po/de.po,  110, 373, 379, 0, 0, 0, 0, 110, 373 

+ po/da.po,  110, 372, 344, 0, 0, 0, 0, 110, 372 

+ po/cs.po,  110, 373, 392, 0, 0, 0, 0, 110, 373 

+ po/crh.po,  95, 303, 272, 0, 0, 0, 0, 95, 303 

+ po/ca@valencia.po,  111, 373, 428, 0, 0, 0, 0, 111, 373 

+ po/ca.po,  110, 373, 428, 0, 0, 0, 0, 110, 373 

+ po/bs.po,  102, 309, 313, 0, 0, 0, 0, 102, 309 

+ po/bn_IN.po,  95, 303, 350, 0, 0, 0, 0, 95, 303 

+ po/bn.po,  192, 662, 719, 0, 0, 0, 0, 192, 662 

+ po/bg.po,  111, 373, 389, 0, 0, 0, 0, 111, 373 

+ po/be.po,  111, 373, 347, 0, 0, 0, 0, 111, 373 

+ po/ast.po,  181, 664, 736, 0, 0, 0, 0, 181, 664 

+ po/as.po,  101, 308, 336, 0, 0, 0, 0, 101, 308 

+ po/ar.po,  111, 373, 399, 0, 0, 0, 0, 111, 373 

+ po/an.po,  110, 372, 407, 0, 0, 0, 0, 110, 372 

+ po/af.po,  185, 642, 645, 0, 0, 7, 20, 192, 662 

@@ -0,0 +1,36 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/variables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/trigonometry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/superscript.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/scientific.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/power.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/percentage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/number-display.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/modulus.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/logarithm.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/keyboard.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/history.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/functions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/financial.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/logo32.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/factorize.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/factorial.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/equation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/conv-weight.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/conv-time.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/conv-length.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/conv-currency.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/conv-character.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/conv-base.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/complex.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/boolean.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/base.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/absolute.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,122 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/zh_TW/zh_TW.po,  238, 1579, 450, 0, 0, 0, 0, 238, 1579 

+ help/zh_HK/zh_HK.po,  238, 1579, 450, 0, 0, 0, 0, 238, 1579 

+ help/zh_CN/zh_CN.po,  238, 1579, 425, 0, 0, 0, 0, 238, 1579 

+ help/te/te.po,  99, 110, 110, 0, 0, 140, 1509, 239, 1619 

+ help/sv/sv.po,  277, 1950, 1733, 0, 0, 0, 0, 277, 1950 

+ help/sl/sl.po,  238, 1616, 1394, 0, 0, 0, 0, 238, 1616 

+ help/ru/ru.po,  209, 1187, 1069, 4, 25, 25, 404, 238, 1616 

+ help/ro/ro.po,  220, 1241, 1190, 3, 49, 15, 326, 238, 1616 

+ help/pt_BR/pt_BR.po,  277, 1950, 2144, 0, 0, 0, 0, 277, 1950 

+ help/pt/pt.po,  250, 1750, 1789, 3, 32, 12, 104, 265, 1886 

+ help/pl/pl.po,  277, 1950, 1665, 0, 0, 0, 0, 277, 1950 

+ help/oc/oc.po,  259, 303, 325, 0, 0, 626, 6188, 885, 6491 

+ help/lv/lv.po,  265, 1886, 1501, 0, 0, 0, 0, 265, 1886 

+ help/ko/ko.po,  277, 1950, 1416, 0, 0, 0, 0, 277, 1950 

+ help/ja/ja.po,  225, 1289, 427, 9, 265, 4, 62, 238, 1616 

+ help/it/it.po,  188, 1017, 1096, 8, 239, 40, 319, 236, 1575 

+ help/hu/hu.po,  277, 1950, 1697, 0, 0, 0, 0, 277, 1950 

+ help/gl/gl.po,  247, 1727, 1753, 0, 0, 1, 37, 248, 1764 

+ help/fr/fr.po,  277, 1950, 2147, 0, 0, 0, 0, 277, 1950 

+ help/fi/fi.po,  203, 1082, 826, 22, 225, 40, 579, 265, 1886 

+ help/eu/eu.po,  831, 6011, 4612, 0, 0, 0, 0, 831, 6011 

+ help/es/es.po,  277, 1950, 2084, 0, 0, 0, 0, 277, 1950 

+ help/el/el.po,  251, 1777, 1922, 0, 0, 0, 0, 251, 1777 

+ help/de/de.po,  277, 1950, 1879, 0, 0, 0, 0, 277, 1950 

+ help/cs/cs.po,  277, 1950, 1745, 0, 0, 0, 0, 277, 1950 

+ help/ca/ca.po,  216, 1392, 1548, 14, 190, 35, 304, 265, 1886 

+ help/bg/bg.po,  603, 5554, 5201, 0, 0, 209, 227, 812, 5781 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  578, 1594, 762, 0, 0, 0, 0, 578, 1594 

+ po/zh_HK.po,  431, 1341, 574, 0, 0, 0, 0, 431, 1341 

+ po/zh_CN.po,  591, 1641, 791, 0, 0, 0, 0, 591, 1641 

+ po/xh.po,  362, 851, 840, 13, 35, 3, 29, 378, 915 

+ po/vi.po,  590, 1632, 2264, 0, 0, 0, 0, 590, 1632 

+ po/uk.po,  573, 1583, 1470, 0, 0, 0, 0, 573, 1583 

+ po/ug.po,  334, 1078, 1026, 0, 0, 0, 0, 334, 1078 

+ po/tr.po,  593, 1644, 1505, 0, 0, 0, 0, 593, 1644 

+ po/tk.po,  164, 294, 281, 79, 175, 135, 446, 378, 915 

+ po/th.po,  540, 1486, 834, 0, 0, 0, 0, 540, 1486 

+ po/tg.po,  535, 1464, 1464, 0, 0, 0, 0, 535, 1464 

+ po/te.po,  428, 1337, 1171, 0, 0, 0, 0, 428, 1337 

+ po/ta.po,  428, 1337, 1281, 0, 0, 0, 0, 428, 1337 

+ po/sv.po,  593, 1644, 1533, 0, 0, 0, 0, 593, 1644 

+ po/sr@latin.po,  579, 1596, 1520, 0, 0, 0, 0, 579, 1596 

+ po/sr.po,  593, 1644, 1568, 0, 0, 0, 0, 593, 1644 

+ po/sq.po,  399, 1128, 1306, 0, 0, 0, 0, 399, 1128 

+ po/sl.po,  593, 1644, 1563, 0, 0, 0, 0, 593, 1644 

+ po/sk.po,  581, 1602, 1581, 0, 0, 0, 0, 581, 1602 

+ po/si.po,  379, 853, 894, 0, 0, 71, 839, 450, 1692 

+ po/rw.po,  60, 53, 61, 243, 719, 75, 143, 378, 915 

+ po/ru.po,  590, 1632, 1581, 0, 0, 0, 0, 590, 1632 

+ po/ro.po,  593, 1644, 1780, 0, 0, 0, 0, 593, 1644 

+ po/pt_BR.po,  593, 1644, 1939, 0, 0, 0, 0, 593, 1644 

+ po/pt.po,  573, 1583, 1735, 0, 0, 0, 0, 573, 1583 

+ po/pl.po,  593, 1644, 1585, 0, 0, 0, 0, 593, 1644 

+ po/pa.po,  551, 1539, 1640, 0, 0, 23, 45, 574, 1584 

+ po/or.po,  428, 1337, 1302, 0, 0, 0, 0, 428, 1337 

+ po/oc.po,  540, 1486, 1667, 0, 0, 0, 0, 540, 1486 

+ po/nn.po,  228, 770, 803, 8, 14, 31, 534, 267, 1318 

+ po/nl.po,  593, 1644, 1711, 0, 0, 0, 0, 593, 1644 

+ po/ne.po,  205, 357, 347, 116, 286, 107, 694, 428, 1337 

+ po/nb.po,  578, 1590, 1456, 0, 0, 0, 0, 578, 1590 

+ po/my.po,  160, 352, 241, 0, 0, 99, 789, 259, 1141 

+ po/ms.po,  328, 768, 757, 30, 57, 20, 90, 378, 915 

+ po/mr.po,  428, 1337, 1299, 0, 0, 0, 0, 428, 1337 

+ po/mn.po,  181, 392, 372, 142, 368, 55, 155, 378, 915 

+ po/ml.po,  334, 1078, 854, 0, 0, 0, 0, 334, 1078 

+ po/mk.po,  433, 1399, 1408, 0, 0, 0, 0, 433, 1399 

+ po/mjw.po,  351, 554, 555, 0, 0, 242, 1090, 593, 1644 

+ po/mg.po,  349, 992, 1083, 8, 23, 0, 0, 357, 1015 

+ po/mai.po,  243, 536, 586, 0, 0, 165, 829, 408, 1365 

+ po/lv.po,  593, 1644, 1521, 0, 0, 0, 0, 593, 1644 

+ po/lt.po,  593, 1644, 1494, 0, 0, 0, 0, 593, 1644 

+ po/ku.po,  98, 117, 123, 4, 4, 247, 774, 349, 895 

+ po/ko.po,  593, 1644, 1393, 0, 0, 0, 0, 593, 1644 

+ po/kn.po,  428, 1337, 1181, 0, 0, 0, 0, 428, 1337 

+ po/km.po,  429, 1333, 750, 0, 0, 2, 8, 431, 1341 

+ po/kk.po,  321, 566, 568, 0, 0, 269, 1066, 590, 1632 

+ po/ka.po,  365, 1044, 948, 0, 0, 0, 0, 365, 1044 

+ po/ja.po,  584, 1625, 782, 0, 0, 9, 19, 593, 1644 

+ po/it.po,  593, 1644, 1791, 0, 0, 0, 0, 593, 1644 

+ po/id.po,  593, 1644, 1634, 0, 0, 0, 0, 593, 1644 

+ po/hy.po,  119, 361, 351, 0, 0, 137, 767, 256, 1128 

+ po/hu.po,  593, 1644, 1536, 0, 0, 0, 0, 593, 1644 

+ po/hr.po,  593, 1644, 1535, 0, 0, 0, 0, 593, 1644 

+ po/hi.po,  428, 1337, 1519, 0, 0, 0, 0, 428, 1337 

+ po/he.po,  513, 1451, 1481, 0, 0, 27, 35, 540, 1486 

+ po/gu.po,  428, 1337, 1332, 0, 0, 0, 0, 428, 1337 

+ po/gl.po,  593, 1644, 1867, 0, 0, 0, 0, 593, 1644 

+ po/gd.po,  574, 1584, 1836, 0, 0, 0, 0, 574, 1584 

+ po/ga.po,  217, 351, 419, 9, 23, 108, 704, 334, 1078 

+ po/fur.po,  593, 1644, 1839, 0, 0, 0, 0, 593, 1644 

+ po/fr.po,  593, 1644, 1910, 0, 0, 0, 0, 593, 1644 

+ po/fi.po,  593, 1644, 1362, 0, 0, 0, 0, 593, 1644 

+ po/fa.po,  593, 1644, 1714, 0, 0, 0, 0, 593, 1644 

+ po/eu.po,  593, 1644, 1472, 0, 0, 0, 0, 593, 1644 

+ po/et.po,  334, 1078, 874, 0, 0, 0, 0, 334, 1078 

+ po/es.po,  593, 1644, 1850, 0, 0, 0, 0, 593, 1644 

+ po/eo.po,  584, 1601, 1581, 1, 4, 1, 3, 586, 1608 

+ po/en_GB.po,  593, 1644, 1648, 0, 0, 0, 0, 593, 1644 

+ po/en_CA.po,  433, 1399, 1402, 0, 0, 0, 0, 433, 1399 

+ po/en@shaw.po,  254, 1172, 1173, 6, 129, 0, 0, 260, 1301 

+ po/el.po,  575, 1531, 1648, 15, 107, 3, 6, 593, 1644 

+ po/dz.po,  410, 1175, 812, 0, 0, 0, 0, 410, 1175 

+ po/de.po,  593, 1644, 1587, 0, 0, 0, 0, 593, 1644 

+ po/da.po,  593, 1644, 1545, 0, 0, 0, 0, 593, 1644 

+ po/cy.po,  349, 895, 977, 0, 0, 0, 0, 349, 895 

+ po/cs.po,  593, 1644, 1635, 0, 0, 0, 0, 593, 1644 

+ po/ca@valencia.po,  574, 1584, 1797, 0, 0, 0, 0, 574, 1584 

+ po/ca.po,  593, 1644, 1862, 0, 0, 0, 0, 593, 1644 

+ po/bs.po,  535, 1464, 1357, 0, 0, 0, 0, 535, 1464 

+ po/bn_IN.po,  428, 1337, 1332, 0, 0, 0, 0, 428, 1337 

+ po/bn.po,  267, 1327, 1384, 0, 0, 0, 0, 267, 1327 

+ po/bg.po,  574, 1584, 1721, 0, 0, 0, 0, 574, 1584 

+ po/be@latin.po,  277, 564, 566, 0, 0, 133, 611, 410, 1175 

+ po/be.po,  378, 855, 909, 0, 0, 50, 364, 428, 1219 

+ po/az.po,  181, 392, 369, 142, 368, 55, 155, 378, 915 

+ po/ast.po,  433, 1399, 1502, 0, 0, 0, 0, 433, 1399 

+ po/as.po,  428, 1337, 1364, 0, 0, 0, 0, 428, 1337 

+ po/ar.po,  257, 545, 557, 65, 160, 251, 876, 573, 1581 

+ po/am.po,  83, 78, 80, 49, 55, 246, 782, 378, 915 

+ po/af.po,  350, 1044, 1011, 37, 159, 41, 176, 428, 1379 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,55 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  57, 186, 71, 0, 0, 0, 0, 57, 186 

+ po/zh_CN.po,  58, 186, 93, 0, 0, 0, 0, 58, 186 

+ po/uk.po,  47, 161, 149, 0, 0, 0, 0, 47, 161 

+ po/tr.po,  57, 186, 178, 0, 0, 0, 0, 57, 186 

+ po/tg.po,  24, 49, 64, 0, 0, 23, 112, 47, 161 

+ po/ta.po,  54, 149, 138, 0, 0, 3, 37, 57, 186 

+ po/sv.po,  57, 186, 189, 0, 0, 0, 0, 57, 186 

+ po/sr@latin.po,  58, 186, 204, 0, 0, 0, 0, 58, 186 

+ po/sr.po,  57, 186, 203, 0, 0, 0, 0, 57, 186 

+ po/sl.po,  57, 186, 191, 0, 0, 0, 0, 57, 186 

+ po/sk.po,  58, 186, 191, 0, 0, 0, 0, 58, 186 

+ po/ru.po,  57, 186, 180, 0, 0, 0, 0, 57, 186 

+ po/ro.po,  57, 186, 219, 0, 0, 0, 0, 57, 186 

+ po/pt_BR.po,  57, 186, 226, 0, 0, 0, 0, 57, 186 

+ po/pt.po,  48, 162, 177, 0, 0, 0, 0, 48, 162 

+ po/pl.po,  57, 186, 194, 0, 0, 0, 0, 57, 186 

+ po/pa.po,  35, 80, 103, 0, 0, 7, 66, 42, 146 

+ po/oc.po,  58, 186, 214, 0, 0, 0, 0, 58, 186 

+ po/nl.po,  57, 186, 217, 0, 0, 0, 0, 57, 186 

+ po/ne.po,  58, 186, 197, 0, 0, 0, 0, 58, 186 

+ po/nb.po,  58, 186, 184, 0, 0, 0, 0, 58, 186 

+ po/ml.po,  58, 186, 158, 0, 0, 0, 0, 58, 186 

+ po/lv.po,  57, 186, 173, 0, 0, 0, 0, 57, 186 

+ po/lt.po,  57, 186, 175, 0, 0, 0, 0, 57, 186 

+ po/ln.po,  44, 155, 181, 0, 0, 0, 0, 44, 155 

+ po/ko.po,  57, 186, 168, 0, 0, 0, 0, 57, 186 

+ po/kk.po,  57, 186, 182, 0, 0, 0, 0, 57, 186 

+ po/ja.po,  56, 185, 79, 0, 0, 1, 1, 57, 186 

+ po/it.po,  57, 186, 195, 0, 0, 0, 0, 57, 186 

+ po/is.po,  58, 186, 192, 0, 0, 0, 0, 58, 186 

+ po/id.po,  57, 186, 208, 0, 0, 0, 0, 57, 186 

+ po/hu.po,  57, 186, 181, 0, 0, 0, 0, 57, 186 

+ po/hr.po,  57, 186, 178, 0, 0, 0, 0, 57, 186 

+ po/he.po,  47, 161, 157, 0, 0, 0, 0, 47, 161 

+ po/gu.po,  47, 161, 173, 0, 0, 0, 0, 47, 161 

+ po/gl.po,  57, 186, 212, 0, 0, 0, 0, 57, 186 

+ po/gd.po,  58, 186, 246, 0, 0, 0, 0, 58, 186 

+ po/fur.po,  57, 186, 215, 0, 0, 0, 0, 57, 186 

+ po/fr.po,  57, 186, 217, 0, 0, 0, 0, 57, 186 

+ po/fi.po,  57, 186, 151, 0, 0, 0, 0, 57, 186 

+ po/fa.po,  58, 186, 219, 0, 0, 0, 0, 58, 186 

+ po/eu.po,  57, 186, 180, 0, 0, 0, 0, 57, 186 

+ po/es.po,  57, 186, 217, 0, 0, 0, 0, 57, 186 

+ po/eo.po,  56, 185, 178, 0, 0, 0, 0, 56, 185 

+ po/en_GB.po,  58, 186, 194, 0, 0, 0, 0, 58, 186 

+ po/el.po,  57, 186, 207, 0, 0, 0, 0, 57, 186 

+ po/de.po,  57, 186, 204, 0, 0, 0, 0, 57, 186 

+ po/da.po,  56, 185, 191, 0, 0, 0, 0, 56, 185 

+ po/cs.po,  57, 186, 189, 0, 0, 0, 0, 57, 186 

+ po/ca@valencia.po,  58, 186, 221, 0, 0, 0, 0, 58, 186 

+ po/ca.po,  58, 186, 221, 0, 0, 0, 0, 58, 186 

+ po/be.po,  58, 186, 179, 0, 0, 0, 0, 58, 186 

+ po/ar.po,  57, 186, 183, 0, 0, 0, 0, 57, 186 

+ po/af.po,  57, 186, 191, 0, 0, 0, 0, 57, 186 

@@ -0,0 +1,18 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/alarm-edit.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/world-remove.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/alarm-add.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/timer.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/stopwatch.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/alarm-remove.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/world-check.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/gnome-clocks.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/alarm-snooze-stop.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/world-add.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

@@ -0,0 +1,89 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/ru/ru.po,  81, 978, 753, 0, 0, 0, 0, 81, 978 

+ help/nl/nl.po,  82, 983, 985, 0, 0, 0, 0, 82, 983 

+ help/ko/ko.po,  82, 983, 621, 0, 0, 0, 0, 82, 983 

+ help/de/de.po,  82, 983, 968, 0, 0, 0, 0, 82, 983 

+ help/cs/cs.po,  82, 983, 765, 0, 0, 0, 0, 82, 983 

+ help/hu/hu.po,  82, 983, 736, 0, 0, 0, 0, 82, 983 

+ help/fr/fr.po,  82, 983, 1060, 0, 0, 0, 0, 82, 983 

+ help/fi/fi.po,  82, 983, 584, 0, 0, 0, 0, 82, 983 

+ help/es/es.po,  82, 983, 963, 0, 0, 0, 0, 82, 983 

+ help/gl/gl.po,  82, 983, 894, 0, 0, 0, 0, 82, 983 

+ help/ca/ca.po,  81, 978, 939, 0, 0, 0, 0, 81, 978 

+ help/id/id.po,  82, 983, 845, 0, 0, 0, 0, 82, 983 

+ help/sv/sv.po,  82, 983, 957, 0, 0, 0, 0, 82, 983 

+ help/pt_BR/pt_BR.po,  82, 983, 1061, 0, 0, 0, 0, 82, 983 

+ help/el/el.po,  82, 983, 994, 0, 0, 0, 0, 82, 983 

+ help/da/da.po,  82, 983, 960, 0, 0, 0, 0, 82, 983 

+ help/pl/pl.po,  82, 983, 721, 0, 0, 0, 0, 82, 983 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/pl.po,  100, 284, 259, 0, 0, 0, 0, 100, 284 

+ po/af.po,  100, 283, 286, 0, 0, 0, 0, 100, 283 

+ po/gl.po,  100, 284, 315, 0, 0, 0, 0, 100, 284 

+ po/eu.po,  99, 283, 249, 0, 0, 0, 0, 99, 283 

+ po/da.po,  99, 283, 270, 0, 0, 0, 0, 99, 283 

+ po/oc.po,  92, 259, 310, 0, 0, 1, 10, 93, 269 

+ po/it.po,  100, 284, 300, 0, 0, 0, 0, 100, 284 

+ po/fr.po,  100, 284, 345, 0, 0, 0, 0, 100, 284 

+ po/de.po,  100, 284, 277, 0, 0, 0, 0, 100, 284 

+ po/zh_HK.po,  77, 223, 91, 0, 0, 0, 0, 77, 223 

+ po/ta.po,  77, 223, 229, 0, 0, 0, 0, 77, 223 

+ po/el.po,  100, 284, 309, 0, 0, 0, 0, 100, 284 

+ po/lt.po,  100, 284, 245, 0, 0, 0, 0, 100, 284 

+ po/te.po,  77, 223, 199, 0, 0, 0, 0, 77, 223 

+ po/fa.po,  99, 283, 295, 0, 0, 0, 0, 99, 283 

+ po/pt.po,  95, 273, 310, 0, 0, 0, 0, 95, 273 

+ po/zh_CN.po,  99, 283, 135, 0, 0, 0, 0, 99, 283 

+ po/hi.po,  77, 223, 269, 0, 0, 0, 0, 77, 223 

+ po/uk.po,  38, 67, 72, 0, 0, 0, 0, 38, 67 

+ po/is.po,  99, 283, 274, 0, 0, 0, 0, 99, 283 

+ po/bs.po,  77, 223, 220, 0, 0, 0, 0, 77, 223 

+ po/vi.po,  100, 284, 424, 0, 0, 0, 0, 100, 284 

+ po/gd.po,  100, 283, 369, 0, 0, 0, 0, 100, 283 

+ po/an.po,  77, 223, 252, 0, 0, 0, 0, 77, 223 

+ po/gu.po,  77, 223, 245, 0, 0, 0, 0, 77, 223 

+ po/nb.po,  100, 283, 291, 0, 0, 0, 0, 100, 283 

+ po/ja.po,  98, 280, 121, 0, 0, 2, 4, 100, 284 

+ po/lv.po,  100, 284, 257, 0, 0, 0, 0, 100, 284 

+ po/ug.po,  59, 127, 126, 0, 0, 1, 1, 60, 128 

+ po/pt_BR.po,  100, 284, 345, 0, 0, 0, 0, 100, 284 

+ po/sk.po,  100, 283, 277, 0, 0, 0, 0, 100, 283 

+ po/ar.po,  95, 273, 268, 0, 0, 0, 0, 95, 273 

+ po/ca.po,  100, 284, 334, 0, 0, 0, 0, 100, 284 

+ po/en_GB.po,  94, 272, 282, 0, 0, 0, 0, 94, 272 

+ po/ne.po,  59, 129, 130, 5, 19, 13, 75, 77, 223 

+ po/ko.po,  100, 284, 239, 0, 0, 0, 0, 100, 284 

+ po/es.po,  100, 284, 325, 0, 0, 0, 0, 100, 284 

+ po/fi.po,  100, 284, 217, 0, 0, 0, 0, 100, 284 

+ po/or.po,  77, 223, 244, 0, 0, 0, 0, 77, 223 

+ po/tg.po,  77, 223, 247, 0, 0, 0, 0, 77, 223 

+ po/eo.po,  100, 283, 281, 0, 0, 0, 0, 100, 283 

+ po/et.po,  77, 223, 176, 0, 0, 0, 0, 77, 223 

+ po/pa.po,  99, 283, 305, 0, 0, 0, 0, 99, 283 

+ po/kn.po,  77, 223, 213, 0, 0, 0, 0, 77, 223 

+ po/sr.po,  100, 284, 283, 0, 0, 0, 0, 100, 284 

+ po/be.po,  100, 283, 273, 0, 0, 0, 0, 100, 283 

+ po/mr.po,  77, 223, 226, 0, 0, 0, 0, 77, 223 

+ po/cs.po,  100, 284, 268, 0, 0, 0, 0, 100, 284 

+ po/zh_TW.po,  100, 284, 115, 0, 0, 0, 0, 100, 284 

+ po/th.po,  94, 272, 121, 0, 0, 0, 0, 94, 272 

+ po/as.po,  77, 223, 237, 0, 0, 0, 0, 77, 223 

+ po/hu.po,  100, 284, 248, 0, 0, 0, 0, 100, 284 

+ po/sv.po,  100, 284, 291, 0, 0, 0, 0, 100, 284 

+ po/kk.po,  100, 284, 267, 0, 0, 0, 0, 100, 284 

+ po/he.po,  94, 272, 286, 0, 0, 0, 0, 94, 272 

+ po/fur.po,  100, 284, 310, 0, 0, 0, 0, 100, 284 

+ po/sl.po,  100, 284, 281, 0, 0, 0, 0, 100, 284 

+ po/ga.po,  43, 85, 108, 0, 0, 34, 138, 77, 223 

+ po/tr.po,  100, 284, 268, 0, 0, 0, 0, 100, 284 

+ po/nl.po,  100, 284, 266, 0, 0, 0, 0, 100, 284 

+ po/bg.po,  92, 259, 265, 0, 0, 0, 0, 92, 259 

+ po/mjw.po,  53, 126, 117, 0, 0, 46, 157, 99, 283 

+ po/bn_IN.po,  77, 223, 239, 0, 0, 0, 0, 77, 223 

+ po/hr.po,  100, 284, 269, 0, 0, 0, 0, 100, 284 

+ po/ro.po,  100, 284, 315, 0, 0, 0, 0, 100, 284 

+ po/ca@valencia.po,  100, 283, 331, 0, 0, 0, 0, 100, 283 

+ po/sr@latin.po,  100, 283, 284, 0, 0, 0, 0, 100, 283 

+ po/ru.po,  100, 284, 273, 0, 0, 0, 0, 100, 284 

+ po/ml.po,  100, 283, 278, 0, 0, 0, 0, 100, 283 

+ po/id.po,  100, 284, 299, 0, 0, 0, 0, 100, 284 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/gnome-help.its)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/color-import-windows.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/color-import-osx.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/color-import-linux.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/update-linguas.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,87 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/zh_TW/zh_TW.po,  16, 160, 70, 0, 0, 10, 374, 26, 534 

+ help/zh_HK/zh_HK.po,  16, 160, 70, 0, 0, 10, 374, 26, 534 

+ help/zh_CN/zh_CN.po,  26, 534, 139, 0, 0, 0, 0, 26, 534 

+ help/sv/sv.po,  26, 534, 475, 0, 0, 0, 0, 26, 534 

+ help/pt_BR/pt_BR.po,  26, 534, 665, 0, 0, 0, 0, 26, 534 

+ help/pl/pl.po,  26, 534, 470, 0, 0, 0, 0, 26, 534 

+ help/ml/ml.po,  26, 534, 417, 0, 0, 0, 0, 26, 534 

+ help/ko/ko.po,  26, 534, 387, 0, 0, 0, 0, 26, 534 

+ help/it/it.po,  26, 534, 543, 0, 0, 0, 0, 26, 534 

+ help/hu/hu.po,  26, 534, 473, 0, 0, 0, 0, 26, 534 

+ help/hr/hr.po,  26, 534, 444, 0, 0, 0, 0, 26, 534 

+ help/gl/gl.po,  26, 534, 554, 0, 0, 0, 0, 26, 534 

+ help/fr/fr.po,  26, 534, 615, 0, 0, 0, 0, 26, 534 

+ help/fi/fi.po,  26, 534, 346, 0, 0, 0, 0, 26, 534 

+ help/es/es.po,  26, 534, 598, 0, 0, 0, 0, 26, 534 

+ help/el/el.po,  26, 534, 577, 0, 0, 0, 0, 26, 534 

+ help/de/de.po,  26, 534, 516, 0, 0, 0, 0, 26, 534 

+ help/da/da.po,  26, 534, 480, 0, 0, 0, 0, 26, 534 

+ help/cs/cs.po,  26, 534, 491, 0, 0, 0, 0, 26, 534 

+ help/ca/ca.po,  26, 534, 613, 0, 0, 0, 0, 26, 534 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  345, 1796, 471, 0, 0, 0, 0, 345, 1796 

+ po/zh_HK.po,  342, 1792, 467, 0, 0, 0, 0, 342, 1792 

+ po/zh_CN.po,  345, 1796, 468, 0, 0, 0, 0, 345, 1796 

+ po/vi.po,  345, 1796, 2263, 0, 0, 0, 0, 345, 1796 

+ po/uk.po,  345, 1796, 1483, 0, 0, 0, 0, 345, 1796 

+ po/ug.po,  329, 1681, 1328, 0, 0, 7, 57, 336, 1738 

+ po/tr.po,  345, 1796, 1525, 0, 0, 0, 0, 345, 1796 

+ po/th.po,  18, 28, 19, 0, 0, 110, 714, 128, 742 

+ po/tg.po,  343, 1793, 1702, 0, 0, 0, 0, 343, 1793 

+ po/te.po,  342, 1792, 1371, 0, 0, 0, 0, 342, 1792 

+ po/ta.po,  342, 1792, 1458, 0, 0, 0, 0, 342, 1792 

+ po/sv.po,  345, 1796, 1561, 0, 0, 0, 0, 345, 1796 

+ po/sr@latin.po,  345, 1796, 1613, 0, 0, 0, 0, 345, 1796 

+ po/sr.po,  345, 1796, 1613, 0, 0, 0, 0, 345, 1796 

+ po/sl.po,  345, 1796, 1591, 0, 0, 0, 0, 345, 1796 

+ po/sk.po,  345, 1796, 1599, 0, 0, 0, 0, 345, 1796 

+ po/ru.po,  345, 1796, 1540, 0, 0, 0, 0, 345, 1796 

+ po/ro.po,  345, 1796, 1853, 0, 0, 0, 0, 345, 1796 

+ po/pt_BR.po,  345, 1796, 2050, 0, 0, 0, 0, 345, 1796 

+ po/pt.po,  345, 1796, 2026, 0, 0, 0, 0, 345, 1796 

+ po/pl.po,  345, 1796, 1617, 0, 0, 0, 0, 345, 1796 

+ po/pa.po,  342, 1792, 1925, 0, 0, 0, 0, 342, 1792 

+ po/or.po,  342, 1792, 1682, 0, 0, 0, 0, 342, 1792 

+ po/oc.po,  343, 1793, 2019, 0, 0, 0, 0, 343, 1793 

+ po/nl.po,  345, 1796, 1670, 0, 0, 0, 0, 345, 1796 

+ po/ne.po,  151, 327, 333, 109, 449, 85, 1020, 345, 1796 

+ po/nb.po,  345, 1796, 1611, 0, 0, 0, 0, 345, 1796 

+ po/mr.po,  342, 1792, 1522, 0, 0, 0, 0, 342, 1792 

+ po/ml.po,  237, 770, 635, 2, 2, 102, 976, 341, 1748 

+ po/lv.po,  345, 1796, 1507, 0, 0, 0, 0, 345, 1796 

+ po/lt.po,  345, 1796, 1407, 0, 0, 0, 0, 345, 1796 

+ po/ko.po,  345, 1796, 1377, 0, 0, 0, 0, 345, 1796 

+ po/kn.po,  342, 1792, 1455, 0, 0, 0, 0, 342, 1792 

+ po/kk.po,  153, 404, 359, 0, 0, 192, 1392, 345, 1796 

+ po/ja.po,  343, 1793, 420, 0, 0, 2, 3, 345, 1796 

+ po/it.po,  345, 1796, 1879, 0, 0, 0, 0, 345, 1796 

+ po/is.po,  345, 1796, 1706, 0, 0, 0, 0, 345, 1796 

+ po/id.po,  345, 1796, 1612, 0, 0, 0, 0, 345, 1796 

+ po/hu.po,  345, 1796, 1471, 0, 0, 0, 0, 345, 1796 

+ po/hr.po,  345, 1796, 1571, 0, 0, 0, 0, 345, 1796 

+ po/hi.po,  342, 1792, 2093, 0, 0, 0, 0, 342, 1792 

+ po/he.po,  343, 1793, 1605, 0, 0, 0, 0, 343, 1793 

+ po/gu.po,  343, 1793, 1825, 0, 0, 0, 0, 343, 1793 

+ po/gl.po,  345, 1796, 1995, 0, 0, 0, 0, 345, 1796 

+ po/gd.po,  345, 1796, 2183, 0, 0, 0, 0, 345, 1796 

+ po/fur.po,  345, 1796, 2031, 0, 0, 0, 0, 345, 1796 

+ po/fr.po,  345, 1796, 2037, 0, 0, 0, 0, 345, 1796 

+ po/fi.po,  321, 1639, 1155, 1, 17, 23, 140, 345, 1796 

+ po/fa.po,  345, 1796, 1873, 0, 0, 0, 0, 345, 1796 

+ po/eu.po,  345, 1796, 1446, 0, 0, 0, 0, 345, 1796 

+ po/et.po,  343, 1793, 1323, 0, 0, 0, 0, 343, 1793 

+ po/es.po,  345, 1796, 2031, 0, 0, 0, 0, 345, 1796 

+ po/eo.po,  345, 1796, 1609, 0, 0, 0, 0, 345, 1796 

+ po/en_GB.po,  345, 1796, 1795, 0, 0, 0, 0, 345, 1796 

+ po/el.po,  345, 1796, 1839, 0, 0, 0, 0, 345, 1796 

+ po/de.po,  345, 1796, 1724, 0, 0, 0, 0, 345, 1796 

+ po/da.po,  345, 1796, 1572, 0, 0, 0, 0, 345, 1796 

+ po/cs.po,  345, 1796, 1599, 0, 0, 0, 0, 345, 1796 

+ po/ca@valencia.po,  345, 1796, 2097, 0, 0, 0, 0, 345, 1796 

+ po/ca.po,  345, 1796, 2100, 0, 0, 0, 0, 345, 1796 

+ po/bs.po,  343, 1793, 1549, 0, 0, 0, 0, 343, 1793 

+ po/bn_IN.po,  342, 1792, 1762, 0, 0, 0, 0, 342, 1792 

+ po/bg.po,  343, 1793, 1816, 0, 0, 0, 0, 343, 1793 

+ po/as.po,  342, 1792, 1719, 0, 0, 0, 0, 342, 1792 

+ po/ar.po,  97, 304, 294, 0, 0, 286, 2109, 383, 2413 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,73 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  167, 590, 227, 0, 0, 0, 0, 167, 590 

+ po/zh_HK.po,  155, 405, 207, 0, 0, 0, 0, 155, 405 

+ po/zh_CN.po,  166, 587, 245, 0, 0, 0, 0, 166, 587 

+ po/vi.po,  157, 433, 647, 0, 0, 0, 0, 157, 433 

+ po/uk.po,  129, 311, 312, 0, 0, 0, 0, 129, 311 

+ po/ug.po,  151, 344, 326, 0, 0, 0, 0, 151, 344 

+ po/tr.po,  168, 594, 498, 0, 0, 0, 0, 168, 594 

+ po/th.po,  157, 433, 215, 0, 0, 0, 0, 157, 433 

+ po/tg.po,  156, 411, 473, 0, 0, 0, 0, 156, 411 

+ po/te.po,  155, 405, 370, 0, 0, 0, 0, 155, 405 

+ po/ta.po,  155, 405, 406, 0, 0, 0, 0, 155, 405 

+ po/sv.po,  168, 594, 562, 0, 0, 0, 0, 168, 594 

+ po/sr@latin.po,  162, 563, 589, 0, 0, 0, 0, 162, 563 

+ po/sr.po,  168, 594, 620, 0, 0, 0, 0, 168, 594 

+ po/sl.po,  168, 594, 554, 0, 0, 0, 0, 168, 594 

+ po/sk.po,  166, 586, 553, 0, 0, 0, 0, 166, 586 

+ po/ru.po,  167, 590, 559, 0, 0, 0, 0, 167, 590 

+ po/ro.po,  168, 594, 624, 0, 0, 0, 0, 168, 594 

+ po/pt_BR.po,  168, 594, 658, 0, 0, 0, 0, 168, 594 

+ po/pt.po,  157, 433, 481, 0, 0, 0, 0, 157, 433 

+ po/pl.po,  168, 594, 563, 0, 0, 0, 0, 168, 594 

+ po/pa.po,  156, 411, 457, 0, 0, 0, 0, 156, 411 

+ po/or.po,  155, 405, 440, 0, 0, 0, 0, 155, 405 

+ po/oc.po,  157, 433, 497, 0, 0, 0, 0, 157, 433 

+ po/nl.po,  167, 588, 574, 0, 0, 0, 0, 167, 588 

+ po/ne.po,  144, 417, 416, 0, 0, 0, 0, 144, 417 

+ po/nb.po,  144, 417, 408, 0, 0, 0, 0, 144, 417 

+ po/mr.po,  155, 405, 421, 0, 0, 0, 0, 155, 405 

+ po/ml.po,  151, 344, 316, 0, 0, 0, 0, 151, 344 

+ po/mk.po,  116, 231, 245, 0, 0, 0, 0, 116, 231 

+ po/mjw.po,  104, 202, 206, 0, 0, 63, 386, 167, 588 

+ po/lv.po,  168, 594, 552, 0, 0, 0, 0, 168, 594 

+ po/lt.po,  168, 594, 534, 0, 0, 0, 0, 168, 594 

+ po/ko.po,  168, 594, 464, 0, 0, 0, 0, 168, 594 

+ po/kn.po,  155, 405, 399, 0, 0, 0, 0, 155, 405 

+ po/kk.po,  167, 590, 519, 0, 0, 0, 0, 167, 590 

+ po/ja.po,  162, 491, 238, 0, 0, 6, 103, 168, 594 

+ po/it.po,  168, 594, 564, 0, 0, 0, 0, 168, 594 

+ po/is.po,  163, 507, 494, 0, 0, 3, 80, 166, 587 

+ po/id.po,  168, 594, 581, 0, 0, 0, 0, 168, 594 

+ po/hu.po,  168, 594, 537, 0, 0, 0, 0, 168, 594 

+ po/hr.po,  168, 594, 541, 0, 0, 0, 0, 168, 594 

+ po/hi.po,  155, 405, 449, 0, 0, 0, 0, 155, 405 

+ po/he.po,  157, 433, 490, 0, 0, 0, 0, 157, 433 

+ po/gu.po,  157, 433, 490, 0, 0, 0, 0, 157, 433 

+ po/gl.po,  168, 594, 651, 0, 0, 0, 0, 168, 594 

+ po/gd.po,  144, 417, 591, 0, 0, 0, 0, 144, 417 

+ po/ga.po,  117, 184, 202, 1, 4, 33, 142, 151, 330 

+ po/fur.po,  167, 588, 640, 0, 0, 0, 0, 167, 588 

+ po/fr.po,  168, 594, 668, 0, 0, 0, 0, 168, 594 

+ po/fi.po,  168, 594, 455, 0, 0, 0, 0, 168, 594 

+ po/fa.po,  168, 594, 608, 0, 0, 0, 0, 168, 594 

+ po/eu.po,  168, 594, 516, 0, 0, 0, 0, 168, 594 

+ po/et.po,  151, 331, 301, 0, 0, 0, 0, 151, 331 

+ po/es.po,  168, 594, 654, 0, 0, 0, 0, 168, 594 

+ po/eo.po,  159, 481, 474, 0, 0, 0, 0, 159, 481 

+ po/en_GB.po,  168, 594, 600, 0, 0, 0, 0, 168, 594 

+ po/en_CA.po,  145, 309, 310, 0, 0, 0, 0, 145, 309 

+ po/el.po,  168, 594, 640, 0, 0, 0, 0, 168, 594 

+ po/de.po,  168, 594, 566, 0, 0, 0, 0, 168, 594 

+ po/da.po,  166, 587, 520, 0, 0, 0, 0, 166, 587 

+ po/cs.po,  168, 594, 542, 0, 0, 0, 0, 168, 594 

+ po/ca@valencia.po,  144, 417, 499, 0, 0, 0, 0, 144, 417 

+ po/ca.po,  168, 594, 687, 0, 0, 0, 0, 168, 594 

+ po/bs.po,  156, 411, 418, 0, 0, 0, 0, 156, 411 

+ po/bn_IN.po,  155, 405, 449, 0, 0, 0, 0, 155, 405 

+ po/bg.po,  112, 288, 344, 0, 0, 0, 0, 112, 288 

+ po/be.po,  146, 422, 432, 0, 0, 0, 0, 146, 422 

+ po/ast.po,  105, 205, 222, 0, 0, 0, 0, 105, 205 

+ po/as.po,  155, 405, 467, 0, 0, 0, 0, 155, 405 

+ po/ar.po,  155, 380, 423, 0, 0, 2, 53, 157, 433 

+ po/af.po,  99, 186, 192, 5, 8, 3, 16, 107, 210 

@@ -0,0 +1,7 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./panels/datetime/po-timezones/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./panels/datetime/po-timezones/README)

+ translate.tools.pocount: ERROR: Unknown filetype (./panels/datetime/po-timezones/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,175 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ panels/datetime/po-timezones/zh_TW.po,  756, 1313, 886, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/zh_CN.po,  756, 1313, 757, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/vi.po,  504, 504, 981, 69, 88, 183, 721, 756, 1313 

+ panels/datetime/po-timezones/ur.po,  0, 0, 0, 0, 0, 756, 1313, 756, 1313 

+ panels/datetime/po-timezones/uk.po,  752, 1304, 1368, 0, 0, 0, 0, 752, 1304 

+ panels/datetime/po-timezones/tr.po,  612, 672, 672, 4, 8, 140, 633, 756, 1313 

+ panels/datetime/po-timezones/te.po,  756, 1313, 1337, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/ta.po,  756, 1313, 1299, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/sv.po,  752, 1304, 1203, 0, 0, 0, 0, 752, 1304 

+ panels/datetime/po-timezones/sr@latin.po,  750, 1298, 1290, 5, 9, 1, 6, 756, 1313 

+ panels/datetime/po-timezones/sr.po,  750, 1298, 1290, 5, 9, 1, 6, 756, 1313 

+ panels/datetime/po-timezones/sq.po,  551, 551, 551, 38, 54, 167, 708, 756, 1313 

+ panels/datetime/po-timezones/sl.po,  521, 521, 521, 69, 88, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/sk.po,  756, 1313, 1307, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/si.po,  550, 550, 551, 40, 59, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/ru.po,  756, 1313, 1396, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/ro.po,  550, 550, 550, 40, 59, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/pt_BR.po,  756, 1313, 1485, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/pt.po,  756, 1313, 1404, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/pl.po,  756, 1313, 1494, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/pa.po,  756, 1313, 1376, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/or.po,  756, 1313, 1318, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/nn.po,  0, 0, 0, 0, 0, 756, 1313, 756, 1313 

+ panels/datetime/po-timezones/nl.po,  756, 1313, 1289, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/nds.po,  756, 1313, 1295, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/nb.po,  709, 1000, 948, 0, 0, 47, 313, 756, 1313 

+ panels/datetime/po-timezones/ms.po,  551, 551, 551, 39, 58, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/mr.po,  756, 1313, 1318, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/ml.po,  756, 1313, 1312, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/mk.po,  521, 521, 521, 69, 88, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/mai.po,  559, 559, 564, 31, 50, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/lv.po,  549, 549, 622, 41, 60, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/lt.po,  521, 521, 521, 69, 88, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/lo.po,  0, 0, 0, 0, 0, 756, 1313, 756, 1313 

+ panels/datetime/po-timezones/ku.po,  0, 0, 0, 0, 0, 756, 1313, 756, 1313 

+ panels/datetime/po-timezones/ko.po,  756, 1313, 1435, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/kn.po,  756, 1313, 1430, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/ka.po,  166, 166, 166, 40, 53, 550, 1094, 756, 1313 

+ panels/datetime/po-timezones/ja.po,  756, 1313, 912, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/it.po,  756, 1313, 1427, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/is.po,  750, 1298, 1154, 5, 9, 1, 6, 756, 1313 

+ panels/datetime/po-timezones/ilo.po,  0, 0, 0, 0, 0, 756, 1313, 756, 1313 

+ panels/datetime/po-timezones/id.po,  539, 539, 539, 51, 70, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/hu.po,  690, 971, 986, 15, 29, 51, 313, 756, 1313 

+ panels/datetime/po-timezones/hr.po,  551, 551, 563, 39, 58, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/hi.po,  756, 1313, 1317, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/he.po,  504, 504, 515, 31, 50, 221, 759, 756, 1313 

+ panels/datetime/po-timezones/gu.po,  756, 1313, 1388, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/gl.po,  521, 521, 521, 69, 88, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/fr.po,  755, 1307, 1447, 0, 0, 1, 6, 756, 1313 

+ panels/datetime/po-timezones/fi.po,  756, 1313, 1213, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/fa.po,  520, 526, 701, 59, 76, 177, 711, 756, 1313 

+ panels/datetime/po-timezones/et.po,  521, 521, 522, 69, 88, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/es.po,  756, 1313, 1465, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/en_GB.po,  734, 1223, 1223, 19, 67, 3, 23, 756, 1313 

+ panels/datetime/po-timezones/el.po,  734, 1223, 1195, 19, 67, 3, 23, 756, 1313 

+ panels/datetime/po-timezones/de.po,  756, 1313, 1295, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/da.po,  750, 1298, 1198, 5, 9, 1, 6, 756, 1313 

+ panels/datetime/po-timezones/cy.po,  539, 539, 543, 51, 70, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/cs.po,  752, 1304, 1298, 0, 0, 0, 0, 752, 1304 

+ panels/datetime/po-timezones/ca.po,  652, 905, 959, 1, 2, 103, 406, 756, 1313 

+ panels/datetime/po-timezones/bs.po,  550, 550, 562, 40, 59, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/bn_IN.po,  756, 1313, 1335, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/bn.po,  539, 539, 597, 51, 70, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/bg.po,  559, 559, 573, 31, 50, 166, 704, 756, 1313 

+ panels/datetime/po-timezones/ast.po,  756, 1313, 1322, 0, 0, 0, 0, 756, 1313 

+ panels/datetime/po-timezones/as.po,  734, 1223, 1387, 19, 67, 3, 23, 756, 1313 

+ panels/datetime/po-timezones/ar.po,  750, 1298, 1298, 5, 9, 1, 6, 756, 1313 

+ panels/datetime/po-timezones/am.po,  521, 521, 543, 69, 88, 166, 704, 756, 1313 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  564, 2619, 2251, 100, 352, 72, 411, 736, 3382 

+ po/zh_TW.po,  1572, 5528, 2099, 0, 0, 0, 0, 1572, 5528 

+ po/zh_HK.po,  1454, 4946, 1843, 0, 0, 0, 0, 1454, 4946 

+ po/zh_CN.po,  1594, 5684, 2114, 0, 0, 0, 0, 1594, 5684 

+ po/xh.po,  646, 2834, 2520, 55, 267, 36, 284, 737, 3385 

+ po/wa.po,  128, 273, 373, 219, 470, 390, 2642, 737, 3385 

+ po/vi.po,  1526, 5320, 7609, 0, 0, 0, 0, 1526, 5320 

+ po/uz@cyrillic.po,  353, 885, 846, 0, 0, 411, 2281, 764, 3166 

+ po/uz.po,  353, 885, 846, 0, 0, 411, 2281, 764, 3166 

+ po/uk.po,  1492, 5200, 4819, 0, 0, 0, 0, 1492, 5200 

+ po/ug.po,  1432, 4462, 4192, 2, 2, 17, 137, 1451, 4601 

+ po/tr.po,  1595, 5738, 5138, 0, 0, 0, 0, 1595, 5738 

+ po/th.po,  1501, 5190, 2170, 0, 0, 0, 0, 1501, 5190 

+ po/tg.po,  1106, 3632, 3881, 336, 1140, 154, 916, 1596, 5688 

+ po/te.po,  1454, 4946, 4484, 0, 0, 0, 0, 1454, 4946 

+ po/ta.po,  1454, 4946, 4602, 0, 0, 0, 0, 1454, 4946 

+ po/sv.po,  1595, 5738, 5254, 0, 0, 0, 0, 1595, 5738 

+ po/sr@latin.po,  1526, 5320, 5367, 0, 0, 0, 0, 1526, 5320 

+ po/sr.po,  1595, 5738, 5781, 0, 0, 0, 0, 1595, 5738 

+ po/sq.po,  724, 2780, 3203, 0, 0, 0, 0, 724, 2780 

+ po/sl.po,  1592, 5669, 5723, 0, 0, 3, 69, 1595, 5738 

+ po/sk.po,  1585, 5621, 5530, 3, 6, 7, 111, 1595, 5738 

+ po/si.po,  184, 380, 454, 0, 0, 662, 3320, 846, 3700 

+ po/rw.po,  60, 63, 64, 474, 2800, 203, 522, 737, 3385 

+ po/ru.po,  1597, 5688, 5364, 0, 0, 0, 0, 1597, 5688 

+ po/ro.po,  1595, 5738, 6085, 0, 0, 0, 0, 1595, 5738 

+ po/pt_BR.po,  1595, 5738, 6510, 0, 0, 0, 0, 1595, 5738 

+ po/pt.po,  1504, 5267, 5898, 0, 0, 0, 0, 1504, 5267 

+ po/pl.po,  1595, 5738, 5492, 0, 0, 0, 0, 1595, 5738 

+ po/pa.po,  1575, 5477, 6218, 5, 20, 15, 241, 1595, 5738 

+ po/or.po,  1454, 4946, 5435, 0, 0, 0, 0, 1454, 4946 

+ po/oc.po,  1551, 5346, 6226, 0, 0, 16, 119, 1567, 5465 

+ po/nso.po,  571, 2626, 3886, 95, 347, 70, 409, 736, 3382 

+ po/nn.po,  567, 1856, 1702, 0, 0, 492, 1512, 1059, 3368 

+ po/nl.po,  1595, 5738, 5461, 0, 0, 0, 0, 1595, 5738 

+ po/ne.po,  1288, 3406, 3411, 136, 547, 172, 1792, 1596, 5745 

+ po/nds.po,  389, 706, 657, 0, 0, 390, 2519, 779, 3225 

+ po/nb.po,  1570, 5406, 5171, 2, 8, 23, 324, 1595, 5738 

+ po/my.po,  368, 1049, 605, 0, 0, 422, 2315, 790, 3364 

+ po/ms.po,  327, 868, 832, 517, 1222, 610, 2856, 1454, 4946 

+ po/mr.po,  1454, 4946, 4960, 0, 0, 0, 0, 1454, 4946 

+ po/mn.po,  778, 3548, 3065, 0, 0, 0, 0, 778, 3548 

+ po/ml.po,  1386, 4336, 3756, 44, 318, 70, 575, 1500, 5229 

+ po/mk.po,  953, 2882, 3146, 0, 0, 0, 0, 953, 2882 

+ po/mjw.po,  652, 1436, 1444, 0, 0, 943, 4272, 1595, 5708 

+ po/mg.po,  770, 3501, 3857, 3, 15, 0, 0, 773, 3516 

+ po/mai.po,  483, 1583, 1841, 0, 0, 286, 1604, 769, 3187 

+ po/lv.po,  1622, 5713, 5172, 0, 0, 0, 0, 1622, 5713 

+ po/lt.po,  1595, 5738, 5095, 0, 0, 0, 0, 1595, 5738 

+ po/ky.po,  695, 1780, 1661, 11, 26, 415, 1672, 1121, 3478 

+ po/ku.po,  198, 447, 472, 256, 706, 467, 1749, 921, 2902 

+ po/ko.po,  1595, 5738, 4909, 0, 0, 0, 0, 1595, 5738 

+ po/kn.po,  1452, 4958, 4666, 0, 0, 0, 0, 1452, 4958 

+ po/km.po,  19, 30, 20, 0, 0, 0, 0, 19, 30 

+ po/kk.po,  1622, 5713, 5279, 0, 0, 0, 0, 1622, 5713 

+ po/ka.po,  626, 1983, 1670, 51, 322, 48, 494, 725, 2799 

+ po/ja.po,  1580, 5616, 2058, 0, 0, 15, 122, 1595, 5738 

+ po/it.po,  1595, 5738, 6096, 0, 0, 0, 0, 1595, 5738 

+ po/is.po,  1592, 5590, 5462, 0, 0, 6, 99, 1598, 5689 

+ po/id.po,  1595, 5738, 5684, 0, 0, 0, 0, 1595, 5738 

+ po/hy.po,  480, 1906, 1762, 0, 0, 0, 0, 480, 1906 

+ po/hu.po,  1595, 5738, 5178, 0, 0, 0, 0, 1595, 5738 

+ po/hr.po,  1595, 5738, 5568, 0, 0, 0, 0, 1595, 5738 

+ po/hi.po,  1454, 4946, 5873, 0, 0, 0, 0, 1454, 4946 

+ po/he.po,  1502, 5192, 5010, 0, 0, 0, 0, 1502, 5192 

+ po/gu.po,  1454, 4946, 5506, 0, 0, 0, 0, 1454, 4946 

+ po/gl.po,  1595, 5738, 6671, 0, 0, 0, 0, 1595, 5738 

+ po/gd.po,  1526, 5320, 6981, 0, 0, 0, 0, 1526, 5320 

+ po/ga.po,  892, 1952, 2167, 149, 574, 424, 2510, 1465, 5036 

+ po/fur.po,  1595, 5738, 6536, 0, 0, 0, 0, 1595, 5738 

+ po/fr.po,  1595, 5738, 6776, 0, 0, 0, 0, 1595, 5738 

+ po/fi.po,  1587, 5634, 4454, 1, 5, 7, 99, 1595, 5738 

+ po/fa.po,  1595, 5738, 6288, 0, 0, 0, 0, 1595, 5738 

+ po/eu.po,  1596, 5745, 5341, 0, 0, 0, 0, 1596, 5745 

+ po/et.po,  1444, 4906, 4090, 0, 0, 0, 0, 1444, 4906 

+ po/es.po,  1595, 5738, 6737, 0, 0, 0, 0, 1595, 5738 

+ po/eo.po,  1592, 5664, 5245, 4, 24, 0, 0, 1596, 5688 

+ po/en_GB.po,  1595, 5738, 5735, 0, 0, 0, 0, 1595, 5738 

+ po/en_CA.po,  754, 3477, 3483, 0, 0, 0, 0, 754, 3477 

+ po/en@shaw.po,  696, 2803, 2803, 115, 717, 0, 0, 811, 3520 

+ po/en.po,  6, 17, 17, 0, 0, 697, 2243, 703, 2260 

+ po/el.po,  1595, 5738, 6185, 0, 0, 0, 0, 1595, 5738 

+ po/dz.po,  757, 3067, 1479, 0, 0, 0, 0, 757, 3067 

+ po/de.po,  1595, 5738, 5470, 0, 0, 0, 0, 1595, 5738 

+ po/da.po,  1595, 5738, 5233, 0, 0, 0, 0, 1595, 5738 

+ po/cy.po,  763, 3491, 3703, 0, 0, 0, 0, 763, 3491 

+ po/cs.po,  1595, 5738, 5650, 0, 0, 0, 0, 1595, 5738 

+ po/crh.po,  1198, 3387, 3138, 0, 0, 265, 1360, 1463, 4747 

+ po/ca@valencia.po,  1499, 5228, 6292, 0, 0, 0, 0, 1499, 5228 

+ po/ca.po,  1595, 5738, 6850, 0, 0, 0, 0, 1595, 5738 

+ po/bs.po,  1458, 4996, 4829, 0, 0, 0, 0, 1458, 4996 

+ po/br.po,  218, 474, 577, 36, 89, 1200, 4383, 1454, 4946 

+ po/bn_IN.po,  1454, 4946, 5400, 0, 0, 0, 0, 1454, 4946 

+ po/bn.po,  742, 2352, 2435, 0, 0, 0, 0, 742, 2352 

+ po/bg.po,  1499, 5228, 5824, 0, 0, 0, 0, 1499, 5228 

+ po/be@latin.po,  770, 3188, 2909, 0, 0, 0, 0, 770, 3188 

+ po/be.po,  1566, 5516, 5182, 0, 0, 0, 0, 1566, 5516 

+ po/az.po,  564, 2619, 2394, 100, 352, 73, 414, 737, 3385 

+ po/ast.po,  943, 2973, 3288, 0, 0, 0, 0, 943, 2973 

+ po/as.po,  1454, 4946, 5359, 0, 0, 0, 0, 1454, 4946 

+ po/ar.po,  1530, 5172, 4945, 4, 19, 88, 520, 1622, 5711 

+ po/an.po,  1464, 5034, 5936, 0, 0, 0, 0, 1464, 5034 

+ po/am.po,  111, 160, 179, 168, 311, 458, 2914, 737, 3385 

+ po/af.po,  1470, 5162, 5138, 30, 83, 26, 75, 1526, 5320 

@@ -0,0 +1,18 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/fdl/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/fdl/fdl.omf.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/fdl/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/fdl/C/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/gpl/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/gpl/gpl.omf.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/gpl/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/gpl/C/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/lgpl/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/lgpl/lgpl.omf.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/lgpl/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./desktop-docs/lgpl/C/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog.pre-git)

@@ -0,0 +1,180 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ desktop-docs/fdl/zh_CN/zh_CN.po,  69, 2543, 196, 4, 344, 0, 0, 73, 2887 

+ desktop-docs/fdl/vi/vi.po,  74, 2887, 3962, 0, 0, 0, 0, 74, 2887 

+ desktop-docs/fdl/uk/uk.po,  73, 2887, 2544, 0, 0, 0, 0, 73, 2887 

+ desktop-docs/fdl/sv/sv.po,  72, 2889, 2853, 0, 0, 0, 0, 72, 2889 

+ desktop-docs/fdl/sl/sl.po,  72, 2889, 2543, 0, 0, 0, 0, 72, 2889 

+ desktop-docs/fdl/pt_BR/pt_BR.po,  72, 2889, 2981, 0, 0, 0, 0, 72, 2889 

+ desktop-docs/fdl/oc/oc.po,  9, 17, 24, 0, 0, 64, 2870, 73, 2887 

+ desktop-docs/fdl/ko/ko.po,  73, 2887, 2175, 0, 0, 0, 0, 73, 2887 

+ desktop-docs/fdl/hu/hu.po,  72, 2889, 2628, 0, 0, 0, 0, 72, 2889 

+ desktop-docs/fdl/gl/gl.po,  61, 2145, 2156, 0, 0, 11, 744, 72, 2889 

+ desktop-docs/fdl/fr/fr.po,  72, 2889, 3109, 0, 0, 0, 0, 72, 2889 

+ desktop-docs/fdl/eu/eu.po,  73, 2887, 2311, 0, 0, 0, 0, 73, 2887 

+ desktop-docs/fdl/es/es.po,  72, 2889, 3006, 0, 0, 0, 0, 72, 2889 

+ desktop-docs/fdl/el/el.po,  72, 2889, 3045, 0, 0, 0, 0, 72, 2889 

+ desktop-docs/fdl/de/de.po,  72, 2889, 2801, 0, 0, 0, 0, 72, 2889 

+ desktop-docs/fdl/cs/cs.po,  11, 126, 121, 0, 0, 61, 2763, 72, 2889 

+ desktop-docs/fdl/ca/ca.po,  72, 2889, 2977, 0, 0, 0, 0, 72, 2889 

+ desktop-docs/fdl/ar/ar.po,  6, 13, 13, 0, 0, 67, 2874, 73, 2887 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ desktop-docs/gpl/zh_CN/zh_CN.po,  70, 2552, 136, 0, 0, 0, 0, 70, 2552 

+ desktop-docs/gpl/vi/vi.po,  71, 2552, 3505, 0, 0, 0, 0, 71, 2552 

+ desktop-docs/gpl/uk/uk.po,  69, 2511, 2508, 1, 41, 0, 0, 70, 2552 

+ desktop-docs/gpl/sv/sv.po,  69, 2555, 2433, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/sr@latin/sr@latin.po,  69, 2555, 2304, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/sr/sr.po,  69, 2555, 2304, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/sl/sl.po,  69, 2555, 2328, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/pt_BR/pt_BR.po,  69, 2555, 2545, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/pa/pa.po,  25, 77, 85, 0, 0, 41, 2423, 66, 2500 

+ desktop-docs/gpl/oc/oc.po,  18, 33, 38, 0, 0, 52, 2519, 70, 2552 

+ desktop-docs/gpl/nds/nds.po,  39, 465, 489, 31, 2087, 0, 0, 70, 2552 

+ desktop-docs/gpl/ko/ko.po,  70, 2552, 2059, 0, 0, 0, 0, 70, 2552 

+ desktop-docs/gpl/hu/hu.po,  69, 2555, 2094, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/gl/gl.po,  69, 2555, 2851, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/fr/fr.po,  69, 2555, 2948, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/fi/fi.po,  66, 2390, 1826, 3, 165, 0, 0, 69, 2555 

+ desktop-docs/gpl/eu/eu.po,  70, 2552, 1992, 0, 0, 0, 0, 70, 2552 

+ desktop-docs/gpl/es/es.po,  69, 2555, 2722, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/el/el.po,  69, 2555, 2635, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/de/de.po,  69, 2555, 2676, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/cs/cs.po,  69, 2555, 2207, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/ca/ca.po,  69, 2555, 2703, 0, 0, 0, 0, 69, 2555 

+ desktop-docs/gpl/ar/ar.po,  70, 2552, 1913, 0, 0, 0, 0, 70, 2552 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ desktop-docs/lgpl/zh_CN/zh_CN.po,  71, 2364, 156, 3, 132, 25, 1641, 99, 4137 

+ desktop-docs/lgpl/vi/vi.po,  100, 4137, 5545, 0, 0, 0, 0, 100, 4137 

+ desktop-docs/lgpl/uk/uk.po,  99, 4137, 3895, 0, 0, 0, 0, 99, 4137 

+ desktop-docs/lgpl/sv/sv.po,  98, 4140, 3650, 0, 0, 0, 0, 98, 4140 

+ desktop-docs/lgpl/sl/sl.po,  99, 4141, 3695, 0, 0, 0, 0, 99, 4141 

+ desktop-docs/lgpl/pt_BR/pt_BR.po,  98, 4140, 4117, 0, 0, 0, 0, 98, 4140 

+ desktop-docs/lgpl/pa/pa.po,  34, 274, 305, 0, 0, 61, 3811, 95, 4085 

+ desktop-docs/lgpl/oc/oc.po,  22, 41, 46, 0, 0, 77, 4096, 99, 4137 

+ desktop-docs/lgpl/ko/ko.po,  99, 4137, 3163, 0, 0, 0, 0, 99, 4137 

+ desktop-docs/lgpl/hu/hu.po,  98, 4140, 3433, 0, 0, 0, 0, 98, 4140 

+ desktop-docs/lgpl/fr/fr.po,  98, 4140, 4590, 0, 0, 0, 0, 98, 4140 

+ desktop-docs/lgpl/fi/fi.po,  60, 1912, 1495, 8, 465, 31, 1760, 99, 4137 

+ desktop-docs/lgpl/eu/eu.po,  99, 4137, 3084, 0, 0, 0, 0, 99, 4137 

+ desktop-docs/lgpl/es/es.po,  98, 4140, 4433, 0, 0, 0, 0, 98, 4140 

+ desktop-docs/lgpl/el/el.po,  98, 4140, 4214, 0, 0, 0, 0, 98, 4140 

+ desktop-docs/lgpl/de/de.po,  98, 4140, 4452, 0, 0, 0, 0, 98, 4140 

+ desktop-docs/lgpl/cs/cs.po,  11, 103, 104, 0, 0, 87, 4037, 98, 4140 

+ desktop-docs/lgpl/ca/ca.po,  49, 1360, 1388, 0, 0, 49, 2780, 98, 4140 

+ desktop-docs/lgpl/ar/ar.po,  6, 13, 12, 0, 0, 64, 2539, 70, 2552 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  72, 316, 260, 1, 4, 0, 0, 73, 320 

+ po/zh_TW.po,  27, 152, 80, 0, 0, 0, 0, 27, 152 

+ po/zh_HK.po,  23, 146, 83, 0, 0, 0, 0, 23, 146 

+ po/zh_CN.po,  27, 152, 89, 0, 0, 0, 0, 27, 152 

+ po/yo.po,  90, 328, 357, 2, 8, 1, 28, 93, 364 

+ po/yi.po,  2, 2, 2, 2, 2, 69, 316, 73, 320 

+ po/xh.po,  24, 139, 111, 7, 96, 0, 0, 31, 235 

+ po/wa.po,  72, 316, 449, 1, 4, 0, 0, 73, 320 

+ po/vi.po,  23, 146, 179, 0, 0, 0, 0, 23, 146 

+ po/uz@cyrillic.po,  23, 146, 157, 0, 0, 0, 0, 23, 146 

+ po/uz.po,  73, 314, 285, 0, 0, 3, 16, 76, 330 

+ po/ur.po,  9, 15, 16, 3, 3, 61, 305, 73, 323 

+ po/uk.po,  23, 146, 138, 0, 0, 0, 0, 23, 146 

+ po/ug.po,  36, 232, 200, 0, 0, 0, 0, 36, 232 

+ po/tr.po,  34, 159, 144, 0, 0, 0, 0, 34, 159 

+ po/tk.po,  69, 291, 256, 1, 4, 3, 25, 73, 320 

+ po/th.po,  23, 146, 98, 0, 0, 0, 0, 23, 146 

+ po/tg.po,  23, 146, 145, 0, 0, 0, 0, 23, 146 

+ po/te.po,  23, 146, 131, 0, 0, 0, 0, 23, 146 

+ po/ta.po,  23, 146, 138, 0, 0, 0, 0, 23, 146 

+ po/sv.po,  34, 159, 162, 0, 0, 0, 0, 34, 159 

+ po/sr@latin.po,  27, 152, 143, 0, 0, 0, 0, 27, 152 

+ po/sr.po,  34, 159, 151, 0, 0, 0, 0, 34, 159 

+ po/sq.po,  71, 285, 350, 0, 0, 0, 0, 71, 285 

+ po/sl.po,  34, 159, 155, 0, 0, 0, 0, 34, 159 

+ po/sk.po,  34, 159, 136, 0, 0, 0, 0, 34, 159 

+ po/si.po,  76, 330, 344, 0, 0, 0, 0, 76, 330 

+ po/rw.po,  14, 15, 19, 44, 276, 15, 29, 73, 320 

+ po/ru.po,  27, 152, 153, 0, 0, 0, 0, 27, 152 

+ po/ro.po,  34, 159, 161, 0, 0, 0, 0, 34, 159 

+ po/pt_BR.po,  34, 159, 180, 0, 0, 0, 0, 34, 159 

+ po/pt.po,  23, 146, 150, 0, 0, 0, 0, 23, 146 

+ po/ps.po,  58, 144, 174, 0, 0, 11, 139, 69, 283 

+ po/pl.po,  34, 159, 162, 0, 0, 0, 0, 34, 159 

+ po/pa.po,  34, 159, 172, 0, 0, 0, 0, 34, 159 

+ po/or.po,  23, 146, 147, 0, 0, 0, 0, 23, 146 

+ po/oc.po,  23, 146, 167, 0, 0, 0, 0, 23, 146 

+ po/nso.po,  72, 316, 489, 1, 4, 0, 0, 73, 320 

+ po/nn.po,  22, 196, 192, 9, 39, 0, 0, 31, 235 

+ po/nl.po,  27, 152, 153, 0, 0, 0, 0, 27, 152 

+ po/ne.po,  34, 159, 152, 0, 0, 0, 0, 34, 159 

+ po/nds.po,  53, 351, 360, 0, 0, 0, 0, 53, 351 

+ po/nb.po,  34, 159, 154, 0, 0, 0, 0, 34, 159 

+ po/ms.po,  61, 377, 360, 0, 0, 0, 0, 61, 377 

+ po/mr.po,  23, 146, 148, 0, 0, 0, 0, 23, 146 

+ po/mn.po,  53, 349, 301, 0, 0, 0, 0, 53, 349 

+ po/ml.po,  27, 152, 132, 0, 0, 0, 0, 27, 152 

+ po/mk.po,  31, 235, 253, 0, 0, 0, 0, 31, 235 

+ po/mjw.po,  24, 48, 48, 0, 0, 10, 111, 34, 159 

+ po/mi.po,  14, 20, 27, 1, 4, 58, 296, 73, 320 

+ po/mg.po,  70, 281, 336, 1, 4, 0, 0, 71, 285 

+ po/mai.po,  53, 351, 388, 0, 0, 0, 0, 53, 351 

+ po/lv.po,  34, 159, 151, 0, 0, 0, 0, 34, 159 

+ po/lt.po,  34, 159, 143, 0, 0, 0, 0, 34, 159 

+ po/lo.po,  23, 146, 97, 0, 0, 0, 0, 23, 146 

+ po/li.po,  33, 96, 95, 18, 32, 22, 192, 73, 320 

+ po/ky.po,  35, 241, 210, 0, 0, 0, 0, 35, 241 

+ po/ku.po,  48, 297, 340, 0, 0, 5, 54, 53, 351 

+ po/ko.po,  34, 159, 154, 0, 0, 0, 0, 34, 159 

+ po/kn.po,  23, 146, 138, 0, 0, 0, 0, 23, 146 

+ po/km.po,  31, 235, 140, 0, 0, 0, 0, 31, 235 

+ po/kk.po,  27, 152, 136, 0, 0, 0, 0, 27, 152 

+ po/kg.po,  49, 384, 392, 0, 0, 0, 0, 49, 384 

+ po/ka.po,  69, 283, 241, 0, 0, 0, 0, 69, 283 

+ po/ja.po,  28, 153, 106, 0, 0, 6, 6, 34, 159 

+ po/it.po,  34, 159, 161, 0, 0, 0, 0, 34, 159 

+ po/is.po,  27, 152, 139, 0, 0, 0, 0, 27, 152 

+ po/ig.po,  29, 203, 227, 3, 14, 20, 132, 52, 349 

+ po/id.po,  34, 159, 165, 0, 0, 0, 0, 34, 159 

+ po/hy.po,  52, 345, 326, 1, 4, 0, 0, 53, 349 

+ po/hu.po,  34, 159, 134, 0, 0, 0, 0, 34, 159 

+ po/hr.po,  34, 159, 145, 0, 0, 0, 0, 34, 159 

+ po/hi.po,  23, 146, 172, 0, 0, 0, 0, 23, 146 

+ po/he.po,  23, 146, 141, 0, 0, 0, 0, 23, 146 

+ po/ha.po,  29, 203, 314, 3, 14, 20, 132, 52, 349 

+ po/gu.po,  23, 146, 163, 0, 0, 0, 0, 23, 146 

+ po/gl.po,  34, 159, 182, 0, 0, 0, 0, 34, 159 

+ po/gd.po,  23, 146, 198, 0, 0, 0, 0, 23, 146 

+ po/ga.po,  27, 136, 146, 0, 0, 9, 97, 36, 233 

+ po/fy.po,  40, 209, 219, 0, 0, 21, 229, 61, 438 

+ po/fur.po,  34, 159, 179, 0, 0, 0, 0, 34, 159 

+ po/fr.po,  34, 159, 183, 0, 0, 0, 0, 34, 159 

+ po/fi.po,  27, 152, 136, 0, 0, 0, 0, 27, 152 

+ po/fa.po,  34, 159, 174, 0, 0, 0, 0, 34, 159 

+ po/eu.po,  34, 159, 150, 0, 0, 0, 0, 34, 159 

+ po/et.po,  23, 146, 128, 0, 0, 0, 0, 23, 146 

+ po/es.po,  34, 159, 183, 0, 0, 0, 0, 34, 159 

+ po/eo.po,  27, 152, 159, 0, 0, 0, 0, 27, 152 

+ po/en_GB.po,  27, 152, 152, 0, 0, 0, 0, 27, 152 

+ po/en_CA.po,  76, 330, 330, 0, 0, 0, 0, 76, 330 

+ po/en@shaw.po,  49, 334, 334, 12, 104, 0, 0, 61, 438 

+ po/en.po,  12, 34, 34, 0, 0, 0, 0, 12, 34 

+ po/el.po,  34, 159, 173, 0, 0, 0, 0, 34, 159 

+ po/dz.po,  69, 283, 161, 0, 0, 0, 0, 69, 283 

+ po/de.po,  34, 159, 156, 0, 0, 0, 0, 34, 159 

+ po/da.po,  34, 159, 152, 0, 0, 0, 0, 34, 159 

+ po/cy.po,  73, 323, 336, 0, 0, 0, 0, 73, 323 

+ po/csb.po,  31, 235, 231, 0, 0, 0, 0, 31, 235 

+ po/cs.po,  34, 159, 142, 0, 0, 0, 0, 34, 159 

+ po/crh.po,  36, 233, 216, 0, 0, 0, 0, 36, 233 

+ po/ca@valencia.po,  23, 146, 175, 0, 0, 0, 0, 23, 146 

+ po/ca.po,  34, 159, 192, 0, 0, 0, 0, 34, 159 

+ po/bs.po,  23, 146, 134, 0, 0, 0, 0, 23, 146 

+ po/br.po,  51, 335, 372, 1, 4, 1, 10, 53, 349 

+ po/bn_IN.po,  23, 146, 153, 0, 0, 0, 0, 23, 146 

+ po/bn.po,  31, 235, 225, 0, 0, 0, 0, 31, 235 

+ po/bg.po,  23, 146, 149, 0, 0, 0, 0, 23, 146 

+ po/be@latin.po,  52, 349, 326, 0, 0, 0, 0, 52, 349 

+ po/be.po,  27, 152, 156, 0, 0, 0, 0, 27, 152 

+ po/az.po,  72, 316, 299, 1, 4, 0, 0, 73, 320 

+ po/ast.po,  23, 207, 230, 0, 0, 0, 0, 23, 207 

+ po/as.po,  23, 146, 151, 0, 0, 0, 0, 23, 146 

+ po/ar.po,  27, 152, 143, 0, 0, 0, 0, 27, 152 

+ po/an.po,  23, 146, 161, 0, 0, 0, 0, 23, 146 

+ po/am.po,  32, 92, 97, 19, 36, 22, 192, 73, 320 

+ po/af.po,  31, 235, 249, 0, 0, 0, 0, 31, 235 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,78 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  735, 3945, 1147, 0, 0, 0, 0, 735, 3945 

+ po/zh_HK.po,  632, 3423, 980, 0, 0, 0, 0, 632, 3423 

+ po/zh_CN.po,  714, 3822, 1132, 0, 0, 0, 0, 714, 3822 

+ po/vi.po,  693, 3718, 4930, 0, 0, 0, 0, 693, 3718 

+ po/uk.po,  417, 2229, 2007, 0, 0, 0, 0, 417, 2229 

+ po/ug.po,  734, 3775, 3382, 0, 0, 3, 88, 737, 3863 

+ po/tr.po,  744, 3967, 3407, 0, 0, 0, 0, 744, 3967 

+ po/th.po,  654, 3543, 1165, 0, 0, 0, 0, 654, 3543 

+ po/tg.po,  610, 3061, 3051, 56, 394, 46, 350, 712, 3805 

+ po/te.po,  632, 3423, 2829, 0, 0, 0, 0, 632, 3423 

+ po/ta.po,  632, 3423, 2869, 0, 0, 0, 0, 632, 3423 

+ po/sv.po,  744, 3967, 3805, 0, 0, 0, 0, 744, 3967 

+ po/sr@latin.po,  713, 3820, 3823, 0, 0, 0, 0, 713, 3820 

+ po/sr.po,  744, 3967, 3949, 0, 0, 0, 0, 744, 3967 

+ po/sl.po,  744, 3967, 3896, 0, 0, 0, 0, 744, 3967 

+ po/sk.po,  736, 3868, 3803, 1, 44, 7, 55, 744, 3967 

+ po/ru.po,  737, 3949, 3517, 0, 0, 0, 0, 737, 3949 

+ po/ro.po,  744, 3967, 4569, 0, 0, 0, 0, 744, 3967 

+ po/pt_BR.po,  744, 3967, 4637, 0, 0, 0, 0, 744, 3967 

+ po/pt.po,  653, 3535, 4016, 0, 0, 0, 0, 653, 3535 

+ po/pl.po,  744, 3967, 3826, 0, 0, 0, 0, 744, 3967 

+ po/pa.po,  632, 3423, 3769, 0, 0, 0, 0, 632, 3423 

+ po/or.po,  632, 3423, 3434, 0, 0, 0, 0, 632, 3423 

+ po/oc.po,  654, 3543, 4230, 0, 0, 0, 0, 654, 3543 

+ po/nl.po,  735, 3954, 4011, 0, 0, 0, 0, 735, 3954 

+ po/ne.po,  196, 389, 411, 229, 745, 207, 2289, 632, 3423 

+ po/nb.po,  679, 3489, 3459, 7, 90, 7, 139, 693, 3718 

+ po/ms.po,  515, 1288, 1281, 0, 0, 562, 3256, 1077, 4544 

+ po/mr.po,  632, 3423, 3032, 0, 0, 0, 0, 632, 3423 

+ po/ml.po,  737, 3863, 2984, 0, 0, 0, 0, 737, 3863 

+ po/mk.po,  1077, 4544, 4989, 0, 0, 0, 0, 1077, 4544 

+ po/mjw.po,  179, 467, 446, 0, 0, 565, 3500, 744, 3967 

+ po/mai.po,  111, 148, 208, 0, 0, 700, 3894, 811, 4042 

+ po/lv.po,  744, 3967, 3564, 0, 0, 0, 0, 744, 3967 

+ po/lt.po,  744, 3967, 3440, 0, 0, 0, 0, 744, 3967 

+ po/ku.po,  224, 475, 516, 107, 331, 746, 3738, 1077, 4544 

+ po/ko.po,  744, 3967, 3257, 0, 0, 0, 0, 744, 3967 

+ po/kn.po,  632, 3423, 2888, 0, 0, 0, 0, 632, 3423 

+ po/km.po,  632, 3423, 1312, 0, 0, 0, 0, 632, 3423 

+ po/kk.po,  478, 1684, 1634, 0, 0, 259, 2265, 737, 3949 

+ po/ja.po,  724, 3848, 1284, 0, 0, 20, 119, 744, 3967 

+ po/it.po,  744, 3967, 4175, 0, 0, 0, 0, 744, 3967 

+ po/is.po,  424, 1227, 1270, 0, 0, 311, 2718, 735, 3945 

+ po/id.po,  744, 3967, 3828, 0, 0, 0, 0, 744, 3967 

+ po/hy.po,  1075, 4544, 4122, 0, 0, 0, 0, 1075, 4544 

+ po/hu.po,  744, 3967, 3513, 0, 0, 0, 0, 744, 3967 

+ po/hr.po,  744, 3967, 3650, 0, 0, 0, 0, 744, 3967 

+ po/hi.po,  632, 3423, 4135, 0, 0, 0, 0, 632, 3423 

+ po/he.po,  653, 3522, 3213, 1, 21, 0, 0, 654, 3543 

+ po/gu.po,  652, 3533, 3852, 0, 0, 0, 0, 652, 3533 

+ po/gl.po,  744, 3967, 4789, 0, 0, 0, 0, 744, 3967 

+ po/gd.po,  713, 3820, 5126, 0, 0, 0, 0, 713, 3820 

+ po/ga.po,  205, 416, 464, 29, 89, 516, 3404, 750, 3909 

+ po/fur.po,  735, 3954, 4614, 0, 0, 0, 0, 735, 3954 

+ po/fr.po,  744, 3967, 4808, 0, 0, 0, 0, 744, 3967 

+ po/fi.po,  728, 3847, 2904, 7, 67, 9, 53, 744, 3967 

+ po/fa.po,  685, 2976, 3077, 0, 0, 57, 968, 742, 3944 

+ po/eu.po,  744, 3967, 3318, 0, 0, 0, 0, 744, 3967 

+ po/et.po,  545, 3026, 2339, 0, 0, 0, 0, 545, 3026 

+ po/es.po,  744, 3967, 4685, 0, 0, 0, 0, 744, 3967 

+ po/eo.po,  638, 3083, 2957, 0, 0, 95, 839, 733, 3922 

+ po/en_GB.po,  744, 3967, 3975, 0, 0, 0, 0, 744, 3967 

+ po/en@shaw.po,  455, 1944, 1944, 620, 2600, 0, 0, 1075, 4544 

+ po/el.po,  714, 3785, 4093, 13, 99, 8, 70, 735, 3954 

+ po/de.po,  744, 3967, 3960, 0, 0, 0, 0, 744, 3967 

+ po/da.po,  735, 3945, 3719, 0, 0, 0, 0, 735, 3945 

+ po/cs.po,  744, 3967, 3890, 0, 0, 0, 0, 744, 3967 

+ po/ca@valencia.po,  693, 3718, 4784, 0, 0, 0, 0, 693, 3718 

+ po/ca.po,  744, 3967, 5059, 0, 0, 0, 0, 744, 3967 

+ po/bs.po,  636, 3435, 3325, 0, 0, 0, 0, 636, 3435 

+ po/bn_IN.po,  632, 3423, 3588, 0, 0, 0, 0, 632, 3423 

+ po/bn.po,  1075, 4544, 4689, 0, 0, 0, 0, 1075, 4544 

+ po/bg.po,  545, 3026, 3514, 0, 0, 0, 0, 545, 3026 

+ po/be.po,  693, 3718, 3424, 0, 0, 0, 0, 693, 3718 

+ po/ast.po,  1075, 4544, 5095, 0, 0, 0, 0, 1075, 4544 

+ po/as.po,  632, 3423, 3389, 0, 0, 0, 0, 632, 3423 

+ po/ar.po,  265, 995, 1082, 159, 753, 287, 2054, 711, 3802 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,98 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  45, 142, 113, 0, 0, 156, 385, 201, 527 

+ po/zh_HK.po,  27, 110, 89, 0, 0, 0, 0, 27, 110 

+ po/zh_CN.po,  30, 130, 52, 0, 0, 0, 0, 30, 130 

+ po/xh.po,  18, 32, 33, 0, 0, 0, 0, 18, 32 

+ po/wa.po,  2, 2, 2, 5, 6, 11, 24, 18, 32 

+ po/vi.po,  29, 113, 180, 0, 0, 0, 0, 29, 113 

+ po/uz@cyrillic.po,  28, 116, 96, 0, 0, 0, 0, 28, 116 

+ po/uk.po,  30, 130, 108, 0, 0, 0, 0, 30, 130 

+ po/ug.po,  24, 46, 63, 0, 0, 0, 0, 24, 46 

+ po/tr.po,  203, 536, 616, 0, 0, 0, 0, 203, 536 

+ po/th.po,  30, 130, 57, 0, 0, 0, 0, 30, 130 

+ po/tg.po,  30, 130, 140, 0, 0, 0, 0, 30, 130 

+ po/te.po,  26, 109, 92, 0, 0, 0, 0, 26, 109 

+ po/ta.po,  26, 109, 95, 0, 0, 0, 0, 26, 109 

+ po/sv.po,  203, 536, 491, 0, 0, 0, 0, 203, 536 

+ po/sr@latin.po,  182, 470, 518, 0, 0, 0, 0, 182, 470 

+ po/sr.po,  203, 536, 582, 0, 0, 0, 0, 203, 536 

+ po/sq.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/sl.po,  203, 536, 583, 0, 0, 0, 0, 203, 536 

+ po/sk.po,  83, 234, 236, 0, 0, 99, 236, 182, 470 

+ po/si.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/rw.po,  0, 0, 0, 5, 6, 13, 26, 18, 32 

+ po/ru.po,  58, 172, 188, 0, 0, 124, 298, 182, 470 

+ po/ro.po,  203, 536, 624, 0, 0, 0, 0, 203, 536 

+ po/pt_BR.po,  203, 536, 734, 0, 0, 0, 0, 203, 536 

+ po/pt.po,  30, 130, 161, 0, 0, 0, 0, 30, 130 

+ po/ps.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/pl.po,  203, 536, 619, 0, 0, 0, 0, 203, 536 

+ po/pa.po,  27, 110, 137, 0, 0, 0, 0, 27, 110 

+ po/or.po,  26, 109, 105, 0, 0, 0, 0, 26, 109 

+ po/oc.po,  130, 332, 389, 0, 0, 0, 0, 130, 332 

+ po/nn.po,  1, 1, 1, 6, 8, 11, 23, 18, 32 

+ po/nl.po,  201, 529, 452, 0, 0, 0, 0, 201, 529 

+ po/ne.po,  29, 113, 110, 0, 0, 0, 0, 29, 113 

+ po/nds.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/nb.po,  41, 130, 131, 1, 2, 142, 340, 184, 472 

+ po/ms.po,  2, 2, 2, 4, 5, 12, 25, 18, 32 

+ po/mr.po,  26, 109, 99, 0, 0, 0, 0, 26, 109 

+ po/mn.po,  2, 2, 2, 4, 5, 12, 25, 18, 32 

+ po/ml.po,  129, 347, 369, 0, 0, 72, 180, 201, 527 

+ po/mk.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/mg.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/mai.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/lv.po,  203, 536, 549, 0, 0, 0, 0, 203, 536 

+ po/lt.po,  203, 536, 535, 0, 0, 0, 0, 203, 536 

+ po/ky.po,  22, 39, 46, 0, 0, 0, 0, 22, 39 

+ po/ku.po,  0, 0, 0, 6, 7, 12, 25, 18, 32 

+ po/ko.po,  203, 536, 528, 0, 0, 0, 0, 203, 536 

+ po/kn.po,  26, 109, 94, 0, 0, 0, 0, 26, 109 

+ po/km.po,  18, 32, 35, 0, 0, 0, 0, 18, 32 

+ po/kk.po,  77, 206, 198, 0, 0, 124, 323, 201, 529 

+ po/ka.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/ja.po,  30, 130, 120, 0, 0, 0, 0, 30, 130 

+ po/it.po,  203, 536, 605, 0, 0, 0, 0, 203, 536 

+ po/is.po,  111, 304, 288, 0, 0, 89, 222, 200, 526 

+ po/id.po,  203, 536, 582, 0, 0, 0, 0, 203, 536 

+ po/hu.po,  203, 536, 567, 0, 0, 0, 0, 203, 536 

+ po/hr.po,  203, 536, 568, 0, 0, 0, 0, 203, 536 

+ po/hi.po,  26, 109, 121, 0, 0, 0, 0, 26, 109 

+ po/he.po,  30, 130, 132, 0, 0, 0, 0, 30, 130 

+ po/gu.po,  26, 109, 120, 0, 0, 0, 0, 26, 109 

+ po/gl.po,  203, 536, 677, 0, 0, 0, 0, 203, 536 

+ po/gd.po,  29, 113, 153, 0, 0, 0, 0, 29, 113 

+ po/ga.po,  24, 46, 57, 0, 0, 1, 1, 25, 47 

+ po/fur.po,  104, 286, 321, 0, 0, 97, 243, 201, 529 

+ po/fr.po,  203, 536, 634, 0, 0, 0, 0, 203, 536 

+ po/fi.po,  203, 536, 508, 0, 0, 0, 0, 203, 536 

+ po/fa.po,  143, 396, 430, 0, 0, 60, 140, 203, 536 

+ po/eu.po,  203, 536, 509, 0, 0, 0, 0, 203, 536 

+ po/et.po,  25, 47, 74, 0, 0, 0, 0, 25, 47 

+ po/es.po,  203, 536, 664, 0, 0, 0, 0, 203, 536 

+ po/eo.po,  127, 341, 339, 0, 0, 74, 186, 201, 527 

+ po/en_GB.po,  203, 536, 543, 0, 0, 0, 0, 203, 536 

+ po/en_CA.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/el.po,  79, 245, 297, 1, 2, 120, 279, 200, 526 

+ po/dz.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/de.po,  203, 536, 524, 0, 0, 0, 0, 203, 536 

+ po/da.po,  200, 526, 498, 0, 0, 0, 0, 200, 526 

+ po/cy.po,  1, 1, 1, 7, 9, 10, 22, 18, 32 

+ po/cs.po,  203, 536, 564, 0, 0, 0, 0, 203, 536 

+ po/crh.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/ca@valencia.po,  29, 113, 159, 0, 0, 0, 0, 29, 113 

+ po/ca.po,  203, 536, 664, 0, 0, 0, 0, 203, 536 

+ po/bs.po,  30, 130, 127, 0, 0, 0, 0, 30, 130 

+ po/br.po,  24, 46, 58, 0, 0, 0, 0, 24, 46 

+ po/bn_IN.po,  26, 109, 116, 0, 0, 0, 0, 26, 109 

+ po/bn.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/bg.po,  29, 113, 133, 0, 0, 0, 0, 29, 113 

+ po/be@latin.po,  0, 0, 0, 7, 9, 11, 23, 18, 32 

+ po/be.po,  29, 113, 109, 0, 0, 0, 0, 29, 113 

+ po/az.po,  2, 2, 2, 4, 5, 12, 25, 18, 32 

+ po/ast.po,  18, 32, 41, 0, 0, 0, 0, 18, 32 

+ po/as.po,  27, 110, 118, 0, 0, 0, 0, 27, 110 

+ po/ar.po,  201, 527, 554, 0, 0, 0, 0, 201, 527 

+ po/an.po,  30, 130, 149, 0, 0, 0, 0, 30, 130 

+ po/am.po,  2, 2, 2, 5, 6, 11, 24, 18, 32 

+ po/af.po,  25, 47, 48, 0, 0, 0, 0, 25, 47 

@@ -0,0 +1,40 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ gnome-help/nl/nl.po,  345, 2507, 2522, 0, 0, 0, 0, 345, 2507 

+ gnome-help/cs/cs.po,  287, 2216, 1925, 0, 0, 0, 0, 287, 2216 

+ gnome-help/gl/gl.po,  287, 2216, 2283, 0, 0, 0, 0, 287, 2216 

+ gnome-help/lt/lt.po,  345, 2507, 1885, 0, 0, 0, 0, 345, 2507 

+ gnome-help/pl/pl.po,  287, 2216, 1811, 0, 0, 0, 0, 287, 2216 

+ gnome-help/hr/hr.po,  345, 2507, 2100, 0, 0, 0, 0, 345, 2507 

+ gnome-help/fr/fr.po,  339, 2481, 2571, 0, 0, 0, 0, 339, 2481 

+ gnome-help/ko/ko.po,  287, 2216, 1504, 0, 0, 0, 0, 287, 2216 

+ gnome-help/el/el.po,  337, 2501, 2544, 0, 0, 0, 0, 337, 2501 

+ gnome-help/de/de.po,  287, 2216, 2191, 0, 0, 0, 0, 287, 2216 

+ gnome-help/id/id.po,  338, 2508, 2197, 0, 0, 0, 0, 338, 2508 

+ gnome-help/kn/kn.po,  339, 2639, 1983, 0, 0, 0, 0, 339, 2639 

+ gnome-help/fi/fi.po,  342, 2507, 1623, 0, 0, 0, 0, 342, 2507 

+ gnome-help/lv/lv.po,  345, 2507, 1970, 0, 0, 0, 0, 345, 2507 

+ gnome-help/ru/ru.po,  335, 2569, 2126, 0, 0, 0, 0, 335, 2569 

+ gnome-help/zh_TW/zh_TW.po,  339, 2639, 605, 0, 0, 0, 0, 339, 2639 

+ gnome-help/pt/pt.po,  337, 2506, 2522, 0, 0, 0, 0, 337, 2506 

+ gnome-help/sv/sv.po,  287, 2216, 2036, 0, 0, 0, 0, 287, 2216 

+ gnome-help/da/da.po,  345, 2507, 2309, 0, 0, 0, 0, 345, 2507 

+ gnome-help/eo/eo.po,  338, 2397, 2161, 0, 0, 7, 110, 345, 2507 

+ gnome-help/hu/hu.po,  287, 2216, 1865, 0, 0, 0, 0, 287, 2216 

+ gnome-help/ca/ca.po,  287, 2216, 2625, 0, 0, 0, 0, 287, 2216 

+ gnome-help/sr@latin/sr@latin.po,  338, 2508, 2306, 0, 0, 0, 0, 338, 2508 

+ gnome-help/mr/mr.po,  339, 2639, 2044, 0, 0, 0, 0, 339, 2639 

+ gnome-help/as/as.po,  339, 2639, 2245, 0, 0, 0, 0, 339, 2639 

+ gnome-help/ta/ta.po,  339, 2639, 1992, 0, 0, 0, 0, 339, 2639 

+ gnome-help/es/es.po,  287, 2216, 2427, 0, 0, 0, 0, 287, 2216 

+ gnome-help/sr/sr.po,  345, 2507, 2311, 0, 0, 0, 0, 345, 2507 

+ gnome-help/gu/gu.po,  322, 2301, 2180, 6, 125, 11, 213, 339, 2639 

+ gnome-help/ro/ro.po,  342, 2507, 2495, 0, 0, 0, 0, 342, 2507 

+ gnome-help/ja/ja.po,  337, 2501, 487, 0, 0, 0, 0, 337, 2501 

+ gnome-help/he/he.po,  337, 2506, 1879, 0, 0, 0, 0, 337, 2506 

+ gnome-help/zh_HK/zh_HK.po,  339, 2639, 605, 0, 0, 0, 0, 339, 2639 

+ gnome-help/hi/hi.po,  339, 2639, 2791, 0, 0, 0, 0, 339, 2639 

+ gnome-help/pt_BR/pt_BR.po,  287, 2216, 2368, 0, 0, 0, 0, 287, 2216 

+ gnome-help/te/te.po,  339, 2639, 1846, 0, 0, 0, 0, 339, 2639 

+ gnome-help/pa/pa.po,  339, 2639, 2801, 0, 0, 0, 0, 339, 2639 

+ gnome-help/sk/sk.po,  336, 2499, 2115, 1, 2, 0, 0, 337, 2501 

+ gnome-help/it/it.po,  287, 2216, 2144, 0, 0, 0, 0, 287, 2216 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,104 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/is.po,  31, 34, 35, 1, 2, 14, 16, 46, 52 

+ po/gd.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/eu.po,  38, 43, 43, 0, 0, 0, 0, 38, 43 

+ po/fur.po,  38, 43, 44, 0, 0, 0, 0, 38, 43 

+ po/sk.po,  38, 43, 45, 0, 0, 0, 0, 38, 43 

+ po/cy.po,  47, 53, 70, 0, 0, 0, 0, 47, 53 

+ po/am.po,  21, 21, 21, 3, 7, 22, 24, 46, 52 

+ po/km.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/sv.po,  40, 45, 44, 0, 0, 0, 0, 40, 45 

+ po/fr.po,  38, 43, 48, 0, 0, 0, 0, 38, 43 

+ po/sl.po,  38, 43, 45, 0, 0, 0, 0, 38, 43 

+ po/cs.po,  38, 43, 46, 0, 0, 0, 0, 38, 43 

+ po/zh_TW.po,  16, 20, 18, 0, 0, 0, 0, 16, 20 

+ po/fa.po,  47, 53, 71, 0, 0, 0, 0, 47, 53 

+ po/mg.po,  44, 49, 54, 1, 1, 0, 0, 45, 50 

+ po/si.po,  44, 49, 55, 0, 0, 0, 0, 44, 49 

+ po/af.po,  38, 43, 39, 0, 0, 0, 0, 38, 43 

+ po/ca.po,  40, 45, 47, 0, 0, 0, 0, 40, 45 

+ po/hu.po,  16, 20, 19, 0, 0, 0, 0, 16, 20 

+ po/ru.po,  38, 43, 48, 0, 0, 0, 0, 38, 43 

+ po/de.po,  46, 51, 55, 0, 0, 0, 0, 46, 51 

+ po/sr@latin.po,  16, 20, 21, 0, 0, 0, 0, 16, 20 

+ po/lv.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/nds.po,  16, 20, 20, 0, 0, 0, 0, 16, 20 

+ po/bn_IN.po,  46, 51, 55, 0, 0, 0, 0, 46, 51 

+ po/br.po,  16, 20, 22, 0, 0, 0, 0, 16, 20 

+ po/mk.po,  38, 43, 47, 0, 0, 0, 0, 38, 43 

+ po/xh.po,  47, 53, 63, 0, 0, 0, 0, 47, 53 

+ po/uk.po,  38, 43, 47, 0, 0, 0, 0, 38, 43 

+ po/or.po,  2, 4, 5, 0, 0, 0, 0, 2, 4 

+ po/wa.po,  27, 28, 30, 2, 5, 17, 19, 46, 52 

+ po/tk.po,  33, 36, 37, 1, 2, 12, 14, 46, 52 

+ po/pt.po,  38, 43, 47, 0, 0, 0, 0, 38, 43 

+ po/nhn.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/as.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/pt_BR.po,  16, 20, 23, 0, 0, 0, 0, 16, 20 

+ po/oc.po,  14, 16, 18, 0, 0, 2, 4, 16, 20 

+ po/en_CA.po,  38, 43, 43, 0, 0, 0, 0, 38, 43 

+ po/el.po,  2, 4, 5, 0, 0, 0, 0, 2, 4 

+ po/fi.po,  46, 51, 56, 0, 0, 0, 0, 46, 51 

+ po/tr.po,  16, 20, 21, 0, 0, 0, 0, 16, 20 

+ po/vi.po,  47, 51, 129, 0, 0, 0, 0, 47, 51 

+ po/ro.po,  16, 20, 22, 0, 0, 0, 0, 16, 20 

+ po/ne.po,  38, 43, 42, 0, 0, 0, 0, 38, 43 

+ po/nb.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/uz.po,  16, 20, 22, 0, 0, 0, 0, 16, 20 

+ po/kn.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/eo.po,  2, 4, 3, 0, 0, 0, 0, 2, 4 

+ po/bn.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/ps.po,  16, 20, 21, 0, 0, 0, 0, 16, 20 

+ po/an.po,  2, 4, 5, 0, 0, 0, 0, 2, 4 

+ po/ka.po,  47, 53, 56, 0, 0, 0, 0, 47, 53 

+ po/ta.po,  46, 51, 52, 0, 0, 0, 0, 46, 51 

+ po/ms.po,  39, 45, 45, 0, 0, 7, 7, 46, 52 

+ po/hr.po,  16, 20, 22, 0, 0, 0, 0, 16, 20 

+ po/mai.po,  16, 20, 20, 0, 0, 0, 0, 16, 20 

+ po/he.po,  38, 43, 48, 0, 0, 0, 0, 38, 43 

+ po/crh.po,  16, 20, 18, 0, 0, 0, 0, 16, 20 

+ po/ca@valencia.po,  2, 4, 6, 0, 0, 0, 0, 2, 4 

+ po/ku.po,  2, 4, 5, 0, 0, 0, 0, 2, 4 

+ po/csb.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/mn.po,  33, 36, 36, 1, 2, 12, 14, 46, 52 

+ po/nn.po,  2, 4, 3, 0, 0, 0, 0, 2, 4 

+ po/en@shaw.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/ast.po,  16, 20, 21, 0, 0, 0, 0, 16, 20 

+ po/et.po,  46, 51, 48, 0, 0, 0, 0, 46, 51 

+ po/bs.po,  46, 52, 51, 0, 0, 0, 0, 46, 52 

+ po/ga.po,  38, 43, 49, 0, 0, 0, 0, 38, 43 

+ po/gu.po,  46, 51, 52, 0, 0, 0, 0, 46, 51 

+ po/en_GB.po,  38, 43, 43, 0, 0, 0, 0, 38, 43 

+ po/zh_CN.po,  38, 43, 39, 0, 0, 0, 0, 38, 43 

+ po/th.po,  40, 45, 41, 0, 0, 0, 0, 40, 45 

+ po/it.po,  38, 43, 44, 0, 0, 0, 0, 38, 43 

+ po/tg.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/ko.po,  38, 43, 45, 0, 0, 0, 0, 38, 43 

+ po/pl.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/li.po,  22, 22, 22, 3, 7, 21, 23, 46, 52 

+ po/id.po,  47, 53, 55, 0, 0, 0, 0, 47, 53 

+ po/ar.po,  16, 20, 21, 0, 0, 0, 0, 16, 20 

+ po/ug.po,  2, 4, 5, 0, 0, 0, 0, 2, 4 

+ po/uz@cyrillic.po,  16, 20, 22, 0, 0, 0, 0, 16, 20 

+ po/ml.po,  38, 43, 42, 0, 0, 0, 0, 38, 43 

+ po/rw.po,  18, 18, 19, 12, 16, 17, 19, 47, 53 

+ po/lt.po,  38, 43, 41, 0, 0, 0, 0, 38, 43 

+ po/kk.po,  16, 20, 23, 0, 0, 0, 0, 16, 20 

+ po/sq.po,  38, 43, 56, 0, 0, 0, 0, 38, 43 

+ po/te.po,  48, 54, 56, 0, 0, 0, 0, 48, 54 

+ po/sr.po,  16, 20, 21, 0, 0, 0, 0, 16, 20 

+ po/dz.po,  46, 51, 47, 0, 0, 0, 0, 46, 51 

+ po/fy.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/be.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/bg.po,  2, 4, 5, 0, 0, 0, 0, 2, 4 

+ po/hi.po,  16, 20, 20, 0, 0, 0, 0, 16, 20 

+ po/mr.po,  38, 43, 43, 0, 0, 0, 0, 38, 43 

+ po/be@latin.po,  38, 43, 44, 0, 0, 0, 0, 38, 43 

+ po/nl.po,  46, 51, 50, 0, 0, 0, 0, 46, 51 

+ po/es.po,  16, 20, 21, 0, 0, 0, 0, 16, 20 

+ po/da.po,  38, 43, 43, 0, 0, 0, 0, 38, 43 

+ po/gl.po,  2, 4, 5, 0, 0, 0, 0, 2, 4 

+ po/ja.po,  2, 4, 4, 0, 0, 0, 0, 2, 4 

+ po/pa.po,  16, 20, 20, 0, 0, 0, 0, 16, 20 

+ po/zh_HK.po,  16, 20, 18, 0, 0, 0, 0, 16, 20 

+ po/az.po,  46, 52, 56, 0, 0, 0, 0, 46, 52 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,72 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  123, 853, 147, 0, 0, 0, 0, 123, 853 

+ po/zh_HK.po,  87, 417, 109, 0, 0, 0, 0, 87, 417 

+ po/zh_CN.po,  122, 852, 146, 0, 0, 0, 0, 122, 852 

+ po/vi.po,  120, 766, 1067, 0, 0, 0, 0, 120, 766 

+ po/uk.po,  126, 849, 683, 0, 0, 0, 0, 126, 849 

+ po/ug.po,  83, 318, 269, 0, 0, 0, 0, 83, 318 

+ po/tr.po,  123, 853, 694, 0, 0, 0, 0, 123, 853 

+ po/th.po,  68, 234, 87, 0, 0, 0, 0, 68, 234 

+ po/tg.po,  112, 737, 776, 0, 0, 0, 0, 112, 737 

+ po/te.po,  103, 585, 475, 0, 0, 0, 0, 103, 585 

+ po/ta.po,  103, 585, 494, 0, 0, 0, 0, 103, 585 

+ po/sv.po,  123, 853, 815, 0, 0, 0, 0, 123, 853 

+ po/sr@latin.po,  121, 761, 712, 0, 0, 0, 0, 121, 761 

+ po/sr.po,  123, 853, 789, 0, 0, 0, 0, 123, 853 

+ po/sl.po,  123, 853, 743, 0, 0, 0, 0, 123, 853 

+ po/sk.po,  122, 852, 780, 0, 0, 0, 0, 122, 852 

+ po/ru.po,  123, 853, 721, 0, 0, 0, 0, 123, 853 

+ po/ro.po,  123, 853, 890, 0, 0, 0, 0, 123, 853 

+ po/pt_BR.po,  123, 853, 879, 0, 0, 0, 0, 123, 853 

+ po/pt.po,  126, 849, 878, 0, 0, 0, 0, 126, 849 

+ po/pl.po,  123, 853, 736, 0, 0, 0, 0, 123, 853 

+ po/pa.po,  122, 852, 952, 0, 0, 0, 0, 122, 852 

+ po/or.po,  103, 585, 626, 0, 0, 0, 0, 103, 585 

+ po/oc.po,  122, 848, 907, 0, 0, 0, 0, 122, 848 

+ po/nl.po,  123, 853, 837, 0, 0, 0, 0, 123, 853 

+ po/ne.po,  71, 202, 184, 14, 62, 35, 502, 120, 766 

+ po/nb.po,  121, 844, 809, 1, 4, 0, 0, 122, 848 

+ po/mr.po,  103, 585, 545, 0, 0, 0, 0, 103, 585 

+ po/ml.po,  122, 848, 636, 0, 0, 0, 0, 122, 848 

+ po/mjw.po,  79, 437, 362, 0, 0, 43, 415, 122, 852 

+ po/lv.po,  123, 853, 682, 0, 0, 0, 0, 123, 853 

+ po/lt.po,  123, 853, 715, 0, 0, 0, 0, 123, 853 

+ po/ko.po,  123, 853, 577, 0, 0, 0, 0, 123, 853 

+ po/kn.po,  103, 585, 495, 0, 0, 0, 0, 103, 585 

+ po/kk.po,  123, 853, 704, 0, 0, 0, 0, 123, 853 

+ po/ja.po,  120, 826, 144, 0, 0, 2, 26, 122, 852 

+ po/it.po,  123, 853, 864, 0, 0, 0, 0, 123, 853 

+ po/is.po,  122, 848, 803, 0, 0, 0, 0, 122, 848 

+ po/id.po,  122, 852, 846, 0, 0, 0, 0, 122, 852 

+ po/ia.po,  75, 316, 351, 0, 0, 0, 0, 75, 316 

+ po/hu.po,  123, 853, 743, 0, 0, 0, 0, 123, 853 

+ po/hr.po,  123, 853, 753, 0, 0, 0, 0, 123, 853 

+ po/hi.po,  103, 585, 721, 0, 0, 0, 0, 103, 585 

+ po/he.po,  125, 842, 692, 0, 0, 0, 0, 125, 842 

+ po/gu.po,  103, 585, 615, 0, 0, 0, 0, 103, 585 

+ po/gl.po,  123, 853, 911, 0, 0, 0, 0, 123, 853 

+ po/gd.po,  122, 849, 1008, 0, 0, 0, 0, 122, 849 

+ po/ga.po,  69, 230, 260, 1, 5, 42, 502, 112, 737 

+ po/fur.po,  123, 853, 983, 0, 0, 0, 0, 123, 853 

+ po/fr.po,  123, 853, 967, 0, 0, 0, 0, 123, 853 

+ po/fi.po,  123, 853, 606, 0, 0, 0, 0, 123, 853 

+ po/fa.po,  122, 852, 864, 0, 0, 0, 0, 122, 852 

+ po/eu.po,  122, 852, 694, 0, 0, 0, 0, 122, 852 

+ po/et.po,  87, 372, 308, 0, 0, 0, 0, 87, 372 

+ po/es.po,  123, 853, 952, 0, 0, 0, 0, 123, 853 

+ po/eo.po,  122, 852, 771, 0, 0, 0, 0, 122, 852 

+ po/en_GB.po,  122, 852, 853, 0, 0, 0, 0, 122, 852 

+ po/el.po,  123, 853, 909, 0, 0, 0, 0, 123, 853 

+ po/de.po,  123, 853, 826, 0, 0, 0, 0, 123, 853 

+ po/da.po,  122, 852, 754, 0, 0, 0, 0, 122, 852 

+ po/cs.po,  123, 853, 763, 0, 0, 0, 0, 123, 853 

+ po/ca@valencia.po,  120, 766, 832, 0, 0, 0, 0, 120, 766 

+ po/ca.po,  123, 853, 896, 0, 0, 0, 0, 123, 853 

+ po/bs.po,  109, 638, 580, 0, 0, 0, 0, 109, 638 

+ po/bn_IN.po,  82, 364, 392, 0, 0, 0, 0, 82, 364 

+ po/bg.po,  120, 766, 763, 0, 0, 0, 0, 120, 766 

+ po/be.po,  120, 766, 687, 0, 0, 0, 0, 120, 766 

+ po/as.po,  103, 585, 606, 0, 0, 0, 0, 103, 585 

+ po/ar.po,  120, 765, 676, 0, 0, 0, 0, 120, 765 

+ po/an.po,  109, 638, 711, 0, 0, 0, 0, 109, 638 

+ po/af.po,  120, 766, 787, 0, 0, 0, 0, 120, 766 

@@ -0,0 +1,14 @@ 

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

@@ -0,0 +1,179 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/lt.po,  103, 509, 406, 0, 0, 0, 0, 103, 509 

+ po/ca.po,  103, 509, 594, 0, 0, 0, 0, 103, 509 

+ po/pt_BR.gmo,  103, 509, 564, 0, 0, 0, 0, 103, 509 

+ po/pl.po,  103, 509, 483, 0, 0, 0, 0, 103, 509 

+ po/as.gmo,  112, 553, 566, 0, 0, 0, 0, 112, 553 

+ po/kn.po,  112, 553, 489, 0, 0, 0, 0, 112, 553 

+ po/cs.gmo,  103, 509, 463, 0, 0, 0, 0, 103, 509 

+ po/eu.gmo,  103, 509, 421, 0, 0, 0, 0, 103, 509 

+ po/bg.gmo,  103, 509, 519, 0, 0, 0, 0, 103, 509 

+ po/ast.po,  234, 928, 1040, 0, 0, 0, 0, 234, 928 

+ po/cs.po,  103, 509, 463, 0, 0, 0, 0, 103, 509 

+ po/ca@valencia.po,  103, 509, 594, 0, 0, 0, 0, 103, 509 

+ po/ne.po,  43, 119, 125, 48, 307, 12, 83, 103, 509 

+ po/en_CA.po,  8, 28, 28, 26, 182, 75, 280, 109, 490 

+ po/de.po,  103, 509, 509, 0, 0, 0, 0, 103, 509 

+ po/lv.po,  103, 509, 432, 0, 0, 0, 0, 103, 509 

+ po/sq.po,  25, 148, 180, 24, 150, 60, 192, 109, 490 

+ po/ko.gmo,  103, 509, 431, 0, 0, 0, 0, 103, 509 

+ po/kn.gmo,  112, 553, 489, 0, 0, 0, 0, 112, 553 

+ po/nl.gmo,  103, 509, 501, 0, 0, 0, 0, 103, 509 

+ po/te.po,  112, 553, 480, 0, 0, 0, 0, 112, 553 

+ po/si.po,  7, 25, 32, 19, 146, 83, 319, 109, 490 

+ po/te.gmo,  112, 553, 480, 0, 0, 0, 0, 112, 553 

+ po/mjw.po,  46, 111, 106, 0, 0, 57, 398, 103, 509 

+ po/mai.gmo,  21, 45, 48, 0, 0, 0, 0, 21, 45 

+ po/da.po,  103, 509, 492, 0, 0, 0, 0, 103, 509 

+ po/oc.gmo,  103, 509, 570, 0, 0, 0, 0, 103, 509 

+ po/si.gmo,  7, 25, 32, 0, 0, 0, 0, 7, 25 

+ po/gnome-keyring.pot,  0, 0, 0, 0, 0, 103, 509, 103, 509 

+ po/oc.po,  103, 509, 570, 0, 0, 0, 0, 103, 509 

+ po/sr@latin.gmo,  103, 509, 477, 0, 0, 0, 0, 103, 509 

+ po/sl.po,  103, 509, 472, 0, 0, 0, 0, 103, 509 

+ po/id.po,  103, 509, 494, 0, 0, 0, 0, 103, 509 

+ po/fr.gmo,  103, 509, 664, 0, 0, 0, 0, 103, 509 

+ po/gl.po,  103, 509, 613, 0, 0, 0, 0, 103, 509 

+ po/ru.po,  103, 509, 472, 0, 0, 0, 0, 103, 509 

+ po/sk.po,  103, 509, 479, 0, 0, 0, 0, 103, 509 

+ po/km.gmo,  111, 552, 250, 0, 0, 0, 0, 111, 552 

+ po/uk.po,  112, 553, 526, 0, 0, 0, 0, 112, 553 

+ po/tg.gmo,  21, 25, 31, 0, 0, 0, 0, 21, 25 

+ po/ro.gmo,  103, 509, 550, 0, 0, 0, 0, 103, 509 

+ po/ml.gmo,  103, 509, 403, 0, 0, 0, 0, 103, 509 

+ po/gl.gmo,  103, 509, 613, 0, 0, 0, 0, 103, 509 

+ po/mjw.gmo,  46, 111, 106, 0, 0, 0, 0, 46, 111 

+ po/be@latin.gmo,  62, 256, 234, 0, 0, 0, 0, 62, 256 

+ po/hr.po,  103, 509, 456, 0, 0, 0, 0, 103, 509 

+ po/zh_TW.po,  103, 509, 136, 0, 0, 0, 0, 103, 509 

+ po/pt_BR.po,  103, 509, 564, 0, 0, 0, 0, 103, 509 

+ po/hu.gmo,  103, 509, 445, 0, 0, 0, 0, 103, 509 

+ po/lv.gmo,  103, 509, 432, 0, 0, 0, 0, 103, 509 

+ po/be.gmo,  103, 509, 464, 0, 0, 0, 0, 103, 509 

+ po/bg.po,  103, 509, 519, 0, 0, 0, 0, 103, 509 

+ po/zh_HK.po,  112, 553, 154, 0, 0, 0, 0, 112, 553 

+ po/ja.gmo,  103, 509, 143, 0, 0, 0, 0, 103, 509 

+ po/he.po,  103, 509, 480, 0, 0, 0, 0, 103, 509 

+ po/ca@valencia.gmo,  103, 509, 594, 0, 0, 0, 0, 103, 509 

+ po/mr.gmo,  112, 553, 492, 0, 0, 0, 0, 112, 553 

+ po/bs.gmo,  112, 553, 522, 0, 0, 0, 0, 112, 553 

+ po/af.gmo,  100, 474, 460, 0, 0, 0, 0, 100, 474 

+ po/tr.po,  103, 509, 449, 0, 0, 0, 0, 103, 509 

+ po/is.gmo,  58, 135, 123, 0, 0, 0, 0, 58, 135 

+ po/be@latin.po,  62, 256, 234, 23, 133, 24, 101, 109, 490 

+ po/ga.po,  24, 116, 142, 12, 74, 73, 300, 109, 490 

+ po/bn_IN.po,  112, 553, 566, 0, 0, 0, 0, 112, 553 

+ po/sr@latin.po,  103, 509, 477, 0, 0, 0, 0, 103, 509 

+ po/mn.gmo,  7, 25, 29, 0, 0, 0, 0, 7, 25 

+ po/mr.po,  112, 553, 492, 0, 0, 0, 0, 112, 553 

+ po/nb.gmo,  103, 509, 522, 0, 0, 0, 0, 103, 509 

+ po/ta.po,  112, 553, 481, 0, 0, 0, 0, 112, 553 

+ po/en_GB.gmo,  103, 509, 511, 0, 0, 0, 0, 103, 509 

+ po/sl.gmo,  103, 509, 472, 0, 0, 0, 0, 103, 509 

+ po/cy.po,  6, 22, 30, 21, 168, 82, 300, 109, 490 

+ po/or.po,  112, 553, 622, 0, 0, 0, 0, 112, 553 

+ po/nb.po,  103, 509, 522, 0, 0, 0, 0, 103, 509 

+ po/he.gmo,  103, 509, 480, 0, 0, 0, 0, 103, 509 

+ po/sr.gmo,  103, 509, 477, 0, 0, 0, 0, 103, 509 

+ po/it.po,  103, 509, 509, 0, 0, 0, 0, 103, 509 

+ po/it.gmo,  103, 509, 509, 0, 0, 0, 0, 103, 509 

+ po/rw.po,  0, 0, 0, 16, 163, 93, 327, 109, 490 

+ po/ar.po,  107, 532, 502, 0, 0, 5, 21, 112, 553 

+ po/cy.gmo,  6, 22, 30, 0, 0, 0, 0, 6, 22 

+ po/en@shaw.gmo,  53, 232, 232, 0, 0, 0, 0, 53, 232 

+ po/gd.po,  103, 509, 703, 0, 0, 0, 0, 103, 509 

+ po/az.po,  4, 17, 22, 19, 162, 86, 311, 109, 490 

+ po/bn.po,  104, 480, 485, 2, 4, 3, 6, 109, 490 

+ po/fi.gmo,  98, 487, 386, 0, 0, 0, 0, 98, 487 

+ po/th.gmo,  112, 553, 189, 0, 0, 0, 0, 112, 553 

+ po/fr.po,  103, 509, 664, 0, 0, 0, 0, 103, 509 

+ po/ml.po,  103, 509, 403, 0, 0, 0, 0, 103, 509 

+ po/fi.po,  98, 487, 386, 0, 0, 5, 22, 103, 509 

+ po/az.gmo,  4, 17, 22, 0, 0, 0, 0, 4, 17 

+ po/eo.gmo,  103, 509, 471, 0, 0, 0, 0, 103, 509 

+ po/ast.gmo,  234, 928, 1040, 0, 0, 0, 0, 234, 928 

+ po/pa.po,  112, 553, 604, 0, 0, 0, 0, 112, 553 

+ po/tr.gmo,  103, 509, 449, 0, 0, 0, 0, 103, 509 

+ po/bn_IN.gmo,  112, 553, 566, 0, 0, 0, 0, 112, 553 

+ po/pt.po,  112, 553, 610, 0, 0, 0, 0, 112, 553 

+ po/km.po,  111, 552, 250, 0, 0, 0, 0, 111, 552 

+ po/mn.po,  7, 25, 29, 20, 165, 82, 300, 109, 490 

+ po/nl.po,  103, 509, 501, 0, 0, 0, 0, 103, 509 

+ po/bn.gmo,  104, 480, 485, 0, 0, 0, 0, 104, 480 

+ po/hi.po,  112, 553, 619, 0, 0, 0, 0, 112, 553 

+ po/hu.po,  103, 509, 445, 0, 0, 0, 0, 103, 509 

+ po/id.gmo,  103, 509, 494, 0, 0, 0, 0, 103, 509 

+ po/ar.gmo,  107, 532, 502, 0, 0, 0, 0, 107, 532 

+ po/mg.gmo,  7, 25, 34, 0, 0, 0, 0, 7, 25 

+ po/mk.gmo,  111, 552, 595, 0, 0, 0, 0, 111, 552 

+ po/be.po,  103, 509, 464, 0, 0, 0, 0, 103, 509 

+ po/mk.po,  111, 552, 595, 0, 0, 0, 0, 111, 552 

+ po/fur.po,  103, 509, 549, 0, 0, 0, 0, 103, 509 

+ po/en_GB.po,  103, 509, 511, 0, 0, 0, 0, 103, 509 

+ po/es.po,  103, 509, 613, 0, 0, 0, 0, 103, 509 

+ po/zh_CN.po,  103, 509, 135, 0, 0, 0, 0, 103, 509 

+ po/th.po,  112, 553, 189, 0, 0, 0, 0, 112, 553 

+ po/or.gmo,  112, 553, 622, 0, 0, 0, 0, 112, 553 

+ po/el.gmo,  103, 509, 534, 0, 0, 0, 0, 103, 509 

+ po/pl.gmo,  103, 509, 483, 0, 0, 0, 0, 103, 509 

+ po/xh.po,  4, 17, 22, 19, 162, 86, 311, 109, 490 

+ po/ms.gmo,  71, 289, 254, 0, 0, 0, 0, 71, 289 

+ po/af.po,  100, 474, 460, 3, 4, 6, 12, 109, 490 

+ po/et.gmo,  112, 553, 474, 0, 0, 0, 0, 112, 553 

+ po/lt.gmo,  103, 509, 406, 0, 0, 0, 0, 103, 509 

+ po/vi.po,  106, 532, 734, 0, 0, 0, 0, 106, 532 

+ po/ne.gmo,  43, 119, 125, 0, 0, 0, 0, 43, 119 

+ po/ga.gmo,  24, 116, 142, 0, 0, 0, 0, 24, 116 

+ po/gu.gmo,  112, 553, 599, 0, 0, 0, 0, 112, 553 

+ po/xh.gmo,  4, 17, 22, 0, 0, 0, 0, 4, 17 

+ po/hi.gmo,  112, 553, 619, 0, 0, 0, 0, 112, 553 

+ po/de.gmo,  103, 509, 509, 0, 0, 0, 0, 103, 509 

+ po/da.gmo,  103, 509, 492, 0, 0, 0, 0, 103, 509 

+ po/ja.po,  103, 509, 143, 0, 0, 0, 0, 103, 509 

+ po/zh_CN.gmo,  103, 509, 135, 0, 0, 0, 0, 103, 509 

+ po/nn.gmo,  99, 466, 464, 0, 0, 0, 0, 99, 466 

+ po/ca.gmo,  103, 509, 594, 0, 0, 0, 0, 103, 509 

+ po/ro.po,  103, 509, 550, 0, 0, 0, 0, 103, 509 

+ po/dz.gmo,  25, 148, 69, 0, 0, 0, 0, 25, 148 

+ po/sk.gmo,  103, 509, 479, 0, 0, 0, 0, 103, 509 

+ po/tg.po,  21, 25, 31, 0, 0, 91, 528, 112, 553 

+ po/zh_TW.gmo,  103, 509, 136, 0, 0, 0, 0, 103, 509 

+ po/bs.po,  112, 553, 522, 0, 0, 0, 0, 112, 553 

+ po/en@shaw.po,  53, 232, 232, 43, 214, 13, 44, 109, 490 

+ po/nn.po,  99, 466, 464, 0, 0, 10, 24, 109, 490 

+ po/eo.po,  103, 509, 471, 0, 0, 0, 0, 103, 509 

+ po/kk.po,  103, 509, 466, 0, 0, 0, 0, 103, 509 

+ po/fur.gmo,  103, 509, 549, 0, 0, 0, 0, 103, 509 

+ po/vi.gmo,  106, 532, 734, 0, 0, 0, 0, 106, 532 

+ po/ko.po,  103, 509, 431, 0, 0, 0, 0, 103, 509 

+ po/as.po,  112, 553, 566, 0, 0, 0, 0, 112, 553 

+ po/uk.gmo,  112, 553, 526, 0, 0, 0, 0, 112, 553 

+ po/et.po,  112, 553, 474, 0, 0, 0, 0, 112, 553 

+ po/ug.gmo,  112, 553, 504, 0, 0, 0, 0, 112, 553 

+ po/ru.gmo,  103, 509, 472, 0, 0, 0, 0, 103, 509 

+ po/fa.po,  103, 509, 480, 0, 0, 0, 0, 103, 509 

+ po/is.po,  58, 135, 123, 0, 0, 45, 374, 103, 509 

+ po/gd.gmo,  103, 509, 703, 0, 0, 0, 0, 103, 509 

+ po/ka.po,  4, 16, 15, 13, 88, 92, 386, 109, 490 

+ po/gu.po,  112, 553, 599, 0, 0, 0, 0, 112, 553 

+ po/mg.po,  7, 25, 34, 20, 165, 82, 300, 109, 490 

+ po/ta.gmo,  112, 553, 481, 0, 0, 0, 0, 112, 553 

+ po/el.po,  103, 509, 534, 0, 0, 0, 0, 103, 509 

+ po/ka.gmo,  4, 16, 15, 0, 0, 0, 0, 4, 16 

+ po/eu.po,  103, 509, 421, 0, 0, 0, 0, 103, 509 

+ po/kk.gmo,  103, 509, 466, 0, 0, 0, 0, 103, 509 

+ po/sv.gmo,  103, 509, 492, 0, 0, 0, 0, 103, 509 

+ po/pa.gmo,  112, 553, 604, 0, 0, 0, 0, 112, 553 

+ po/ug.po,  112, 553, 504, 0, 0, 0, 0, 112, 553 

+ po/pt.gmo,  112, 553, 610, 0, 0, 0, 0, 112, 553 

+ po/mai.po,  21, 45, 48, 10, 78, 78, 367, 109, 490 

+ po/hr.gmo,  103, 509, 456, 0, 0, 0, 0, 103, 509 

+ po/en_CA.gmo,  8, 28, 28, 0, 0, 0, 0, 8, 28 

+ po/rw.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ms.po,  71, 289, 254, 9, 33, 29, 168, 109, 490 

+ po/es.gmo,  103, 509, 613, 0, 0, 0, 0, 103, 509 

+ po/zh_HK.gmo,  112, 553, 154, 0, 0, 0, 0, 112, 553 

+ po/dz.po,  25, 148, 69, 19, 131, 65, 211, 109, 490 

+ po/sv.po,  103, 509, 492, 0, 0, 0, 0, 103, 509 

+ po/sr.po,  103, 509, 477, 0, 0, 0, 0, 103, 509 

+ po/sq.gmo,  25, 148, 180, 0, 0, 0, 0, 25, 148 

@@ -0,0 +1,17 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/media/gnome-logs-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/media/gnome-logs-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/media/gnome-logs-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/media/gnome-logs-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/media/gnome-logs-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/media/gnome-logs-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/permissions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/media/gnome-logs.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/media/gnome-logs-3-12.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,74 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/sv/sv.po,  22, 272, 253, 0, 0, 0, 0, 22, 272 

+ help/ru/ru.po,  22, 272, 251, 0, 0, 0, 0, 22, 272 

+ help/pt_BR/pt_BR.po,  22, 272, 319, 0, 0, 0, 0, 22, 272 

+ help/pl/pl.po,  22, 272, 209, 0, 0, 0, 0, 22, 272 

+ help/nl/nl.po,  22, 272, 266, 0, 0, 0, 0, 22, 272 

+ help/ko/ko.po,  22, 272, 190, 0, 0, 0, 0, 22, 272 

+ help/hu/hu.po,  22, 272, 215, 0, 0, 0, 0, 22, 272 

+ help/gl/gl.po,  22, 272, 251, 0, 0, 0, 0, 22, 272 

+ help/fr/fr.po,  22, 272, 288, 0, 0, 0, 0, 22, 272 

+ help/es/es.po,  22, 272, 288, 0, 0, 0, 0, 22, 272 

+ help/el/el.po,  22, 272, 313, 0, 0, 0, 0, 22, 272 

+ help/de/de.po,  22, 272, 229, 0, 0, 0, 0, 22, 272 

+ help/da/da.po,  22, 272, 265, 0, 0, 0, 0, 22, 272 

+ help/cs/cs.po,  22, 272, 235, 0, 0, 0, 0, 22, 272 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  123, 380, 154, 0, 0, 0, 0, 123, 380 

+ po/zh_HK.po,  37, 115, 52, 0, 0, 0, 0, 37, 115 

+ po/zh_CN.po,  122, 377, 167, 0, 0, 0, 0, 122, 377 

+ po/vi.po,  69, 223, 336, 0, 0, 0, 0, 69, 223 

+ po/uk.po,  118, 354, 307, 0, 0, 0, 0, 118, 354 

+ po/tr.po,  123, 380, 341, 0, 0, 0, 0, 123, 380 

+ po/th.po,  69, 223, 110, 0, 0, 0, 0, 69, 223 

+ po/tg.po,  43, 141, 152, 0, 0, 0, 0, 43, 141 

+ po/te.po,  37, 115, 106, 0, 0, 0, 0, 37, 115 

+ po/sv.po,  123, 380, 359, 0, 0, 0, 0, 123, 380 

+ po/sr@latin.po,  124, 378, 370, 0, 0, 0, 0, 124, 378 

+ po/sr.po,  123, 380, 371, 0, 0, 0, 0, 123, 380 

+ po/sl.po,  123, 380, 358, 0, 0, 0, 0, 123, 380 

+ po/sk.po,  124, 378, 369, 0, 0, 0, 0, 124, 378 

+ po/ru.po,  123, 380, 342, 0, 0, 0, 0, 123, 380 

+ po/ro.po,  123, 380, 431, 0, 0, 0, 0, 123, 380 

+ po/pt_BR.po,  123, 380, 464, 0, 0, 0, 0, 123, 380 

+ po/pt.po,  69, 223, 232, 0, 0, 0, 0, 69, 223 

+ po/pl.po,  123, 380, 346, 0, 0, 0, 0, 123, 380 

+ po/pa.po,  37, 115, 133, 0, 0, 0, 0, 37, 115 

+ po/oc.po,  117, 349, 418, 0, 0, 0, 0, 117, 349 

+ po/nl.po,  123, 380, 366, 0, 0, 0, 0, 123, 380 

+ po/ne.po,  79, 144, 159, 28, 86, 15, 146, 122, 376 

+ po/nb.po,  123, 355, 325, 0, 0, 1, 23, 124, 378 

+ po/ml.po,  124, 378, 331, 0, 0, 0, 0, 124, 378 

+ po/lv.po,  123, 380, 326, 0, 0, 0, 0, 123, 380 

+ po/lt.po,  123, 380, 341, 0, 0, 0, 0, 123, 380 

+ po/ko.po,  123, 380, 336, 0, 0, 0, 0, 123, 380 

+ po/kk.po,  123, 380, 345, 0, 0, 0, 0, 123, 380 

+ po/ja.po,  22, 37, 25, 0, 0, 20, 103, 42, 140 

+ po/it.po,  123, 380, 395, 0, 0, 0, 0, 123, 380 

+ po/id.po,  123, 380, 383, 0, 0, 0, 0, 123, 380 

+ po/hu.po,  123, 380, 321, 0, 0, 0, 0, 123, 380 

+ po/hr.po,  123, 380, 343, 0, 0, 0, 0, 123, 380 

+ po/he.po,  57, 178, 167, 3, 7, 8, 31, 68, 216 

+ po/gl.po,  123, 380, 440, 0, 0, 0, 0, 123, 380 

+ po/gd.po,  122, 376, 453, 0, 0, 0, 0, 122, 376 

+ po/ga.po,  28, 46, 53, 0, 0, 18, 107, 46, 153 

+ po/fur.po,  122, 377, 403, 0, 0, 0, 0, 122, 377 

+ po/fr.po,  123, 380, 453, 0, 0, 0, 0, 123, 380 

+ po/fi.po,  123, 380, 297, 0, 0, 0, 0, 123, 380 

+ po/fa.po,  122, 377, 395, 0, 0, 0, 0, 122, 377 

+ po/eu.po,  122, 377, 352, 0, 0, 0, 0, 122, 377 

+ po/es.po,  123, 380, 441, 0, 0, 0, 0, 123, 380 

+ po/eo.po,  120, 331, 308, 0, 0, 0, 0, 120, 331 

+ po/en_GB.po,  122, 376, 387, 0, 0, 0, 0, 122, 376 

+ po/el.po,  123, 380, 414, 0, 0, 0, 0, 123, 380 

+ po/de.po,  123, 380, 382, 0, 0, 0, 0, 123, 380 

+ po/da.po,  122, 377, 340, 0, 0, 0, 0, 122, 377 

+ po/cs.po,  123, 380, 365, 0, 0, 0, 0, 123, 380 

+ po/ca@valencia.po,  122, 376, 449, 0, 0, 0, 0, 122, 376 

+ po/ca.po,  123, 380, 454, 0, 0, 0, 0, 123, 380 

+ po/bs.po,  42, 140, 142, 0, 0, 0, 0, 42, 140 

+ po/bg.po,  68, 216, 242, 0, 0, 0, 0, 68, 216 

+ po/be.po,  124, 378, 350, 0, 0, 0, 0, 124, 378 

+ po/as.po,  37, 115, 126, 0, 0, 0, 0, 37, 115 

+ po/ar.po,  36, 113, 115, 0, 0, 1, 2, 37, 115 

+ po/an.po,  43, 142, 154, 0, 0, 0, 0, 43, 142 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,63 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  314, 1236, 472, 0, 0, 0, 0, 314, 1236 

+ po/zh_HK.po,  40, 205, 67, 0, 0, 0, 0, 40, 205 

+ po/zh_CN.po,  314, 1236, 474, 0, 0, 0, 0, 314, 1236 

+ po/vi.po,  314, 1236, 1784, 0, 0, 0, 0, 314, 1236 

+ po/uk.po,  268, 1103, 1005, 0, 0, 0, 0, 268, 1103 

+ po/tr.po,  327, 1282, 1171, 0, 0, 0, 0, 327, 1282 

+ po/tg.po,  111, 485, 491, 0, 0, 0, 0, 111, 485 

+ po/te.po,  34, 196, 170, 0, 0, 0, 0, 34, 196 

+ po/sv.po,  327, 1282, 1219, 0, 0, 0, 0, 327, 1282 

+ po/sr@latin.po,  314, 1232, 1238, 0, 0, 0, 0, 314, 1232 

+ po/sr.po,  327, 1282, 1280, 0, 0, 0, 0, 327, 1282 

+ po/sl.po,  327, 1282, 1245, 0, 0, 0, 0, 327, 1282 

+ po/sk.po,  327, 1282, 1300, 0, 0, 0, 0, 327, 1282 

+ po/ru.po,  314, 1236, 1133, 0, 0, 0, 0, 314, 1236 

+ po/ro.po,  327, 1282, 1409, 0, 0, 0, 0, 327, 1282 

+ po/pt_BR.po,  327, 1282, 1440, 0, 0, 0, 0, 327, 1282 

+ po/pt.po,  239, 975, 1066, 0, 0, 0, 0, 239, 975 

+ po/pl.po,  327, 1282, 1281, 0, 0, 0, 0, 327, 1282 

+ po/pa.po,  229, 858, 999, 0, 0, 9, 114, 238, 972 

+ po/oc.po,  314, 1232, 1461, 0, 0, 0, 0, 314, 1232 

+ po/nl.po,  327, 1282, 1295, 0, 0, 0, 0, 327, 1282 

+ po/ne.po,  167, 303, 322, 79, 286, 58, 597, 304, 1186 

+ po/nb.po,  302, 1158, 1138, 1, 3, 4, 47, 307, 1208 

+ po/ml.po,  182, 517, 461, 2, 3, 130, 716, 314, 1236 

+ po/mjw.po,  128, 238, 244, 0, 0, 199, 1044, 327, 1282 

+ po/lv.po,  327, 1282, 1140, 0, 0, 0, 0, 327, 1282 

+ po/lt.po,  327, 1282, 1096, 0, 0, 0, 0, 327, 1282 

+ po/ko.po,  327, 1282, 1027, 0, 0, 0, 0, 327, 1282 

+ po/kn.po,  19, 41, 45, 0, 0, 13, 139, 32, 180 

+ po/kk.po,  314, 1236, 1121, 0, 0, 0, 0, 314, 1236 

+ po/ja.po,  139, 548, 201, 29, 98, 100, 457, 268, 1103 

+ po/it.po,  327, 1282, 1413, 0, 0, 0, 0, 327, 1282 

+ po/is.po,  313, 1233, 1248, 0, 0, 0, 0, 313, 1233 

+ po/id.po,  327, 1282, 1276, 0, 0, 0, 0, 327, 1282 

+ po/hu.po,  327, 1282, 1170, 0, 0, 0, 0, 327, 1282 

+ po/hr.po,  327, 1282, 1174, 0, 0, 0, 0, 327, 1282 

+ po/hi.po,  50, 249, 291, 0, 0, 0, 0, 50, 249 

+ po/he.po,  239, 975, 890, 0, 0, 0, 0, 239, 975 

+ po/gl.po,  327, 1282, 1459, 0, 0, 0, 0, 327, 1282 

+ po/gd.po,  250, 986, 1285, 3, 21, 51, 179, 304, 1186 

+ po/ga.po,  56, 125, 138, 2, 8, 59, 387, 117, 520 

+ po/fur.po,  327, 1282, 1444, 0, 0, 0, 0, 327, 1282 

+ po/fr.po,  327, 1282, 1524, 0, 0, 0, 0, 327, 1282 

+ po/fi.po,  327, 1282, 952, 0, 0, 0, 0, 327, 1282 

+ po/fa.po,  327, 1282, 1341, 0, 0, 0, 0, 327, 1282 

+ po/eu.po,  327, 1282, 1146, 0, 0, 0, 0, 327, 1282 

+ po/et.po,  32, 180, 150, 0, 0, 0, 0, 32, 180 

+ po/es.po,  327, 1282, 1477, 0, 0, 0, 0, 327, 1282 

+ po/eo.po,  323, 1264, 1233, 0, 0, 0, 0, 323, 1264 

+ po/en_GB.po,  327, 1282, 1297, 0, 0, 0, 0, 327, 1282 

+ po/el.po,  327, 1282, 1406, 0, 0, 0, 0, 327, 1282 

+ po/de.po,  327, 1282, 1294, 0, 0, 0, 0, 327, 1282 

+ po/da.po,  327, 1282, 1236, 0, 0, 0, 0, 327, 1282 

+ po/cs.po,  327, 1282, 1268, 0, 0, 0, 0, 327, 1282 

+ po/ca@valencia.po,  304, 1186, 1426, 0, 0, 0, 0, 304, 1186 

+ po/ca.po,  327, 1282, 1535, 0, 0, 0, 0, 327, 1282 

+ po/bs.po,  111, 485, 471, 0, 0, 0, 0, 111, 485 

+ po/bg.po,  213, 821, 917, 0, 0, 0, 0, 213, 821 

+ po/as.po,  46, 224, 229, 0, 0, 0, 0, 46, 224 

+ po/ar.po,  303, 1180, 1124, 0, 0, 1, 6, 304, 1186 

+ po/an.po,  111, 485, 560, 0, 0, 0, 0, 111, 485 

+ po/af.po,  31, 157, 150, 1, 26, 0, 0, 32, 183 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,226 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/si.po,  58, 165, 176, 0, 0, 0, 0, 58, 165 

+ po/yo.po,  42, 116, 152, 5, 15, 9, 26, 56, 157 

+ po/hi.gmo,  27, 70, 70, 0, 0, 0, 0, 27, 70 

+ po/cy.po,  49, 136, 148, 0, 0, 0, 0, 49, 136 

+ po/dv.gmo,  56, 157, 133, 0, 0, 0, 0, 56, 157 

+ po/tg.gmo,  27, 70, 72, 0, 0, 0, 0, 27, 70 

+ po/fa.gmo,  27, 70, 72, 0, 0, 0, 0, 27, 70 

+ po/km.po,  27, 70, 35, 0, 0, 0, 0, 27, 70 

+ po/he.gmo,  27, 70, 64, 0, 0, 0, 0, 27, 70 

+ po/nds.gmo,  57, 161, 146, 0, 0, 0, 0, 57, 161 

+ po/km.gmo,  27, 70, 35, 0, 0, 0, 0, 27, 70 

+ po/ku.gmo,  60, 167, 188, 0, 0, 0, 0, 60, 167 

+ po/th.gmo,  27, 70, 32, 0, 0, 0, 0, 27, 70 

+ po/gn.po,  33, 71, 77, 0, 0, 15, 62, 48, 133 

+ po/da.gmo,  38, 81, 70, 0, 0, 0, 0, 38, 81 

+ po/he.po,  27, 70, 64, 0, 0, 0, 0, 27, 70 

+ po/nl.po,  38, 81, 70, 0, 0, 0, 0, 38, 81 

+ po/gu.gmo,  27, 70, 68, 0, 0, 0, 0, 27, 70 

+ po/fa.po,  27, 70, 72, 0, 0, 0, 0, 27, 70 

+ po/el.gmo,  37, 80, 83, 0, 0, 0, 0, 37, 80 

+ po/ug.po,  27, 70, 65, 0, 0, 0, 0, 27, 70 

+ po/ne.po,  27, 70, 66, 0, 0, 0, 0, 27, 70 

+ po/gl.gmo,  37, 80, 93, 0, 0, 0, 0, 37, 80 

+ po/hr.gmo,  27, 70, 69, 0, 0, 0, 0, 27, 70 

+ po/ja.po,  26, 69, 30, 0, 0, 11, 11, 37, 80 

+ po/eo.gmo,  38, 81, 77, 0, 0, 0, 0, 38, 81 

+ po/bn_IN.gmo,  27, 70, 75, 0, 0, 0, 0, 27, 70 

+ po/be.gmo,  27, 70, 84, 0, 0, 0, 0, 27, 70 

+ po/gn.gmo,  33, 71, 77, 0, 0, 0, 0, 33, 71 

+ po/ha.gmo,  42, 116, 160, 0, 0, 0, 0, 42, 116 

+ po/bs.gmo,  27, 70, 70, 0, 0, 0, 0, 27, 70 

+ po/ga.po,  27, 70, 69, 0, 0, 0, 0, 27, 70 

+ po/af.gmo,  27, 70, 59, 0, 0, 0, 0, 27, 70 

+ po/bn_IN.po,  27, 70, 75, 0, 0, 0, 0, 27, 70 

+ po/mn.po,  46, 125, 119, 0, 0, 0, 0, 46, 125 

+ po/ka.gmo,  49, 136, 119, 0, 0, 0, 0, 49, 136 

+ po/ca.gmo,  38, 81, 87, 0, 0, 0, 0, 38, 81 

+ po/eo.po,  38, 81, 77, 0, 0, 0, 0, 38, 81 

+ po/vi.po,  38, 81, 143, 0, 0, 0, 0, 38, 81 

+ po/ko.gmo,  38, 81, 72, 0, 0, 0, 0, 38, 81 

+ po/gv.gmo,  36, 84, 92, 0, 0, 0, 0, 36, 84 

+ po/ca@valencia.gmo,  27, 70, 76, 0, 0, 0, 0, 27, 70 

+ po/ak.gmo,  27, 70, 74, 0, 0, 0, 0, 27, 70 

+ po/ro.po,  38, 81, 84, 0, 0, 0, 0, 38, 81 

+ po/or.gmo,  27, 70, 71, 0, 0, 0, 0, 27, 70 

+ po/mr.gmo,  27, 70, 69, 0, 0, 0, 0, 27, 70 

+ po/gd.gmo,  27, 70, 80, 0, 0, 0, 0, 27, 70 

+ po/ga.gmo,  27, 70, 69, 0, 0, 0, 0, 27, 70 

+ po/uz@cyrillic.gmo,  27, 70, 67, 0, 0, 0, 0, 27, 70 

+ po/ca.po,  38, 81, 87, 0, 0, 0, 0, 38, 81 

+ po/csb.po,  37, 95, 87, 0, 0, 0, 0, 37, 95 

+ po/fi.gmo,  37, 80, 61, 0, 0, 0, 0, 37, 80 

+ po/or.po,  27, 70, 71, 0, 0, 0, 0, 27, 70 

+ po/id.gmo,  38, 81, 82, 0, 0, 0, 0, 38, 81 

+ po/mk.gmo,  58, 165, 192, 0, 0, 0, 0, 58, 165 

+ po/is.po,  27, 70, 65, 0, 0, 0, 0, 27, 70 

+ po/uk.gmo,  27, 70, 68, 0, 0, 0, 0, 27, 70 

+ po/pt_BR.gmo,  38, 81, 88, 0, 0, 0, 0, 38, 81 

+ po/sq.gmo,  58, 165, 186, 0, 0, 0, 0, 58, 165 

+ po/en_GB.po,  27, 70, 70, 0, 0, 0, 0, 27, 70 

+ po/eu.gmo,  37, 80, 72, 0, 0, 0, 0, 37, 80 

+ po/dz.po,  58, 165, 88, 0, 0, 0, 0, 58, 165 

+ po/hu.po,  38, 81, 71, 0, 0, 0, 0, 38, 81 

+ po/de.gmo,  37, 80, 71, 0, 0, 0, 0, 37, 80 

+ po/zh_CN.gmo,  27, 70, 33, 0, 0, 0, 0, 27, 70 

+ po/ky.gmo,  39, 103, 93, 0, 0, 0, 0, 39, 103 

+ po/lv.po,  37, 80, 79, 0, 0, 0, 0, 37, 80 

+ po/lo.gmo,  27, 70, 41, 0, 0, 0, 0, 27, 70 

+ po/de.po,  37, 80, 71, 0, 0, 0, 0, 37, 80 

+ po/sl.gmo,  37, 80, 82, 0, 0, 0, 0, 37, 80 

+ po/szl.gmo,  39, 103, 93, 0, 0, 0, 0, 39, 103 

+ po/kg.gmo,  46, 125, 135, 0, 0, 0, 0, 46, 125 

+ po/kg.po,  46, 125, 135, 0, 0, 0, 0, 46, 125 

+ po/ia.po,  27, 70, 80, 0, 0, 0, 0, 27, 70 

+ po/dv.po,  56, 157, 133, 0, 0, 0, 0, 56, 157 

+ po/pt.po,  27, 70, 83, 0, 0, 0, 0, 27, 70 

+ po/lt.gmo,  37, 80, 75, 0, 0, 0, 0, 37, 80 

+ po/ta.gmo,  27, 70, 64, 0, 0, 0, 0, 27, 70 

+ po/pt_BR.po,  38, 81, 88, 0, 0, 0, 0, 38, 81 

+ po/ps.po,  52, 128, 149, 0, 0, 4, 29, 56, 157 

+ po/bn.po,  37, 95, 94, 0, 0, 0, 0, 37, 95 

+ po/nds.po,  57, 161, 146, 0, 0, 0, 0, 57, 161 

+ po/nb.gmo,  27, 70, 63, 0, 0, 0, 0, 27, 70 

+ po/io.gmo,  44, 86, 90, 0, 0, 0, 0, 44, 86 

+ po/br.gmo,  57, 161, 190, 0, 0, 0, 0, 57, 161 

+ po/fy.gmo,  37, 95, 84, 0, 0, 0, 0, 37, 95 

+ po/bs.po,  27, 70, 70, 0, 0, 0, 0, 27, 70 

+ po/it.po,  38, 81, 86, 0, 0, 0, 0, 38, 81 

+ po/ha.po,  42, 116, 160, 5, 15, 9, 26, 56, 157 

+ po/sr@latin.gmo,  27, 70, 70, 0, 0, 0, 0, 27, 70 

+ po/nb.po,  27, 70, 63, 0, 0, 0, 0, 27, 70 

+ po/ar.gmo,  27, 70, 67, 0, 0, 0, 0, 27, 70 

+ po/ca@valencia.po,  27, 70, 76, 0, 0, 0, 0, 27, 70 

+ po/gd.po,  27, 70, 80, 0, 0, 0, 0, 27, 70 

+ po/hr.po,  27, 70, 69, 0, 0, 0, 0, 27, 70 

+ po/fy.po,  37, 95, 84, 0, 0, 0, 0, 37, 95 

+ po/oc.po,  27, 70, 80, 0, 0, 0, 0, 27, 70 

+ po/zh_HK.po,  27, 70, 31, 0, 0, 0, 0, 27, 70 

+ po/cy.gmo,  49, 136, 148, 0, 0, 0, 0, 49, 136 

+ po/kab.po,  23, 65, 72, 0, 0, 4, 5, 27, 70 

+ po/mg.gmo,  49, 136, 164, 0, 0, 0, 0, 49, 136 

+ po/ps.gmo,  52, 128, 149, 0, 0, 0, 0, 52, 128 

+ po/sk.gmo,  27, 70, 70, 0, 0, 0, 0, 27, 70 

+ po/kk.gmo,  37, 80, 66, 0, 0, 0, 0, 37, 80 

+ po/sv.po,  38, 81, 72, 0, 0, 0, 0, 38, 81 

+ po/ml.gmo,  27, 70, 56, 0, 0, 0, 0, 27, 70 

+ po/te.po,  27, 70, 65, 0, 0, 0, 0, 27, 70 

+ po/be@latin.po,  58, 165, 150, 0, 0, 0, 0, 58, 165 

+ po/ja.gmo,  26, 69, 30, 0, 0, 0, 0, 26, 69 

+ po/da.po,  38, 81, 70, 0, 0, 0, 0, 38, 81 

+ po/fi.po,  37, 80, 61, 0, 0, 0, 0, 37, 80 

+ po/sk.po,  27, 70, 70, 0, 0, 0, 0, 27, 70 

+ po/en@shaw.po,  46, 125, 125, 0, 0, 0, 0, 46, 125 

+ po/be.po,  27, 70, 84, 0, 0, 0, 0, 27, 70 

+ po/mai.po,  57, 161, 174, 0, 0, 0, 0, 57, 161 

+ po/et.gmo,  27, 70, 58, 0, 0, 0, 0, 27, 70 

+ po/sr.po,  38, 81, 81, 0, 0, 0, 0, 38, 81 

+ po/si.gmo,  58, 165, 176, 0, 0, 0, 0, 58, 165 

+ po/en_CA.gmo,  49, 136, 135, 0, 0, 0, 0, 49, 136 

+ po/sr.gmo,  38, 81, 81, 0, 0, 0, 0, 38, 81 

+ po/te.gmo,  27, 70, 65, 0, 0, 0, 0, 27, 70 

+ po/ms.gmo,  27, 70, 67, 0, 0, 0, 0, 27, 70 

+ po/et.po,  27, 70, 58, 0, 0, 0, 0, 27, 70 

+ po/vi.gmo,  38, 81, 143, 0, 0, 0, 0, 38, 81 

+ po/zh_TW.gmo,  27, 70, 31, 0, 0, 0, 0, 27, 70 

+ po/ko.po,  38, 81, 72, 0, 0, 0, 0, 38, 81 

+ po/ro.gmo,  38, 81, 84, 0, 0, 0, 0, 38, 81 

+ po/yo.gmo,  42, 116, 152, 0, 0, 0, 0, 42, 116 

+ po/lv.gmo,  37, 80, 79, 0, 0, 0, 0, 37, 80 

+ po/xh.po,  36, 80, 85, 1, 15, 0, 0, 37, 95 

+ po/zu.gmo,  37, 95, 92, 0, 0, 0, 0, 37, 95 

+ po/fur.po,  37, 80, 86, 0, 0, 0, 0, 37, 80 

+ po/pl.po,  38, 81, 79, 0, 0, 0, 0, 38, 81 

+ po/zh_CN.po,  27, 70, 33, 0, 0, 0, 0, 27, 70 

+ po/crh.po,  27, 70, 64, 0, 0, 0, 0, 27, 70 

+ po/csb.gmo,  37, 95, 87, 0, 0, 0, 0, 37, 95 

+ po/en@shaw.gmo,  46, 125, 125, 0, 0, 0, 0, 46, 125 

+ po/sv.gmo,  38, 81, 72, 0, 0, 0, 0, 38, 81 

+ po/nn.gmo,  46, 125, 116, 0, 0, 0, 0, 46, 125 

+ po/kk.po,  37, 80, 66, 0, 0, 0, 0, 37, 80 

+ po/ia.gmo,  27, 70, 80, 0, 0, 0, 0, 27, 70 

+ po/tg.po,  27, 70, 72, 0, 0, 0, 0, 27, 70 

+ po/es.po,  38, 81, 91, 0, 0, 0, 0, 38, 81 

+ po/pt.gmo,  27, 70, 83, 0, 0, 0, 0, 27, 70 

+ po/ug.gmo,  27, 70, 65, 0, 0, 0, 0, 27, 70 

+ po/ne.gmo,  27, 70, 66, 0, 0, 0, 0, 27, 70 

+ po/uk.po,  27, 70, 68, 0, 0, 0, 0, 27, 70 

+ po/hy.gmo,  55, 151, 136, 0, 0, 0, 0, 55, 151 

+ po/ig.gmo,  42, 116, 121, 0, 0, 0, 0, 42, 116 

+ po/ru.po,  38, 81, 75, 0, 0, 0, 0, 38, 81 

+ po/gv.po,  36, 84, 92, 0, 0, 10, 41, 46, 125 

+ po/nl.gmo,  38, 81, 70, 0, 0, 0, 0, 38, 81 

+ po/io.po,  44, 86, 90, 0, 0, 14, 79, 58, 165 

+ po/ar.po,  27, 70, 67, 0, 0, 0, 0, 27, 70 

+ po/bg.po,  27, 70, 81, 0, 0, 0, 0, 27, 70 

+ po/dz.gmo,  58, 165, 88, 0, 0, 0, 0, 58, 165 

+ po/zh_TW.po,  27, 70, 31, 0, 0, 0, 0, 27, 70 

+ po/tr.po,  38, 81, 74, 0, 0, 0, 0, 38, 81 

+ po/eu.po,  37, 80, 72, 0, 0, 0, 0, 37, 80 

+ po/zh_HK.gmo,  27, 70, 31, 0, 0, 0, 0, 27, 70 

+ po/pa.gmo,  27, 70, 72, 0, 0, 0, 0, 27, 70 

+ po/gnome-menus.pot,  0, 0, 0, 0, 0, 38, 81, 38, 81 

+ po/as.po,  27, 70, 68, 0, 0, 0, 0, 27, 70 

+ po/mn.gmo,  46, 125, 119, 0, 0, 0, 0, 46, 125 

+ po/en_GB.gmo,  27, 70, 70, 0, 0, 0, 0, 27, 70 

+ po/rw.gmo,  8, 8, 10, 0, 0, 0, 0, 8, 8 

+ po/kn.po,  27, 70, 63, 0, 0, 0, 0, 27, 70 

+ po/it.gmo,  38, 81, 86, 0, 0, 0, 0, 38, 81 

+ po/an.gmo,  27, 70, 79, 0, 0, 0, 0, 27, 70 

+ po/as.gmo,  27, 70, 68, 0, 0, 0, 0, 27, 70 

+ po/af.po,  27, 70, 59, 0, 0, 0, 0, 27, 70 

+ po/lo.po,  27, 70, 41, 0, 0, 0, 0, 27, 70 

+ po/el.po,  37, 80, 83, 0, 0, 0, 0, 37, 80 

+ po/cs.gmo,  38, 81, 78, 0, 0, 0, 0, 38, 81 

+ po/mg.po,  49, 136, 164, 0, 0, 0, 0, 49, 136 

+ po/en_CA.po,  49, 136, 135, 0, 0, 0, 0, 49, 136 

+ po/kab.gmo,  23, 65, 72, 0, 0, 0, 0, 23, 65 

+ po/mai.gmo,  57, 161, 174, 0, 0, 0, 0, 57, 161 

+ po/pl.gmo,  38, 81, 79, 0, 0, 0, 0, 38, 81 

+ po/ru.gmo,  38, 81, 75, 0, 0, 0, 0, 38, 81 

+ po/oc.gmo,  27, 70, 80, 0, 0, 0, 0, 27, 70 

+ po/is.gmo,  27, 70, 65, 0, 0, 0, 0, 27, 70 

+ po/rw.po,  8, 8, 10, 10, 45, 9, 15, 27, 68 

+ po/pa.po,  27, 70, 72, 0, 0, 0, 0, 27, 70 

+ po/br.po,  57, 161, 190, 0, 0, 0, 0, 57, 161 

+ po/ku.po,  60, 167, 188, 0, 0, 0, 0, 60, 167 

+ po/fr.gmo,  38, 81, 90, 0, 0, 0, 0, 38, 81 

+ po/tr.gmo,  38, 81, 74, 0, 0, 0, 0, 38, 81 

+ po/hi.po,  27, 70, 70, 0, 0, 0, 0, 27, 70 

+ po/hy.po,  55, 151, 136, 1, 6, 0, 0, 56, 157 

+ po/lt.po,  37, 80, 75, 0, 0, 0, 0, 37, 80 

+ po/kn.gmo,  27, 70, 63, 0, 0, 0, 0, 27, 70 

+ po/hu.gmo,  38, 81, 71, 0, 0, 0, 0, 38, 81 

+ po/es.gmo,  38, 81, 91, 0, 0, 0, 0, 38, 81 

+ po/ms.po,  27, 70, 67, 0, 0, 0, 0, 27, 70 

+ po/crh.gmo,  27, 70, 64, 0, 0, 0, 0, 27, 70 

+ po/ast.gmo,  56, 157, 182, 0, 0, 0, 0, 56, 157 

+ po/be@latin.gmo,  58, 165, 150, 0, 0, 0, 0, 58, 165 

+ po/gu.po,  27, 70, 68, 0, 0, 0, 0, 27, 70 

+ po/bg.gmo,  27, 70, 81, 0, 0, 0, 0, 27, 70 

+ po/zu.po,  37, 95, 92, 0, 0, 0, 0, 37, 95 

+ po/th.po,  27, 70, 32, 0, 0, 0, 0, 27, 70 

+ po/an.po,  27, 70, 79, 0, 0, 0, 0, 27, 70 

+ po/ak.po,  27, 70, 74, 0, 0, 0, 0, 27, 70 

+ po/ig.po,  42, 116, 121, 5, 15, 9, 26, 56, 157 

+ po/ky.po,  39, 103, 93, 0, 0, 0, 0, 39, 103 

+ po/nn.po,  46, 125, 116, 0, 0, 0, 0, 46, 125 

+ po/bn.gmo,  37, 95, 94, 0, 0, 0, 0, 37, 95 

+ po/mr.po,  27, 70, 69, 0, 0, 0, 0, 27, 70 

+ po/uz@cyrillic.po,  27, 70, 67, 0, 0, 0, 0, 27, 70 

+ po/szl.po,  39, 103, 93, 0, 0, 0, 0, 39, 103 

+ po/id.po,  38, 81, 82, 0, 0, 0, 0, 38, 81 

+ po/fr.po,  38, 81, 90, 0, 0, 0, 0, 38, 81 

+ po/ml.po,  27, 70, 56, 0, 0, 0, 0, 27, 70 

+ po/sl.po,  37, 80, 82, 0, 0, 0, 0, 37, 80 

+ po/xh.gmo,  36, 80, 85, 0, 0, 0, 0, 36, 80 

+ po/gl.po,  37, 80, 93, 0, 0, 0, 0, 37, 80 

+ po/ast.po,  56, 157, 182, 0, 0, 0, 0, 56, 157 

+ po/ka.po,  49, 136, 119, 0, 0, 0, 0, 49, 136 

+ po/ta.po,  27, 70, 64, 0, 0, 0, 0, 27, 70 

+ po/cs.po,  38, 81, 78, 0, 0, 0, 0, 38, 81 

+ po/fur.gmo,  37, 80, 86, 0, 0, 0, 0, 37, 80 

+ po/mk.po,  58, 165, 192, 0, 0, 0, 0, 58, 165 

+ po/sq.po,  58, 165, 186, 0, 0, 0, 0, 58, 165 

+ po/sr@latin.po,  27, 70, 70, 0, 0, 0, 0, 27, 70 

@@ -0,0 +1,24 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/view.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/view-photos.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/view-favorites.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/view-album.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/selection-mode.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/print.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/media/logo1.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/img-properties.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/img-delete.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/favorites.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/favorites-set.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/background-set.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/album-delete.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/album-create.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,80 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/sv/sv.po,  46, 457, 441, 0, 0, 0, 0, 46, 457 

+ help/ro/ro.po,  46, 457, 468, 0, 0, 0, 0, 46, 457 

+ help/pt_BR/pt_BR.po,  46, 457, 456, 0, 0, 0, 0, 46, 457 

+ help/pl/pl.po,  46, 457, 373, 0, 0, 0, 0, 46, 457 

+ help/nl/nl.po,  46, 457, 451, 0, 0, 0, 0, 46, 457 

+ help/ko/ko.po,  46, 457, 310, 0, 0, 0, 0, 46, 457 

+ help/hu/hu.po,  46, 457, 394, 0, 0, 0, 0, 46, 457 

+ help/gl/gl.po,  46, 457, 446, 0, 0, 0, 0, 46, 457 

+ help/fur/fur.po,  45, 451, 474, 0, 0, 1, 6, 46, 457 

+ help/fr/fr.po,  46, 457, 457, 0, 0, 0, 0, 46, 457 

+ help/es/es.po,  46, 457, 461, 0, 0, 0, 0, 46, 457 

+ help/el/el.po,  46, 457, 487, 0, 0, 0, 0, 46, 457 

+ help/de/de.po,  46, 457, 477, 0, 0, 0, 0, 46, 457 

+ help/da/da.po,  46, 457, 430, 0, 0, 0, 0, 46, 457 

+ help/cs/cs.po,  46, 457, 415, 0, 0, 0, 0, 46, 457 

+ help/ca/ca.po,  46, 457, 476, 0, 0, 0, 0, 46, 457 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  219, 572, 285, 0, 0, 0, 0, 219, 572 

+ po/zh_HK.po,  125, 354, 161, 0, 0, 0, 0, 125, 354 

+ po/zh_CN.po,  216, 535, 309, 0, 0, 0, 0, 216, 535 

+ po/vi.po,  219, 572, 833, 0, 0, 0, 0, 219, 572 

+ po/uk.po,  191, 459, 459, 0, 0, 0, 0, 191, 459 

+ po/tr.po,  219, 572, 543, 0, 0, 0, 0, 219, 572 

+ po/tg.po,  127, 377, 433, 0, 0, 0, 0, 127, 377 

+ po/te.po,  120, 344, 326, 0, 0, 0, 0, 120, 344 

+ po/sv.po,  219, 572, 592, 0, 0, 0, 0, 219, 572 

+ po/sr@latin.po,  216, 535, 615, 0, 0, 0, 0, 216, 535 

+ po/sr.po,  219, 572, 656, 0, 0, 0, 0, 219, 572 

+ po/sl.po,  219, 572, 630, 0, 0, 0, 0, 219, 572 

+ po/sk.po,  216, 535, 569, 0, 0, 0, 0, 216, 535 

+ po/ru.po,  219, 572, 612, 0, 0, 0, 0, 219, 572 

+ po/ro.po,  219, 572, 631, 0, 0, 0, 0, 219, 572 

+ po/pt_BR.po,  219, 572, 631, 0, 0, 0, 0, 219, 572 

+ po/pt.po,  187, 448, 493, 0, 0, 0, 0, 187, 448 

+ po/pl.po,  219, 572, 585, 0, 0, 0, 0, 219, 572 

+ po/pa.po,  218, 569, 691, 0, 0, 0, 0, 218, 569 

+ po/oc.po,  187, 448, 536, 0, 0, 0, 0, 187, 448 

+ po/nl.po,  219, 572, 586, 0, 0, 0, 0, 219, 572 

+ po/ne.po,  86, 153, 172, 25, 83, 14, 118, 125, 354 

+ po/nb.po,  198, 473, 481, 0, 0, 0, 0, 198, 473 

+ po/ml.po,  218, 561, 536, 0, 0, 0, 0, 218, 561 

+ po/mjw.po,  80, 151, 161, 0, 0, 138, 418, 218, 569 

+ po/lv.po,  219, 572, 564, 0, 0, 0, 0, 219, 572 

+ po/lt.po,  219, 572, 551, 0, 0, 0, 0, 219, 572 

+ po/ko.po,  219, 572, 523, 0, 0, 0, 0, 219, 572 

+ po/kn.po,  84, 158, 181, 0, 0, 16, 143, 100, 301 

+ po/km.po,  0, 0, 0, 0, 0, 117, 332, 117, 332 

+ po/kk.po,  219, 572, 541, 0, 0, 0, 0, 219, 572 

+ po/ja.po,  206, 482, 279, 2, 56, 10, 31, 218, 569 

+ po/it.po,  219, 572, 613, 0, 0, 0, 0, 219, 572 

+ po/is.po,  218, 569, 618, 0, 0, 0, 0, 218, 569 

+ po/id.po,  219, 572, 589, 0, 0, 0, 0, 219, 572 

+ po/hu.po,  219, 572, 561, 0, 0, 0, 0, 219, 572 

+ po/hr.po,  219, 572, 579, 0, 0, 0, 0, 219, 572 

+ po/he.po,  187, 448, 437, 0, 0, 0, 0, 187, 448 

+ po/gu.po,  73, 135, 168, 1, 1, 117, 323, 191, 459 

+ po/gl.po,  219, 572, 655, 0, 0, 0, 0, 219, 572 

+ po/gd.po,  198, 473, 661, 0, 0, 0, 0, 198, 473 

+ po/ga.po,  94, 217, 255, 0, 0, 3, 9, 97, 226 

+ po/fur.po,  219, 572, 641, 0, 0, 0, 0, 219, 572 

+ po/fr.po,  219, 572, 686, 0, 0, 0, 0, 219, 572 

+ po/fi.po,  219, 572, 486, 0, 0, 0, 0, 219, 572 

+ po/fa.po,  198, 473, 542, 0, 0, 0, 0, 198, 473 

+ po/eu.po,  219, 572, 553, 0, 0, 0, 0, 219, 572 

+ po/et.po,  100, 301, 256, 0, 0, 0, 0, 100, 301 

+ po/es.po,  219, 572, 660, 0, 0, 0, 0, 219, 572 

+ po/eo.po,  217, 556, 552, 0, 0, 0, 0, 217, 556 

+ po/en_GB.po,  217, 556, 559, 0, 0, 0, 0, 217, 556 

+ po/el.po,  219, 572, 636, 0, 0, 0, 0, 219, 572 

+ po/de.po,  219, 572, 589, 0, 0, 0, 0, 219, 572 

+ po/da.po,  218, 569, 565, 0, 0, 0, 0, 218, 569 

+ po/cs.po,  219, 572, 617, 0, 0, 0, 0, 219, 572 

+ po/ca@valencia.po,  198, 473, 572, 0, 0, 0, 0, 198, 473 

+ po/ca.po,  219, 572, 679, 0, 0, 0, 0, 219, 572 

+ po/bs.po,  126, 379, 379, 0, 0, 0, 0, 126, 379 

+ po/bg.po,  104, 304, 352, 0, 0, 0, 0, 104, 304 

+ po/as.po,  125, 354, 403, 0, 0, 0, 0, 125, 354 

+ po/ar.po,  196, 467, 508, 0, 0, 4, 30, 200, 497 

+ po/an.po,  127, 377, 430, 0, 0, 0, 0, 127, 377 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog.pre-git)

@@ -0,0 +1,111 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  100, 513, 424, 1, 3, 0, 0, 101, 516 

+ po/zh_TW.po,  58, 364, 111, 0, 0, 0, 0, 58, 364 

+ po/zh_HK.po,  87, 431, 145, 0, 0, 0, 0, 87, 431 

+ po/zh_CN.po,  58, 364, 104, 0, 0, 0, 0, 58, 364 

+ po/yo.po,  20, 117, 148, 28, 86, 65, 519, 113, 722 

+ po/xh.po,  99, 498, 397, 1, 8, 1, 27, 101, 533 

+ po/wa.po,  101, 533, 712, 0, 0, 0, 0, 101, 533 

+ po/vi.po,  58, 364, 521, 0, 0, 0, 0, 58, 364 

+ po/uz@cyrillic.po,  64, 193, 178, 0, 0, 47, 510, 111, 703 

+ po/uz.po,  64, 193, 178, 0, 0, 47, 510, 111, 703 

+ po/uk.po,  59, 319, 287, 0, 0, 0, 0, 59, 319 

+ po/ug.po,  110, 563, 463, 0, 0, 0, 0, 110, 563 

+ po/tr.po,  66, 414, 347, 0, 0, 0, 0, 66, 414 

+ po/tk.po,  26, 44, 44, 0, 0, 75, 472, 101, 516 

+ po/th.po,  59, 319, 119, 0, 0, 0, 0, 59, 319 

+ po/tg.po,  60, 327, 368, 0, 0, 0, 0, 60, 327 

+ po/te.po,  59, 323, 290, 0, 0, 0, 0, 59, 323 

+ po/ta.po,  59, 323, 293, 0, 0, 0, 0, 59, 323 

+ po/sv.po,  66, 414, 387, 0, 0, 0, 0, 66, 414 

+ po/sr@latin.po,  50, 299, 310, 0, 0, 0, 0, 50, 299 

+ po/sr.po,  66, 414, 430, 0, 0, 0, 0, 66, 414 

+ po/sq.po,  115, 811, 885, 0, 0, 0, 0, 115, 811 

+ po/sl.po,  66, 414, 401, 0, 0, 0, 0, 66, 414 

+ po/sk.po,  50, 299, 295, 0, 0, 0, 0, 50, 299 

+ po/si.po,  115, 811, 757, 0, 0, 0, 0, 115, 811 

+ po/rw.po,  12, 13, 16, 69, 480, 20, 40, 101, 533 

+ po/ru.po,  58, 364, 331, 0, 0, 0, 0, 58, 364 

+ po/ro.po,  66, 414, 448, 0, 0, 0, 0, 66, 414 

+ po/pt_BR.po,  66, 414, 484, 0, 0, 0, 0, 66, 414 

+ po/pt.po,  59, 319, 370, 0, 0, 0, 0, 59, 319 

+ po/ps.po,  70, 244, 255, 0, 0, 43, 435, 113, 679 

+ po/pl.po,  66, 414, 388, 0, 0, 0, 0, 66, 414 

+ po/pa.po,  50, 299, 319, 0, 0, 0, 0, 50, 299 

+ po/or.po,  59, 323, 343, 0, 0, 0, 0, 59, 323 

+ po/oc.po,  50, 299, 333, 0, 0, 0, 0, 50, 299 

+ po/nso.po,  100, 513, 736, 1, 3, 0, 0, 101, 516 

+ po/nn.po,  97, 489, 455, 0, 0, 0, 0, 97, 489 

+ po/nl.po,  66, 414, 418, 0, 0, 0, 0, 66, 414 

+ po/ne.po,  32, 90, 94, 0, 0, 18, 209, 50, 299 

+ po/nds.po,  68, 209, 176, 0, 0, 43, 429, 111, 638 

+ po/nb.po,  57, 329, 321, 0, 0, 9, 85, 66, 414 

+ po/ms.po,  59, 323, 307, 0, 0, 0, 0, 59, 323 

+ po/mr.po,  59, 323, 320, 0, 0, 0, 0, 59, 323 

+ po/mn.po,  100, 513, 408, 1, 3, 0, 0, 101, 516 

+ po/ml.po,  58, 364, 294, 0, 0, 0, 0, 58, 364 

+ po/mk.po,  114, 714, 793, 0, 0, 0, 0, 114, 714 

+ po/mjw.po,  32, 127, 125, 0, 0, 29, 255, 61, 382 

+ po/mi.po,  6, 8, 8, 0, 0, 95, 508, 101, 516 

+ po/mg.po,  106, 571, 586, 0, 0, 0, 0, 106, 571 

+ po/mai.po,  61, 267, 283, 0, 0, 50, 371, 111, 638 

+ po/lv.po,  66, 414, 352, 0, 0, 0, 0, 66, 414 

+ po/lt.po,  66, 414, 332, 0, 0, 0, 0, 66, 414 

+ po/ku.po,  46, 208, 196, 19, 56, 49, 450, 114, 714 

+ po/ko.po,  66, 414, 327, 0, 0, 0, 0, 66, 414 

+ po/kn.po,  59, 323, 285, 0, 0, 0, 0, 59, 323 

+ po/km.po,  59, 323, 168, 0, 0, 0, 0, 59, 323 

+ po/kk.po,  58, 364, 346, 0, 0, 0, 0, 58, 364 

+ po/kab.po,  49, 250, 247, 0, 0, 9, 114, 58, 364 

+ po/ka.po,  88, 434, 335, 0, 0, 26, 280, 114, 714 

+ po/ja.po,  56, 343, 107, 0, 0, 10, 71, 66, 414 

+ po/it.po,  66, 414, 439, 0, 0, 0, 0, 66, 414 

+ po/is.po,  58, 364, 382, 0, 0, 0, 0, 58, 364 

+ po/ig.po,  20, 117, 131, 28, 86, 65, 519, 113, 722 

+ po/id.po,  66, 414, 394, 0, 0, 0, 0, 66, 414 

+ po/hy.po,  103, 570, 546, 0, 0, 0, 0, 103, 570 

+ po/hu.po,  66, 414, 366, 0, 0, 0, 0, 66, 414 

+ po/hr.po,  66, 414, 391, 0, 0, 0, 0, 66, 414 

+ po/hi.po,  59, 323, 424, 0, 0, 0, 0, 59, 323 

+ po/he.po,  59, 319, 289, 0, 0, 0, 0, 59, 319 

+ po/ha.po,  20, 117, 153, 28, 86, 65, 519, 113, 722 

+ po/gu.po,  50, 298, 343, 0, 0, 0, 0, 50, 298 

+ po/gl.po,  66, 414, 465, 0, 0, 0, 0, 66, 414 

+ po/gd.po,  58, 364, 477, 0, 0, 0, 0, 58, 364 

+ po/ga.po,  78, 274, 361, 0, 0, 35, 401, 113, 675 

+ po/fy.po,  96, 448, 414, 0, 0, 0, 0, 96, 448 

+ po/fur.po,  66, 414, 488, 0, 0, 0, 0, 66, 414 

+ po/fr.po,  66, 414, 485, 0, 0, 0, 0, 66, 414 

+ po/fi.po,  60, 304, 239, 2, 21, 4, 89, 66, 414 

+ po/fa.po,  66, 414, 442, 0, 0, 0, 0, 66, 414 

+ po/eu.po,  66, 414, 390, 0, 0, 0, 0, 66, 414 

+ po/et.po,  50, 299, 257, 0, 0, 0, 0, 50, 299 

+ po/es.po,  66, 414, 481, 0, 0, 0, 0, 66, 414 

+ po/eo.po,  58, 364, 331, 0, 0, 0, 0, 58, 364 

+ po/en_GB.po,  66, 414, 414, 0, 0, 0, 0, 66, 414 

+ po/en_CA.po,  126, 888, 887, 0, 0, 0, 0, 126, 888 

+ po/en@shaw.po,  99, 556, 556, 12, 82, 0, 0, 111, 638 

+ po/el.po,  66, 414, 455, 0, 0, 0, 0, 66, 414 

+ po/dz.po,  130, 899, 348, 0, 0, 0, 0, 130, 899 

+ po/de.po,  66, 414, 415, 0, 0, 0, 0, 66, 414 

+ po/da.po,  66, 414, 387, 0, 0, 0, 0, 66, 414 

+ po/cy.po,  104, 569, 623, 0, 0, 0, 0, 104, 569 

+ po/csb.po,  92, 447, 413, 4, 27, 1, 1, 97, 475 

+ po/cs.po,  66, 414, 383, 0, 0, 0, 0, 66, 414 

+ po/crh.po,  110, 563, 503, 0, 0, 0, 0, 110, 563 

+ po/ca@valencia.po,  50, 299, 352, 0, 0, 0, 0, 50, 299 

+ po/ca.po,  66, 414, 477, 0, 0, 0, 0, 66, 414 

+ po/bs.po,  60, 327, 328, 0, 0, 0, 0, 60, 327 

+ po/br.po,  112, 668, 732, 1, 7, 0, 0, 113, 675 

+ po/bn_IN.po,  59, 323, 380, 0, 0, 0, 0, 59, 323 

+ po/bn.po,  92, 446, 500, 0, 0, 0, 0, 92, 446 

+ po/bg.po,  50, 299, 341, 0, 0, 0, 0, 50, 299 

+ po/be@latin.po,  108, 533, 461, 0, 0, 6, 181, 114, 714 

+ po/be.po,  58, 364, 332, 0, 0, 0, 0, 58, 364 

+ po/az.po,  100, 513, 427, 1, 3, 0, 0, 101, 516 

+ po/ast.po,  111, 711, 791, 1, 6, 1, 5, 113, 722 

+ po/as.po,  59, 323, 376, 0, 0, 0, 0, 59, 323 

+ po/ar.po,  58, 256, 217, 0, 0, 1, 67, 59, 323 

+ po/an.po,  59, 319, 368, 0, 0, 0, 0, 59, 319 

+ po/am.po,  52, 145, 143, 4, 11, 45, 360, 101, 516 

+ po/af.po,  50, 299, 309, 0, 0, 0, 0, 50, 299 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,82 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  442, 1948, 631, 0, 0, 0, 0, 442, 1948 

+ po/zh_HK.po,  283, 1212, 398, 36, 110, 14, 84, 333, 1406 

+ po/zh_CN.po,  439, 1930, 619, 2, 16, 1, 3, 442, 1949 

+ po/vi.po,  444, 1950, 2640, 0, 0, 0, 0, 444, 1950 

+ po/uz@cyrillic.po,  346, 1452, 1291, 0, 0, 0, 0, 346, 1452 

+ po/uk.po,  406, 1691, 1597, 0, 0, 0, 0, 406, 1691 

+ po/ug.po,  378, 1550, 1320, 0, 0, 3, 158, 381, 1708 

+ po/tr.po,  536, 2361, 2020, 0, 0, 0, 0, 536, 2361 

+ po/th.po,  352, 1452, 588, 0, 0, 0, 0, 352, 1452 

+ po/tg.po,  407, 1614, 1828, 0, 0, 37, 336, 444, 1950 

+ po/te.po,  374, 1485, 1217, 0, 0, 0, 0, 374, 1485 

+ po/ta.po,  374, 1485, 1253, 0, 0, 0, 0, 374, 1485 

+ po/sv.po,  536, 2361, 2228, 0, 0, 0, 0, 536, 2361 

+ po/sr@latin.po,  423, 1835, 1971, 0, 0, 0, 0, 423, 1835 

+ po/sr.po,  536, 2361, 2468, 0, 0, 0, 0, 536, 2361 

+ po/sl.po,  496, 2062, 2208, 15, 93, 25, 206, 536, 2361 

+ po/sk.po,  476, 1957, 2000, 23, 117, 37, 287, 536, 2361 

+ po/si.po,  159, 276, 303, 0, 0, 182, 1078, 341, 1354 

+ po/ru.po,  444, 1950, 1917, 0, 0, 0, 0, 444, 1950 

+ po/ro.po,  536, 2361, 2642, 0, 0, 0, 0, 536, 2361 

+ po/pt_BR.po,  536, 2361, 2648, 0, 0, 0, 0, 536, 2361 

+ po/pt.po,  340, 1433, 1610, 0, 0, 0, 0, 340, 1433 

+ po/pl.po,  537, 2363, 2336, 0, 0, 0, 0, 537, 2363 

+ po/pa.po,  508, 2119, 2426, 0, 0, 27, 241, 535, 2360 

+ po/or.po,  374, 1485, 1496, 0, 0, 0, 0, 374, 1485 

+ po/oc.po,  423, 1835, 2140, 0, 0, 0, 0, 423, 1835 

+ po/nn.po,  317, 1097, 1085, 2, 46, 26, 268, 345, 1411 

+ po/nl.po,  536, 2361, 2289, 0, 0, 0, 0, 536, 2361 

+ po/ne.po,  324, 815, 855, 74, 308, 67, 978, 465, 2101 

+ po/nb.po,  475, 1942, 1932, 19, 52, 42, 367, 536, 2361 

+ po/ms.po,  258, 854, 844, 0, 0, 116, 631, 374, 1485 

+ po/mr.po,  374, 1485, 1403, 0, 0, 0, 0, 374, 1485 

+ po/ml.po,  425, 1841, 1511, 0, 0, 0, 0, 425, 1841 

+ po/mk.po,  335, 1338, 1465, 0, 0, 0, 0, 335, 1338 

+ po/mjw.po,  303, 913, 962, 0, 0, 160, 1189, 463, 2102 

+ po/lv.po,  535, 2360, 2171, 0, 0, 0, 0, 535, 2360 

+ po/lt.po,  536, 2361, 2167, 0, 0, 0, 0, 536, 2361 

+ po/ky.po,  302, 829, 771, 11, 42, 39, 582, 352, 1453 

+ po/ku.po,  42, 73, 73, 0, 0, 280, 1223, 322, 1296 

+ po/ko.po,  535, 2360, 1936, 0, 0, 0, 0, 535, 2360 

+ po/kn.po,  374, 1485, 1267, 0, 0, 0, 0, 374, 1485 

+ po/km.po,  359, 1480, 574, 0, 0, 0, 0, 359, 1480 

+ po/kk.po,  444, 1950, 1673, 0, 0, 0, 0, 444, 1950 

+ po/ja.po,  480, 2078, 695, 1, 49, 55, 234, 536, 2361 

+ po/it.po,  536, 2361, 2467, 0, 0, 0, 0, 536, 2361 

+ po/is.po,  418, 1496, 1527, 0, 0, 23, 451, 441, 1947 

+ po/id.po,  536, 2361, 2262, 0, 0, 0, 0, 536, 2361 

+ po/ia.po,  384, 1722, 2002, 0, 0, 0, 0, 384, 1722 

+ po/hu.po,  536, 2361, 2104, 0, 0, 0, 0, 536, 2361 

+ po/hr.po,  535, 2360, 2294, 0, 0, 0, 0, 535, 2360 

+ po/hi.po,  374, 1485, 1722, 0, 0, 0, 0, 374, 1485 

+ po/he.po,  345, 1108, 1078, 0, 0, 4, 22, 349, 1130 

+ po/gu.po,  374, 1485, 1573, 0, 0, 0, 0, 374, 1485 

+ po/gl.po,  536, 2361, 2638, 0, 0, 0, 0, 536, 2361 

+ po/gd.po,  425, 1841, 2689, 0, 0, 0, 0, 425, 1841 

+ po/ga.po,  246, 679, 947, 5, 22, 77, 645, 328, 1346 

+ po/fur.po,  536, 2361, 2765, 0, 0, 0, 0, 536, 2361 

+ po/fr.po,  536, 2361, 2726, 0, 0, 0, 0, 536, 2361 

+ po/fi.po,  515, 2105, 1682, 8, 149, 13, 107, 536, 2361 

+ po/fa.po,  536, 2361, 2521, 0, 0, 0, 0, 536, 2361 

+ po/eu.po,  535, 2360, 2070, 0, 0, 0, 0, 535, 2360 

+ po/et.po,  426, 1691, 1385, 0, 0, 18, 259, 444, 1950 

+ po/es.po,  536, 2361, 2728, 0, 0, 0, 0, 536, 2361 

+ po/eo.po,  521, 2185, 1984, 4, 61, 0, 0, 525, 2246 

+ po/en_GB.po,  535, 2360, 2360, 0, 0, 0, 0, 535, 2360 

+ po/el.po,  471, 1905, 1992, 21, 112, 43, 343, 535, 2360 

+ po/de.po,  536, 2361, 2245, 0, 0, 0, 0, 536, 2361 

+ po/da.po,  536, 2361, 2218, 0, 0, 0, 0, 536, 2361 

+ po/cs.po,  536, 2361, 2384, 0, 0, 0, 0, 536, 2361 

+ po/ca@valencia.po,  406, 1691, 2041, 0, 0, 0, 0, 406, 1691 

+ po/ca.po,  536, 2361, 2769, 0, 0, 0, 0, 536, 2361 

+ po/bs.po,  360, 1486, 1479, 0, 0, 0, 0, 360, 1486 

+ po/bn_IN.po,  375, 1486, 1497, 0, 0, 0, 0, 375, 1486 

+ po/bn.po,  206, 566, 558, 7, 35, 26, 363, 239, 964 

+ po/bg.po,  406, 1691, 1799, 0, 0, 0, 0, 406, 1691 

+ po/be.po,  425, 1841, 1787, 0, 0, 0, 0, 425, 1841 

+ po/ast.po,  324, 1305, 1380, 0, 0, 0, 0, 324, 1305 

+ po/as.po,  374, 1485, 1510, 0, 0, 0, 0, 374, 1485 

+ po/ar.po,  408, 1490, 1640, 9, 36, 27, 424, 444, 1950 

+ po/an.po,  319, 1298, 1501, 6, 24, 0, 0, 325, 1322 

+ po/af.po,  399, 1677, 1696, 12, 34, 12, 124, 423, 1835 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,71 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  54, 266, 68, 0, 0, 0, 0, 54, 266 

+ po/zh_HK.po,  68, 358, 103, 0, 0, 0, 0, 68, 358 

+ po/zh_CN.po,  70, 388, 99, 0, 0, 0, 0, 70, 388 

+ po/vi.po,  70, 388, 619, 0, 0, 0, 0, 70, 388 

+ po/uk.po,  66, 369, 340, 0, 0, 0, 0, 66, 369 

+ po/tr.po,  54, 266, 280, 0, 0, 0, 0, 54, 266 

+ po/th.po,  62, 267, 94, 0, 0, 4, 71, 66, 338 

+ po/tg.po,  53, 251, 287, 0, 0, 0, 0, 53, 251 

+ po/te.po,  68, 358, 312, 0, 0, 0, 0, 68, 358 

+ po/ta.po,  68, 358, 315, 0, 0, 0, 0, 68, 358 

+ po/sv.po,  54, 266, 259, 0, 0, 0, 0, 54, 266 

+ po/sr@latin.po,  70, 388, 372, 0, 0, 0, 0, 70, 388 

+ po/sr.po,  54, 266, 262, 0, 0, 0, 0, 54, 266 

+ po/sl.po,  54, 266, 256, 0, 0, 0, 0, 54, 266 

+ po/sk.po,  54, 266, 264, 0, 0, 0, 0, 54, 266 

+ po/ru.po,  70, 388, 365, 0, 0, 0, 0, 70, 388 

+ po/ro.po,  54, 266, 298, 0, 0, 0, 0, 54, 266 

+ po/pt_BR.po,  54, 266, 326, 0, 0, 0, 0, 54, 266 

+ po/pt.po,  68, 378, 427, 0, 0, 0, 0, 68, 378 

+ po/pl.po,  54, 266, 263, 0, 0, 0, 0, 54, 266 

+ po/pa.po,  70, 388, 438, 0, 0, 0, 0, 70, 388 

+ po/or.po,  68, 358, 348, 0, 0, 0, 0, 68, 358 

+ po/oc.po,  68, 378, 474, 0, 0, 0, 0, 68, 378 

+ po/nl.po,  54, 266, 264, 0, 0, 0, 0, 54, 266 

+ po/ne.po,  43, 99, 106, 6, 20, 19, 239, 68, 358 

+ po/nb.po,  70, 388, 396, 0, 0, 0, 0, 70, 388 

+ po/ms.po,  68, 358, 340, 0, 0, 0, 0, 68, 358 

+ po/mr.po,  68, 358, 346, 0, 0, 0, 0, 68, 358 

+ po/ml.po,  70, 388, 301, 0, 0, 0, 0, 70, 388 

+ po/mjw.po,  28, 68, 67, 0, 0, 24, 181, 52, 249 

+ po/lv.po,  54, 266, 228, 0, 0, 0, 0, 54, 266 

+ po/lt.po,  54, 266, 240, 0, 0, 0, 0, 54, 266 

+ po/ko.po,  54, 266, 221, 0, 0, 0, 0, 54, 266 

+ po/kn.po,  68, 358, 319, 0, 0, 0, 0, 68, 358 

+ po/km.po,  66, 338, 108, 0, 0, 0, 0, 66, 338 

+ po/kk.po,  70, 388, 358, 0, 0, 0, 0, 70, 388 

+ po/ja.po,  53, 262, 72, 0, 0, 1, 4, 54, 266 

+ po/it.po,  54, 266, 304, 0, 0, 0, 0, 54, 266 

+ po/is.po,  70, 388, 385, 0, 0, 0, 0, 70, 388 

+ po/id.po,  54, 266, 271, 0, 0, 0, 0, 54, 266 

+ po/hu.po,  54, 266, 227, 0, 0, 0, 0, 54, 266 

+ po/hr.po,  54, 266, 253, 0, 0, 0, 0, 54, 266 

+ po/hi.po,  68, 358, 429, 0, 0, 0, 0, 68, 358 

+ po/he.po,  70, 380, 380, 0, 0, 0, 0, 70, 380 

+ po/gu.po,  65, 352, 408, 0, 0, 0, 0, 65, 352 

+ po/gl.po,  54, 266, 329, 0, 0, 0, 0, 54, 266 

+ po/gd.po,  63, 323, 413, 0, 0, 0, 0, 63, 323 

+ po/fur.po,  54, 266, 346, 0, 0, 0, 0, 54, 266 

+ po/fr.po,  54, 266, 333, 0, 0, 0, 0, 54, 266 

+ po/fi.po,  51, 209, 171, 1, 4, 2, 53, 54, 266 

+ po/fa.po,  54, 266, 285, 0, 0, 0, 0, 54, 266 

+ po/eu.po,  54, 266, 239, 0, 0, 0, 0, 54, 266 

+ po/et.po,  47, 211, 178, 0, 0, 6, 40, 53, 251 

+ po/es.po,  54, 266, 327, 0, 0, 0, 0, 54, 266 

+ po/eo.po,  50, 221, 201, 2, 24, 1, 6, 53, 251 

+ po/en_GB.po,  70, 388, 388, 0, 0, 0, 0, 70, 388 

+ po/el.po,  54, 266, 303, 0, 0, 0, 0, 54, 266 

+ po/de.po,  54, 266, 268, 0, 0, 0, 0, 54, 266 

+ po/da.po,  54, 266, 261, 0, 0, 0, 0, 54, 266 

+ po/cs.po,  54, 266, 260, 0, 0, 0, 0, 54, 266 

+ po/ca@valencia.po,  70, 388, 502, 0, 0, 0, 0, 70, 388 

+ po/ca.po,  54, 266, 353, 0, 0, 0, 0, 54, 266 

+ po/bs.po,  70, 380, 370, 0, 0, 0, 0, 70, 380 

+ po/bn_IN.po,  68, 358, 352, 0, 0, 0, 0, 68, 358 

+ po/bg.po,  70, 388, 431, 0, 0, 0, 0, 70, 388 

+ po/be.po,  70, 388, 363, 0, 0, 0, 0, 70, 388 

+ po/as.po,  68, 358, 365, 0, 0, 0, 0, 68, 358 

+ po/ar.po,  59, 221, 207, 0, 0, 10, 163, 69, 384 

+ po/an.po,  70, 380, 456, 0, 0, 0, 0, 70, 380 

+ po/af.po,  70, 388, 389, 0, 0, 0, 0, 70, 388 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,63 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  816, 3941, 1091, 0, 0, 0, 0, 816, 3941 

+ po/zh_HK.po,  382, 1039, 419, 0, 0, 0, 0, 382, 1039 

+ po/zh_CN.po,  770, 3725, 1112, 0, 0, 0, 0, 770, 3725 

+ po/vi.po,  730, 3604, 5614, 0, 0, 0, 0, 730, 3604 

+ po/uk.po,  487, 2602, 2201, 0, 0, 0, 0, 487, 2602 

+ po/tr.po,  818, 3998, 3281, 0, 0, 0, 0, 818, 3998 

+ po/th.po,  514, 1913, 714, 0, 0, 0, 0, 514, 1913 

+ po/te.po,  326, 672, 631, 0, 0, 27, 258, 353, 930 

+ po/sv.po,  818, 3998, 3720, 0, 0, 0, 0, 818, 3998 

+ po/sr@latin.po,  762, 3676, 3774, 0, 0, 0, 0, 762, 3676 

+ po/sr.po,  818, 3998, 4217, 0, 0, 0, 0, 818, 3998 

+ po/sl.po,  808, 3909, 4081, 0, 0, 0, 0, 808, 3909 

+ po/sk.po,  692, 3133, 3270, 31, 223, 39, 320, 762, 3676 

+ po/ru.po,  809, 3914, 3579, 0, 0, 0, 0, 809, 3914 

+ po/ro.po,  818, 3998, 4494, 0, 0, 0, 0, 818, 3998 

+ po/pt_BR.po,  818, 3998, 4494, 0, 0, 0, 0, 818, 3998 

+ po/pt.po,  526, 2336, 2511, 0, 0, 0, 0, 526, 2336 

+ po/pl.po,  818, 3998, 3895, 0, 0, 0, 0, 818, 3998 

+ po/pa.po,  818, 3998, 4778, 0, 0, 0, 0, 818, 3998 

+ po/oc.po,  767, 3709, 4483, 0, 0, 0, 0, 767, 3709 

+ po/nl.po,  818, 3998, 3941, 0, 0, 0, 0, 818, 3998 

+ po/ne.po,  377, 869, 909, 126, 546, 214, 2111, 717, 3526 

+ po/nb.po,  781, 3573, 3442, 0, 0, 37, 425, 818, 3998 

+ po/mr.po,  1, 2, 2, 0, 0, 729, 3602, 730, 3604 

+ po/ml.po,  780, 3784, 3050, 0, 0, 0, 0, 780, 3784 

+ po/mjw.po,  229, 472, 447, 0, 0, 577, 3479, 806, 3951 

+ po/lv.po,  809, 3914, 3462, 0, 0, 0, 0, 809, 3914 

+ po/lt.po,  818, 3998, 3539, 0, 0, 0, 0, 818, 3998 

+ po/ko.po,  818, 3998, 3186, 0, 0, 0, 0, 818, 3998 

+ po/km.po,  365, 969, 438, 0, 0, 0, 0, 365, 969 

+ po/kk.po,  677, 2970, 2633, 0, 0, 126, 914, 803, 3884 

+ po/ja.po,  657, 3009, 980, 0, 0, 161, 989, 818, 3998 

+ po/it.po,  818, 3998, 4278, 0, 0, 0, 0, 818, 3998 

+ po/is.po,  349, 686, 717, 1, 4, 456, 3215, 806, 3905 

+ po/id.po,  818, 3998, 3925, 0, 0, 0, 0, 818, 3998 

+ po/hu.po,  818, 3998, 3632, 0, 0, 0, 0, 818, 3998 

+ po/hr.po,  818, 3998, 3809, 0, 0, 0, 0, 818, 3998 

+ po/hi.po,  730, 3604, 4467, 0, 0, 0, 0, 730, 3604 

+ po/he.po,  546, 2447, 2251, 1, 2, 1, 6, 548, 2455 

+ po/gl.po,  818, 3998, 4456, 0, 0, 0, 0, 818, 3998 

+ po/gd.po,  767, 3709, 4955, 0, 0, 0, 0, 767, 3709 

+ po/ga.po,  124, 152, 170, 0, 0, 310, 1353, 434, 1505 

+ po/fur.po,  818, 3998, 4782, 0, 0, 0, 0, 818, 3998 

+ po/fr.po,  818, 3998, 4860, 0, 0, 0, 0, 818, 3998 

+ po/fi.po,  800, 3786, 2942, 0, 0, 18, 212, 818, 3998 

+ po/fa.po,  818, 3998, 4187, 0, 0, 0, 0, 818, 3998 

+ po/eu.po,  818, 3998, 3542, 0, 0, 0, 0, 818, 3998 

+ po/es.po,  818, 3998, 4558, 0, 0, 0, 0, 818, 3998 

+ po/eo.po,  800, 3797, 3475, 0, 0, 9, 117, 809, 3914 

+ po/en_GB.po,  818, 3998, 4018, 0, 0, 0, 0, 818, 3998 

+ po/el.po,  818, 3998, 4254, 0, 0, 0, 0, 818, 3998 

+ po/de.po,  818, 3998, 3984, 0, 0, 0, 0, 818, 3998 

+ po/da.po,  818, 3998, 3722, 0, 0, 0, 0, 818, 3998 

+ po/cs.po,  818, 3998, 3964, 0, 0, 0, 0, 818, 3998 

+ po/ca@valencia.po,  715, 3527, 4050, 0, 0, 1, 1, 716, 3528 

+ po/ca.po,  818, 3998, 4631, 0, 0, 0, 0, 818, 3998 

+ po/bs.po,  429, 1391, 1376, 0, 0, 0, 0, 429, 1391 

+ po/bn.po,  467, 2332, 2293, 0, 0, 263, 1272, 730, 3604 

+ po/bg.po,  723, 3546, 3933, 0, 0, 0, 0, 723, 3546 

+ po/as.po,  383, 1043, 1099, 0, 0, 0, 0, 383, 1043 

+ po/ar.po,  617, 2681, 2527, 54, 311, 99, 733, 770, 3725 

+ po/af.po,  748, 3345, 3520, 0, 0, 55, 537, 803, 3882 

@@ -0,0 +1,40 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/units.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/solaris-mode.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-update-speed.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-status.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-priority-what.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-priority-change.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-many.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-loadaverage.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-kill.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-identify-hog.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-identify-file.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-forcequit.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-files.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-explain.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/process-columns.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/net-check.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/net-bits.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/memory-map-what.page.stub)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/memory-map-use.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/mem-swap.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/mem-check.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/fs-showall.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/fs-info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/fs-diskusage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/fs-device.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/monitorlogo.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/cpu-multicore.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/cpu-mem-normal.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/cpu-check.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commandline.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,107 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/sv/sv.po,  232, 4113, 3533, 0, 0, 0, 0, 232, 4113 

+ help/ro/ro.po,  19, 141, 143, 23, 202, 187, 3745, 229, 4088 

+ help/pt_BR/pt_BR.po,  232, 4113, 4276, 0, 0, 0, 0, 232, 4113 

+ help/pt/pt.po,  229, 4089, 4167, 0, 0, 0, 0, 229, 4089 

+ help/pl/pl.po,  232, 4113, 3200, 0, 0, 0, 0, 232, 4113 

+ help/ko/ko.po,  232, 4113, 2765, 0, 0, 0, 0, 232, 4113 

+ help/hu/hu.po,  232, 4113, 3177, 0, 0, 0, 0, 232, 4113 

+ help/fr/fr.po,  232, 4113, 4370, 0, 0, 0, 0, 232, 4113 

+ help/es/es.po,  232, 4113, 4335, 0, 0, 0, 0, 232, 4113 

+ help/el/el.po,  229, 4089, 4061, 0, 0, 0, 0, 229, 4089 

+ help/de/de.po,  232, 4113, 3790, 0, 0, 0, 0, 232, 4113 

+ help/cs/cs.po,  232, 4113, 3526, 0, 0, 0, 0, 232, 4113 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  304, 1444, 440, 0, 0, 0, 0, 304, 1444 

+ po/zh_HK.po,  292, 1289, 430, 0, 0, 0, 0, 292, 1289 

+ po/zh_CN.po,  304, 1439, 483, 0, 0, 0, 0, 304, 1439 

+ po/vi.po,  298, 1365, 1969, 0, 0, 0, 0, 298, 1365 

+ po/uk.po,  301, 1396, 1287, 0, 0, 0, 0, 301, 1396 

+ po/ug.po,  308, 1280, 1149, 0, 0, 0, 0, 308, 1280 

+ po/tr.po,  304, 1444, 1264, 0, 0, 0, 0, 304, 1444 

+ po/th.po,  298, 1365, 589, 0, 0, 0, 0, 298, 1365 

+ po/tg.po,  291, 1285, 1309, 0, 0, 0, 0, 291, 1285 

+ po/te.po,  292, 1289, 1161, 0, 0, 0, 0, 292, 1289 

+ po/ta.po,  292, 1289, 1142, 0, 0, 0, 0, 292, 1289 

+ po/sv.po,  304, 1444, 1286, 0, 0, 0, 0, 304, 1444 

+ po/sr@latin.po,  304, 1439, 1487, 0, 0, 0, 0, 304, 1439 

+ po/sr.po,  304, 1444, 1491, 0, 0, 0, 0, 304, 1444 

+ po/sq.po,  177, 645, 806, 0, 0, 0, 0, 177, 645 

+ po/sl.po,  304, 1444, 1480, 0, 0, 0, 0, 304, 1444 

+ po/sk.po,  302, 1440, 1340, 0, 0, 0, 0, 302, 1440 

+ po/si.po,  131, 258, 310, 0, 0, 93, 581, 224, 839 

+ po/rw.po,  22, 22, 23, 86, 471, 61, 117, 169, 610 

+ po/ru.po,  304, 1444, 1370, 0, 0, 0, 0, 304, 1444 

+ po/ro.po,  304, 1444, 1667, 0, 0, 0, 0, 304, 1444 

+ po/pt_BR.po,  304, 1444, 1829, 0, 0, 0, 0, 304, 1444 

+ po/pt.po,  301, 1396, 1747, 0, 0, 0, 0, 301, 1396 

+ po/ps.po,  177, 479, 567, 0, 0, 53, 389, 230, 868 

+ po/pl.po,  304, 1444, 1391, 0, 0, 0, 0, 304, 1444 

+ po/pa.po,  304, 1439, 1538, 0, 0, 0, 0, 304, 1439 

+ po/or.po,  308, 1280, 1294, 0, 0, 0, 0, 308, 1280 

+ po/oc.po,  301, 1396, 1891, 0, 0, 0, 0, 301, 1396 

+ po/nn.po,  231, 874, 858, 0, 0, 0, 0, 231, 874 

+ po/nl.po,  304, 1444, 1383, 0, 0, 0, 0, 304, 1444 

+ po/ne.po,  313, 1462, 1357, 0, 0, 0, 0, 313, 1462 

+ po/nds.po,  56, 97, 89, 0, 0, 188, 836, 244, 933 

+ po/nb.po,  314, 1463, 1489, 0, 0, 0, 0, 314, 1463 

+ po/ms.po,  143, 502, 487, 0, 0, 0, 0, 143, 502 

+ po/mr.po,  292, 1289, 1164, 0, 0, 0, 0, 292, 1289 

+ po/mn.po,  142, 498, 452, 0, 0, 0, 0, 142, 498 

+ po/ml.po,  305, 1440, 1233, 0, 0, 0, 0, 305, 1440 

+ po/mk.po,  275, 1072, 1236, 0, 0, 0, 0, 275, 1072 

+ po/mg.po,  209, 845, 929, 1, 1, 0, 0, 210, 846 

+ po/mai.po,  175, 577, 664, 0, 0, 69, 356, 244, 933 

+ po/lv.po,  304, 1444, 1291, 0, 0, 0, 0, 304, 1444 

+ po/lt.po,  304, 1444, 1355, 0, 0, 0, 0, 304, 1444 

+ po/li.po,  116, 388, 377, 20, 67, 7, 47, 143, 502 

+ po/ky.po,  308, 1283, 1139, 0, 0, 0, 0, 308, 1283 

+ po/ku.po,  87, 154, 172, 0, 0, 90, 491, 177, 645 

+ po/ko.po,  304, 1444, 1261, 0, 0, 0, 0, 304, 1444 

+ po/kn.po,  292, 1289, 1159, 0, 0, 0, 0, 292, 1289 

+ po/km.po,  294, 1283, 571, 0, 0, 0, 0, 294, 1283 

+ po/kk.po,  304, 1444, 1280, 0, 0, 0, 0, 304, 1444 

+ po/ka.po,  224, 839, 738, 0, 0, 0, 0, 224, 839 

+ po/ja.po,  301, 1437, 469, 0, 0, 3, 7, 304, 1444 

+ po/it.po,  304, 1444, 1560, 0, 0, 0, 0, 304, 1444 

+ po/is.po,  305, 1440, 1275, 0, 0, 0, 0, 305, 1440 

+ po/id.po,  304, 1444, 1420, 0, 0, 0, 0, 304, 1444 

+ po/hu.po,  304, 1444, 1336, 0, 0, 0, 0, 304, 1444 

+ po/hr.po,  302, 1440, 1400, 0, 0, 0, 0, 302, 1440 

+ po/hi.po,  292, 1289, 1417, 0, 0, 0, 0, 292, 1289 

+ po/he.po,  298, 1365, 1323, 0, 0, 0, 0, 298, 1365 

+ po/gu.po,  308, 1280, 1348, 0, 0, 0, 0, 308, 1280 

+ po/gl.po,  304, 1444, 1852, 0, 0, 0, 0, 304, 1444 

+ po/gd.po,  313, 1462, 2024, 0, 0, 0, 0, 313, 1462 

+ po/ga.po,  158, 294, 370, 3, 9, 130, 900, 291, 1203 

+ po/fur.po,  304, 1444, 1699, 0, 0, 0, 0, 304, 1444 

+ po/fr.po,  304, 1444, 1972, 0, 0, 0, 0, 304, 1444 

+ po/fi.po,  304, 1444, 1034, 0, 0, 0, 0, 304, 1444 

+ po/fa.po,  313, 1462, 1704, 0, 0, 0, 0, 313, 1462 

+ po/eu.po,  304, 1444, 1259, 0, 0, 0, 0, 304, 1444 

+ po/et.po,  292, 1289, 1018, 0, 0, 0, 0, 292, 1289 

+ po/es.po,  304, 1444, 1905, 0, 0, 0, 0, 304, 1444 

+ po/eo.po,  303, 1407, 1194, 0, 0, 0, 0, 303, 1407 

+ po/en_GB.po,  304, 1439, 1462, 0, 0, 0, 0, 304, 1439 

+ po/en_CA.po,  177, 645, 644, 0, 0, 0, 0, 177, 645 

+ po/en@shaw.po,  210, 727, 728, 34, 206, 0, 0, 244, 933 

+ po/el.po,  304, 1444, 1519, 0, 0, 0, 0, 304, 1444 

+ po/dz.po,  230, 868, 501, 0, 0, 0, 0, 230, 868 

+ po/de.po,  304, 1444, 1398, 0, 0, 0, 0, 304, 1444 

+ po/da.po,  302, 1440, 1275, 0, 0, 0, 0, 302, 1440 

+ po/cy.po,  177, 645, 711, 0, 0, 0, 0, 177, 645 

+ po/cs.po,  304, 1444, 1381, 0, 0, 0, 0, 304, 1444 

+ po/ca@valencia.po,  313, 1462, 1833, 0, 0, 0, 0, 313, 1462 

+ po/ca.po,  303, 1441, 1813, 0, 0, 1, 1, 304, 1442 

+ po/bs.po,  292, 1289, 1244, 0, 0, 0, 0, 292, 1289 

+ po/bn_IN.po,  292, 1289, 1317, 0, 0, 0, 0, 292, 1289 

+ po/bn.po,  244, 933, 1055, 0, 0, 0, 0, 244, 933 

+ po/bg.po,  313, 1462, 1581, 0, 0, 0, 0, 313, 1462 

+ po/be@latin.po,  184, 545, 507, 0, 0, 54, 368, 238, 913 

+ po/be.po,  313, 1462, 1424, 0, 0, 0, 0, 313, 1462 

+ po/az.po,  143, 502, 449, 0, 0, 0, 0, 143, 502 

+ po/ast.po,  238, 913, 1131, 0, 0, 1, 5, 239, 918 

+ po/as.po,  292, 1289, 1253, 0, 0, 0, 0, 292, 1289 

+ po/ar.po,  304, 1439, 1575, 0, 0, 0, 0, 304, 1439 

+ po/an.po,  289, 1276, 1596, 0, 0, 0, 0, 289, 1276 

+ po/am.po,  43, 74, 90, 20, 33, 80, 395, 143, 502 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,75 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ln.po,  4, 10, 13, 0, 0, 0, 0, 4, 10 

+ po/gd.po,  6, 15, 18, 0, 0, 0, 0, 6, 15 

+ po/it.po,  6, 15, 16, 0, 0, 0, 0, 6, 15 

+ po/eu.po,  6, 15, 14, 0, 0, 0, 0, 6, 15 

+ po/hi.po,  5, 12, 11, 0, 0, 0, 0, 5, 12 

+ po/hr.po,  6, 15, 13, 0, 0, 0, 0, 6, 15 

+ po/ga.po,  5, 12, 10, 0, 0, 0, 0, 5, 12 

+ po/en_CA.po,  9, 24, 24, 0, 0, 0, 0, 9, 24 

+ po/tr.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/lt.po,  6, 15, 11, 0, 0, 0, 0, 6, 15 

+ po/da.po,  6, 15, 16, 0, 0, 0, 0, 6, 15 

+ po/km.po,  9, 24, 9, 0, 0, 0, 0, 9, 24 

+ po/as.po,  9, 24, 23, 0, 0, 0, 0, 9, 24 

+ po/fa.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/en_GB.po,  9, 24, 24, 0, 0, 0, 0, 9, 24 

+ po/kn.po,  5, 12, 14, 0, 0, 0, 0, 5, 12 

+ po/ko.po,  6, 15, 11, 0, 0, 0, 0, 6, 15 

+ po/id.po,  6, 15, 14, 0, 0, 0, 0, 6, 15 

+ po/sv.po,  6, 15, 16, 0, 0, 0, 0, 6, 15 

+ po/is.po,  6, 15, 16, 0, 0, 0, 0, 6, 15 

+ po/ne.po,  6, 15, 13, 0, 0, 0, 0, 6, 15 

+ po/kk.po,  6, 15, 13, 0, 0, 0, 0, 6, 15 

+ po/ca@valencia.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/cs.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/af.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/th.po,  9, 24, 9, 0, 0, 0, 0, 9, 24 

+ po/tg.po,  5, 12, 12, 0, 0, 0, 0, 5, 12 

+ po/vi.po,  9, 24, 31, 0, 0, 0, 0, 9, 24 

+ po/an.po,  9, 24, 26, 0, 0, 0, 0, 9, 24 

+ po/zh_CN.po,  6, 15, 6, 0, 0, 0, 0, 6, 15 

+ po/ug.po,  9, 24, 23, 0, 0, 0, 0, 9, 24 

+ po/hu.po,  6, 15, 14, 0, 0, 0, 0, 6, 15 

+ po/sr.po,  6, 15, 14, 0, 0, 0, 0, 6, 15 

+ po/gu.po,  9, 24, 24, 0, 0, 0, 0, 9, 24 

+ po/fi.po,  6, 15, 13, 0, 0, 0, 0, 6, 15 

+ po/bn_IN.po,  5, 12, 11, 0, 0, 0, 0, 5, 12 

+ po/pt.po,  6, 15, 14, 0, 0, 0, 0, 6, 15 

+ po/pt_BR.po,  6, 15, 14, 0, 0, 0, 0, 6, 15 

+ po/eo.po,  6, 15, 14, 0, 0, 0, 0, 6, 15 

+ po/lv.po,  6, 15, 13, 0, 0, 0, 0, 6, 15 

+ po/es.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/uz@cyrillic.po,  9, 24, 23, 0, 0, 0, 0, 9, 24 

+ po/pa.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/el.po,  6, 15, 14, 0, 0, 0, 0, 6, 15 

+ po/zh_TW.po,  6, 15, 6, 0, 0, 0, 0, 6, 15 

+ po/de.po,  6, 15, 17, 0, 0, 0, 0, 6, 15 

+ po/sl.po,  6, 15, 17, 0, 0, 0, 0, 6, 15 

+ po/ta.po,  9, 24, 23, 0, 0, 0, 0, 9, 24 

+ po/te.po,  9, 24, 23, 0, 0, 0, 0, 9, 24 

+ po/sk.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/ro.po,  9, 24, 27, 0, 0, 0, 0, 9, 24 

+ po/uk.po,  6, 15, 14, 0, 0, 0, 0, 6, 15 

+ po/mr.po,  9, 24, 23, 0, 0, 0, 0, 9, 24 

+ po/nb.po,  6, 15, 16, 0, 0, 0, 0, 6, 15 

+ po/gl.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/nl.po,  6, 15, 18, 0, 0, 0, 0, 6, 15 

+ po/ja.po,  9, 24, 9, 0, 0, 0, 0, 9, 24 

+ po/fur.po,  6, 15, 16, 0, 0, 0, 0, 6, 15 

+ po/bg.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/be.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/ru.po,  6, 15, 12, 0, 0, 0, 0, 6, 15 

+ po/et.po,  9, 24, 17, 0, 0, 0, 0, 9, 24 

+ po/pl.po,  6, 15, 17, 0, 0, 0, 0, 6, 15 

+ po/ml.po,  5, 12, 11, 0, 0, 0, 0, 5, 12 

+ po/fy.po,  9, 24, 18, 0, 0, 0, 0, 9, 24 

+ po/ar.po,  9, 24, 23, 0, 0, 0, 0, 9, 24 

+ po/oc.po,  4, 10, 12, 0, 0, 0, 0, 4, 10 

+ po/fr.po,  6, 15, 20, 0, 0, 0, 0, 6, 15 

+ po/bs.po,  4, 10, 9, 0, 0, 0, 0, 4, 10 

+ po/zh_HK.po,  9, 24, 9, 0, 0, 0, 0, 9, 24 

+ po/sr@latin.po,  6, 15, 14, 0, 0, 0, 0, 6, 15 

+ po/ca.po,  6, 15, 15, 0, 0, 0, 0, 6, 15 

+ po/or.po,  9, 24, 24, 0, 0, 0, 0, 9, 24 

+ po/he.po,  6, 15, 13, 0, 0, 0, 0, 6, 15 

@@ -0,0 +1,47 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ gnome-help/nl/nl.po,  3168, 56853, 57429, 0, 0, 0, 0, 3168, 56853 

+ gnome-help/cs/cs.po,  3201, 56823, 49138, 0, 0, 0, 0, 3201, 56823 

+ gnome-help/gl/gl.po,  2431, 35551, 36371, 641, 18198, 132, 3076, 3204, 56825 

+ gnome-help/pl/pl.po,  3287, 58047, 46154, 0, 0, 0, 0, 3287, 58047 

+ gnome-help/hr/hr.po,  307, 2687, 2329, 18, 30, 2847, 54227, 3172, 56944 

+ gnome-help/fr/fr.po,  2704, 47231, 50188, 321, 7417, 79, 1325, 3104, 55973 

+ gnome-help/el/el.po,  3111, 56124, 56974, 0, 0, 0, 0, 3111, 56124 

+ gnome-help/de/de.po,  3260, 57480, 55436, 13, 341, 14, 226, 3287, 58047 

+ gnome-help/id/id.po,  1798, 20821, 18532, 402, 6368, 966, 29651, 3166, 56840 

+ gnome-help/kn/kn.po,  350, 897, 882, 0, 0, 2971, 59356, 3321, 60253 

+ gnome-help/fi/fi.po,  2052, 28273, 19055, 649, 15400, 503, 13152, 3204, 56825 

+ gnome-help/lv/lv.po,  3191, 57078, 44920, 5, 20, 0, 0, 3196, 57098 

+ gnome-help/ru/ru.po,  2884, 50476, 42172, 247, 6960, 40, 732, 3171, 58168 

+ gnome-help/pt/pt.po,  3115, 55812, 57231, 19, 532, 6, 81, 3140, 56425 

+ gnome-help/sv/sv.po,  3288, 58064, 53724, 0, 0, 0, 0, 3288, 58064 

+ gnome-help/da/da.po,  1445, 11583, 10661, 0, 0, 1756, 45240, 3201, 56823 

+ gnome-help/hu/hu.po,  3201, 56823, 45700, 0, 0, 0, 0, 3201, 56823 

+ gnome-help/ca/ca.po,  3064, 54611, 57262, 104, 1639, 48, 928, 3216, 57178 

+ gnome-help/sr@latin/sr@latin.po,  3168, 56855, 51793, 0, 0, 0, 0, 3168, 56855 

+ gnome-help/mr/mr.po,  2559, 44257, 33981, 563, 12746, 23, 656, 3145, 57659 

+ gnome-help/zh_CN/zh_CN.po,  2794, 51114, 5179, 375, 5958, 147, 3041, 3316, 60113 

+ gnome-help/as/as.po,  2407, 30614, 27469, 319, 4795, 495, 23177, 3221, 58586 

+ gnome-help/ta/ta.po,  2795, 50123, 38336, 275, 5971, 80, 1791, 3150, 57885 

+ gnome-help/es/es.po,  3088, 53037, 55899, 150, 3718, 65, 1376, 3303, 58131 

+ gnome-help/sr/sr.po,  3168, 56855, 51793, 0, 0, 0, 0, 3168, 56855 

+ gnome-help/gu/gu.po,  2515, 39284, 39210, 412, 9639, 223, 8947, 3150, 57870 

+ gnome-help/ro/ro.po,  169, 1855, 1837, 0, 0, 3035, 54970, 3204, 56825 

+ gnome-help/ja/ja.po,  1739, 27509, 3394, 729, 15161, 636, 13312, 3104, 55982 

+ gnome-help/he/he.po,  4, 8, 11, 0, 0, 3133, 56398, 3137, 56406 

+ gnome-help/hi/hi.po,  164, 3074, 3661, 1, 19, 2114, 43704, 2279, 46797 

+ gnome-help/sl/sl.po,  2939, 52634, 44589, 190, 4255, 70, 1761, 3199, 58650 

+ gnome-help/pt_BR/pt_BR.po,  3201, 56823, 59860, 0, 0, 0, 0, 3201, 56823 

+ gnome-help/te/te.po,  939, 14118, 10266, 197, 2937, 2012, 40704, 3148, 57759 

+ gnome-help/vi/vi.po,  2237, 36788, 39571, 0, 0, 689, 20176, 2926, 56964 

+ gnome-help/pa/pa.po,  192, 532, 564, 149, 863, 1900, 44621, 2241, 46016 

+ gnome-help/it/it.po,  2088, 36623, 36404, 480, 7593, 747, 15915, 3315, 60131 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ system-admin-guide/cs/cs.po,  654, 9076, 8090, 0, 0, 0, 0, 654, 9076 

+ system-admin-guide/gl/gl.po,  238, 1590, 1823, 19, 118, 285, 5725, 542, 7433 

+ system-admin-guide/ko/ko.po,  661, 9090, 6736, 0, 0, 0, 0, 661, 9090 

+ system-admin-guide/de/de.po,  661, 9090, 8657, 0, 0, 0, 0, 661, 9090 

+ system-admin-guide/sv/sv.po,  646, 8929, 7899, 0, 0, 0, 0, 646, 8929 

+ system-admin-guide/hu/hu.po,  547, 7497, 6920, 0, 0, 0, 0, 547, 7497 

+ system-admin-guide/ca/ca.po,  546, 7476, 7936, 0, 0, 1, 21, 547, 7497 

+ system-admin-guide/es/es.po,  645, 8906, 9904, 0, 0, 1, 21, 646, 8927 

+ system-admin-guide/pt_BR/pt_BR.po,  542, 7433, 8003, 0, 0, 0, 0, 542, 7433 

@@ -0,0 +1,6 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.cvsignore)

@@ -0,0 +1,84 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  10, 51, 13, 0, 0, 0, 0, 10, 51 

+ po/zh_HK.po,  29, 160, 38, 0, 0, 0, 0, 29, 160 

+ po/zh_CN.po,  10, 49, 14, 0, 0, 0, 0, 10, 49 

+ po/vi.po,  11, 52, 87, 0, 0, 0, 0, 11, 52 

+ po/uk.po,  10, 52, 45, 0, 0, 0, 0, 10, 52 

+ po/ug.po,  29, 224, 183, 0, 0, 0, 0, 29, 224 

+ po/tr.po,  10, 49, 48, 0, 0, 0, 0, 10, 49 

+ po/th.po,  51, 316, 89, 0, 0, 0, 0, 51, 316 

+ po/tg.po,  26, 136, 136, 0, 0, 0, 0, 26, 136 

+ po/te.po,  29, 160, 126, 0, 0, 0, 0, 29, 160 

+ po/ta.po,  29, 160, 139, 0, 0, 0, 0, 29, 160 

+ po/sv.po,  10, 49, 47, 0, 0, 0, 0, 10, 49 

+ po/sr@latin.po,  10, 52, 59, 0, 0, 0, 0, 10, 52 

+ po/sr.po,  10, 49, 56, 0, 0, 0, 0, 10, 49 

+ po/sq.po,  13, 61, 77, 0, 0, 0, 0, 13, 61 

+ po/sl.po,  10, 49, 51, 0, 0, 0, 0, 10, 49 

+ po/sk.po,  10, 52, 51, 0, 0, 0, 0, 10, 52 

+ po/rw.po,  2, 2, 4, 11, 59, 0, 0, 13, 61 

+ po/ru.po,  11, 52, 55, 0, 0, 0, 0, 11, 52 

+ po/ro.po,  10, 49, 55, 0, 0, 0, 0, 10, 49 

+ po/pt_BR.po,  10, 49, 53, 0, 0, 0, 0, 10, 49 

+ po/pt.po,  10, 52, 56, 0, 0, 0, 0, 10, 52 

+ po/pl.po,  10, 49, 50, 0, 0, 0, 0, 10, 49 

+ po/pa.po,  10, 52, 57, 0, 0, 0, 0, 10, 52 

+ po/or.po,  29, 160, 169, 0, 0, 0, 0, 29, 160 

+ po/oc.po,  10, 52, 64, 0, 0, 0, 0, 10, 52 

+ po/nn.po,  51, 326, 320, 0, 0, 0, 0, 51, 326 

+ po/nl.po,  10, 49, 57, 0, 0, 0, 0, 10, 49 

+ po/ne.po,  10, 52, 47, 0, 0, 0, 0, 10, 52 

+ po/nb.po,  10, 52, 49, 0, 0, 0, 0, 10, 52 

+ po/mr.po,  29, 160, 160, 0, 0, 0, 0, 29, 160 

+ po/ml.po,  10, 52, 44, 0, 0, 0, 0, 10, 52 

+ po/mk.po,  13, 61, 62, 0, 0, 0, 0, 13, 61 

+ po/mjw.po,  5, 15, 18, 0, 0, 5, 34, 10, 49 

+ po/mai.po,  6, 8, 11, 0, 0, 40, 280, 46, 288 

+ po/lv.po,  10, 49, 46, 0, 0, 0, 0, 10, 49 

+ po/lt.po,  10, 49, 41, 0, 0, 0, 0, 10, 49 

+ po/ln.po,  10, 52, 57, 0, 0, 0, 0, 10, 52 

+ po/ko.po,  10, 49, 43, 0, 0, 0, 0, 10, 49 

+ po/kn.po,  29, 160, 126, 0, 0, 0, 0, 29, 160 

+ po/km.po,  30, 184, 67, 0, 0, 0, 0, 30, 184 

+ po/kk.po,  10, 51, 51, 0, 0, 0, 0, 10, 51 

+ po/ja.po,  10, 49, 14, 0, 0, 0, 0, 10, 49 

+ po/it.po,  11, 52, 57, 0, 0, 0, 0, 11, 52 

+ po/is.po,  10, 51, 53, 0, 0, 0, 0, 10, 51 

+ po/id.po,  10, 49, 54, 0, 0, 0, 0, 10, 49 

+ po/hu.po,  10, 49, 45, 0, 0, 0, 0, 10, 49 

+ po/hr.po,  10, 49, 48, 0, 0, 0, 0, 10, 49 

+ po/hi.po,  29, 160, 186, 0, 0, 0, 0, 29, 160 

+ po/he.po,  10, 52, 49, 0, 0, 0, 0, 10, 52 

+ po/gu.po,  10, 52, 56, 0, 0, 0, 0, 10, 52 

+ po/gl.po,  10, 49, 57, 0, 0, 0, 0, 10, 49 

+ po/gd.po,  10, 52, 63, 0, 0, 0, 0, 10, 52 

+ po/ga.po,  46, 288, 361, 0, 0, 0, 0, 46, 288 

+ po/fur.po,  10, 49, 53, 0, 0, 0, 0, 10, 49 

+ po/fr.po,  10, 49, 66, 0, 0, 0, 0, 10, 49 

+ po/fi.po,  10, 49, 44, 0, 0, 0, 0, 10, 49 

+ po/fa.po,  10, 49, 51, 0, 0, 0, 0, 10, 49 

+ po/eu.po,  10, 49, 43, 0, 0, 0, 0, 10, 49 

+ po/et.po,  10, 52, 55, 0, 0, 0, 0, 10, 52 

+ po/es.po,  10, 49, 60, 0, 0, 0, 0, 10, 49 

+ po/eo.po,  10, 51, 51, 0, 0, 0, 0, 10, 51 

+ po/en_GB.po,  10, 52, 52, 0, 0, 0, 0, 10, 52 

+ po/en_CA.po,  15, 70, 70, 0, 0, 0, 0, 15, 70 

+ po/en@shaw.po,  51, 326, 326, 0, 0, 0, 0, 51, 326 

+ po/el.po,  10, 49, 60, 0, 0, 0, 0, 10, 49 

+ po/dz.po,  16, 75, 33, 0, 0, 0, 0, 16, 75 

+ po/de.po,  10, 49, 53, 0, 0, 0, 0, 10, 49 

+ po/da.po,  11, 52, 44, 0, 0, 0, 0, 11, 52 

+ po/cs.po,  10, 49, 47, 0, 0, 0, 0, 10, 49 

+ po/ca@valencia.po,  10, 52, 65, 0, 0, 0, 0, 10, 52 

+ po/ca.po,  10, 49, 62, 0, 0, 0, 0, 10, 49 

+ po/bs.po,  26, 136, 134, 0, 0, 0, 0, 26, 136 

+ po/br.po,  51, 326, 379, 0, 0, 0, 0, 51, 326 

+ po/bn_IN.po,  51, 316, 419, 0, 0, 0, 0, 51, 316 

+ po/bn.po,  51, 326, 374, 0, 0, 0, 0, 51, 326 

+ po/bg.po,  10, 52, 61, 0, 0, 0, 0, 10, 52 

+ po/be.po,  10, 52, 60, 0, 0, 0, 0, 10, 52 

+ po/ast.po,  51, 326, 353, 0, 0, 0, 0, 51, 326 

+ po/as.po,  29, 160, 186, 0, 0, 0, 0, 29, 160 

+ po/ar.po,  34, 247, 214, 0, 0, 0, 0, 34, 247 

+ po/an.po,  29, 160, 187, 0, 0, 0, 0, 29, 160 

+ po/af.po,  10, 52, 54, 0, 0, 0, 0, 10, 52 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,83 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  68, 256, 69, 0, 0, 0, 0, 68, 256 

+ po/zh_HK.po,  68, 256, 69, 0, 0, 0, 0, 68, 256 

+ po/zh_CN.po,  68, 256, 68, 0, 0, 0, 0, 68, 256 

+ po/vi.po,  68, 256, 299, 0, 0, 0, 0, 68, 256 

+ po/uk.po,  68, 256, 205, 0, 0, 0, 0, 68, 256 

+ po/ug.po,  17, 28, 30, 0, 0, 51, 228, 68, 256 

+ po/tr.po,  68, 256, 214, 0, 0, 0, 0, 68, 256 

+ po/th.po,  68, 256, 72, 0, 0, 0, 0, 68, 256 

+ po/tg.po,  11, 11, 15, 0, 0, 57, 245, 68, 256 

+ po/te.po,  68, 256, 208, 0, 0, 0, 0, 68, 256 

+ po/ta.po,  68, 256, 204, 0, 0, 0, 0, 68, 256 

+ po/sv.po,  68, 256, 233, 0, 0, 0, 0, 68, 256 

+ po/sr@latin.po,  68, 256, 208, 0, 0, 0, 0, 68, 256 

+ po/sr.po,  68, 256, 208, 0, 0, 0, 0, 68, 256 

+ po/sq.po,  10, 11, 14, 2, 2, 11, 13, 23, 26 

+ po/sl.po,  68, 256, 229, 0, 0, 0, 0, 68, 256 

+ po/sk.po,  68, 256, 221, 0, 0, 0, 0, 68, 256 

+ po/ru.po,  68, 256, 165, 0, 0, 0, 0, 68, 256 

+ po/ro.po,  68, 256, 250, 0, 0, 0, 0, 68, 256 

+ po/pt_BR.po,  68, 256, 285, 0, 0, 0, 0, 68, 256 

+ po/pt.po,  68, 256, 263, 0, 0, 0, 0, 68, 256 

+ po/ps.po,  7, 8, 8, 1, 1, 15, 17, 23, 26 

+ po/pl.po,  68, 256, 239, 0, 0, 0, 0, 68, 256 

+ po/pa.po,  68, 256, 275, 0, 0, 0, 0, 68, 256 

+ po/or.po,  10, 11, 12, 2, 2, 11, 13, 23, 26 

+ po/oc.po,  68, 256, 287, 0, 0, 0, 0, 68, 256 

+ po/nn.po,  10, 11, 11, 2, 2, 11, 13, 23, 26 

+ po/nl.po,  68, 256, 237, 0, 0, 0, 0, 68, 256 

+ po/ne.po,  68, 256, 217, 0, 0, 0, 0, 68, 256 

+ po/nds.po,  23, 26, 28, 0, 0, 0, 0, 23, 26 

+ po/nb.po,  68, 256, 219, 0, 0, 0, 0, 68, 256 

+ po/ms.po,  7, 8, 9, 5, 5, 11, 13, 23, 26 

+ po/mr.po,  10, 11, 11, 2, 2, 11, 13, 23, 26 

+ po/ml.po,  68, 256, 194, 0, 0, 0, 0, 68, 256 

+ po/mk.po,  10, 11, 11, 2, 2, 11, 13, 23, 26 

+ po/mjw.po,  12, 32, 21, 0, 0, 56, 224, 68, 256 

+ po/mai.po,  3, 4, 5, 1, 1, 19, 21, 23, 26 

+ po/lv.po,  68, 256, 203, 0, 0, 0, 0, 68, 256 

+ po/lt.po,  68, 256, 209, 0, 0, 0, 0, 68, 256 

+ po/ku.po,  10, 11, 11, 2, 2, 11, 13, 23, 26 

+ po/ko.po,  68, 256, 160, 0, 0, 0, 0, 68, 256 

+ po/kn.po,  10, 11, 12, 2, 2, 11, 13, 23, 26 

+ po/km.po,  66, 246, 75, 0, 0, 0, 0, 66, 246 

+ po/ka.po,  10, 11, 11, 2, 2, 11, 13, 23, 26 

+ po/ja.po,  68, 256, 69, 0, 0, 0, 0, 68, 256 

+ po/it.po,  68, 256, 264, 0, 0, 0, 0, 68, 256 

+ po/is.po,  39, 71, 62, 0, 0, 29, 185, 68, 256 

+ po/id.po,  68, 256, 227, 0, 0, 0, 0, 68, 256 

+ po/hu.po,  68, 256, 190, 0, 0, 0, 0, 68, 256 

+ po/hr.po,  68, 256, 226, 0, 0, 0, 0, 68, 256 

+ po/hi.po,  68, 256, 267, 0, 0, 0, 0, 68, 256 

+ po/he.po,  68, 256, 217, 0, 0, 0, 0, 68, 256 

+ po/gu.po,  10, 11, 14, 2, 2, 11, 13, 23, 26 

+ po/gl.po,  68, 256, 292, 0, 0, 0, 0, 68, 256 

+ po/ga.po,  36, 46, 50, 1, 4, 31, 206, 68, 256 

+ po/fur.po,  68, 256, 266, 0, 0, 0, 0, 68, 256 

+ po/fr.po,  68, 256, 293, 0, 0, 0, 0, 68, 256 

+ po/fi.po,  68, 256, 169, 0, 0, 0, 0, 68, 256 

+ po/fa.po,  68, 256, 271, 0, 0, 0, 0, 68, 256 

+ po/eu.po,  68, 256, 205, 0, 0, 0, 0, 68, 256 

+ po/et.po,  68, 256, 176, 0, 0, 0, 0, 68, 256 

+ po/es.po,  68, 256, 310, 0, 0, 0, 0, 68, 256 

+ po/eo.po,  60, 211, 191, 0, 0, 8, 45, 68, 256 

+ po/en_GB.po,  68, 256, 256, 0, 0, 0, 0, 68, 256 

+ po/en@shaw.po,  10, 11, 11, 2, 2, 11, 13, 23, 26 

+ po/el.po,  68, 256, 250, 0, 0, 0, 0, 68, 256 

+ po/dz.po,  10, 11, 11, 2, 2, 11, 13, 23, 26 

+ po/de.po,  68, 256, 225, 0, 0, 0, 0, 68, 256 

+ po/da.po,  68, 256, 210, 0, 0, 0, 0, 68, 256 

+ po/cs.po,  68, 256, 234, 0, 0, 0, 0, 68, 256 

+ po/ca@valencia.po,  68, 256, 292, 0, 0, 0, 0, 68, 256 

+ po/ca.po,  68, 256, 292, 0, 0, 0, 0, 68, 256 

+ po/bs.po,  68, 256, 227, 0, 0, 0, 0, 68, 256 

+ po/bn_IN.po,  10, 11, 11, 2, 2, 11, 13, 23, 26 

+ po/bn.po,  10, 11, 13, 2, 2, 11, 13, 23, 26 

+ po/bg.po,  68, 256, 235, 0, 0, 0, 0, 68, 256 

+ po/be@latin.po,  10, 11, 11, 2, 2, 11, 13, 23, 26 

+ po/be.po,  68, 256, 175, 0, 0, 0, 0, 68, 256 

+ po/ast.po,  10, 11, 13, 2, 2, 11, 13, 23, 26 

+ po/as.po,  68, 256, 238, 0, 0, 0, 0, 68, 256 

+ po/ar.po,  10, 11, 11, 2, 2, 11, 13, 23, 26 

+ po/af.po,  68, 256, 250, 0, 0, 0, 0, 68, 256 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,65 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  41, 192, 60, 0, 0, 0, 0, 41, 192 

+ po/zh_HK.po,  37, 164, 56, 0, 0, 0, 0, 37, 164 

+ po/zh_CN.po,  42, 195, 87, 0, 0, 0, 0, 42, 195 

+ po/vi.po,  42, 195, 284, 0, 0, 0, 0, 42, 195 

+ po/uk.po,  42, 192, 168, 0, 0, 0, 0, 42, 192 

+ po/tr.po,  42, 195, 165, 0, 0, 0, 0, 42, 195 

+ po/th.po,  42, 192, 65, 0, 0, 0, 0, 42, 192 

+ po/tg.po,  42, 195, 220, 0, 0, 0, 0, 42, 195 

+ po/te.po,  81, 216, 198, 0, 0, 0, 0, 81, 216 

+ po/ta.po,  72, 203, 192, 0, 0, 0, 0, 72, 203 

+ po/sv.po,  42, 195, 203, 0, 0, 0, 0, 42, 195 

+ po/sr@latin.po,  42, 192, 182, 0, 0, 0, 0, 42, 192 

+ po/sr.po,  42, 195, 183, 0, 0, 0, 0, 42, 195 

+ po/sl.po,  42, 195, 166, 0, 0, 0, 0, 42, 195 

+ po/sk.po,  42, 192, 185, 0, 0, 0, 0, 42, 192 

+ po/ru.po,  42, 195, 162, 0, 0, 0, 0, 42, 195 

+ po/ro.po,  42, 195, 208, 0, 0, 0, 0, 42, 195 

+ po/pt_BR.po,  42, 195, 223, 0, 0, 0, 0, 42, 195 

+ po/pt.po,  42, 192, 216, 0, 0, 0, 0, 42, 192 

+ po/pl.po,  42, 195, 188, 0, 0, 0, 0, 42, 195 

+ po/pa.po,  41, 191, 228, 0, 0, 0, 0, 41, 191 

+ po/oc.po,  42, 192, 215, 0, 0, 0, 0, 42, 192 

+ po/nl.po,  42, 195, 210, 0, 0, 0, 0, 42, 195 

+ po/ne.po,  42, 192, 179, 0, 0, 0, 0, 42, 192 

+ po/nb.po,  42, 192, 186, 0, 0, 0, 0, 42, 192 

+ po/ml.po,  42, 192, 141, 0, 0, 0, 0, 42, 192 

+ po/mjw.po,  31, 77, 74, 0, 0, 10, 117, 41, 194 

+ po/lv.po,  42, 195, 163, 0, 0, 0, 0, 42, 195 

+ po/lt.po,  42, 195, 147, 0, 0, 0, 0, 42, 195 

+ po/ko.po,  41, 194, 160, 0, 0, 0, 0, 41, 194 

+ po/kn.po,  67, 129, 142, 0, 0, 5, 74, 72, 203 

+ po/kk.po,  41, 192, 172, 0, 0, 0, 0, 41, 192 

+ po/ja.po,  40, 191, 65, 0, 0, 2, 4, 42, 195 

+ po/it.po,  42, 195, 196, 0, 0, 0, 0, 42, 195 

+ po/is.po,  41, 194, 204, 0, 0, 0, 0, 41, 194 

+ po/id.po,  42, 195, 195, 0, 0, 0, 0, 42, 195 

+ po/hu.po,  42, 195, 179, 0, 0, 0, 0, 42, 195 

+ po/hr.po,  42, 195, 175, 0, 0, 0, 0, 42, 195 

+ po/he.po,  42, 192, 191, 0, 0, 0, 0, 42, 192 

+ po/gl.po,  42, 195, 207, 0, 0, 0, 0, 42, 195 

+ po/gd.po,  41, 191, 248, 0, 0, 0, 0, 41, 191 

+ po/ga.po,  38, 113, 123, 0, 0, 3, 70, 41, 183 

+ po/fur.po,  42, 195, 209, 0, 0, 0, 0, 42, 195 

+ po/fr.po,  42, 195, 228, 0, 0, 0, 0, 42, 195 

+ po/fi.po,  42, 195, 140, 0, 0, 0, 0, 42, 195 

+ po/fa.po,  41, 194, 195, 0, 0, 0, 0, 41, 194 

+ po/eu.po,  42, 195, 166, 0, 0, 0, 0, 42, 195 

+ po/et.po,  42, 195, 160, 0, 0, 0, 0, 42, 195 

+ po/es.po,  42, 195, 211, 0, 0, 0, 0, 42, 195 

+ po/eo.po,  42, 195, 194, 0, 0, 0, 0, 42, 195 

+ po/en_GB.po,  42, 195, 198, 0, 0, 0, 0, 42, 195 

+ po/el.po,  42, 195, 234, 0, 0, 0, 0, 42, 195 

+ po/de.po,  42, 195, 223, 0, 0, 0, 0, 42, 195 

+ po/da.po,  41, 194, 198, 0, 0, 0, 0, 41, 194 

+ po/cs.po,  42, 195, 190, 0, 0, 0, 0, 42, 195 

+ po/ca@valencia.po,  41, 191, 219, 0, 0, 0, 0, 41, 191 

+ po/ca.po,  41, 194, 222, 0, 0, 0, 0, 41, 194 

+ po/bs.po,  42, 184, 168, 0, 0, 0, 0, 42, 184 

+ po/bg.po,  42, 192, 222, 0, 0, 0, 0, 42, 192 

+ po/be.po,  42, 192, 177, 0, 0, 0, 0, 42, 192 

+ po/as.po,  41, 183, 182, 0, 0, 0, 0, 41, 183 

+ po/ar.po,  36, 98, 102, 0, 0, 5, 93, 41, 191 

+ po/an.po,  42, 184, 191, 0, 0, 0, 0, 42, 184 

+ po/af.po,  40, 191, 205, 0, 0, 0, 0, 40, 191 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog-2011)

@@ -0,0 +1,58 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/da.gmo,  1393, 8099, 7680, 0, 0, 0, 0, 1393, 8099 

+ po/hu.po,  424, 2524, 2294, 1127, 6401, 641, 4507, 2192, 13432 

+ po/zh_TW.po,  1930, 11418, 5331, 171, 1244, 91, 770, 2192, 13432 

+ po/cs.po,  2190, 13417, 13346, 0, 0, 2, 15, 2192, 13432 

+ po/sv.po,  1378, 7976, 7812, 597, 3735, 217, 1721, 2192, 13432 

+ po/zh_CN.gmo,  2154, 13183, 4646, 0, 0, 0, 0, 2154, 13183 

+ po/id.po,  424, 2524, 2366, 1127, 6401, 641, 4507, 2192, 13432 

+ po/zh_CN.po,  2154, 13183, 4646, 23, 142, 15, 107, 2192, 13432 

+ po/fi.gmo,  424, 2524, 2068, 0, 0, 0, 0, 424, 2524 

+ po/fr.gmo,  1944, 11437, 13952, 0, 0, 0, 0, 1944, 11437 

+ po/en@boldquot.po,  2192, 13432, 13441, 0, 0, 0, 0, 2192, 13432 

+ po/en@quot.gmo,  2192, 13432, 13432, 0, 0, 0, 0, 2192, 13432 

+ po/de.po,  2192, 13432, 13779, 0, 0, 0, 0, 2192, 13432 

+ po/tr.gmo,  1319, 7629, 7193, 0, 0, 0, 0, 1319, 7629 

+ po/de.gmo,  2192, 13432, 13779, 0, 0, 0, 0, 2192, 13432 

+ po/zh_TW.gmo,  1930, 11418, 5331, 0, 0, 0, 0, 1930, 11418 

+ po/nb.gmo,  2156, 13174, 12643, 0, 0, 0, 0, 2156, 13174 

+ po/et.po,  424, 2524, 2224, 1127, 6401, 641, 4507, 2192, 13432 

+ po/ru.po,  2190, 13417, 12802, 0, 0, 2, 15, 2192, 13432 

+ po/pl.gmo,  2190, 13417, 13573, 0, 0, 0, 0, 2190, 13417 

+ po/ro.po,  822, 4858, 5228, 847, 4782, 523, 3792, 2192, 13432 

+ po/ro.gmo,  822, 4858, 5228, 0, 0, 0, 0, 822, 4858 

+ po/ru.gmo,  2190, 13417, 12802, 0, 0, 0, 0, 2190, 13417 

+ po/uk.gmo,  2128, 12970, 13673, 0, 0, 0, 0, 2128, 12970 

+ po/el.po,  424, 2524, 2685, 1127, 6401, 641, 4507, 2192, 13432 

+ po/sk.gmo,  423, 2519, 2463, 0, 0, 0, 0, 423, 2519 

+ po/en@boldquot.gmo,  2192, 13432, 13441, 0, 0, 0, 0, 2192, 13432 

+ po/nb.po,  2156, 13174, 12643, 25, 140, 11, 118, 2192, 13432 

+ po/sk.po,  423, 2519, 2463, 1128, 6406, 641, 4507, 2192, 13432 

+ po/ja.gmo,  2184, 13356, 3876, 0, 0, 0, 0, 2184, 13356 

+ po/sv.gmo,  1378, 7976, 7812, 0, 0, 0, 0, 1378, 7976 

+ po/uk.po,  2128, 12970, 13673, 47, 310, 17, 152, 2192, 13432 

+ po/cs.gmo,  2190, 13417, 13346, 0, 0, 0, 0, 2190, 13417 

+ po/eo.gmo,  297, 1658, 1566, 0, 0, 0, 0, 297, 1658 

+ po/tr.po,  1319, 7629, 7193, 625, 3876, 248, 1927, 2192, 13432 

+ po/it.gmo,  424, 2524, 2800, 0, 0, 0, 0, 424, 2524 

+ po/hu.gmo,  424, 2524, 2294, 0, 0, 0, 0, 424, 2524 

+ po/pt.gmo,  365, 2083, 2357, 0, 0, 0, 0, 365, 2083 

+ po/es.gmo,  2167, 13169, 15208, 0, 0, 0, 0, 2167, 13169 

+ po/pl.po,  2190, 13417, 13573, 0, 0, 2, 15, 2192, 13432 

+ po/gl.po,  421, 2490, 2941, 1148, 6521, 623, 4421, 2192, 13432 

+ po/id.gmo,  424, 2524, 2366, 0, 0, 0, 0, 424, 2524 

+ po/et.gmo,  424, 2524, 2224, 0, 0, 0, 0, 424, 2524 

+ po/eo.po,  297, 1658, 1566, 1211, 6874, 684, 4900, 2192, 13432 

+ po/ca.gmo,  427, 2499, 3098, 0, 0, 0, 0, 427, 2499 

+ po/da.po,  1393, 8099, 7680, 583, 3619, 216, 1714, 2192, 13432 

+ po/gl.gmo,  421, 2490, 2941, 0, 0, 0, 0, 421, 2490 

+ po/el.gmo,  424, 2524, 2685, 0, 0, 0, 0, 424, 2524 

+ po/gnupg2.pot,  0, 0, 0, 0, 0, 2192, 13432, 2192, 13432 

+ po/pt.po,  365, 2083, 2357, 1156, 6560, 671, 4789, 2192, 13432 

+ po/en@quot.po,  2192, 13432, 13432, 0, 0, 0, 0, 2192, 13432 

+ po/es.po,  2167, 13169, 15208, 9, 54, 16, 209, 2192, 13432 

+ po/ca.po,  427, 2499, 3098, 1128, 6453, 637, 4480, 2192, 13432 

+ po/ja.po,  2184, 13356, 3876, 2, 15, 6, 61, 2192, 13432 

+ po/it.po,  424, 2524, 2800, 1127, 6401, 641, 4507, 2192, 13432 

+ po/fi.po,  424, 2524, 2068, 1127, 6401, 641, 4507, 2192, 13432 

+ po/fr.po,  1944, 11437, 13952, 167, 1239, 81, 756, 2192, 13432 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,34 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ms.po,  175, 756, 694, 165, 719, 53, 337, 393, 1812 

+ po/pt_BR.po,  385, 1787, 2020, 7, 22, 1, 3, 393, 1812 

+ po/fr.po,  385, 1787, 2053, 7, 22, 1, 3, 393, 1812 

+ po/it.gmo,  385, 1787, 2021, 0, 0, 0, 0, 385, 1787 

+ po/nl.gmo,  281, 1247, 1154, 0, 0, 0, 0, 281, 1247 

+ po/zh_CN.gmo,  281, 1247, 480, 0, 0, 0, 0, 281, 1247 

+ po/pl.gmo,  385, 1787, 1639, 0, 0, 0, 0, 385, 1787 

+ po/uk.gmo,  385, 1787, 1706, 0, 0, 0, 0, 385, 1787 

+ po/fr.gmo,  385, 1787, 2053, 0, 0, 0, 0, 385, 1787 

+ po/ms.gmo,  175, 756, 694, 0, 0, 0, 0, 175, 756 

+ po/pt_BR.gmo,  385, 1787, 2020, 0, 0, 0, 0, 385, 1787 

+ po/pl.po,  385, 1787, 1639, 7, 22, 1, 3, 393, 1812 

+ po/es.gmo,  281, 1247, 1338, 0, 0, 0, 0, 281, 1247 

+ po/cs.po,  385, 1787, 1655, 7, 22, 1, 3, 393, 1812 

+ po/es.po,  281, 1247, 1338, 65, 306, 47, 259, 393, 1812 

+ po/vi.po,  281, 1247, 1814, 65, 306, 47, 259, 393, 1812 

+ po/de.po,  281, 1247, 1113, 65, 306, 47, 259, 393, 1812 

+ po/eo.po,  385, 1787, 1696, 7, 22, 1, 3, 393, 1812 

+ po/vi.gmo,  281, 1247, 1814, 0, 0, 0, 0, 281, 1247 

+ po/de.gmo,  281, 1247, 1113, 0, 0, 0, 0, 281, 1247 

+ po/uk.po,  385, 1787, 1706, 7, 22, 1, 3, 393, 1812 

+ po/eo.gmo,  385, 1787, 1696, 0, 0, 0, 0, 385, 1787 

+ po/gnutls.pot,  0, 0, 0, 0, 0, 393, 1812, 393, 1812 

+ po/fi.gmo,  281, 1247, 887, 0, 0, 0, 0, 281, 1247 

+ po/zh_CN.po,  281, 1247, 480, 65, 306, 47, 259, 393, 1812 

+ po/sv.gmo,  281, 1247, 1048, 0, 0, 0, 0, 281, 1247 

+ po/it.po,  385, 1787, 2021, 7, 22, 1, 3, 393, 1812 

+ po/sr.po,  281, 1247, 1176, 65, 306, 47, 259, 393, 1812 

+ po/sv.po,  281, 1247, 1048, 65, 306, 47, 259, 393, 1812 

+ po/nl.po,  281, 1247, 1154, 65, 306, 47, 259, 393, 1812 

+ po/cs.gmo,  385, 1787, 1655, 0, 0, 0, 0, 385, 1787 

+ po/fi.po,  281, 1247, 887, 65, 306, 47, 259, 393, 1812 

+ po/sr.gmo,  281, 1247, 1176, 0, 0, 0, 0, 281, 1247 

@@ -0,0 +1,16 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xea in position 3: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xc1 in position 3: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xba in position 2: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 1: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

@@ -0,0 +1,84 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/de.gmo,  85, 442, 480, 0, 0, 0, 0, 85, 442 

+ po/ru.gmo,  94, 613, 655, 0, 0, 0, 0, 94, 613 

+ po/bg.gmo,  107, 875, 1068, 0, 0, 0, 0, 107, 875 

+ po/sr.gmo,  94, 613, 622, 0, 0, 0, 0, 94, 613 

+ po/ga.gmo,  94, 613, 683, 0, 0, 0, 0, 94, 613 

+ po/da.po,  94, 613, 585, 12, 269, 2, 4, 108, 886 

+ po/pt.gmo,  107, 875, 956, 0, 0, 0, 0, 107, 875 

+ po/ru.po,  94, 613, 655, 12, 269, 2, 4, 108, 886 

+ po/fr.po,  94, 613, 701, 12, 269, 2, 4, 108, 886 

+ po/sk.po,  75, 368, 378, 25, 472, 8, 46, 108, 886 

+ po/pt_BR.po,  94, 613, 727, 12, 269, 2, 4, 108, 886 

+ po/ja.gmo,  96, 617, 361, 0, 0, 0, 0, 96, 617 

+ po/eu.po,  14, 38, 39, 24, 217, 70, 631, 108, 886 

+ po/cs.gmo,  107, 875, 909, 0, 0, 0, 0, 107, 875 

+ po/vi.gmo,  107, 875, 1320, 0, 0, 0, 0, 107, 875 

+ po/uk.po,  107, 875, 979, 1, 11, 0, 0, 108, 886 

+ po/pl.gmo,  94, 613, 636, 0, 0, 0, 0, 94, 613 

+ po/sl.gmo,  94, 613, 628, 0, 0, 0, 0, 94, 613 

+ po/ca.gmo,  94, 613, 782, 0, 0, 0, 0, 94, 613 

+ po/be.po,  14, 38, 37, 23, 213, 71, 635, 108, 886 

+ po/pa.po,  57, 225, 251, 15, 97, 36, 564, 108, 886 

+ po/lt.po,  14, 38, 38, 29, 321, 65, 527, 108, 886 

+ po/ky.po,  14, 38, 42, 28, 288, 66, 560, 108, 886 

+ po/el.gmo,  42, 166, 185, 0, 0, 0, 0, 42, 166 

+ po/nb.gmo,  107, 875, 938, 0, 0, 0, 0, 107, 875 

+ po/zh_CN.gmo,  94, 613, 300, 0, 0, 0, 0, 94, 613 

+ po/es.gmo,  81, 418, 497, 0, 0, 0, 0, 81, 418 

+ po/et.gmo,  107, 875, 782, 0, 0, 0, 0, 107, 875 

+ po/ca.po,  94, 613, 782, 12, 269, 2, 4, 108, 886 

+ po/id.po,  94, 613, 635, 12, 269, 2, 4, 108, 886 

+ po/it.po,  107, 875, 991, 1, 11, 0, 0, 108, 886 

+ po/af.po,  14, 38, 36, 23, 213, 71, 635, 108, 886 

+ po/th.gmo,  107, 875, 513, 0, 0, 0, 0, 107, 875 

+ po/uk.gmo,  107, 875, 979, 0, 0, 0, 0, 107, 875 

+ po/sr.po,  94, 613, 622, 12, 269, 2, 4, 108, 886 

+ po/sk.gmo,  75, 368, 378, 0, 0, 0, 0, 75, 368 

+ po/sv.gmo,  107, 875, 888, 0, 0, 0, 0, 107, 875 

+ po/nl.po,  107, 875, 953, 1, 11, 0, 0, 108, 886 

+ po/th.po,  107, 875, 513, 1, 11, 0, 0, 108, 886 

+ po/hr.po,  107, 875, 914, 1, 11, 0, 0, 108, 886 

+ po/be.gmo,  14, 38, 37, 0, 0, 0, 0, 14, 38 

+ po/vi.po,  107, 875, 1320, 1, 11, 0, 0, 108, 886 

+ po/eo.gmo,  94, 613, 608, 0, 0, 0, 0, 94, 613 

+ po/pt.po,  107, 875, 956, 1, 11, 0, 0, 108, 886 

+ po/gl.gmo,  94, 613, 719, 0, 0, 0, 0, 94, 613 

+ po/he.po,  14, 38, 46, 24, 217, 70, 631, 108, 886 

+ po/hu.po,  94, 613, 621, 12, 269, 2, 4, 108, 886 

+ po/nb.po,  107, 875, 938, 1, 11, 0, 0, 108, 886 

+ po/sv.po,  107, 875, 888, 1, 11, 0, 0, 108, 886 

+ po/zh_TW.po,  85, 442, 254, 20, 433, 3, 11, 108, 886 

+ po/pa.gmo,  57, 225, 251, 0, 0, 0, 0, 57, 225 

+ po/zh_CN.po,  94, 613, 300, 12, 269, 2, 4, 108, 886 

+ po/lt.gmo,  14, 38, 38, 0, 0, 0, 0, 14, 38 

+ po/ro.po,  14, 38, 42, 23, 213, 71, 635, 108, 886 

+ po/pt_BR.gmo,  94, 613, 727, 0, 0, 0, 0, 94, 613 

+ po/it.gmo,  107, 875, 991, 0, 0, 0, 0, 107, 875 

+ po/et.po,  107, 875, 782, 1, 11, 0, 0, 108, 886 

+ po/ga.po,  94, 613, 683, 12, 269, 2, 4, 108, 886 

+ po/sl.po,  94, 613, 628, 12, 269, 2, 4, 108, 886 

+ po/eu.gmo,  14, 38, 39, 0, 0, 0, 0, 14, 38 

+ po/fi.gmo,  94, 613, 558, 0, 0, 0, 0, 94, 613 

+ po/fi.po,  94, 613, 558, 12, 269, 2, 4, 108, 886 

+ po/el.po,  42, 166, 185, 41, 421, 25, 299, 108, 886 

+ po/da.gmo,  94, 613, 585, 0, 0, 0, 0, 94, 613 

+ po/tr.gmo,  14, 38, 39, 0, 0, 0, 0, 14, 38 

+ po/id.gmo,  94, 613, 635, 0, 0, 0, 0, 94, 613 

+ po/pl.po,  94, 613, 636, 12, 269, 2, 4, 108, 886 

+ po/cs.po,  107, 875, 909, 1, 11, 0, 0, 108, 886 

+ po/de.po,  85, 442, 480, 20, 433, 3, 11, 108, 886 

+ po/es.po,  81, 418, 497, 21, 436, 6, 32, 108, 886 

+ po/ja.po,  96, 617, 361, 12, 269, 0, 0, 108, 886 

+ po/hr.gmo,  107, 875, 914, 0, 0, 0, 0, 107, 875 

+ po/eo.po,  94, 613, 608, 12, 269, 2, 4, 108, 886 

+ po/hu.gmo,  94, 613, 621, 0, 0, 0, 0, 94, 613 

+ po/zh_TW.gmo,  85, 442, 254, 0, 0, 0, 0, 85, 442 

+ po/ky.gmo,  14, 38, 42, 0, 0, 0, 0, 14, 38 

+ po/fr.gmo,  94, 613, 701, 0, 0, 0, 0, 94, 613 

+ po/bg.po,  107, 875, 1068, 1, 11, 0, 0, 108, 886 

+ po/ko.po,  3, 6, 6, 18, 85, 87, 795, 108, 886 

+ po/nl.gmo,  107, 875, 953, 0, 0, 0, 0, 107, 875 

+ po/tr.po,  14, 38, 39, 24, 217, 70, 631, 108, 886 

+ po/gl.po,  94, 613, 719, 12, 269, 2, 4, 108, 886 

+ po/grep.pot,  0, 0, 0, 0, 0, 108, 886, 108, 886 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,49 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  36, 191, 58, 0, 0, 0, 0, 36, 191 

+ po/zh_HK.po,  36, 187, 57, 0, 0, 0, 0, 36, 187 

+ po/zh_CN.po,  36, 191, 68, 0, 0, 0, 0, 36, 191 

+ po/uk.po,  36, 187, 177, 0, 0, 0, 0, 36, 187 

+ po/tr.po,  36, 191, 166, 0, 0, 0, 0, 36, 191 

+ po/tg.po,  36, 187, 199, 0, 0, 0, 0, 36, 187 

+ po/sv.po,  36, 191, 179, 0, 0, 0, 0, 36, 191 

+ po/sr@latin.po,  37, 194, 204, 0, 0, 0, 0, 37, 194 

+ po/sr.po,  36, 191, 201, 0, 0, 0, 0, 36, 191 

+ po/sl.po,  36, 191, 214, 0, 0, 0, 0, 36, 191 

+ po/sk.po,  36, 191, 209, 0, 0, 0, 0, 36, 191 

+ po/ru.po,  37, 194, 190, 0, 0, 0, 0, 37, 194 

+ po/ro.po,  36, 191, 231, 0, 0, 0, 0, 36, 191 

+ po/pt_BR.po,  36, 191, 227, 0, 0, 0, 0, 36, 191 

+ po/pt.po,  37, 194, 216, 0, 0, 0, 0, 37, 194 

+ po/pl.po,  36, 191, 197, 0, 0, 0, 0, 36, 191 

+ po/pa.po,  36, 187, 226, 0, 0, 0, 0, 36, 187 

+ po/oc.po,  36, 191, 246, 0, 0, 0, 0, 36, 191 

+ po/nl.po,  36, 191, 177, 0, 0, 0, 0, 36, 191 

+ po/ne.po,  21, 96, 94, 7, 41, 8, 54, 36, 191 

+ po/nb.po,  37, 194, 205, 0, 0, 0, 0, 37, 194 

+ po/ml.po,  36, 191, 156, 0, 0, 0, 0, 36, 191 

+ po/lv.po,  36, 191, 181, 0, 0, 0, 0, 36, 191 

+ po/lt.po,  36, 191, 164, 0, 0, 0, 0, 36, 191 

+ po/ko.po,  36, 191, 168, 0, 0, 0, 0, 36, 191 

+ po/ja.po,  35, 184, 76, 0, 0, 0, 0, 35, 184 

+ po/it.po,  36, 191, 238, 0, 0, 0, 0, 36, 191 

+ po/id.po,  36, 191, 200, 0, 0, 0, 0, 36, 191 

+ po/hu.po,  36, 191, 192, 0, 0, 0, 0, 36, 191 

+ po/hr.po,  36, 191, 180, 0, 0, 0, 0, 36, 191 

+ po/he.po,  37, 194, 194, 0, 0, 0, 0, 37, 194 

+ po/gl.po,  36, 191, 257, 0, 0, 0, 0, 36, 191 

+ po/fur.po,  36, 191, 250, 0, 0, 0, 0, 36, 191 

+ po/fr.po,  36, 191, 247, 0, 0, 0, 0, 36, 191 

+ po/fi.po,  19, 85, 71, 0, 0, 17, 106, 36, 191 

+ po/eu.po,  36, 191, 201, 0, 0, 0, 0, 36, 191 

+ po/es.po,  36, 191, 269, 0, 0, 0, 0, 36, 191 

+ po/eo.po,  36, 191, 182, 0, 0, 0, 0, 36, 191 

+ po/en_GB.po,  37, 194, 194, 0, 0, 0, 0, 37, 194 

+ po/el.po,  36, 191, 216, 0, 0, 0, 0, 36, 191 

+ po/de.po,  36, 191, 203, 0, 0, 0, 0, 36, 191 

+ po/da.po,  36, 191, 188, 0, 0, 0, 0, 36, 191 

+ po/cs.po,  36, 191, 202, 0, 0, 0, 0, 36, 191 

+ po/ca@valencia.po,  36, 191, 278, 0, 0, 0, 0, 36, 191 

+ po/ca.po,  36, 191, 278, 0, 0, 0, 0, 36, 191 

+ po/bs.po,  36, 187, 177, 0, 0, 0, 0, 36, 187 

+ po/bg.po,  37, 194, 218, 0, 0, 0, 0, 37, 194 

+ po/as.po,  36, 187, 188, 0, 0, 0, 0, 36, 187 

@@ -0,0 +1,9 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/examples/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/examples/example-tmdb.c)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/grilo-plugins.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,54 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/sv/sv.po,  54, 1304, 1243, 0, 0, 0, 0, 54, 1304 

+ help/pt_BR/pt_BR.po,  54, 1304, 1356, 0, 0, 0, 0, 54, 1304 

+ help/pl/pl.po,  54, 1304, 1214, 0, 0, 0, 0, 54, 1304 

+ help/es/es.po,  49, 1153, 1196, 0, 0, 5, 151, 54, 1304 

+ help/de/de.po,  54, 1304, 1238, 0, 0, 0, 0, 54, 1304 

+ help/cs/cs.po,  54, 1304, 1228, 0, 0, 0, 0, 54, 1304 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  133, 537, 220, 0, 0, 0, 0, 133, 537 

+ po/zh_HK.po,  132, 533, 227, 0, 0, 0, 0, 132, 533 

+ po/zh_CN.po,  133, 536, 215, 0, 0, 0, 0, 133, 536 

+ po/uk.po,  125, 483, 458, 0, 0, 0, 0, 125, 483 

+ po/tr.po,  133, 537, 510, 0, 0, 0, 0, 133, 537 

+ po/sv.po,  133, 537, 568, 0, 0, 0, 0, 133, 537 

+ po/sr@latin.po,  133, 536, 541, 0, 0, 0, 0, 133, 536 

+ po/sr.po,  133, 537, 541, 0, 0, 0, 0, 133, 537 

+ po/sl.po,  133, 537, 528, 0, 0, 0, 0, 133, 537 

+ po/sk.po,  133, 536, 494, 0, 0, 0, 0, 133, 536 

+ po/ru.po,  132, 528, 502, 0, 0, 0, 0, 132, 528 

+ po/ro.po,  133, 537, 639, 0, 0, 0, 0, 133, 537 

+ po/pt_BR.po,  133, 537, 617, 0, 0, 0, 0, 133, 537 

+ po/pt.po,  133, 536, 594, 0, 0, 0, 0, 133, 536 

+ po/pl.po,  133, 537, 585, 0, 0, 0, 0, 133, 537 

+ po/oc.po,  132, 528, 620, 0, 0, 0, 0, 132, 528 

+ po/nl.po,  133, 537, 527, 0, 0, 0, 0, 133, 537 

+ po/ne.po,  44, 77, 79, 52, 186, 37, 273, 133, 536 

+ po/nb.po,  123, 467, 530, 0, 0, 10, 69, 133, 536 

+ po/ml.po,  27, 51, 51, 0, 0, 98, 432, 125, 483 

+ po/lv.po,  133, 537, 458, 0, 0, 0, 0, 133, 537 

+ po/lt.po,  133, 537, 436, 0, 0, 0, 0, 133, 537 

+ po/ko.po,  133, 537, 453, 0, 0, 0, 0, 133, 537 

+ po/ja.po,  124, 480, 190, 0, 0, 1, 3, 125, 483 

+ po/it.po,  133, 537, 604, 0, 0, 0, 0, 133, 537 

+ po/id.po,  133, 537, 507, 0, 0, 0, 0, 133, 537 

+ po/hu.po,  133, 537, 473, 0, 0, 0, 0, 133, 537 

+ po/hr.po,  133, 537, 476, 0, 0, 0, 0, 133, 537 

+ po/he.po,  133, 536, 475, 0, 0, 0, 0, 133, 536 

+ po/gl.po,  133, 537, 695, 0, 0, 0, 0, 133, 537 

+ po/fur.po,  133, 537, 700, 0, 0, 0, 0, 133, 537 

+ po/fr.po,  133, 537, 633, 0, 0, 0, 0, 133, 537 

+ po/fi.po,  46, 99, 84, 0, 0, 87, 438, 133, 537 

+ po/eu.po,  133, 537, 500, 0, 0, 0, 0, 133, 537 

+ po/es.po,  133, 537, 643, 0, 0, 0, 0, 133, 537 

+ po/eo.po,  67, 229, 214, 0, 0, 58, 254, 125, 483 

+ po/en_GB.po,  133, 536, 535, 0, 0, 0, 0, 133, 536 

+ po/el.po,  133, 537, 548, 0, 0, 0, 0, 133, 537 

+ po/de.po,  133, 537, 532, 0, 0, 0, 0, 133, 537 

+ po/da.po,  133, 537, 524, 0, 0, 0, 0, 133, 537 

+ po/cs.po,  133, 537, 481, 0, 0, 0, 0, 133, 537 

+ po/ca@valencia.po,  133, 536, 698, 0, 0, 0, 0, 133, 536 

+ po/ca.po,  133, 537, 698, 0, 0, 0, 0, 133, 537 

+ po/bs.po,  136, 554, 494, 0, 0, 0, 0, 136, 554 

+ po/bg.po,  133, 536, 593, 0, 0, 0, 0, 133, 536 

+ po/as.po,  132, 533, 546, 0, 0, 0, 0, 132, 533 

@@ -0,0 +1,27 @@ 

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0x99 in position 7: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/swiss.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-swiss)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/piglatin.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@piglatin.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-piglatin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/hebrew.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/cyrillic.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/greek.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/arabic.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-translit)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-windowsdir)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES-shell.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/grub.d.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/README)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,78 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ast.po,  193, 962, 1090, 294, 1618, 857, 4539, 1344, 7119 

+ po/ca.po,  1344, 7119, 9408, 0, 0, 0, 0, 1344, 7119 

+ po/da.po,  1344, 7119, 6636, 0, 0, 0, 0, 1344, 7119 

+ po/de.po,  1337, 7003, 6648, 0, 0, 7, 116, 1344, 7119 

+ po/de_CH.po,  1337, 7003, 6648, 0, 0, 7, 116, 1344, 7119 

+ po/de@hebrew.po,  1337, 7003, 6650, 0, 0, 7, 116, 1344, 7119 

+ po/en@arabic.po,  1341, 7111, 7111, 1, 4, 2, 4, 1344, 7119 

+ po/en@cyrillic.po,  1341, 7111, 7111, 1, 4, 2, 4, 1344, 7119 

+ po/en@greek.po,  1341, 7111, 7111, 1, 4, 2, 4, 1344, 7119 

+ po/en@hebrew.po,  1341, 7111, 7113, 1, 4, 2, 4, 1344, 7119 

+ po/en@piglatin.po,  1344, 7119, 7128, 0, 0, 0, 0, 1344, 7119 

+ po/en@quot.po,  1344, 7119, 7119, 0, 0, 0, 0, 1344, 7119 

+ po/eo.po,  496, 2432, 2251, 68, 403, 780, 4284, 1344, 7119 

+ po/es.po,  1314, 6962, 8812, 22, 132, 8, 25, 1344, 7119 

+ po/fi.po,  1314, 6962, 5587, 23, 134, 7, 23, 1344, 7119 

+ po/fr.po,  1314, 6962, 8698, 23, 134, 7, 23, 1344, 7119 

+ po/gl.po,  1137, 5711, 7201, 103, 670, 104, 738, 1344, 7119 

+ po/hr.po,  1344, 7119, 6868, 0, 0, 0, 0, 1344, 7119 

+ po/hu.po,  1344, 7119, 7002, 0, 0, 0, 0, 1344, 7119 

+ po/id.po,  322, 1633, 1638, 273, 1517, 749, 3969, 1344, 7119 

+ po/it.po,  1344, 7119, 7898, 0, 0, 0, 0, 1344, 7119 

+ po/ja.po,  231, 1063, 408, 399, 1597, 714, 4459, 1344, 7119 

+ po/ko.po,  192, 959, 816, 228, 1299, 924, 4861, 1344, 7119 

+ po/lt.po,  1104, 5359, 5109, 17, 89, 223, 1671, 1344, 7119 

+ po/nb.po,  1344, 7119, 7057, 0, 0, 0, 0, 1344, 7119 

+ po/nl.po,  1343, 7115, 7054, 1, 4, 0, 0, 1344, 7119 

+ po/pa.po,  663, 2456, 2720, 73, 339, 608, 4324, 1344, 7119 

+ po/pl.po,  1344, 7119, 7178, 0, 0, 0, 0, 1344, 7119 

+ po/pt_BR.po,  1013, 4531, 5407, 181, 984, 150, 1604, 1344, 7119 

+ po/ru.po,  1344, 7119, 7014, 0, 0, 0, 0, 1344, 7119 

+ po/sl.po,  1067, 5382, 5546, 119, 719, 158, 1018, 1344, 7119 

+ po/sr.po,  1314, 6962, 7004, 21, 128, 9, 29, 1344, 7119 

+ po/sv.po,  1344, 7119, 6673, 0, 0, 0, 0, 1344, 7119 

+ po/tr.po,  827, 3690, 3455, 15, 66, 502, 3363, 1344, 7119 

+ po/uk.po,  1344, 7119, 7481, 0, 0, 0, 0, 1344, 7119 

+ po/vi.po,  1344, 7119, 10567, 0, 0, 0, 0, 1344, 7119 

+ po/zh_CN.po,  348, 1731, 681, 271, 1489, 725, 3899, 1344, 7119 

+ po/zh_TW.po,  352, 1741, 734, 240, 1296, 752, 4082, 1344, 7119 

+ po/ast.gmo,  193, 962, 1090, 0, 0, 0, 0, 193, 962 

+ po/ca.gmo,  1344, 7119, 9408, 0, 0, 0, 0, 1344, 7119 

+ po/da.gmo,  1344, 7119, 6636, 0, 0, 0, 0, 1344, 7119 

+ po/de.gmo,  1337, 7003, 6648, 0, 0, 0, 0, 1337, 7003 

+ po/de_CH.gmo,  1337, 7003, 6648, 0, 0, 0, 0, 1337, 7003 

+ po/de@hebrew.gmo,  1337, 7003, 6650, 0, 0, 0, 0, 1337, 7003 

+ po/en@arabic.gmo,  1341, 7111, 7111, 0, 0, 0, 0, 1341, 7111 

+ po/en@cyrillic.gmo,  1341, 7111, 7111, 0, 0, 0, 0, 1341, 7111 

+ po/en@greek.gmo,  1341, 7111, 7111, 0, 0, 0, 0, 1341, 7111 

+ po/en@hebrew.gmo,  1341, 7111, 7113, 0, 0, 0, 0, 1341, 7111 

+ po/en@piglatin.gmo,  1344, 7119, 7128, 0, 0, 0, 0, 1344, 7119 

+ po/en@quot.gmo,  1344, 7119, 7119, 0, 0, 0, 0, 1344, 7119 

+ po/eo.gmo,  496, 2432, 2251, 0, 0, 0, 0, 496, 2432 

+ po/es.gmo,  1314, 6962, 8812, 0, 0, 0, 0, 1314, 6962 

+ po/fi.gmo,  1314, 6962, 5587, 0, 0, 0, 0, 1314, 6962 

+ po/fr.gmo,  1314, 6962, 8698, 0, 0, 0, 0, 1314, 6962 

+ po/gl.gmo,  1137, 5711, 7201, 0, 0, 0, 0, 1137, 5711 

+ po/hr.gmo,  1344, 7119, 6868, 0, 0, 0, 0, 1344, 7119 

+ po/hu.gmo,  1344, 7119, 7002, 0, 0, 0, 0, 1344, 7119 

+ po/id.gmo,  322, 1633, 1638, 0, 0, 0, 0, 322, 1633 

+ po/it.gmo,  1344, 7119, 7898, 0, 0, 0, 0, 1344, 7119 

+ po/ja.gmo,  231, 1063, 408, 0, 0, 0, 0, 231, 1063 

+ po/ko.gmo,  192, 959, 816, 0, 0, 0, 0, 192, 959 

+ po/lt.gmo,  1104, 5359, 5109, 0, 0, 0, 0, 1104, 5359 

+ po/nb.gmo,  1344, 7119, 7057, 0, 0, 0, 0, 1344, 7119 

+ po/nl.gmo,  1343, 7115, 7054, 0, 0, 0, 0, 1343, 7115 

+ po/pa.gmo,  663, 2456, 2720, 0, 0, 0, 0, 663, 2456 

+ po/pl.gmo,  1344, 7119, 7178, 0, 0, 0, 0, 1344, 7119 

+ po/pt_BR.gmo,  1013, 4531, 5407, 0, 0, 0, 0, 1013, 4531 

+ po/ru.gmo,  1344, 7119, 7014, 0, 0, 0, 0, 1344, 7119 

+ po/sl.gmo,  1067, 5382, 5546, 0, 0, 0, 0, 1067, 5382 

+ po/sr.gmo,  1314, 6962, 7004, 0, 0, 0, 0, 1314, 6962 

+ po/sv.gmo,  1344, 7119, 6673, 0, 0, 0, 0, 1344, 7119 

+ po/tr.gmo,  827, 3690, 3455, 0, 0, 0, 0, 827, 3690 

+ po/uk.gmo,  1344, 7119, 7481, 0, 0, 0, 0, 1344, 7119 

+ po/vi.gmo,  1344, 7119, 10567, 0, 0, 0, 0, 1344, 7119 

+ po/zh_CN.gmo,  348, 1731, 681, 0, 0, 0, 0, 348, 1731 

+ po/zh_TW.gmo,  352, 1741, 734, 0, 0, 0, 0, 352, 1741 

+ po/grub.pot,  0, 0, 0, 0, 0, 1344, 7119, 1344, 7119 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,55 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  572, 6378, 1080, 0, 0, 0, 0, 572, 6378 

+ po/zh_HK.po,  496, 5665, 914, 0, 0, 0, 0, 496, 5665 

+ po/zh_CN.po,  560, 6232, 1008, 0, 0, 0, 0, 560, 6232 

+ po/vi.po,  154, 762, 963, 0, 0, 121, 1668, 275, 2430 

+ po/uk.po,  106, 1033, 825, 0, 0, 312, 3552, 418, 4585 

+ po/ug.po,  428, 3600, 2844, 0, 0, 40, 1690, 468, 5290 

+ po/tr.po,  592, 6550, 5495, 0, 0, 0, 0, 592, 6550 

+ po/tg.po,  4, 8, 8, 0, 0, 464, 5282, 468, 5290 

+ po/sv.po,  592, 6550, 5922, 0, 0, 0, 0, 592, 6550 

+ po/sr@latin.po,  572, 6378, 6138, 0, 0, 0, 0, 572, 6378 

+ po/sr.po,  578, 6423, 6191, 0, 0, 0, 0, 578, 6423 

+ po/sl.po,  592, 6550, 5960, 0, 0, 0, 0, 592, 6550 

+ po/sk.po,  566, 6311, 6038, 0, 0, 0, 0, 566, 6311 

+ po/ru.po,  490, 4136, 3625, 62, 1877, 20, 365, 572, 6378 

+ po/ro.po,  592, 6550, 6863, 0, 0, 0, 0, 592, 6550 

+ po/pt_BR.po,  592, 6550, 7402, 0, 0, 0, 0, 592, 6550 

+ po/pt.po,  560, 6232, 7008, 0, 0, 0, 0, 560, 6232 

+ po/pl.po,  592, 6550, 5985, 0, 0, 0, 0, 592, 6550 

+ po/pa.po,  236, 2202, 2292, 1, 7, 159, 2015, 396, 4224 

+ po/or.po,  242, 2113, 1913, 0, 0, 176, 2472, 418, 4585 

+ po/oc.po,  531, 5849, 7068, 1, 14, 0, 0, 532, 5863 

+ po/nl.po,  404, 3033, 2836, 0, 0, 174, 3390, 578, 6423 

+ po/ne.po,  176, 901, 903, 165, 825, 225, 4585, 566, 6311 

+ po/nb.po,  306, 1575, 1489, 20, 194, 240, 4542, 566, 6311 

+ po/ml.po,  101, 582, 442, 11, 59, 357, 4649, 469, 5290 

+ po/lv.po,  572, 6378, 5334, 0, 0, 0, 0, 572, 6378 

+ po/lt.po,  592, 6550, 5150, 0, 0, 0, 0, 592, 6550 

+ po/kk.po,  226, 944, 936, 0, 0, 346, 5434, 572, 6378 

+ po/ja.po,  176, 1052, 283, 121, 1083, 295, 4415, 592, 6550 

+ po/it.po,  592, 6550, 7137, 0, 0, 0, 0, 592, 6550 

+ po/is.po,  169, 957, 1004, 0, 0, 391, 5275, 560, 6232 

+ po/id.po,  592, 6550, 6085, 0, 0, 0, 0, 592, 6550 

+ po/hu.po,  592, 6550, 5832, 0, 0, 0, 0, 592, 6550 

+ po/hr.po,  592, 6550, 5846, 0, 0, 0, 0, 592, 6550 

+ po/hi.po,  468, 5290, 6120, 0, 0, 0, 0, 468, 5290 

+ po/he.po,  570, 6343, 6343, 0, 0, 0, 0, 570, 6343 

+ po/gu.po,  246, 1128, 1131, 12, 86, 238, 4451, 496, 5665 

+ po/gl.po,  592, 6550, 7547, 0, 0, 0, 0, 592, 6550 

+ po/fur.po,  544, 5427, 6662, 0, 0, 48, 1123, 592, 6550 

+ po/fr.po,  578, 6423, 7857, 0, 0, 0, 0, 578, 6423 

+ po/fi.po,  106, 406, 318, 21, 92, 363, 5060, 490, 5558 

+ po/eu.po,  592, 6550, 5538, 0, 0, 0, 0, 592, 6550 

+ po/es.po,  592, 6550, 7784, 0, 0, 0, 0, 592, 6550 

+ po/eo.po,  224, 1494, 1390, 10, 120, 336, 4729, 570, 6343 

+ po/en_GB.po,  592, 6550, 6548, 0, 0, 0, 0, 592, 6550 

+ po/el.po,  532, 5863, 6193, 0, 0, 0, 0, 532, 5863 

+ po/de.po,  578, 6423, 6100, 0, 0, 0, 0, 578, 6423 

+ po/da.po,  588, 6514, 5769, 0, 0, 0, 0, 588, 6514 

+ po/cs.po,  592, 6550, 6152, 0, 0, 0, 0, 592, 6550 

+ po/ca@valencia.po,  550, 5942, 7339, 2, 71, 14, 298, 566, 6311 

+ po/ca.po,  550, 5942, 7356, 2, 71, 14, 298, 566, 6311 

+ po/bs.po,  527, 5813, 5446, 0, 0, 0, 0, 527, 5813 

+ po/bg.po,  37, 254, 300, 0, 0, 435, 5065, 472, 5319 

+ po/as.po,  69, 678, 574, 0, 0, 349, 3907, 418, 4585 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,98 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/gspell-1.pot,  0, 0, 0, 0, 0, 32, 78, 32, 78 

+ po/zh_TW.gmo,  32, 78, 34, 0, 0, 0, 0, 32, 78 

+ po/zh_CN.gmo,  32, 78, 34, 0, 0, 0, 0, 32, 78 

+ po/vi.gmo,  27, 56, 89, 0, 0, 0, 0, 27, 56 

+ po/uk.gmo,  28, 53, 53, 0, 0, 0, 0, 28, 53 

+ po/tr.gmo,  32, 78, 79, 0, 0, 0, 0, 32, 78 

+ po/sv.gmo,  32, 78, 77, 0, 0, 0, 0, 32, 78 

+ po/sr.gmo,  32, 78, 81, 0, 0, 0, 0, 32, 78 

+ po/sr@latin.gmo,  32, 78, 81, 0, 0, 0, 0, 32, 78 

+ po/sl.gmo,  32, 78, 80, 0, 0, 0, 0, 32, 78 

+ po/sk.gmo,  32, 78, 80, 0, 0, 0, 0, 32, 78 

+ po/ru.gmo,  26, 53, 51, 0, 0, 0, 0, 26, 53 

+ po/ro.gmo,  32, 78, 84, 0, 0, 0, 0, 32, 78 

+ po/pt.gmo,  29, 62, 64, 0, 0, 0, 0, 29, 62 

+ po/pt_BR.gmo,  32, 78, 86, 0, 0, 0, 0, 32, 78 

+ po/pl.gmo,  32, 78, 75, 0, 0, 0, 0, 32, 78 

+ po/pa.gmo,  32, 78, 99, 0, 0, 0, 0, 32, 78 

+ po/oc.gmo,  32, 78, 98, 0, 0, 0, 0, 32, 78 

+ po/nl.gmo,  32, 78, 79, 0, 0, 0, 0, 32, 78 

+ po/ne.gmo,  32, 78, 87, 0, 0, 0, 0, 32, 78 

+ po/nb.gmo,  32, 78, 74, 0, 0, 0, 0, 32, 78 

+ po/ml.gmo,  32, 78, 85, 0, 0, 0, 0, 32, 78 

+ po/mjw.gmo,  18, 39, 42, 0, 0, 0, 0, 18, 39 

+ po/lv.gmo,  32, 78, 76, 0, 0, 0, 0, 32, 78 

+ po/lt.gmo,  32, 78, 72, 0, 0, 0, 0, 32, 78 

+ po/ko.gmo,  32, 78, 78, 0, 0, 0, 0, 32, 78 

+ po/ja.gmo,  26, 53, 29, 0, 0, 0, 0, 26, 53 

+ po/it.gmo,  32, 78, 80, 0, 0, 0, 0, 32, 78 

+ po/is.gmo,  32, 78, 89, 0, 0, 0, 0, 32, 78 

+ po/id.gmo,  32, 78, 90, 0, 0, 0, 0, 32, 78 

+ po/hu.gmo,  32, 78, 72, 0, 0, 0, 0, 32, 78 

+ po/hr.gmo,  32, 78, 77, 0, 0, 0, 0, 32, 78 

+ po/he.gmo,  26, 53, 53, 0, 0, 0, 0, 26, 53 

+ po/gl.gmo,  32, 78, 96, 0, 0, 0, 0, 32, 78 

+ po/fur.gmo,  32, 78, 85, 0, 0, 0, 0, 32, 78 

+ po/fr.gmo,  32, 78, 89, 0, 0, 0, 0, 32, 78 

+ po/fi.gmo,  32, 78, 73, 0, 0, 0, 0, 32, 78 

+ po/fa.gmo,  32, 78, 89, 0, 0, 0, 0, 32, 78 

+ po/eu.gmo,  32, 78, 79, 0, 0, 0, 0, 32, 78 

+ po/es.gmo,  32, 78, 98, 0, 0, 0, 0, 32, 78 

+ po/eo.gmo,  32, 78, 84, 0, 0, 0, 0, 32, 78 

+ po/en_GB.gmo,  32, 78, 78, 0, 0, 0, 0, 32, 78 

+ po/el.gmo,  32, 78, 81, 0, 0, 0, 0, 32, 78 

+ po/de.gmo,  32, 78, 79, 0, 0, 0, 0, 32, 78 

+ po/da.gmo,  32, 78, 78, 0, 0, 0, 0, 32, 78 

+ po/cs.gmo,  32, 78, 79, 0, 0, 0, 0, 32, 78 

+ po/ca@valencia.gmo,  32, 78, 99, 0, 0, 0, 0, 32, 78 

+ po/ca.gmo,  32, 78, 99, 0, 0, 0, 0, 32, 78 

+ po/ar.gmo,  32, 78, 83, 0, 0, 0, 0, 32, 78 

+ po/zh_TW.po,  32, 78, 34, 0, 0, 0, 0, 32, 78 

+ po/zh_CN.po,  32, 78, 34, 0, 0, 0, 0, 32, 78 

+ po/vi.po,  27, 56, 89, 5, 22, 0, 0, 32, 78 

+ po/uk.po,  28, 53, 53, 4, 25, 0, 0, 32, 78 

+ po/tr.po,  32, 78, 79, 0, 0, 0, 0, 32, 78 

+ po/sv.po,  32, 78, 77, 0, 0, 0, 0, 32, 78 

+ po/sr.po,  32, 78, 81, 0, 0, 0, 0, 32, 78 

+ po/sr@latin.po,  32, 78, 81, 0, 0, 0, 0, 32, 78 

+ po/sl.po,  32, 78, 80, 0, 0, 0, 0, 32, 78 

+ po/sk.po,  32, 78, 80, 0, 0, 0, 0, 32, 78 

+ po/ru.po,  26, 53, 51, 4, 9, 2, 16, 32, 78 

+ po/ro.po,  32, 78, 84, 0, 0, 0, 0, 32, 78 

+ po/pt.po,  29, 62, 64, 3, 16, 0, 0, 32, 78 

+ po/pt_BR.po,  32, 78, 86, 0, 0, 0, 0, 32, 78 

+ po/pl.po,  32, 78, 75, 0, 0, 0, 0, 32, 78 

+ po/pa.po,  32, 78, 99, 0, 0, 0, 0, 32, 78 

+ po/oc.po,  32, 78, 98, 0, 0, 0, 0, 32, 78 

+ po/nl.po,  32, 78, 79, 0, 0, 0, 0, 32, 78 

+ po/ne.po,  32, 78, 87, 0, 0, 0, 0, 32, 78 

+ po/nb.po,  32, 78, 74, 0, 0, 0, 0, 32, 78 

+ po/ml.po,  32, 78, 85, 0, 0, 0, 0, 32, 78 

+ po/mjw.po,  18, 39, 42, 0, 0, 14, 39, 32, 78 

+ po/lv.po,  32, 78, 76, 0, 0, 0, 0, 32, 78 

+ po/lt.po,  32, 78, 72, 0, 0, 0, 0, 32, 78 

+ po/ko.po,  32, 78, 78, 0, 0, 0, 0, 32, 78 

+ po/ja.po,  26, 53, 29, 4, 9, 2, 16, 32, 78 

+ po/it.po,  32, 78, 80, 0, 0, 0, 0, 32, 78 

+ po/is.po,  32, 78, 89, 0, 0, 0, 0, 32, 78 

+ po/id.po,  32, 78, 90, 0, 0, 0, 0, 32, 78 

+ po/hu.po,  32, 78, 72, 0, 0, 0, 0, 32, 78 

+ po/hr.po,  32, 78, 77, 0, 0, 0, 0, 32, 78 

+ po/he.po,  26, 53, 53, 4, 9, 2, 16, 32, 78 

+ po/gl.po,  32, 78, 96, 0, 0, 0, 0, 32, 78 

+ po/fur.po,  32, 78, 85, 0, 0, 0, 0, 32, 78 

+ po/fr.po,  32, 78, 89, 0, 0, 0, 0, 32, 78 

+ po/fi.po,  32, 78, 73, 0, 0, 0, 0, 32, 78 

+ po/fa.po,  32, 78, 89, 0, 0, 0, 0, 32, 78 

+ po/eu.po,  32, 78, 79, 0, 0, 0, 0, 32, 78 

+ po/es.po,  32, 78, 98, 0, 0, 0, 0, 32, 78 

+ po/eo.po,  32, 78, 84, 0, 0, 0, 0, 32, 78 

+ po/en_GB.po,  32, 78, 78, 0, 0, 0, 0, 32, 78 

+ po/el.po,  32, 78, 81, 0, 0, 0, 0, 32, 78 

+ po/de.po,  32, 78, 79, 0, 0, 0, 0, 32, 78 

+ po/da.po,  32, 78, 78, 0, 0, 0, 0, 32, 78 

+ po/cs.po,  32, 78, 79, 0, 0, 0, 0, 32, 78 

+ po/ca@valencia.po,  32, 78, 99, 0, 0, 0, 0, 32, 78 

+ po/ca.po,  32, 78, 99, 0, 0, 0, 0, 32, 78 

+ po/ar.po,  32, 78, 83, 0, 0, 0, 0, 32, 78 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

@@ -0,0 +1,84 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/fi.gmo,  318, 1743, 1364, 0, 0, 0, 0, 318, 1743 

+ po/gl.po,  336, 1861, 2206, 11, 79, 31, 170, 378, 2110 

+ po/pl.po,  378, 2110, 1997, 0, 0, 0, 0, 378, 2110 

+ po/zh_CN.gmo,  378, 2110, 551, 0, 0, 0, 0, 378, 2110 

+ po/zh_CN.po,  378, 2110, 551, 0, 0, 0, 0, 378, 2110 

+ po/ast.gmo,  293, 1550, 1723, 0, 0, 0, 0, 293, 1550 

+ po/sr.po,  373, 2074, 2136, 2, 5, 3, 31, 378, 2110 

+ po/bg.po,  378, 2110, 2354, 0, 0, 0, 0, 378, 2110 

+ po/uk.gmo,  378, 2110, 2029, 0, 0, 0, 0, 378, 2110 

+ po/hr.po,  378, 2110, 2082, 0, 0, 0, 0, 378, 2110 

+ po/sq.gmo,  137, 595, 697, 0, 0, 0, 0, 137, 595 

+ po/nb.gmo,  378, 2110, 1935, 0, 0, 0, 0, 378, 2110 

+ po/fur.po,  186, 888, 1037, 2, 5, 190, 1217, 378, 2110 

+ po/ca.po,  317, 1736, 2259, 24, 153, 37, 221, 378, 2110 

+ po/vi.po,  373, 2074, 3100, 2, 5, 3, 31, 378, 2110 

+ po/el.gmo,  317, 1736, 1820, 0, 0, 0, 0, 317, 1736 

+ po/en_GB.gmo,  134, 583, 583, 0, 0, 0, 0, 134, 583 

+ po/gl.gmo,  336, 1861, 2206, 0, 0, 0, 0, 336, 1861 

+ po/az.po,  24, 41, 41, 12, 43, 342, 2026, 378, 2110 

+ po/af.gmo,  166, 743, 759, 0, 0, 0, 0, 166, 743 

+ po/fr.gmo,  378, 2110, 2491, 0, 0, 0, 0, 378, 2110 

+ po/cs.po,  373, 2074, 2102, 2, 5, 3, 31, 378, 2110 

+ po/sl.po,  349, 1947, 1915, 8, 52, 21, 111, 378, 2110 

+ po/hu.po,  373, 2074, 1873, 2, 5, 3, 31, 378, 2110 

+ po/zh_TW.po,  349, 1965, 495, 5, 30, 24, 115, 378, 2110 

+ po/sv.po,  378, 2110, 1970, 0, 0, 0, 0, 378, 2110 

+ po/lt.gmo,  305, 1667, 1403, 0, 0, 0, 0, 305, 1667 

+ po/be.gmo,  42, 175, 169, 0, 0, 0, 0, 42, 175 

+ po/sk.gmo,  364, 2008, 1987, 0, 0, 0, 0, 364, 2008 

+ po/rw.gmo,  5, 4, 4, 0, 0, 0, 0, 5, 4 

+ po/be.po,  42, 175, 169, 22, 121, 314, 1814, 378, 2110 

+ po/nb.po,  378, 2110, 1935, 0, 0, 0, 0, 378, 2110 

+ po/nl.gmo,  373, 2074, 2177, 0, 0, 0, 0, 373, 2074 

+ po/eu.po,  292, 1544, 1333, 34, 209, 52, 357, 378, 2110 

+ po/ru.gmo,  378, 2110, 1940, 0, 0, 0, 0, 378, 2110 

+ po/de.po,  378, 2110, 2148, 0, 0, 0, 0, 378, 2110 

+ po/gstreamer-1.0.pot,  0, 0, 0, 0, 0, 378, 2110, 378, 2110 

+ po/ast.po,  293, 1550, 1723, 32, 197, 53, 363, 378, 2110 

+ po/sr.gmo,  373, 2074, 2136, 0, 0, 0, 0, 373, 2074 

+ po/es.gmo,  322, 1759, 2195, 0, 0, 0, 0, 322, 1759 

+ po/pl.gmo,  378, 2110, 1997, 0, 0, 0, 0, 378, 2110 

+ po/fr.po,  378, 2110, 2491, 0, 0, 0, 0, 378, 2110 

+ po/id.gmo,  369, 2027, 1939, 0, 0, 0, 0, 369, 2027 

+ po/vi.gmo,  373, 2074, 3100, 0, 0, 0, 0, 373, 2074 

+ po/tr.po,  378, 2110, 1847, 0, 0, 0, 0, 378, 2110 

+ po/sq.po,  137, 595, 697, 85, 461, 156, 1054, 378, 2110 

+ po/es.po,  322, 1759, 2195, 22, 147, 34, 204, 378, 2110 

+ po/ru.po,  378, 2110, 1940, 0, 0, 0, 0, 378, 2110 

+ po/ja.gmo,  173, 688, 270, 0, 0, 0, 0, 173, 688 

+ po/it.po,  378, 2110, 2406, 0, 0, 0, 0, 378, 2110 

+ po/id.po,  369, 2027, 1939, 5, 37, 4, 46, 378, 2110 

+ po/bg.gmo,  378, 2110, 2354, 0, 0, 0, 0, 378, 2110 

+ po/lt.po,  305, 1667, 1403, 28, 173, 45, 270, 378, 2110 

+ po/pt_BR.gmo,  369, 2027, 2390, 0, 0, 0, 0, 369, 2027 

+ po/zh_TW.gmo,  349, 1965, 495, 0, 0, 0, 0, 349, 1965 

+ po/pt_BR.po,  369, 2027, 2390, 5, 37, 4, 46, 378, 2110 

+ po/af.po,  166, 743, 759, 80, 420, 132, 947, 378, 2110 

+ po/ja.po,  173, 688, 270, 20, 99, 185, 1323, 378, 2110 

+ po/de.gmo,  378, 2110, 2148, 0, 0, 0, 0, 378, 2110 

+ po/en_GB.po,  134, 583, 583, 86, 465, 158, 1062, 378, 2110 

+ po/eu.gmo,  292, 1544, 1333, 0, 0, 0, 0, 292, 1544 

+ po/it.gmo,  378, 2110, 2406, 0, 0, 0, 0, 378, 2110 

+ po/fur.gmo,  186, 888, 1037, 0, 0, 0, 0, 186, 888 

+ po/cs.gmo,  373, 2074, 2102, 0, 0, 0, 0, 373, 2074 

+ po/fi.po,  318, 1743, 1364, 24, 153, 36, 214, 378, 2110 

+ po/ro.po,  304, 1666, 1984, 28, 173, 46, 271, 378, 2110 

+ po/hu.gmo,  373, 2074, 1873, 0, 0, 0, 0, 373, 2074 

+ po/sv.gmo,  378, 2110, 1970, 0, 0, 0, 0, 378, 2110 

+ po/az.gmo,  24, 41, 41, 0, 0, 0, 0, 24, 41 

+ po/ro.gmo,  304, 1666, 1984, 0, 0, 0, 0, 304, 1666 

+ po/uk.po,  378, 2110, 2029, 0, 0, 0, 0, 378, 2110 

+ po/tr.gmo,  378, 2110, 1847, 0, 0, 0, 0, 378, 2110 

+ po/el.po,  317, 1736, 1820, 23, 149, 38, 225, 378, 2110 

+ po/da.po,  378, 2110, 1972, 0, 0, 0, 0, 378, 2110 

+ po/da.gmo,  378, 2110, 1972, 0, 0, 0, 0, 378, 2110 

+ po/rw.po,  5, 4, 4, 198, 1032, 175, 1074, 378, 2110 

+ po/ca.gmo,  317, 1736, 2259, 0, 0, 0, 0, 317, 1736 

+ po/eo.po,  67, 161, 169, 4, 16, 307, 1933, 378, 2110 

+ po/hr.gmo,  378, 2110, 2082, 0, 0, 0, 0, 378, 2110 

+ po/sl.gmo,  349, 1947, 1915, 0, 0, 0, 0, 349, 1947 

+ po/eo.gmo,  67, 161, 169, 0, 0, 0, 0, 67, 161 

+ po/sk.po,  364, 2008, 1987, 5, 37, 9, 65, 378, 2110 

+ po/nl.po,  373, 2074, 2177, 2, 5, 3, 31, 378, 2110 

@@ -0,0 +1,14 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars.template)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

@@ -0,0 +1,86 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/sl.po,  10, 73, 63, 3, 22, 16, 102, 29, 197 

+ po/eo.gmo,  8, 59, 52, 0, 0, 0, 0, 8, 59 

+ po/gl.po,  10, 73, 101, 3, 22, 16, 102, 29, 197 

+ po/mt.gmo,  7, 43, 39, 0, 0, 0, 0, 7, 43 

+ po/ro.po,  8, 49, 59, 4, 26, 17, 122, 29, 197 

+ po/pt_BR.gmo,  28, 194, 268, 0, 0, 0, 0, 28, 194 

+ po/ky.po,  4, 26, 20, 3, 21, 22, 150, 29, 197 

+ po/sq.po,  5, 30, 36, 6, 39, 18, 128, 29, 197 

+ po/hu.po,  28, 194, 197, 0, 0, 1, 3, 29, 197 

+ po/az.gmo,  2, 12, 10, 0, 0, 0, 0, 2, 12 

+ po/vi.gmo,  28, 194, 297, 0, 0, 0, 0, 28, 194 

+ po/eu.gmo,  8, 49, 47, 0, 0, 0, 0, 8, 49 

+ po/hr.po,  29, 197, 207, 0, 0, 0, 0, 29, 197 

+ po/af.po,  2, 12, 13, 8, 53, 19, 132, 29, 197 

+ po/id.po,  28, 194, 189, 0, 0, 1, 3, 29, 197 

+ po/ast.gmo,  28, 194, 243, 0, 0, 0, 0, 28, 194 

+ po/uk.po,  29, 197, 212, 0, 0, 0, 0, 29, 197 

+ po/bg.po,  28, 194, 246, 0, 0, 1, 3, 29, 197 

+ po/ja.gmo,  10, 73, 20, 0, 0, 0, 0, 10, 73 

+ po/cs.gmo,  28, 194, 211, 0, 0, 0, 0, 28, 194 

+ po/nb.po,  29, 197, 176, 0, 0, 0, 0, 29, 197 

+ po/sl.gmo,  10, 73, 63, 0, 0, 0, 0, 10, 73 

+ po/da.po,  29, 197, 175, 0, 0, 0, 0, 29, 197 

+ po/fr.gmo,  29, 197, 241, 0, 0, 0, 0, 29, 197 

+ po/es.po,  10, 73, 95, 6, 39, 13, 85, 29, 197 

+ po/tr.po,  29, 197, 152, 0, 0, 0, 0, 29, 197 

+ po/lv.po,  17, 126, 105, 9, 57, 3, 14, 29, 197 

+ po/nl.gmo,  28, 194, 227, 0, 0, 0, 0, 28, 194 

+ po/fur.po,  28, 194, 252, 0, 0, 1, 3, 29, 197 

+ po/mt.po,  7, 43, 39, 7, 43, 15, 111, 29, 197 

+ po/uk.gmo,  29, 197, 212, 0, 0, 0, 0, 29, 197 

+ po/pl.gmo,  29, 197, 219, 0, 0, 0, 0, 29, 197 

+ po/gst-plugins-bad-1.0.pot,  0, 0, 0, 0, 0, 29, 197, 29, 197 

+ po/or.gmo,  2, 12, 10, 0, 0, 0, 0, 2, 12 

+ po/az.po,  2, 12, 10, 8, 53, 19, 132, 29, 197 

+ po/sv.po,  29, 197, 197, 0, 0, 0, 0, 29, 197 

+ po/af.gmo,  2, 12, 13, 0, 0, 0, 0, 2, 12 

+ po/ro.gmo,  8, 49, 59, 0, 0, 0, 0, 8, 49 

+ po/ca.po,  10, 73, 99, 3, 22, 16, 102, 29, 197 

+ po/nl.po,  28, 194, 227, 0, 0, 1, 3, 29, 197 

+ po/sk.po,  21, 152, 140, 7, 42, 1, 3, 29, 197 

+ po/zh_CN.gmo,  29, 197, 31, 0, 0, 0, 0, 29, 197 

+ po/cs.po,  28, 194, 211, 0, 0, 1, 3, 29, 197 

+ po/sk.gmo,  21, 152, 140, 0, 0, 0, 0, 21, 152 

+ po/it.po,  29, 197, 235, 0, 0, 0, 0, 29, 197 

+ po/hr.gmo,  29, 197, 207, 0, 0, 0, 0, 29, 197 

+ po/fur.gmo,  28, 194, 252, 0, 0, 0, 0, 28, 194 

+ po/sr.po,  28, 194, 218, 0, 0, 1, 3, 29, 197 

+ po/fi.gmo,  8, 49, 38, 0, 0, 0, 0, 8, 49 

+ po/hu.gmo,  28, 194, 197, 0, 0, 0, 0, 28, 194 

+ po/fi.po,  8, 49, 38, 7, 43, 14, 105, 29, 197 

+ po/es.gmo,  10, 73, 95, 0, 0, 0, 0, 10, 73 

+ po/vi.po,  28, 194, 297, 0, 0, 1, 3, 29, 197 

+ po/el.po,  10, 73, 72, 3, 22, 16, 102, 29, 197 

+ po/ast.po,  28, 194, 243, 0, 0, 1, 3, 29, 197 

+ po/pl.po,  29, 197, 219, 0, 0, 0, 0, 29, 197 

+ po/ru.po,  29, 197, 188, 0, 0, 0, 0, 29, 197 

+ po/zh_CN.po,  29, 197, 31, 0, 0, 0, 0, 29, 197 

+ po/id.gmo,  28, 194, 189, 0, 0, 0, 0, 28, 194 

+ po/de.po,  29, 197, 205, 0, 0, 0, 0, 29, 197 

+ po/lt.gmo,  5, 30, 26, 0, 0, 0, 0, 5, 30 

+ po/sq.gmo,  5, 30, 36, 0, 0, 0, 0, 5, 30 

+ po/ru.gmo,  29, 197, 188, 0, 0, 0, 0, 29, 197 

+ po/ky.gmo,  4, 26, 20, 0, 0, 0, 0, 4, 26 

+ po/lv.gmo,  17, 126, 105, 0, 0, 0, 0, 17, 126 

+ po/da.gmo,  29, 197, 175, 0, 0, 0, 0, 29, 197 

+ po/gl.gmo,  10, 73, 101, 0, 0, 0, 0, 10, 73 

+ po/en_GB.gmo,  2, 12, 12, 0, 0, 0, 0, 2, 12 

+ po/ca.gmo,  10, 73, 99, 0, 0, 0, 0, 10, 73 

+ po/it.gmo,  29, 197, 235, 0, 0, 0, 0, 29, 197 

+ po/sv.gmo,  29, 197, 197, 0, 0, 0, 0, 29, 197 

+ po/eu.po,  8, 49, 47, 4, 26, 17, 122, 29, 197 

+ po/tr.gmo,  29, 197, 152, 0, 0, 0, 0, 29, 197 

+ po/de.gmo,  29, 197, 205, 0, 0, 0, 0, 29, 197 

+ po/eo.po,  8, 59, 52, 5, 36, 16, 102, 29, 197 

+ po/ja.po,  10, 73, 20, 6, 39, 13, 85, 29, 197 

+ po/sr.gmo,  28, 194, 218, 0, 0, 0, 0, 28, 194 

+ po/fr.po,  29, 197, 241, 0, 0, 0, 0, 29, 197 

+ po/or.po,  2, 12, 10, 8, 53, 19, 132, 29, 197 

+ po/lt.po,  5, 30, 26, 6, 39, 18, 128, 29, 197 

+ po/nb.gmo,  29, 197, 176, 0, 0, 0, 0, 29, 197 

+ po/pt_BR.po,  28, 194, 268, 0, 0, 1, 3, 29, 197 

+ po/bg.gmo,  28, 194, 246, 0, 0, 0, 0, 28, 194 

+ po/en_GB.po,  2, 12, 12, 8, 53, 19, 132, 29, 197 

+ po/el.gmo,  10, 73, 72, 0, 0, 0, 0, 10, 73 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

@@ -0,0 +1,80 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/fi.gmo,  124, 640, 416, 0, 0, 0, 0, 124, 640 

+ po/gl.po,  136, 677, 840, 13, 65, 56, 250, 205, 992 

+ po/pl.po,  205, 992, 957, 0, 0, 0, 0, 205, 992 

+ po/zh_CN.gmo,  205, 992, 356, 0, 0, 0, 0, 205, 992 

+ po/zh_CN.po,  205, 992, 356, 0, 0, 0, 0, 205, 992 

+ po/sr.po,  196, 939, 915, 1, 5, 8, 48, 205, 992 

+ po/bg.po,  205, 992, 1070, 0, 0, 0, 0, 205, 992 

+ po/uk.gmo,  205, 992, 950, 0, 0, 0, 0, 205, 992 

+ po/hr.po,  204, 976, 941, 0, 0, 1, 16, 205, 992 

+ po/sq.gmo,  2, 8, 9, 0, 0, 0, 0, 2, 8 

+ po/lv.gmo,  154, 770, 635, 0, 0, 0, 0, 154, 770 

+ po/nb.gmo,  205, 992, 846, 0, 0, 0, 0, 205, 992 

+ po/fur.po,  131, 590, 681, 2, 8, 72, 394, 205, 992 

+ po/or.gmo,  2, 8, 7, 0, 0, 0, 0, 2, 8 

+ po/ca.po,  124, 640, 823, 22, 95, 59, 257, 205, 992 

+ po/vi.po,  196, 939, 1439, 1, 5, 8, 48, 205, 992 

+ po/el.gmo,  126, 651, 687, 0, 0, 0, 0, 126, 651 

+ po/en_GB.gmo,  2, 8, 8, 0, 0, 0, 0, 2, 8 

+ po/gl.gmo,  136, 677, 840, 0, 0, 0, 0, 136, 677 

+ po/az.po,  2, 8, 7, 18, 123, 185, 861, 205, 992 

+ po/af.gmo,  2, 8, 9, 0, 0, 0, 0, 2, 8 

+ po/fr.gmo,  205, 992, 1227, 0, 0, 0, 0, 205, 992 

+ po/cs.po,  196, 939, 932, 1, 5, 8, 48, 205, 992 

+ po/sl.po,  136, 677, 628, 11, 55, 58, 260, 205, 992 

+ po/hu.po,  196, 939, 818, 1, 5, 8, 48, 205, 992 

+ po/sv.po,  205, 992, 823, 0, 0, 0, 0, 205, 992 

+ po/lt.gmo,  70, 316, 265, 0, 0, 0, 0, 70, 316 

+ po/sk.gmo,  186, 887, 804, 0, 0, 0, 0, 186, 887 

+ po/nb.po,  205, 992, 846, 0, 0, 0, 0, 205, 992 

+ po/nl.gmo,  191, 912, 911, 0, 0, 0, 0, 191, 912 

+ po/eu.po,  85, 407, 397, 19, 73, 101, 512, 205, 992 

+ po/ru.gmo,  205, 992, 891, 0, 0, 0, 0, 205, 992 

+ po/de.po,  205, 992, 886, 0, 0, 0, 0, 205, 992 

+ po/sr.gmo,  196, 939, 915, 0, 0, 0, 0, 196, 939 

+ po/es.gmo,  126, 651, 827, 0, 0, 0, 0, 126, 651 

+ po/pl.gmo,  205, 992, 957, 0, 0, 0, 0, 205, 992 

+ po/fr.po,  205, 992, 1227, 0, 0, 0, 0, 205, 992 

+ po/id.gmo,  196, 939, 912, 0, 0, 0, 0, 196, 939 

+ po/vi.gmo,  196, 939, 1439, 0, 0, 0, 0, 196, 939 

+ po/tr.po,  205, 992, 870, 0, 0, 0, 0, 205, 992 

+ po/sq.po,  2, 8, 9, 18, 123, 185, 861, 205, 992 

+ po/es.po,  126, 651, 827, 20, 84, 59, 257, 205, 992 

+ po/ru.po,  205, 992, 891, 0, 0, 0, 0, 205, 992 

+ po/ja.gmo,  94, 448, 197, 0, 0, 0, 0, 94, 448 

+ po/it.po,  205, 992, 1086, 0, 0, 0, 0, 205, 992 

+ po/id.po,  196, 939, 912, 1, 5, 8, 48, 205, 992 

+ po/bg.gmo,  205, 992, 1070, 0, 0, 0, 0, 205, 992 

+ po/lt.po,  70, 316, 265, 30, 137, 105, 539, 205, 992 

+ po/pt_BR.gmo,  196, 939, 1171, 0, 0, 0, 0, 196, 939 

+ po/pt_BR.po,  196, 939, 1171, 1, 5, 8, 48, 205, 992 

+ po/af.po,  2, 8, 9, 18, 123, 185, 861, 205, 992 

+ po/ja.po,  94, 448, 197, 20, 75, 91, 469, 205, 992 

+ po/de.gmo,  205, 992, 886, 0, 0, 0, 0, 205, 992 

+ po/en_GB.po,  2, 8, 8, 18, 123, 185, 861, 205, 992 

+ po/eu.gmo,  85, 407, 397, 0, 0, 0, 0, 85, 407 

+ po/gst-plugins-base-1.0.pot,  0, 0, 0, 0, 0, 205, 992, 205, 992 

+ po/it.gmo,  205, 992, 1086, 0, 0, 0, 0, 205, 992 

+ po/fur.gmo,  131, 590, 681, 0, 0, 0, 0, 131, 590 

+ po/lv.po,  154, 770, 635, 7, 41, 44, 181, 205, 992 

+ po/cs.gmo,  196, 939, 932, 0, 0, 0, 0, 196, 939 

+ po/fi.po,  124, 640, 416, 22, 95, 59, 257, 205, 992 

+ po/ro.po,  80, 394, 416, 18, 64, 107, 534, 205, 992 

+ po/or.po,  2, 8, 7, 18, 123, 185, 861, 205, 992 

+ po/hu.gmo,  196, 939, 818, 0, 0, 0, 0, 196, 939 

+ po/sv.gmo,  205, 992, 823, 0, 0, 0, 0, 205, 992 

+ po/az.gmo,  2, 8, 7, 0, 0, 0, 0, 2, 8 

+ po/ro.gmo,  80, 394, 416, 0, 0, 0, 0, 80, 394 

+ po/uk.po,  205, 992, 950, 0, 0, 0, 0, 205, 992 

+ po/tr.gmo,  205, 992, 870, 0, 0, 0, 0, 205, 992 

+ po/el.po,  126, 651, 687, 20, 84, 59, 257, 205, 992 

+ po/da.po,  204, 976, 836, 0, 0, 1, 16, 205, 992 

+ po/da.gmo,  204, 976, 836, 0, 0, 0, 0, 204, 976 

+ po/ca.gmo,  124, 640, 823, 0, 0, 0, 0, 124, 640 

+ po/eo.po,  28, 167, 162, 3, 17, 174, 808, 205, 992 

+ po/hr.gmo,  204, 976, 941, 0, 0, 0, 0, 204, 976 

+ po/sl.gmo,  136, 677, 628, 0, 0, 0, 0, 136, 677 

+ po/eo.gmo,  28, 167, 162, 0, 0, 0, 0, 28, 167 

+ po/sk.po,  186, 887, 804, 4, 28, 15, 77, 205, 992 

+ po/nl.po,  191, 912, 911, 4, 28, 10, 52, 205, 992 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

@@ -0,0 +1,88 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/fi.gmo,  50, 432, 344, 0, 0, 0, 0, 50, 432 

+ po/mt.gmo,  40, 340, 319, 0, 0, 0, 0, 40, 340 

+ po/ky.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/gl.po,  65, 558, 715, 20, 152, 13, 92, 98, 802 

+ po/pl.po,  98, 802, 784, 0, 0, 0, 0, 98, 802 

+ po/zh_CN.gmo,  98, 802, 174, 0, 0, 0, 0, 98, 802 

+ po/zh_CN.po,  98, 802, 174, 0, 0, 0, 0, 98, 802 

+ po/sr.po,  88, 716, 740, 6, 43, 4, 43, 98, 802 

+ po/bg.po,  88, 716, 741, 6, 43, 4, 43, 98, 802 

+ po/uk.gmo,  98, 802, 783, 0, 0, 0, 0, 98, 802 

+ po/hr.po,  98, 802, 756, 0, 0, 0, 0, 98, 802 

+ po/ky.po,  0, 0, 0, 5, 47, 93, 755, 98, 802 

+ po/sq.gmo,  1, 10, 13, 0, 0, 0, 0, 1, 10 

+ po/lv.gmo,  67, 572, 467, 0, 0, 0, 0, 67, 572 

+ po/nb.gmo,  98, 802, 738, 0, 0, 0, 0, 98, 802 

+ po/fur.po,  80, 665, 840, 7, 52, 11, 85, 98, 802 

+ po/or.gmo,  1, 10, 9, 0, 0, 0, 0, 1, 10 

+ po/ca.po,  53, 458, 593, 29, 231, 16, 113, 98, 802 

+ po/vi.po,  88, 716, 1097, 6, 43, 4, 43, 98, 802 

+ po/el.gmo,  53, 458, 516, 0, 0, 0, 0, 53, 458 

+ po/en_GB.gmo,  1, 10, 10, 0, 0, 0, 0, 1, 10 

+ po/gl.gmo,  65, 558, 715, 0, 0, 0, 0, 65, 558 

+ po/az.po,  1, 10, 9, 34, 254, 63, 538, 98, 802 

+ po/af.gmo,  1, 10, 8, 0, 0, 0, 0, 1, 10 

+ po/fr.gmo,  98, 802, 972, 0, 0, 0, 0, 98, 802 

+ po/cs.po,  88, 716, 639, 6, 43, 4, 43, 98, 802 

+ po/sl.po,  67, 572, 531, 20, 152, 11, 78, 98, 802 

+ po/hu.po,  88, 716, 666, 6, 43, 4, 43, 98, 802 

+ po/zh_TW.po,  6, 54, 8, 1, 9, 91, 739, 98, 802 

+ po/sv.po,  98, 802, 791, 0, 0, 0, 0, 98, 802 

+ po/lt.gmo,  44, 405, 308, 0, 0, 0, 0, 44, 405 

+ po/sk.gmo,  83, 686, 644, 0, 0, 0, 0, 83, 686 

+ po/zh_HK.gmo,  6, 54, 8, 0, 0, 0, 0, 6, 54 

+ po/nb.po,  98, 802, 738, 0, 0, 0, 0, 98, 802 

+ po/nl.gmo,  88, 716, 724, 0, 0, 0, 0, 88, 716 

+ po/eu.po,  44, 405, 376, 33, 258, 21, 139, 98, 802 

+ po/ru.gmo,  98, 802, 694, 0, 0, 0, 0, 98, 802 

+ po/de.po,  98, 802, 845, 0, 0, 0, 0, 98, 802 

+ po/sr.gmo,  88, 716, 740, 0, 0, 0, 0, 88, 716 

+ po/es.gmo,  56, 483, 602, 0, 0, 0, 0, 56, 483 

+ po/pl.gmo,  98, 802, 784, 0, 0, 0, 0, 98, 802 

+ po/fr.po,  98, 802, 972, 0, 0, 0, 0, 98, 802 

+ po/id.gmo,  86, 702, 663, 0, 0, 0, 0, 86, 702 

+ po/vi.gmo,  88, 716, 1097, 0, 0, 0, 0, 88, 716 

+ po/tr.po,  97, 784, 622, 0, 0, 1, 18, 98, 802 

+ po/sq.po,  1, 10, 13, 36, 265, 61, 527, 98, 802 

+ po/es.po,  56, 483, 602, 28, 221, 14, 98, 98, 802 

+ po/ru.po,  98, 802, 694, 0, 0, 0, 0, 98, 802 

+ po/ja.gmo,  65, 558, 161, 0, 0, 0, 0, 65, 558 

+ po/zh_HK.po,  6, 54, 8, 1, 9, 91, 739, 98, 802 

+ po/it.po,  98, 802, 924, 0, 0, 0, 0, 98, 802 

+ po/id.po,  86, 702, 663, 8, 57, 4, 43, 98, 802 

+ po/bg.gmo,  88, 716, 741, 0, 0, 0, 0, 88, 716 

+ po/lt.po,  44, 405, 308, 33, 258, 21, 139, 98, 802 

+ po/pt_BR.gmo,  88, 716, 875, 0, 0, 0, 0, 88, 716 

+ po/zh_TW.gmo,  6, 54, 8, 0, 0, 0, 0, 6, 54 

+ po/mt.po,  40, 340, 319, 36, 293, 22, 169, 98, 802 

+ po/pt_BR.po,  88, 716, 875, 6, 43, 4, 43, 98, 802 

+ po/af.po,  1, 10, 8, 34, 254, 63, 538, 98, 802 

+ po/ja.po,  65, 558, 161, 20, 152, 13, 92, 98, 802 

+ po/de.gmo,  98, 802, 845, 0, 0, 0, 0, 98, 802 

+ po/en_GB.po,  1, 10, 10, 36, 265, 61, 527, 98, 802 

+ po/eu.gmo,  44, 405, 376, 0, 0, 0, 0, 44, 405 

+ po/it.gmo,  98, 802, 924, 0, 0, 0, 0, 98, 802 

+ po/fur.gmo,  80, 665, 840, 0, 0, 0, 0, 80, 665 

+ po/lv.po,  67, 572, 467, 20, 152, 11, 78, 98, 802 

+ po/cs.gmo,  88, 716, 639, 0, 0, 0, 0, 88, 716 

+ po/fi.po,  50, 432, 344, 32, 258, 16, 112, 98, 802 

+ po/ro.po,  44, 405, 448, 33, 258, 21, 139, 98, 802 

+ po/or.po,  1, 10, 9, 38, 295, 59, 497, 98, 802 

+ po/hu.gmo,  88, 716, 666, 0, 0, 0, 0, 88, 716 

+ po/sv.gmo,  98, 802, 791, 0, 0, 0, 0, 98, 802 

+ po/az.gmo,  1, 10, 9, 0, 0, 0, 0, 1, 10 

+ po/ro.gmo,  44, 405, 448, 0, 0, 0, 0, 44, 405 

+ po/uk.po,  98, 802, 783, 0, 0, 0, 0, 98, 802 

+ po/tr.gmo,  97, 784, 622, 0, 0, 0, 0, 97, 784 

+ po/el.po,  53, 458, 516, 23, 186, 22, 158, 98, 802 

+ po/da.po,  98, 802, 756, 0, 0, 0, 0, 98, 802 

+ po/da.gmo,  98, 802, 756, 0, 0, 0, 0, 98, 802 

+ po/ca.gmo,  53, 458, 593, 0, 0, 0, 0, 53, 458 

+ po/eo.po,  6, 41, 38, 1, 9, 91, 752, 98, 802 

+ po/hr.gmo,  98, 802, 756, 0, 0, 0, 0, 98, 802 

+ po/sl.gmo,  67, 572, 531, 0, 0, 0, 0, 67, 572 

+ po/eo.gmo,  6, 41, 38, 0, 0, 0, 0, 6, 41 

+ po/sk.po,  83, 686, 644, 8, 57, 7, 59, 98, 802 

+ po/nl.po,  88, 716, 724, 6, 43, 4, 43, 98, 802 

+ po/gst-plugins-good-1.0.pot,  0, 0, 0, 0, 0, 98, 802, 98, 802 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

@@ -0,0 +1,88 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/sl.po,  10, 80, 66, 0, 0, 0, 0, 10, 80 

+ po/eo.gmo,  10, 80, 79, 0, 0, 0, 0, 10, 80 

+ po/gl.po,  10, 80, 107, 0, 0, 0, 0, 10, 80 

+ po/mt.gmo,  8, 56, 50, 0, 0, 0, 0, 8, 56 

+ po/ro.po,  8, 56, 63, 1, 4, 1, 20, 10, 80 

+ po/pt_BR.gmo,  10, 80, 107, 0, 0, 0, 0, 10, 80 

+ po/sq.po,  1, 7, 8, 4, 21, 5, 52, 10, 80 

+ po/hu.po,  10, 80, 76, 0, 0, 0, 0, 10, 80 

+ po/az.gmo,  1, 7, 6, 0, 0, 0, 0, 1, 7 

+ po/vi.gmo,  10, 80, 100, 0, 0, 0, 0, 10, 80 

+ po/eu.gmo,  8, 56, 56, 0, 0, 0, 0, 8, 56 

+ po/hr.po,  10, 80, 68, 0, 0, 0, 0, 10, 80 

+ po/af.po,  1, 7, 8, 4, 21, 5, 52, 10, 80 

+ po/id.po,  10, 80, 71, 0, 0, 0, 0, 10, 80 

+ po/ast.gmo,  10, 80, 85, 0, 0, 0, 0, 10, 80 

+ po/uk.po,  10, 80, 74, 0, 0, 0, 0, 10, 80 

+ po/bg.po,  10, 80, 99, 0, 0, 0, 0, 10, 80 

+ po/ja.gmo,  10, 80, 18, 0, 0, 0, 0, 10, 80 

+ po/cs.gmo,  10, 80, 75, 0, 0, 0, 0, 10, 80 

+ po/nb.po,  10, 80, 72, 0, 0, 0, 0, 10, 80 

+ po/sl.gmo,  10, 80, 66, 0, 0, 0, 0, 10, 80 

+ po/da.po,  10, 80, 69, 0, 0, 0, 0, 10, 80 

+ po/fr.gmo,  10, 80, 89, 0, 0, 0, 0, 10, 80 

+ po/es.po,  10, 80, 105, 0, 0, 0, 0, 10, 80 

+ po/tr.po,  10, 80, 56, 0, 0, 0, 0, 10, 80 

+ po/lv.po,  10, 80, 59, 0, 0, 0, 0, 10, 80 

+ po/gst-plugins-ugly-1.0.pot,  0, 0, 0, 0, 0, 10, 80, 10, 80 

+ po/nl.gmo,  10, 80, 83, 0, 0, 0, 0, 10, 80 

+ po/fur.po,  10, 80, 87, 0, 0, 0, 0, 10, 80 

+ po/mt.po,  8, 56, 50, 1, 4, 1, 20, 10, 80 

+ po/uk.gmo,  10, 80, 74, 0, 0, 0, 0, 10, 80 

+ po/pl.gmo,  10, 80, 85, 0, 0, 0, 0, 10, 80 

+ po/ta.po,  10, 80, 56, 0, 0, 0, 0, 10, 80 

+ po/or.gmo,  1, 7, 6, 0, 0, 0, 0, 1, 7 

+ po/az.po,  1, 7, 6, 4, 21, 5, 52, 10, 80 

+ po/sv.po,  10, 80, 75, 0, 0, 0, 0, 10, 80 

+ po/af.gmo,  1, 7, 8, 0, 0, 0, 0, 1, 7 

+ po/ro.gmo,  8, 56, 63, 0, 0, 0, 0, 8, 56 

+ po/ca.po,  10, 80, 102, 0, 0, 0, 0, 10, 80 

+ po/ms.gmo,  8, 56, 51, 0, 0, 0, 0, 8, 56 

+ po/nl.po,  10, 80, 83, 0, 0, 0, 0, 10, 80 

+ po/sk.po,  10, 80, 73, 0, 0, 0, 0, 10, 80 

+ po/zh_CN.gmo,  10, 80, 32, 0, 0, 0, 0, 10, 80 

+ po/cs.po,  10, 80, 75, 0, 0, 0, 0, 10, 80 

+ po/sk.gmo,  10, 80, 73, 0, 0, 0, 0, 10, 80 

+ po/it.po,  10, 80, 90, 0, 0, 0, 0, 10, 80 

+ po/hr.gmo,  10, 80, 68, 0, 0, 0, 0, 10, 80 

+ po/fur.gmo,  10, 80, 87, 0, 0, 0, 0, 10, 80 

+ po/ta.gmo,  10, 80, 56, 0, 0, 0, 0, 10, 80 

+ po/sr.po,  10, 80, 80, 0, 0, 0, 0, 10, 80 

+ po/fi.gmo,  8, 56, 47, 0, 0, 0, 0, 8, 56 

+ po/hu.gmo,  10, 80, 76, 0, 0, 0, 0, 10, 80 

+ po/fi.po,  8, 56, 47, 1, 4, 1, 20, 10, 80 

+ po/es.gmo,  10, 80, 105, 0, 0, 0, 0, 10, 80 

+ po/vi.po,  10, 80, 100, 0, 0, 0, 0, 10, 80 

+ po/el.po,  10, 80, 107, 0, 0, 0, 0, 10, 80 

+ po/ast.po,  10, 80, 85, 0, 0, 0, 0, 10, 80 

+ po/pl.po,  10, 80, 85, 0, 0, 0, 0, 10, 80 

+ po/ru.po,  10, 80, 67, 0, 0, 0, 0, 10, 80 

+ po/zh_CN.po,  10, 80, 32, 0, 0, 0, 0, 10, 80 

+ po/id.gmo,  10, 80, 71, 0, 0, 0, 0, 10, 80 

+ po/de.po,  10, 80, 91, 0, 0, 0, 0, 10, 80 

+ po/lt.gmo,  5, 38, 30, 0, 0, 0, 0, 5, 38 

+ po/sq.gmo,  1, 7, 8, 0, 0, 0, 0, 1, 7 

+ po/ru.gmo,  10, 80, 67, 0, 0, 0, 0, 10, 80 

+ po/lv.gmo,  10, 80, 59, 0, 0, 0, 0, 10, 80 

+ po/da.gmo,  10, 80, 69, 0, 0, 0, 0, 10, 80 

+ po/gl.gmo,  10, 80, 107, 0, 0, 0, 0, 10, 80 

+ po/ms.po,  8, 56, 51, 1, 4, 1, 20, 10, 80 

+ po/en_GB.gmo,  1, 7, 7, 0, 0, 0, 0, 1, 7 

+ po/ca.gmo,  10, 80, 102, 0, 0, 0, 0, 10, 80 

+ po/it.gmo,  10, 80, 90, 0, 0, 0, 0, 10, 80 

+ po/sv.gmo,  10, 80, 75, 0, 0, 0, 0, 10, 80 

+ po/eu.po,  8, 56, 56, 1, 4, 1, 20, 10, 80 

+ po/tr.gmo,  10, 80, 56, 0, 0, 0, 0, 10, 80 

+ po/de.gmo,  10, 80, 91, 0, 0, 0, 0, 10, 80 

+ po/eo.po,  10, 80, 79, 0, 0, 0, 0, 10, 80 

+ po/ja.po,  10, 80, 18, 0, 0, 0, 0, 10, 80 

+ po/sr.gmo,  10, 80, 80, 0, 0, 0, 0, 10, 80 

+ po/fr.po,  10, 80, 89, 0, 0, 0, 0, 10, 80 

+ po/or.po,  1, 7, 6, 4, 21, 5, 52, 10, 80 

+ po/lt.po,  5, 38, 30, 3, 16, 2, 26, 10, 80 

+ po/nb.gmo,  10, 80, 72, 0, 0, 0, 0, 10, 80 

+ po/pt_BR.po,  10, 80, 107, 0, 0, 0, 0, 10, 80 

+ po/bg.gmo,  10, 80, 99, 0, 0, 0, 0, 10, 80 

+ po/en_GB.po,  1, 7, 7, 4, 21, 5, 52, 10, 80 

+ po/el.gmo,  10, 80, 107, 0, 0, 0, 0, 10, 80 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,49 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/cs.po,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/pt_BR.po,  22, 81, 99, 0, 0, 0, 0, 22, 81 

+ po/sl.po,  22, 81, 83, 0, 0, 0, 0, 22, 81 

+ po/es.po,  22, 81, 113, 0, 0, 0, 0, 22, 81 

+ po/sv.po,  22, 81, 79, 0, 0, 0, 0, 22, 81 

+ po/ca.po,  22, 81, 139, 0, 0, 0, 0, 22, 81 

+ po/el.po,  3, 8, 11, 0, 0, 0, 0, 3, 8 

+ po/ro.po,  3, 8, 9, 0, 0, 0, 0, 3, 8 

+ po/ca@valencia.po,  3, 8, 13, 0, 0, 0, 0, 3, 8 

+ po/nds.po,  3, 8, 7, 0, 0, 0, 0, 3, 8 

+ po/zh_HK.po,  21, 75, 28, 0, 0, 1, 6, 22, 81 

+ po/hr.po,  3, 8, 9, 0, 0, 0, 0, 3, 8 

+ po/uk.po,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/lt.po,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/oc.po,  3, 8, 11, 0, 0, 0, 0, 3, 8 

+ po/pl.po,  3, 8, 10, 0, 0, 0, 0, 3, 8 

+ po/sr.po,  3, 8, 10, 0, 0, 0, 0, 3, 8 

+ po/gl.po,  22, 81, 115, 0, 0, 0, 0, 22, 81 

+ po/lv.po,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/te.po,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/eu.po,  22, 81, 89, 0, 0, 0, 0, 22, 81 

+ po/bs.po,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/pa.po,  22, 81, 96, 0, 0, 0, 0, 22, 81 

+ po/th.po,  3, 8, 5, 0, 0, 0, 0, 3, 8 

+ po/en_GB.po,  22, 81, 81, 0, 0, 0, 0, 22, 81 

+ po/fr.po,  22, 81, 111, 0, 0, 0, 0, 22, 81 

+ po/hu.po,  22, 81, 77, 0, 0, 0, 0, 22, 81 

+ po/nl.po,  3, 8, 6, 0, 0, 0, 0, 3, 8 

+ po/pt.po,  3, 8, 11, 0, 0, 0, 0, 3, 8 

+ po/ru.po,  22, 81, 82, 0, 0, 0, 0, 22, 81 

+ po/gd.po,  3, 8, 12, 0, 0, 0, 0, 3, 8 

+ po/eo.po,  3, 8, 14, 0, 0, 0, 0, 3, 8 

+ po/guc.po,  3, 8, 10, 0, 0, 0, 0, 3, 8 

+ po/id.po,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/de.po,  22, 81, 83, 0, 0, 0, 0, 22, 81 

+ po/zh_CN.po,  22, 81, 30, 0, 0, 0, 0, 22, 81 

+ po/zh_TW.po,  21, 75, 28, 0, 0, 1, 6, 22, 81 

+ po/ja.po,  3, 8, 5, 0, 0, 0, 0, 3, 8 

+ po/fur.po,  3, 8, 13, 0, 0, 0, 0, 3, 8 

+ po/da.po,  22, 81, 89, 0, 0, 0, 0, 22, 81 

+ po/ko.po,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/sk.po,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/sr@latin.po,  3, 8, 10, 0, 0, 0, 0, 3, 8 

+ po/he.po,  3, 8, 9, 0, 0, 0, 0, 3, 8 

+ po/it.po,  22, 81, 92, 0, 0, 0, 0, 22, 81 

+ po/tr.po,  3, 8, 9, 0, 0, 0, 0, 3, 8 

+ po/tg.po,  3, 8, 10, 0, 0, 0, 0, 3, 8 

+ po/nb.po,  3, 8, 10, 0, 0, 0, 0, 3, 8 

@@ -0,0 +1,19 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/ChangeLog)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/README.translators)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/po2tbl.sed.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

@@ -0,0 +1,415 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po-properties/nso.gmo,  987, 5438, 7966, 0, 0, 0, 0, 987, 5438 

+ po-properties/wa.po,  459, 1797, 2311, 184, 817, 1076, 7228, 1719, 9842 

+ po-properties/en_CA.po,  1501, 8620, 8623, 165, 887, 53, 335, 1719, 9842 

+ po-properties/sr@ije.gmo,  987, 5438, 5051, 0, 0, 0, 0, 987, 5438 

+ po-properties/de.po,  1911, 10664, 9730, 0, 0, 0, 0, 1911, 10664 

+ po-properties/ar.po,  1577, 9006, 7417, 109, 617, 33, 219, 1719, 9842 

+ po-properties/ka.po,  1292, 7118, 4878, 255, 1448, 172, 1276, 1719, 9842 

+ po-properties/io.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po-properties/zh_HK.po,  1716, 9819, 2089, 0, 0, 0, 0, 1716, 9819 

+ po-properties/am.po,  91, 161, 170, 250, 902, 1378, 8779, 1719, 9842 

+ po-properties/rw.gmo,  84, 104, 104, 0, 0, 0, 0, 84, 104 

+ po-properties/uz@cyrillic.po,  384, 1279, 1012, 47, 210, 1288, 8353, 1719, 9842 

+ po-properties/bs.po,  987, 5438, 5106, 486, 2657, 246, 1747, 1719, 9842 

+ po-properties/lv.po,  1500, 7984, 6338, 58, 330, 161, 1528, 1719, 9842 

+ po-properties/nso.po,  987, 5438, 7966, 485, 2651, 247, 1753, 1719, 9842 

+ po-properties/eu.gmo,  1716, 9819, 7953, 0, 0, 0, 0, 1716, 9819 

+ po-properties/dz.po,  1390, 7921, 3051, 244, 1359, 85, 562, 1719, 9842 

+ po-properties/pt.gmo,  1716, 9819, 11377, 0, 0, 0, 0, 1716, 9819 

+ po-properties/th.po,  154, 879, 249, 41, 226, 1524, 8737, 1719, 9842 

+ po-properties/nds.gmo,  560, 1536, 1242, 0, 0, 0, 0, 560, 1536 

+ po-properties/uk.gmo,  1718, 9837, 8324, 0, 0, 0, 0, 1718, 9837 

+ po-properties/ml.gmo,  1680, 9570, 6829, 0, 0, 0, 0, 1680, 9570 

+ po-properties/lv.gmo,  1500, 7984, 6338, 0, 0, 0, 0, 1500, 7984 

+ po-properties/cs.gmo,  1716, 9819, 8344, 0, 0, 0, 0, 1716, 9819 

+ po-properties/pt.po,  1716, 9819, 11377, 0, 0, 0, 0, 1716, 9819 

+ po-properties/yi.po,  758, 4040, 4006, 608, 3317, 353, 2485, 1719, 9842 

+ po-properties/br.po,  164, 281, 323, 17, 50, 1538, 9511, 1719, 9842 

+ po-properties/az.gmo,  987, 5438, 4244, 0, 0, 0, 0, 987, 5438 

+ po-properties/te.po,  1680, 9570, 6784, 31, 202, 8, 70, 1719, 9842 

+ po-properties/nn.po,  903, 4951, 4476, 514, 2808, 302, 2083, 1719, 9842 

+ po-properties/oc.gmo,  2110, 11611, 14089, 0, 0, 0, 0, 2110, 11611 

+ po-properties/br.gmo,  164, 281, 323, 0, 0, 0, 0, 164, 281 

+ po-properties/az_IR.gmo,  1, 2, 2, 0, 0, 0, 0, 1, 2 

+ po-properties/bn.po,  1718, 9837, 9350, 1, 5, 0, 0, 1719, 9842 

+ po-properties/ca@valencia.po,  1718, 9837, 11460, 1, 5, 0, 0, 1719, 9842 

+ po-properties/xh.po,  1102, 6156, 5347, 425, 2339, 192, 1347, 1719, 9842 

+ po-properties/ne.gmo,  1121, 6287, 5162, 0, 0, 0, 0, 1121, 6287 

+ po-properties/tr.po,  1639, 9337, 7175, 60, 354, 20, 151, 1719, 9842 

+ po-properties/hy.gmo,  16, 38, 27, 0, 0, 0, 0, 16, 38 

+ po-properties/hu.po,  1729, 9908, 8112, 0, 0, 0, 0, 1729, 9908 

+ po-properties/sr.gmo,  1718, 9837, 9052, 0, 0, 0, 0, 1718, 9837 

+ po-properties/el.gmo,  1718, 9837, 10251, 0, 0, 0, 0, 1718, 9837 

+ po-properties/pl.gmo,  1729, 9908, 8858, 0, 0, 0, 0, 1729, 9908 

+ po-properties/nn.gmo,  903, 4951, 4476, 0, 0, 0, 0, 903, 4951 

+ po-properties/gl.gmo,  1716, 9819, 11730, 0, 0, 0, 0, 1716, 9819 

+ po-properties/zh_TW.gmo,  1716, 9819, 2089, 0, 0, 0, 0, 1716, 9819 

+ po-properties/nl.po,  1641, 9344, 8717, 58, 347, 20, 151, 1719, 9842 

+ po-properties/eu.po,  1716, 9819, 7953, 0, 0, 0, 0, 1716, 9819 

+ po-properties/kk.po,  7, 7, 7, 164, 368, 1548, 9467, 1719, 9842 

+ po-properties/pl.po,  1729, 9908, 8858, 0, 0, 0, 0, 1729, 9908 

+ po-properties/ast.gmo,  1690, 9636, 10837, 0, 0, 0, 0, 1690, 9636 

+ po-properties/ta.po,  1680, 9570, 7251, 31, 202, 8, 70, 1719, 9842 

+ po-properties/hr.gmo,  1138, 6381, 5836, 0, 0, 0, 0, 1138, 6381 

+ po-properties/zh_CN.po,  1716, 9819, 2017, 0, 0, 0, 0, 1716, 9819 

+ po-properties/mr.po,  1718, 9837, 7966, 1, 5, 0, 0, 1719, 9842 

+ po-properties/mai.po,  1680, 9570, 9441, 31, 202, 8, 70, 1719, 9842 

+ po-properties/be.po,  758, 4040, 3415, 608, 3317, 353, 2485, 1719, 9842 

+ po-properties/nb.gmo,  1479, 7808, 6611, 0, 0, 0, 0, 1479, 7808 

+ po-properties/bg.po,  1718, 9837, 10226, 1, 5, 0, 0, 1719, 9842 

+ po-properties/te.gmo,  1680, 9570, 6784, 0, 0, 0, 0, 1680, 9570 

+ po-properties/gu.po,  1680, 9570, 9098, 31, 202, 8, 70, 1719, 9842 

+ po-properties/ku.po,  69, 108, 110, 86, 280, 1564, 9454, 1719, 9842 

+ po-properties/eo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po-properties/yi.gmo,  758, 4040, 4006, 0, 0, 0, 0, 758, 4040 

+ po-properties/en_GB.po,  1721, 9860, 9849, 0, 0, 0, 0, 1721, 9860 

+ po-properties/az_IR.po,  1, 2, 2, 2, 4, 1716, 9836, 1719, 9842 

+ po-properties/li.po,  758, 4040, 3744, 608, 3317, 353, 2485, 1719, 9842 

+ po-properties/af.po,  980, 5396, 5019, 489, 2677, 250, 1769, 1719, 9842 

+ po-properties/bg.gmo,  1718, 9837, 10226, 0, 0, 0, 0, 1718, 9837 

+ po-properties/ku.gmo,  69, 108, 110, 0, 0, 0, 0, 69, 108 

+ po-properties/si.po,  332, 1377, 1206, 103, 457, 1284, 8008, 1719, 9842 

+ po-properties/is.po,  69, 376, 332, 249, 1210, 1401, 8256, 1719, 9842 

+ po-properties/ca@valencia.gmo,  1718, 9837, 11460, 0, 0, 0, 0, 1718, 9837 

+ po-properties/it.po,  1723, 9871, 10787, 0, 0, 0, 0, 1723, 9871 

+ po-properties/ang.po,  33, 91, 82, 54, 225, 1632, 9526, 1719, 9842 

+ po-properties/ms.po,  925, 5021, 4230, 508, 2765, 286, 2056, 1719, 9842 

+ po-properties/hi.po,  1680, 9570, 10235, 31, 202, 8, 70, 1719, 9842 

+ po-properties/ro.po,  1723, 9871, 9712, 0, 0, 0, 0, 1723, 9871 

+ po-properties/ast.po,  1690, 9636, 10837, 23, 157, 6, 49, 1719, 9842 

+ po-properties/bs.gmo,  987, 5438, 5106, 0, 0, 0, 0, 987, 5438 

+ po-properties/id.po,  1729, 9908, 8933, 0, 0, 0, 0, 1729, 9908 

+ po-properties/zh_CN.gmo,  1716, 9819, 2017, 0, 0, 0, 0, 1716, 9819 

+ po-properties/lt.gmo,  1718, 9837, 7657, 0, 0, 0, 0, 1718, 9837 

+ po-properties/ta.gmo,  1680, 9570, 7251, 0, 0, 0, 0, 1680, 9570 

+ po-properties/ru.gmo,  1718, 9837, 8315, 0, 0, 0, 0, 1718, 9837 

+ po-properties/sl.po,  1716, 9819, 8802, 0, 0, 0, 0, 1716, 9819 

+ po-properties/gtk20-properties.pot,  0, 0, 0, 0, 0, 1729, 9908, 1729, 9908 

+ po-properties/et.po,  822, 4033, 2992, 99, 569, 794, 5215, 1715, 9817 

+ po-properties/my.po,  1651, 9398, 6432, 52, 316, 16, 128, 1719, 9842 

+ po-properties/he.po,  1716, 9819, 9819, 0, 0, 0, 0, 1716, 9819 

+ po-properties/si.gmo,  332, 1377, 1206, 0, 0, 0, 0, 332, 1377 

+ po-properties/he.gmo,  1716, 9819, 9819, 0, 0, 0, 0, 1716, 9819 

+ po-properties/mk.gmo,  1489, 8558, 8759, 0, 0, 0, 0, 1489, 8558 

+ po-properties/mn.gmo,  987, 5438, 4334, 0, 0, 0, 0, 987, 5438 

+ po-properties/mi.po,  1, 1, 1, 113, 219, 1605, 9622, 1719, 9842 

+ po-properties/or.gmo,  1680, 9570, 8501, 0, 0, 0, 0, 1680, 9570 

+ po-properties/dz.gmo,  1390, 7921, 3051, 0, 0, 0, 0, 1390, 7921 

+ po-properties/en_GB.gmo,  1721, 9860, 9849, 0, 0, 0, 0, 1721, 9860 

+ po-properties/bn.gmo,  1718, 9837, 9350, 0, 0, 0, 0, 1718, 9837 

+ po-properties/sq.gmo,  1577, 9006, 9943, 0, 0, 0, 0, 1577, 9006 

+ po-properties/hr.po,  1138, 6381, 5836, 395, 2095, 186, 1366, 1719, 9842 

+ po-properties/vi.po,  1718, 9837, 13588, 1, 5, 0, 0, 1719, 9842 

+ po-properties/sv.po,  1716, 9819, 8097, 0, 0, 0, 0, 1716, 9819 

+ po-properties/uk.po,  1718, 9837, 8324, 1, 5, 0, 0, 1719, 9842 

+ po-properties/cs.po,  1716, 9819, 8344, 0, 0, 0, 0, 1716, 9819 

+ po-properties/am.gmo,  91, 161, 170, 0, 0, 0, 0, 91, 161 

+ po-properties/uz.po,  384, 1279, 1012, 47, 210, 1288, 8353, 1719, 9842 

+ po-properties/en_CA.gmo,  1501, 8620, 8623, 0, 0, 0, 0, 1501, 8620 

+ po-properties/kk.gmo,  7, 7, 7, 0, 0, 0, 0, 7, 7 

+ po-properties/sr.po,  1718, 9837, 9052, 1, 5, 0, 0, 1719, 9842 

+ po-properties/mr.gmo,  1718, 9837, 7966, 0, 0, 0, 0, 1718, 9837 

+ po-properties/ug.po,  12, 15, 18, 253, 616, 1451, 9188, 1716, 9819 

+ po-properties/ml.po,  1680, 9570, 6829, 31, 202, 8, 70, 1719, 9842 

+ po-properties/fa.gmo,  308, 1016, 970, 0, 0, 0, 0, 308, 1016 

+ po-properties/nds.po,  560, 1536, 1242, 1153, 8239, 6, 67, 1719, 9842 

+ po-properties/kn.gmo,  1682, 9574, 7031, 0, 0, 0, 0, 1682, 9574 

+ po-properties/vi.gmo,  1718, 9837, 13588, 0, 0, 0, 0, 1718, 9837 

+ po-properties/ko.gmo,  1716, 9819, 7563, 0, 0, 0, 0, 1716, 9819 

+ po-properties/gl.po,  1716, 9819, 11730, 0, 0, 0, 0, 1716, 9819 

+ po-properties/ja.po,  1713, 9814, 2317, 0, 0, 3, 5, 1716, 9819 

+ po-properties/cy.po,  1507, 8597, 8895, 163, 923, 49, 322, 1719, 9842 

+ po-properties/ps.po,  509, 1582, 1638, 33, 172, 1177, 8088, 1719, 9842 

+ po-properties/xh.gmo,  1102, 6156, 5347, 0, 0, 0, 0, 1102, 6156 

+ po-properties/mk.po,  1489, 8558, 8759, 176, 945, 54, 339, 1719, 9842 

+ po-properties/ia.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po-properties/ps.gmo,  509, 1582, 1638, 0, 0, 0, 0, 509, 1582 

+ po-properties/tt.gmo,  232, 533, 475, 0, 0, 0, 0, 232, 533 

+ po-properties/ja.gmo,  1713, 9814, 2317, 0, 0, 0, 0, 1713, 9814 

+ po-properties/ur.gmo,  4, 4, 4, 0, 0, 0, 0, 4, 4 

+ po-properties/io.po,  0, 0, 0, 0, 0, 1719, 9842, 1719, 9842 

+ po-properties/af.gmo,  980, 5396, 5019, 0, 0, 0, 0, 980, 5396 

+ po-properties/id.gmo,  1729, 9908, 8933, 0, 0, 0, 0, 1729, 9908 

+ po-properties/uz.gmo,  384, 1279, 1012, 0, 0, 0, 0, 384, 1279 

+ po-properties/pt_BR.po,  1716, 9819, 11008, 0, 0, 0, 0, 1716, 9819 

+ po-properties/mi.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po-properties/or.po,  1680, 9570, 8501, 31, 202, 8, 70, 1719, 9842 

+ po-properties/ia.po,  1, 1, 1, 199, 429, 1519, 9412, 1719, 9842 

+ po-properties/tk.po,  5, 6, 6, 204, 602, 1510, 9234, 1719, 9842 

+ po-properties/el.po,  1718, 9837, 10251, 1, 5, 0, 0, 1719, 9842 

+ po-properties/fa.po,  308, 1016, 970, 343, 1492, 1068, 7334, 1719, 9842 

+ po-properties/sr@ije.po,  987, 5438, 5051, 485, 2655, 247, 1749, 1719, 9842 

+ po-properties/mn.po,  987, 5438, 4334, 486, 2660, 246, 1744, 1719, 9842 

+ po-properties/oc.po,  2110, 11611, 14089, 0, 0, 0, 0, 2110, 11611 

+ po-properties/be@latin.gmo,  1490, 8572, 7361, 0, 0, 0, 0, 1490, 8572 

+ po-properties/hi.gmo,  1680, 9570, 10235, 0, 0, 0, 0, 1680, 9570 

+ po-properties/be.gmo,  758, 4040, 3415, 0, 0, 0, 0, 758, 4040 

+ po-properties/sq.po,  1577, 9006, 9943, 109, 617, 33, 219, 1719, 9842 

+ po-properties/nb.po,  1479, 7808, 6611, 130, 1066, 107, 945, 1716, 9819 

+ po-properties/sk.po,  1559, 8863, 7526, 122, 720, 38, 259, 1719, 9842 

+ po-properties/sv.gmo,  1716, 9819, 8097, 0, 0, 0, 0, 1716, 9819 

+ po-properties/bn_IN.gmo,  1718, 9837, 9344, 0, 0, 0, 0, 1718, 9837 

+ po-properties/pt_BR.gmo,  1716, 9819, 11008, 0, 0, 0, 0, 1716, 9819 

+ po-properties/li.gmo,  758, 4040, 3744, 0, 0, 0, 0, 758, 4040 

+ po-properties/wa.gmo,  459, 1797, 2311, 0, 0, 0, 0, 459, 1797 

+ po-properties/tk.gmo,  5, 6, 6, 0, 0, 0, 0, 5, 6 

+ po-properties/da.po,  1716, 9819, 8130, 0, 0, 0, 0, 1716, 9819 

+ po-properties/de.gmo,  1911, 10664, 9730, 0, 0, 0, 0, 1911, 10664 

+ po-properties/lt.po,  1718, 9837, 7657, 1, 5, 0, 0, 1719, 9842 

+ po-properties/ca.po,  1718, 9837, 11460, 1, 5, 0, 0, 1719, 9842 

+ po-properties/fr.gmo,  1716, 9819, 11527, 0, 0, 0, 0, 1716, 9819 

+ po-properties/es.gmo,  1716, 9819, 11866, 0, 0, 0, 0, 1716, 9819 

+ po-properties/ug.gmo,  12, 15, 18, 0, 0, 0, 0, 12, 15 

+ po-properties/tr.gmo,  1639, 9337, 7175, 0, 0, 0, 0, 1639, 9337 

+ po-properties/sr@latin.po,  1718, 9837, 9052, 1, 5, 0, 0, 1719, 9842 

+ po-properties/uz@cyrillic.gmo,  384, 1279, 1012, 0, 0, 0, 0, 384, 1279 

+ po-properties/cy.gmo,  1507, 8597, 8895, 0, 0, 0, 0, 1507, 8597 

+ po-properties/ang.gmo,  33, 91, 82, 0, 0, 0, 0, 33, 91 

+ po-properties/crh.gmo,  1641, 9344, 7537, 0, 0, 0, 0, 1641, 9344 

+ po-properties/it.gmo,  1723, 9871, 10787, 0, 0, 0, 0, 1723, 9871 

+ po-properties/pa.po,  1718, 9837, 9672, 1, 5, 0, 0, 1719, 9842 

+ po-properties/zh_HK.gmo,  1716, 9819, 2089, 0, 0, 0, 0, 1716, 9819 

+ po-properties/bn_IN.po,  1718, 9837, 9344, 1, 5, 0, 0, 1719, 9842 

+ po-properties/sk.gmo,  1559, 8863, 7526, 0, 0, 0, 0, 1559, 8863 

+ po-properties/crh.po,  1641, 9344, 7537, 58, 347, 20, 151, 1719, 9842 

+ po-properties/gu.gmo,  1680, 9570, 9098, 0, 0, 0, 0, 1680, 9570 

+ po-properties/hy.po,  16, 38, 27, 162, 489, 1541, 9315, 1719, 9842 

+ po-properties/ga.gmo,  158, 286, 296, 0, 0, 0, 0, 158, 286 

+ po-properties/sr@latin.gmo,  1718, 9837, 9052, 0, 0, 0, 0, 1718, 9837 

+ po-properties/as.gmo,  1680, 9570, 8145, 0, 0, 0, 0, 1680, 9570 

+ po-properties/ne.po,  1121, 6287, 5162, 411, 2240, 187, 1315, 1719, 9842 

+ po-properties/ro.gmo,  1723, 9871, 9712, 0, 0, 0, 0, 1723, 9871 

+ po-properties/ca.gmo,  1718, 9837, 11460, 0, 0, 0, 0, 1718, 9837 

+ po-properties/pa.gmo,  1718, 9837, 9672, 0, 0, 0, 0, 1718, 9837 

+ po-properties/zh_TW.po,  1716, 9819, 2089, 0, 0, 0, 0, 1716, 9819 

+ po-properties/tt.po,  232, 533, 475, 188, 679, 1299, 8630, 1719, 9842 

+ po-properties/mai.gmo,  1680, 9570, 9441, 0, 0, 0, 0, 1680, 9570 

+ po-properties/ka.gmo,  1292, 7118, 4878, 0, 0, 0, 0, 1292, 7118 

+ po-properties/es.po,  1716, 9819, 11866, 0, 0, 0, 0, 1716, 9819 

+ po-properties/eo.po,  0, 0, 0, 0, 0, 1719, 9842, 1719, 9842 

+ po-properties/ms.gmo,  925, 5021, 4230, 0, 0, 0, 0, 925, 5021 

+ po-properties/hu.gmo,  1729, 9908, 8112, 0, 0, 0, 0, 1729, 9908 

+ po-properties/fi.gmo,  1718, 9837, 6213, 0, 0, 0, 0, 1718, 9837 

+ po-properties/my.gmo,  1651, 9398, 6432, 0, 0, 0, 0, 1651, 9398 

+ po-properties/kn.po,  1682, 9574, 7031, 29, 198, 8, 70, 1719, 9842 

+ po-properties/sl.gmo,  1716, 9819, 8802, 0, 0, 0, 0, 1716, 9819 

+ po-properties/fr.po,  1716, 9819, 11527, 0, 0, 0, 0, 1716, 9819 

+ po-properties/ur.po,  4, 4, 4, 42, 69, 1673, 9769, 1719, 9842 

+ po-properties/da.gmo,  1716, 9819, 8130, 0, 0, 0, 0, 1716, 9819 

+ po-properties/be@latin.po,  1490, 8572, 7361, 175, 931, 54, 339, 1719, 9842 

+ po-properties/et.gmo,  822, 4033, 2992, 0, 0, 0, 0, 822, 4033 

+ po-properties/th.gmo,  154, 879, 249, 0, 0, 0, 0, 154, 879 

+ po-properties/az.po,  987, 5438, 4244, 485, 2655, 247, 1749, 1719, 9842 

+ po-properties/ar.gmo,  1577, 9006, 7417, 0, 0, 0, 0, 1577, 9006 

+ po-properties/ga.po,  158, 286, 296, 83, 244, 1478, 9312, 1719, 9842 

+ po-properties/ko.po,  1716, 9819, 7563, 0, 0, 0, 0, 1716, 9819 

+ po-properties/fi.po,  1718, 9837, 6213, 1, 5, 0, 0, 1719, 9842 

+ po-properties/ru.po,  1718, 9837, 8315, 1, 5, 0, 0, 1719, 9842 

+ po-properties/nl.gmo,  1641, 9344, 8717, 0, 0, 0, 0, 1641, 9344 

+ po-properties/as.po,  1680, 9570, 8145, 31, 202, 8, 70, 1719, 9842 

+ po-properties/is.gmo,  69, 376, 332, 0, 0, 0, 0, 69, 376 

+ po-properties/rw.po,  84, 104, 104, 1156, 7791, 479, 1947, 1719, 9842 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/nso.gmo,  258, 1448, 2259, 0, 0, 0, 0, 258, 1448 

+ po/wa.po,  438, 1881, 2694, 263, 570, 364, 1411, 1065, 3862 

+ po/en_CA.po,  586, 2734, 2735, 249, 477, 230, 651, 1065, 3862 

+ po/sr@ije.gmo,  258, 1448, 1397, 0, 0, 0, 0, 258, 1448 

+ po/de.po,  868, 2604, 2541, 0, 0, 0, 0, 868, 2604 

+ po/ar.po,  866, 2562, 2420, 0, 0, 0, 0, 866, 2562 

+ po/ka.po,  650, 3011, 2416, 222, 395, 193, 456, 1065, 3862 

+ po/io.gmo,  348, 1168, 1106, 0, 0, 0, 0, 348, 1168 

+ po/zh_HK.po,  866, 2562, 1183, 0, 0, 0, 0, 866, 2562 

+ po/am.po,  46, 64, 79, 249, 442, 770, 3356, 1065, 3862 

+ po/rw.gmo,  28, 32, 36, 0, 0, 0, 0, 28, 32 

+ po/uz@cyrillic.po,  621, 1366, 1292, 64, 128, 380, 2368, 1065, 3862 

+ po/bs.po,  257, 1447, 1390, 324, 851, 484, 1564, 1065, 3862 

+ po/lv.po,  1065, 3862, 3364, 0, 0, 0, 0, 1065, 3862 

+ po/nso.po,  258, 1448, 2259, 322, 849, 485, 1565, 1065, 3862 

+ po/eu.gmo,  540, 2125, 1874, 0, 0, 0, 0, 540, 2125 

+ po/dz.po,  524, 2500, 1298, 404, 759, 137, 603, 1065, 3862 

+ po/pt.gmo,  866, 2562, 2800, 0, 0, 0, 0, 866, 2562 

+ po/th.po,  870, 2610, 1383, 0, 0, 0, 0, 870, 2610 

+ po/nds.gmo,  678, 1422, 1536, 0, 0, 0, 0, 678, 1422 

+ po/uk.gmo,  1065, 3862, 3708, 0, 0, 0, 0, 1065, 3862 

+ po/ml.gmo,  1037, 3689, 3259, 0, 0, 0, 0, 1037, 3689 

+ po/lv.gmo,  1065, 3862, 3364, 0, 0, 0, 0, 1065, 3862 

+ po/cs.gmo,  867, 2581, 2414, 0, 0, 0, 0, 867, 2581 

+ po/pt.po,  866, 2562, 2800, 0, 0, 0, 0, 866, 2562 

+ po/yi.po,  205, 1183, 1189, 343, 960, 517, 1719, 1065, 3862 

+ po/br.po,  530, 1052, 1227, 12, 47, 523, 2763, 1065, 3862 

+ po/az.gmo,  257, 1447, 1258, 0, 0, 0, 0, 257, 1447 

+ po/te.po,  1037, 3689, 3156, 18, 93, 10, 80, 1065, 3862 

+ po/nn.po,  972, 3463, 3395, 44, 134, 49, 265, 1065, 3862 

+ po/oc.gmo,  1245, 3525, 4086, 0, 0, 0, 0, 1245, 3525 

+ po/br.gmo,  530, 1052, 1227, 0, 0, 0, 0, 530, 1052 

+ po/az_IR.gmo,  3, 5, 6, 0, 0, 0, 0, 3, 5 

+ po/bn.po,  1065, 3862, 4093, 0, 0, 0, 0, 1065, 3862 

+ po/ca@valencia.po,  1065, 3862, 4945, 0, 0, 0, 0, 1065, 3862 

+ po/xh.po,  325, 1728, 1528, 299, 728, 441, 1406, 1065, 3862 

+ po/ne.gmo,  343, 1874, 1801, 0, 0, 0, 0, 343, 1874 

+ po/tr.po,  988, 3511, 3047, 40, 121, 37, 230, 1065, 3862 

+ po/hy.gmo,  299, 1638, 1500, 0, 0, 0, 0, 299, 1638 

+ po/hu.po,  870, 2610, 2408, 0, 0, 0, 0, 870, 2610 

+ po/el.gmo,  866, 2562, 2736, 0, 0, 0, 0, 866, 2562 

+ po/pl.gmo,  862, 2584, 2598, 0, 0, 0, 0, 862, 2584 

+ po/gl.gmo,  866, 2562, 3000, 0, 0, 0, 0, 866, 2562 

+ po/zh_TW.gmo,  866, 2562, 1183, 0, 0, 0, 0, 866, 2562 

+ po/nl.po,  867, 2581, 2594, 0, 0, 0, 0, 867, 2581 

+ po/eu.po,  540, 2125, 1874, 0, 0, 0, 0, 540, 2125 

+ po/kk.po,  866, 2562, 2305, 0, 0, 0, 0, 866, 2562 

+ po/pl.po,  862, 2584, 2598, 0, 0, 0, 0, 862, 2584 

+ po/ta.po,  1037, 3689, 3321, 18, 93, 10, 80, 1065, 3862 

+ po/hr.gmo,  348, 1906, 1845, 0, 0, 0, 0, 348, 1906 

+ po/zh_CN.po,  862, 2553, 1129, 3, 20, 3, 31, 868, 2604 

+ po/mr.po,  1063, 3840, 3970, 2, 22, 0, 0, 1065, 3862 

+ po/mai.po,  1037, 3689, 4108, 18, 93, 10, 80, 1065, 3862 

+ po/be.po,  855, 2469, 2285, 0, 0, 13, 135, 868, 2604 

+ po/nb.gmo,  868, 2604, 2585, 0, 0, 0, 0, 868, 2604 

+ po/bg.po,  1065, 3862, 4582, 0, 0, 0, 0, 1065, 3862 

+ po/te.gmo,  1037, 3689, 3156, 0, 0, 0, 0, 1037, 3689 

+ po/gu.po,  844, 2436, 2775, 19, 106, 3, 20, 866, 2562 

+ po/ku.po,  621, 2761, 3002, 219, 443, 225, 658, 1065, 3862 

+ po/eo.gmo,  503, 2364, 2212, 0, 0, 0, 0, 503, 2364 

+ po/yi.gmo,  205, 1183, 1189, 0, 0, 0, 0, 205, 1183 

+ po/en_GB.po,  867, 2581, 2582, 0, 0, 0, 0, 867, 2581 

+ po/gtk20.pot,  0, 0, 0, 0, 0, 862, 2584, 862, 2584 

+ po/az_IR.po,  3, 5, 6, 10, 10, 1052, 3847, 1065, 3862 

+ po/li.po,  205, 1183, 1145, 343, 960, 517, 1719, 1065, 3862 

+ po/af.po,  927, 3241, 3225, 24, 61, 114, 560, 1065, 3862 

+ po/bg.gmo,  1065, 3862, 4582, 0, 0, 0, 0, 1065, 3862 

+ po/ku.gmo,  621, 2761, 3002, 0, 0, 0, 0, 621, 2761 

+ po/si.po,  482, 2073, 2186, 268, 561, 315, 1228, 1065, 3862 

+ po/is.po,  215, 1079, 1062, 318, 849, 532, 1934, 1065, 3862 

+ po/ca@valencia.gmo,  1065, 3862, 4945, 0, 0, 0, 0, 1065, 3862 

+ po/it.po,  867, 2581, 2742, 0, 0, 0, 0, 867, 2581 

+ po/ang.po,  78, 312, 272, 171, 421, 816, 3129, 1065, 3862 

+ po/ms.po,  240, 1320, 1237, 323, 844, 502, 1698, 1065, 3862 

+ po/hi.po,  1037, 3689, 4363, 18, 93, 10, 80, 1065, 3862 

+ po/ro.po,  868, 2604, 2807, 0, 0, 0, 0, 868, 2604 

+ po/ast.po,  1053, 3792, 4231, 9, 49, 3, 21, 1065, 3862 

+ po/bs.gmo,  257, 1447, 1390, 0, 0, 0, 0, 257, 1447 

+ po/id.po,  862, 2584, 2525, 0, 0, 0, 0, 862, 2584 

+ po/zh_CN.gmo,  862, 2553, 1129, 0, 0, 0, 0, 862, 2553 

+ po/lt.gmo,  1065, 3862, 3397, 0, 0, 0, 0, 1065, 3862 

+ po/ta.gmo,  1037, 3689, 3321, 0, 0, 0, 0, 1037, 3689 

+ po/ru.gmo,  1063, 3840, 3771, 0, 0, 0, 0, 1063, 3840 

+ po/sl.po,  866, 2562, 2540, 0, 0, 0, 0, 866, 2562 

+ po/et.po,  866, 2562, 2217, 0, 0, 0, 0, 866, 2562 

+ po/my.po,  1019, 3612, 2931, 25, 127, 21, 123, 1065, 3862 

+ po/he.po,  870, 2610, 2495, 0, 0, 0, 0, 870, 2610 

+ po/si.gmo,  482, 2073, 2186, 0, 0, 0, 0, 482, 2073 

+ po/he.gmo,  870, 2610, 2495, 0, 0, 0, 0, 870, 2610 

+ po/mk.gmo,  559, 2639, 2994, 0, 0, 0, 0, 559, 2639 

+ po/mn.gmo,  255, 1429, 1314, 0, 0, 0, 0, 255, 1429 

+ po/mi.po,  204, 1018, 1135, 310, 826, 551, 2018, 1065, 3862 

+ po/or.gmo,  1044, 3721, 3892, 0, 0, 0, 0, 1044, 3721 

+ po/dz.gmo,  524, 2500, 1298, 0, 0, 0, 0, 524, 2500 

+ po/en_GB.gmo,  867, 2581, 2582, 0, 0, 0, 0, 867, 2581 

+ po/bn.gmo,  1065, 3862, 4093, 0, 0, 0, 0, 1065, 3862 

+ po/sq.gmo,  987, 3503, 4104, 0, 0, 0, 0, 987, 3503 

+ po/hr.po,  348, 1906, 1845, 276, 617, 441, 1339, 1065, 3862 

+ po/vi.po,  1063, 3840, 5204, 2, 22, 0, 0, 1065, 3862 

+ po/sv.po,  866, 2562, 2479, 0, 0, 0, 0, 866, 2562 

+ po/uk.po,  1065, 3862, 3708, 0, 0, 0, 0, 1065, 3862 

+ po/cs.po,  867, 2581, 2414, 0, 0, 0, 0, 867, 2581 

+ po/am.gmo,  46, 64, 79, 0, 0, 0, 0, 46, 64 

+ po/uz.po,  621, 1366, 1292, 64, 128, 380, 2368, 1065, 3862 

+ po/en_CA.gmo,  586, 2734, 2735, 0, 0, 0, 0, 586, 2734 

+ po/kk.gmo,  866, 2562, 2305, 0, 0, 0, 0, 866, 2562 

+ po/sr.po,  1065, 3862, 3844, 0, 0, 0, 0, 1065, 3862 

+ po/mr.gmo,  1063, 3840, 3970, 0, 0, 0, 0, 1063, 3840 

+ po/ug.po,  866, 2562, 2312, 0, 0, 0, 0, 866, 2562 

+ po/ml.po,  1037, 3689, 3259, 18, 93, 10, 80, 1065, 3862 

+ po/nds.po,  678, 1422, 1536, 0, 0, 387, 2440, 1065, 3862 

+ po/kn.gmo,  1047, 3748, 3374, 0, 0, 0, 0, 1047, 3748 

+ po/vi.gmo,  1063, 3840, 5204, 0, 0, 0, 0, 1063, 3840 

+ po/ko.gmo,  866, 2562, 2312, 0, 0, 0, 0, 866, 2562 

+ po/gl.po,  866, 2562, 3000, 0, 0, 0, 0, 866, 2562 

+ po/ja.po,  861, 2550, 1329, 5, 29, 4, 31, 870, 2610 

+ po/cy.po,  901, 3190, 3511, 75, 201, 89, 471, 1065, 3862 

+ po/ps.po,  413, 859, 939, 29, 69, 623, 2934, 1065, 3862 

+ po/xh.gmo,  325, 1728, 1528, 0, 0, 0, 0, 325, 1728 

+ po/mk.po,  559, 2639, 2994, 272, 560, 234, 663, 1065, 3862 

+ po/ia.gmo,  868, 2604, 2983, 0, 0, 0, 0, 868, 2604 

+ po/tt.gmo,  179, 608, 466, 0, 0, 0, 0, 179, 608 

+ po/ja.gmo,  861, 2550, 1329, 0, 0, 0, 0, 861, 2550 

+ po/ur.gmo,  12, 12, 14, 0, 0, 0, 0, 12, 12 

+ po/io.po,  348, 1168, 1106, 247, 467, 470, 2227, 1065, 3862 

+ po/af.gmo,  927, 3241, 3225, 0, 0, 0, 0, 927, 3241 

+ po/id.gmo,  862, 2584, 2525, 0, 0, 0, 0, 862, 2584 

+ po/uz.gmo,  621, 1366, 1292, 0, 0, 0, 0, 621, 1366 

+ po/pt_BR.po,  866, 2562, 2849, 0, 0, 0, 0, 866, 2562 

+ po/mi.gmo,  204, 1018, 1135, 0, 0, 0, 0, 204, 1018 

+ po/or.po,  1044, 3721, 3892, 10, 60, 11, 81, 1065, 3862 

+ po/ia.po,  868, 2604, 2983, 0, 0, 0, 0, 868, 2604 

+ po/tk.po,  77, 209, 210, 264, 543, 724, 3110, 1065, 3862 

+ po/el.po,  866, 2562, 2736, 0, 0, 0, 0, 866, 2562 

+ po/fa.po,  319, 1713, 1772, 301, 738, 445, 1411, 1065, 3862 

+ po/sr@ije.po,  258, 1448, 1397, 326, 853, 481, 1561, 1065, 3862 

+ po/mn.po,  255, 1429, 1314, 328, 869, 482, 1564, 1065, 3862 

+ po/oc.po,  1245, 3525, 4086, 0, 0, 4, 17, 1249, 3542 

+ po/be@latin.gmo,  986, 3491, 3344, 0, 0, 0, 0, 986, 3491 

+ po/hi.gmo,  1037, 3689, 4363, 0, 0, 0, 0, 1037, 3689 

+ po/be.gmo,  855, 2469, 2285, 0, 0, 0, 0, 855, 2469 

+ po/sq.po,  987, 3503, 4104, 39, 119, 39, 240, 1065, 3862 

+ po/nb.po,  868, 2604, 2585, 0, 0, 0, 0, 868, 2604 

+ po/sk.po,  1043, 3724, 3552, 14, 83, 8, 55, 1065, 3862 

+ po/sv.gmo,  866, 2562, 2479, 0, 0, 0, 0, 866, 2562 

+ po/bn_IN.gmo,  1063, 3840, 4178, 0, 0, 0, 0, 1063, 3840 

+ po/pt_BR.gmo,  866, 2562, 2849, 0, 0, 0, 0, 866, 2562 

+ po/li.gmo,  205, 1183, 1145, 0, 0, 0, 0, 205, 1183 

+ po/wa.gmo,  438, 1881, 2694, 0, 0, 0, 0, 438, 1881 

+ po/tk.gmo,  77, 209, 210, 0, 0, 0, 0, 77, 209 

+ po/da.po,  866, 2562, 2420, 0, 0, 0, 0, 866, 2562 

+ po/de.gmo,  868, 2604, 2541, 0, 0, 0, 0, 868, 2604 

+ po/lt.po,  1065, 3862, 3397, 0, 0, 0, 0, 1065, 3862 

+ po/ca.po,  1065, 3862, 4949, 0, 0, 0, 0, 1065, 3862 

+ po/fr.gmo,  866, 2562, 2975, 0, 0, 0, 0, 866, 2562 

+ po/ug.gmo,  866, 2562, 2312, 0, 0, 0, 0, 866, 2562 

+ po/tr.gmo,  988, 3511, 3047, 0, 0, 0, 0, 988, 3511 

+ po/sr@latin.po,  1065, 3862, 3844, 0, 0, 0, 0, 1065, 3862 

+ po/uz@cyrillic.gmo,  621, 1366, 1292, 0, 0, 0, 0, 621, 1366 

+ po/cy.gmo,  901, 3190, 3511, 0, 0, 0, 0, 901, 3190 

+ po/ang.gmo,  78, 312, 272, 0, 0, 0, 0, 78, 312 

+ po/crh.gmo,  981, 3469, 3047, 0, 0, 0, 0, 981, 3469 

+ po/it.gmo,  867, 2581, 2742, 0, 0, 0, 0, 867, 2581 

+ po/pa.po,  1065, 3862, 4366, 0, 0, 0, 0, 1065, 3862 

+ po/zh_HK.gmo,  866, 2562, 1183, 0, 0, 0, 0, 866, 2562 

+ po/bn_IN.po,  1063, 3840, 4178, 2, 22, 0, 0, 1065, 3862 

+ po/sk.gmo,  1043, 3724, 3552, 0, 0, 0, 0, 1043, 3724 

+ po/crh.po,  981, 3469, 3047, 39, 119, 45, 274, 1065, 3862 

+ po/gu.gmo,  844, 2436, 2775, 0, 0, 0, 0, 844, 2436 

+ po/hy.po,  299, 1638, 1500, 301, 790, 465, 1434, 1065, 3862 

+ po/ga.gmo,  990, 3234, 3657, 0, 0, 0, 0, 990, 3234 

+ po/as.gmo,  1039, 3711, 3899, 0, 0, 0, 0, 1039, 3711 

+ po/ne.po,  343, 1874, 1801, 258, 607, 464, 1381, 1065, 3862 

+ po/ro.gmo,  868, 2604, 2807, 0, 0, 0, 0, 868, 2604 

+ po/ca.gmo,  1065, 3862, 4949, 0, 0, 0, 0, 1065, 3862 

+ po/zh_TW.po,  866, 2562, 1183, 0, 0, 0, 0, 866, 2562 

+ po/tt.po,  179, 608, 466, 236, 477, 650, 2777, 1065, 3862 

+ po/mai.gmo,  1037, 3689, 4108, 0, 0, 0, 0, 1037, 3689 

+ po/ka.gmo,  650, 3011, 2416, 0, 0, 0, 0, 650, 3011 

+ po/es.po,  868, 2604, 3060, 0, 0, 0, 0, 868, 2604 

+ po/eo.po,  503, 2364, 2212, 228, 483, 334, 1015, 1065, 3862 

+ po/ms.gmo,  240, 1320, 1237, 0, 0, 0, 0, 240, 1320 

+ po/hu.gmo,  870, 2610, 2408, 0, 0, 0, 0, 870, 2610 

+ po/fi.gmo,  1065, 3862, 3092, 0, 0, 0, 0, 1065, 3862 

+ po/my.gmo,  1019, 3612, 2931, 0, 0, 0, 0, 1019, 3612 

+ po/kn.po,  1047, 3748, 3374, 10, 59, 8, 55, 1065, 3862 

+ po/sl.gmo,  866, 2562, 2540, 0, 0, 0, 0, 866, 2562 

+ po/fr.po,  866, 2562, 2975, 0, 0, 0, 0, 866, 2562 

+ po/ur.po,  12, 12, 14, 42, 44, 1011, 3806, 1065, 3862 

+ po/da.gmo,  866, 2562, 2420, 0, 0, 0, 0, 866, 2562 

+ po/be@latin.po,  986, 3491, 3344, 39, 119, 40, 252, 1065, 3862 

+ po/et.gmo,  866, 2562, 2217, 0, 0, 0, 0, 866, 2562 

+ po/th.gmo,  870, 2610, 1383, 0, 0, 0, 0, 870, 2610 

+ po/az.po,  257, 1447, 1258, 323, 848, 485, 1567, 1065, 3862 

+ po/ga.po,  990, 3234, 3657, 18, 93, 57, 535, 1065, 3862 

+ po/ko.po,  866, 2562, 2312, 0, 0, 0, 0, 866, 2562 

+ po/fi.po,  1065, 3862, 3092, 0, 0, 0, 0, 1065, 3862 

+ po/ru.po,  1063, 3840, 3771, 2, 22, 0, 0, 1065, 3862 

+ po/nl.gmo,  867, 2581, 2594, 0, 0, 0, 0, 867, 2581 

+ po/as.po,  1039, 3711, 3899, 18, 96, 8, 55, 1065, 3862 

+ po/is.gmo,  215, 1079, 1062, 0, 0, 0, 0, 215, 1079 

+ po/rw.po,  28, 32, 36, 545, 2359, 492, 1471, 1065, 3862 

@@ -0,0 +1,38 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-properties/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/README.translators)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/po2tbl.sed.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

@@ -0,0 +1,454 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po-properties/nso.gmo,  890, 4865, 7165, 0, 0, 0, 0, 890, 4865 

+ po-properties/wa.po,  427, 1664, 2145, 223, 988, 1016, 6769, 1666, 9421 

+ po-properties/en_CA.po,  1375, 7814, 7817, 218, 1161, 73, 446, 1666, 9421 

+ po-properties/sr@ije.gmo,  890, 4865, 4522, 0, 0, 0, 0, 890, 4865 

+ po-properties/de.po,  2244, 12264, 11348, 0, 0, 0, 0, 2244, 12264 

+ po-properties/ar.po,  1446, 8183, 6712, 167, 908, 53, 330, 1666, 9421 

+ po-properties/ka.po,  1183, 6448, 4441, 304, 1688, 179, 1285, 1666, 9421 

+ po-properties/io.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po-properties/zh_HK.po,  2041, 11341, 2453, 0, 0, 0, 0, 2041, 11341 

+ po-properties/am.po,  86, 152, 157, 270, 976, 1310, 8293, 1666, 9421 

+ po-properties/gtk30-properties.pot,  0, 0, 0, 0, 0, 2244, 12264, 2244, 12264 

+ po-properties/rw.gmo,  82, 101, 100, 0, 0, 0, 0, 82, 101 

+ po-properties/uz@cyrillic.po,  368, 1220, 962, 88, 399, 1210, 7802, 1666, 9421 

+ po-properties/bs.po,  1919, 10700, 9951, 0, 0, 0, 0, 1919, 10700 

+ po-properties/lv.po,  2244, 12264, 9794, 0, 0, 0, 0, 2244, 12264 

+ po-properties/nso.po,  890, 4865, 7165, 521, 2782, 255, 1774, 1666, 9421 

+ po-properties/eu.gmo,  2244, 12264, 9921, 0, 0, 0, 0, 2244, 12264 

+ po-properties/dz.po,  1270, 7185, 2790, 291, 1563, 105, 673, 1666, 9421 

+ po-properties/pt.gmo,  2223, 12154, 14095, 0, 0, 0, 0, 2223, 12154 

+ po-properties/th.po,  153, 862, 236, 72, 395, 1441, 8164, 1666, 9421 

+ po-properties/nds.gmo,  515, 1405, 1134, 0, 0, 0, 0, 515, 1405 

+ po-properties/uk.gmo,  1877, 10467, 8839, 0, 0, 0, 0, 1877, 10467 

+ po-properties/ml.gmo,  1540, 8700, 6215, 0, 0, 0, 0, 1540, 8700 

+ po-properties/lv.gmo,  2244, 12264, 9794, 0, 0, 0, 0, 2244, 12264 

+ po-properties/cs.gmo,  2244, 12264, 10617, 0, 0, 0, 0, 2244, 12264 

+ po-properties/pt.po,  2223, 12154, 14095, 0, 0, 0, 0, 2223, 12154 

+ po-properties/yi.po,  681, 3591, 3559, 632, 3374, 353, 2456, 1666, 9421 

+ po-properties/br.po,  157, 265, 306, 18, 41, 1491, 9115, 1666, 9421 

+ po-properties/az.gmo,  890, 4865, 3819, 0, 0, 0, 0, 890, 4865 

+ po-properties/fur.po,  669, 3021, 3483, 27, 102, 1531, 9053, 2227, 12176 

+ po-properties/te.po,  1911, 10656, 7759, 0, 0, 0, 0, 1911, 10656 

+ po-properties/nn.po,  831, 4515, 4075, 539, 2880, 296, 2026, 1666, 9421 

+ po-properties/oc.gmo,  2104, 11544, 13971, 0, 0, 0, 0, 2104, 11544 

+ po-properties/br.gmo,  157, 265, 306, 0, 0, 0, 0, 157, 265 

+ po-properties/az_IR.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po-properties/gd.gmo,  2227, 12176, 15288, 0, 0, 0, 0, 2227, 12176 

+ po-properties/bn.po,  1577, 8957, 8520, 69, 353, 20, 111, 1666, 9421 

+ po-properties/en@shaw.gmo,  1362, 7355, 7355, 0, 0, 0, 0, 1362, 7355 

+ po-properties/ca@valencia.po,  2225, 12163, 14425, 0, 0, 0, 0, 2225, 12163 

+ po-properties/xh.po,  1002, 5559, 4834, 463, 2493, 201, 1369, 1666, 9421 

+ po-properties/ne.gmo,  1085, 5689, 4718, 0, 0, 0, 0, 1085, 5689 

+ po-properties/tr.po,  2244, 12264, 9734, 0, 0, 0, 0, 2244, 12264 

+ po-properties/hy.gmo,  1627, 9220, 7803, 0, 0, 0, 0, 1627, 9220 

+ po-properties/hu.po,  2244, 12264, 9994, 0, 0, 0, 0, 2244, 12264 

+ po-properties/sr.gmo,  2244, 12264, 11467, 0, 0, 0, 0, 2244, 12264 

+ po-properties/el.gmo,  2235, 12212, 12858, 0, 0, 0, 0, 2235, 12212 

+ po-properties/pl.gmo,  2244, 12264, 10995, 0, 0, 0, 0, 2244, 12264 

+ po-properties/nn.gmo,  831, 4515, 4075, 0, 0, 0, 0, 831, 4515 

+ po-properties/en@shaw.po,  1362, 7355, 7355, 310, 2235, 0, 0, 1672, 9590 

+ po-properties/gl.gmo,  2244, 12264, 14536, 0, 0, 0, 0, 2244, 12264 

+ po-properties/zh_TW.gmo,  2243, 12259, 2724, 0, 0, 0, 0, 2243, 12259 

+ po-properties/nl.po,  2244, 12264, 11701, 0, 0, 0, 0, 2244, 12264 

+ po-properties/kg.po,  12, 15, 15, 257, 630, 1397, 8776, 1666, 9421 

+ po-properties/eu.po,  2244, 12264, 9921, 0, 0, 0, 0, 2244, 12264 

+ po-properties/kk.po,  277, 661, 588, 0, 0, 1966, 11598, 2243, 12259 

+ po-properties/pl.po,  2244, 12264, 10995, 0, 0, 0, 0, 2244, 12264 

+ po-properties/ast.gmo,  1818, 10199, 11398, 0, 0, 0, 0, 1818, 10199 

+ po-properties/ta.po,  2041, 11341, 8502, 0, 0, 0, 0, 2041, 11341 

+ po-properties/hr.gmo,  2244, 12264, 10865, 0, 0, 0, 0, 2244, 12264 

+ po-properties/zh_CN.po,  2227, 12176, 2644, 1, 1, 1, 10, 2229, 12187 

+ po-properties/mr.po,  2041, 11341, 9083, 0, 0, 0, 0, 2041, 11341 

+ po-properties/en.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po-properties/mai.po,  1540, 8700, 8583, 98, 540, 28, 181, 1666, 9421 

+ po-properties/be.po,  681, 3591, 3020, 632, 3374, 353, 2456, 1666, 9421 

+ po-properties/an.po,  1633, 8891, 10178, 380, 2291, 7, 45, 2020, 11227 

+ po-properties/nb.gmo,  1622, 8025, 6828, 0, 0, 0, 0, 1622, 8025 

+ po-properties/bg.po,  1915, 10684, 11145, 0, 0, 0, 0, 1915, 10684 

+ po-properties/te.gmo,  1911, 10656, 7759, 0, 0, 0, 0, 1911, 10656 

+ po-properties/gu.po,  1933, 10695, 10095, 79, 440, 29, 206, 2041, 11341 

+ po-properties/ku.po,  66, 103, 102, 97, 325, 1503, 8993, 1666, 9421 

+ po-properties/eo.gmo,  729, 2911, 2640, 0, 0, 0, 0, 729, 2911 

+ po-properties/yi.gmo,  681, 3591, 3559, 0, 0, 0, 0, 681, 3591 

+ po-properties/en_GB.po,  2244, 12264, 12277, 0, 0, 0, 0, 2244, 12264 

+ po-properties/az_IR.po,  0, 0, 0, 2, 4, 1664, 9417, 1666, 9421 

+ po-properties/li.po,  681, 3591, 3334, 632, 3374, 353, 2456, 1666, 9421 

+ po-properties/fur.gmo,  669, 3021, 3483, 0, 0, 0, 0, 669, 3021 

+ po-properties/af.po,  852, 4606, 4261, 910, 4648, 467, 2933, 2229, 12187 

+ po-properties/bg.gmo,  1915, 10684, 11145, 0, 0, 0, 0, 1915, 10684 

+ po-properties/ku.gmo,  66, 103, 102, 0, 0, 0, 0, 66, 103 

+ po-properties/si.po,  317, 1290, 1143, 142, 647, 1207, 7484, 1666, 9421 

+ po-properties/is.po,  539, 1577, 1390, 27, 133, 1661, 10466, 2227, 12176 

+ po-properties/ca@valencia.gmo,  2225, 12163, 14425, 0, 0, 0, 0, 2225, 12163 

+ po-properties/km.po,  1911, 10656, 2871, 0, 0, 0, 0, 1911, 10656 

+ po-properties/it.po,  2244, 12264, 13369, 0, 0, 0, 0, 2244, 12264 

+ po-properties/ang.po,  30, 79, 73, 61, 254, 1575, 9088, 1666, 9421 

+ po-properties/ms.po,  840, 4514, 3815, 540, 2876, 286, 2031, 1666, 9421 

+ po-properties/hi.po,  1911, 10656, 11375, 0, 0, 0, 0, 1911, 10656 

+ po-properties/ro.po,  2244, 12264, 12287, 0, 0, 0, 0, 2244, 12264 

+ po-properties/an.gmo,  1633, 8891, 10178, 0, 0, 0, 0, 1633, 8891 

+ po-properties/ast.po,  1818, 10199, 11398, 0, 0, 0, 0, 1818, 10199 

+ po-properties/bs.gmo,  1919, 10700, 9951, 0, 0, 0, 0, 1919, 10700 

+ po-properties/id.po,  2244, 12264, 10981, 0, 0, 0, 0, 2244, 12264 

+ po-properties/zh_CN.gmo,  2227, 12176, 2644, 0, 0, 0, 0, 2227, 12176 

+ po-properties/lt.gmo,  2244, 12264, 9602, 0, 0, 0, 0, 2244, 12264 

+ po-properties/ta.gmo,  2041, 11341, 8502, 0, 0, 0, 0, 2041, 11341 

+ po-properties/ru.gmo,  2243, 12259, 10502, 0, 0, 0, 0, 2243, 12259 

+ po-properties/sl.po,  2244, 12264, 11154, 0, 0, 0, 0, 2244, 12264 

+ po-properties/et.po,  791, 3778, 2802, 457, 2259, 979, 6139, 2227, 12176 

+ po-properties/my.po,  1515, 8550, 5859, 115, 632, 36, 239, 1666, 9421 

+ po-properties/he.po,  2227, 12176, 12176, 0, 0, 0, 0, 2227, 12176 

+ po-properties/si.gmo,  317, 1290, 1143, 0, 0, 0, 0, 317, 1290 

+ po-properties/he.gmo,  2227, 12176, 12176, 0, 0, 0, 0, 2227, 12176 

+ po-properties/mk.gmo,  1363, 7752, 7949, 0, 0, 0, 0, 1363, 7752 

+ po-properties/mn.gmo,  890, 4865, 3867, 0, 0, 0, 0, 890, 4865 

+ po-properties/mi.po,  1, 1, 1, 120, 236, 1545, 9184, 1666, 9421 

+ po-properties/or.gmo,  1749, 9448, 8442, 0, 0, 0, 0, 1749, 9448 

+ po-properties/dz.gmo,  1270, 7185, 2790, 0, 0, 0, 0, 1270, 7185 

+ po-properties/en_GB.gmo,  2244, 12264, 12277, 0, 0, 0, 0, 2244, 12264 

+ po-properties/bn.gmo,  1577, 8957, 8520, 0, 0, 0, 0, 1577, 8957 

+ po-properties/sq.gmo,  1446, 8183, 9029, 0, 0, 0, 0, 1446, 8183 

+ po-properties/hr.po,  2244, 12264, 10865, 0, 0, 0, 0, 2244, 12264 

+ po-properties/vi.po,  2154, 11849, 16298, 0, 0, 0, 0, 2154, 11849 

+ po-properties/sv.po,  2244, 12264, 10156, 0, 0, 0, 0, 2244, 12264 

+ po-properties/uk.po,  1877, 10467, 8839, 0, 0, 0, 0, 1877, 10467 

+ po-properties/cs.po,  2244, 12264, 10617, 0, 0, 0, 0, 2244, 12264 

+ po-properties/am.gmo,  86, 152, 157, 0, 0, 0, 0, 86, 152 

+ po-properties/uz.po,  368, 1220, 962, 88, 399, 1210, 7802, 1666, 9421 

+ po-properties/en_CA.gmo,  1375, 7814, 7817, 0, 0, 0, 0, 1375, 7814 

+ po-properties/kk.gmo,  277, 661, 588, 0, 0, 0, 0, 277, 661 

+ po-properties/sr.po,  2244, 12264, 11467, 0, 0, 0, 0, 2244, 12264 

+ po-properties/mr.gmo,  2041, 11341, 9083, 0, 0, 0, 0, 2041, 11341 

+ po-properties/ug.po,  1908, 10631, 8566, 0, 0, 7, 53, 1915, 10684 

+ po-properties/ml.po,  1540, 8700, 6215, 98, 540, 28, 181, 1666, 9421 

+ po-properties/fa.gmo,  381, 1236, 1168, 0, 0, 0, 0, 381, 1236 

+ po-properties/ky.po,  94, 351, 263, 0, 0, 1817, 10305, 1911, 10656 

+ po-properties/nds.po,  515, 1405, 1134, 1125, 7838, 26, 178, 1666, 9421 

+ po-properties/kn.gmo,  1146, 3235, 3216, 0, 0, 0, 0, 1146, 3235 

+ po-properties/vi.gmo,  2154, 11849, 16298, 0, 0, 0, 0, 2154, 11849 

+ po-properties/ko.gmo,  2244, 12264, 9428, 0, 0, 0, 0, 2244, 12264 

+ po-properties/gl.po,  2244, 12264, 14536, 0, 0, 0, 0, 2244, 12264 

+ po-properties/ja.po,  1628, 9159, 2151, 197, 931, 86, 566, 1911, 10656 

+ po-properties/cy.po,  1381, 7791, 8074, 216, 1197, 69, 433, 1666, 9421 

+ po-properties/ps.po,  470, 1445, 1510, 76, 351, 1120, 7625, 1666, 9421 

+ po-properties/xh.gmo,  1002, 5559, 4834, 0, 0, 0, 0, 1002, 5559 

+ po-properties/mk.po,  1363, 7752, 7949, 229, 1219, 74, 450, 1666, 9421 

+ po-properties/ia.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po-properties/ps.gmo,  470, 1445, 1510, 0, 0, 0, 0, 470, 1445 

+ po-properties/tt.gmo,  220, 509, 455, 0, 0, 0, 0, 220, 509 

+ po-properties/ja.gmo,  1628, 9159, 2151, 0, 0, 0, 0, 1628, 9159 

+ po-properties/ur.gmo,  4, 4, 4, 0, 0, 0, 0, 4, 4 

+ po-properties/io.po,  0, 0, 0, 0, 0, 1666, 9421, 1666, 9421 

+ po-properties/af.gmo,  852, 4606, 4261, 0, 0, 0, 0, 852, 4606 

+ po-properties/id.gmo,  2244, 12264, 10981, 0, 0, 0, 0, 2244, 12264 

+ po-properties/uz.gmo,  368, 1220, 962, 0, 0, 0, 0, 368, 1220 

+ po-properties/pt_BR.po,  2244, 12264, 13826, 0, 0, 0, 0, 2244, 12264 

+ po-properties/en.po,  0, 0, 0, 0, 0, 1778, 9985, 1778, 9985 

+ po-properties/mi.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po-properties/or.po,  1749, 9448, 8442, 82, 578, 46, 441, 1877, 10467 

+ po-properties/ia.po,  1, 1, 1, 207, 454, 1458, 8966, 1666, 9421 

+ po-properties/tg.po,  2023, 11243, 10638, 0, 0, 0, 0, 2023, 11243 

+ po-properties/tk.po,  5, 6, 6, 217, 647, 1444, 8768, 1666, 9421 

+ po-properties/el.po,  2235, 12212, 12858, 7, 36, 2, 16, 2244, 12264 

+ po-properties/fa.po,  381, 1236, 1168, 386, 1801, 1039, 7092, 1806, 10129 

+ po-properties/kg.gmo,  12, 15, 15, 0, 0, 0, 0, 12, 15 

+ po-properties/sr@ije.po,  890, 4865, 4522, 521, 2786, 255, 1770, 1666, 9421 

+ po-properties/mn.po,  890, 4865, 3867, 522, 2791, 254, 1765, 1666, 9421 

+ po-properties/oc.po,  2104, 11544, 13971, 83, 438, 17, 90, 2204, 12072 

+ po-properties/be@latin.gmo,  1364, 7766, 6691, 0, 0, 0, 0, 1364, 7766 

+ po-properties/tg.gmo,  2023, 11243, 10638, 0, 0, 0, 0, 2023, 11243 

+ po-properties/hi.gmo,  1911, 10656, 11375, 0, 0, 0, 0, 1911, 10656 

+ po-properties/be.gmo,  681, 3591, 3020, 0, 0, 0, 0, 681, 3591 

+ po-properties/sq.po,  1446, 8183, 9029, 167, 908, 53, 330, 1666, 9421 

+ po-properties/nb.po,  1622, 8025, 6828, 274, 1927, 205, 1627, 2101, 11579 

+ po-properties/sk.po,  2243, 12259, 11162, 0, 0, 0, 0, 2243, 12259 

+ po-properties/sv.gmo,  2244, 12264, 10156, 0, 0, 0, 0, 2244, 12264 

+ po-properties/bn_IN.gmo,  1577, 8957, 8514, 0, 0, 0, 0, 1577, 8957 

+ po-properties/pt_BR.gmo,  2244, 12264, 13826, 0, 0, 0, 0, 2244, 12264 

+ po-properties/li.gmo,  681, 3591, 3334, 0, 0, 0, 0, 681, 3591 

+ po-properties/wa.gmo,  427, 1664, 2145, 0, 0, 0, 0, 427, 1664 

+ po-properties/ky.gmo,  94, 351, 263, 0, 0, 0, 0, 94, 351 

+ po-properties/tk.gmo,  5, 6, 6, 0, 0, 0, 0, 5, 6 

+ po-properties/da.po,  2244, 12264, 10089, 0, 0, 0, 0, 2244, 12264 

+ po-properties/de.gmo,  2244, 12264, 11348, 0, 0, 0, 0, 2244, 12264 

+ po-properties/lt.po,  2244, 12264, 9602, 0, 0, 0, 0, 2244, 12264 

+ po-properties/km.gmo,  1911, 10656, 2871, 0, 0, 0, 0, 1911, 10656 

+ po-properties/ca.po,  2244, 12264, 14557, 0, 0, 0, 0, 2244, 12264 

+ po-properties/fr.gmo,  2244, 12264, 14768, 0, 0, 0, 0, 2244, 12264 

+ po-properties/es.gmo,  2244, 12264, 14816, 0, 0, 0, 0, 2244, 12264 

+ po-properties/ug.gmo,  1908, 10631, 8566, 0, 0, 0, 0, 1908, 10631 

+ po-properties/tr.gmo,  2244, 12264, 9734, 0, 0, 0, 0, 2244, 12264 

+ po-properties/sr@latin.po,  2227, 12176, 11384, 0, 0, 0, 0, 2227, 12176 

+ po-properties/uz@cyrillic.gmo,  368, 1220, 962, 0, 0, 0, 0, 368, 1220 

+ po-properties/cy.gmo,  1381, 7791, 8074, 0, 0, 0, 0, 1381, 7791 

+ po-properties/ang.gmo,  30, 79, 73, 0, 0, 0, 0, 30, 79 

+ po-properties/crh.gmo,  1692, 9595, 7730, 0, 0, 0, 0, 1692, 9595 

+ po-properties/it.gmo,  2244, 12264, 13369, 0, 0, 0, 0, 2244, 12264 

+ po-properties/pa.po,  2213, 12080, 11887, 16, 78, 15, 106, 2244, 12264 

+ po-properties/gd.po,  2227, 12176, 15288, 0, 0, 0, 0, 2227, 12176 

+ po-properties/zh_HK.gmo,  2041, 11341, 2453, 0, 0, 0, 0, 2041, 11341 

+ po-properties/bn_IN.po,  1577, 8957, 8514, 69, 353, 20, 111, 1666, 9421 

+ po-properties/sk.gmo,  2243, 12259, 11162, 0, 0, 0, 0, 2243, 12259 

+ po-properties/crh.po,  1692, 9595, 7730, 9, 102, 18, 145, 1719, 9842 

+ po-properties/lg.po,  0, 0, 0, 0, 0, 1716, 9819, 1716, 9819 

+ po-properties/gu.gmo,  1933, 10695, 10095, 0, 0, 0, 0, 1933, 10695 

+ po-properties/hy.po,  1627, 9220, 7803, 23, 115, 16, 86, 1666, 9421 

+ po-properties/ga.gmo,  144, 259, 269, 0, 0, 0, 0, 144, 259 

+ po-properties/sr@latin.gmo,  2227, 12176, 11384, 0, 0, 0, 0, 2227, 12176 

+ po-properties/as.gmo,  2041, 11341, 9554, 0, 0, 0, 0, 2041, 11341 

+ po-properties/ne.po,  1085, 5689, 4718, 963, 4712, 177, 1762, 2225, 12163 

+ po-properties/ro.gmo,  2244, 12264, 12287, 0, 0, 0, 0, 2244, 12264 

+ po-properties/ca.gmo,  2244, 12264, 14557, 0, 0, 0, 0, 2244, 12264 

+ po-properties/pa.gmo,  2213, 12080, 11887, 0, 0, 0, 0, 2213, 12080 

+ po-properties/zh_TW.po,  2243, 12259, 2724, 0, 0, 0, 0, 2243, 12259 

+ po-properties/tt.po,  220, 509, 455, 222, 836, 1224, 8076, 1666, 9421 

+ po-properties/mai.gmo,  1540, 8700, 8583, 0, 0, 0, 0, 1540, 8700 

+ po-properties/ka.gmo,  1183, 6448, 4441, 0, 0, 0, 0, 1183, 6448 

+ po-properties/es.po,  2244, 12264, 14816, 0, 0, 0, 0, 2244, 12264 

+ po-properties/eo.po,  729, 2911, 2640, 136, 663, 1362, 8602, 2227, 12176 

+ po-properties/ms.gmo,  840, 4514, 3815, 0, 0, 0, 0, 840, 4514 

+ po-properties/hu.gmo,  2244, 12264, 9994, 0, 0, 0, 0, 2244, 12264 

+ po-properties/fi.gmo,  1629, 8902, 5674, 0, 0, 0, 0, 1629, 8902 

+ po-properties/my.gmo,  1515, 8550, 5859, 0, 0, 0, 0, 1515, 8550 

+ po-properties/kn.po,  1146, 3235, 3216, 0, 0, 0, 0, 1146, 3235 

+ po-properties/sl.gmo,  2244, 12264, 11154, 0, 0, 0, 0, 2244, 12264 

+ po-properties/fr.po,  2244, 12264, 14768, 0, 0, 0, 0, 2244, 12264 

+ po-properties/ur.po,  4, 4, 4, 44, 74, 1618, 9343, 1666, 9421 

+ po-properties/da.gmo,  2244, 12264, 10089, 0, 0, 0, 0, 2244, 12264 

+ po-properties/be@latin.po,  1364, 7766, 6691, 228, 1205, 74, 450, 1666, 9421 

+ po-properties/et.gmo,  791, 3778, 2802, 0, 0, 0, 0, 791, 3778 

+ po-properties/th.gmo,  153, 862, 236, 0, 0, 0, 0, 153, 862 

+ po-properties/az.po,  890, 4865, 3819, 521, 2786, 255, 1770, 1666, 9421 

+ po-properties/ar.gmo,  1446, 8183, 6712, 0, 0, 0, 0, 1446, 8183 

+ po-properties/ga.po,  144, 259, 269, 100, 287, 1422, 8875, 1666, 9421 

+ po-properties/ko.po,  2244, 12264, 9428, 0, 0, 0, 0, 2244, 12264 

+ po-properties/fi.po,  1629, 8902, 5674, 408, 2121, 206, 1236, 2243, 12259 

+ po-properties/ru.po,  2243, 12259, 10502, 0, 0, 0, 0, 2243, 12259 

+ po-properties/lg.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po-properties/nl.gmo,  2244, 12264, 11701, 0, 0, 0, 0, 2244, 12264 

+ po-properties/as.po,  2041, 11341, 9554, 0, 0, 0, 0, 2041, 11341 

+ po-properties/is.gmo,  539, 1577, 1390, 0, 0, 0, 0, 539, 1577 

+ po-properties/rw.po,  82, 101, 100, 1116, 7392, 468, 1928, 1666, 9421 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/nso.gmo,  84, 399, 562, 0, 0, 0, 0, 84, 399 

+ po/wa.po,  251, 797, 1053, 241, 452, 329, 1183, 821, 2432 

+ po/en_CA.po,  357, 1388, 1387, 238, 416, 226, 628, 821, 2432 

+ po/sr@ije.gmo,  84, 399, 378, 0, 0, 0, 0, 84, 399 

+ po/de.po,  1667, 4414, 4300, 0, 0, 0, 0, 1667, 4414 

+ po/ar.po,  1217, 3377, 3270, 7, 12, 144, 468, 1368, 3857 

+ po/ka.po,  409, 1612, 1257, 222, 381, 190, 439, 821, 2432 

+ po/io.gmo,  248, 782, 739, 0, 0, 0, 0, 248, 782 

+ po/zh_HK.po,  1142, 3231, 1571, 0, 0, 0, 0, 1142, 3231 

+ po/am.po,  23, 32, 42, 233, 378, 565, 2022, 821, 2432 

+ po/rw.gmo,  21, 24, 26, 0, 0, 0, 0, 21, 24 

+ po/uz@cyrillic.po,  555, 1157, 1093, 67, 127, 199, 1148, 821, 2432 

+ po/bs.po,  1030, 3062, 2991, 0, 0, 0, 0, 1030, 3062 

+ po/lv.po,  1667, 4414, 4167, 0, 0, 0, 0, 1667, 4414 

+ po/nso.po,  84, 399, 562, 260, 501, 477, 1532, 821, 2432 

+ po/eu.gmo,  1667, 4414, 4214, 0, 0, 0, 0, 1667, 4414 

+ po/dz.po,  306, 1223, 605, 380, 627, 135, 582, 821, 2432 

+ po/pt.gmo,  1351, 3852, 4234, 0, 0, 0, 0, 1351, 3852 

+ po/th.po,  1351, 3852, 2114, 0, 0, 0, 0, 1351, 3852 

+ po/nds.gmo,  580, 1062, 1119, 0, 0, 0, 0, 580, 1062 

+ po/uk.gmo,  1352, 3855, 3559, 0, 0, 0, 0, 1352, 3855 

+ po/ml.gmo,  955, 2772, 2485, 0, 0, 0, 0, 955, 2772 

+ po/lv.gmo,  1667, 4414, 4167, 0, 0, 0, 0, 1667, 4414 

+ po/cs.gmo,  1678, 4418, 4298, 0, 0, 0, 0, 1678, 4418 

+ po/pt.po,  1351, 3852, 4234, 0, 0, 0, 0, 1351, 3852 

+ po/yi.po,  55, 288, 315, 262, 490, 504, 1654, 821, 2432 

+ po/br.po,  794, 1424, 1712, 1, 2, 439, 2037, 1234, 3463 

+ po/az.gmo,  83, 398, 331, 0, 0, 0, 0, 83, 398 

+ po/fur.po,  1637, 4334, 4918, 4, 10, 26, 70, 1667, 4414 

+ po/te.po,  1146, 3235, 3019, 0, 0, 0, 0, 1146, 3235 

+ po/nn.po,  854, 2383, 2324, 15, 58, 55, 210, 924, 2651 

+ po/oc.gmo,  1278, 3532, 4119, 0, 0, 0, 0, 1278, 3532 

+ po/br.gmo,  794, 1424, 1712, 0, 0, 0, 0, 794, 1424 

+ po/az_IR.gmo,  3, 5, 6, 0, 0, 0, 0, 3, 5 

+ po/gd.gmo,  1372, 3869, 4975, 0, 0, 0, 0, 1372, 3869 

+ po/bn.po,  866, 2566, 2762, 0, 0, 0, 0, 866, 2566 

+ po/en@shaw.gmo,  782, 3077, 3078, 0, 0, 0, 0, 782, 3077 

+ po/ca@valencia.po,  1361, 3850, 4686, 0, 0, 0, 0, 1361, 3850 

+ po/xh.po,  135, 597, 506, 254, 481, 432, 1354, 821, 2432 

+ po/ne.gmo,  709, 1600, 1628, 0, 0, 0, 0, 709, 1600 

+ po/tr.po,  1667, 4414, 4108, 0, 0, 0, 0, 1667, 4414 

+ po/hy.gmo,  494, 1993, 1802, 0, 0, 0, 0, 494, 1993 

+ po/hu.po,  1667, 4414, 4215, 0, 0, 0, 0, 1667, 4414 

+ po/el.gmo,  1377, 3677, 3944, 0, 0, 0, 0, 1377, 3677 

+ po/pl.gmo,  1679, 4420, 4543, 0, 0, 0, 0, 1679, 4420 

+ po/en@shaw.po,  782, 3077, 3078, 235, 633, 0, 0, 1017, 3710 

+ po/gl.gmo,  1667, 4414, 5152, 0, 0, 0, 0, 1667, 4414 

+ po/zh_TW.gmo,  1377, 3875, 1887, 0, 0, 0, 0, 1377, 3875 

+ po/nl.po,  1666, 4404, 4333, 0, 0, 0, 0, 1666, 4404 

+ po/kg.po,  971, 3230, 3181, 21, 118, 73, 514, 1065, 3862 

+ po/eu.po,  1667, 4414, 4214, 0, 0, 0, 0, 1667, 4414 

+ po/kk.po,  1522, 4091, 3836, 0, 0, 141, 315, 1663, 4406 

+ po/pl.po,  1679, 4420, 4543, 0, 0, 0, 0, 1679, 4420 

+ po/ta.po,  1146, 3235, 3081, 0, 0, 0, 0, 1146, 3235 

+ po/hr.gmo,  1667, 4414, 4325, 0, 0, 0, 0, 1667, 4414 

+ po/zh_CN.po,  1372, 3869, 1845, 0, 0, 0, 0, 1372, 3869 

+ po/mr.po,  1142, 3231, 3362, 0, 0, 0, 0, 1142, 3231 

+ po/en.gmo,  49, 49, 92, 0, 0, 0, 0, 49, 49 

+ po/mai.po,  791, 2273, 2543, 25, 121, 5, 38, 821, 2432 

+ po/be.po,  1048, 2981, 2786, 0, 0, 0, 0, 1048, 2981 

+ po/an.po,  955, 2772, 3218, 0, 0, 0, 0, 955, 2772 

+ po/nb.gmo,  1454, 3973, 3962, 0, 0, 0, 0, 1454, 3973 

+ po/bg.po,  1334, 3782, 4286, 0, 0, 0, 0, 1334, 3782 

+ po/te.gmo,  1146, 3235, 3019, 0, 0, 0, 0, 1146, 3235 

+ po/gu.po,  1110, 2996, 3452, 7, 52, 25, 183, 1142, 3231 

+ po/ku.po,  775, 2301, 2489, 3, 14, 44, 137, 822, 2452 

+ po/eo.gmo,  1522, 4109, 3955, 0, 0, 0, 0, 1522, 4109 

+ po/yi.gmo,  55, 288, 315, 0, 0, 0, 0, 55, 288 

+ po/en_GB.po,  1666, 4409, 4450, 0, 0, 0, 0, 1666, 4409 

+ po/az_IR.po,  3, 5, 6, 10, 10, 808, 2417, 821, 2432 

+ po/li.po,  55, 288, 286, 262, 490, 504, 1654, 821, 2432 

+ po/fur.gmo,  1637, 4334, 4918, 0, 0, 0, 0, 1637, 4334 

+ po/af.po,  1238, 3162, 3202, 0, 0, 134, 707, 1372, 3869 

+ po/bg.gmo,  1334, 3782, 4286, 0, 0, 0, 0, 1334, 3782 

+ po/ku.gmo,  775, 2301, 2489, 0, 0, 0, 0, 775, 2301 

+ po/si.po,  279, 908, 979, 243, 421, 299, 1103, 821, 2432 

+ po/is.po,  1527, 4024, 3994, 17, 40, 119, 342, 1663, 4406 

+ po/ca@valencia.gmo,  1361, 3850, 4686, 0, 0, 0, 0, 1361, 3850 

+ po/km.po,  931, 2695, 1578, 0, 0, 0, 0, 931, 2695 

+ po/it.po,  1678, 4418, 4731, 0, 0, 0, 0, 1678, 4418 

+ po/ang.po,  27, 79, 71, 138, 256, 656, 2097, 821, 2432 

+ po/ms.po,  72, 331, 295, 263, 504, 486, 1597, 821, 2432 

+ po/hi.po,  1146, 3235, 3797, 0, 0, 0, 0, 1146, 3235 

+ po/ro.po,  1678, 4418, 4905, 0, 0, 0, 0, 1678, 4418 

+ po/an.gmo,  955, 2772, 3218, 0, 0, 0, 0, 955, 2772 

+ po/ast.po,  810, 2366, 2499, 10, 55, 1, 11, 821, 2432 

+ po/bs.gmo,  1030, 3062, 2991, 0, 0, 0, 0, 1030, 3062 

+ po/id.po,  1667, 4414, 4371, 0, 0, 0, 0, 1667, 4414 

+ po/zh_CN.gmo,  1372, 3869, 1845, 0, 0, 0, 0, 1372, 3869 

+ po/lt.gmo,  1678, 4418, 4039, 0, 0, 0, 0, 1678, 4418 

+ po/ta.gmo,  1146, 3235, 3081, 0, 0, 0, 0, 1146, 3235 

+ po/ru.gmo,  1437, 3983, 3860, 0, 0, 0, 0, 1437, 3983 

+ po/sl.po,  1678, 4418, 4511, 0, 0, 0, 0, 1678, 4418 

+ po/et.po,  955, 2408, 2206, 158, 550, 257, 902, 1370, 3860 

+ po/my.po,  776, 2216, 1810, 29, 135, 16, 81, 821, 2432 

+ po/he.po,  1370, 3860, 3820, 0, 0, 0, 0, 1370, 3860 

+ po/si.gmo,  279, 908, 979, 0, 0, 0, 0, 279, 908 

+ po/he.gmo,  1370, 3860, 3820, 0, 0, 0, 0, 1370, 3860 

+ po/mk.gmo,  342, 1357, 1470, 0, 0, 0, 0, 342, 1357 

+ po/mn.gmo,  82, 395, 338, 0, 0, 0, 0, 82, 395 

+ po/mi.po,  56, 211, 200, 252, 500, 513, 1721, 821, 2432 

+ po/or.gmo,  955, 2772, 2979, 0, 0, 0, 0, 955, 2772 

+ po/dz.gmo,  306, 1223, 605, 0, 0, 0, 0, 306, 1223 

+ po/en_GB.gmo,  1666, 4409, 4450, 0, 0, 0, 0, 1666, 4409 

+ po/bn.gmo,  866, 2566, 2762, 0, 0, 0, 0, 866, 2566 

+ po/sq.gmo,  744, 2102, 2391, 0, 0, 0, 0, 744, 2102 

+ po/hr.po,  1667, 4414, 4325, 0, 0, 0, 0, 1667, 4414 

+ po/vi.po,  1308, 3731, 5136, 0, 0, 0, 0, 1308, 3731 

+ po/sv.po,  1667, 4414, 4195, 0, 0, 0, 0, 1667, 4414 

+ po/uk.po,  1352, 3855, 3559, 0, 0, 0, 0, 1352, 3855 

+ po/cs.po,  1678, 4418, 4298, 0, 0, 0, 0, 1678, 4418 

+ po/am.gmo,  23, 32, 42, 0, 0, 0, 0, 23, 32 

+ po/uz.po,  555, 1157, 1093, 67, 127, 199, 1148, 821, 2432 

+ po/en_CA.gmo,  357, 1388, 1387, 0, 0, 0, 0, 357, 1388 

+ po/kk.gmo,  1522, 4091, 3836, 0, 0, 0, 0, 1522, 4091 

+ po/sr.po,  1518, 4130, 4187, 34, 72, 111, 204, 1663, 4406 

+ po/mr.gmo,  1142, 3231, 3362, 0, 0, 0, 0, 1142, 3231 

+ po/ug.po,  932, 2707, 2470, 0, 0, 0, 0, 932, 2707 

+ po/ml.po,  955, 2772, 2485, 0, 0, 0, 0, 955, 2772 

+ po/ky.po,  66, 83, 82, 3, 3, 862, 2609, 931, 2695 

+ po/nds.po,  580, 1062, 1119, 8, 24, 233, 1346, 821, 2432 

+ po/kn.gmo,  1146, 3235, 3216, 0, 0, 0, 0, 1146, 3235 

+ po/vi.gmo,  1308, 3731, 5136, 0, 0, 0, 0, 1308, 3731 

+ po/ko.gmo,  1667, 4414, 4248, 0, 0, 0, 0, 1667, 4414 

+ po/gl.po,  1667, 4414, 5152, 0, 0, 0, 0, 1667, 4414 

+ po/ja.po,  1472, 3894, 2085, 1, 51, 194, 469, 1667, 4414 

+ po/cy.po,  670, 1846, 1951, 66, 138, 85, 448, 821, 2432 

+ po/ps.po,  345, 636, 671, 31, 64, 445, 1732, 821, 2432 

+ po/xh.gmo,  135, 597, 506, 0, 0, 0, 0, 135, 597 

+ po/mk.po,  342, 1357, 1470, 249, 435, 230, 640, 821, 2432 

+ po/ia.gmo,  932, 2706, 3109, 0, 0, 0, 0, 932, 2706 

+ po/tt.gmo,  87, 186, 161, 0, 0, 0, 0, 87, 186 

+ po/ja.gmo,  1472, 3894, 2085, 0, 0, 0, 0, 1472, 3894 

+ po/ur.gmo,  11, 11, 13, 0, 0, 0, 0, 11, 11 

+ po/io.po,  248, 782, 739, 229, 378, 344, 1272, 821, 2432 

+ po/af.gmo,  1238, 3162, 3202, 0, 0, 0, 0, 1238, 3162 

+ po/id.gmo,  1667, 4414, 4371, 0, 0, 0, 0, 1667, 4414 

+ po/uz.gmo,  555, 1157, 1093, 0, 0, 0, 0, 555, 1157 

+ po/pt_BR.po,  1678, 4418, 4972, 0, 0, 0, 0, 1678, 4418 

+ po/en.po,  49, 49, 92, 0, 0, 817, 2517, 866, 2566 

+ po/mi.gmo,  56, 211, 200, 0, 0, 0, 0, 56, 211 

+ po/or.po,  955, 2772, 2979, 0, 0, 0, 0, 955, 2772 

+ po/ia.po,  932, 2706, 3109, 0, 0, 0, 0, 932, 2706 

+ po/tg.po,  1136, 2881, 3208, 58, 356, 53, 273, 1247, 3510 

+ po/tk.po,  35, 73, 74, 239, 427, 547, 1932, 821, 2432 

+ po/el.po,  1377, 3677, 3944, 71, 337, 215, 394, 1663, 4408 

+ po/fa.po,  1361, 3850, 4292, 0, 0, 0, 0, 1361, 3850 

+ po/kg.gmo,  971, 3230, 3181, 0, 0, 0, 0, 971, 3230 

+ po/sr@ije.po,  84, 399, 378, 264, 505, 473, 1528, 821, 2432 

+ po/mn.po,  82, 395, 338, 265, 506, 474, 1531, 821, 2432 

+ po/oc.po,  1278, 3532, 4119, 21, 94, 53, 227, 1352, 3853 

+ po/be@latin.gmo,  743, 2090, 1940, 0, 0, 0, 0, 743, 2090 

+ po/tg.gmo,  1136, 2881, 3208, 0, 0, 0, 0, 1136, 2881 

+ po/hi.gmo,  1146, 3235, 3797, 0, 0, 0, 0, 1146, 3235 

+ po/be.gmo,  1048, 2981, 2786, 0, 0, 0, 0, 1048, 2981 

+ po/sq.po,  744, 2102, 2391, 41, 107, 36, 223, 821, 2432 

+ po/nb.po,  1454, 3973, 3962, 10, 25, 202, 406, 1666, 4404 

+ po/sk.po,  1516, 4060, 4027, 26, 51, 124, 298, 1666, 4409 

+ po/sv.gmo,  1667, 4414, 4195, 0, 0, 0, 0, 1667, 4414 

+ po/bn_IN.gmo,  955, 2772, 3100, 0, 0, 0, 0, 955, 2772 

+ po/pt_BR.gmo,  1678, 4418, 4972, 0, 0, 0, 0, 1678, 4418 

+ po/li.gmo,  55, 288, 286, 0, 0, 0, 0, 55, 288 

+ po/wa.gmo,  251, 797, 1053, 0, 0, 0, 0, 251, 797 

+ po/ky.gmo,  66, 83, 82, 0, 0, 0, 0, 66, 83 

+ po/tk.gmo,  35, 73, 74, 0, 0, 0, 0, 35, 73 

+ po/da.po,  1667, 4414, 4126, 0, 0, 0, 0, 1667, 4414 

+ po/de.gmo,  1667, 4414, 4300, 0, 0, 0, 0, 1667, 4414 

+ po/lt.po,  1678, 4418, 4039, 0, 0, 0, 0, 1678, 4418 

+ po/km.gmo,  931, 2695, 1578, 0, 0, 0, 0, 931, 2695 

+ po/ca.po,  1667, 4414, 5339, 0, 0, 0, 0, 1667, 4414 

+ po/fr.gmo,  1666, 4409, 5163, 0, 0, 0, 0, 1666, 4409 

+ po/ug.gmo,  932, 2707, 2470, 0, 0, 0, 0, 932, 2707 

+ po/tr.gmo,  1667, 4414, 4108, 0, 0, 0, 0, 1667, 4414 

+ po/sr@latin.po,  1372, 3869, 3915, 0, 0, 0, 0, 1372, 3869 

+ po/uz@cyrillic.gmo,  555, 1157, 1093, 0, 0, 0, 0, 555, 1157 

+ po/cy.gmo,  670, 1846, 1951, 0, 0, 0, 0, 670, 1846 

+ po/ang.gmo,  27, 79, 71, 0, 0, 0, 0, 27, 79 

+ po/crh.gmo,  789, 2121, 1901, 0, 0, 0, 0, 789, 2121 

+ po/it.gmo,  1678, 4418, 4731, 0, 0, 0, 0, 1678, 4418 

+ po/pa.po,  1573, 4188, 4633, 14, 36, 80, 190, 1667, 4414 

+ po/gd.po,  1372, 3869, 4975, 0, 0, 0, 0, 1372, 3869 

+ po/zh_HK.gmo,  1142, 3231, 1571, 0, 0, 0, 0, 1142, 3231 

+ po/bn_IN.po,  955, 2772, 3100, 0, 0, 0, 0, 955, 2772 

+ po/sk.gmo,  1516, 4060, 4027, 0, 0, 0, 0, 1516, 4060 

+ po/crh.po,  789, 2121, 1901, 21, 72, 114, 459, 924, 2652 

+ po/lg.po,  677, 1889, 2048, 0, 0, 162, 633, 839, 2522 

+ po/gu.gmo,  1110, 2996, 3452, 0, 0, 0, 0, 1110, 2996 

+ po/hy.po,  494, 1993, 1802, 53, 67, 274, 372, 821, 2432 

+ po/ga.gmo,  882, 2141, 2357, 0, 0, 0, 0, 882, 2141 

+ po/as.gmo,  1142, 3231, 3574, 0, 0, 0, 0, 1142, 3231 

+ po/ne.po,  709, 1600, 1628, 565, 1628, 85, 618, 1359, 3846 

+ po/ro.gmo,  1678, 4418, 4905, 0, 0, 0, 0, 1678, 4418 

+ po/ca.gmo,  1667, 4414, 5339, 0, 0, 0, 0, 1667, 4414 

+ po/zh_TW.po,  1377, 3875, 1887, 42, 76, 247, 458, 1666, 4409 

+ po/tt.po,  87, 186, 161, 208, 359, 526, 1887, 821, 2432 

+ po/mai.gmo,  791, 2273, 2543, 0, 0, 0, 0, 791, 2273 

+ po/ka.gmo,  409, 1612, 1257, 0, 0, 0, 0, 409, 1612 

+ po/es.po,  1678, 4418, 5210, 0, 0, 0, 0, 1678, 4418 

+ po/eo.po,  1522, 4109, 3955, 20, 39, 124, 261, 1666, 4409 

+ po/ms.gmo,  72, 331, 295, 0, 0, 0, 0, 72, 331 

+ po/hu.gmo,  1667, 4414, 4215, 0, 0, 0, 0, 1667, 4414 

+ po/fi.gmo,  1191, 3258, 2783, 0, 0, 0, 0, 1191, 3258 

+ po/my.gmo,  776, 2216, 1810, 0, 0, 0, 0, 776, 2216 

+ po/kn.po,  1146, 3235, 3216, 0, 0, 0, 0, 1146, 3235 

+ po/sl.gmo,  1678, 4418, 4511, 0, 0, 0, 0, 1678, 4418 

+ po/fr.po,  1666, 4409, 5163, 0, 0, 0, 0, 1666, 4409 

+ po/ur.po,  11, 11, 13, 43, 45, 767, 2376, 821, 2432 

+ po/da.gmo,  1667, 4414, 4126, 0, 0, 0, 0, 1667, 4414 

+ po/be@latin.po,  743, 2090, 1940, 41, 107, 37, 235, 821, 2432 

+ po/et.gmo,  955, 2408, 2206, 0, 0, 0, 0, 955, 2408 

+ po/th.gmo,  1351, 3852, 2114, 0, 0, 0, 0, 1351, 3852 

+ po/az.po,  83, 398, 331, 261, 500, 477, 1534, 821, 2432 

+ po/ga.po,  882, 2141, 2357, 51, 273, 163, 896, 1096, 3310 

+ po/ko.po,  1667, 4414, 4248, 0, 0, 0, 0, 1667, 4414 

+ po/gtk30.pot,  0, 0, 0, 0, 0, 1678, 4418, 1678, 4418 

+ po/fi.po,  1191, 3258, 2783, 95, 219, 377, 929, 1663, 4406 

+ po/ru.po,  1437, 3983, 3860, 23, 45, 206, 381, 1666, 4409 

+ po/lg.gmo,  677, 1889, 2048, 0, 0, 0, 0, 677, 1889 

+ po/nl.gmo,  1666, 4404, 4333, 0, 0, 0, 0, 1666, 4404 

+ po/as.po,  1142, 3231, 3574, 0, 0, 0, 0, 1142, 3231 

+ po/rw.po,  21, 24, 26, 323, 983, 477, 1425, 821, 2432 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

@@ -0,0 +1,166 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ru.po,  88, 220, 211, 13, 69, 5, 33, 106, 322 

+ po/ca.gmo,  90, 223, 283, 0, 0, 0, 0, 90, 223 

+ po/mn.gmo,  3, 4, 4, 0, 0, 0, 0, 3, 4 

+ po/da.gmo,  105, 320, 292, 0, 0, 0, 0, 105, 320 

+ po/gl.gmo,  105, 320, 384, 0, 0, 0, 0, 105, 320 

+ po/sr@latin.gmo,  105, 320, 331, 0, 0, 0, 0, 105, 320 

+ po/eo.gmo,  15, 16, 15, 0, 0, 0, 0, 15, 16 

+ po/fr.po,  106, 322, 403, 0, 0, 0, 0, 106, 322 

+ po/pl.po,  106, 322, 317, 0, 0, 0, 0, 106, 322 

+ po/mai.po,  6, 7, 8, 10, 15, 90, 300, 106, 322 

+ po/eo.po,  15, 16, 15, 8, 11, 83, 295, 106, 322 

+ po/da.po,  105, 320, 292, 1, 2, 0, 0, 106, 322 

+ po/ca@valencia.gmo,  90, 223, 283, 0, 0, 0, 0, 90, 223 

+ po/ko.po,  105, 320, 301, 1, 2, 0, 0, 106, 322 

+ po/zh_CN.po,  105, 320, 145, 1, 2, 0, 0, 106, 322 

+ po/lv.po,  105, 320, 300, 1, 2, 0, 0, 106, 322 

+ po/th.gmo,  40, 127, 66, 0, 0, 0, 0, 40, 127 

+ po/oc.gmo,  105, 320, 396, 0, 0, 0, 0, 105, 320 

+ po/mn.po,  3, 4, 4, 8, 12, 95, 306, 106, 322 

+ po/hi.po,  40, 127, 128, 21, 82, 45, 113, 106, 322 

+ po/ja.gmo,  86, 210, 119, 0, 0, 0, 0, 86, 210 

+ po/uk.gmo,  39, 123, 114, 0, 0, 0, 0, 39, 123 

+ po/as.gmo,  84, 213, 225, 0, 0, 0, 0, 84, 213 

+ po/el.gmo,  105, 320, 339, 0, 0, 0, 0, 105, 320 

+ po/pa.po,  43, 130, 136, 23, 87, 40, 105, 106, 322 

+ po/kk.po,  79, 145, 144, 1, 2, 26, 175, 106, 322 

+ po/mg.po,  3, 4, 5, 10, 15, 93, 303, 106, 322 

+ po/nb.gmo,  103, 315, 306, 0, 0, 0, 0, 103, 315 

+ po/sk.po,  105, 320, 327, 1, 2, 0, 0, 106, 322 

+ po/rw.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po/pt_BR.gmo,  106, 322, 371, 0, 0, 0, 0, 106, 322 

+ po/tg.gmo,  11, 11, 13, 0, 0, 0, 0, 11, 11 

+ po/en_CA.gmo,  16, 72, 72, 0, 0, 0, 0, 16, 72 

+ po/ar.po,  20, 94, 85, 25, 83, 61, 145, 106, 322 

+ po/he.po,  94, 255, 253, 12, 67, 0, 0, 106, 322 

+ po/mk.po,  38, 119, 141, 21, 85, 47, 118, 106, 322 

+ po/gu.gmo,  67, 162, 174, 0, 0, 0, 0, 67, 162 

+ po/ms.po,  3, 4, 4, 9, 13, 94, 305, 106, 322 

+ po/en_CA.po,  16, 72, 72, 23, 84, 67, 166, 106, 322 

+ po/bn.po,  26, 103, 110, 25, 86, 55, 133, 106, 322 

+ po/pt.po,  94, 255, 296, 12, 67, 0, 0, 106, 322 

+ po/mr.po,  20, 94, 94, 25, 83, 61, 145, 106, 322 

+ po/zh_HK.po,  84, 213, 114, 16, 75, 6, 34, 106, 322 

+ po/ml.gmo,  20, 94, 69, 0, 0, 0, 0, 20, 94 

+ po/ug.po,  40, 127, 120, 21, 82, 45, 113, 106, 322 

+ po/hu.gmo,  106, 322, 295, 0, 0, 0, 0, 106, 322 

+ po/vi.po,  94, 255, 378, 12, 67, 0, 0, 106, 322 

+ po/ug.gmo,  40, 127, 120, 0, 0, 0, 0, 40, 127 

+ po/pl.gmo,  106, 322, 317, 0, 0, 0, 0, 106, 322 

+ po/pa.gmo,  43, 130, 136, 0, 0, 0, 0, 43, 130 

+ po/et.gmo,  30, 106, 83, 0, 0, 0, 0, 30, 106 

+ po/fa.po,  4, 8, 8, 9, 13, 93, 301, 106, 322 

+ po/az.po,  3, 4, 4, 8, 12, 95, 306, 106, 322 

+ po/hu.po,  106, 322, 295, 0, 0, 0, 0, 106, 322 

+ po/hi.gmo,  40, 127, 128, 0, 0, 0, 0, 40, 127 

+ po/es.gmo,  106, 322, 398, 0, 0, 0, 0, 106, 322 

+ po/sr.gmo,  106, 322, 333, 0, 0, 0, 0, 106, 322 

+ po/ca@valencia.po,  90, 223, 283, 11, 66, 5, 33, 106, 322 

+ po/id.gmo,  106, 322, 327, 0, 0, 0, 0, 106, 322 

+ po/ml.po,  20, 94, 69, 25, 83, 61, 145, 106, 322 

+ po/hr.po,  105, 320, 310, 1, 2, 0, 0, 106, 322 

+ po/bs.gmo,  87, 218, 214, 0, 0, 0, 0, 87, 218 

+ po/pt_BR.po,  106, 322, 371, 0, 0, 0, 0, 106, 322 

+ po/bg.po,  93, 251, 285, 11, 66, 2, 5, 106, 322 

+ po/kn.po,  37, 118, 103, 20, 82, 49, 122, 106, 322 

+ po/be.po,  105, 320, 314, 1, 2, 0, 0, 106, 322 

+ po/zh_TW.po,  105, 320, 143, 1, 2, 0, 0, 106, 322 

+ po/sl.gmo,  106, 322, 308, 0, 0, 0, 0, 106, 322 

+ po/xh.po,  3, 4, 5, 9, 13, 94, 305, 106, 322 

+ po/rw.po,  1, 1, 1, 5, 7, 100, 314, 106, 322 

+ po/az.gmo,  3, 4, 4, 0, 0, 0, 0, 3, 4 

+ po/ja.po,  86, 210, 119, 12, 68, 8, 44, 106, 322 

+ po/lt.po,  106, 322, 285, 0, 0, 0, 0, 106, 322 

+ po/ga.po,  16, 39, 38, 10, 27, 80, 256, 106, 322 

+ po/tg.po,  11, 11, 13, 6, 8, 89, 303, 106, 322 

+ po/he.gmo,  94, 255, 253, 0, 0, 0, 0, 94, 255 

+ po/nl.gmo,  105, 320, 288, 0, 0, 0, 0, 105, 320 

+ po/ro.po,  105, 320, 375, 1, 2, 0, 0, 106, 322 

+ po/nb.po,  103, 315, 306, 1, 2, 2, 5, 106, 322 

+ po/nn.gmo,  26, 103, 85, 0, 0, 0, 0, 26, 103 

+ po/ga.gmo,  16, 39, 38, 0, 0, 0, 0, 16, 39 

+ po/si.po,  7, 8, 9, 9, 14, 90, 300, 106, 322 

+ po/bn_IN.po,  20, 94, 101, 25, 83, 61, 145, 106, 322 

+ po/fa.gmo,  4, 8, 8, 0, 0, 0, 0, 4, 8 

+ po/gtksourceview-3.0.pot,  0, 0, 0, 0, 0, 106, 322, 106, 322 

+ po/eu.gmo,  106, 322, 290, 0, 0, 0, 0, 106, 322 

+ po/be.gmo,  105, 320, 314, 0, 0, 0, 0, 105, 320 

+ po/es.po,  106, 322, 398, 0, 0, 0, 0, 106, 322 

+ po/oc.po,  105, 320, 396, 1, 2, 0, 0, 106, 322 

+ po/tr.gmo,  106, 322, 291, 0, 0, 0, 0, 106, 322 

+ po/ca.po,  90, 223, 283, 11, 66, 5, 33, 106, 322 

+ po/sv.po,  106, 322, 280, 0, 0, 0, 0, 106, 322 

+ po/id.po,  106, 322, 327, 0, 0, 0, 0, 106, 322 

+ po/bn.gmo,  26, 103, 110, 0, 0, 0, 0, 26, 103 

+ po/bg.gmo,  93, 251, 285, 0, 0, 0, 0, 93, 251 

+ po/dz.gmo,  16, 72, 44, 0, 0, 0, 0, 16, 72 

+ po/ta.po,  40, 127, 117, 21, 82, 45, 113, 106, 322 

+ po/cs.po,  106, 322, 320, 0, 0, 0, 0, 106, 322 

+ po/fi.po,  59, 163, 128, 16, 73, 31, 86, 106, 322 

+ po/en@shaw.gmo,  22, 74, 74, 0, 0, 0, 0, 22, 74 

+ po/sl.po,  106, 322, 308, 0, 0, 0, 0, 106, 322 

+ po/hr.gmo,  105, 320, 310, 0, 0, 0, 0, 105, 320 

+ po/ms.gmo,  3, 4, 4, 0, 0, 0, 0, 3, 4 

+ po/mg.gmo,  3, 4, 5, 0, 0, 0, 0, 3, 4 

+ po/uk.po,  39, 123, 114, 21, 85, 46, 114, 106, 322 

+ po/nl.po,  105, 320, 288, 1, 2, 0, 0, 106, 322 

+ po/zh_CN.gmo,  105, 320, 145, 0, 0, 0, 0, 105, 320 

+ po/zh_HK.gmo,  84, 213, 114, 0, 0, 0, 0, 84, 213 

+ po/sq.po,  3, 4, 5, 10, 15, 93, 303, 106, 322 

+ po/sr@latin.po,  105, 320, 331, 1, 2, 0, 0, 106, 322 

+ po/ru.gmo,  88, 220, 211, 0, 0, 0, 0, 88, 220 

+ po/kk.gmo,  79, 145, 144, 0, 0, 0, 0, 79, 145 

+ po/eu.po,  106, 322, 290, 0, 0, 0, 0, 106, 322 

+ po/de.gmo,  106, 322, 297, 0, 0, 0, 0, 106, 322 

+ po/as.po,  84, 213, 225, 16, 75, 6, 34, 106, 322 

+ po/xh.gmo,  3, 4, 5, 0, 0, 0, 0, 3, 4 

+ po/fur.gmo,  57, 79, 82, 0, 0, 0, 0, 57, 79 

+ po/zh_TW.gmo,  105, 320, 143, 0, 0, 0, 0, 105, 320 

+ po/it.gmo,  106, 322, 353, 0, 0, 0, 0, 106, 322 

+ po/ro.gmo,  105, 320, 375, 0, 0, 0, 0, 105, 320 

+ po/vi.gmo,  94, 255, 378, 0, 0, 0, 0, 94, 255 

+ po/te.gmo,  39, 123, 114, 0, 0, 0, 0, 39, 123 

+ po/th.po,  40, 127, 66, 20, 81, 46, 114, 106, 322 

+ po/si.gmo,  7, 8, 9, 0, 0, 0, 0, 7, 8 

+ po/pt.gmo,  94, 255, 296, 0, 0, 0, 0, 94, 255 

+ po/el.po,  105, 320, 339, 1, 2, 0, 0, 106, 322 

+ po/bs.po,  87, 218, 214, 14, 71, 5, 33, 106, 322 

+ po/mai.gmo,  6, 7, 8, 0, 0, 0, 0, 6, 7 

+ po/ast.gmo,  38, 119, 143, 0, 0, 0, 0, 38, 119 

+ po/fi.gmo,  59, 163, 128, 0, 0, 0, 0, 59, 163 

+ po/ta.gmo,  40, 127, 117, 0, 0, 0, 0, 40, 127 

+ po/sr.po,  106, 322, 333, 0, 0, 0, 0, 106, 322 

+ po/cs.gmo,  106, 322, 320, 0, 0, 0, 0, 106, 322 

+ po/gu.po,  67, 162, 174, 21, 79, 18, 81, 106, 322 

+ po/gl.po,  105, 320, 384, 1, 2, 0, 0, 106, 322 

+ po/kn.gmo,  37, 118, 103, 0, 0, 0, 0, 37, 118 

+ po/sv.gmo,  106, 322, 280, 0, 0, 0, 0, 106, 322 

+ po/ne.gmo,  16, 72, 70, 0, 0, 0, 0, 16, 72 

+ po/bn_IN.gmo,  20, 94, 101, 0, 0, 0, 0, 20, 94 

+ po/or.po,  34, 113, 110, 21, 83, 51, 126, 106, 322 

+ po/ast.po,  38, 119, 143, 21, 85, 47, 118, 106, 322 

+ po/lt.gmo,  106, 322, 285, 0, 0, 0, 0, 106, 322 

+ po/sk.gmo,  105, 320, 327, 0, 0, 0, 0, 105, 320 

+ po/fur.po,  57, 79, 82, 1, 2, 48, 241, 106, 322 

+ po/cy.gmo,  3, 4, 4, 0, 0, 0, 0, 3, 4 

+ po/mr.gmo,  20, 94, 94, 0, 0, 0, 0, 20, 94 

+ po/nn.po,  26, 103, 85, 23, 82, 57, 137, 106, 322 

+ po/ar.gmo,  20, 94, 85, 0, 0, 0, 0, 20, 94 

+ po/fr.gmo,  106, 322, 403, 0, 0, 0, 0, 106, 322 

+ po/et.po,  30, 106, 83, 17, 61, 59, 155, 106, 322 

+ po/mk.gmo,  38, 119, 141, 0, 0, 0, 0, 38, 119 

+ po/de.po,  106, 322, 297, 0, 0, 0, 0, 106, 322 

+ po/ne.po,  16, 72, 70, 23, 84, 67, 166, 106, 322 

+ po/te.po,  39, 123, 114, 21, 85, 46, 114, 106, 322 

+ po/dz.po,  16, 72, 44, 25, 87, 65, 163, 106, 322 

+ po/en_GB.gmo,  94, 255, 254, 0, 0, 0, 0, 94, 255 

+ po/ko.gmo,  105, 320, 301, 0, 0, 0, 0, 105, 320 

+ po/it.po,  106, 322, 353, 0, 0, 0, 0, 106, 322 

+ po/en@shaw.po,  22, 74, 74, 29, 115, 55, 133, 106, 322 

+ po/cy.po,  3, 4, 4, 10, 15, 93, 303, 106, 322 

+ po/tr.po,  106, 322, 291, 0, 0, 0, 0, 106, 322 

+ po/lv.gmo,  105, 320, 300, 0, 0, 0, 0, 105, 320 

+ po/or.gmo,  34, 113, 110, 0, 0, 0, 0, 34, 113 

+ po/sq.gmo,  3, 4, 5, 0, 0, 0, 0, 3, 4 

+ po/en_GB.po,  94, 255, 254, 12, 67, 0, 0, 106, 322 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,83 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  94, 308, 133, 0, 0, 0, 0, 94, 308 

+ po/zh_HK.po,  809, 1900, 1024, 0, 0, 0, 0, 809, 1900 

+ po/zh_CN.po,  94, 308, 132, 0, 0, 0, 0, 94, 308 

+ po/xh.po,  294, 725, 782, 0, 0, 0, 0, 294, 725 

+ po/vi.po,  624, 1147, 1759, 0, 0, 0, 0, 624, 1147 

+ po/uk.po,  627, 1551, 1508, 0, 0, 0, 0, 627, 1551 

+ po/ug.po,  670, 1608, 1570, 0, 0, 0, 0, 670, 1608 

+ po/tr.po,  94, 308, 273, 0, 0, 0, 0, 94, 308 

+ po/th.po,  650, 1573, 820, 0, 0, 11, 23, 661, 1596 

+ po/tg.po,  132, 159, 173, 1, 2, 536, 1443, 669, 1604 

+ po/te.po,  627, 1551, 1407, 0, 0, 0, 0, 627, 1551 

+ po/ta.po,  670, 1608, 1511, 0, 0, 0, 0, 670, 1608 

+ po/sv.po,  106, 322, 280, 0, 0, 0, 0, 106, 322 

+ po/sr@latin.po,  628, 1155, 1331, 0, 0, 0, 0, 628, 1155 

+ po/sr.po,  94, 308, 319, 0, 0, 0, 0, 94, 308 

+ po/sq.po,  332, 821, 1042, 0, 0, 0, 0, 332, 821 

+ po/sl.po,  94, 308, 294, 0, 0, 0, 0, 94, 308 

+ po/sk.po,  628, 1155, 1222, 0, 0, 0, 0, 628, 1155 

+ po/si.po,  101, 117, 123, 0, 0, 248, 709, 349, 826 

+ po/rw.po,  46, 48, 57, 0, 0, 248, 677, 294, 725 

+ po/ru.po,  623, 1128, 1236, 0, 0, 0, 0, 623, 1128 

+ po/ro.po,  94, 308, 359, 0, 0, 0, 0, 94, 308 

+ po/pt_BR.po,  94, 308, 362, 0, 0, 0, 0, 94, 308 

+ po/pt.po,  625, 1148, 1353, 0, 0, 0, 0, 625, 1148 

+ po/pl.po,  94, 308, 303, 0, 0, 0, 0, 94, 308 

+ po/pa.po,  713, 1692, 1697, 0, 0, 0, 0, 713, 1692 

+ po/or.po,  484, 1174, 1152, 23, 36, 53, 236, 560, 1446 

+ po/oc.po,  94, 308, 379, 0, 0, 0, 0, 94, 308 

+ po/nn.po,  513, 1322, 1183, 3, 12, 22, 79, 538, 1413 

+ po/nl.po,  94, 308, 274, 0, 0, 0, 0, 94, 308 

+ po/ne.po,  347, 817, 827, 0, 0, 0, 0, 347, 817 

+ po/nb.po,  620, 1138, 1050, 1, 2, 1, 2, 622, 1142 

+ po/ms.po,  231, 572, 563, 0, 0, 63, 153, 294, 725 

+ po/mr.po,  449, 1124, 1092, 0, 0, 0, 0, 449, 1124 

+ po/mn.po,  180, 455, 479, 0, 0, 114, 270, 294, 725 

+ po/ml.po,  449, 1124, 991, 0, 0, 0, 0, 449, 1124 

+ po/mk.po,  625, 1545, 1797, 0, 0, 0, 0, 625, 1545 

+ po/mg.po,  336, 827, 883, 0, 0, 4, 7, 340, 834 

+ po/mai.po,  188, 370, 388, 0, 0, 250, 729, 438, 1099 

+ po/lv.po,  94, 308, 287, 0, 0, 0, 0, 94, 308 

+ po/lt.po,  94, 308, 270, 0, 0, 0, 0, 94, 308 

+ po/ko.po,  94, 308, 286, 0, 0, 0, 0, 94, 308 

+ po/kn.po,  572, 1377, 1220, 1, 1, 18, 108, 591, 1486 

+ po/kk.po,  68, 133, 130, 0, 0, 26, 175, 94, 308 

+ po/ja.po,  619, 1116, 771, 3, 6, 1, 6, 623, 1128 

+ po/it.po,  94, 308, 339, 0, 0, 0, 0, 94, 308 

+ po/id.po,  94, 308, 310, 0, 0, 0, 0, 94, 308 

+ po/hu.po,  94, 308, 281, 0, 0, 0, 0, 94, 308 

+ po/hr.po,  94, 308, 297, 0, 0, 0, 0, 94, 308 

+ po/hi.po,  670, 1608, 1676, 0, 0, 0, 0, 670, 1608 

+ po/he.po,  622, 1142, 1166, 0, 0, 0, 0, 622, 1142 

+ po/gu.po,  633, 1405, 1409, 75, 152, 100, 335, 808, 1892 

+ po/gl.po,  94, 308, 372, 0, 0, 0, 0, 94, 308 

+ po/ga.po,  149, 192, 195, 18, 27, 548, 1481, 715, 1700 

+ po/fur.po,  94, 308, 375, 0, 0, 0, 0, 94, 308 

+ po/fr.po,  106, 322, 403, 0, 0, 0, 0, 106, 322 

+ po/fi.po,  479, 823, 677, 72, 161, 79, 172, 630, 1156 

+ po/fa.po,  295, 732, 829, 0, 0, 18, 37, 313, 769 

+ po/eu.po,  94, 308, 273, 0, 0, 0, 0, 94, 308 

+ po/et.po,  469, 1155, 996, 0, 0, 123, 330, 592, 1485 

+ po/es.po,  94, 308, 384, 0, 0, 0, 0, 94, 308 

+ po/eo.po,  238, 285, 273, 23, 44, 367, 826, 628, 1155 

+ po/en_GB.po,  624, 1147, 1145, 0, 0, 0, 0, 624, 1147 

+ po/en_CA.po,  357, 863, 866, 0, 0, 0, 0, 357, 863 

+ po/en@shaw.po,  410, 1050, 1051, 128, 363, 0, 0, 538, 1413 

+ po/el.po,  94, 308, 323, 0, 0, 0, 0, 94, 308 

+ po/dz.po,  385, 994, 677, 0, 0, 0, 0, 385, 994 

+ po/de.po,  94, 308, 283, 0, 0, 0, 0, 94, 308 

+ po/da.po,  94, 308, 278, 0, 0, 0, 0, 94, 308 

+ po/cy.po,  329, 818, 871, 0, 0, 0, 0, 329, 818 

+ po/cs.po,  94, 308, 306, 0, 0, 0, 0, 94, 308 

+ po/ca@valencia.po,  601, 1040, 1246, 14, 73, 15, 43, 630, 1156 

+ po/ca.po,  628, 1155, 1386, 0, 0, 0, 0, 628, 1155 

+ po/bs.po,  614, 1107, 1160, 0, 0, 0, 0, 614, 1107 

+ po/bn_IN.po,  449, 1124, 1190, 0, 0, 0, 0, 449, 1124 

+ po/bn.po,  538, 1413, 1495, 0, 0, 0, 0, 538, 1413 

+ po/bg.po,  622, 1142, 1391, 0, 0, 0, 0, 622, 1142 

+ po/be.po,  94, 308, 293, 0, 0, 0, 0, 94, 308 

+ po/az.po,  180, 455, 441, 0, 0, 114, 270, 294, 725 

+ po/ast.po,  625, 1545, 1841, 0, 0, 0, 0, 625, 1545 

+ po/as.po,  809, 1900, 1870, 0, 0, 0, 0, 809, 1900 

+ po/ar.po,  449, 1124, 1148, 0, 0, 0, 0, 449, 1124 

@@ -0,0 +1,17 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xbf in position 7: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 29: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe3 in position 2: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xed in position 30: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xc4 in position 0: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

@@ -0,0 +1,49 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/nl.po,  3311, 11653, 11404, 1205, 3556, 184, 553, 4700, 15762 

+ po/tr.gmo,  3304, 11036, 10518, 0, 0, 0, 0, 3304, 11036 

+ po/el.po,  115, 148, 158, 2074, 6310, 2511, 9304, 4700, 15762 

+ po/ru.po,  1704, 4597, 4538, 2114, 6205, 882, 4960, 4700, 15762 

+ po/sk.gmo,  3108, 10215, 10002, 0, 0, 0, 0, 3108, 10215 

+ po/uk.gmo,  3311, 11653, 11248, 0, 0, 0, 0, 3311, 11653 

+ po/nl.gmo,  3311, 11653, 11404, 0, 0, 0, 0, 3311, 11653 

+ po/ja.po,  975, 3254, 1999, 1702, 6571, 2023, 5937, 4700, 15762 

+ po/vi.gmo,  2935, 8209, 8668, 0, 0, 0, 0, 2935, 8209 

+ po/pl.po,  157, 314, 306, 1846, 5527, 2697, 9921, 4700, 15762 

+ po/de.gmo,  3311, 11653, 10679, 0, 0, 0, 0, 3311, 11653 

+ po/fr.gmo,  3311, 11653, 12125, 0, 0, 0, 0, 3311, 11653 

+ po/gl.gmo,  2582, 8926, 9610, 0, 0, 0, 0, 2582, 8926 

+ po/sk.po,  3108, 10215, 10002, 1288, 4541, 304, 1006, 4700, 15762 

+ po/gutenprint.pot,  0, 0, 0, 0, 0, 4700, 15762, 4700, 15762 

+ po/nb.gmo,  242, 695, 642, 0, 0, 0, 0, 242, 695 

+ po/zh_TW.po,  465, 1584, 793, 2524, 7790, 1711, 6388, 4700, 15762 

+ po/es.po,  306, 1819, 1984, 2037, 7189, 2357, 6754, 4700, 15762 

+ po/cs.gmo,  336, 1980, 1683, 0, 0, 0, 0, 336, 1980 

+ po/zh_CN.po,  2965, 8561, 7654, 1222, 3614, 513, 3587, 4700, 15762 

+ po/pt.po,  334, 1968, 2054, 2012, 7044, 2354, 6750, 4700, 15762 

+ po/sl.po,  2560, 8860, 8534, 1918, 6263, 222, 639, 4700, 15762 

+ po/da.po,  3311, 11653, 11174, 1208, 3564, 181, 545, 4700, 15762 

+ po/fr.po,  3311, 11653, 12125, 1208, 3564, 181, 545, 4700, 15762 

+ po/tr.po,  3304, 11036, 10518, 1213, 4175, 183, 551, 4700, 15762 

+ po/vi.po,  2935, 8209, 8668, 1200, 3529, 565, 4024, 4700, 15762 

+ po/fi.gmo,  2212, 6765, 6191, 0, 0, 0, 0, 2212, 6765 

+ po/uk.po,  3311, 11653, 11248, 1208, 3564, 181, 545, 4700, 15762 

+ po/ru.gmo,  1704, 4597, 4538, 0, 0, 0, 0, 1704, 4597 

+ po/sv.po,  1354, 5110, 4902, 2650, 8590, 696, 2062, 4700, 15762 

+ po/it.po,  3311, 11653, 11994, 1208, 3564, 181, 545, 4700, 15762 

+ po/zh_TW.gmo,  465, 1584, 793, 0, 0, 0, 0, 465, 1584 

+ po/gl.po,  2582, 8926, 9610, 1896, 6197, 222, 639, 4700, 15762 

+ po/en_GB.po,  2112, 7530, 7507, 2283, 7328, 305, 904, 4700, 15762 

+ po/hu.gmo,  3311, 11653, 11181, 0, 0, 0, 0, 3311, 11653 

+ po/cs.po,  336, 1980, 1683, 2003, 6971, 2361, 6811, 4700, 15762 

+ po/da.gmo,  3311, 11653, 11174, 0, 0, 0, 0, 3311, 11653 

+ po/hu.po,  3311, 11653, 11181, 1208, 3564, 181, 545, 4700, 15762 

+ po/sl.gmo,  2560, 8860, 8534, 0, 0, 0, 0, 2560, 8860 

+ po/nb.po,  242, 695, 642, 2048, 6258, 2410, 8809, 4700, 15762 

+ po/ja.gmo,  975, 3254, 1999, 0, 0, 0, 0, 975, 3254 

+ po/de.po,  3311, 11653, 10679, 1214, 3574, 175, 535, 4700, 15762 

+ po/fi.po,  2212, 6765, 6191, 2042, 6009, 446, 2988, 4700, 15762 

+ po/ca.po,  3311, 11653, 12496, 1208, 3564, 181, 545, 4700, 15762 

+ po/en_GB.gmo,  2112, 7530, 7507, 0, 0, 0, 0, 2112, 7530 

+ po/it.gmo,  3311, 11653, 11994, 0, 0, 0, 0, 3311, 11653 

+ po/zh_CN.gmo,  2965, 8561, 7654, 0, 0, 0, 0, 2965, 8561 

+ po/sv.gmo,  1354, 5110, 4902, 0, 0, 0, 0, 1354, 5110 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,77 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  403, 2076, 639, 0, 0, 0, 0, 403, 2076 

+ po/zh_HK.po,  596, 2704, 1004, 0, 0, 0, 0, 596, 2704 

+ po/zh_CN.po,  397, 2052, 612, 0, 0, 0, 0, 397, 2052 

+ po/vi.po,  403, 2076, 3099, 0, 0, 0, 0, 403, 2076 

+ po/uk.po,  402, 2069, 2058, 0, 0, 0, 0, 402, 2069 

+ po/ug.po,  583, 2640, 2364, 0, 0, 2, 8, 585, 2648 

+ po/tr.po,  399, 2058, 1760, 0, 0, 0, 0, 399, 2058 

+ po/th.po,  564, 2552, 1102, 0, 0, 0, 0, 564, 2552 

+ po/tg.po,  71, 121, 134, 0, 0, 514, 2527, 585, 2648 

+ po/te.po,  596, 2704, 2339, 0, 0, 0, 0, 596, 2704 

+ po/ta.po,  596, 2704, 2387, 0, 0, 0, 0, 596, 2704 

+ po/sv.po,  399, 2058, 1998, 0, 0, 0, 0, 399, 2058 

+ po/sr@latin.po,  412, 2148, 2317, 0, 0, 0, 0, 412, 2148 

+ po/sr.po,  399, 2058, 2232, 0, 0, 0, 0, 399, 2058 

+ po/sq.po,  312, 1245, 1532, 0, 0, 0, 0, 312, 1245 

+ po/sl.po,  399, 2058, 2129, 0, 0, 0, 0, 399, 2058 

+ po/sk.po,  402, 2069, 2074, 0, 0, 0, 0, 402, 2069 

+ po/ru.po,  403, 2076, 2003, 0, 0, 0, 0, 403, 2076 

+ po/ro.po,  399, 2058, 2443, 0, 0, 0, 0, 399, 2058 

+ po/pt_BR.po,  399, 2058, 2583, 0, 0, 0, 0, 399, 2058 

+ po/pt.po,  624, 2893, 3334, 0, 0, 0, 0, 624, 2893 

+ po/pl.po,  399, 2058, 2143, 0, 0, 0, 0, 399, 2058 

+ po/pa.po,  607, 2762, 3169, 0, 0, 0, 0, 607, 2762 

+ po/or.po,  596, 2704, 2797, 0, 0, 0, 0, 596, 2704 

+ po/oc.po,  593, 2663, 3511, 0, 0, 25, 188, 618, 2851 

+ po/nn.po,  540, 2427, 2414, 0, 0, 5, 18, 545, 2445 

+ po/nl.po,  399, 2058, 2044, 0, 0, 0, 0, 399, 2058 

+ po/ne.po,  155, 554, 562, 170, 781, 86, 804, 411, 2139 

+ po/nds.po,  222, 594, 641, 0, 0, 236, 1342, 458, 1936 

+ po/nb.po,  412, 2148, 2136, 0, 0, 0, 0, 412, 2148 

+ po/mr.po,  596, 2704, 2677, 0, 0, 0, 0, 596, 2704 

+ po/ml.po,  585, 2648, 2211, 0, 0, 0, 0, 585, 2648 

+ po/mk.po,  537, 2412, 2873, 0, 0, 0, 0, 537, 2412 

+ po/mai.po,  88, 196, 215, 0, 0, 357, 1662, 445, 1858 

+ po/lv.po,  399, 2058, 1839, 0, 0, 0, 0, 399, 2058 

+ po/lt.po,  399, 2058, 1752, 0, 0, 0, 0, 399, 2058 

+ po/ku.po,  65, 142, 164, 0, 0, 209, 908, 274, 1050 

+ po/ko.po,  399, 2058, 1821, 0, 0, 0, 0, 399, 2058 

+ po/kn.po,  601, 2728, 2422, 0, 0, 0, 0, 601, 2728 

+ po/kk.po,  313, 1502, 1420, 0, 0, 90, 574, 403, 2076 

+ po/ja.po,  583, 2640, 1062, 0, 0, 0, 0, 583, 2640 

+ po/it.po,  399, 2058, 2331, 0, 0, 0, 0, 399, 2058 

+ po/id.po,  399, 2058, 2084, 0, 0, 0, 0, 399, 2058 

+ po/hu.po,  399, 2058, 2015, 0, 0, 0, 0, 399, 2058 

+ po/hr.po,  399, 2058, 1938, 0, 0, 0, 0, 399, 2058 

+ po/hi.po,  596, 2704, 3161, 0, 0, 0, 0, 596, 2704 

+ po/he.po,  400, 2080, 2041, 0, 0, 0, 0, 400, 2080 

+ po/gu.po,  597, 2706, 3018, 0, 0, 0, 0, 597, 2706 

+ po/gl.po,  399, 2058, 2831, 0, 0, 0, 0, 399, 2058 

+ po/ga.po,  165, 446, 523, 0, 0, 197, 1130, 362, 1576 

+ po/fur.po,  399, 2058, 2541, 0, 0, 0, 0, 399, 2058 

+ po/fr.po,  399, 2058, 2781, 0, 0, 0, 0, 399, 2058 

+ po/fi.po,  346, 1736, 1440, 36, 223, 17, 99, 399, 2058 

+ po/fa.po,  465, 1815, 2181, 15, 61, 65, 569, 545, 2445 

+ po/eu.po,  399, 2058, 1991, 0, 0, 0, 0, 399, 2058 

+ po/et.po,  565, 2555, 2241, 0, 0, 0, 0, 565, 2555 

+ po/es.po,  399, 2058, 2717, 0, 0, 0, 0, 399, 2058 

+ po/eo.po,  111, 361, 386, 9, 43, 291, 1735, 411, 2139 

+ po/en_GB.po,  412, 2148, 2146, 0, 0, 0, 0, 412, 2148 

+ po/en@shaw.po,  409, 1725, 1725, 49, 211, 0, 0, 458, 1936 

+ po/el.po,  403, 2076, 2225, 0, 0, 0, 0, 403, 2076 

+ po/de.po,  399, 2058, 2190, 0, 0, 0, 0, 399, 2058 

+ po/da.po,  399, 2058, 1993, 0, 0, 0, 0, 399, 2058 

+ po/cs.po,  399, 2058, 1971, 0, 0, 0, 0, 399, 2058 

+ po/ca@valencia.po,  411, 2139, 3009, 0, 0, 0, 0, 411, 2139 

+ po/ca.po,  399, 2058, 2903, 0, 0, 0, 0, 399, 2058 

+ po/bs.po,  609, 2777, 2884, 0, 0, 0, 0, 609, 2777 

+ po/bn_IN.po,  596, 2704, 2986, 0, 0, 0, 0, 596, 2704 

+ po/bn.po,  458, 1936, 2102, 0, 0, 0, 0, 458, 1936 

+ po/bg.po,  618, 2851, 3363, 0, 0, 0, 0, 618, 2851 

+ po/be@latin.po,  326, 1354, 1338, 0, 0, 0, 0, 326, 1354 

+ po/be.po,  402, 2069, 2045, 0, 0, 0, 0, 402, 2069 

+ po/ast.po,  537, 2412, 2910, 0, 0, 0, 0, 537, 2412 

+ po/as.po,  597, 2706, 2858, 0, 0, 0, 0, 597, 2706 

+ po/ar.po,  401, 1654, 1688, 9, 33, 59, 324, 469, 2011 

+ po/af.po,  210, 711, 733, 1, 3, 252, 1269, 463, 1983 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: cannot process data/localization/hplip_: does not exist

@@ -0,0 +1,1 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

@@ -0,0 +1,14 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,10 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/tg.po,  79, 613, 646, 0, 0, 0, 0, 79, 613 

+ po/pt_BR.po,  79, 613, 683, 0, 0, 0, 0, 79, 613 

+ po/pl.po,  79, 613, 599, 0, 0, 0, 0, 79, 613 

+ po/it.po,  69, 496, 533, 6, 24, 4, 93, 79, 613 

+ po/hunspell.pot,  0, 0, 0, 0, 0, 79, 613, 79, 613 

+ po/hu.po,  76, 598, 563, 3, 15, 0, 0, 79, 613 

+ po/es.po,  79, 613, 700, 0, 0, 0, 0, 79, 613 

+ po/de.po,  79, 613, 582, 0, 0, 0, 0, 79, 613 

+ po/ca.po,  79, 613, 705, 0, 0, 0, 0, 79, 613 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

@@ -0,0 +1,104 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/fr.po,  544, 2168, 2453, 0, 0, 0, 0, 544, 2168 

+ po/ko.gmo,  162, 925, 735, 0, 0, 0, 0, 162, 925 

+ po/hi.po,  125, 583, 682, 14, 93, 405, 1492, 544, 2168 

+ po/mn.gmo,  32, 116, 97, 0, 0, 0, 0, 32, 116 

+ po/bn.gmo,  104, 448, 503, 0, 0, 0, 0, 104, 448 

+ po/es.po,  535, 2146, 2451, 0, 0, 9, 22, 544, 2168 

+ po/sr.gmo,  41, 115, 109, 0, 0, 0, 0, 41, 115 

+ po/pl.po,  544, 2168, 2048, 0, 0, 0, 0, 544, 2168 

+ po/fa.po,  38, 67, 73, 5, 8, 501, 2093, 544, 2168 

+ po/ia.gmo,  125, 583, 715, 0, 0, 0, 0, 125, 583 

+ po/he.po,  1, 1, 1, 0, 0, 543, 2167, 544, 2168 

+ po/mn.po,  32, 116, 97, 5, 33, 507, 2019, 544, 2168 

+ po/fa.gmo,  38, 67, 73, 0, 0, 0, 0, 38, 67 

+ po/hi.gmo,  125, 583, 682, 0, 0, 0, 0, 125, 583 

+ po/hu.po,  544, 2168, 2042, 0, 0, 0, 0, 544, 2168 

+ po/or.gmo,  142, 669, 659, 0, 0, 0, 0, 142, 669 

+ po/tr.gmo,  27, 40, 44, 0, 0, 0, 0, 27, 40 

+ po/vi.gmo,  118, 512, 681, 0, 0, 0, 0, 118, 512 

+ po/mr.gmo,  162, 925, 857, 0, 0, 0, 0, 162, 925 

+ po/he.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po/ca.gmo,  272, 1398, 1656, 0, 0, 0, 0, 272, 1398 

+ po/ur.gmo,  1, 1, 1, 0, 0, 0, 0, 1, 1 

+ po/nb.gmo,  62, 163, 151, 0, 0, 0, 0, 62, 163 

+ po/ar.gmo,  41, 117, 109, 0, 0, 0, 0, 41, 117 

+ po/lv.po,  105, 456, 407, 11, 51, 428, 1661, 544, 2168 

+ po/bn_IN.gmo,  162, 925, 939, 0, 0, 0, 0, 162, 925 

+ po/eu.po,  50, 96, 102, 7, 13, 487, 2059, 544, 2168 

+ po/pl.gmo,  544, 2168, 2048, 0, 0, 0, 0, 544, 2168 

+ po/sr@latin.gmo,  41, 115, 109, 0, 0, 0, 0, 41, 115 

+ po/pa.po,  204, 779, 784, 0, 0, 340, 1389, 544, 2168 

+ po/pa.gmo,  204, 779, 784, 0, 0, 0, 0, 204, 779 

+ po/cs.gmo,  504, 1883, 1759, 0, 0, 0, 0, 504, 1883 

+ po/pt_BR.po,  249, 1290, 1477, 0, 0, 295, 878, 544, 2168 

+ po/bg.po,  121, 557, 613, 11, 51, 412, 1560, 544, 2168 

+ po/te.po,  162, 925, 780, 6, 59, 376, 1184, 544, 2168 

+ po/ru.gmo,  145, 758, 657, 0, 0, 0, 0, 145, 758 

+ po/pt_BR.gmo,  249, 1290, 1477, 0, 0, 0, 0, 249, 1290 

+ po/id.gmo,  151, 776, 713, 0, 0, 0, 0, 151, 776 

+ po/en_GB.gmo,  104, 449, 452, 0, 0, 0, 0, 104, 449 

+ po/hu.gmo,  544, 2168, 2042, 0, 0, 0, 0, 544, 2168 

+ po/sv.po,  544, 2168, 1783, 0, 0, 0, 0, 544, 2168 

+ po/nl.po,  544, 2168, 2150, 0, 0, 0, 0, 544, 2168 

+ po/mr.po,  162, 925, 857, 6, 59, 376, 1184, 544, 2168 

+ po/fr.gmo,  544, 2168, 2453, 0, 0, 0, 0, 544, 2168 

+ po/de.gmo,  195, 1069, 910, 0, 0, 0, 0, 195, 1069 

+ po/vi.po,  118, 512, 681, 0, 0, 426, 1656, 544, 2168 

+ po/ta.po,  162, 925, 768, 6, 59, 376, 1184, 544, 2168 

+ po/sq.gmo,  13, 20, 22, 0, 0, 0, 0, 13, 20 

+ po/sr@latin.po,  41, 115, 109, 5, 16, 498, 2037, 544, 2168 

+ po/eu.gmo,  50, 96, 102, 0, 0, 0, 0, 50, 96 

+ po/tg.po,  32, 36, 44, 4, 6, 508, 2126, 544, 2168 

+ po/ia.po,  125, 583, 715, 14, 93, 405, 1492, 544, 2168 

+ po/ml.po,  154, 707, 593, 15, 103, 375, 1358, 544, 2168 

+ po/zh_TW.gmo,  521, 2089, 748, 0, 0, 0, 0, 521, 2089 

+ po/cs.po,  504, 1883, 1759, 23, 115, 17, 170, 544, 2168 

+ po/bn.po,  104, 448, 503, 10, 49, 430, 1671, 544, 2168 

+ po/id.po,  151, 776, 713, 16, 107, 377, 1285, 544, 2168 

+ po/zh_HK.po,  163, 927, 309, 6, 59, 375, 1182, 544, 2168 

+ po/lv.gmo,  105, 456, 407, 0, 0, 0, 0, 105, 456 

+ po/uk.gmo,  544, 2168, 2105, 0, 0, 0, 0, 544, 2168 

+ po/uk.po,  544, 2168, 2105, 0, 0, 0, 0, 544, 2168 

+ po/da.po,  544, 2168, 1828, 0, 0, 0, 0, 544, 2168 

+ po/sq.po,  13, 20, 22, 1, 2, 530, 2146, 544, 2168 

+ po/ja.gmo,  544, 2168, 822, 0, 0, 0, 0, 544, 2168 

+ po/tr.po,  27, 40, 44, 0, 0, 517, 2128, 544, 2168 

+ po/nb.po,  62, 163, 151, 8, 22, 474, 1983, 544, 2168 

+ po/or.po,  142, 669, 659, 15, 97, 387, 1402, 544, 2168 

+ po/ta.gmo,  162, 925, 768, 0, 0, 0, 0, 162, 925 

+ po/it.gmo,  171, 807, 919, 0, 0, 0, 0, 171, 807 

+ po/te.gmo,  162, 925, 780, 0, 0, 0, 0, 162, 925 

+ po/zh_CN.po,  255, 1395, 442, 4, 35, 285, 738, 544, 2168 

+ po/ko.po,  162, 925, 735, 6, 59, 376, 1184, 544, 2168 

+ po/sv.gmo,  544, 2168, 1783, 0, 0, 0, 0, 544, 2168 

+ po/fi.po,  93, 302, 240, 7, 11, 444, 1855, 544, 2168 

+ po/tg.gmo,  32, 36, 44, 0, 0, 0, 0, 32, 36 

+ po/gu.gmo,  162, 925, 916, 0, 0, 0, 0, 162, 925 

+ po/zh_HK.gmo,  163, 927, 309, 0, 0, 0, 0, 163, 927 

+ po/ru.po,  145, 758, 657, 10, 83, 389, 1327, 544, 2168 

+ po/es.gmo,  535, 2146, 2451, 0, 0, 0, 0, 535, 2146 

+ po/nl.gmo,  544, 2168, 2150, 0, 0, 0, 0, 544, 2168 

+ po/ja.po,  544, 2168, 822, 0, 0, 0, 0, 544, 2168 

+ po/en_GB.po,  104, 449, 452, 11, 51, 429, 1668, 544, 2168 

+ po/bg.gmo,  121, 557, 613, 0, 0, 0, 0, 121, 557 

+ po/ar.po,  41, 117, 109, 5, 16, 498, 2035, 544, 2168 

+ po/it.po,  171, 807, 919, 28, 393, 345, 968, 544, 2168 

+ po/fi.gmo,  93, 302, 240, 0, 0, 0, 0, 93, 302 

+ po/as.gmo,  162, 925, 885, 0, 0, 0, 0, 162, 925 

+ po/et.gmo,  42, 75, 69, 0, 0, 0, 0, 42, 75 

+ po/de.po,  195, 1069, 910, 11, 88, 338, 1011, 544, 2168 

+ po/zh_CN.gmo,  255, 1395, 442, 0, 0, 0, 0, 255, 1395 

+ po/sr.po,  41, 115, 109, 5, 16, 498, 2037, 544, 2168 

+ po/ibus10.pot,  0, 0, 0, 0, 0, 544, 2168, 544, 2168 

+ po/ca.po,  272, 1398, 1656, 8, 48, 264, 722, 544, 2168 

+ po/kn.po,  162, 925, 803, 6, 59, 376, 1184, 544, 2168 

+ po/ur.po,  1, 1, 1, 0, 0, 543, 2167, 544, 2168 

+ po/kn.gmo,  162, 925, 803, 0, 0, 0, 0, 162, 925 

+ po/ml.gmo,  154, 707, 593, 0, 0, 0, 0, 154, 707 

+ po/zh_TW.po,  521, 2089, 748, 0, 0, 23, 79, 544, 2168 

+ po/gu.po,  162, 925, 916, 6, 59, 376, 1184, 544, 2168 

+ po/da.gmo,  544, 2168, 1828, 0, 0, 0, 0, 544, 2168 

+ po/et.po,  42, 75, 69, 6, 12, 496, 2081, 544, 2168 

+ po/as.po,  162, 925, 885, 6, 59, 376, 1184, 544, 2168 

+ po/bn_IN.po,  162, 925, 939, 6, 59, 376, 1184, 544, 2168 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,3 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_CN.po,  0, 0, 0, 0, 0, 27, 129, 27, 129 

+ po/ko.po,  27, 129, 99, 0, 0, 0, 0, 27, 129 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,2 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ja.po,  82, 270, 114, 0, 0, 0, 0, 82, 270 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,14 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/fr.gmo,  133, 335, 360, 0, 0, 0, 0, 133, 335 

+ po/ca.gmo,  134, 369, 430, 0, 0, 0, 0, 134, 369 

+ po/zh_CN.gmo,  141, 380, 173, 0, 0, 0, 0, 141, 380 

+ po/ru.gmo,  27, 42, 51, 0, 0, 0, 0, 27, 42 

+ po/zh_TW.gmo,  59, 117, 61, 0, 0, 0, 0, 59, 117 

+ po/ca.po,  134, 369, 430, 4, 8, 3, 3, 141, 380 

+ po/zh_TW.po,  59, 117, 61, 27, 93, 55, 170, 141, 380 

+ po/ibus-libpinyin.pot,  0, 0, 0, 0, 0, 148, 398, 148, 398 

+ po/zh_CN.po,  141, 380, 173, 0, 0, 0, 0, 141, 380 

+ po/fr.po,  133, 335, 360, 0, 0, 8, 45, 141, 380 

+ po/zh_HK.po,  59, 117, 61, 27, 93, 55, 170, 141, 380 

+ po/zh_HK.gmo,  59, 117, 61, 0, 0, 0, 0, 59, 117 

+ po/ru.po,  27, 42, 51, 38, 104, 76, 234, 141, 380 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

@@ -0,0 +1,4 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  70, 204, 113, 0, 0, 0, 0, 70, 204 

+ po/zh_CN.po,  60, 174, 84, 0, 0, 10, 30, 70, 204 

+ po/zh_HK.po,  52, 142, 76, 6, 21, 12, 41, 70, 204 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,6 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ibus-m17n.pot,  0, 0, 0, 0, 0, 24, 56, 24, 56 

+ po/zh_CN.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/de.po,  24, 56, 55, 0, 0, 0, 0, 24, 56 

+ po/zh_CN.po,  0, 0, 0, 0, 0, 24, 56, 24, 56 

+ po/de.gmo,  24, 56, 55, 0, 0, 0, 0, 24, 56 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/xgettext_sh.py)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,82 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  119, 775, 342, 10, 54, 19, 143, 148, 972 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/zh_CN.po,  132, 864, 447, 0, 0, 16, 108, 148, 972 

+ po/wa.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/vi.po,  62, 367, 487, 9, 46, 77, 559, 148, 972 

+ po/ur.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/uk.po,  132, 864, 845, 0, 0, 16, 108, 148, 972 

+ po/tr.po,  132, 864, 816, 0, 0, 16, 108, 148, 972 

+ po/tg.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/te.po,  119, 775, 677, 10, 54, 19, 143, 148, 972 

+ po/ta.po,  119, 775, 683, 10, 54, 19, 143, 148, 972 

+ po/sv.po,  132, 864, 851, 0, 0, 16, 108, 148, 972 

+ po/sr@latin.po,  118, 768, 783, 10, 54, 20, 150, 148, 972 

+ po/sr.po,  132, 864, 882, 0, 0, 16, 108, 148, 972 

+ po/sq.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/sl.po,  118, 768, 772, 10, 54, 20, 150, 148, 972 

+ po/sk.po,  132, 864, 854, 0, 0, 16, 108, 148, 972 

+ po/si.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/ru.po,  132, 864, 853, 0, 0, 16, 108, 148, 972 

+ po/ro.po,  63, 318, 351, 6, 25, 79, 629, 148, 972 

+ po/pt_BR.po,  132, 864, 1000, 0, 0, 16, 108, 148, 972 

+ po/pt.po,  119, 775, 941, 10, 54, 19, 143, 148, 972 

+ po/pl.po,  132, 864, 892, 0, 0, 16, 108, 148, 972 

+ po/pa.po,  119, 775, 950, 10, 54, 19, 143, 148, 972 

+ po/or.po,  119, 775, 916, 10, 54, 19, 143, 148, 972 

+ po/nn.po,  3, 4, 4, 3, 12, 142, 956, 148, 972 

+ po/nl.po,  132, 864, 939, 0, 0, 16, 108, 148, 972 

+ po/nds.po,  1, 1, 1, 0, 0, 147, 971, 148, 972 

+ po/nb.po,  119, 775, 775, 10, 54, 19, 143, 148, 972 

+ po/my.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/ms.po,  104, 684, 697, 10, 54, 34, 234, 148, 972 

+ po/mr.po,  119, 775, 787, 10, 54, 19, 143, 148, 972 

+ po/ml.po,  132, 864, 759, 0, 0, 16, 108, 148, 972 

+ po/mk.po,  112, 744, 775, 10, 54, 26, 174, 148, 972 

+ po/mai.po,  118, 768, 942, 10, 54, 20, 150, 148, 972 

+ po/lv.po,  61, 337, 270, 10, 54, 77, 581, 148, 972 

+ po/lt.po,  62, 288, 252, 10, 54, 76, 630, 148, 972 

+ po/lo.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/ku.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/ks.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/ko.po,  118, 768, 721, 10, 54, 20, 150, 148, 972 

+ po/kn.po,  119, 775, 752, 10, 54, 19, 143, 148, 972 

+ po/kk.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/ka.po,  10, 22, 25, 3, 16, 135, 934, 148, 972 

+ po/ja.po,  119, 775, 423, 10, 54, 19, 143, 148, 972 

+ po/it.po,  119, 775, 867, 10, 54, 19, 143, 148, 972 

+ po/is.po,  111, 740, 765, 10, 54, 27, 178, 148, 972 

+ po/initscripts.pot,  0, 0, 0, 0, 0, 159, 1071, 159, 1071 

+ po/id.po,  103, 683, 713, 10, 54, 35, 235, 148, 972 

+ po/ia.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/hy.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/hu.po,  119, 775, 815, 10, 54, 19, 143, 148, 972 

+ po/hr.po,  118, 768, 787, 10, 54, 20, 150, 148, 972 

+ po/hi.po,  119, 775, 951, 10, 54, 19, 143, 148, 972 

+ po/he.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/gu.po,  119, 775, 908, 10, 54, 19, 143, 148, 972 

+ po/gl.po,  44, 209, 245, 9, 46, 95, 717, 148, 972 

+ po/ga.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/fr.po,  132, 864, 1045, 0, 0, 16, 108, 148, 972 

+ po/fi.po,  132, 864, 749, 0, 0, 16, 108, 148, 972 

+ po/fa.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/eu.po,  1, 2, 4, 2, 7, 145, 963, 148, 972 

+ po/et.po,  103, 683, 640, 10, 54, 35, 235, 148, 972 

+ po/es.po,  132, 864, 1031, 0, 0, 16, 108, 148, 972 

+ po/en_GB.po,  119, 775, 775, 10, 54, 19, 143, 148, 972 

+ po/el.po,  117, 761, 856, 10, 54, 21, 157, 148, 972 

+ po/de.po,  132, 864, 848, 0, 0, 16, 108, 148, 972 

+ po/da.po,  119, 775, 764, 10, 54, 19, 143, 148, 972 

+ po/cy.po,  106, 701, 818, 10, 54, 32, 217, 148, 972 

+ po/cs.po,  132, 864, 824, 0, 0, 16, 108, 148, 972 

+ po/ca.po,  132, 864, 1167, 0, 0, 16, 108, 148, 972 

+ po/bs.po,  110, 730, 747, 10, 54, 28, 188, 148, 972 

+ po/br.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/bo.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/bn_IN.po,  119, 775, 849, 10, 54, 19, 143, 148, 972 

+ po/bn.po,  119, 775, 852, 10, 54, 19, 143, 148, 972 

+ po/bg.po,  119, 775, 834, 10, 54, 19, 143, 148, 972 

+ po/bal.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/ast.po,  0, 0, 0, 0, 0, 157, 1001, 157, 1001 

+ po/as.po,  119, 775, 886, 10, 54, 19, 143, 148, 972 

+ po/ar.po,  101, 666, 701, 10, 54, 37, 252, 148, 972 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,3 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ja.po,  254, 1212, 623, 0, 0, 45, 105, 299, 1317 

+ po/iputils.pot,  0, 0, 0, 0, 0, 299, 1317, 299, 1317 

@@ -0,0 +1,16 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_15924/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_15924/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_3166-1/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_3166-1/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_3166-2/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_3166-2/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_3166-3/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_3166-3/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_4217/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_4217/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_639-2/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_639-2/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_639-3/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_639-3/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_639-5/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./iso_639-5/Makefile.am)

@@ -0,0 +1,611 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ iso_15924/zh_TW.po,  182, 383, 215, 0, 0, 0, 0, 182, 383 

+ iso_15924/zh_HK.po,  67, 84, 71, 21, 46, 94, 253, 182, 383 

+ iso_15924/zh_CN.po,  102, 192, 112, 15, 37, 65, 154, 182, 383 

+ iso_15924/vi.po,  129, 253, 325, 8, 30, 45, 100, 182, 383 

+ iso_15924/uk.po,  182, 383, 339, 0, 0, 0, 0, 182, 383 

+ iso_15924/tr.po,  76, 94, 104, 20, 42, 86, 247, 182, 383 

+ iso_15924/th.po,  155, 309, 204, 3, 13, 24, 61, 182, 383 

+ iso_15924/sv.po,  182, 383, 350, 0, 0, 0, 0, 182, 383 

+ iso_15924/sr@latin.po,  168, 340, 297, 4, 14, 10, 29, 182, 383 

+ iso_15924/sr.po,  168, 340, 297, 4, 14, 10, 29, 182, 383 

+ iso_15924/sl.po,  107, 206, 242, 8, 30, 67, 147, 182, 383 

+ iso_15924/sk.po,  28, 48, 50, 7, 26, 147, 309, 182, 383 

+ iso_15924/sc.po,  182, 383, 403, 0, 0, 0, 0, 182, 383 

+ iso_15924/ru.po,  182, 383, 311, 0, 0, 0, 0, 182, 383 

+ iso_15924/ro.po,  144, 288, 291, 5, 22, 33, 73, 182, 383 

+ iso_15924/pt_BR.po,  182, 383, 389, 0, 0, 0, 0, 182, 383 

+ iso_15924/pt.po,  110, 187, 190, 14, 28, 58, 168, 182, 383 

+ iso_15924/pl.po,  182, 383, 309, 0, 0, 0, 0, 182, 383 

+ iso_15924/oc.po,  36, 36, 36, 0, 0, 146, 347, 182, 383 

+ iso_15924/nn.po,  76, 94, 90, 24, 54, 82, 235, 182, 383 

+ iso_15924/nl.po,  182, 383, 355, 0, 0, 0, 0, 182, 383 

+ iso_15924/nb.po,  84, 115, 110, 23, 54, 75, 214, 182, 383 

+ iso_15924/ml.po,  17, 17, 17, 1, 2, 164, 364, 182, 383 

+ iso_15924/lv.po,  168, 340, 299, 4, 14, 10, 29, 182, 383 

+ iso_15924/lt.po,  123, 233, 219, 9, 34, 50, 116, 182, 383 

+ iso_15924/ko.po,  50, 56, 62, 13, 33, 119, 294, 182, 383 

+ iso_15924/ja.po,  65, 79, 65, 22, 49, 95, 255, 182, 383 

+ iso_15924/it.po,  168, 340, 346, 4, 14, 10, 29, 182, 383 

+ iso_15924/iso_15924.pot,  0, 0, 0, 0, 0, 182, 383, 182, 383 

+ iso_15924/is.po,  182, 383, 372, 0, 0, 0, 0, 182, 383 

+ iso_15924/id.po,  182, 383, 395, 0, 0, 0, 0, 182, 383 

+ iso_15924/ia.po,  138, 299, 293, 44, 84, 0, 0, 182, 383 

+ iso_15924/hu.po,  182, 383, 378, 0, 0, 0, 0, 182, 383 

+ iso_15924/he.po,  31, 36, 36, 8, 22, 143, 325, 182, 383 

+ iso_15924/gl.po,  144, 288, 304, 5, 22, 33, 73, 182, 383 

+ iso_15924/fr.po,  182, 383, 356, 0, 0, 0, 0, 182, 383 

+ iso_15924/fi.po,  158, 315, 254, 4, 14, 20, 54, 182, 383 

+ iso_15924/fa.po,  40, 46, 45, 8, 19, 134, 318, 182, 383 

+ iso_15924/et.po,  178, 377, 283, 4, 6, 0, 0, 182, 383 

+ iso_15924/es.po,  182, 383, 404, 0, 0, 0, 0, 182, 383 

+ iso_15924/eo.po,  162, 328, 288, 4, 14, 16, 41, 182, 383 

+ iso_15924/el.po,  26, 32, 32, 6, 15, 150, 336, 182, 383 

+ iso_15924/de.po,  182, 383, 348, 0, 0, 0, 0, 182, 383 

+ iso_15924/da.po,  182, 383, 356, 0, 0, 0, 0, 182, 383 

+ iso_15924/cy.po,  0, 0, 0, 0, 0, 182, 383, 182, 383 

+ iso_15924/cs.po,  159, 322, 280, 3, 7, 20, 54, 182, 383 

+ iso_15924/ca.po,  48, 96, 104, 2, 10, 132, 277, 182, 383 

+ iso_15924/br.po,  123, 233, 238, 9, 34, 50, 116, 182, 383 

+ iso_15924/bg.po,  27, 35, 31, 8, 24, 147, 324, 182, 383 

+ iso_15924/be.po,  182, 383, 319, 0, 0, 0, 0, 182, 383 

+ iso_15924/ar.po,  71, 89, 87, 25, 55, 86, 239, 182, 383 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ iso_3166-1/zu.po,  110, 130, 134, 120, 318, 190, 534, 420, 982 

+ iso_3166-1/zh_TW.po,  415, 968, 421, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/zh_HK.po,  373, 817, 373, 22, 74, 25, 91, 420, 982 

+ iso_3166-1/zh_CN.po,  420, 982, 420, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/yo.po,  219, 324, 338, 3, 10, 198, 648, 420, 982 

+ iso_3166-1/xh.po,  61, 69, 73, 140, 339, 219, 574, 420, 982 

+ iso_3166-1/wo.po,  393, 890, 914, 19, 66, 8, 26, 420, 982 

+ iso_3166-1/wal.po,  113, 140, 138, 14, 48, 293, 794, 420, 982 

+ iso_3166-1/wa.po,  405, 938, 907, 11, 38, 4, 6, 420, 982 

+ iso_3166-1/vi.po,  410, 959, 1148, 7, 20, 3, 3, 420, 982 

+ iso_3166-1/ve.po,  185, 224, 224, 122, 376, 113, 382, 420, 982 

+ iso_3166-1/uz.po,  198, 266, 259, 3, 10, 219, 706, 420, 982 

+ iso_3166-1/ur.po,  222, 334, 327, 3, 10, 195, 638, 420, 982 

+ iso_3166-1/uk.po,  420, 982, 766, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/ug.po,  408, 949, 758, 9, 30, 3, 3, 420, 982 

+ iso_3166-1/tt@iqtelif.po,  345, 704, 584, 25, 79, 50, 199, 420, 982 

+ iso_3166-1/tt.po,  345, 704, 584, 25, 79, 50, 199, 420, 982 

+ iso_3166-1/tr.po,  415, 968, 792, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/tl.po,  387, 873, 870, 20, 71, 13, 38, 420, 982 

+ iso_3166-1/tk.po,  337, 713, 562, 25, 81, 58, 188, 420, 982 

+ iso_3166-1/tig.po,  113, 140, 138, 14, 48, 293, 794, 420, 982 

+ iso_3166-1/ti.po,  132, 162, 159, 14, 48, 274, 772, 420, 982 

+ iso_3166-1/th.po,  414, 967, 436, 5, 14, 1, 1, 420, 982 

+ iso_3166-1/tg.po,  415, 968, 769, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/te.po,  403, 928, 914, 11, 38, 6, 16, 420, 982 

+ iso_3166-1/ta.po,  391, 888, 716, 20, 67, 9, 27, 420, 982 

+ iso_3166-1/sw.po,  167, 262, 273, 78, 270, 175, 450, 420, 982 

+ iso_3166-1/sv.po,  420, 982, 732, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/sr@latin.po,  411, 960, 783, 7, 20, 2, 2, 420, 982 

+ iso_3166-1/sr.po,  411, 960, 783, 7, 20, 2, 2, 420, 982 

+ iso_3166-1/sq.po,  392, 889, 901, 18, 62, 10, 31, 420, 982 

+ iso_3166-1/son.po,  211, 261, 265, 1, 2, 208, 719, 420, 982 

+ iso_3166-1/so.po,  128, 169, 150, 49, 171, 243, 642, 420, 982 

+ iso_3166-1/sl.po,  411, 960, 769, 7, 20, 2, 2, 420, 982 

+ iso_3166-1/sk.po,  415, 968, 767, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/si.po,  405, 938, 765, 11, 38, 4, 6, 420, 982 

+ iso_3166-1/sd.po,  75, 87, 84, 2, 8, 343, 887, 420, 982 

+ iso_3166-1/sc.po,  420, 982, 1038, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/rw.po,  385, 868, 886, 23, 77, 12, 37, 420, 982 

+ iso_3166-1/ru.po,  415, 968, 751, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/ro.po,  415, 968, 806, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/pt_BR.po,  420, 982, 987, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/pt.po,  420, 982, 984, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/ps.po,  147, 175, 173, 4, 10, 269, 797, 420, 982 

+ iso_3166-1/pl.po,  420, 982, 784, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/pi.po,  161, 186, 175, 0, 0, 259, 796, 420, 982 

+ iso_3166-1/pap.po,  0, 0, 0, 183, 233, 237, 749, 420, 982 

+ iso_3166-1/pa.po,  415, 968, 790, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/or.po,  398, 916, 747, 16, 54, 6, 12, 420, 982 

+ iso_3166-1/oc.po,  376, 838, 736, 18, 58, 26, 86, 420, 982 

+ iso_3166-1/nv.po,  85, 111, 257, 2, 8, 333, 863, 420, 982 

+ iso_3166-1/nso.po,  184, 223, 228, 120, 365, 116, 394, 420, 982 

+ iso_3166-1/nn.po,  403, 932, 689, 10, 32, 7, 18, 420, 982 

+ iso_3166-1/nl.po,  415, 968, 733, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/ne.po,  401, 926, 760, 15, 50, 4, 6, 420, 982 

+ iso_3166-1/nb.po,  416, 969, 757, 4, 13, 0, 0, 420, 982 

+ iso_3166-1/nah.po,  182, 234, 222, 2, 8, 236, 740, 420, 982 

+ iso_3166-1/na.po,  151, 187, 178, 2, 8, 267, 787, 420, 982 

+ iso_3166-1/my.po,  185, 240, 193, 2, 8, 233, 734, 420, 982 

+ iso_3166-1/mt.po,  206, 304, 299, 101, 289, 113, 389, 420, 982 

+ iso_3166-1/ms.po,  263, 453, 410, 24, 87, 133, 442, 420, 982 

+ iso_3166-1/mr.po,  405, 938, 924, 11, 38, 4, 6, 420, 982 

+ iso_3166-1/mo.po,  27, 31, 31, 0, 0, 393, 951, 420, 982 

+ iso_3166-1/mn.po,  195, 266, 266, 98, 322, 127, 394, 420, 982 

+ iso_3166-1/ml.po,  391, 888, 727, 20, 67, 9, 27, 420, 982 

+ iso_3166-1/mk.po,  403, 932, 767, 13, 44, 4, 6, 420, 982 

+ iso_3166-1/mi.po,  210, 401, 336, 96, 331, 114, 250, 420, 982 

+ iso_3166-1/mhr.po,  107, 129, 119, 2, 8, 311, 845, 420, 982 

+ iso_3166-1/mai.po,  73, 88, 79, 2, 8, 345, 886, 420, 982 

+ iso_3166-1/lv.po,  411, 960, 714, 7, 20, 2, 2, 420, 982 

+ iso_3166-1/lt.po,  408, 949, 781, 10, 31, 2, 2, 420, 982 

+ iso_3166-1/lo.po,  79, 96, 80, 2, 8, 339, 878, 420, 982 

+ iso_3166-1/ky.po,  415, 968, 752, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/kw.po,  211, 293, 294, 3, 10, 206, 679, 420, 982 

+ iso_3166-1/kv.po,  109, 133, 128, 2, 8, 309, 841, 420, 982 

+ iso_3166-1/ku.po,  403, 923, 808, 13, 47, 4, 12, 420, 982 

+ iso_3166-1/ko.po,  420, 982, 700, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/kn.po,  384, 865, 711, 23, 79, 13, 38, 420, 982 

+ iso_3166-1/km.po,  413, 958, 473, 6, 23, 1, 1, 420, 982 

+ iso_3166-1/kl.po,  0, 0, 0, 98, 123, 322, 859, 420, 982 

+ iso_3166-1/kk.po,  410, 959, 753, 7, 20, 3, 3, 420, 982 

+ iso_3166-1/ki.po,  115, 145, 141, 2, 8, 303, 829, 420, 982 

+ iso_3166-1/kab.po,  138, 173, 169, 2, 8, 280, 801, 420, 982 

+ iso_3166-1/ka.po,  391, 888, 701, 20, 67, 9, 27, 420, 982 

+ iso_3166-1/jam.po,  191, 251, 242, 2, 8, 227, 723, 420, 982 

+ iso_3166-1/ja.po,  411, 960, 418, 7, 20, 2, 2, 420, 982 

+ iso_3166-1/iu.po,  26, 33, 29, 2, 8, 392, 941, 420, 982 

+ iso_3166-1/it.po,  420, 982, 927, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/iso_3166-1.pot,  0, 0, 0, 0, 0, 420, 982, 420, 982 

+ iso_3166-1/is.po,  420, 982, 706, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/io.po,  210, 288, 265, 3, 10, 207, 684, 420, 982 

+ iso_3166-1/id.po,  420, 982, 798, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/ia.po,  420, 982, 971, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/hy.po,  409, 955, 762, 8, 24, 3, 3, 420, 982 

+ iso_3166-1/hu.po,  415, 968, 736, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/ht.po,  187, 217, 207, 1, 2, 232, 763, 420, 982 

+ iso_3166-1/hr.po,  415, 968, 771, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/hi.po,  408, 949, 948, 9, 30, 3, 3, 420, 982 

+ iso_3166-1/he.po,  420, 982, 901, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/haw.po,  19, 22, 27, 87, 120, 314, 840, 420, 982 

+ iso_3166-1/ha.po,  119, 140, 130, 2, 8, 299, 834, 420, 982 

+ iso_3166-1/gv.po,  191, 253, 374, 2, 8, 227, 721, 420, 982 

+ iso_3166-1/gu.po,  408, 949, 936, 9, 30, 3, 3, 420, 982 

+ iso_3166-1/gn.po,  209, 257, 257, 3, 6, 208, 719, 420, 982 

+ iso_3166-1/gl.po,  410, 959, 974, 8, 21, 2, 2, 420, 982 

+ iso_3166-1/gez.po,  113, 140, 113, 14, 48, 293, 794, 420, 982 

+ iso_3166-1/ga.po,  408, 949, 994, 10, 31, 2, 2, 420, 982 

+ iso_3166-1/fy.po,  209, 296, 256, 3, 10, 208, 676, 420, 982 

+ iso_3166-1/fur.po,  52, 57, 58, 0, 0, 368, 925, 420, 982 

+ iso_3166-1/frp.po,  204, 275, 249, 3, 10, 213, 697, 420, 982 

+ iso_3166-1/fr.po,  420, 982, 925, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/fo.po,  112, 146, 134, 13, 46, 295, 790, 420, 982 

+ iso_3166-1/fi.po,  405, 938, 692, 12, 39, 3, 5, 420, 982 

+ iso_3166-1/ff.po,  82, 96, 86, 2, 8, 336, 878, 420, 982 

+ iso_3166-1/fa.po,  420, 982, 794, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/eu.po,  408, 949, 780, 10, 31, 2, 2, 420, 982 

+ iso_3166-1/et.po,  415, 968, 716, 4, 13, 1, 1, 420, 982 

+ iso_3166-1/es.po,  420, 982, 999, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/eo.po,  411, 960, 718, 7, 20, 2, 2, 420, 982 

+ iso_3166-1/el.po,  420, 982, 969, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/ee.po,  0, 0, 0, 149, 197, 271, 785, 420, 982 

+ iso_3166-1/dz.po,  398, 916, 684, 16, 54, 6, 12, 420, 982 

+ iso_3166-1/dv.po,  203, 276, 258, 3, 10, 214, 696, 420, 982 

+ iso_3166-1/de.po,  420, 982, 744, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/da.po,  420, 982, 790, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/cy.po,  420, 982, 855, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/cv.po,  201, 277, 268, 3, 10, 216, 695, 420, 982 

+ iso_3166-1/csb.po,  94, 108, 106, 2, 8, 324, 866, 420, 982 

+ iso_3166-1/cs.po,  420, 982, 785, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/crh.po,  391, 892, 726, 20, 63, 9, 27, 420, 982 

+ iso_3166-1/ckb.po,  191, 255, 241, 2, 8, 227, 719, 420, 982 

+ iso_3166-1/chr.po,  100, 120, 114, 2, 8, 318, 854, 420, 982 

+ iso_3166-1/ch.po,  23, 31, 25, 0, 0, 397, 951, 420, 982 

+ iso_3166-1/ce.po,  201, 277, 268, 3, 10, 216, 695, 420, 982 

+ iso_3166-1/ca.po,  410, 951, 933, 7, 23, 3, 8, 420, 982 

+ iso_3166-1/byn.po,  113, 140, 138, 14, 48, 293, 794, 420, 982 

+ iso_3166-1/bs.po,  404, 934, 761, 13, 43, 3, 5, 420, 982 

+ iso_3166-1/br.po,  229, 355, 333, 13, 47, 178, 580, 420, 982 

+ iso_3166-1/bn_IN.po,  420, 982, 789, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/bn.po,  410, 959, 768, 7, 20, 3, 3, 420, 982 

+ iso_3166-1/bi.po,  0, 0, 0, 81, 103, 339, 879, 420, 982 

+ iso_3166-1/bg.po,  411, 960, 791, 7, 20, 2, 2, 420, 982 

+ iso_3166-1/be.po,  420, 982, 770, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/bar.po,  153, 200, 188, 2, 8, 265, 774, 420, 982 

+ iso_3166-1/ba.po,  0, 0, 0, 201, 278, 219, 704, 420, 982 

+ iso_3166-1/az.po,  215, 301, 296, 191, 633, 14, 48, 420, 982 

+ iso_3166-1/ay.po,  0, 0, 0, 69, 98, 351, 884, 420, 982 

+ iso_3166-1/ast.po,  406, 942, 902, 10, 34, 4, 6, 420, 982 

+ iso_3166-1/as.po,  398, 916, 739, 16, 54, 6, 12, 420, 982 

+ iso_3166-1/ar.po,  420, 982, 809, 0, 0, 0, 0, 420, 982 

+ iso_3166-1/an.po,  0, 0, 0, 210, 297, 210, 685, 420, 982 

+ iso_3166-1/am.po,  123, 165, 151, 171, 418, 126, 399, 420, 982 

+ iso_3166-1/ak.po,  0, 0, 0, 43, 63, 377, 919, 420, 982 

+ iso_3166-1/af.po,  403, 928, 855, 8, 24, 9, 30, 420, 982 

+ iso_3166-1/ach.po,  211, 261, 293, 1, 2, 208, 719, 420, 982 

+ iso_3166-1/ace.po,  0, 0, 0, 180, 237, 240, 745, 420, 982 

+ iso_3166-1/ab.po,  0, 0, 0, 50, 72, 370, 910, 420, 982 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ iso_3166-2/zh_TW.po,  447, 542, 447, 4219, 6124, 29, 89, 4695, 6755 

+ iso_3166-2/zh_CN.po,  2991, 3999, 2993, 1120, 1708, 584, 1048, 4695, 6755 

+ iso_3166-2/wa.po,  57, 81, 81, 893, 1082, 3745, 5592, 4695, 6755 

+ iso_3166-2/vi.po,  3878, 5312, 5511, 512, 857, 305, 586, 4695, 6755 

+ iso_3166-2/ve.po,  12, 16, 16, 2124, 2624, 2559, 4115, 4695, 6755 

+ iso_3166-2/uk.po,  4654, 6688, 5987, 28, 47, 13, 20, 4695, 6755 

+ iso_3166-2/tr.po,  71, 99, 99, 2120, 2620, 2504, 4036, 4695, 6755 

+ iso_3166-2/th.po,  1766, 2489, 1953, 125, 241, 2804, 4025, 4695, 6755 

+ iso_3166-2/sv.po,  4620, 6591, 6401, 56, 104, 19, 60, 4695, 6755 

+ iso_3166-2/sr@latin.po,  3585, 4716, 4730, 88, 168, 1022, 1871, 4695, 6755 

+ iso_3166-2/sr.po,  3585, 4716, 4730, 88, 168, 1022, 1871, 4695, 6755 

+ iso_3166-2/sl.po,  2134, 2864, 2860, 2207, 3248, 354, 643, 4695, 6755 

+ iso_3166-2/sk.po,  344, 525, 519, 82, 145, 4269, 6085, 4695, 6755 

+ iso_3166-2/sc.po,  2844, 3992, 4393, 52, 97, 1799, 2666, 4695, 6755 

+ iso_3166-2/ro.po,  753, 914, 927, 583, 745, 3359, 5096, 4695, 6755 

+ iso_3166-2/pl.po,  4587, 6612, 6387, 28, 47, 80, 96, 4695, 6755 

+ iso_3166-2/oc.po,  118, 131, 188, 51, 64, 4526, 6560, 4695, 6755 

+ iso_3166-2/nso.po,  12, 16, 17, 2127, 2627, 2556, 4112, 4695, 6755 

+ iso_3166-2/nl.po,  4620, 6591, 6288, 56, 104, 19, 60, 4695, 6755 

+ iso_3166-2/nb_NO.po,  0, 0, 0, 0, 0, 4695, 6755, 4695, 6755 

+ iso_3166-2/lv.po,  54, 69, 61, 1866, 2282, 2775, 4404, 4695, 6755 

+ iso_3166-2/lt.po,  2022, 2714, 3180, 526, 828, 2147, 3213, 4695, 6755 

+ iso_3166-2/ky.po,  19, 29, 26, 0, 0, 4676, 6726, 4695, 6755 

+ iso_3166-2/ko.po,  60, 76, 67, 1847, 2237, 2788, 4442, 4695, 6755 

+ iso_3166-2/ja.po,  2547, 3397, 2559, 92, 165, 2056, 3193, 4695, 6755 

+ iso_3166-2/it.po,  4607, 6559, 6812, 65, 123, 23, 73, 4695, 6755 

+ iso_3166-2/iso_3166-2.pot,  0, 0, 0, 0, 0, 4695, 6755, 4695, 6755 

+ iso_3166-2/is.po,  124, 179, 139, 0, 0, 4571, 6576, 4695, 6755 

+ iso_3166-2/id.po,  4654, 6688, 6692, 28, 47, 13, 20, 4695, 6755 

+ iso_3166-2/hu.po,  1938, 2633, 2799, 587, 928, 2170, 3194, 4695, 6755 

+ iso_3166-2/he.po,  0, 0, 0, 0, 0, 4695, 6755, 4695, 6755 

+ iso_3166-2/ga.po,  45, 55, 79, 1450, 1738, 3200, 4962, 4695, 6755 

+ iso_3166-2/fr.po,  4617, 6584, 6341, 59, 111, 19, 60, 4695, 6755 

+ iso_3166-2/fi.po,  190, 328, 335, 53, 79, 4452, 6348, 4695, 6755 

+ iso_3166-2/eu.po,  71, 99, 98, 2115, 2615, 2509, 4041, 4695, 6755 

+ iso_3166-2/et.po,  31, 43, 37, 1, 1, 4663, 6711, 4695, 6755 

+ iso_3166-2/es.po,  121, 169, 167, 2096, 2596, 2478, 3990, 4695, 6755 

+ iso_3166-2/eo.po,  71, 99, 83, 2088, 2579, 2536, 4077, 4695, 6755 

+ iso_3166-2/en.po,  2527, 3294, 3294, 1569, 2370, 599, 1091, 4695, 6755 

+ iso_3166-2/el.po,  254, 325, 329, 76, 119, 4365, 6311, 4695, 6755 

+ iso_3166-2/de.po,  4695, 6755, 6553, 0, 0, 0, 0, 4695, 6755 

+ iso_3166-2/da.po,  3953, 5414, 5338, 391, 670, 351, 671, 4695, 6755 

+ iso_3166-2/cs.po,  223, 317, 315, 2137, 2652, 2335, 3786, 4695, 6755 

+ iso_3166-2/crh.po,  79, 109, 109, 49, 68, 4567, 6578, 4695, 6755 

+ iso_3166-2/ca.po,  71, 99, 100, 2218, 2753, 2406, 3903, 4695, 6755 

+ iso_3166-2/bs.po,  71, 99, 98, 2221, 2756, 2403, 3900, 4695, 6755 

+ iso_3166-2/bg.po,  375, 510, 498, 2053, 2553, 2267, 3692, 4695, 6755 

+ iso_3166-2/be.po,  4654, 6688, 6075, 28, 47, 13, 20, 4695, 6755 

+ iso_3166-2/az.po,  69, 96, 95, 2218, 2753, 2408, 3906, 4695, 6755 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ iso_3166-3/zu.po,  0, 0, 0, 10, 32, 21, 72, 31, 104 

+ iso_3166-3/zh_TW.po,  31, 104, 31, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/zh_HK.po,  1, 2, 1, 14, 53, 16, 49, 31, 104 

+ iso_3166-3/zh_CN.po,  31, 104, 32, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/xh.po,  0, 0, 0, 10, 32, 21, 72, 31, 104 

+ iso_3166-3/wo.po,  31, 104, 103, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/wal.po,  1, 2, 2, 4, 15, 26, 87, 31, 104 

+ iso_3166-3/wa.po,  31, 104, 116, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/vi.po,  31, 104, 137, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ve.po,  1, 2, 2, 10, 32, 20, 70, 31, 104 

+ iso_3166-3/uk.po,  31, 104, 93, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ug.po,  31, 104, 101, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/tt@iqtelif.po,  1, 2, 2, 12, 45, 18, 57, 31, 104 

+ iso_3166-3/tt.po,  1, 2, 2, 12, 45, 18, 57, 31, 104 

+ iso_3166-3/tr.po,  31, 104, 93, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/tl.po,  1, 2, 2, 14, 53, 16, 49, 31, 104 

+ iso_3166-3/tk.po,  0, 0, 0, 12, 45, 19, 59, 31, 104 

+ iso_3166-3/tig.po,  1, 2, 2, 4, 15, 26, 87, 31, 104 

+ iso_3166-3/ti.po,  1, 2, 2, 4, 15, 26, 87, 31, 104 

+ iso_3166-3/th.po,  31, 104, 42, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/te.po,  31, 104, 104, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ta.po,  31, 104, 98, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/sw.po,  0, 0, 0, 2, 5, 29, 99, 31, 104 

+ iso_3166-3/sv.po,  31, 104, 73, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/sr@latin.po,  31, 104, 96, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/sr.po,  31, 104, 96, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/sq.po,  31, 104, 111, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/so.po,  0, 0, 0, 8, 35, 23, 69, 31, 104 

+ iso_3166-3/sl.po,  31, 104, 93, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/sk.po,  31, 104, 92, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/si.po,  31, 104, 94, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/sc.po,  31, 104, 122, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/rw.po,  2, 5, 6, 13, 50, 16, 49, 31, 104 

+ iso_3166-3/ru.po,  31, 104, 92, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ro.po,  31, 104, 103, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/pt_BR.po,  31, 104, 114, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/pt.po,  31, 104, 116, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ps.po,  0, 0, 0, 0, 0, 31, 104, 31, 104 

+ iso_3166-3/pl.po,  31, 104, 102, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/pa.po,  31, 104, 88, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/or.po,  31, 104, 98, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/oc.po,  13, 38, 22, 0, 0, 18, 66, 31, 104 

+ iso_3166-3/nso.po,  1, 2, 2, 10, 32, 20, 70, 31, 104 

+ iso_3166-3/nn.po,  31, 104, 86, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/nl.po,  31, 104, 88, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ne.po,  31, 104, 93, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/nb.po,  31, 104, 87, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/mt.po,  0, 0, 0, 13, 42, 18, 62, 31, 104 

+ iso_3166-3/ms.po,  1, 2, 2, 10, 31, 20, 71, 31, 104 

+ iso_3166-3/mr.po,  31, 104, 104, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/mn.po,  0, 0, 0, 8, 27, 23, 77, 31, 104 

+ iso_3166-3/ml.po,  31, 104, 90, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/mk.po,  31, 104, 99, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/mi.po,  0, 0, 0, 1, 4, 30, 100, 31, 104 

+ iso_3166-3/lv.po,  31, 104, 88, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/lt.po,  31, 104, 95, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ku.po,  31, 104, 109, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ko.po,  31, 104, 76, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/kn.po,  0, 0, 0, 15, 55, 16, 49, 31, 104 

+ iso_3166-3/km.po,  31, 104, 46, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/kk.po,  31, 104, 89, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ka.po,  31, 104, 95, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ja.po,  31, 104, 36, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/it.po,  31, 104, 111, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/iso_3166-3.pot,  0, 0, 0, 0, 0, 31, 104, 31, 104 

+ iso_3166-3/is.po,  31, 104, 74, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/id.po,  31, 104, 89, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ia.po,  31, 104, 113, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/hy.po,  31, 104, 94, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/hu.po,  31, 104, 79, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/hr.po,  31, 104, 95, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/hi.po,  31, 104, 103, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/he.po,  31, 104, 100, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/haw.po,  0, 0, 0, 0, 0, 31, 104, 31, 104 

+ iso_3166-3/gu.po,  31, 104, 101, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/gl.po,  31, 104, 117, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/gez.po,  1, 2, 1, 4, 15, 26, 87, 31, 104 

+ iso_3166-3/ga.po,  31, 104, 111, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/fr.po,  31, 104, 106, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/fo.po,  0, 0, 0, 6, 16, 25, 88, 31, 104 

+ iso_3166-3/fi.po,  31, 104, 75, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/fa.po,  31, 104, 109, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/eu.po,  31, 104, 93, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/et.po,  31, 104, 85, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/es.po,  31, 104, 121, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/eo.po,  31, 104, 95, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/el.po,  31, 104, 107, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/dz.po,  31, 104, 74, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/de.po,  31, 104, 79, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/da.po,  31, 104, 89, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/cy.po,  31, 104, 101, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/cs.po,  31, 104, 97, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/crh.po,  31, 104, 93, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ca.po,  31, 104, 115, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/byn.po,  1, 2, 2, 4, 15, 26, 87, 31, 104 

+ iso_3166-3/bs.po,  31, 104, 96, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/br.po,  21, 82, 81, 0, 0, 10, 22, 31, 104 

+ iso_3166-3/bn_IN.po,  31, 104, 96, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/bn.po,  31, 104, 96, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/bg.po,  31, 104, 93, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/be.po,  31, 104, 94, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/az.po,  1, 2, 2, 14, 53, 16, 49, 31, 104 

+ iso_3166-3/ast.po,  31, 104, 98, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/as.po,  31, 104, 96, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/ar.po,  31, 104, 89, 0, 0, 0, 0, 31, 104 

+ iso_3166-3/am.po,  1, 2, 2, 9, 40, 21, 62, 31, 104 

+ iso_3166-3/af.po,  9, 27, 18, 1, 2, 21, 75, 31, 104 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ iso_4217/zh_TW.po,  170, 348, 179, 0, 0, 0, 0, 170, 348 

+ iso_4217/zh_HK.po,  95, 198, 95, 37, 77, 38, 73, 170, 348 

+ iso_4217/zh_CN.po,  170, 348, 179, 0, 0, 0, 0, 170, 348 

+ iso_4217/vi.po,  145, 259, 393, 17, 65, 8, 24, 170, 348 

+ iso_4217/uk.po,  170, 348, 333, 0, 0, 0, 0, 170, 348 

+ iso_4217/tr.po,  96, 199, 202, 39, 95, 35, 54, 170, 348 

+ iso_4217/th.po,  145, 259, 247, 17, 65, 8, 24, 170, 348 

+ iso_4217/sv.po,  170, 348, 302, 0, 0, 0, 0, 170, 348 

+ iso_4217/sr@latin.po,  145, 259, 245, 17, 65, 8, 24, 170, 348 

+ iso_4217/sr.po,  145, 259, 245, 17, 65, 8, 24, 170, 348 

+ iso_4217/sl.po,  145, 259, 257, 17, 65, 8, 24, 170, 348 

+ iso_4217/sk.po,  87, 184, 179, 33, 56, 50, 108, 170, 348 

+ iso_4217/sc.po,  170, 348, 408, 0, 0, 0, 0, 170, 348 

+ iso_4217/rw.po,  85, 176, 241, 49, 117, 36, 55, 170, 348 

+ iso_4217/ru.po,  170, 348, 339, 0, 0, 0, 0, 170, 348 

+ iso_4217/ro.po,  143, 254, 255, 16, 56, 11, 38, 170, 348 

+ iso_4217/pt_BR.po,  170, 348, 398, 0, 0, 0, 0, 170, 348 

+ iso_4217/pt.po,  170, 348, 388, 0, 0, 0, 0, 170, 348 

+ iso_4217/pl.po,  170, 348, 318, 0, 0, 0, 0, 170, 348 

+ iso_4217/oc.po,  4, 5, 5, 0, 0, 166, 343, 170, 348 

+ iso_4217/nn.po,  143, 255, 279, 19, 69, 8, 24, 170, 348 

+ iso_4217/nl.po,  170, 348, 370, 0, 0, 0, 0, 170, 348 

+ iso_4217/nb.po,  159, 300, 321, 11, 48, 0, 0, 170, 348 

+ iso_4217/mn.po,  84, 174, 174, 49, 118, 37, 56, 170, 348 

+ iso_4217/lv.po,  145, 259, 255, 17, 65, 8, 24, 170, 348 

+ iso_4217/lt.po,  143, 255, 254, 19, 69, 8, 24, 170, 348 

+ iso_4217/ko.po,  170, 348, 389, 0, 0, 0, 0, 170, 348 

+ iso_4217/ja.po,  170, 348, 176, 0, 0, 0, 0, 170, 348 

+ iso_4217/it.po,  170, 348, 356, 0, 0, 0, 0, 170, 348 

+ iso_4217/iso_4217.pot,  0, 0, 0, 0, 0, 170, 348, 170, 348 

+ iso_4217/is.po,  170, 348, 309, 0, 0, 0, 0, 170, 348 

+ iso_4217/id.po,  170, 348, 345, 0, 0, 0, 0, 170, 348 

+ iso_4217/hu.po,  170, 348, 337, 0, 0, 0, 0, 170, 348 

+ iso_4217/hr.po,  170, 348, 344, 0, 0, 0, 0, 170, 348 

+ iso_4217/gl.po,  46, 99, 126, 36, 83, 88, 166, 170, 348 

+ iso_4217/ga.po,  73, 154, 176, 18, 32, 79, 162, 170, 348 

+ iso_4217/fr.po,  170, 348, 376, 0, 0, 0, 0, 170, 348 

+ iso_4217/fi.po,  145, 259, 256, 17, 65, 8, 24, 170, 348 

+ iso_4217/et.po,  170, 348, 318, 0, 0, 0, 0, 170, 348 

+ iso_4217/es.po,  170, 348, 390, 0, 0, 0, 0, 170, 348 

+ iso_4217/el.po,  155, 280, 280, 15, 68, 0, 0, 170, 348 

+ iso_4217/de.po,  170, 348, 280, 0, 0, 0, 0, 170, 348 

+ iso_4217/da.po,  170, 348, 308, 0, 0, 0, 0, 170, 348 

+ iso_4217/cs.po,  170, 348, 334, 0, 0, 0, 0, 170, 348 

+ iso_4217/ca.po,  167, 326, 371, 0, 0, 3, 22, 170, 348 

+ iso_4217/br.po,  102, 181, 181, 11, 23, 57, 144, 170, 348 

+ iso_4217/be.po,  170, 348, 326, 0, 0, 0, 0, 170, 348 

+ iso_4217/ar.po,  64, 134, 133, 0, 0, 106, 214, 170, 348 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ iso_639-2/zu.po,  44, 44, 46, 134, 191, 309, 536, 487, 771 

+ iso_639-2/zh_TW.po,  487, 771, 517, 0, 0, 0, 0, 487, 771 

+ iso_639-2/zh_HK.po,  424, 602, 427, 47, 121, 16, 48, 487, 771 

+ iso_639-2/zh_CN.po,  487, 771, 492, 0, 0, 0, 0, 487, 771 

+ iso_639-2/xh.po,  49, 49, 49, 137, 205, 301, 517, 487, 771 

+ iso_639-2/wa.po,  478, 747, 721, 5, 17, 4, 7, 487, 771 

+ iso_639-2/vi.po,  480, 751, 1392, 5, 17, 2, 3, 487, 771 

+ iso_639-2/ve.po,  37, 37, 37, 255, 337, 195, 397, 487, 771 

+ iso_639-2/uk.po,  487, 771, 718, 0, 0, 0, 0, 487, 771 

+ iso_639-2/tt@iqtelif.po,  148, 155, 155, 66, 140, 273, 476, 487, 771 

+ iso_639-2/tt.po,  148, 155, 155, 66, 140, 273, 476, 487, 771 

+ iso_639-2/tr.po,  487, 771, 882, 0, 0, 0, 0, 487, 771 

+ iso_639-2/tig.po,  119, 122, 119, 49, 98, 319, 551, 487, 771 

+ iso_639-2/ti.po,  119, 122, 119, 49, 98, 319, 551, 487, 771 

+ iso_639-2/th.po,  269, 435, 327, 3, 11, 215, 325, 487, 771 

+ iso_639-2/te.po,  475, 738, 737, 7, 21, 5, 12, 487, 771 

+ iso_639-2/ta.po,  475, 738, 716, 7, 21, 5, 12, 487, 771 

+ iso_639-2/sv.po,  487, 771, 627, 0, 0, 0, 0, 487, 771 

+ iso_639-2/sr@latin.po,  487, 771, 750, 0, 0, 0, 0, 487, 771 

+ iso_639-2/sr.po,  487, 771, 750, 0, 0, 0, 0, 487, 771 

+ iso_639-2/sl.po,  480, 751, 670, 5, 17, 2, 3, 487, 771 

+ iso_639-2/sk.po,  485, 768, 752, 1, 2, 1, 1, 487, 771 

+ iso_639-2/sc.po,  487, 771, 803, 0, 0, 0, 0, 487, 771 

+ iso_639-2/rw.po,  356, 420, 430, 95, 231, 36, 120, 487, 771 

+ iso_639-2/ru.po,  480, 751, 686, 5, 17, 2, 3, 487, 771 

+ iso_639-2/ro.po,  478, 747, 741, 5, 17, 4, 7, 487, 771 

+ iso_639-2/pt_BR.po,  487, 771, 755, 0, 0, 0, 0, 487, 771 

+ iso_639-2/pt.po,  274, 346, 345, 138, 223, 75, 202, 487, 771 

+ iso_639-2/ps.po,  29, 29, 29, 33, 63, 425, 679, 487, 771 

+ iso_639-2/pl.po,  487, 771, 714, 0, 0, 0, 0, 487, 771 

+ iso_639-2/pa.po,  487, 771, 770, 0, 0, 0, 0, 487, 771 

+ iso_639-2/or.po,  487, 771, 776, 0, 0, 0, 0, 487, 771 

+ iso_639-2/oc.po,  159, 178, 181, 26, 54, 302, 539, 487, 771 

+ iso_639-2/nso.po,  55, 56, 60, 99, 149, 333, 566, 487, 771 

+ iso_639-2/nn.po,  217, 321, 251, 85, 190, 185, 260, 487, 771 

+ iso_639-2/nl.po,  487, 771, 721, 0, 0, 0, 0, 487, 771 

+ iso_639-2/nb.po,  161, 192, 178, 105, 154, 221, 425, 487, 771 

+ iso_639-2/mt.po,  240, 271, 272, 169, 279, 78, 221, 487, 771 

+ iso_639-2/ms.po,  45, 45, 47, 138, 194, 304, 532, 487, 771 

+ iso_639-2/mr.po,  478, 747, 752, 5, 17, 4, 7, 487, 771 

+ iso_639-2/mn.po,  135, 141, 142, 173, 264, 179, 366, 487, 771 

+ iso_639-2/ml.po,  475, 738, 719, 7, 21, 5, 12, 487, 771 

+ iso_639-2/mk.po,  35, 35, 35, 143, 200, 309, 536, 487, 771 

+ iso_639-2/mi.po,  24, 24, 51, 154, 211, 309, 536, 487, 771 

+ iso_639-2/lv.po,  480, 751, 593, 5, 17, 2, 3, 487, 771 

+ iso_639-2/lt.po,  471, 727, 677, 7, 21, 9, 23, 487, 771 

+ iso_639-2/kok.po,  118, 123, 120, 54, 111, 315, 537, 487, 771 

+ iso_639-2/ko.po,  487, 771, 607, 0, 0, 0, 0, 487, 771 

+ iso_639-2/kn.po,  475, 738, 738, 7, 21, 5, 12, 487, 771 

+ iso_639-2/ja.po,  428, 609, 523, 45, 117, 14, 45, 487, 771 

+ iso_639-2/it.po,  487, 771, 776, 0, 0, 0, 0, 487, 771 

+ iso_639-2/iso_639-2.pot,  0, 0, 0, 0, 0, 487, 771, 487, 771 

+ iso_639-2/is.po,  487, 771, 744, 0, 0, 0, 0, 487, 771 

+ iso_639-2/id.po,  487, 771, 788, 0, 0, 0, 0, 487, 771 

+ iso_639-2/hu.po,  487, 771, 716, 0, 0, 0, 0, 487, 771 

+ iso_639-2/hr.po,  234, 390, 350, 4, 15, 249, 366, 487, 771 

+ iso_639-2/hi.po,  118, 121, 120, 49, 98, 320, 552, 487, 771 

+ iso_639-2/he.po,  49, 49, 49, 132, 189, 306, 533, 487, 771 

+ iso_639-2/gu.po,  478, 747, 752, 5, 17, 4, 7, 487, 771 

+ iso_639-2/gl.po,  478, 747, 783, 5, 17, 4, 7, 487, 771 

+ iso_639-2/gez.po,  119, 122, 119, 49, 98, 319, 551, 487, 771 

+ iso_639-2/ga.po,  283, 464, 421, 3, 11, 201, 296, 487, 771 

+ iso_639-2/fr.po,  487, 771, 718, 0, 0, 0, 0, 487, 771 

+ iso_639-2/fi.po,  478, 747, 551, 5, 17, 4, 7, 487, 771 

+ iso_639-2/fa.po,  303, 361, 361, 79, 197, 105, 213, 487, 771 

+ iso_639-2/eu.po,  361, 539, 486, 38, 95, 88, 137, 487, 771 

+ iso_639-2/et.po,  487, 771, 639, 0, 0, 0, 0, 487, 771 

+ iso_639-2/es.po,  487, 771, 784, 0, 0, 0, 0, 487, 771 

+ iso_639-2/eo.po,  480, 751, 645, 5, 17, 2, 3, 487, 771 

+ iso_639-2/el.po,  131, 213, 210, 45, 99, 311, 459, 487, 771 

+ iso_639-2/de.po,  487, 771, 639, 0, 0, 0, 0, 487, 771 

+ iso_639-2/da.po,  487, 771, 698, 0, 0, 0, 0, 487, 771 

+ iso_639-2/cy.po,  115, 116, 115, 176, 257, 196, 398, 487, 771 

+ iso_639-2/cs.po,  487, 771, 746, 0, 0, 0, 0, 487, 771 

+ iso_639-2/crh.po,  427, 603, 718, 39, 95, 21, 73, 487, 771 

+ iso_639-2/ca.po,  487, 771, 790, 0, 0, 0, 0, 487, 771 

+ iso_639-2/byn.po,  119, 122, 119, 49, 98, 319, 551, 487, 771 

+ iso_639-2/bs.po,  47, 47, 47, 117, 159, 323, 565, 487, 771 

+ iso_639-2/br.po,  176, 238, 218, 38, 93, 273, 440, 487, 771 

+ iso_639-2/bn.po,  479, 748, 747, 5, 17, 3, 6, 487, 771 

+ iso_639-2/bg.po,  255, 417, 348, 4, 15, 228, 339, 487, 771 

+ iso_639-2/be.po,  487, 771, 635, 0, 0, 0, 0, 487, 771 

+ iso_639-2/az.po,  24, 24, 24, 161, 217, 302, 530, 487, 771 

+ iso_639-2/ast.po,  477, 745, 750, 6, 19, 4, 7, 487, 771 

+ iso_639-2/as.po,  477, 745, 748, 6, 19, 4, 7, 487, 771 

+ iso_639-2/ar.po,  173, 229, 234, 120, 170, 194, 372, 487, 771 

+ iso_639-2/am.po,  118, 121, 118, 51, 100, 318, 550, 487, 771 

+ iso_639-2/af.po,  157, 185, 166, 146, 211, 184, 375, 487, 771 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ iso_639-3/zu.po,  49, 49, 51, 2873, 3575, 6323, 10224, 9245, 13848 

+ iso_639-3/zh_TW.po,  633, 1195, 704, 2641, 3206, 5971, 9447, 9245, 13848 

+ iso_639-3/zh_CN.po,  305, 419, 320, 2951, 3784, 5989, 9645, 9245, 13848 

+ iso_639-3/xh.po,  52, 52, 52, 2784, 3470, 6409, 10326, 9245, 13848 

+ iso_639-3/wa.po,  322, 357, 366, 4066, 5629, 4857, 7862, 9245, 13848 

+ iso_639-3/vi.po,  339, 378, 789, 4885, 6557, 4021, 6913, 9245, 13848 

+ iso_639-3/ve.po,  40, 40, 42, 4327, 5593, 4878, 8215, 9245, 13848 

+ iso_639-3/uk.po,  9245, 13848, 13127, 0, 0, 0, 0, 9245, 13848 

+ iso_639-3/tt@iqtelif.po,  149, 155, 156, 3305, 4421, 5791, 9272, 9245, 13848 

+ iso_639-3/tt.po,  149, 155, 156, 3305, 4421, 5791, 9272, 9245, 13848 

+ iso_639-3/tr.po,  7405, 10029, 10134, 657, 1284, 1183, 2535, 9245, 13848 

+ iso_639-3/tig.po,  120, 123, 120, 2922, 3857, 6203, 9868, 9245, 13848 

+ iso_639-3/ti.po,  121, 124, 121, 2921, 3856, 6203, 9868, 9245, 13848 

+ iso_639-3/th.po,  717, 1493, 872, 192, 415, 8336, 11940, 9245, 13848 

+ iso_639-3/ta.po,  7371, 9970, 9855, 1323, 2805, 551, 1073, 9245, 13848 

+ iso_639-3/sv.po,  9245, 13848, 13582, 0, 0, 0, 0, 9245, 13848 

+ iso_639-3/sr@latin.po,  332, 373, 374, 4923, 6621, 3990, 6854, 9245, 13848 

+ iso_639-3/sr.po,  332, 373, 374, 4923, 6621, 3990, 6854, 9245, 13848 

+ iso_639-3/sl.po,  322, 362, 350, 4071, 5656, 4852, 7830, 9245, 13848 

+ iso_639-3/sk.po,  256, 322, 327, 2873, 3574, 6116, 9952, 9245, 13848 

+ iso_639-3/sc.po,  479, 590, 616, 0, 0, 8766, 13258, 9245, 13848 

+ iso_639-3/rw.po,  328, 359, 361, 4920, 6621, 3997, 6868, 9245, 13848 

+ iso_639-3/ru.po,  351, 401, 392, 4715, 6213, 4179, 7234, 9245, 13848 

+ iso_639-3/ro.po,  247, 308, 315, 3043, 3762, 5955, 9778, 9245, 13848 

+ iso_639-3/pt_BR.po,  427, 515, 523, 2057, 3005, 6761, 10328, 9245, 13848 

+ iso_639-3/pt.po,  245, 271, 272, 4844, 6362, 4156, 7215, 9245, 13848 

+ iso_639-3/ps.po,  29, 29, 29, 1041, 1368, 8175, 12451, 9245, 13848 

+ iso_639-3/pl.po,  2639, 4164, 3978, 0, 0, 6606, 9684, 9245, 13848 

+ iso_639-3/pa.po,  7378, 9982, 9979, 1320, 2798, 547, 1068, 9245, 13848 

+ iso_639-3/or.po,  3505, 5411, 5409, 1001, 2177, 4739, 6260, 9245, 13848 

+ iso_639-3/oc.po,  78, 86, 88, 130, 247, 9037, 13515, 9245, 13848 

+ iso_639-3/nso.po,  59, 60, 62, 2828, 3687, 6358, 10101, 9245, 13848 

+ iso_639-3/nn.po,  175, 204, 193, 3660, 5191, 5410, 8453, 9245, 13848 

+ iso_639-3/nl.po,  1629, 2248, 2163, 3812, 5050, 3804, 6550, 9245, 13848 

+ iso_639-3/nb.po,  133, 139, 140, 3914, 5020, 5198, 8689, 9245, 13848 

+ iso_639-3/mt.po,  239, 261, 264, 4890, 6429, 4116, 7158, 9245, 13848 

+ iso_639-3/ms.po,  49, 49, 50, 2877, 3561, 6319, 10238, 9245, 13848 

+ iso_639-3/mr.po,  7442, 10085, 10090, 1264, 2710, 539, 1053, 9245, 13848 

+ iso_639-3/mn.po,  140, 147, 148, 4359, 5651, 4746, 8050, 9245, 13848 

+ iso_639-3/mk.po,  39, 39, 39, 2883, 3585, 6323, 10224, 9245, 13848 

+ iso_639-3/mi.po,  28, 28, 61, 2894, 3596, 6323, 10224, 9245, 13848 

+ iso_639-3/lv.po,  255, 318, 289, 2874, 3578, 6116, 9952, 9245, 13848 

+ iso_639-3/lt.po,  638, 1096, 1112, 589, 1228, 8018, 11524, 9245, 13848 

+ iso_639-3/kok.po,  119, 124, 122, 2925, 3904, 6201, 9820, 9245, 13848 

+ iso_639-3/ko.po,  360, 437, 435, 2911, 3612, 5974, 9799, 9245, 13848 

+ iso_639-3/kn.po,  6608, 9115, 9134, 1290, 2747, 1347, 1986, 9245, 13848 

+ iso_639-3/ja.po,  338, 375, 360, 4885, 6557, 4022, 6916, 9245, 13848 

+ iso_639-3/it.po,  8606, 12469, 12738, 448, 1004, 191, 375, 9245, 13848 

+ iso_639-3/iso_639-3.pot,  0, 0, 0, 0, 0, 9245, 13848, 9245, 13848 

+ iso_639-3/is.po,  3572, 4998, 4573, 1336, 1577, 4337, 7273, 9245, 13848 

+ iso_639-3/id.po,  7196, 9659, 9741, 430, 959, 1619, 3230, 9245, 13848 

+ iso_639-3/hu.po,  980, 1112, 1080, 4273, 5880, 3992, 6856, 9245, 13848 

+ iso_639-3/hr.po,  538, 1113, 999, 42, 100, 8665, 12635, 9245, 13848 

+ iso_639-3/hi.po,  118, 121, 120, 2943, 3907, 6184, 9820, 9245, 13848 

+ iso_639-3/he.po,  53, 53, 53, 2872, 3574, 6320, 10221, 9245, 13848 

+ iso_639-3/gu.po,  888, 1039, 1041, 377, 728, 7980, 12081, 9245, 13848 

+ iso_639-3/gl.po,  7470, 10120, 10525, 1249, 2690, 526, 1038, 9245, 13848 

+ iso_639-3/gez.po,  120, 123, 120, 2922, 3857, 6203, 9868, 9245, 13848 

+ iso_639-3/ga.po,  202, 233, 233, 3741, 5221, 5302, 8394, 9245, 13848 

+ iso_639-3/fr.po,  9245, 13848, 14903, 0, 0, 0, 0, 9245, 13848 

+ iso_639-3/fi.po,  338, 375, 348, 4872, 6543, 4035, 6930, 9245, 13848 

+ iso_639-3/fa.po,  280, 310, 315, 4606, 6258, 4359, 7280, 9245, 13848 

+ iso_639-3/eu.po,  397, 548, 505, 2757, 3453, 6091, 9847, 9245, 13848 

+ iso_639-3/et.po,  702, 959, 845, 2088, 2594, 6455, 10295, 9245, 13848 

+ iso_639-3/es.po,  787, 1024, 1043, 4780, 6455, 3678, 6369, 9245, 13848 

+ iso_639-3/eo.po,  339, 378, 371, 4898, 6570, 4008, 6900, 9245, 13848 

+ iso_639-3/el.po,  846, 1723, 1735, 443, 866, 7956, 11259, 9245, 13848 

+ iso_639-3/de.po,  9060, 13550, 12226, 185, 298, 0, 0, 9245, 13848 

+ iso_639-3/da.po,  435, 672, 570, 4848, 6378, 3962, 6798, 9245, 13848 

+ iso_639-3/cy.po,  120, 120, 120, 3986, 4950, 5139, 8778, 9245, 13848 

+ iso_639-3/cs.po,  335, 372, 375, 3410, 4866, 5500, 8610, 9245, 13848 

+ iso_639-3/crh.po,  6573, 8061, 8159, 1097, 2200, 1575, 3587, 9245, 13848 

+ iso_639-3/ca.po,  587, 831, 869, 3730, 4786, 4928, 8231, 9245, 13848 

+ iso_639-3/byn.po,  120, 123, 120, 2922, 3857, 6203, 9868, 9245, 13848 

+ iso_639-3/bs.po,  51, 51, 51, 2644, 3221, 6550, 10576, 9245, 13848 

+ iso_639-3/br.po,  809, 1040, 1063, 490, 983, 7946, 11825, 9245, 13848 

+ iso_639-3/bn.po,  1543, 2028, 2030, 4009, 5565, 3693, 6255, 9245, 13848 

+ iso_639-3/bg.po,  395, 680, 567, 16, 31, 8834, 13137, 9245, 13848 

+ iso_639-3/az.po,  25, 25, 25, 3047, 3764, 6173, 10059, 9245, 13848 

+ iso_639-3/ast.po,  7590, 10295, 10309, 1160, 2549, 495, 1004, 9245, 13848 

+ iso_639-3/ar.po,  145, 163, 167, 3015, 3748, 6085, 9937, 9245, 13848 

+ iso_639-3/am.po,  119, 122, 119, 2924, 3859, 6202, 9867, 9245, 13848 

+ iso_639-3/af.po,  128, 132, 131, 4111, 5176, 5006, 8540, 9245, 13848 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ iso_639-5/zh_Hant.po,  115, 258, 115, 0, 0, 0, 0, 115, 258 

+ iso_639-5/uk.po,  115, 258, 249, 0, 0, 0, 0, 115, 258 

+ iso_639-5/sv.po,  115, 258, 203, 0, 0, 0, 0, 115, 258 

+ iso_639-5/sr@latin.po,  44, 98, 92, 0, 0, 71, 160, 115, 258 

+ iso_639-5/sr.po,  44, 98, 92, 0, 0, 71, 160, 115, 258 

+ iso_639-5/sc.po,  115, 258, 269, 0, 0, 0, 0, 115, 258 

+ iso_639-5/pl.po,  113, 254, 241, 0, 0, 2, 4, 115, 258 

+ iso_639-5/nl.po,  115, 258, 231, 0, 0, 0, 0, 115, 258 

+ iso_639-5/nb_NO.po,  12, 26, 20, 1, 2, 102, 230, 115, 258 

+ iso_639-5/it.po,  101, 221, 222, 0, 0, 14, 37, 115, 258 

+ iso_639-5/iso_639-5.pot,  0, 0, 0, 0, 0, 115, 258, 115, 258 

+ iso_639-5/is.po,  115, 258, 243, 0, 0, 0, 0, 115, 258 

+ iso_639-5/id.po,  60, 128, 129, 0, 0, 55, 130, 115, 258 

+ iso_639-5/hu.po,  115, 258, 248, 0, 0, 0, 0, 115, 258 

+ iso_639-5/fr.po,  115, 258, 260, 0, 0, 0, 0, 115, 258 

+ iso_639-5/et.po,  115, 258, 235, 0, 0, 0, 0, 115, 258 

+ iso_639-5/el.po,  0, 0, 0, 0, 0, 115, 258, 115, 258 

+ iso_639-5/de.po,  115, 258, 197, 0, 0, 0, 0, 115, 258 

+ iso_639-5/da.po,  7, 14, 14, 0, 0, 108, 244, 115, 258 

+ iso_639-5/be.po,  115, 258, 246, 0, 0, 0, 0, 115, 258 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Failed to guess file type.

@@ -0,0 +1,3 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ libjbig/po/ru.po,  9, 44, 34, 0, 0, 0, 0, 9, 44 

+ libjbig/po/de.po,  9, 44, 41, 0, 0, 0, 0, 9, 44 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,56 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ne.po,  36, 239, 219, 3, 14, 5, 50, 44, 303 

+ po/ro.po,  44, 303, 310, 0, 0, 0, 0, 44, 303 

+ po/bn_IN.po,  27, 226, 184, 0, 0, 0, 0, 27, 226 

+ po/eo.po,  27, 221, 205, 6, 33, 11, 49, 44, 303 

+ po/sl.po,  44, 303, 275, 0, 0, 0, 0, 44, 303 

+ po/sv.po,  44, 303, 259, 0, 0, 0, 0, 44, 303 

+ po/it.po,  44, 303, 321, 0, 0, 0, 0, 44, 303 

+ po/bg.po,  27, 226, 213, 0, 0, 0, 0, 27, 226 

+ po/ca.po,  44, 303, 405, 0, 0, 0, 0, 44, 303 

+ po/sr.po,  44, 303, 269, 0, 0, 0, 0, 44, 303 

+ po/lv.po,  44, 303, 250, 0, 0, 0, 0, 44, 303 

+ po/pt.po,  44, 303, 320, 0, 0, 0, 0, 44, 303 

+ po/sr@latin.po,  44, 303, 269, 0, 0, 0, 0, 44, 303 

+ po/lt.po,  44, 303, 246, 0, 0, 0, 0, 44, 303 

+ po/et.po,  27, 226, 173, 0, 0, 0, 0, 27, 226 

+ po/gl.po,  44, 303, 340, 0, 0, 0, 0, 44, 303 

+ po/fr.po,  44, 303, 345, 0, 0, 0, 0, 44, 303 

+ po/or.po,  27, 226, 200, 0, 0, 0, 0, 27, 226 

+ po/tr.po,  44, 303, 250, 0, 0, 0, 0, 44, 303 

+ po/hr.po,  44, 303, 263, 0, 0, 0, 0, 44, 303 

+ po/zh_HK.po,  44, 303, 80, 0, 0, 0, 0, 44, 303 

+ po/de.po,  44, 303, 290, 0, 0, 0, 0, 44, 303 

+ po/id.po,  44, 303, 286, 0, 0, 0, 0, 44, 303 

+ po/fur.po,  44, 303, 352, 0, 0, 0, 0, 44, 303 

+ po/pt_BR.po,  44, 303, 324, 0, 0, 0, 0, 44, 303 

+ po/ja.po,  27, 226, 72, 0, 0, 0, 0, 27, 226 

+ po/ru.po,  44, 303, 267, 0, 0, 0, 0, 44, 303 

+ po/nl.po,  44, 303, 291, 0, 0, 0, 0, 44, 303 

+ po/pa.po,  27, 226, 207, 0, 0, 0, 0, 27, 226 

+ po/eu.po,  44, 303, 270, 0, 0, 0, 0, 44, 303 

+ po/vi.po,  29, 244, 264, 0, 0, 1, 10, 30, 254 

+ po/ca@valencia.po,  44, 303, 403, 0, 0, 0, 0, 44, 303 

+ po/pl.po,  44, 303, 270, 0, 0, 0, 0, 44, 303 

+ po/ml.po,  27, 226, 165, 0, 0, 0, 0, 27, 226 

+ po/bs.po,  44, 303, 270, 0, 0, 0, 0, 44, 303 

+ po/zh_CN.po,  44, 303, 95, 0, 0, 0, 0, 44, 303 

+ po/oc.po,  44, 303, 351, 0, 0, 0, 0, 44, 303 

+ po/cs.po,  44, 303, 279, 0, 0, 0, 0, 44, 303 

+ po/as.po,  44, 303, 276, 0, 0, 0, 0, 44, 303 

+ po/tg.po,  44, 303, 292, 0, 0, 0, 0, 44, 303 

+ po/sk.po,  44, 303, 297, 0, 0, 0, 0, 44, 303 

+ po/te.po,  27, 226, 191, 0, 0, 0, 0, 27, 226 

+ po/hi.po,  27, 226, 234, 0, 0, 0, 0, 27, 226 

+ po/zh_TW.po,  44, 303, 80, 0, 0, 0, 0, 44, 303 

+ po/ko.po,  44, 303, 237, 0, 0, 0, 0, 44, 303 

+ po/ug.po,  25, 208, 167, 0, 0, 2, 18, 27, 226 

+ po/hu.po,  44, 303, 268, 0, 0, 0, 0, 44, 303 

+ po/da.po,  44, 303, 272, 0, 0, 0, 0, 44, 303 

+ po/es.po,  44, 303, 351, 0, 0, 0, 0, 44, 303 

+ po/he.po,  44, 303, 303, 0, 0, 0, 0, 44, 303 

+ po/nb.po,  26, 159, 145, 0, 0, 18, 144, 44, 303 

+ po/el.po,  44, 303, 302, 0, 0, 0, 0, 44, 303 

+ po/en_GB.po,  44, 303, 303, 0, 0, 0, 0, 44, 303 

+ po/ky.po,  27, 226, 167, 0, 0, 0, 0, 27, 226 

+ po/uk.po,  44, 303, 272, 0, 0, 0, 0, 44, 303 

@@ -0,0 +1,22 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf6 in position 48: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xaa in position 4: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xed in position 37: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf3 in position 182: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfa in position 36: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf3 in position 0: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe8 in position 19: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xb6 in position 31: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xba in position 32: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 121: invalid continuation byte

@@ -0,0 +1,22 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/nl.po,  65, 401, 391, 2, 11, 4, 28, 71, 440 

+ po/zh_TW.po,  64, 396, 168, 2, 11, 5, 33, 71, 440 

+ po/pl.po,  65, 401, 419, 2, 11, 4, 28, 71, 440 

+ po/tr.gmo,  64, 395, 347, 0, 0, 0, 0, 64, 395 

+ po/sv.po,  71, 440, 423, 0, 0, 0, 0, 71, 440 

+ po/rw.gmo,  1, 2, 2, 0, 0, 0, 0, 1, 2 

+ po/pt_BR.po,  65, 401, 427, 2, 11, 4, 28, 71, 440 

+ po/rw.po,  1, 2, 2, 59, 394, 11, 44, 71, 440 

+ po/id.gmo,  65, 401, 398, 0, 0, 0, 0, 65, 401 

+ po/fr.po,  65, 401, 460, 2, 11, 4, 28, 71, 440 

+ po/tr.po,  64, 395, 347, 3, 17, 4, 28, 71, 440 

+ po/vi.gmo,  71, 440, 666, 0, 0, 0, 0, 71, 440 

+ po/jwhois.pot,  0, 0, 0, 0, 0, 71, 440, 71, 440 

+ po/hu.po,  65, 401, 414, 2, 11, 4, 28, 71, 440 

+ po/es.po,  71, 440, 568, 0, 0, 0, 0, 71, 440 

+ po/ru.po,  17, 83, 85, 22, 99, 32, 258, 71, 440 

+ po/id.po,  65, 401, 398, 2, 11, 4, 28, 71, 440 

+ po/ro.po,  65, 401, 416, 2, 11, 4, 28, 71, 440 

+ po/nl.gmo,  65, 401, 391, 0, 0, 0, 0, 65, 401 

+ po/it.po,  71, 440, 492, 0, 0, 0, 0, 71, 440 

+ po/vi.po,  71, 440, 666, 0, 0, 0, 0, 71, 440 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe3 in position 19: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe6 in position 72: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,38 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_CN.po,  266, 2051, 1075, 8, 372, 1, 7, 275, 2430 

+ po/uk.po,  275, 2430, 2423, 0, 0, 0, 0, 275, 2430 

+ po/sv.gmo,  275, 2430, 2332, 0, 0, 0, 0, 275, 2430 

+ po/fr.gmo,  219, 1736, 2139, 0, 0, 0, 0, 219, 1736 

+ po/it.gmo,  207, 1512, 1816, 0, 0, 0, 0, 207, 1512 

+ po/nl.po,  275, 2430, 2442, 0, 0, 0, 0, 275, 2430 

+ po/gr.po,  162, 1063, 1170, 72, 714, 41, 653, 275, 2430 

+ po/da.po,  207, 1512, 1431, 53, 752, 15, 166, 275, 2430 

+ po/ru.gmo,  275, 2430, 2397, 0, 0, 0, 0, 275, 2430 

+ po/nl.gmo,  275, 2430, 2442, 0, 0, 0, 0, 275, 2430 

+ po/el.po,  266, 2051, 2213, 8, 372, 1, 7, 275, 2430 

+ po/ru.po,  275, 2430, 2397, 0, 0, 0, 0, 275, 2430 

+ po/eo.po,  266, 2051, 2111, 8, 372, 1, 7, 275, 2430 

+ po/cs.po,  275, 2430, 2346, 0, 0, 0, 0, 275, 2430 

+ po/sv.po,  275, 2430, 2332, 0, 0, 0, 0, 275, 2430 

+ po/it.po,  207, 1512, 1816, 53, 752, 15, 166, 275, 2430 

+ po/cs.gmo,  275, 2430, 2346, 0, 0, 0, 0, 275, 2430 

+ po/id.gmo,  181, 1341, 1370, 0, 0, 0, 0, 181, 1341 

+ po/es.gmo,  169, 1259, 1653, 0, 0, 0, 0, 169, 1259 

+ po/gr.gmo,  162, 1063, 1170, 0, 0, 0, 0, 162, 1063 

+ po/ro.po,  162, 1063, 1180, 63, 657, 50, 710, 275, 2430 

+ po/vi.po,  275, 2430, 3354, 0, 0, 0, 0, 275, 2430 

+ po/pl.gmo,  275, 2430, 2424, 0, 0, 0, 0, 275, 2430 

+ po/fr.po,  219, 1736, 2139, 49, 642, 7, 52, 275, 2430 

+ po/tr.gmo,  164, 1075, 1005, 0, 0, 0, 0, 164, 1075 

+ po/id.po,  181, 1341, 1370, 68, 678, 26, 411, 275, 2430 

+ po/de.gmo,  275, 2430, 2500, 0, 0, 0, 0, 275, 2430 

+ po/uk.gmo,  275, 2430, 2423, 0, 0, 0, 0, 275, 2430 

+ po/vi.gmo,  275, 2430, 3354, 0, 0, 0, 0, 275, 2430 

+ po/eo.gmo,  266, 2051, 2111, 0, 0, 0, 0, 266, 2051 

+ po/el.gmo,  266, 2051, 2213, 0, 0, 0, 0, 266, 2051 

+ po/de.po,  275, 2430, 2500, 0, 0, 0, 0, 275, 2430 

+ po/pl.po,  275, 2430, 2424, 0, 0, 0, 0, 275, 2430 

+ po/es.po,  169, 1259, 1653, 59, 548, 47, 623, 275, 2430 

+ po/zh_CN.gmo,  266, 2051, 1075, 0, 0, 0, 0, 266, 2051 

+ po/kbd.pot,  0, 0, 0, 0, 0, 275, 2430, 275, 2430 

+ po/tr.po,  164, 1075, 1005, 61, 645, 50, 710, 275, 2430 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

@@ -0,0 +1,59 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  12, 83, 26, 0, 0, 0, 0, 12, 83 

+ po/zh_CN.po,  12, 83, 20, 0, 0, 0, 0, 12, 83 

+ po/vi.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/uk.po,  2, 51, 34, 2, 8, 8, 24, 12, 83 

+ po/tr.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/te.po,  12, 83, 50, 0, 0, 0, 0, 12, 83 

+ po/ta_IN.po,  4, 59, 39, 3, 11, 5, 13, 12, 83 

+ po/ta.po,  12, 83, 66, 0, 0, 0, 0, 12, 83 

+ po/sv.po,  2, 51, 43, 2, 8, 8, 24, 12, 83 

+ po/sr@latin.po,  2, 51, 43, 2, 8, 8, 24, 12, 83 

+ po/sr@Latn.po,  2, 51, 43, 2, 8, 8, 24, 12, 83 

+ po/sr.po,  2, 51, 43, 2, 8, 8, 24, 12, 83 

+ po/sq.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/sl.po,  2, 51, 42, 2, 8, 8, 24, 12, 83 

+ po/sk.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/si.po,  2, 51, 46, 4, 14, 6, 18, 12, 83 

+ po/ru.po,  12, 83, 59, 0, 0, 0, 0, 12, 83 

+ po/pt_BR.po,  12, 83, 92, 0, 0, 0, 0, 12, 83 

+ po/pt.po,  2, 51, 55, 2, 8, 8, 24, 12, 83 

+ po/pl.po,  2, 51, 38, 2, 8, 8, 24, 12, 83 

+ po/pa.po,  5, 64, 66, 0, 0, 7, 19, 12, 83 

+ po/or.po,  12, 83, 91, 0, 0, 0, 0, 12, 83 

+ po/nl.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/nb.po,  2, 51, 47, 2, 8, 8, 24, 12, 83 

+ po/ms.po,  2, 51, 41, 2, 8, 8, 24, 12, 83 

+ po/mr.po,  12, 83, 73, 0, 0, 0, 0, 12, 83 

+ po/ml.po,  12, 83, 61, 0, 0, 0, 0, 12, 83 

+ po/lv.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/ko.po,  12, 83, 63, 0, 0, 0, 0, 12, 83 

+ po/kn.po,  12, 83, 72, 0, 0, 0, 0, 12, 83 

+ po/kdump-anaconda-addon.pot,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/ka.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/ja.po,  12, 83, 30, 0, 0, 0, 0, 12, 83 

+ po/it.po,  12, 83, 88, 0, 0, 0, 0, 12, 83 

+ po/is.po,  2, 51, 48, 2, 8, 8, 24, 12, 83 

+ po/id.po,  2, 51, 45, 2, 8, 8, 24, 12, 83 

+ po/hu.po,  2, 51, 35, 2, 8, 8, 24, 12, 83 

+ po/hr.po,  2, 51, 45, 4, 14, 6, 18, 12, 83 

+ po/hi.po,  12, 83, 86, 0, 0, 0, 0, 12, 83 

+ po/he.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/gu.po,  12, 83, 89, 0, 0, 0, 0, 12, 83 

+ po/fr.po,  12, 83, 86, 0, 0, 0, 0, 12, 83 

+ po/fi.po,  2, 51, 35, 2, 8, 8, 24, 12, 83 

+ po/fa.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/et.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/es.po,  12, 83, 95, 0, 0, 0, 0, 12, 83 

+ po/en_GB.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/el.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/de.po,  12, 83, 73, 0, 0, 0, 0, 12, 83 

+ po/da.po,  2, 51, 52, 2, 8, 8, 24, 12, 83 

+ po/cy.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/cs.po,  2, 51, 47, 2, 8, 8, 24, 12, 83 

+ po/ca.po,  2, 51, 53, 2, 8, 8, 24, 12, 83 

+ po/bs.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

+ po/bn_IN.po,  12, 83, 82, 0, 0, 0, 0, 12, 83 

+ po/bg.po,  2, 51, 49, 2, 8, 8, 24, 12, 83 

+ po/as.po,  12, 83, 79, 0, 0, 0, 0, 12, 83 

+ po/ar.po,  0, 0, 0, 0, 0, 12, 83, 12, 83 

empty or binary file added
@@ -0,0 +1,6 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ tools/power/cpupower/po/pt.po,  48, 473, 536, 15, 146, 93, 530, 156, 1149 

+ tools/power/cpupower/po/it.po,  48, 473, 513, 15, 146, 93, 530, 156, 1149 

+ tools/power/cpupower/po/fr.po,  39, 394, 432, 21, 211, 96, 544, 156, 1149 

+ tools/power/cpupower/po/de.po,  48, 473, 452, 15, 146, 93, 530, 156, 1149 

+ tools/power/cpupower/po/cs.po,  39, 394, 362, 21, 211, 96, 544, 156, 1149 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./src/po/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./src/po/deps)

@@ -0,0 +1,4 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ src/po/mit-krb5.pot,  0, 0, 0, 0, 0, 1891, 10349, 1891, 10349 

+ src/po/en_US.po,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ src/po/de.po,  1847, 10072, 10435, 0, 0, 0, 0, 1847, 10072 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,31 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  98, 450, 199, 0, 0, 0, 0, 98, 450 

+ po/zh_CN.po,  91, 419, 191, 1, 7, 0, 0, 92, 426 

+ po/uk.po,  99, 459, 477, 0, 0, 0, 0, 99, 459 

+ po/tr.po,  99, 459, 404, 0, 0, 0, 0, 99, 459 

+ po/sv.po,  99, 459, 415, 0, 0, 0, 0, 99, 459 

+ po/sr@latin.po,  62, 297, 289, 0, 0, 0, 0, 62, 297 

+ po/sr.po,  84, 382, 378, 0, 0, 0, 0, 84, 382 

+ po/sl.po,  44, 197, 178, 0, 0, 0, 0, 44, 197 

+ po/sk.po,  84, 383, 368, 0, 0, 0, 0, 84, 383 

+ po/ru.po,  86, 396, 375, 0, 0, 0, 0, 86, 396 

+ po/pt_BR.po,  99, 459, 526, 0, 0, 0, 0, 99, 459 

+ po/pt.po,  62, 297, 325, 0, 0, 0, 0, 62, 297 

+ po/pl.po,  99, 459, 434, 0, 0, 0, 0, 99, 459 

+ po/oc.po,  48, 211, 240, 0, 0, 0, 0, 48, 211 

+ po/lt.po,  99, 459, 398, 0, 0, 0, 0, 99, 459 

+ po/ko.po,  86, 396, 327, 0, 0, 0, 0, 86, 396 

+ po/it.po,  99, 459, 503, 0, 0, 0, 0, 99, 459 

+ po/id.po,  96, 442, 412, 0, 0, 0, 0, 96, 442 

+ po/hu.po,  99, 459, 437, 0, 0, 0, 0, 99, 459 

+ po/gl.po,  61, 294, 346, 0, 0, 0, 0, 61, 294 

+ po/fur.po,  96, 442, 538, 0, 0, 0, 0, 96, 442 

+ po/fr.po,  99, 459, 564, 0, 0, 0, 0, 99, 459 

+ po/fi.po,  28, 90, 65, 0, 0, 0, 0, 28, 90 

+ po/fa.po,  65, 268, 319, 0, 0, 0, 0, 65, 268 

+ po/es.po,  97, 447, 515, 1, 3, 0, 0, 98, 450 

+ po/en_GB.po,  86, 396, 396, 0, 0, 0, 0, 86, 396 

+ po/de.po,  99, 459, 392, 0, 0, 0, 0, 99, 459 

+ po/da.po,  99, 459, 397, 0, 0, 0, 0, 99, 459 

+ po/cs.po,  97, 447, 436, 0, 0, 0, 0, 97, 447 

+ po/ca.po,  98, 450, 608, 0, 0, 0, 0, 98, 450 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.am)

@@ -0,0 +1,98 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/nb.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ne.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/te.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/or.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/id.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/nso.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/bn.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/br.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/si.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/bal.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/mk.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/el.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/is.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/vi.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/nn.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/fa.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/sl.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/gu.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/anp.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/et.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/hu.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/ia.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/mai.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ja.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/be.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/pl.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/ilo.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/tw.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/kn.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/tg.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/pa.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/pt.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ru.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/sq.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/nds.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ta.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ca.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/bs.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/cs.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/ml.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/zu.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/zh_TW.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/nl.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/ms.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/bg.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/de.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/sk.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/zh_CN.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/sv.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/af.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/am.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/kw.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/mn.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/lv.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/de_CH.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/pt_BR.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/uk.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/as.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ka.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/bo.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/eo.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ast.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/en_GB.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/it.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/da.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/eu.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ro.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/yo.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/fr.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/wba.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/lt.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/sr.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/brx.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/hr.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ko.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/th.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/cy.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ga.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ar.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/sr@latin.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/gl.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/es.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/fi.po,  17, 17, 17, 0, 0, 0, 0, 17, 17 

+ po/tr.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/hi.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/he.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/km.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ky.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/mr.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/kk.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/ur.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

+ po/my.po,  0, 0, 0, 0, 0, 17, 17, 17, 17 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./contrib/ls-config/src/po/makefile)

@@ -0,0 +1,4 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ contrib/ls-config/src/po/en_GB.po,  52, 255, 258, 0, 0, 0, 0, 52, 255 

+ contrib/ls-config/src/po/ls-config.pot,  0, 0, 0, 0, 0, 52, 255, 52, 255 

+ contrib/ls-config/src/po/pl_PL.po,  52, 255, 260, 0, 0, 0, 0, 52, 255 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/zanata.xml)

+ translate.tools.pocount: ERROR: Failed to guess file type.

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,51 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  107, 620, 226, 0, 0, 67, 415, 174, 1035 

+ po/zh_CN.po,  119, 695, 368, 0, 0, 55, 340, 174, 1035 

+ po/uk.po,  174, 1035, 1105, 0, 0, 0, 0, 174, 1035 

+ po/tr.po,  12, 72, 60, 0, 0, 162, 963, 174, 1035 

+ po/th.po,  1, 2, 1, 0, 0, 173, 1033, 174, 1035 

+ po/te.po,  1, 2, 2, 0, 0, 173, 1033, 174, 1035 

+ po/ta.po,  1, 2, 2, 0, 0, 173, 1033, 174, 1035 

+ po/sv.po,  102, 595, 620, 0, 0, 72, 440, 174, 1035 

+ po/sr@latin.po,  1, 2, 2, 0, 0, 173, 1033, 174, 1035 

+ po/sr.po,  1, 2, 2, 0, 0, 173, 1033, 174, 1035 

+ po/sq.po,  1, 2, 4, 0, 0, 173, 1033, 174, 1035 

+ po/sk.po,  3, 13, 14, 0, 0, 171, 1022, 174, 1035 

+ po/ru.po,  102, 595, 593, 0, 0, 72, 440, 174, 1035 

+ po/pt_BR.po,  102, 595, 691, 0, 0, 72, 440, 174, 1035 

+ po/pt.po,  13, 74, 86, 0, 0, 161, 961, 174, 1035 

+ po/pl.po,  174, 1035, 1144, 0, 0, 0, 0, 174, 1035 

+ po/pa.po,  5, 22, 28, 0, 0, 169, 1013, 174, 1035 

+ po/or.po,  1, 2, 2, 0, 0, 173, 1033, 174, 1035 

+ po/nl.po,  24, 157, 169, 0, 0, 150, 878, 174, 1035 

+ po/nb.po,  1, 2, 1, 0, 0, 173, 1033, 174, 1035 

+ po/mr.po,  1, 2, 3, 0, 0, 173, 1033, 174, 1035 

+ po/ml.po,  1, 2, 1, 0, 0, 173, 1033, 174, 1035 

+ po/mai.po,  1, 2, 1, 0, 0, 173, 1033, 174, 1035 

+ po/libdnf.pot,  0, 0, 0, 0, 0, 174, 1035, 174, 1035 

+ po/ko.po,  99, 565, 532, 0, 0, 75, 470, 174, 1035 

+ po/kn.po,  1, 2, 1, 0, 0, 173, 1033, 174, 1035 

+ po/ja.po,  119, 695, 357, 0, 0, 55, 340, 174, 1035 

+ po/it.po,  102, 595, 710, 0, 0, 72, 440, 174, 1035 

+ po/is.po,  1, 2, 2, 0, 0, 173, 1033, 174, 1035 

+ po/id.po,  3, 13, 12, 0, 0, 171, 1022, 174, 1035 

+ po/ia.po,  1, 2, 2, 0, 0, 173, 1033, 174, 1035 

+ po/hu.po,  25, 162, 172, 0, 0, 149, 873, 174, 1035 

+ po/hi.po,  1, 2, 2, 0, 0, 173, 1033, 174, 1035 

+ po/gu.po,  1, 2, 2, 0, 0, 173, 1033, 174, 1035 

+ po/fur.po,  14, 88, 113, 0, 0, 160, 947, 174, 1035 

+ po/fr.po,  174, 1035, 1327, 0, 0, 0, 0, 174, 1035 

+ po/fil.po,  1, 8, 9, 0, 0, 173, 1027, 174, 1035 

+ po/fi.po,  8, 36, 32, 0, 0, 166, 999, 174, 1035 

+ po/fa.po,  1, 2, 3, 0, 0, 173, 1033, 174, 1035 

+ po/eu.po,  1, 4, 5, 0, 0, 173, 1031, 174, 1035 

+ po/es.po,  102, 595, 780, 0, 0, 72, 440, 174, 1035 

+ po/el.po,  1, 2, 2, 0, 0, 173, 1033, 174, 1035 

+ po/de.po,  102, 595, 638, 0, 0, 72, 440, 174, 1035 

+ po/da.po,  5, 18, 18, 0, 0, 169, 1017, 174, 1035 

+ po/cs.po,  25, 167, 162, 0, 0, 149, 868, 174, 1035 

+ po/ca.po,  21, 123, 169, 0, 0, 153, 912, 174, 1035 

+ po/bn_IN.po,  1, 2, 1, 0, 0, 173, 1033, 174, 1035 

+ po/bn.po,  1, 2, 1, 0, 0, 173, 1033, 174, 1035 

+ po/bg.po,  6, 30, 32, 0, 0, 168, 1005, 174, 1035 

+ po/as.po,  1, 2, 1, 0, 0, 173, 1033, 174, 1035 

@@ -0,0 +1,11 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

@@ -0,0 +1,52 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/sq.po,  181, 458, 531, 3, 17, 993, 6502, 1177, 6977 

+ po/sk.gmo,  1177, 6977, 6232, 0, 0, 0, 0, 1177, 6977 

+ po/sr.po,  602, 3700, 3293, 4, 25, 571, 3252, 1177, 6977 

+ po/tr.po,  407, 997, 992, 3, 17, 767, 5963, 1177, 6977 

+ po/pl.gmo,  1177, 6977, 6334, 0, 0, 0, 0, 1177, 6977 

+ po/de.po,  1176, 6976, 5965, 1, 1, 0, 0, 1177, 6977 

+ po/ja.gmo,  728, 1894, 1376, 0, 0, 0, 0, 728, 1894 

+ po/pl.po,  1177, 6977, 6334, 0, 0, 0, 0, 1177, 6977 

+ po/nl.po,  1172, 6930, 6251, 5, 47, 0, 0, 1177, 6977 

+ po/en_CA.po,  59, 705, 705, 0, 0, 1118, 6272, 1177, 6977 

+ po/es.gmo,  242, 2517, 2806, 0, 0, 0, 0, 242, 2517 

+ po/da.gmo,  1177, 6977, 5807, 0, 0, 0, 0, 1177, 6977 

+ po/zh_CN.po,  355, 999, 736, 3, 17, 819, 5961, 1177, 6977 

+ po/ru.po,  648, 3546, 3071, 5, 47, 524, 3384, 1177, 6977 

+ po/fr.gmo,  182, 1220, 1329, 0, 0, 0, 0, 182, 1220 

+ po/pt_BR.po,  657, 1746, 1936, 3, 17, 517, 5214, 1177, 6977 

+ po/sr.gmo,  602, 3700, 3293, 0, 0, 0, 0, 602, 3700 

+ po/libexif-12.pot,  0, 0, 0, 0, 0, 1177, 6977, 1177, 6977 

+ po/sk.po,  1177, 6977, 6232, 0, 0, 0, 0, 1177, 6977 

+ po/it.gmo,  892, 5092, 5425, 0, 0, 0, 0, 892, 5092 

+ po/uk.gmo,  548, 1243, 1389, 0, 0, 0, 0, 548, 1243 

+ po/de.gmo,  1176, 6976, 5965, 0, 0, 0, 0, 1176, 6976 

+ po/sv.po,  612, 1540, 1395, 119, 321, 446, 5116, 1177, 6977 

+ po/en_AU.po,  1172, 6930, 6930, 5, 47, 0, 0, 1177, 6977 

+ po/ja.po,  728, 1894, 1376, 24, 80, 425, 5003, 1177, 6977 

+ po/vi.gmo,  1177, 6977, 8942, 0, 0, 0, 0, 1177, 6977 

+ po/tr.gmo,  407, 997, 992, 0, 0, 0, 0, 407, 997 

+ po/nl.gmo,  1172, 6930, 6251, 0, 0, 0, 0, 1172, 6930 

+ po/sv.gmo,  612, 1540, 1395, 0, 0, 0, 0, 612, 1540 

+ po/en_CA.gmo,  59, 705, 705, 0, 0, 0, 0, 59, 705 

+ po/cs.gmo,  729, 3309, 2947, 0, 0, 0, 0, 729, 3309 

+ po/vi.po,  1177, 6977, 8942, 0, 0, 0, 0, 1177, 6977 

+ po/pt.gmo,  170, 420, 428, 0, 0, 0, 0, 170, 420 

+ po/sq.gmo,  181, 458, 531, 0, 0, 0, 0, 181, 458 

+ po/fr.po,  182, 1220, 1329, 393, 1220, 602, 4537, 1177, 6977 

+ po/da.po,  1177, 6977, 5807, 0, 0, 0, 0, 1177, 6977 

+ po/en_GB.gmo,  1172, 6930, 6930, 0, 0, 0, 0, 1172, 6930 

+ po/pt_BR.gmo,  657, 1746, 1936, 0, 0, 0, 0, 657, 1746 

+ po/bs.gmo,  1172, 6930, 6271, 0, 0, 0, 0, 1172, 6930 

+ po/uk.po,  548, 1243, 1389, 0, 0, 629, 5734, 1177, 6977 

+ po/en_AU.gmo,  1172, 6930, 6930, 0, 0, 0, 0, 1172, 6930 

+ po/es.po,  242, 2517, 2806, 387, 2212, 548, 2248, 1177, 6977 

+ po/it.po,  892, 5092, 5425, 57, 503, 228, 1382, 1177, 6977 

+ po/zh_CN.gmo,  355, 999, 736, 0, 0, 0, 0, 355, 999 

+ po/pt.po,  170, 420, 428, 3, 17, 1004, 6540, 1177, 6977 

+ po/bs.po,  1172, 6930, 6271, 5, 47, 0, 0, 1177, 6977 

+ po/be.gmo,  215, 610, 609, 0, 0, 0, 0, 215, 610 

+ po/ru.gmo,  648, 3546, 3071, 0, 0, 0, 0, 648, 3546 

+ po/be.po,  215, 610, 609, 3, 17, 959, 6350, 1177, 6977 

+ po/en_GB.po,  1172, 6930, 6930, 5, 47, 0, 0, 1177, 6977 

+ po/cs.po,  729, 3309, 2947, 5, 47, 443, 3621, 1177, 6977 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,63 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  84, 684, 148, 0, 0, 0, 0, 84, 684 

+ po/zh_HK.po,  85, 695, 150, 0, 0, 0, 0, 85, 695 

+ po/zh_CN.po,  84, 684, 142, 0, 0, 0, 0, 84, 684 

+ po/vi.po,  84, 684, 848, 0, 0, 0, 0, 84, 684 

+ po/uk.po,  74, 597, 503, 0, 0, 0, 0, 74, 597 

+ po/ug.po,  76, 614, 544, 0, 0, 0, 0, 76, 614 

+ po/tr.po,  84, 684, 548, 0, 0, 0, 0, 84, 684 

+ po/th.po,  84, 684, 195, 0, 0, 0, 0, 84, 684 

+ po/tg.po,  12, 106, 107, 0, 0, 64, 508, 76, 614 

+ po/te.po,  76, 614, 470, 0, 0, 0, 0, 76, 614 

+ po/ta.po,  74, 597, 446, 0, 0, 0, 0, 74, 597 

+ po/sv.po,  85, 689, 657, 0, 0, 0, 0, 85, 689 

+ po/sr@latin.po,  84, 684, 640, 0, 0, 0, 0, 84, 684 

+ po/sr.po,  84, 684, 640, 0, 0, 0, 0, 84, 684 

+ po/sl.po,  84, 684, 640, 0, 0, 0, 0, 84, 684 

+ po/sk.po,  84, 684, 642, 0, 0, 0, 0, 84, 684 

+ po/ru.po,  84, 684, 572, 0, 0, 0, 0, 84, 684 

+ po/ro.po,  85, 689, 765, 0, 0, 0, 0, 85, 689 

+ po/pt_BR.po,  85, 689, 723, 0, 0, 0, 0, 85, 689 

+ po/pt.po,  84, 684, 722, 0, 0, 0, 0, 84, 684 

+ po/pl.po,  85, 689, 599, 0, 0, 0, 0, 85, 689 

+ po/pa.po,  85, 695, 731, 0, 0, 0, 0, 85, 695 

+ po/or.po,  74, 597, 582, 0, 0, 0, 0, 74, 597 

+ po/oc.po,  84, 684, 752, 0, 0, 0, 0, 84, 684 

+ po/nl.po,  84, 684, 692, 0, 0, 0, 0, 84, 684 

+ po/ne.po,  26, 204, 190, 32, 208, 26, 272, 84, 684 

+ po/nb.po,  84, 684, 673, 0, 0, 0, 0, 84, 684 

+ po/mr.po,  74, 597, 506, 0, 0, 0, 0, 74, 597 

+ po/ml.po,  30, 192, 143, 2, 22, 44, 400, 76, 614 

+ po/lv.po,  84, 684, 537, 0, 0, 0, 0, 84, 684 

+ po/lt.po,  85, 689, 531, 0, 0, 0, 0, 85, 689 

+ po/ko.po,  84, 684, 476, 0, 0, 0, 0, 84, 684 

+ po/kn.po,  14, 79, 68, 0, 0, 60, 518, 74, 597 

+ po/ja.po,  81, 659, 129, 0, 0, 1, 12, 82, 671 

+ po/it.po,  84, 684, 697, 0, 0, 0, 0, 84, 684 

+ po/id.po,  85, 689, 632, 0, 0, 0, 0, 85, 689 

+ po/hu.po,  84, 684, 569, 0, 0, 0, 0, 84, 684 

+ po/hr.po,  84, 684, 615, 0, 0, 0, 0, 84, 684 

+ po/hi.po,  76, 614, 721, 0, 0, 0, 0, 76, 614 

+ po/he.po,  84, 684, 564, 0, 0, 0, 0, 84, 684 

+ po/gu.po,  48, 324, 349, 4, 34, 33, 337, 85, 695 

+ po/gl.po,  84, 684, 711, 0, 0, 0, 0, 84, 684 

+ po/fur.po,  84, 684, 781, 0, 0, 0, 0, 84, 684 

+ po/fr.po,  84, 684, 770, 0, 0, 0, 0, 84, 684 

+ po/fi.po,  76, 612, 495, 4, 41, 4, 31, 84, 684 

+ po/eu.po,  85, 689, 595, 0, 0, 0, 0, 85, 689 

+ po/et.po,  85, 695, 542, 0, 0, 0, 0, 85, 695 

+ po/es.po,  85, 689, 739, 0, 0, 0, 0, 85, 689 

+ po/eo.po,  53, 385, 338, 1, 11, 30, 288, 84, 684 

+ po/en_GB.po,  85, 689, 689, 0, 0, 0, 0, 85, 689 

+ po/el.po,  84, 684, 790, 0, 0, 0, 0, 84, 684 

+ po/de.po,  85, 689, 677, 0, 0, 0, 0, 85, 689 

+ po/da.po,  84, 684, 661, 0, 0, 0, 0, 84, 684 

+ po/cs.po,  85, 689, 632, 0, 0, 0, 0, 85, 689 

+ po/ca@valencia.po,  84, 684, 720, 0, 0, 0, 0, 84, 684 

+ po/ca.po,  84, 684, 720, 0, 0, 0, 0, 84, 684 

+ po/bs.po,  85, 695, 609, 0, 0, 0, 0, 85, 695 

+ po/bn_IN.po,  67, 552, 540, 0, 0, 0, 0, 67, 552 

+ po/bg.po,  85, 695, 751, 0, 0, 0, 0, 85, 695 

+ po/be.po,  84, 684, 617, 0, 0, 0, 0, 84, 684 

+ po/as.po,  85, 695, 656, 0, 0, 0, 0, 85, 695 

+ po/ar.po,  55, 403, 333, 0, 0, 19, 194, 74, 597 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,154 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ml.po,  39, 187, 147, 0, 0, 0, 0, 39, 187 

+ po/nn.po,  50, 277, 280, 0, 0, 0, 0, 50, 277 

+ po/eu.po,  55, 242, 201, 0, 0, 0, 0, 55, 242 

+ po/lv.po,  39, 187, 161, 0, 0, 0, 0, 39, 187 

+ po/ml.gmo,  39, 187, 147, 0, 0, 0, 0, 39, 187 

+ po/km.po,  39, 187, 69, 0, 0, 0, 0, 39, 187 

+ po/pt.gmo,  40, 188, 231, 0, 0, 0, 0, 40, 188 

+ po/ar.po,  55, 242, 231, 0, 0, 0, 0, 55, 242 

+ po/as.gmo,  39, 187, 177, 0, 0, 0, 0, 39, 187 

+ po/eo.po,  40, 188, 159, 0, 0, 0, 0, 40, 188 

+ po/be.gmo,  55, 242, 230, 0, 0, 0, 0, 55, 242 

+ po/bs.po,  39, 187, 177, 0, 0, 0, 0, 39, 187 

+ po/hu.gmo,  40, 188, 151, 0, 0, 0, 0, 40, 188 

+ po/pt_BR.po,  40, 188, 227, 0, 0, 0, 0, 40, 188 

+ po/sk.gmo,  40, 188, 170, 0, 0, 0, 0, 40, 188 

+ po/oc.po,  39, 187, 239, 0, 0, 0, 0, 39, 187 

+ po/ru.po,  55, 242, 218, 0, 0, 0, 0, 55, 242 

+ po/bs.gmo,  39, 187, 177, 0, 0, 0, 0, 39, 187 

+ po/sl.gmo,  40, 188, 173, 0, 0, 0, 0, 40, 188 

+ po/ja.gmo,  55, 242, 77, 0, 0, 0, 0, 55, 242 

+ po/ca@valencia.gmo,  55, 242, 324, 0, 0, 0, 0, 55, 242 

+ po/ast.po,  59, 286, 340, 0, 0, 0, 0, 59, 286 

+ po/vi.gmo,  40, 188, 263, 0, 0, 0, 0, 40, 188 

+ po/vi.po,  40, 188, 263, 0, 0, 0, 0, 40, 188 

+ po/hu.po,  40, 188, 151, 0, 0, 0, 0, 40, 188 

+ po/ja.po,  55, 242, 77, 0, 0, 0, 0, 55, 242 

+ po/en_GB.po,  55, 242, 241, 0, 0, 0, 0, 55, 242 

+ po/ta.gmo,  55, 242, 208, 0, 0, 0, 0, 55, 242 

+ po/it.gmo,  40, 188, 217, 0, 0, 0, 0, 40, 188 

+ po/cs.po,  40, 188, 165, 0, 0, 0, 0, 40, 188 

+ po/pa.po,  55, 242, 236, 0, 0, 0, 0, 55, 242 

+ po/gu.gmo,  55, 242, 224, 0, 0, 0, 0, 55, 242 

+ po/nn.gmo,  50, 277, 280, 0, 0, 0, 0, 50, 277 

+ po/id.gmo,  40, 188, 199, 0, 0, 0, 0, 40, 188 

+ po/sv.gmo,  40, 188, 140, 0, 0, 0, 0, 40, 188 

+ po/zh_CN.po,  55, 242, 68, 0, 0, 0, 0, 55, 242 

+ po/eo.gmo,  40, 188, 159, 0, 0, 0, 0, 40, 188 

+ po/sr.gmo,  40, 188, 190, 0, 0, 0, 0, 40, 188 

+ po/gl.gmo,  55, 242, 317, 0, 0, 0, 0, 55, 242 

+ po/da.gmo,  40, 188, 143, 0, 0, 0, 0, 40, 188 

+ po/lt.po,  40, 188, 157, 0, 0, 0, 0, 40, 188 

+ po/zh_TW.gmo,  55, 242, 68, 0, 0, 0, 0, 55, 242 

+ po/be@latin.po,  49, 235, 217, 0, 0, 0, 0, 49, 235 

+ po/tr.po,  40, 188, 175, 0, 0, 0, 0, 40, 188 

+ po/be.po,  55, 242, 230, 0, 0, 0, 0, 55, 242 

+ po/uk.po,  55, 242, 218, 0, 0, 0, 0, 55, 242 

+ po/id.po,  40, 188, 199, 0, 0, 0, 0, 40, 188 

+ po/pa.gmo,  55, 242, 236, 0, 0, 0, 0, 55, 242 

+ po/lt.gmo,  40, 188, 157, 0, 0, 0, 0, 40, 188 

+ po/el.gmo,  39, 187, 187, 0, 0, 0, 0, 39, 187 

+ po/en_GB.gmo,  55, 242, 241, 0, 0, 0, 0, 55, 242 

+ po/mk.gmo,  49, 235, 281, 0, 0, 0, 0, 49, 235 

+ po/es.po,  40, 188, 241, 0, 0, 0, 0, 40, 188 

+ po/bn_IN.po,  39, 187, 188, 0, 0, 0, 0, 39, 187 

+ po/fi.gmo,  40, 188, 126, 0, 0, 0, 0, 40, 188 

+ po/zh_CN.gmo,  55, 242, 68, 0, 0, 0, 0, 55, 242 

+ po/en@shaw.gmo,  51, 210, 210, 0, 0, 0, 0, 51, 210 

+ po/ka.po,  49, 262, 199, 0, 0, 0, 0, 49, 262 

+ po/nb.gmo,  55, 242, 211, 0, 0, 0, 0, 55, 242 

+ po/ga.gmo,  51, 246, 275, 0, 0, 0, 0, 51, 246 

+ po/ro.po,  55, 242, 238, 0, 0, 0, 0, 55, 242 

+ po/ast.gmo,  59, 286, 340, 0, 0, 0, 0, 59, 286 

+ po/gl.po,  55, 242, 317, 0, 0, 0, 0, 55, 242 

+ po/ro.gmo,  55, 242, 238, 0, 0, 0, 0, 55, 242 

+ po/hi.gmo,  39, 187, 187, 0, 0, 0, 0, 39, 187 

+ po/de.gmo,  40, 188, 156, 0, 0, 0, 0, 40, 188 

+ po/or.po,  55, 242, 255, 0, 0, 0, 0, 55, 242 

+ po/sq.gmo,  49, 235, 286, 0, 0, 0, 0, 49, 235 

+ po/da.po,  40, 188, 143, 0, 0, 0, 0, 40, 188 

+ po/mai.gmo,  27, 109, 111, 0, 0, 0, 0, 27, 109 

+ po/zh_HK.gmo,  55, 242, 68, 0, 0, 0, 0, 55, 242 

+ po/nl.po,  40, 188, 155, 0, 0, 0, 0, 40, 188 

+ po/kk.gmo,  39, 187, 163, 0, 0, 0, 0, 39, 187 

+ po/kk.po,  39, 187, 163, 0, 0, 0, 0, 39, 187 

+ po/bn_IN.gmo,  39, 187, 188, 0, 0, 0, 0, 39, 187 

+ po/bg.po,  55, 242, 272, 0, 0, 0, 0, 55, 242 

+ po/or.gmo,  55, 242, 255, 0, 0, 0, 0, 55, 242 

+ po/th.po,  55, 242, 81, 0, 0, 0, 0, 55, 242 

+ po/libgnomekbd.pot,  0, 0, 0, 0, 0, 40, 188, 40, 188 

+ po/tr.gmo,  40, 188, 175, 0, 0, 0, 0, 40, 188 

+ po/tg.po,  39, 187, 180, 0, 0, 0, 0, 39, 187 

+ po/bn.po,  59, 286, 282, 0, 0, 0, 0, 59, 286 

+ po/dz.po,  50, 277, 101, 0, 0, 0, 0, 50, 277 

+ po/ug.po,  55, 242, 216, 0, 0, 0, 0, 55, 242 

+ po/te.gmo,  55, 242, 215, 0, 0, 0, 0, 55, 242 

+ po/et.po,  55, 242, 197, 0, 0, 0, 0, 55, 242 

+ po/pl.gmo,  40, 188, 171, 0, 0, 0, 0, 40, 188 

+ po/bg.gmo,  55, 242, 272, 0, 0, 0, 0, 55, 242 

+ po/ca.gmo,  55, 242, 324, 0, 0, 0, 0, 55, 242 

+ po/ms.gmo,  47, 183, 166, 0, 0, 0, 0, 47, 183 

+ po/sr.po,  40, 188, 190, 0, 0, 0, 0, 40, 188 

+ po/he.po,  55, 242, 244, 0, 0, 0, 0, 55, 242 

+ po/zh_HK.po,  55, 242, 68, 0, 0, 0, 0, 55, 242 

+ po/ta.po,  55, 242, 208, 0, 0, 0, 0, 55, 242 

+ po/th.gmo,  55, 242, 81, 0, 0, 0, 0, 55, 242 

+ po/he.gmo,  55, 242, 244, 0, 0, 0, 0, 55, 242 

+ po/si.po,  49, 262, 268, 0, 0, 0, 0, 49, 262 

+ po/sr@latin.po,  40, 188, 190, 0, 0, 0, 0, 40, 188 

+ po/ru.gmo,  55, 242, 218, 0, 0, 0, 0, 55, 242 

+ po/fur.po,  39, 187, 233, 0, 0, 0, 0, 39, 187 

+ po/nl.gmo,  40, 188, 155, 0, 0, 0, 0, 40, 188 

+ po/ms.po,  47, 183, 166, 0, 0, 12, 103, 59, 286 

+ po/uk.gmo,  55, 242, 218, 0, 0, 0, 0, 55, 242 

+ po/ga.po,  51, 246, 275, 0, 0, 0, 0, 51, 246 

+ po/sk.po,  40, 188, 170, 0, 0, 0, 0, 40, 188 

+ po/km.gmo,  39, 187, 69, 0, 0, 0, 0, 39, 187 

+ po/kn.gmo,  39, 187, 159, 0, 0, 0, 0, 39, 187 

+ po/et.gmo,  55, 242, 197, 0, 0, 0, 0, 55, 242 

+ po/ca@valencia.po,  55, 242, 324, 0, 0, 0, 0, 55, 242 

+ po/pt_BR.gmo,  40, 188, 227, 0, 0, 0, 0, 40, 188 

+ po/dz.gmo,  50, 277, 101, 0, 0, 0, 0, 50, 277 

+ po/mr.gmo,  39, 187, 162, 0, 0, 0, 0, 39, 187 

+ po/hi.po,  39, 187, 187, 0, 0, 0, 0, 39, 187 

+ po/fur.gmo,  39, 187, 233, 0, 0, 0, 0, 39, 187 

+ po/fr.gmo,  55, 242, 296, 0, 0, 0, 0, 55, 242 

+ po/sr@latin.gmo,  40, 188, 190, 0, 0, 0, 0, 40, 188 

+ po/ka.gmo,  49, 262, 199, 0, 0, 0, 0, 49, 262 

+ po/sq.po,  49, 235, 286, 0, 0, 0, 0, 49, 235 

+ po/lv.gmo,  39, 187, 161, 0, 0, 0, 0, 39, 187 

+ po/ko.po,  55, 242, 225, 0, 0, 0, 0, 55, 242 

+ po/bn.gmo,  59, 286, 282, 0, 0, 0, 0, 59, 286 

+ po/tg.gmo,  39, 187, 180, 0, 0, 0, 0, 39, 187 

+ po/ar.gmo,  55, 242, 231, 0, 0, 0, 0, 55, 242 

+ po/fr.po,  55, 242, 296, 0, 0, 0, 0, 55, 242 

+ po/fa.po,  55, 242, 227, 0, 0, 0, 0, 55, 242 

+ po/sv.po,  40, 188, 140, 0, 0, 0, 0, 40, 188 

+ po/it.po,  40, 188, 217, 0, 0, 0, 0, 40, 188 

+ po/en@shaw.po,  51, 210, 210, 8, 76, 0, 0, 59, 286 

+ po/oc.gmo,  39, 187, 239, 0, 0, 0, 0, 39, 187 

+ po/mr.po,  39, 187, 162, 0, 0, 0, 0, 39, 187 

+ po/as.po,  39, 187, 177, 0, 0, 0, 0, 39, 187 

+ po/kn.po,  39, 187, 159, 0, 0, 0, 0, 39, 187 

+ po/ko.gmo,  55, 242, 225, 0, 0, 0, 0, 55, 242 

+ po/mk.po,  49, 235, 281, 0, 0, 0, 0, 49, 235 

+ po/pl.po,  40, 188, 171, 0, 0, 0, 0, 40, 188 

+ po/es.gmo,  40, 188, 241, 0, 0, 0, 0, 40, 188 

+ po/gu.po,  55, 242, 224, 0, 0, 0, 0, 55, 242 

+ po/pt.po,  40, 188, 231, 0, 0, 0, 0, 40, 188 

+ po/nb.po,  55, 242, 211, 0, 0, 0, 0, 55, 242 

+ po/te.po,  55, 242, 215, 0, 0, 0, 0, 55, 242 

+ po/el.po,  39, 187, 187, 0, 0, 0, 0, 39, 187 

+ po/mai.po,  27, 109, 111, 0, 0, 24, 137, 51, 246 

+ po/ug.gmo,  55, 242, 216, 0, 0, 0, 0, 55, 242 

+ po/fa.gmo,  55, 242, 227, 0, 0, 0, 0, 55, 242 

+ po/fi.po,  40, 188, 126, 0, 0, 0, 0, 40, 188 

+ po/si.gmo,  49, 262, 268, 0, 0, 0, 0, 49, 262 

+ po/de.po,  40, 188, 156, 0, 0, 0, 0, 40, 188 

+ po/eu.gmo,  55, 242, 201, 0, 0, 0, 0, 55, 242 

+ po/be@latin.gmo,  49, 235, 217, 0, 0, 0, 0, 49, 235 

+ po/ca.po,  55, 242, 324, 0, 0, 0, 0, 55, 242 

+ po/cs.gmo,  40, 188, 165, 0, 0, 0, 0, 40, 188 

+ po/sl.po,  40, 188, 173, 0, 0, 0, 0, 40, 188 

+ po/zh_TW.po,  55, 242, 68, 0, 0, 0, 0, 55, 242 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog-2011)

@@ -0,0 +1,42 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/da.gmo,  325, 971, 854, 0, 0, 0, 0, 325, 971 

+ po/hu.po,  257, 738, 758, 118, 385, 71, 301, 446, 1424 

+ po/vi.po,  259, 740, 1268, 116, 377, 71, 307, 446, 1424 

+ po/zh_TW.po,  327, 978, 445, 77, 274, 42, 172, 446, 1424 

+ po/cs.po,  327, 978, 986, 77, 274, 42, 172, 446, 1424 

+ po/sv.po,  274, 789, 688, 109, 362, 63, 273, 446, 1424 

+ po/zh_CN.gmo,  200, 546, 230, 0, 0, 0, 0, 200, 546 

+ po/zh_CN.po,  200, 546, 230, 117, 380, 129, 498, 446, 1424 

+ po/fr.gmo,  327, 978, 1166, 0, 0, 0, 0, 327, 978 

+ po/sr.po,  257, 738, 794, 114, 371, 75, 315, 446, 1424 

+ po/de.po,  446, 1424, 1373, 0, 0, 0, 0, 446, 1424 

+ po/de.gmo,  446, 1424, 1373, 0, 0, 0, 0, 446, 1424 

+ po/zh_TW.gmo,  327, 978, 445, 0, 0, 0, 0, 327, 978 

+ po/ru.po,  444, 1420, 1447, 2, 4, 0, 0, 446, 1424 

+ po/pl.gmo,  444, 1420, 1482, 0, 0, 0, 0, 444, 1420 

+ po/ro.po,  223, 613, 723, 140, 450, 83, 361, 446, 1424 

+ po/ro.gmo,  223, 613, 723, 0, 0, 0, 0, 223, 613 

+ po/vi.gmo,  259, 740, 1268, 0, 0, 0, 0, 259, 740 

+ po/ru.gmo,  444, 1420, 1447, 0, 0, 0, 0, 444, 1420 

+ po/uk.gmo,  444, 1420, 1544, 0, 0, 0, 0, 444, 1420 

+ po/ja.gmo,  444, 1420, 540, 0, 0, 0, 0, 444, 1420 

+ po/sv.gmo,  274, 789, 688, 0, 0, 0, 0, 274, 789 

+ po/uk.po,  444, 1420, 1544, 2, 4, 0, 0, 446, 1424 

+ po/cs.gmo,  327, 978, 986, 0, 0, 0, 0, 327, 978 

+ po/eo.gmo,  259, 740, 728, 0, 0, 0, 0, 259, 740 

+ po/sr.gmo,  257, 738, 794, 0, 0, 0, 0, 257, 738 

+ po/it.gmo,  310, 922, 1098, 0, 0, 0, 0, 310, 922 

+ po/hu.gmo,  257, 738, 758, 0, 0, 0, 0, 257, 738 

+ po/pt.gmo,  310, 922, 1129, 0, 0, 0, 0, 310, 922 

+ po/es.gmo,  392, 1187, 1557, 0, 0, 0, 0, 392, 1187 

+ po/libgpg-error.pot,  0, 0, 0, 0, 0, 446, 1424, 446, 1424 

+ po/pl.po,  444, 1420, 1482, 2, 4, 0, 0, 446, 1424 

+ po/eo.po,  259, 740, 728, 120, 391, 67, 293, 446, 1424 

+ po/da.po,  325, 971, 854, 79, 281, 42, 172, 446, 1424 

+ po/pt.po,  310, 922, 1129, 90, 310, 46, 192, 446, 1424 

+ po/nl.po,  309, 917, 830, 87, 301, 50, 206, 446, 1424 

+ po/nl.gmo,  309, 917, 830, 0, 0, 0, 0, 309, 917 

+ po/es.po,  392, 1187, 1557, 2, 4, 52, 233, 446, 1424 

+ po/ja.po,  444, 1420, 540, 2, 4, 0, 0, 446, 1424 

+ po/it.po,  310, 922, 1098, 90, 310, 46, 192, 446, 1424 

+ po/fr.po,  327, 978, 1166, 77, 274, 42, 172, 446, 1424 

@@ -0,0 +1,24 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/en@quot.header)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe4 in position 134: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./libgphoto2_port/po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf1 in position 138: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,74 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ libgphoto2_port/po/da.gmo,  76, 462, 426, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/sr.gmo,  76, 462, 482, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/fr.gmo,  76, 462, 509, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/ja.gmo,  48, 269, 112, 0, 0, 0, 0, 48, 269 

+ libgphoto2_port/po/es.gmo,  76, 462, 531, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/cs.po,  75, 459, 412, 1, 3, 0, 0, 76, 462 

+ libgphoto2_port/po/sr.po,  76, 462, 482, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/zh_TW.gmo,  76, 462, 197, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/vi.gmo,  76, 462, 624, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/nl.gmo,  76, 462, 463, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/de.po,  76, 462, 454, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/zh_TW.po,  76, 462, 197, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/sv.po,  76, 462, 432, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/nl.po,  76, 462, 463, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/fi.gmo,  76, 462, 355, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/fi.po,  76, 462, 355, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/vi.po,  76, 462, 624, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/pt_BR.gmo,  76, 462, 555, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/es.po,  76, 462, 531, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/da.po,  76, 462, 426, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/pl.po,  76, 462, 487, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/ja.po,  48, 269, 112, 23, 173, 5, 20, 76, 462 

+ libgphoto2_port/po/zh_CN.po,  76, 462, 181, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/cs.gmo,  75, 459, 412, 0, 0, 0, 0, 75, 459 

+ libgphoto2_port/po/ru.gmo,  76, 462, 409, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/fr.po,  76, 462, 509, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/ru.po,  76, 462, 409, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/it.po,  75, 459, 491, 1, 3, 0, 0, 76, 462 

+ libgphoto2_port/po/sk.po,  69, 405, 386, 5, 50, 2, 7, 76, 462 

+ libgphoto2_port/po/sk.gmo,  69, 405, 386, 0, 0, 0, 0, 69, 405 

+ libgphoto2_port/po/libgphoto2_port-12.pot,  0, 0, 0, 0, 0, 76, 462, 76, 462 

+ libgphoto2_port/po/it.gmo,  75, 459, 491, 0, 0, 0, 0, 75, 459 

+ libgphoto2_port/po/eu.po,  44, 263, 239, 23, 173, 9, 26, 76, 462 

+ libgphoto2_port/po/uk.po,  76, 462, 435, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/uk.gmo,  76, 462, 435, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/zh_CN.gmo,  76, 462, 181, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/pt_BR.po,  76, 462, 555, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/sv.gmo,  76, 462, 432, 0, 0, 0, 0, 76, 462 

+ libgphoto2_port/po/pl.gmo,  76, 462, 487, 0, 0, 0, 0, 76, 462 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/da.gmo,  2468, 11048, 9836, 0, 0, 0, 0, 2468, 11048 

+ po/fr.gmo,  2468, 11048, 13832, 0, 0, 0, 0, 2468, 11048 

+ po/ja.gmo,  1180, 5257, 2874, 0, 0, 0, 0, 1180, 5257 

+ po/es.gmo,  1701, 6663, 7810, 0, 0, 0, 0, 1701, 6663 

+ po/cs.po,  2158, 9969, 11374, 270, 952, 72, 234, 2500, 11155 

+ po/vi.gmo,  2417, 10903, 15536, 0, 0, 0, 0, 2417, 10903 

+ po/nl.gmo,  1890, 8684, 8035, 0, 0, 0, 0, 1890, 8684 

+ po/de.po,  2331, 10427, 9699, 122, 444, 47, 284, 2500, 11155 

+ po/sv.po,  2468, 11048, 9724, 19, 70, 13, 37, 2500, 11155 

+ po/nl.po,  1890, 8684, 8035, 317, 1080, 293, 1391, 2500, 11155 

+ po/de.gmo,  2331, 10427, 9699, 0, 0, 0, 0, 2331, 10427 

+ po/vi.po,  2417, 10903, 15536, 63, 203, 20, 49, 2500, 11155 

+ po/es.po,  1701, 6663, 7810, 611, 2366, 188, 2126, 2500, 11155 

+ po/da.po,  2468, 11048, 9836, 19, 70, 13, 37, 2500, 11155 

+ po/pl.po,  2468, 11048, 11119, 19, 70, 13, 37, 2500, 11155 

+ po/ja.po,  1180, 5257, 2874, 662, 2923, 658, 2975, 2500, 11155 

+ po/zh_CN.po,  602, 2742, 1278, 756, 3196, 1142, 5217, 2500, 11155 

+ po/cs.gmo,  2158, 9969, 11374, 0, 0, 0, 0, 2158, 9969 

+ po/ru.gmo,  577, 3043, 2796, 0, 0, 0, 0, 577, 3043 

+ po/fr.po,  2468, 11048, 13832, 19, 70, 13, 37, 2500, 11155 

+ po/hu.po,  579, 2661, 2623, 756, 3216, 1165, 5278, 2500, 11155 

+ po/ru.po,  577, 3043, 2796, 734, 2867, 1189, 5245, 2500, 11155 

+ po/it.po,  1529, 5390, 5820, 104, 318, 867, 5447, 2500, 11155 

+ po/it.gmo,  1529, 5390, 5820, 0, 0, 0, 0, 1529, 5390 

+ po/hu.gmo,  579, 2661, 2623, 0, 0, 0, 0, 579, 2661 

+ po/eu.po,  794, 4240, 3992, 854, 3597, 852, 3318, 2500, 11155 

+ po/uk.po,  2468, 11048, 10919, 19, 70, 13, 37, 2500, 11155 

+ po/uk.gmo,  2468, 11048, 10919, 0, 0, 0, 0, 2468, 11048 

+ po/zh_CN.gmo,  602, 2742, 1278, 0, 0, 0, 0, 602, 2742 

+ po/libgphoto2-6.pot,  0, 0, 0, 0, 0, 2500, 11155, 2500, 11155 

+ po/sv.gmo,  2468, 11048, 9724, 0, 0, 0, 0, 2468, 11048 

+ po/eu.gmo,  794, 4240, 3992, 0, 0, 0, 0, 794, 4240 

+ po/pl.gmo,  2468, 11048, 11119, 0, 0, 0, 0, 2468, 11048 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,47 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/tr.po,  149, 719, 619, 0, 0, 0, 0, 149, 719 

+ po/ta.po,  34, 243, 195, 0, 0, 0, 0, 34, 243 

+ po/ro.po,  110, 843, 1003, 0, 0, 0, 0, 110, 843 

+ po/zh_CN.po,  150, 720, 307, 0, 0, 0, 0, 150, 720 

+ po/it.po,  146, 696, 760, 0, 0, 0, 0, 146, 696 

+ po/pa.po,  13, 69, 70, 0, 0, 97, 774, 110, 843 

+ po/ca.po,  146, 696, 981, 0, 0, 0, 0, 146, 696 

+ po/pt_BR.po,  150, 720, 877, 0, 0, 0, 0, 150, 720 

+ po/ru.po,  149, 719, 649, 0, 0, 0, 0, 149, 719 

+ po/ml.po,  15, 27, 28, 0, 0, 131, 669, 146, 696 

+ po/es.po,  150, 720, 925, 0, 0, 0, 0, 150, 720 

+ po/pt.po,  150, 720, 817, 0, 0, 0, 0, 150, 720 

+ po/da.po,  150, 720, 655, 0, 0, 0, 0, 150, 720 

+ po/sv.po,  150, 720, 647, 0, 0, 0, 0, 150, 720 

+ po/tg.po,  2, 5, 5, 0, 0, 145, 697, 147, 702 

+ po/he.po,  146, 696, 696, 0, 0, 0, 0, 146, 696 

+ po/uk.po,  28, 213, 195, 0, 0, 0, 0, 28, 213 

+ po/eo.po,  116, 503, 481, 3, 20, 31, 197, 150, 720 

+ po/ca@valencia.po,  146, 696, 971, 0, 0, 0, 0, 146, 696 

+ po/fr.po,  150, 720, 909, 0, 0, 0, 0, 150, 720 

+ po/nb.po,  75, 359, 346, 1, 3, 70, 334, 146, 696 

+ po/pl.po,  150, 720, 696, 0, 0, 0, 0, 150, 720 

+ po/sl.po,  150, 720, 700, 0, 0, 0, 0, 150, 720 

+ po/eu.po,  149, 719, 669, 0, 0, 0, 0, 149, 719 

+ po/en_GB.po,  145, 692, 692, 0, 0, 0, 0, 145, 692 

+ po/de.po,  150, 720, 693, 0, 0, 0, 0, 150, 720 

+ po/fi.po,  146, 696, 524, 0, 0, 0, 0, 146, 696 

+ po/zh_TW.po,  146, 696, 275, 0, 0, 0, 0, 146, 696 

+ po/sr@latin.po,  150, 720, 712, 0, 0, 0, 0, 150, 720 

+ po/bs.po,  149, 719, 699, 0, 0, 0, 0, 149, 719 

+ po/sr.po,  150, 720, 712, 0, 0, 0, 0, 150, 720 

+ po/sk.po,  150, 720, 721, 0, 0, 0, 0, 150, 720 

+ po/gl.po,  146, 696, 871, 0, 0, 0, 0, 146, 696 

+ po/zh_HK.po,  146, 696, 275, 0, 0, 0, 0, 146, 696 

+ po/lv.po,  146, 696, 617, 0, 0, 0, 0, 146, 696 

+ po/th.po,  83, 413, 190, 0, 0, 63, 283, 146, 696 

+ po/el.po,  150, 720, 763, 0, 0, 0, 0, 150, 720 

+ po/oc.po,  34, 216, 256, 0, 0, 112, 480, 146, 696 

+ po/nn.po,  109, 833, 717, 0, 0, 1, 10, 110, 843 

+ po/hu.po,  150, 720, 678, 0, 0, 0, 0, 150, 720 

+ po/ko.po,  146, 696, 609, 0, 0, 0, 0, 146, 696 

+ po/ja.po,  145, 692, 276, 1, 4, 0, 0, 146, 696 

+ po/id.po,  150, 720, 685, 0, 0, 0, 0, 150, 720 

+ po/cs.po,  150, 720, 691, 0, 0, 0, 0, 150, 720 

+ po/as.po,  1, 9, 8, 0, 0, 145, 687, 146, 696 

+ po/lt.po,  150, 720, 621, 0, 0, 0, 0, 150, 720 

@@ -0,0 +1,15 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,172 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ca.gmo,  40, 126, 168, 0, 0, 0, 0, 40, 126 

+ po/hr.gmo,  40, 126, 137, 0, 0, 0, 0, 40, 126 

+ po/sr.po,  40, 126, 159, 0, 0, 0, 0, 40, 126 

+ po/ug.gmo,  40, 126, 121, 0, 0, 0, 0, 40, 126 

+ po/cs.po,  40, 126, 133, 0, 0, 0, 0, 40, 126 

+ po/mi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/am.gmo,  9, 12, 12, 0, 0, 0, 0, 9, 12 

+ po/rw.po,  5, 5, 6, 24, 102, 15, 27, 44, 134 

+ po/ru.po,  40, 126, 129, 0, 0, 0, 0, 40, 126 

+ po/zh_TW.po,  40, 126, 64, 0, 0, 0, 0, 40, 126 

+ po/mai.gmo,  40, 126, 134, 0, 0, 0, 0, 40, 126 

+ po/ca.po,  40, 126, 168, 0, 0, 0, 0, 40, 126 

+ po/eo.gmo,  40, 126, 118, 0, 0, 0, 0, 40, 126 

+ po/ku.po,  7, 17, 22, 1, 1, 36, 116, 44, 134 

+ po/ka.gmo,  10, 14, 14, 0, 0, 0, 0, 10, 14 

+ po/sq.gmo,  40, 126, 162, 0, 0, 0, 0, 40, 126 

+ po/ka.po,  10, 14, 14, 17, 81, 17, 39, 44, 134 

+ po/ga.gmo,  40, 126, 162, 0, 0, 0, 0, 40, 126 

+ po/gl.po,  40, 126, 161, 0, 0, 0, 0, 40, 126 

+ po/vi.po,  41, 126, 227, 0, 0, 0, 0, 41, 126 

+ po/nn.po,  40, 126, 111, 0, 0, 0, 0, 40, 126 

+ po/mk.gmo,  40, 126, 152, 0, 0, 0, 0, 40, 126 

+ po/bn_IN.gmo,  40, 126, 152, 0, 0, 0, 0, 40, 126 

+ po/nl.po,  40, 126, 124, 0, 0, 0, 0, 40, 126 

+ po/hu.po,  40, 126, 108, 0, 0, 0, 0, 40, 126 

+ po/th.po,  40, 126, 56, 0, 0, 0, 0, 40, 126 

+ po/zh_HK.gmo,  40, 126, 62, 0, 0, 0, 0, 40, 126 

+ po/la.po,  2, 2, 2, 0, 0, 38, 124, 40, 126 

+ po/bs.po,  40, 126, 135, 0, 0, 0, 0, 40, 126 

+ po/pt.po,  40, 126, 146, 0, 0, 0, 0, 40, 126 

+ po/ca@valencia.po,  40, 126, 167, 0, 0, 0, 0, 40, 126 

+ po/sr@latin.po,  40, 126, 159, 0, 0, 0, 0, 40, 126 

+ po/pt_BR.gmo,  40, 126, 147, 0, 0, 0, 0, 40, 126 

+ po/ast.gmo,  40, 126, 155, 0, 0, 0, 0, 40, 126 

+ po/mk.po,  40, 126, 152, 0, 0, 0, 0, 40, 126 

+ po/hi.po,  40, 126, 145, 0, 0, 0, 0, 40, 126 

+ po/mi.po,  0, 0, 0, 8, 34, 36, 100, 44, 134 

+ po/te.po,  40, 126, 113, 0, 0, 0, 0, 40, 126 

+ po/fr.po,  40, 126, 148, 0, 0, 0, 0, 40, 126 

+ po/tg.po,  40, 126, 129, 0, 0, 0, 0, 40, 126 

+ po/zh_CN.gmo,  40, 126, 58, 0, 0, 0, 0, 40, 126 

+ po/ta.po,  40, 126, 113, 0, 0, 0, 0, 40, 126 

+ po/ne.gmo,  40, 126, 132, 0, 0, 0, 0, 40, 126 

+ po/hr.po,  40, 126, 137, 0, 0, 0, 0, 40, 126 

+ po/pa.po,  40, 126, 127, 0, 0, 0, 0, 40, 126 

+ po/id.po,  40, 126, 115, 0, 0, 0, 0, 40, 126 

+ po/xh.po,  44, 134, 153, 0, 0, 0, 0, 44, 134 

+ po/sl.gmo,  40, 126, 145, 0, 0, 0, 0, 40, 126 

+ po/cy.gmo,  44, 134, 146, 0, 0, 0, 0, 44, 134 

+ po/sr.gmo,  40, 126, 159, 0, 0, 0, 0, 40, 126 

+ po/pt_BR.po,  40, 126, 147, 0, 0, 0, 0, 40, 126 

+ po/gu.gmo,  40, 126, 156, 0, 0, 0, 0, 40, 126 

+ po/as.gmo,  40, 126, 146, 0, 0, 0, 0, 40, 126 

+ po/el.gmo,  40, 126, 144, 0, 0, 0, 0, 40, 126 

+ po/da.gmo,  40, 126, 113, 0, 0, 0, 0, 40, 126 

+ po/nl.gmo,  40, 126, 124, 0, 0, 0, 0, 40, 126 

+ po/mg.gmo,  44, 134, 155, 0, 0, 0, 0, 44, 134 

+ po/bs.gmo,  40, 126, 135, 0, 0, 0, 0, 40, 126 

+ po/mr.gmo,  40, 126, 127, 0, 0, 0, 0, 40, 126 

+ po/lt.po,  40, 126, 132, 0, 0, 0, 0, 40, 126 

+ po/en_GB.po,  40, 126, 126, 0, 0, 0, 0, 40, 126 

+ po/id.gmo,  40, 126, 115, 0, 0, 0, 0, 40, 126 

+ po/uk.gmo,  40, 126, 138, 0, 0, 0, 0, 40, 126 

+ po/en@shaw.gmo,  40, 126, 126, 0, 0, 0, 0, 40, 126 

+ po/tg.gmo,  40, 126, 129, 0, 0, 0, 0, 40, 126 

+ po/ku.gmo,  7, 17, 22, 0, 0, 0, 0, 7, 17 

+ po/zh_TW.gmo,  40, 126, 64, 0, 0, 0, 0, 40, 126 

+ po/et.po,  40, 126, 103, 0, 0, 0, 0, 40, 126 

+ po/da.po,  40, 126, 113, 0, 0, 0, 0, 40, 126 

+ po/ky.gmo,  40, 126, 114, 0, 0, 0, 0, 40, 126 

+ po/it.gmo,  40, 126, 139, 0, 0, 0, 0, 40, 126 

+ po/vi.gmo,  40, 126, 190, 0, 0, 0, 0, 40, 126 

+ po/zh_CN.po,  40, 126, 58, 0, 0, 0, 0, 40, 126 

+ po/pl.po,  40, 126, 140, 0, 0, 0, 0, 40, 126 

+ po/ca@valencia.gmo,  40, 126, 167, 0, 0, 0, 0, 40, 126 

+ po/oc.po,  40, 126, 149, 0, 0, 0, 0, 40, 126 

+ po/dz.gmo,  39, 113, 73, 0, 0, 0, 0, 39, 113 

+ po/el.po,  40, 126, 144, 0, 0, 0, 0, 40, 126 

+ po/nb.gmo,  40, 126, 117, 0, 0, 0, 0, 40, 126 

+ po/te.gmo,  40, 126, 113, 0, 0, 0, 0, 40, 126 

+ po/mn.gmo,  42, 118, 109, 0, 0, 0, 0, 42, 118 

+ po/de.gmo,  40, 126, 109, 0, 0, 0, 0, 40, 126 

+ po/uk.po,  40, 126, 138, 0, 0, 0, 0, 40, 126 

+ po/mr.po,  40, 126, 127, 0, 0, 0, 0, 40, 126 

+ po/pt.gmo,  40, 126, 146, 0, 0, 0, 0, 40, 126 

+ po/oc.gmo,  40, 126, 149, 0, 0, 0, 0, 40, 126 

+ po/kn.gmo,  40, 126, 118, 0, 0, 0, 0, 40, 126 

+ po/ml.po,  40, 126, 121, 0, 0, 0, 0, 40, 126 

+ po/hu.gmo,  40, 126, 108, 0, 0, 0, 0, 40, 126 

+ po/cy.po,  44, 134, 146, 0, 0, 0, 0, 44, 134 

+ po/en_CA.gmo,  44, 134, 134, 0, 0, 0, 0, 44, 134 

+ po/es.po,  40, 126, 158, 0, 0, 0, 0, 40, 126 

+ po/be.gmo,  40, 126, 156, 0, 0, 0, 0, 40, 126 

+ po/ky.po,  40, 126, 114, 0, 0, 0, 0, 40, 126 

+ po/en_CA.po,  44, 134, 134, 0, 0, 0, 0, 44, 134 

+ po/dz.po,  39, 113, 73, 1, 13, 0, 0, 40, 126 

+ po/ast.po,  40, 126, 155, 0, 0, 0, 0, 40, 126 

+ po/eu.gmo,  40, 126, 113, 0, 0, 0, 0, 40, 126 

+ po/zh_HK.po,  40, 126, 62, 0, 0, 0, 0, 40, 126 

+ po/ru.gmo,  40, 126, 129, 0, 0, 0, 0, 40, 126 

+ po/be.po,  40, 126, 156, 0, 0, 0, 0, 40, 126 

+ po/et.gmo,  40, 126, 103, 0, 0, 0, 0, 40, 126 

+ po/la.gmo,  2, 2, 2, 0, 0, 0, 0, 2, 2 

+ po/sq.po,  40, 126, 162, 0, 0, 0, 0, 40, 126 

+ po/fi.gmo,  39, 122, 89, 0, 0, 0, 0, 39, 122 

+ po/tr.po,  40, 126, 109, 0, 0, 0, 0, 40, 126 

+ po/or.po,  40, 126, 133, 0, 0, 0, 0, 40, 126 

+ po/bn.po,  40, 126, 143, 0, 0, 0, 0, 40, 126 

+ po/sk.gmo,  40, 126, 138, 0, 0, 0, 0, 40, 126 

+ po/sv.po,  40, 126, 100, 0, 0, 0, 0, 40, 126 

+ po/bn_IN.po,  40, 126, 152, 0, 0, 0, 0, 40, 126 

+ po/sr@latin.gmo,  40, 126, 159, 0, 0, 0, 0, 40, 126 

+ po/sk.po,  40, 126, 138, 0, 0, 0, 0, 40, 126 

+ po/hi.gmo,  40, 126, 145, 0, 0, 0, 0, 40, 126 

+ po/fur.gmo,  40, 126, 142, 0, 0, 0, 0, 40, 126 

+ po/az.po,  42, 118, 118, 2, 16, 0, 0, 44, 134 

+ po/fur.po,  40, 126, 142, 0, 0, 0, 0, 40, 126 

+ po/pa.gmo,  40, 126, 127, 0, 0, 0, 0, 40, 126 

+ po/ro.gmo,  40, 126, 172, 0, 0, 0, 0, 40, 126 

+ po/de.po,  40, 126, 109, 0, 0, 0, 0, 40, 126 

+ po/gl.gmo,  40, 126, 161, 0, 0, 0, 0, 40, 126 

+ po/gu.po,  40, 126, 156, 0, 0, 0, 0, 40, 126 

+ po/he.gmo,  40, 126, 126, 0, 0, 0, 0, 40, 126 

+ po/sl.po,  40, 126, 145, 0, 0, 0, 0, 40, 126 

+ po/sv.gmo,  40, 126, 100, 0, 0, 0, 0, 40, 126 

+ po/as.po,  40, 126, 146, 0, 0, 0, 0, 40, 126 

+ po/eu.po,  40, 126, 113, 0, 0, 0, 0, 40, 126 

+ po/rw.gmo,  5, 5, 6, 0, 0, 0, 0, 5, 5 

+ po/mn.po,  42, 118, 109, 2, 16, 0, 0, 44, 134 

+ po/bn.gmo,  40, 126, 143, 0, 0, 0, 0, 40, 126 

+ po/eo.po,  40, 126, 118, 0, 0, 0, 0, 40, 126 

+ po/ne.po,  40, 126, 132, 0, 0, 0, 0, 40, 126 

+ po/libgtop.pot,  0, 0, 0, 0, 0, 40, 126, 40, 126 

+ po/ms.gmo,  40, 110, 110, 0, 0, 0, 0, 40, 110 

+ po/ja.gmo,  40, 126, 49, 0, 0, 0, 0, 40, 126 

+ po/mai.po,  40, 126, 134, 0, 0, 0, 0, 40, 126 

+ po/bg.gmo,  40, 126, 148, 0, 0, 0, 0, 40, 126 

+ po/bg.po,  40, 126, 148, 0, 0, 0, 0, 40, 126 

+ po/ro.po,  40, 126, 172, 0, 0, 0, 0, 40, 126 

+ po/en_GB.gmo,  40, 126, 126, 0, 0, 0, 0, 40, 126 

+ po/en@shaw.po,  40, 126, 126, 0, 0, 0, 0, 40, 126 

+ po/ko.gmo,  40, 126, 103, 0, 0, 0, 0, 40, 126 

+ po/ja.po,  40, 126, 49, 0, 0, 0, 0, 40, 126 

+ po/az.gmo,  42, 118, 118, 0, 0, 0, 0, 42, 118 

+ po/th.gmo,  40, 126, 56, 0, 0, 0, 0, 40, 126 

+ po/he.po,  40, 126, 126, 0, 0, 0, 0, 40, 126 

+ po/ta.gmo,  40, 126, 113, 0, 0, 0, 0, 40, 126 

+ po/cs.gmo,  40, 126, 133, 0, 0, 0, 0, 40, 126 

+ po/lv.po,  40, 126, 125, 0, 0, 0, 0, 40, 126 

+ po/xh.gmo,  44, 134, 153, 0, 0, 0, 0, 44, 134 

+ po/fa.po,  40, 126, 141, 0, 0, 0, 0, 40, 126 

+ po/kn.po,  40, 126, 118, 0, 0, 0, 0, 40, 126 

+ po/it.po,  40, 126, 139, 0, 0, 0, 0, 40, 126 

+ po/nn.gmo,  40, 126, 111, 0, 0, 0, 0, 40, 126 

+ po/es.gmo,  40, 126, 158, 0, 0, 0, 0, 40, 126 

+ po/ms.po,  40, 110, 110, 3, 22, 1, 2, 44, 134 

+ po/mg.po,  44, 134, 155, 0, 0, 0, 0, 44, 134 

+ po/ml.gmo,  40, 126, 121, 0, 0, 0, 0, 40, 126 

+ po/or.gmo,  40, 126, 133, 0, 0, 0, 0, 40, 126 

+ po/am.po,  9, 12, 12, 0, 0, 35, 122, 44, 134 

+ po/lt.gmo,  40, 126, 132, 0, 0, 0, 0, 40, 126 

+ po/nb.po,  40, 126, 117, 0, 0, 0, 0, 40, 126 

+ po/ko.po,  40, 126, 103, 0, 0, 0, 0, 40, 126 

+ po/fr.gmo,  40, 126, 148, 0, 0, 0, 0, 40, 126 

+ po/ar.po,  40, 126, 171, 0, 0, 0, 0, 40, 126 

+ po/lv.gmo,  40, 126, 125, 0, 0, 0, 0, 40, 126 

+ po/pl.gmo,  40, 126, 140, 0, 0, 0, 0, 40, 126 

+ po/fi.po,  39, 122, 89, 1, 4, 0, 0, 40, 126 

+ po/tr.gmo,  40, 126, 109, 0, 0, 0, 0, 40, 126 

+ po/ga.po,  40, 126, 162, 0, 0, 0, 0, 40, 126 

+ po/ug.po,  40, 126, 121, 0, 0, 0, 0, 40, 126 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po-locations/regen.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-locations/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-locations/extract.xsl)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-locations/README.translators)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-locations/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-locations/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po-locations/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/update.sh)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,202 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po-locations/zh_TW.po,  4267, 5481, 4347, 107, 129, 57, 78, 4431, 5688 

+ po-locations/zh_HK.po,  4267, 5481, 4342, 107, 129, 57, 78, 4431, 5688 

+ po-locations/zh_CN.po,  4412, 5664, 4448, 7, 11, 21, 28, 4440, 5703 

+ po-locations/vi.po,  4374, 5625, 5762, 0, 0, 0, 0, 4374, 5625 

+ po-locations/uk.po,  4374, 5625, 5407, 0, 0, 0, 0, 4374, 5625 

+ po-locations/ug.po,  4375, 5624, 5525, 0, 0, 0, 0, 4375, 5624 

+ po-locations/tr.po,  4439, 5702, 5676, 0, 0, 0, 0, 4439, 5702 

+ po-locations/th.po,  2603, 3377, 2822, 18, 53, 1716, 2156, 4337, 5586 

+ po-locations/te.po,  4430, 5687, 5764, 0, 0, 0, 0, 4430, 5687 

+ po-locations/ta.po,  4430, 5687, 5794, 0, 0, 0, 0, 4430, 5687 

+ po-locations/sv.po,  4439, 5702, 5630, 0, 0, 0, 0, 4439, 5702 

+ po-locations/sr@latin.po,  4440, 5703, 5739, 0, 0, 0, 0, 4440, 5703 

+ po-locations/sr.po,  4439, 5702, 5738, 0, 0, 0, 0, 4439, 5702 

+ po-locations/sq.po,  4566, 6823, 6871, 0, 0, 0, 0, 4566, 6823 

+ po-locations/sl.po,  4439, 5702, 5837, 0, 0, 0, 0, 4439, 5702 

+ po-locations/sk.po,  4442, 5703, 5671, 0, 0, 0, 0, 4442, 5703 

+ po-locations/si.po,  4256, 6087, 5873, 0, 0, 310, 736, 4566, 6823 

+ po-locations/rw.po,  226, 310, 331, 83, 261, 6192, 9222, 6501, 9793 

+ po-locations/ru.po,  4439, 5702, 4918, 0, 0, 0, 0, 4439, 5702 

+ po-locations/ro.po,  4439, 5702, 5768, 0, 0, 0, 0, 4439, 5702 

+ po-locations/pt_BR.po,  4439, 5702, 5804, 0, 0, 0, 0, 4439, 5702 

+ po-locations/pt.po,  4431, 5688, 5875, 0, 0, 0, 0, 4431, 5688 

+ po-locations/pl.po,  4439, 5702, 5688, 0, 0, 0, 0, 4439, 5702 

+ po-locations/pa.po,  4442, 5703, 5704, 0, 0, 0, 0, 4442, 5703 

+ po-locations/or.po,  4430, 5687, 5676, 0, 0, 0, 0, 4430, 5687 

+ po-locations/oc.po,  4431, 5688, 5806, 0, 0, 0, 0, 4431, 5688 

+ po-locations/nn.po,  4374, 5625, 5480, 0, 0, 0, 0, 4374, 5625 

+ po-locations/nl.po,  4439, 5702, 5620, 0, 0, 0, 0, 4439, 5702 

+ po-locations/ne.po,  3014, 3917, 3912, 343, 601, 1082, 1184, 4439, 5702 

+ po-locations/nds.po,  4337, 5586, 5471, 0, 0, 0, 0, 4337, 5586 

+ po-locations/nb.po,  4442, 5703, 5630, 0, 0, 0, 0, 4442, 5703 

+ po-locations/ms.po,  4374, 5625, 5650, 0, 0, 0, 0, 4374, 5625 

+ po-locations/mr.po,  4375, 5624, 5635, 0, 0, 0, 0, 4375, 5624 

+ po-locations/mn.po,  2678, 3642, 3641, 0, 0, 0, 0, 2678, 3642 

+ po-locations/ml.po,  4442, 5703, 5809, 0, 0, 0, 0, 4442, 5703 

+ po-locations/mk.po,  4374, 5625, 5606, 0, 0, 0, 0, 4374, 5625 

+ po-locations/mg.po,  4325, 6196, 6185, 30, 61, 0, 0, 4355, 6257 

+ po-locations/mai.po,  4337, 5586, 5656, 0, 0, 0, 0, 4337, 5586 

+ po-locations/lv.po,  2900, 3781, 3699, 0, 0, 1539, 1921, 4439, 5702 

+ po-locations/lt.po,  4439, 5702, 5699, 0, 0, 0, 0, 4439, 5702 

+ po-locations/ky.po,  6597, 9910, 9670, 0, 0, 0, 0, 6597, 9910 

+ po-locations/ku.po,  4369, 5620, 5616, 0, 0, 0, 0, 4369, 5620 

+ po-locations/ko.po,  1045, 1337, 1148, 0, 0, 3386, 4351, 4431, 5688 

+ po-locations/kn.po,  4374, 5623, 5626, 0, 0, 0, 0, 4374, 5623 

+ po-locations/kk.po,  2034, 2489, 2193, 0, 0, 2405, 3213, 4439, 5702 

+ po-locations/ka.po,  6588, 9901, 9865, 0, 0, 0, 0, 6588, 9901 

+ po-locations/ja.po,  4375, 5627, 4847, 0, 0, 64, 75, 4439, 5702 

+ po-locations/it.po,  4439, 5702, 5764, 0, 0, 0, 0, 4439, 5702 

+ po-locations/is.po,  4439, 5702, 5541, 0, 0, 0, 0, 4439, 5702 

+ po-locations/id.po,  4439, 5702, 5701, 0, 0, 0, 0, 4439, 5702 

+ po-locations/hu.po,  4439, 5702, 5589, 0, 0, 0, 0, 4439, 5702 

+ po-locations/hr.po,  4439, 5702, 5725, 0, 0, 0, 0, 4439, 5702 

+ po-locations/hi.po,  4374, 5623, 5692, 0, 0, 0, 0, 4374, 5623 

+ po-locations/he.po,  4449, 5709, 5690, 0, 0, 0, 0, 4449, 5709 

+ po-locations/gu.po,  4414, 5666, 5686, 0, 0, 0, 0, 4414, 5666 

+ po-locations/gl.po,  4439, 5702, 5802, 0, 0, 0, 0, 4439, 5702 

+ po-locations/gd.po,  4441, 5702, 5959, 0, 0, 0, 0, 4441, 5702 

+ po-locations/ga.po,  1888, 2462, 2589, 910, 1322, 1651, 1925, 4449, 5709 

+ po-locations/fur.po,  4439, 5702, 5768, 0, 0, 0, 0, 4439, 5702 

+ po-locations/fr.po,  4439, 5702, 5719, 0, 0, 0, 0, 4439, 5702 

+ po-locations/fi.po,  4414, 5668, 5540, 17, 20, 9, 15, 4440, 5703 

+ po-locations/fa.po,  4439, 5702, 5638, 0, 0, 0, 0, 4439, 5702 

+ po-locations/eu.po,  4439, 5702, 5688, 0, 0, 0, 0, 4439, 5702 

+ po-locations/et.po,  4374, 5625, 5525, 0, 0, 0, 0, 4374, 5625 

+ po-locations/es.po,  4439, 5702, 5783, 0, 0, 0, 0, 4439, 5702 

+ po-locations/eo.po,  4439, 5702, 5525, 0, 0, 0, 0, 4439, 5702 

+ po-locations/en_GB.po,  4439, 5702, 5703, 0, 0, 0, 0, 4439, 5702 

+ po-locations/en_CA.po,  4390, 6303, 6303, 0, 0, 0, 0, 4390, 6303 

+ po-locations/en@shaw.po,  2667, 3595, 3595, 0, 0, 0, 0, 2667, 3595 

+ po-locations/el.po,  4439, 5702, 5713, 0, 0, 0, 0, 4439, 5702 

+ po-locations/dz.po,  6589, 9906, 9437, 0, 0, 0, 0, 6589, 9906 

+ po-locations/de.po,  4439, 5702, 5577, 0, 0, 0, 0, 4439, 5702 

+ po-locations/da.po,  4439, 5702, 5619, 0, 0, 0, 0, 4439, 5702 

+ po-locations/cy.po,  6603, 9919, 10438, 0, 0, 0, 0, 6603, 9919 

+ po-locations/cs.po,  4439, 5702, 5685, 0, 0, 0, 0, 4439, 5702 

+ po-locations/crh.po,  4393, 5645, 5634, 0, 0, 0, 0, 4393, 5645 

+ po-locations/ca@valencia.po,  4442, 5703, 5770, 0, 0, 0, 0, 4442, 5703 

+ po-locations/ca.po,  4424, 5684, 5757, 0, 0, 0, 0, 4424, 5684 

+ po-locations/bs.po,  4374, 5623, 5842, 0, 0, 0, 0, 4374, 5623 

+ po-locations/br.po,  4298, 5403, 5403, 0, 0, 76, 222, 4374, 5625 

+ po-locations/bn_IN.po,  4374, 5623, 5604, 0, 0, 0, 0, 4374, 5623 

+ po-locations/bn.po,  4374, 5625, 5631, 0, 0, 0, 0, 4374, 5625 

+ po-locations/bg.po,  4460, 5724, 5722, 0, 0, 0, 0, 4460, 5724 

+ po-locations/be@latin.po,  4381, 5642, 5624, 0, 0, 0, 0, 4381, 5642 

+ po-locations/be.po,  4337, 5586, 5564, 0, 0, 0, 0, 4337, 5586 

+ po-locations/az.po,  2693, 3655, 3651, 0, 0, 0, 0, 2693, 3655 

+ po-locations/ast.po,  4369, 5620, 5694, 0, 0, 0, 0, 4369, 5620 

+ po-locations/as.po,  4430, 5687, 5675, 0, 0, 0, 0, 4430, 5687 

+ po-locations/ar.po,  3386, 4260, 4189, 702, 920, 343, 508, 4431, 5688 

+ po-locations/ang.po,  46, 51, 57, 0, 0, 2655, 3612, 2701, 3663 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  235, 664, 282, 0, 0, 0, 0, 235, 664 

+ po/zh_HK.po,  144, 479, 188, 1, 4, 0, 0, 145, 483 

+ po/zh_CN.po,  234, 662, 268, 0, 0, 0, 0, 234, 662 

+ po/xh.po,  153, 355, 339, 12, 35, 14, 70, 179, 460 

+ po/wa.po,  35, 57, 71, 24, 58, 120, 345, 179, 460 

+ po/vi.po,  148, 483, 629, 0, 0, 0, 0, 148, 483 

+ po/uk.po,  146, 484, 484, 0, 0, 0, 0, 146, 484 

+ po/ug.po,  148, 483, 445, 0, 0, 0, 0, 148, 483 

+ po/tr.po,  235, 664, 661, 0, 0, 0, 0, 235, 664 

+ po/th.po,  147, 485, 254, 0, 0, 0, 0, 147, 485 

+ po/te.po,  146, 484, 441, 0, 0, 0, 0, 146, 484 

+ po/ta.po,  146, 484, 396, 0, 0, 0, 0, 146, 484 

+ po/sv.po,  235, 664, 606, 0, 0, 0, 0, 235, 664 

+ po/sr@latin.po,  234, 662, 645, 0, 0, 0, 0, 234, 662 

+ po/sr.po,  235, 664, 650, 0, 0, 0, 0, 235, 664 

+ po/sq.po,  179, 461, 534, 0, 0, 0, 0, 179, 461 

+ po/sl.po,  235, 664, 674, 0, 0, 0, 0, 235, 664 

+ po/sk.po,  234, 662, 645, 0, 0, 0, 0, 234, 662 

+ po/si.po,  119, 222, 233, 0, 0, 60, 238, 179, 460 

+ po/rw.po,  9, 9, 8, 59, 215, 111, 236, 179, 460 

+ po/ru.po,  235, 664, 660, 0, 0, 0, 0, 235, 664 

+ po/ro.po,  235, 664, 747, 0, 0, 0, 0, 235, 664 

+ po/pt_BR.po,  235, 664, 725, 0, 0, 0, 0, 235, 664 

+ po/pt.po,  147, 485, 544, 0, 0, 0, 0, 147, 485 

+ po/pl.po,  235, 664, 672, 0, 0, 0, 0, 235, 664 

+ po/pa.po,  237, 667, 705, 0, 0, 0, 0, 237, 667 

+ po/or.po,  148, 483, 487, 0, 0, 0, 0, 148, 483 

+ po/oc.po,  234, 662, 744, 0, 0, 0, 0, 234, 662 

+ po/nn.po,  181, 465, 416, 0, 0, 0, 0, 181, 465 

+ po/nl.po,  235, 664, 583, 0, 0, 0, 0, 235, 664 

+ po/ne.po,  136, 253, 285, 4, 30, 7, 210, 147, 493 

+ po/nb.po,  237, 667, 605, 0, 0, 0, 0, 237, 667 

+ po/ms.po,  127, 285, 306, 24, 54, 28, 121, 179, 460 

+ po/mr.po,  146, 484, 436, 0, 0, 0, 0, 146, 484 

+ po/mn.po,  98, 192, 199, 25, 63, 56, 205, 179, 460 

+ po/ml.po,  235, 664, 613, 0, 0, 0, 0, 235, 664 

+ po/mk.po,  179, 461, 487, 0, 0, 0, 0, 179, 461 

+ po/mg.po,  166, 437, 429, 9, 19, 4, 4, 179, 460 

+ po/mai.po,  175, 408, 442, 0, 0, 6, 57, 181, 465 

+ po/lv.po,  235, 664, 632, 0, 0, 0, 0, 235, 664 

+ po/lt.po,  235, 664, 610, 0, 0, 0, 0, 235, 664 

+ po/ky.po,  132, 426, 421, 3, 39, 3, 5, 138, 470 

+ po/ku.po,  174, 396, 463, 1, 10, 4, 54, 179, 460 

+ po/ko.po,  235, 664, 572, 0, 0, 0, 0, 235, 664 

+ po/kn.po,  146, 484, 446, 0, 0, 0, 0, 146, 484 

+ po/kk.po,  235, 664, 701, 0, 0, 0, 0, 235, 664 

+ po/ka.po,  170, 447, 408, 5, 9, 4, 4, 179, 460 

+ po/ja.po,  226, 647, 327, 0, 0, 9, 17, 235, 664 

+ po/it.po,  235, 664, 752, 0, 0, 0, 0, 235, 664 

+ po/is.po,  235, 664, 561, 0, 0, 0, 0, 235, 664 

+ po/id.po,  235, 664, 698, 0, 0, 0, 0, 235, 664 

+ po/hy.po,  155, 360, 362, 14, 39, 10, 61, 179, 460 

+ po/hu.po,  235, 664, 593, 0, 0, 0, 0, 235, 664 

+ po/hr.po,  235, 664, 654, 0, 0, 0, 0, 235, 664 

+ po/hi.po,  146, 484, 548, 0, 0, 0, 0, 146, 484 

+ po/he.po,  147, 485, 519, 0, 0, 0, 0, 147, 485 

+ po/gu.po,  147, 485, 491, 0, 0, 0, 0, 147, 485 

+ po/gl.po,  235, 664, 775, 0, 0, 0, 0, 235, 664 

+ po/gd.po,  237, 667, 780, 0, 0, 0, 0, 237, 667 

+ po/ga.po,  90, 133, 133, 0, 0, 90, 329, 180, 462 

+ po/fur.po,  235, 664, 762, 0, 0, 0, 0, 235, 664 

+ po/fr.po,  235, 664, 774, 0, 0, 0, 0, 235, 664 

+ po/fi.po,  216, 426, 366, 12, 42, 7, 196, 235, 664 

+ po/fa.po,  235, 664, 767, 0, 0, 0, 0, 235, 664 

+ po/eu.po,  235, 664, 552, 0, 0, 0, 0, 235, 664 

+ po/et.po,  148, 483, 382, 0, 0, 0, 0, 148, 483 

+ po/es_VE.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_UY.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_SV.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_PR.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_PE.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_PA.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_NI.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_MX.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_HN.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_GT.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_ES.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_EC.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_DO.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_CR.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_CO.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_CL.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es_AR.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/es.po,  235, 664, 735, 0, 0, 0, 0, 235, 664 

+ po/eo.po,  230, 483, 469, 0, 0, 5, 181, 235, 664 

+ po/en_GB.po,  234, 662, 662, 0, 0, 0, 0, 234, 662 

+ po/en_CA.po,  179, 460, 460, 0, 0, 0, 0, 179, 460 

+ po/en@shaw.po,  181, 465, 465, 0, 0, 0, 0, 181, 465 

+ po/el.po,  235, 664, 703, 0, 0, 0, 0, 235, 664 

+ po/dz.po,  170, 447, 271, 5, 9, 4, 4, 179, 460 

+ po/de.po,  235, 664, 576, 0, 0, 0, 0, 235, 664 

+ po/da.po,  235, 664, 548, 0, 0, 0, 0, 235, 664 

+ po/cy.po,  181, 465, 503, 0, 0, 0, 0, 181, 465 

+ po/cs.po,  235, 664, 623, 0, 0, 0, 0, 235, 664 

+ po/crh.po,  148, 483, 449, 0, 0, 0, 0, 148, 483 

+ po/ca@valencia.po,  237, 667, 782, 0, 0, 0, 0, 237, 667 

+ po/ca.po,  235, 664, 773, 0, 0, 0, 0, 235, 664 

+ po/bs.po,  146, 484, 492, 0, 0, 0, 0, 146, 484 

+ po/br.po,  51, 75, 80, 1, 2, 129, 388, 181, 465 

+ po/bn_IN.po,  146, 484, 459, 0, 0, 0, 0, 146, 484 

+ po/bn.po,  181, 465, 448, 0, 0, 0, 0, 181, 465 

+ po/bg.po,  146, 484, 538, 0, 0, 0, 0, 146, 484 

+ po/be@latin.po,  179, 461, 455, 0, 0, 0, 0, 179, 461 

+ po/be.po,  147, 493, 513, 0, 0, 0, 0, 147, 493 

+ po/az.po,  145, 324, 324, 19, 56, 15, 80, 179, 460 

+ po/ast.po,  181, 465, 524, 0, 0, 0, 0, 181, 465 

+ po/as.po,  146, 484, 456, 0, 0, 0, 0, 146, 484 

+ po/ar.po,  228, 466, 529, 0, 0, 6, 196, 234, 662 

+ po/am.po,  11, 14, 14, 11, 17, 157, 429, 179, 460 

+ po/af.po,  133, 274, 233, 5, 11, 7, 198, 145, 483 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,4 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/libhangul.pot,  0, 0, 0, 0, 0, 9, 16, 9, 16 

+ po/ko.gmo,  9, 16, 15, 0, 0, 0, 0, 9, 16 

+ po/ko.po,  9, 16, 15, 0, 0, 0, 0, 9, 16 

@@ -0,0 +1,16 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe0 in position 230: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfe in position 5: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xa5 in position 0: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xb3 in position 28: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

@@ -0,0 +1,44 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ja.po,  39, 160, 47, 9, 59, 12, 209, 60, 428 

+ po/en@quot.gmo,  60, 428, 428, 0, 0, 0, 0, 60, 428 

+ po/hr.po,  58, 414, 402, 0, 0, 2, 14, 60, 428 

+ po/sr.po,  58, 414, 424, 0, 0, 2, 14, 60, 428 

+ po/nl.po,  58, 414, 417, 0, 0, 2, 14, 60, 428 

+ po/sv.gmo,  60, 428, 400, 0, 0, 0, 0, 60, 428 

+ po/nl.gmo,  58, 414, 417, 0, 0, 0, 0, 58, 414 

+ po/sr.gmo,  58, 414, 424, 0, 0, 0, 0, 58, 414 

+ po/sv.po,  60, 428, 400, 0, 0, 0, 0, 60, 428 

+ po/fr.po,  58, 414, 485, 0, 0, 2, 14, 60, 428 

+ po/fr.gmo,  58, 414, 485, 0, 0, 0, 0, 58, 414 

+ po/fi.gmo,  58, 414, 352, 0, 0, 0, 0, 58, 414 

+ po/de.po,  58, 414, 391, 0, 0, 2, 14, 60, 428 

+ po/en@quot.po,  60, 428, 428, 0, 0, 0, 0, 60, 428 

+ po/da.gmo,  58, 414, 414, 0, 0, 0, 0, 58, 414 

+ po/eo.gmo,  58, 414, 397, 0, 0, 0, 0, 58, 414 

+ po/vi.gmo,  58, 414, 615, 0, 0, 0, 0, 58, 414 

+ po/vi.po,  58, 414, 615, 0, 0, 2, 14, 60, 428 

+ po/pt_BR.gmo,  58, 414, 461, 0, 0, 0, 0, 58, 414 

+ po/de.gmo,  58, 414, 391, 0, 0, 0, 0, 58, 414 

+ po/ro.po,  2, 16, 16, 7, 46, 51, 366, 60, 428 

+ po/pt_BR.po,  58, 414, 461, 0, 0, 2, 14, 60, 428 

+ po/uk.po,  58, 414, 462, 0, 0, 2, 14, 60, 428 

+ po/uk.gmo,  58, 414, 462, 0, 0, 0, 0, 58, 414 

+ po/cs.po,  58, 414, 416, 0, 0, 2, 14, 60, 428 

+ po/hu.po,  58, 414, 396, 0, 0, 2, 14, 60, 428 

+ po/es.gmo,  4, 21, 21, 0, 0, 0, 0, 4, 21 

+ po/id.po,  58, 414, 415, 0, 0, 2, 14, 60, 428 

+ po/it.po,  58, 414, 440, 0, 0, 2, 14, 60, 428 

+ po/en@boldquot.gmo,  60, 428, 431, 0, 0, 0, 0, 60, 428 

+ po/eo.po,  58, 414, 397, 0, 0, 2, 14, 60, 428 

+ po/hr.gmo,  58, 414, 402, 0, 0, 0, 0, 58, 414 

+ po/pl.po,  58, 414, 424, 0, 0, 2, 14, 60, 428 

+ po/hu.gmo,  58, 414, 396, 0, 0, 0, 0, 58, 414 

+ po/es.po,  4, 21, 21, 28, 100, 28, 307, 60, 428 

+ po/zh_CN.gmo,  58, 414, 184, 0, 0, 0, 0, 58, 414 

+ po/cs.gmo,  58, 414, 416, 0, 0, 0, 0, 58, 414 

+ po/da.po,  58, 414, 414, 0, 0, 2, 14, 60, 428 

+ po/fi.po,  58, 414, 352, 0, 0, 2, 14, 60, 428 

+ po/en@boldquot.po,  60, 428, 431, 0, 0, 0, 0, 60, 428 

+ po/libidn.pot,  0, 0, 0, 0, 0, 60, 428, 60, 428 

+ po/id.gmo,  58, 414, 415, 0, 0, 0, 0, 58, 414 

+ po/zh_CN.po,  58, 414, 184, 0, 0, 2, 14, 60, 428 

@@ -0,0 +1,16 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfe in position 5: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xb2 in position 0: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 46: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,45 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/libidn2.pot,  0, 0, 0, 0, 0, 40, 315, 40, 315 

+ po/zh_CN.gmo,  5, 28, 9, 0, 0, 0, 0, 5, 28 

+ po/vi.gmo,  5, 28, 35, 0, 0, 0, 0, 5, 28 

+ po/uk.gmo,  35, 250, 256, 0, 0, 0, 0, 35, 250 

+ po/sv.gmo,  35, 250, 216, 0, 0, 0, 0, 35, 250 

+ po/sr.gmo,  5, 28, 25, 0, 0, 0, 0, 5, 28 

+ po/ru.gmo,  35, 250, 226, 0, 0, 0, 0, 35, 250 

+ po/pt_BR.gmo,  35, 250, 296, 0, 0, 0, 0, 35, 250 

+ po/pl.gmo,  35, 250, 253, 0, 0, 0, 0, 35, 250 

+ po/nl.gmo,  5, 28, 23, 0, 0, 0, 0, 5, 28 

+ po/id.gmo,  5, 28, 28, 0, 0, 0, 0, 5, 28 

+ po/hu.gmo,  32, 226, 226, 0, 0, 0, 0, 32, 226 

+ po/hr.gmo,  5, 28, 25, 0, 0, 0, 0, 5, 28 

+ po/fur.gmo,  32, 226, 280, 0, 0, 0, 0, 32, 226 

+ po/fr.gmo,  35, 250, 304, 0, 0, 0, 0, 35, 250 

+ po/fi.gmo,  5, 28, 20, 0, 0, 0, 0, 5, 28 

+ po/es.gmo,  11, 41, 46, 0, 0, 0, 0, 11, 41 

+ po/eo.gmo,  5, 28, 27, 0, 0, 0, 0, 5, 28 

+ po/de.gmo,  35, 250, 245, 0, 0, 0, 0, 35, 250 

+ po/da.gmo,  35, 250, 227, 0, 0, 0, 0, 35, 250 

+ po/cs.gmo,  35, 250, 249, 0, 0, 0, 0, 35, 250 

+ po/zh_CN.po,  5, 28, 9, 12, 127, 23, 160, 40, 315 

+ po/vi.po,  5, 28, 35, 12, 127, 23, 160, 40, 315 

+ po/uk.po,  35, 250, 256, 4, 62, 1, 3, 40, 315 

+ po/sv.po,  35, 250, 216, 4, 62, 1, 3, 40, 315 

+ po/sr.po,  5, 28, 25, 12, 127, 23, 160, 40, 315 

+ po/ru.po,  35, 250, 226, 4, 62, 1, 3, 40, 315 

+ po/ro.po,  1, 14, 14, 2, 8, 37, 293, 40, 315 

+ po/pt_BR.po,  35, 250, 296, 4, 62, 1, 3, 40, 315 

+ po/pl.po,  35, 250, 253, 4, 62, 1, 3, 40, 315 

+ po/nl.po,  5, 28, 23, 12, 127, 23, 160, 40, 315 

+ po/ja.po,  2, 16, 2, 8, 31, 30, 268, 40, 315 

+ po/it.po,  5, 28, 31, 12, 127, 23, 160, 40, 315 

+ po/id.po,  5, 28, 28, 12, 127, 23, 160, 40, 315 

+ po/hu.po,  32, 226, 226, 4, 62, 4, 27, 40, 315 

+ po/hr.po,  5, 28, 25, 12, 127, 23, 160, 40, 315 

+ po/fur.po,  32, 226, 280, 4, 62, 4, 27, 40, 315 

+ po/fr.po,  35, 250, 304, 4, 62, 1, 3, 40, 315 

+ po/fi.po,  5, 28, 20, 12, 127, 23, 160, 40, 315 

+ po/es.po,  11, 41, 46, 4, 30, 25, 244, 40, 315 

+ po/eo.po,  5, 28, 27, 12, 127, 23, 160, 40, 315 

+ po/de.po,  35, 250, 245, 4, 62, 1, 3, 40, 315 

+ po/da.po,  35, 250, 227, 4, 62, 1, 3, 40, 315 

+ po/cs.po,  35, 250, 249, 4, 62, 1, 3, 40, 315 

@@ -0,0 +1,25 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./iptc/po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

@@ -0,0 +1,12 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ iptc/po/de.po,  34, 349, 354, 0, 0, 0, 0, 34, 349 

+ iptc/po/iptc.pot,  0, 0, 0, 0, 0, 34, 349, 34, 349 

+ iptc/po/it.gmo,  34, 349, 386, 0, 0, 0, 0, 34, 349 

+ iptc/po/it.po,  34, 349, 386, 0, 0, 0, 0, 34, 349 

+ iptc/po/de.gmo,  34, 349, 354, 0, 0, 0, 0, 34, 349 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/de.po,  169, 1089, 980, 0, 0, 0, 0, 169, 1089 

+ po/libiptcdata.pot,  0, 0, 0, 0, 0, 169, 1089, 169, 1089 

+ po/it.gmo,  169, 1089, 1104, 0, 0, 0, 0, 169, 1089 

+ po/it.po,  169, 1089, 1104, 0, 0, 0, 0, 169, 1089 

+ po/de.gmo,  169, 1089, 980, 0, 0, 0, 0, 169, 1089 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,2 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ja.po,  59, 272, 82, 0, 0, 0, 0, 59, 272 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

@@ -0,0 +1,192 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/tr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ia.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nds.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pl.po,  156, 732, 723, 0, 0, 11, 45, 167, 777 

+ po/bal.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/de.po,  111, 455, 423, 0, 0, 56, 322, 167, 777 

+ po/gl.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ky.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ro.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/kn.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/be.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw@uccor.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/vi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fr.po,  156, 732, 884, 0, 0, 11, 45, 167, 777 

+ po/nso.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ky.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kk.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/gu.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/zh_TW.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw@kkcor.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/el.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/libosinfo.pot,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/br.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/hu.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/gl.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/is.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/bn_IN.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/yo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ja.gmo,  111, 455, 212, 0, 0, 0, 0, 111, 455 

+ po/yo.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/mr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/hi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/th.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nn.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/bal.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/cs.gmo,  153, 715, 677, 0, 0, 0, 0, 153, 715 

+ po/hr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/et.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sv.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pa.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ilo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/et.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/wba.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pl.gmo,  156, 732, 723, 0, 0, 0, 0, 156, 732 

+ po/hi.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/zh_TW.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ka.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/te.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ar.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/pa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ne.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ru.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sv.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/it.po,  153, 715, 797, 0, 0, 14, 62, 167, 777 

+ po/ast.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nb.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/tg.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/af.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zu.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/uk.po,  156, 732, 768, 0, 0, 11, 45, 167, 777 

+ po/ko.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/en_GB.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/en_GB.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/anp.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/mn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/de.gmo,  111, 455, 423, 0, 0, 0, 0, 111, 455 

+ po/si.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/it.gmo,  153, 715, 797, 0, 0, 0, 0, 153, 715 

+ po/km.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/am.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/or.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/nl.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/as.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/id.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ru.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ja.po,  111, 455, 212, 0, 0, 56, 322, 167, 777 

+ po/lv.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/es.gmo,  22, 60, 66, 0, 0, 0, 0, 22, 60 

+ po/ca.gmo,  138, 627, 820, 0, 0, 0, 0, 138, 627 

+ po/nl.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/eo.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/he.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ro.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/te.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/gu.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/mai.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/zu.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/fa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ur.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ne.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bs.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ast.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ml.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/de_CH.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/cy.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/am.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/bs.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bg.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/da.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_CN.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bg.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/pt_BR.gmo,  16, 23, 25, 0, 0, 0, 0, 16, 23 

+ po/tw.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/tr.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/he.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/br.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kk.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/be.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/kw.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/mn.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/mk.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/or.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ko.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_HK.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/uk.gmo,  156, 732, 768, 0, 0, 0, 0, 156, 732 

+ po/es.po,  22, 60, 66, 0, 0, 145, 717, 167, 777 

+ po/ta.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ms.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/bn.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/mk.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/hr.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/kw_GB.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ka.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/pt_BR.po,  16, 23, 25, 0, 0, 151, 754, 167, 777 

+ po/sq.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/fr.gmo,  156, 732, 884, 0, 0, 0, 0, 156, 732 

+ po/fi.po,  27, 66, 47, 0, 0, 140, 711, 167, 777 

+ po/tg.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/is.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/af.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/sq.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/eu.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ilo.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/nds.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/kw.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ca.po,  138, 627, 820, 0, 0, 29, 150, 167, 777 

+ po/as.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sl.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bo.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/pt.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/nb.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/el.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ta.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/fa.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/sr@latin.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/eu.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/cy.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sk.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_CN.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/bo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sr.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ia.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ar.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/lv.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/fi.gmo,  27, 66, 47, 0, 0, 0, 0, 27, 66 

+ po/sk.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/nso.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/anp.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/km.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/si.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/mr.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/eo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/da.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/nn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/brx.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/vi.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/sl.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/bn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ml.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/lt.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/ms.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/sr@latin.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/tw.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/brx.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/th.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/id.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/lt.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/cs.po,  153, 715, 677, 0, 0, 14, 62, 167, 777 

+ po/mai.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ur.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pt.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/de_CH.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/wba.po,  0, 0, 0, 0, 0, 167, 777, 167, 777 

+ po/hu.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./debian/po/POTFILES.in)

@@ -0,0 +1,24 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ debian/po/nl.po,  46, 73, 147, 0, 0, 0, 0, 46, 73 

+ debian/po/ru.po,  46, 73, 68, 0, 0, 0, 0, 46, 73 

+ debian/po/sv.po,  46, 73, 76, 0, 0, 0, 0, 46, 73 

+ debian/po/uk.po,  0, 0, 0, 1, 25, 45, 48, 46, 73 

+ debian/po/templates.pot,  0, 0, 0, 0, 0, 46, 73, 46, 73 

+ debian/po/tr.po,  46, 73, 66, 0, 0, 0, 0, 46, 73 

+ debian/po/da.po,  46, 73, 73, 0, 0, 0, 0, 46, 73 

+ debian/po/pt_BR.po,  46, 73, 81, 0, 0, 0, 0, 46, 73 

+ debian/po/es.po,  46, 73, 80, 0, 0, 0, 0, 46, 73 

+ debian/po/cs.po,  46, 73, 67, 0, 0, 0, 0, 46, 73 

+ debian/po/gl.po,  46, 73, 77, 0, 0, 0, 0, 46, 73 

+ debian/po/fr.po,  46, 73, 73, 0, 0, 0, 0, 46, 73 

+ debian/po/it.po,  46, 73, 69, 0, 0, 0, 0, 46, 73 

+ debian/po/pl.po,  46, 73, 78, 0, 0, 0, 0, 46, 73 

+ debian/po/ja.po,  46, 73, 48, 0, 0, 0, 0, 46, 73 

+ debian/po/sk.po,  46, 73, 70, 0, 0, 0, 0, 46, 73 

+ debian/po/ca.po,  46, 73, 82, 0, 0, 0, 0, 46, 73 

+ debian/po/vi.po,  46, 73, 97, 0, 0, 0, 0, 46, 73 

+ debian/po/de.po,  46, 73, 78, 0, 0, 0, 0, 46, 73 

+ debian/po/hu.po,  2, 29, 22, 0, 0, 44, 44, 46, 73 

+ debian/po/eu.po,  46, 73, 72, 0, 0, 0, 0, 46, 73 

+ debian/po/fi.po,  46, 73, 60, 0, 0, 0, 0, 46, 73 

+ debian/po/pt.po,  46, 73, 88, 0, 0, 0, 0, 46, 73 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,69 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  34, 112, 37, 0, 0, 0, 0, 34, 112 

+ po/zh_HK.po,  31, 110, 35, 0, 0, 0, 0, 31, 110 

+ po/zh_CN.po,  34, 112, 37, 0, 0, 0, 0, 34, 112 

+ po/vi.po,  26, 105, 135, 0, 0, 0, 0, 26, 105 

+ po/uk.po,  26, 105, 83, 0, 0, 0, 0, 26, 105 

+ po/ug.po,  26, 105, 89, 0, 0, 0, 0, 26, 105 

+ po/tr.po,  29, 103, 93, 0, 0, 0, 0, 29, 103 

+ po/th.po,  34, 112, 54, 0, 0, 0, 0, 34, 112 

+ po/tg.po,  26, 105, 107, 0, 0, 0, 0, 26, 105 

+ po/te.po,  31, 110, 101, 0, 0, 0, 0, 31, 110 

+ po/ta.po,  31, 110, 102, 0, 0, 0, 0, 31, 110 

+ po/sv.po,  29, 103, 99, 0, 0, 0, 0, 29, 103 

+ po/sr@latin.po,  34, 112, 110, 0, 0, 0, 0, 34, 112 

+ po/sr.po,  29, 103, 100, 0, 0, 0, 0, 29, 103 

+ po/sl.po,  29, 103, 105, 0, 0, 0, 0, 29, 103 

+ po/sk.po,  34, 112, 117, 0, 0, 0, 0, 34, 112 

+ po/ru.po,  34, 112, 104, 0, 0, 0, 0, 34, 112 

+ po/ro.po,  29, 103, 119, 0, 0, 0, 0, 29, 103 

+ po/pt_BR.po,  29, 103, 104, 0, 0, 0, 0, 29, 103 

+ po/pt.po,  34, 112, 119, 0, 0, 0, 0, 34, 112 

+ po/pl.po,  29, 103, 97, 0, 0, 0, 0, 29, 103 

+ po/pa.po,  31, 110, 119, 0, 0, 0, 0, 31, 110 

+ po/or.po,  31, 110, 127, 0, 0, 0, 0, 31, 110 

+ po/oc.po,  34, 112, 121, 0, 0, 0, 0, 34, 112 

+ po/nl.po,  34, 112, 108, 0, 0, 0, 0, 34, 112 

+ po/ne.po,  19, 33, 38, 6, 22, 6, 55, 31, 110 

+ po/nds.po,  11, 24, 21, 0, 0, 0, 0, 11, 24 

+ po/nb.po,  34, 112, 112, 0, 0, 0, 0, 34, 112 

+ po/mr.po,  31, 110, 115, 0, 0, 0, 0, 31, 110 

+ po/ml.po,  34, 112, 108, 0, 0, 0, 0, 34, 112 

+ po/lv.po,  29, 103, 86, 0, 0, 0, 0, 29, 103 

+ po/lt.po,  29, 103, 85, 0, 0, 0, 0, 29, 103 

+ po/ko.po,  29, 103, 83, 0, 0, 0, 0, 29, 103 

+ po/kn.po,  34, 111, 107, 0, 0, 0, 0, 34, 111 

+ po/kk.po,  34, 112, 96, 0, 0, 0, 0, 34, 112 

+ po/ja.po,  29, 103, 33, 0, 0, 0, 0, 29, 103 

+ po/it.po,  29, 103, 106, 0, 0, 0, 0, 29, 103 

+ po/is.po,  34, 112, 112, 0, 0, 0, 0, 34, 112 

+ po/id.po,  29, 103, 90, 0, 0, 0, 0, 29, 103 

+ po/hu.po,  29, 103, 96, 0, 0, 0, 0, 29, 103 

+ po/hr.po,  29, 103, 96, 0, 0, 0, 0, 29, 103 

+ po/hi.po,  31, 110, 135, 0, 0, 0, 0, 31, 110 

+ po/he.po,  34, 112, 100, 0, 0, 0, 0, 34, 112 

+ po/gu.po,  31, 110, 126, 0, 0, 0, 0, 31, 110 

+ po/gl.po,  29, 103, 109, 0, 0, 0, 0, 29, 103 

+ po/fur.po,  29, 103, 124, 0, 0, 0, 0, 29, 103 

+ po/fr.po,  29, 103, 114, 0, 0, 0, 0, 29, 103 

+ po/fi.po,  29, 103, 92, 0, 0, 0, 0, 29, 103 

+ po/fa.po,  34, 112, 109, 0, 0, 0, 0, 34, 112 

+ po/eu.po,  29, 103, 100, 0, 0, 0, 0, 29, 103 

+ po/et.po,  26, 105, 80, 0, 0, 0, 0, 26, 105 

+ po/es.po,  29, 103, 108, 0, 0, 0, 0, 29, 103 

+ po/eo.po,  34, 112, 100, 0, 0, 0, 0, 34, 112 

+ po/en_GB.po,  34, 112, 112, 0, 0, 0, 0, 34, 112 

+ po/el.po,  34, 112, 112, 0, 0, 0, 0, 34, 112 

+ po/de.po,  29, 103, 102, 0, 0, 0, 0, 29, 103 

+ po/da.po,  34, 112, 107, 0, 0, 0, 0, 34, 112 

+ po/cs.po,  29, 103, 108, 0, 0, 0, 0, 29, 103 

+ po/ca@valencia.po,  34, 112, 124, 0, 0, 0, 0, 34, 112 

+ po/ca.po,  29, 103, 109, 0, 0, 0, 0, 29, 103 

+ po/bs.po,  34, 111, 105, 0, 0, 0, 0, 34, 111 

+ po/bn_IN.po,  31, 110, 124, 0, 0, 0, 0, 31, 110 

+ po/bg.po,  26, 105, 114, 0, 0, 0, 0, 26, 105 

+ po/be.po,  34, 112, 99, 0, 0, 0, 0, 34, 112 

+ po/ast.po,  24, 103, 103, 0, 0, 0, 0, 24, 103 

+ po/as.po,  31, 110, 125, 0, 0, 0, 0, 31, 110 

+ po/ar.po,  26, 105, 85, 0, 0, 0, 0, 26, 105 

+ po/an.po,  34, 111, 118, 0, 0, 0, 0, 34, 111 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,100 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/libpwquality.pot,  0, 0, 0, 0, 0, 50, 333, 50, 333 

+ po/zu.gmo,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/zh_TW.gmo,  50, 333, 76, 0, 0, 0, 0, 50, 333 

+ po/zh_CN.gmo,  50, 333, 81, 0, 0, 0, 0, 50, 333 

+ po/vi.gmo,  3, 8, 16, 0, 0, 0, 0, 3, 8 

+ po/ur.gmo,  6, 23, 33, 0, 0, 0, 0, 6, 23 

+ po/uk.gmo,  50, 333, 300, 0, 0, 0, 0, 50, 333 

+ po/tr.gmo,  50, 333, 246, 0, 0, 0, 0, 50, 333 

+ po/te.gmo,  50, 333, 247, 0, 0, 0, 0, 50, 333 

+ po/ta.gmo,  50, 333, 277, 0, 0, 0, 0, 50, 333 

+ po/sv.gmo,  50, 333, 279, 0, 0, 0, 0, 50, 333 

+ po/sr@latin.gmo,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/sr.gmo,  50, 333, 279, 0, 0, 0, 0, 50, 333 

+ po/sq.gmo,  8, 54, 50, 0, 0, 0, 0, 8, 54 

+ po/sk.gmo,  50, 333, 283, 0, 0, 0, 0, 50, 333 

+ po/si.gmo,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/ru.gmo,  50, 333, 262, 0, 0, 0, 0, 50, 333 

+ po/pt_BR.gmo,  50, 333, 361, 0, 0, 0, 0, 50, 333 

+ po/pt.gmo,  50, 333, 360, 0, 0, 0, 0, 50, 333 

+ po/pl.gmo,  50, 333, 294, 0, 0, 0, 0, 50, 333 

+ po/pa.gmo,  50, 333, 369, 0, 0, 0, 0, 50, 333 

+ po/or.gmo,  50, 333, 327, 0, 0, 0, 0, 50, 333 

+ po/nl.gmo,  50, 333, 329, 0, 0, 0, 0, 50, 333 

+ po/nb.gmo,  3, 8, 8, 0, 0, 0, 0, 3, 8 

+ po/mr.gmo,  50, 333, 273, 0, 0, 0, 0, 50, 333 

+ po/ml.gmo,  50, 333, 207, 0, 0, 0, 0, 50, 333 

+ po/ko.gmo,  50, 333, 263, 0, 0, 0, 0, 50, 333 

+ po/kn.gmo,  50, 333, 250, 0, 0, 0, 0, 50, 333 

+ po/km.gmo,  50, 333, 90, 0, 0, 0, 0, 50, 333 

+ po/kk.gmo,  3, 8, 7, 0, 0, 0, 0, 3, 8 

+ po/ja.gmo,  50, 333, 79, 0, 0, 0, 0, 50, 333 

+ po/it.gmo,  50, 333, 342, 0, 0, 0, 0, 50, 333 

+ po/id.gmo,  50, 333, 331, 0, 0, 0, 0, 50, 333 

+ po/hu.gmo,  50, 333, 295, 0, 0, 0, 0, 50, 333 

+ po/hi.gmo,  50, 333, 343, 0, 0, 0, 0, 50, 333 

+ po/he.gmo,  50, 333, 277, 0, 0, 0, 0, 50, 333 

+ po/gu.gmo,  50, 333, 298, 0, 0, 0, 0, 50, 333 

+ po/fur.gmo,  50, 333, 376, 0, 0, 0, 0, 50, 333 

+ po/fr.gmo,  50, 333, 444, 0, 0, 0, 0, 50, 333 

+ po/fi.gmo,  50, 333, 246, 0, 0, 0, 0, 50, 333 

+ po/eu.gmo,  20, 98, 75, 0, 0, 0, 0, 20, 98 

+ po/es.gmo,  50, 333, 388, 0, 0, 0, 0, 50, 333 

+ po/de.gmo,  50, 333, 290, 0, 0, 0, 0, 50, 333 

+ po/da.gmo,  50, 333, 298, 0, 0, 0, 0, 50, 333 

+ po/cs.gmo,  50, 333, 283, 0, 0, 0, 0, 50, 333 

+ po/ca.gmo,  50, 333, 373, 0, 0, 0, 0, 50, 333 

+ po/bn_IN.gmo,  50, 333, 294, 0, 0, 0, 0, 50, 333 

+ po/bg.gmo,  48, 314, 295, 0, 0, 0, 0, 48, 314 

+ po/as.gmo,  50, 333, 276, 0, 0, 0, 0, 50, 333 

+ po/ar.gmo,  3, 8, 12, 0, 0, 0, 0, 3, 8 

+ po/zu.po,  3, 8, 8, 0, 0, 47, 325, 50, 333 

+ po/zh_TW.po,  50, 333, 76, 0, 0, 0, 0, 50, 333 

+ po/zh_CN.po,  50, 333, 81, 0, 0, 0, 0, 50, 333 

+ po/vi.po,  3, 8, 16, 0, 0, 47, 325, 50, 333 

+ po/ur.po,  6, 23, 33, 0, 0, 44, 310, 50, 333 

+ po/uk.po,  50, 333, 300, 0, 0, 0, 0, 50, 333 

+ po/tr.po,  50, 333, 246, 0, 0, 0, 0, 50, 333 

+ po/te.po,  50, 333, 247, 0, 0, 0, 0, 50, 333 

+ po/ta.po,  50, 333, 277, 0, 0, 0, 0, 50, 333 

+ po/sv.po,  50, 333, 279, 0, 0, 0, 0, 50, 333 

+ po/sr@latin.po,  3, 8, 8, 0, 0, 47, 325, 50, 333 

+ po/sr.po,  50, 333, 279, 0, 0, 0, 0, 50, 333 

+ po/sq.po,  8, 54, 50, 0, 0, 42, 279, 50, 333 

+ po/sk.po,  50, 333, 283, 0, 0, 0, 0, 50, 333 

+ po/si.po,  3, 8, 8, 0, 0, 47, 325, 50, 333 

+ po/ru.po,  50, 333, 262, 0, 0, 0, 0, 50, 333 

+ po/pt_BR.po,  50, 333, 361, 0, 0, 0, 0, 50, 333 

+ po/pt.po,  50, 333, 360, 0, 0, 0, 0, 50, 333 

+ po/pl.po,  50, 333, 294, 0, 0, 0, 0, 50, 333 

+ po/pa.po,  50, 333, 369, 0, 0, 0, 0, 50, 333 

+ po/or.po,  50, 333, 327, 0, 0, 0, 0, 50, 333 

+ po/nl.po,  50, 333, 329, 0, 0, 0, 0, 50, 333 

+ po/nb.po,  3, 8, 8, 0, 0, 47, 325, 50, 333 

+ po/mr.po,  50, 333, 273, 0, 0, 0, 0, 50, 333 

+ po/ml.po,  50, 333, 207, 0, 0, 0, 0, 50, 333 

+ po/ko.po,  50, 333, 263, 0, 0, 0, 0, 50, 333 

+ po/kn.po,  50, 333, 250, 0, 0, 0, 0, 50, 333 

+ po/km.po,  50, 333, 90, 0, 0, 0, 0, 50, 333 

+ po/kk.po,  3, 8, 7, 0, 0, 47, 325, 50, 333 

+ po/ja.po,  50, 333, 79, 0, 0, 0, 0, 50, 333 

+ po/it.po,  50, 333, 342, 0, 0, 0, 0, 50, 333 

+ po/id.po,  50, 333, 331, 0, 0, 0, 0, 50, 333 

+ po/hu.po,  50, 333, 295, 0, 0, 0, 0, 50, 333 

+ po/hi.po,  50, 333, 343, 0, 0, 0, 0, 50, 333 

+ po/he.po,  50, 333, 277, 0, 0, 0, 0, 50, 333 

+ po/gu.po,  50, 333, 298, 0, 0, 0, 0, 50, 333 

+ po/fur.po,  50, 333, 376, 0, 0, 0, 0, 50, 333 

+ po/fr.po,  50, 333, 444, 0, 0, 0, 0, 50, 333 

+ po/fi.po,  50, 333, 246, 0, 0, 0, 0, 50, 333 

+ po/eu.po,  20, 98, 75, 0, 0, 30, 235, 50, 333 

+ po/es.po,  50, 333, 388, 0, 0, 0, 0, 50, 333 

+ po/de.po,  50, 333, 290, 0, 0, 0, 0, 50, 333 

+ po/da.po,  50, 333, 298, 0, 0, 0, 0, 50, 333 

+ po/cs.po,  50, 333, 283, 0, 0, 0, 0, 50, 333 

+ po/ca.po,  50, 333, 373, 0, 0, 0, 0, 50, 333 

+ po/bn_IN.po,  50, 333, 294, 0, 0, 0, 0, 50, 333 

+ po/bg.po,  48, 314, 295, 0, 0, 2, 19, 50, 333 

+ po/as.po,  50, 333, 276, 0, 0, 0, 0, 50, 333 

+ po/ar.po,  3, 8, 12, 0, 0, 47, 325, 50, 333 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,107 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/la.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/ky.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/es.po,  607, 4987, 5630, 0, 0, 0, 0, 607, 4987 

+ po/ka.po,  85, 214, 194, 0, 0, 522, 4773, 607, 4987 

+ po/th.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/bal.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/mg.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/ms.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/id.po,  1, 1, 1, 0, 0, 606, 4986, 607, 4987 

+ po/el.po,  2, 2, 2, 0, 0, 605, 4985, 607, 4987 

+ po/te.po,  376, 2390, 2029, 0, 0, 231, 2597, 607, 4987 

+ po/ar.po,  56, 233, 224, 0, 0, 551, 4754, 607, 4987 

+ po/eo.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/sk.po,  388, 2375, 2241, 0, 0, 219, 2612, 607, 4987 

+ po/fi.po,  392, 2288, 1779, 0, 0, 215, 2699, 607, 4987 

+ po/ja.po,  390, 2507, 1055, 0, 0, 217, 2480, 607, 4987 

+ po/lo.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/lv.po,  33, 70, 62, 0, 0, 574, 4917, 607, 4987 

+ po/af.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/ks.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/nso.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/dz.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/he.po,  81, 337, 316, 0, 0, 526, 4650, 607, 4987 

+ po/kn.po,  390, 2507, 2260, 0, 0, 217, 2480, 607, 4987 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/pt_BR.po,  607, 4987, 5471, 0, 0, 0, 0, 607, 4987 

+ po/tr.po,  144, 695, 578, 0, 0, 463, 4292, 607, 4987 

+ po/ro.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/ach.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/brx.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/en_GB.po,  139, 682, 682, 0, 0, 468, 4305, 607, 4987 

+ po/sl.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/de.po,  607, 4987, 4755, 0, 0, 0, 0, 607, 4987 

+ po/en_US.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/kk.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/wo.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/bs.po,  43, 229, 220, 0, 0, 564, 4758, 607, 4987 

+ po/it.po,  552, 3893, 4220, 22, 489, 33, 605, 607, 4987 

+ po/ur.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/nb.po,  65, 180, 174, 0, 0, 542, 4807, 607, 4987 

+ po/gl.po,  254, 1424, 1753, 0, 0, 353, 3563, 607, 4987 

+ po/eu.po,  68, 181, 174, 0, 0, 539, 4806, 607, 4987 

+ po/sq.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/bo.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/ku.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/my.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/ko.po,  183, 1038, 902, 0, 0, 424, 3949, 607, 4987 

+ po/nds.po,  7, 9, 9, 0, 0, 600, 4978, 607, 4987 

+ po/pl.po,  607, 4987, 4886, 0, 0, 0, 0, 607, 4987 

+ po/be.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/pa.po,  183, 1038, 1189, 0, 0, 424, 3949, 607, 4987 

+ po/aln.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/hy.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/tg.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/nn.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/da.po,  177, 674, 647, 0, 0, 430, 4313, 607, 4987 

+ po/ast.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/lt.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/hi.po,  376, 2390, 2926, 0, 0, 231, 2597, 607, 4987 

+ po/vi.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/hr.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/fr.po,  607, 4987, 5735, 0, 0, 0, 0, 607, 4987 

+ po/mr.po,  390, 2507, 2436, 0, 0, 217, 2480, 607, 4987 

+ po/sv.po,  607, 4987, 4649, 0, 0, 0, 0, 607, 4987 

+ po/km.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/et.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/is.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/am.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/bg.po,  259, 1583, 1677, 0, 0, 348, 3404, 607, 4987 

+ po/fa.po,  33, 148, 159, 0, 0, 574, 4839, 607, 4987 

+ po/cs.po,  607, 4987, 4554, 0, 0, 0, 0, 607, 4987 

+ po/ta.po,  405, 2625, 2275, 0, 0, 202, 2362, 607, 4987 

+ po/hu.po,  470, 3241, 3174, 0, 0, 137, 1746, 607, 4987 

+ po/as.po,  390, 2507, 2679, 0, 0, 217, 2480, 607, 4987 

+ po/ne.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/mk.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/xh.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/ga.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/gu.po,  388, 2497, 2747, 0, 0, 219, 2490, 607, 4987 

+ po/uz.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/ml.po,  200, 1127, 901, 0, 0, 407, 3860, 607, 4987 

+ po/ia.po,  69, 230, 251, 0, 0, 538, 4757, 607, 4987 

+ po/si.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/or.po,  384, 2463, 2590, 0, 0, 223, 2524, 607, 4987 

+ po/ru.po,  607, 4987, 4456, 0, 0, 0, 0, 607, 4987 

+ po/sr.po,  22, 91, 82, 0, 0, 585, 4896, 607, 4987 

+ po/ilo.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/zh_CN.po,  607, 4987, 2018, 0, 0, 0, 0, 607, 4987 

+ po/ru_RU.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/nl.po,  607, 4987, 5224, 0, 0, 0, 0, 607, 4987 

+ po/no.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/mai.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/de_CH.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/br.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/bn_IN.po,  216, 1249, 1428, 0, 0, 391, 3738, 607, 4987 

+ po/az.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/bn.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/uk.po,  607, 4987, 5205, 0, 0, 0, 0, 607, 4987 

+ po/pt.po,  201, 1081, 1183, 0, 0, 406, 3906, 607, 4987 

+ po/zu.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/tl.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/cy.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/mn.po,  0, 0, 0, 0, 0, 452, 3501, 452, 3501 

+ po/zh_TW.po,  607, 4987, 1829, 0, 0, 0, 0, 607, 4987 

+ po/sr@latin.po,  22, 91, 82, 0, 0, 585, 4896, 607, 4987 

+ po/ca.po,  607, 4987, 6174, 0, 0, 0, 0, 607, 4987 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

@@ -0,0 +1,4 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/es.po,  21, 67, 80, 0, 0, 0, 0, 21, 67 

+ po/es.gmo,  21, 67, 80, 0, 0, 0, 0, 21, 67 

+ po/librsvg.pot,  0, 0, 0, 0, 0, 21, 67, 21, 67 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

@@ -0,0 +1,106 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/lt.po,  9, 59, 45, 0, 0, 0, 0, 9, 59 

+ po/ca.po,  9, 59, 77, 0, 0, 0, 0, 9, 59 

+ po/pt_BR.gmo,  9, 59, 70, 0, 0, 0, 0, 9, 59 

+ po/pl.po,  9, 59, 49, 0, 0, 0, 0, 9, 59 

+ po/as.gmo,  9, 59, 54, 0, 0, 0, 0, 9, 59 

+ po/cs.gmo,  9, 59, 55, 0, 0, 0, 0, 9, 59 

+ po/eu.gmo,  9, 59, 50, 0, 0, 0, 0, 9, 59 

+ po/bg.gmo,  9, 59, 48, 0, 0, 0, 0, 9, 59 

+ po/cs.po,  9, 59, 55, 0, 0, 0, 0, 9, 59 

+ po/ca@valencia.po,  9, 59, 77, 0, 0, 0, 0, 9, 59 

+ po/ne.po,  9, 59, 50, 0, 0, 0, 0, 9, 59 

+ po/de.po,  9, 59, 54, 0, 0, 0, 0, 9, 59 

+ po/fa.gmo,  9, 59, 62, 0, 0, 0, 0, 9, 59 

+ po/lv.po,  9, 59, 47, 0, 0, 0, 0, 9, 59 

+ po/ko.gmo,  9, 59, 46, 0, 0, 0, 0, 9, 59 

+ po/nl.gmo,  9, 59, 55, 0, 0, 0, 0, 9, 59 

+ po/da.po,  9, 59, 61, 0, 0, 0, 0, 9, 59 

+ po/oc.gmo,  9, 59, 69, 0, 0, 0, 0, 9, 59 

+ po/oc.po,  9, 59, 69, 0, 0, 0, 0, 9, 59 

+ po/sr@latin.gmo,  9, 59, 56, 0, 0, 0, 0, 9, 59 

+ po/sl.po,  9, 59, 59, 0, 0, 0, 0, 9, 59 

+ po/id.po,  9, 59, 59, 0, 0, 0, 0, 9, 59 

+ po/fr.gmo,  9, 59, 68, 0, 0, 0, 0, 9, 59 

+ po/gl.po,  9, 59, 73, 0, 0, 0, 0, 9, 59 

+ po/an.po,  9, 59, 69, 0, 0, 0, 0, 9, 59 

+ po/ru.po,  9, 59, 50, 0, 0, 0, 0, 9, 59 

+ po/sk.po,  9, 59, 51, 0, 0, 0, 0, 9, 59 

+ po/uk.po,  9, 59, 53, 0, 0, 0, 0, 9, 59 

+ po/tg.gmo,  9, 59, 55, 0, 0, 0, 0, 9, 59 

+ po/ro.gmo,  9, 59, 63, 0, 0, 0, 0, 9, 59 

+ po/ml.gmo,  9, 59, 38, 0, 0, 0, 0, 9, 59 

+ po/gl.gmo,  9, 59, 73, 0, 0, 0, 0, 9, 59 

+ po/libsecret.pot,  0, 0, 0, 0, 0, 9, 59, 9, 59 

+ po/hr.po,  9, 59, 54, 0, 0, 0, 0, 9, 59 

+ po/zh_TW.po,  9, 59, 9, 0, 0, 0, 0, 9, 59 

+ po/pt_BR.po,  9, 59, 70, 0, 0, 0, 0, 9, 59 

+ po/hu.gmo,  9, 59, 51, 0, 0, 0, 0, 9, 59 

+ po/lv.gmo,  9, 59, 47, 0, 0, 0, 0, 9, 59 

+ po/be.gmo,  9, 59, 51, 0, 0, 0, 0, 9, 59 

+ po/bg.po,  9, 59, 48, 0, 0, 0, 0, 9, 59 

+ po/zh_HK.po,  9, 59, 9, 0, 0, 0, 0, 9, 59 

+ po/ja.gmo,  6, 44, 6, 0, 0, 0, 0, 6, 44 

+ po/he.po,  9, 59, 49, 0, 0, 0, 0, 9, 59 

+ po/ca@valencia.gmo,  9, 59, 77, 0, 0, 0, 0, 9, 59 

+ po/bs.gmo,  9, 59, 53, 0, 0, 0, 0, 9, 59 

+ po/tr.po,  9, 59, 42, 0, 0, 0, 0, 9, 59 

+ po/sr@latin.po,  9, 59, 56, 0, 0, 0, 0, 9, 59 

+ po/nb.gmo,  9, 59, 56, 0, 0, 0, 0, 9, 59 

+ po/en_GB.gmo,  9, 59, 59, 0, 0, 0, 0, 9, 59 

+ po/sl.gmo,  9, 59, 59, 0, 0, 0, 0, 9, 59 

+ po/nb.po,  9, 59, 56, 0, 0, 0, 0, 9, 59 

+ po/he.gmo,  9, 59, 49, 0, 0, 0, 0, 9, 59 

+ po/sr.gmo,  9, 59, 56, 0, 0, 0, 0, 9, 59 

+ po/it.po,  9, 59, 65, 0, 0, 0, 0, 9, 59 

+ po/it.gmo,  9, 59, 65, 0, 0, 0, 0, 9, 59 

+ po/ar.po,  9, 59, 49, 0, 0, 0, 0, 9, 59 

+ po/fr.po,  9, 59, 68, 0, 0, 0, 0, 9, 59 

+ po/ml.po,  9, 59, 38, 0, 0, 0, 0, 9, 59 

+ po/eo.gmo,  9, 59, 52, 0, 0, 0, 0, 9, 59 

+ po/pa.po,  9, 59, 63, 0, 0, 0, 0, 9, 59 

+ po/tr.gmo,  9, 59, 42, 0, 0, 0, 0, 9, 59 

+ po/pt.po,  9, 59, 64, 0, 0, 0, 0, 9, 59 

+ po/nl.po,  9, 59, 55, 0, 0, 0, 0, 9, 59 

+ po/hu.po,  9, 59, 51, 0, 0, 0, 0, 9, 59 

+ po/id.gmo,  9, 59, 59, 0, 0, 0, 0, 9, 59 

+ po/ar.gmo,  9, 59, 49, 0, 0, 0, 0, 9, 59 

+ po/be.po,  9, 59, 51, 0, 0, 0, 0, 9, 59 

+ po/fur.po,  9, 59, 71, 0, 0, 0, 0, 9, 59 

+ po/en_GB.po,  9, 59, 59, 0, 0, 0, 0, 9, 59 

+ po/es.po,  9, 59, 71, 0, 0, 0, 0, 9, 59 

+ po/zh_CN.po,  9, 59, 9, 0, 0, 0, 0, 9, 59 

+ po/el.gmo,  9, 59, 67, 0, 0, 0, 0, 9, 59 

+ po/pl.gmo,  9, 59, 49, 0, 0, 0, 0, 9, 59 

+ po/lt.gmo,  9, 59, 45, 0, 0, 0, 0, 9, 59 

+ po/ne.gmo,  9, 59, 50, 0, 0, 0, 0, 9, 59 

+ po/de.gmo,  9, 59, 54, 0, 0, 0, 0, 9, 59 

+ po/da.gmo,  9, 59, 61, 0, 0, 0, 0, 9, 59 

+ po/ja.po,  6, 44, 6, 0, 0, 0, 0, 6, 44 

+ po/zh_CN.gmo,  9, 59, 9, 0, 0, 0, 0, 9, 59 

+ po/ca.gmo,  9, 59, 77, 0, 0, 0, 0, 9, 59 

+ po/ro.po,  9, 59, 63, 0, 0, 0, 0, 9, 59 

+ po/sk.gmo,  9, 59, 51, 0, 0, 0, 0, 9, 59 

+ po/tg.po,  9, 59, 55, 0, 0, 0, 0, 9, 59 

+ po/zh_TW.gmo,  9, 59, 9, 0, 0, 0, 0, 9, 59 

+ po/bs.po,  9, 59, 53, 0, 0, 0, 0, 9, 59 

+ po/eo.po,  9, 59, 52, 0, 0, 0, 0, 9, 59 

+ po/kk.po,  9, 59, 48, 0, 0, 0, 0, 9, 59 

+ po/fur.gmo,  9, 59, 71, 0, 0, 0, 0, 9, 59 

+ po/ko.po,  9, 59, 46, 0, 0, 0, 0, 9, 59 

+ po/as.po,  9, 59, 54, 0, 0, 0, 0, 9, 59 

+ po/uk.gmo,  9, 59, 53, 0, 0, 0, 0, 9, 59 

+ po/ru.gmo,  9, 59, 50, 0, 0, 0, 0, 9, 59 

+ po/fa.po,  9, 59, 62, 0, 0, 0, 0, 9, 59 

+ po/el.po,  9, 59, 67, 0, 0, 0, 0, 9, 59 

+ po/eu.po,  9, 59, 50, 0, 0, 0, 0, 9, 59 

+ po/kk.gmo,  9, 59, 48, 0, 0, 0, 0, 9, 59 

+ po/sv.gmo,  9, 59, 51, 0, 0, 0, 0, 9, 59 

+ po/pa.gmo,  9, 59, 63, 0, 0, 0, 0, 9, 59 

+ po/pt.gmo,  9, 59, 64, 0, 0, 0, 0, 9, 59 

+ po/hr.gmo,  9, 59, 54, 0, 0, 0, 0, 9, 59 

+ po/es.gmo,  9, 59, 71, 0, 0, 0, 0, 9, 59 

+ po/an.gmo,  9, 59, 69, 0, 0, 0, 0, 9, 59 

+ po/zh_HK.gmo,  9, 59, 9, 0, 0, 0, 0, 9, 59 

+ po/sv.po,  9, 59, 51, 0, 0, 0, 0, 9, 59 

+ po/sr.po,  9, 59, 56, 0, 0, 0, 0, 9, 59 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,15 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  0, 0, 0, 0, 0, 359, 2174, 359, 2174 

+ po/zh_CN.po,  0, 0, 0, 0, 0, 359, 2174, 359, 2174 

+ po/nl.po,  0, 0, 0, 0, 0, 359, 2174, 359, 2174 

+ po/libsmbios.pot,  0, 0, 0, 0, 0, 359, 2174, 359, 2174 

+ po/ko.po,  0, 0, 0, 0, 0, 359, 2174, 359, 2174 

+ po/ja.po,  0, 0, 0, 0, 0, 359, 2174, 359, 2174 

+ po/it.po,  0, 0, 0, 0, 0, 359, 2174, 359, 2174 

+ po/fr.po,  0, 0, 0, 0, 0, 359, 2174, 359, 2174 

+ po/es.po,  217, 1139, 1374, 21, 152, 121, 883, 359, 2174 

+ po/en_US.po,  21, 178, 178, 0, 0, 0, 0, 21, 178 

+ po/en@quot.po,  359, 2174, 2174, 0, 0, 0, 0, 359, 2174 

+ po/en@boldquot.po,  359, 2174, 2174, 0, 0, 0, 0, 359, 2174 

+ po/en.po,  12, 88, 88, 8, 69, 339, 2017, 359, 2174 

+ po/de.po,  0, 0, 0, 0, 0, 359, 2174, 359, 2174 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,118 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ar.po,  211, 981, 1061, 7, 38, 83, 418, 301, 1437 

+ po/as.po,  213, 996, 1132, 7, 38, 81, 403, 301, 1437 

+ po/bg.po,  290, 1374, 1575, 8, 45, 3, 18, 301, 1437 

+ po/bn.po,  213, 996, 1165, 7, 38, 81, 403, 301, 1437 

+ po/bn_IN.po,  213, 996, 1165, 7, 38, 81, 403, 301, 1437 

+ po/bs.po,  192, 889, 945, 5, 25, 104, 523, 301, 1437 

+ po/ca.po,  292, 1385, 2086, 6, 34, 3, 18, 301, 1437 

+ po/cs.po,  301, 1437, 1381, 0, 0, 0, 0, 301, 1437 

+ po/cy.po,  197, 904, 1036, 5, 25, 99, 508, 301, 1437 

+ po/da.po,  292, 1385, 1360, 6, 34, 3, 18, 301, 1437 

+ po/de.po,  292, 1385, 1425, 6, 34, 3, 18, 301, 1437 

+ po/de_CH.po,  204, 938, 990, 7, 38, 90, 461, 301, 1437 

+ po/el.po,  290, 1374, 1533, 8, 45, 3, 18, 301, 1437 

+ po/en_GB.po,  197, 904, 904, 5, 25, 99, 508, 301, 1437 

+ po/es.po,  290, 1374, 1749, 8, 45, 3, 18, 301, 1437 

+ po/et.po,  202, 923, 834, 7, 38, 92, 476, 301, 1437 

+ po/eu.po,  24, 58, 55, 0, 0, 277, 1379, 301, 1437 

+ po/fi.po,  211, 984, 842, 7, 38, 83, 415, 301, 1437 

+ po/fr.po,  290, 1374, 1850, 8, 45, 3, 18, 301, 1437 

+ po/gu.po,  213, 996, 1147, 7, 38, 81, 403, 301, 1437 

+ po/he.po,  84, 355, 359, 5, 25, 212, 1057, 301, 1437 

+ po/hi.po,  213, 996, 1271, 7, 38, 81, 403, 301, 1437 

+ po/hr.po,  197, 904, 959, 5, 25, 99, 508, 301, 1437 

+ po/hu.po,  290, 1374, 1337, 8, 45, 3, 18, 301, 1437 

+ po/id.po,  213, 996, 1062, 7, 38, 81, 403, 301, 1437 

+ po/is.po,  211, 985, 1064, 7, 38, 83, 414, 301, 1437 

+ po/it.po,  213, 996, 1179, 7, 38, 81, 403, 301, 1437 

+ po/ja.po,  290, 1374, 609, 8, 45, 3, 18, 301, 1437 

+ po/kn.po,  213, 996, 975, 7, 38, 81, 403, 301, 1437 

+ po/ko.po,  218, 1020, 1049, 7, 38, 76, 379, 301, 1437 

+ po/lv.po,  62, 248, 223, 5, 25, 234, 1164, 301, 1437 

+ po/mai.po,  204, 938, 1192, 7, 38, 90, 461, 301, 1437 

+ po/mk.po,  197, 904, 1066, 5, 25, 99, 508, 301, 1437 

+ po/ml.po,  208, 970, 862, 7, 38, 86, 429, 301, 1437 

+ po/mr.po,  212, 990, 1013, 7, 38, 82, 409, 301, 1437 

+ po/ms.po,  197, 904, 897, 5, 25, 99, 508, 301, 1437 

+ po/nb.po,  290, 1374, 1364, 8, 45, 3, 18, 301, 1437 

+ po/nds.po,  15, 27, 27, 0, 0, 286, 1410, 301, 1437 

+ po/nl.po,  292, 1385, 1483, 6, 34, 3, 18, 301, 1437 

+ po/or.po,  213, 996, 1389, 7, 38, 81, 403, 301, 1437 

+ po/pa.po,  213, 996, 1259, 7, 38, 81, 403, 301, 1437 

+ po/pl.po,  292, 1385, 1463, 6, 34, 3, 18, 301, 1437 

+ po/pt.po,  213, 996, 1259, 7, 38, 81, 403, 301, 1437 

+ po/pt_BR.po,  219, 1014, 1243, 7, 38, 75, 385, 301, 1437 

+ po/ro.po,  77, 306, 353, 5, 25, 219, 1106, 301, 1437 

+ po/ru.po,  290, 1374, 1342, 8, 45, 3, 18, 301, 1437 

+ po/sk.po,  211, 979, 994, 8, 49, 82, 409, 301, 1437 

+ po/sl.po,  197, 904, 968, 5, 25, 99, 508, 301, 1437 

+ po/sr.po,  292, 1385, 1440, 6, 34, 3, 18, 301, 1437 

+ po/sr@latin.po,  208, 970, 1024, 7, 38, 86, 429, 301, 1437 

+ po/sv.po,  292, 1385, 1404, 6, 34, 3, 18, 301, 1437 

+ po/ta.po,  213, 996, 879, 7, 38, 81, 403, 301, 1437 

+ po/te.po,  213, 996, 894, 7, 38, 81, 403, 301, 1437 

+ po/tr.po,  212, 990, 901, 7, 38, 82, 409, 301, 1437 

+ po/uk.po,  292, 1385, 1380, 6, 34, 3, 18, 301, 1437 

+ po/vi.po,  145, 607, 810, 5, 25, 151, 805, 301, 1437 

+ po/zh_CN.po,  290, 1374, 574, 8, 45, 3, 18, 301, 1437 

+ po/zh_TW.po,  290, 1374, 539, 8, 45, 3, 18, 301, 1437 

+ po/ar.gmo,  211, 981, 1061, 0, 0, 0, 0, 211, 981 

+ po/as.gmo,  213, 996, 1132, 0, 0, 0, 0, 213, 996 

+ po/bg.gmo,  290, 1374, 1575, 0, 0, 0, 0, 290, 1374 

+ po/bn.gmo,  213, 996, 1165, 0, 0, 0, 0, 213, 996 

+ po/bn_IN.gmo,  213, 996, 1165, 0, 0, 0, 0, 213, 996 

+ po/bs.gmo,  192, 889, 945, 0, 0, 0, 0, 192, 889 

+ po/ca.gmo,  292, 1385, 2086, 0, 0, 0, 0, 292, 1385 

+ po/cs.gmo,  301, 1437, 1381, 0, 0, 0, 0, 301, 1437 

+ po/cy.gmo,  197, 904, 1036, 0, 0, 0, 0, 197, 904 

+ po/da.gmo,  292, 1385, 1360, 0, 0, 0, 0, 292, 1385 

+ po/de.gmo,  292, 1385, 1425, 0, 0, 0, 0, 292, 1385 

+ po/de_CH.gmo,  204, 938, 990, 0, 0, 0, 0, 204, 938 

+ po/el.gmo,  290, 1374, 1533, 0, 0, 0, 0, 290, 1374 

+ po/en_GB.gmo,  197, 904, 904, 0, 0, 0, 0, 197, 904 

+ po/es.gmo,  290, 1374, 1749, 0, 0, 0, 0, 290, 1374 

+ po/et.gmo,  202, 923, 834, 0, 0, 0, 0, 202, 923 

+ po/eu.gmo,  24, 58, 55, 0, 0, 0, 0, 24, 58 

+ po/fi.gmo,  211, 984, 842, 0, 0, 0, 0, 211, 984 

+ po/fr.gmo,  290, 1374, 1850, 0, 0, 0, 0, 290, 1374 

+ po/gu.gmo,  213, 996, 1147, 0, 0, 0, 0, 213, 996 

+ po/he.gmo,  84, 355, 359, 0, 0, 0, 0, 84, 355 

+ po/hi.gmo,  213, 996, 1271, 0, 0, 0, 0, 213, 996 

+ po/hr.gmo,  197, 904, 959, 0, 0, 0, 0, 197, 904 

+ po/hu.gmo,  290, 1374, 1337, 0, 0, 0, 0, 290, 1374 

+ po/id.gmo,  213, 996, 1062, 0, 0, 0, 0, 213, 996 

+ po/is.gmo,  211, 985, 1064, 0, 0, 0, 0, 211, 985 

+ po/it.gmo,  213, 996, 1179, 0, 0, 0, 0, 213, 996 

+ po/ja.gmo,  290, 1374, 609, 0, 0, 0, 0, 290, 1374 

+ po/kn.gmo,  213, 996, 975, 0, 0, 0, 0, 213, 996 

+ po/ko.gmo,  218, 1020, 1049, 0, 0, 0, 0, 218, 1020 

+ po/lv.gmo,  62, 248, 223, 0, 0, 0, 0, 62, 248 

+ po/mai.gmo,  204, 938, 1192, 0, 0, 0, 0, 204, 938 

+ po/mk.gmo,  197, 904, 1066, 0, 0, 0, 0, 197, 904 

+ po/ml.gmo,  208, 970, 862, 0, 0, 0, 0, 208, 970 

+ po/mr.gmo,  212, 990, 1013, 0, 0, 0, 0, 212, 990 

+ po/ms.gmo,  197, 904, 897, 0, 0, 0, 0, 197, 904 

+ po/nb.gmo,  290, 1374, 1364, 0, 0, 0, 0, 290, 1374 

+ po/nds.gmo,  15, 27, 27, 0, 0, 0, 0, 15, 27 

+ po/nl.gmo,  292, 1385, 1483, 0, 0, 0, 0, 292, 1385 

+ po/or.gmo,  213, 996, 1389, 0, 0, 0, 0, 213, 996 

+ po/pa.gmo,  213, 996, 1259, 0, 0, 0, 0, 213, 996 

+ po/pl.gmo,  292, 1385, 1463, 0, 0, 0, 0, 292, 1385 

+ po/pt.gmo,  213, 996, 1259, 0, 0, 0, 0, 213, 996 

+ po/pt_BR.gmo,  219, 1014, 1243, 0, 0, 0, 0, 219, 1014 

+ po/ro.gmo,  77, 306, 353, 0, 0, 0, 0, 77, 306 

+ po/ru.gmo,  290, 1374, 1342, 0, 0, 0, 0, 290, 1374 

+ po/sk.gmo,  211, 979, 994, 0, 0, 0, 0, 211, 979 

+ po/sl.gmo,  197, 904, 968, 0, 0, 0, 0, 197, 904 

+ po/sr.gmo,  292, 1385, 1440, 0, 0, 0, 0, 292, 1385 

+ po/sr@latin.gmo,  208, 970, 1024, 0, 0, 0, 0, 208, 970 

+ po/sv.gmo,  292, 1385, 1404, 0, 0, 0, 0, 292, 1385 

+ po/ta.gmo,  213, 996, 879, 0, 0, 0, 0, 213, 996 

+ po/te.gmo,  213, 996, 894, 0, 0, 0, 0, 213, 996 

+ po/tr.gmo,  212, 990, 901, 0, 0, 0, 0, 212, 990 

+ po/uk.gmo,  292, 1385, 1380, 0, 0, 0, 0, 292, 1385 

+ po/vi.gmo,  145, 607, 810, 0, 0, 0, 0, 145, 607 

+ po/zh_CN.gmo,  290, 1374, 574, 0, 0, 0, 0, 290, 1374 

+ po/zh_TW.gmo,  290, 1374, 539, 0, 0, 0, 0, 290, 1374 

+ po/libuser.pot,  0, 0, 0, 0, 0, 301, 1437, 301, 1437 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in)

@@ -0,0 +1,200 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/sl.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nl.po,  2466, 13737, 14285, 0, 0, 7502, 50844, 9968, 64581 

+ po/he.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_HK.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/es.gmo,  5570, 33654, 43200, 0, 0, 0, 0, 5570, 33654 

+ po/bal.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sk.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/id.gmo,  206, 815, 764, 0, 0, 0, 0, 206, 815 

+ po/nb.gmo,  132, 468, 432, 0, 0, 0, 0, 132, 468 

+ po/gu.gmo,  5795, 34866, 37538, 0, 0, 0, 0, 5795, 34866 

+ po/brx.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/bs.po,  199, 816, 807, 0, 0, 9769, 63765, 9968, 64581 

+ po/tr.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/sl.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/is.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ar.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ms.gmo,  46, 115, 112, 0, 0, 0, 0, 46, 115 

+ po/ast.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/mai.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/si.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/es.po,  5570, 33654, 43200, 0, 0, 4398, 30927, 9968, 64581 

+ po/nn.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/kn.gmo,  5559, 33670, 30643, 0, 0, 0, 0, 5559, 33670 

+ po/ka.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pt_BR.po,  5669, 34320, 42358, 0, 0, 4299, 30261, 9968, 64581 

+ po/cs.po,  7640, 46576, 47243, 0, 0, 2328, 18005, 9968, 64581 

+ po/am.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sr@latin.gmo,  585, 2665, 2555, 0, 0, 0, 0, 585, 2665 

+ po/ky.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/brx.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/tr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/eo.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/uk.po,  9841, 63840, 68800, 0, 0, 127, 741, 9968, 64581 

+ po/mr.gmo,  6589, 40192, 38644, 0, 0, 0, 0, 6589, 40192 

+ po/pa.po,  5532, 33535, 38612, 0, 0, 4436, 31046, 9968, 64581 

+ po/ko.po,  3276, 18459, 17588, 0, 0, 6692, 46122, 9968, 64581 

+ po/bs.gmo,  199, 816, 807, 0, 0, 0, 0, 199, 816 

+ po/eu.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_CN.gmo,  6183, 38211, 17444, 0, 0, 0, 0, 6183, 38211 

+ po/or.po,  5437, 30972, 32175, 0, 0, 4531, 33609, 9968, 64581 

+ po/as.gmo,  5831, 35603, 37400, 0, 0, 0, 0, 5831, 35603 

+ po/pt.gmo,  339, 1448, 1931, 0, 0, 0, 0, 339, 1448 

+ po/ky.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/gl.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kk.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/wba.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/km.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bn.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/it.po,  1619, 8684, 10148, 0, 0, 8349, 55897, 9968, 64581 

+ po/ca.po,  436, 1925, 2526, 0, 0, 9532, 62656, 9968, 64581 

+ po/yo.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/el.gmo,  179, 926, 1349, 0, 0, 0, 0, 179, 926 

+ po/id.po,  206, 815, 764, 0, 0, 9762, 63766, 9968, 64581 

+ po/cs.gmo,  7640, 46576, 47243, 0, 0, 0, 0, 7640, 46576 

+ po/el.po,  179, 926, 1349, 0, 0, 9789, 63655, 9968, 64581 

+ po/mai.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/bal.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/da.gmo,  264, 1124, 1048, 0, 0, 0, 0, 264, 1124 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/pt.po,  339, 1448, 1931, 0, 0, 9629, 63133, 9968, 64581 

+ po/zh_TW.gmo,  285, 1240, 498, 0, 0, 0, 0, 285, 1240 

+ po/fr.gmo,  1145, 5721, 7089, 0, 0, 0, 0, 1145, 5721 

+ po/ja.gmo,  5691, 34440, 15943, 0, 0, 0, 0, 5691, 34440 

+ po/pl.gmo,  2551, 14147, 14917, 0, 0, 0, 0, 2551, 14147 

+ po/ar.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/vi.gmo,  2172, 12161, 17103, 0, 0, 0, 0, 2172, 12161 

+ po/it.gmo,  1619, 8684, 10148, 0, 0, 0, 0, 1619, 8684 

+ po/gl.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/ka.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/nds.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/nb.po,  132, 468, 432, 0, 0, 9836, 64113, 9968, 64581 

+ po/de_CH.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/cy.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/hr.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/sr.po,  585, 2665, 2555, 0, 0, 9383, 61916, 9968, 64581 

+ po/ne.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nso.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/tw.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/sv.gmo,  669, 3361, 3041, 0, 0, 0, 0, 669, 3361 

+ po/af.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pt_BR.gmo,  5669, 34320, 42358, 0, 0, 0, 0, 5669, 34320 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/libvirt.pot,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/ur.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/de.gmo,  5601, 33977, 32845, 0, 0, 0, 0, 5601, 33977 

+ po/tg.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/yo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nso.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/mr.po,  6589, 40192, 38644, 0, 0, 3379, 24389, 9968, 64581 

+ po/af.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/si.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/nl.gmo,  2466, 13737, 14285, 0, 0, 0, 0, 2466, 13737 

+ po/wba.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ga.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ne.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/bn_IN.gmo,  2298, 12849, 13627, 0, 0, 0, 0, 2298, 12849 

+ po/ko.gmo,  3276, 18459, 17588, 0, 0, 0, 0, 3276, 18459 

+ po/lt.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/fi.po,  356, 1506, 1173, 0, 0, 9612, 63075, 9968, 64581 

+ po/cy.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ru.gmo,  5405, 32023, 30997, 0, 0, 0, 0, 5405, 32023 

+ po/en_GB.po,  5653, 34343, 34343, 0, 0, 4315, 30238, 9968, 64581 

+ po/sq.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/lv.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_TW.po,  285, 1240, 498, 0, 0, 9683, 63341, 9968, 64581 

+ po/fa.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/ro.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/am.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/br.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/uk.gmo,  9841, 63840, 68800, 0, 0, 0, 0, 9841, 63840 

+ po/mk.gmo,  311, 1313, 1539, 0, 0, 0, 0, 311, 1313 

+ po/da.po,  264, 1124, 1048, 0, 0, 9704, 63457, 9968, 64581 

+ po/sr.gmo,  585, 2665, 2555, 0, 0, 0, 0, 585, 2665 

+ po/eo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/is.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/bn_IN.po,  2298, 12849, 13627, 0, 0, 7670, 51732, 9968, 64581 

+ po/sk.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/ga.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/ja.po,  5691, 34440, 15943, 0, 0, 4277, 30141, 9968, 64581 

+ po/ia.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/he.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/bo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ast.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/mk.po,  311, 1313, 1539, 0, 0, 9657, 63268, 9968, 64581 

+ po/ilo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/anp.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/fur.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/sr@latin.po,  585, 2665, 2555, 0, 0, 9383, 61916, 9968, 64581 

+ po/lt.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sv.po,  669, 3361, 3041, 0, 0, 9299, 61220, 9968, 64581 

+ po/ta.po,  6084, 37323, 34172, 0, 0, 3884, 27258, 9968, 64581 

+ po/lv.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/nds.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/tg.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/hi.gmo,  3487, 20189, 24033, 0, 0, 0, 0, 3487, 20189 

+ po/as.po,  5831, 35603, 37400, 0, 0, 4137, 28978, 9968, 64581 

+ po/et.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ur.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw_GB.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zu.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/eu.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/fil.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ml.po,  5588, 33905, 28238, 0, 0, 4380, 30676, 9968, 64581 

+ po/ca.gmo,  436, 1925, 2526, 0, 0, 0, 0, 436, 1925 

+ po/de.po,  5601, 33977, 32845, 0, 0, 4367, 30604, 9968, 64581 

+ po/fr.po,  1145, 5721, 7089, 0, 0, 8823, 58860, 9968, 64581 

+ po/bo.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/mn.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/mn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/en_GB.gmo,  5653, 34343, 34343, 0, 0, 0, 0, 5653, 34343 

+ po/hu.po,  264, 1124, 1056, 0, 0, 9704, 63457, 9968, 64581 

+ po/kk.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pl.po,  2551, 14147, 14917, 0, 0, 7417, 50434, 9968, 64581 

+ po/tw.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zu.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ru.po,  5405, 32023, 30997, 0, 0, 4563, 32558, 9968, 64581 

+ po/et.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/ta.gmo,  6084, 37323, 34172, 0, 0, 0, 0, 6084, 37323 

+ po/be.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw@kkcor.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ml.gmo,  5588, 33905, 28238, 0, 0, 0, 0, 5588, 33905 

+ po/ia.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/km.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/ms.po,  46, 115, 112, 0, 0, 9922, 64466, 9968, 64581 

+ po/vi.po,  2172, 12161, 17103, 0, 0, 7796, 52420, 9968, 64581 

+ po/fil.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/hu.gmo,  264, 1124, 1056, 0, 0, 0, 0, 264, 1124 

+ po/be.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/hi.po,  3487, 20189, 24033, 0, 0, 6481, 44392, 9968, 64581 

+ po/gu.po,  5795, 34866, 37538, 0, 0, 4173, 29715, 9968, 64581 

+ po/zh_CN.po,  6183, 38211, 17444, 0, 0, 3785, 26370, 9968, 64581 

+ po/th.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/my.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/my.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/or.gmo,  5437, 30972, 32175, 0, 0, 0, 0, 5437, 30972 

+ po/te.po,  5529, 33452, 29431, 0, 0, 4439, 31129, 9968, 64581 

+ po/kw@uccor.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ro.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/hr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sq.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/bg.po,  329, 1412, 1573, 0, 0, 9639, 63169, 9968, 64581 

+ po/fur.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/th.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/te.gmo,  5529, 33452, 29431, 0, 0, 0, 0, 5529, 33452 

+ po/bg.gmo,  329, 1412, 1573, 0, 0, 0, 0, 329, 1412 

+ po/fi.gmo,  356, 1506, 1173, 0, 0, 0, 0, 356, 1506 

+ po/de_CH.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/ilo.po,  0, 0, 0, 0, 0, 9968, 64581, 9968, 64581 

+ po/br.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pa.gmo,  5532, 33535, 38612, 0, 0, 0, 0, 5532, 33535 

+ po/anp.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kn.po,  5559, 33670, 30643, 0, 0, 4409, 30911, 9968, 64581 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,96 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/cs.po,  30, 153, 142, 0, 0, 0, 0, 30, 153 

+ po/pt_BR.po,  25, 121, 159, 0, 0, 5, 32, 30, 153 

+ po/sl.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/fa.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/cy.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/mk.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/es.po,  29, 145, 205, 0, 0, 1, 8, 30, 153 

+ po/sv.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ca.po,  30, 153, 223, 0, 0, 0, 0, 30, 153 

+ po/el.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ro.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/nds.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/or.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ar.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/hr.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/et.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/be.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/as.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/bg.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/anp.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ka.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/zu.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/uk.po,  30, 153, 150, 0, 0, 0, 0, 30, 153 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/lt.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/bn.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/mr.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ne.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/pl.po,  30, 153, 158, 0, 0, 0, 0, 30, 153 

+ po/sr.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/gl.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/lv.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/te.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/eu.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ilo.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/vi.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/fi.po,  7, 31, 28, 0, 0, 23, 122, 30, 153 

+ po/bs.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/wba.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/pa.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/th.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/en_GB.po,  25, 121, 121, 0, 0, 5, 32, 30, 153 

+ po/fr.po,  29, 145, 167, 0, 0, 1, 8, 30, 153 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/br.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ml.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/mai.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/is.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/hu.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/nl.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/sq.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/pt.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ru.po,  1, 4, 3, 0, 0, 29, 149, 30, 153 

+ po/ta.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/de_CH.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/eo.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/am.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/nso.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/kn.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/af.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/id.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/brx.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/gu.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ms.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/si.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/tw.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/de.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/zh_CN.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/zh_TW.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ja.po,  25, 121, 52, 0, 0, 5, 32, 30, 153 

+ po/nn.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/km.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/kw.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/da.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ko.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/hi.po,  25, 121, 166, 0, 0, 5, 32, 30, 153 

+ po/mn.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/yo.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ky.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/sk.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/sr@latin.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/bo.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/he.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/kk.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ur.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/bal.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/it.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/tr.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ast.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/tg.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/nb.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

+ po/ia.po,  0, 0, 0, 0, 0, 30, 153, 30, 153 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

@@ -0,0 +1,6 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/libvisual-0.4.pot,  0, 0, 0, 0, 0, 205, 1055, 205, 1055 

+ po/es_ES.gmo,  62, 303, 364, 0, 0, 0, 0, 62, 303 

+ po/es_AR.gmo,  62, 303, 364, 0, 0, 0, 0, 62, 303 

+ po/es_ES.po,  62, 303, 364, 51, 204, 92, 548, 205, 1055 

+ po/es_AR.po,  62, 303, 364, 51, 204, 92, 548, 205, 1055 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog.pre-git)

@@ -0,0 +1,94 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  231, 1086, 353, 0, 0, 0, 0, 231, 1086 

+ po/zh_HK.po,  230, 1084, 352, 0, 0, 0, 0, 230, 1084 

+ po/zh_CN.po,  231, 1086, 330, 0, 0, 0, 0, 231, 1086 

+ po/xh.po,  30, 73, 88, 0, 0, 0, 0, 30, 73 

+ po/wa.po,  15, 30, 46, 9, 29, 6, 14, 30, 73 

+ po/vi.po,  231, 1086, 1657, 0, 0, 0, 0, 231, 1086 

+ po/uk.po,  230, 1084, 998, 0, 0, 0, 0, 230, 1084 

+ po/ug.po,  230, 1082, 991, 0, 0, 0, 0, 230, 1082 

+ po/tr.po,  231, 1086, 986, 0, 0, 0, 0, 231, 1086 

+ po/th.po,  231, 1086, 432, 0, 0, 0, 0, 231, 1086 

+ po/te.po,  231, 1086, 859, 0, 0, 0, 0, 231, 1086 

+ po/ta.po,  230, 1068, 908, 1, 18, 0, 0, 231, 1086 

+ po/sv.po,  231, 1086, 1025, 0, 0, 0, 0, 231, 1086 

+ po/sr@latin.po,  231, 1086, 1084, 0, 0, 0, 0, 231, 1086 

+ po/sr.po,  231, 1086, 1084, 0, 0, 0, 0, 231, 1086 

+ po/sq.po,  33, 88, 131, 0, 0, 0, 0, 33, 88 

+ po/sl.po,  231, 1086, 1032, 0, 0, 0, 0, 231, 1086 

+ po/sk.po,  231, 1086, 1016, 0, 0, 0, 0, 231, 1086 

+ po/si.po,  32, 87, 103, 0, 0, 0, 0, 32, 87 

+ po/rw.po,  1, 2, 2, 20, 55, 9, 16, 30, 73 

+ po/ru.po,  231, 1086, 1035, 0, 0, 0, 0, 231, 1086 

+ po/ro.po,  241, 1124, 1277, 0, 0, 0, 0, 241, 1124 

+ po/pt_BR.po,  231, 1086, 1280, 0, 0, 0, 0, 231, 1086 

+ po/pt.po,  231, 1086, 1291, 0, 0, 0, 0, 231, 1086 

+ po/pl.po,  231, 1086, 1022, 0, 0, 0, 0, 231, 1086 

+ po/pa.po,  230, 1084, 1097, 0, 0, 0, 0, 230, 1084 

+ po/or.po,  230, 1068, 1013, 1, 18, 0, 0, 231, 1086 

+ po/oc.po,  230, 1082, 1337, 0, 0, 0, 0, 230, 1082 

+ po/nn.po,  241, 1124, 1049, 0, 0, 0, 0, 241, 1124 

+ po/nl.po,  231, 1086, 994, 0, 0, 0, 0, 231, 1086 

+ po/ne.po,  236, 1083, 1017, 3, 39, 0, 0, 239, 1122 

+ po/nb.po,  203, 749, 697, 0, 0, 27, 335, 230, 1084 

+ po/ms.po,  21, 47, 49, 7, 21, 2, 5, 30, 73 

+ po/mr.po,  231, 1086, 1049, 0, 0, 0, 0, 231, 1086 

+ po/mn.po,  21, 47, 56, 7, 21, 2, 5, 30, 73 

+ po/ml.po,  231, 1086, 835, 0, 0, 0, 0, 231, 1086 

+ po/mk.po,  240, 1106, 1275, 1, 18, 0, 0, 241, 1124 

+ po/mi.po,  0, 0, 0, 6, 11, 24, 62, 30, 73 

+ po/mai.po,  47, 97, 124, 0, 0, 194, 1027, 241, 1124 

+ po/lv.po,  231, 1086, 967, 0, 0, 0, 0, 231, 1086 

+ po/lt.po,  231, 1086, 940, 0, 0, 0, 0, 231, 1086 

+ po/li.po,  15, 30, 32, 9, 29, 6, 14, 30, 73 

+ po/ky.po,  27, 69, 74, 1, 1, 2, 3, 30, 73 

+ po/ku.po,  30, 73, 87, 0, 0, 0, 0, 30, 73 

+ po/ko.po,  230, 1084, 985, 0, 0, 0, 0, 230, 1084 

+ po/kn.po,  230, 1068, 899, 1, 18, 0, 0, 231, 1086 

+ po/km.po,  230, 1084, 522, 0, 0, 0, 0, 230, 1084 

+ po/kk.po,  89, 207, 223, 0, 0, 142, 879, 231, 1086 

+ po/ka.po,  152, 621, 529, 0, 0, 87, 501, 239, 1122 

+ po/ja.po,  231, 1086, 443, 0, 0, 0, 0, 231, 1086 

+ po/it.po,  231, 1086, 1208, 0, 0, 0, 0, 231, 1086 

+ po/is.po,  17, 33, 43, 8, 27, 5, 13, 30, 73 

+ po/id.po,  231, 1086, 1113, 0, 0, 0, 0, 231, 1086 

+ po/hu.po,  231, 1086, 984, 0, 0, 0, 0, 231, 1086 

+ po/hr.po,  22, 65, 80, 4, 10, 215, 1049, 241, 1124 

+ po/hi.po,  231, 1086, 1234, 0, 0, 0, 0, 231, 1086 

+ po/he.po,  230, 1084, 1094, 0, 0, 0, 0, 230, 1084 

+ po/gu.po,  231, 1086, 1133, 0, 0, 0, 0, 231, 1086 

+ po/gl.po,  231, 1086, 1330, 0, 0, 0, 0, 231, 1086 

+ po/gd.po,  231, 1086, 1331, 0, 0, 0, 0, 231, 1086 

+ po/ga.po,  143, 343, 404, 0, 0, 98, 781, 241, 1124 

+ po/fy.po,  230, 1082, 1120, 0, 0, 0, 0, 230, 1082 

+ po/fr.po,  230, 1084, 1336, 0, 0, 0, 0, 230, 1084 

+ po/fi.po,  230, 1084, 846, 0, 0, 0, 0, 230, 1084 

+ po/fa.po,  230, 1084, 1127, 0, 0, 0, 0, 230, 1084 

+ po/eu.po,  229, 1066, 935, 1, 18, 0, 0, 230, 1084 

+ po/et.po,  230, 1084, 868, 0, 0, 0, 0, 230, 1084 

+ po/es.po,  231, 1086, 1356, 0, 0, 0, 0, 231, 1086 

+ po/eo.po,  153, 410, 403, 0, 0, 78, 676, 231, 1086 

+ po/en_GB.po,  230, 1084, 1084, 0, 0, 0, 0, 230, 1084 

+ po/en_CA.po,  33, 88, 88, 0, 0, 0, 0, 33, 88 

+ po/en@shaw.po,  195, 893, 892, 46, 231, 0, 0, 241, 1124 

+ po/el.po,  231, 1086, 1216, 0, 0, 0, 0, 231, 1086 

+ po/dz.po,  241, 1124, 745, 0, 0, 0, 0, 241, 1124 

+ po/de.po,  231, 1086, 1023, 0, 0, 0, 0, 231, 1086 

+ po/da.po,  231, 1086, 1023, 0, 0, 0, 0, 231, 1086 

+ po/cy.po,  33, 88, 104, 0, 0, 0, 0, 33, 88 

+ po/cs.po,  231, 1086, 1037, 0, 0, 0, 0, 231, 1086 

+ po/crh.po,  230, 1084, 959, 0, 0, 0, 0, 230, 1084 

+ po/ca@valencia.po,  229, 1066, 1341, 1, 18, 0, 0, 230, 1084 

+ po/ca.po,  229, 1066, 1343, 2, 20, 0, 0, 231, 1086 

+ po/bs.po,  230, 1068, 1148, 1, 18, 0, 0, 231, 1086 

+ po/br.po,  98, 240, 257, 2, 8, 141, 876, 241, 1124 

+ po/bn_IN.po,  230, 1068, 1127, 1, 18, 0, 0, 231, 1086 

+ po/bn.po,  240, 1106, 1180, 1, 18, 0, 0, 241, 1124 

+ po/bg.po,  230, 1084, 1263, 0, 0, 0, 0, 230, 1084 

+ po/be@latin.po,  241, 1124, 1022, 0, 0, 0, 0, 241, 1124 

+ po/be.po,  230, 1084, 1019, 0, 0, 0, 0, 230, 1084 

+ po/az.po,  21, 47, 50, 7, 21, 2, 5, 30, 73 

+ po/ast.po,  241, 1124, 1303, 0, 0, 0, 0, 241, 1124 

+ po/as.po,  230, 1068, 1055, 1, 18, 0, 0, 231, 1086 

+ po/ar.po,  241, 1124, 1093, 0, 0, 0, 0, 241, 1124 

+ po/am.po,  11, 26, 35, 13, 33, 6, 14, 30, 73 

@@ -0,0 +1,6 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/cat-id-tbl.c)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf6 in position 12: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-cat-id)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,3 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/de.po,  128, 709, 711, 2, 404, 5, 10, 135, 1123 

+ po/lrzsz.pot,  0, 0, 0, 0, 0, 135, 1123, 135, 1123 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/pogen.h)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in)

@@ -0,0 +1,3 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/lvm2.po,  0, 0, 0, 0, 0, 1556, 9826, 1556, 9826 

+ po/de.po,  0, 0, 0, 0, 0, 0, 0, 0, 0 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

@@ -0,0 +1,65 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/bg.po,  53, 145, 166, 36, 89, 77, 521, 166, 755 

+ po/eu.po,  166, 755, 626, 0, 0, 0, 0, 166, 755 

+ po/uk.po,  91, 208, 216, 0, 0, 75, 547, 166, 755 

+ po/pt.po,  166, 755, 865, 0, 0, 0, 0, 166, 755 

+ po/te.po,  102, 215, 213, 0, 0, 64, 540, 166, 755 

+ po/el.po,  166, 755, 843, 0, 0, 0, 0, 166, 755 

+ po/en_GB.po,  26, 97, 97, 29, 78, 111, 580, 166, 755 

+ po/hr.po,  121, 422, 420, 0, 0, 45, 333, 166, 755 

+ po/af.po,  11, 28, 29, 4, 9, 151, 718, 166, 755 

+ po/ca.po,  166, 755, 910, 0, 0, 0, 0, 166, 755 

+ po/sv.po,  166, 755, 735, 0, 0, 0, 0, 166, 755 

+ po/fa.po,  12, 29, 29, 4, 9, 150, 717, 166, 755 

+ po/pt_BR.po,  166, 755, 926, 0, 0, 0, 0, 166, 755 

+ po/et.po,  166, 755, 599, 0, 0, 0, 0, 166, 755 

+ po/is.po,  135, 343, 343, 0, 0, 31, 412, 166, 755 

+ po/ro.po,  26, 97, 91, 29, 78, 111, 580, 166, 755 

+ po/nb.po,  12, 29, 27, 4, 9, 150, 717, 166, 755 

+ po/ja.po,  166, 755, 251, 0, 0, 0, 0, 166, 755 

+ po/be.po,  26, 97, 87, 29, 78, 111, 580, 166, 755 

+ po/sl.po,  47, 131, 126, 11, 22, 144, 659, 202, 812 

+ po/am.po,  3, 5, 6, 3, 5, 160, 745, 166, 755 

+ po/de.po,  46, 114, 115, 15, 38, 105, 603, 166, 755 

+ po/eo.po,  12, 29, 28, 4, 9, 150, 717, 166, 755 

+ po/sr.po,  166, 755, 742, 0, 0, 0, 0, 166, 755 

+ po/tt_RU.po,  12, 29, 28, 4, 9, 150, 717, 166, 755 

+ po/ast.po,  12, 29, 27, 4, 9, 150, 717, 166, 755 

+ po/ko.po,  166, 755, 660, 0, 0, 0, 0, 166, 755 

+ po/th.po,  0, 0, 0, 0, 0, 166, 755, 166, 755 

+ po/ar.po,  122, 490, 461, 12, 84, 32, 181, 166, 755 

+ po/zh_TW.po,  149, 680, 241, 14, 40, 3, 35, 166, 755 

+ po/lt.po,  166, 755, 736, 0, 0, 0, 0, 166, 755 

+ po/ms.po,  12, 29, 25, 4, 9, 150, 717, 166, 755 

+ po/ru.po,  166, 755, 738, 0, 0, 0, 0, 166, 755 

+ po/fi.po,  105, 241, 192, 11, 40, 50, 474, 166, 755 

+ po/nl.po,  166, 755, 758, 0, 0, 0, 0, 166, 755 

+ po/hu.po,  59, 106, 92, 0, 0, 107, 649, 166, 755 

+ po/vi.po,  26, 97, 152, 29, 78, 111, 580, 166, 755 

+ po/si.po,  12, 29, 33, 4, 9, 150, 717, 166, 755 

+ po/nn.po,  12, 29, 31, 4, 9, 150, 717, 166, 755 

+ po/sk.po,  159, 713, 695, 0, 0, 7, 42, 166, 755 

+ po/ur.po,  12, 29, 33, 4, 9, 150, 717, 166, 755 

+ po/pl.po,  166, 755, 751, 0, 0, 0, 0, 166, 755 

+ po/es.po,  166, 755, 910, 0, 0, 0, 0, 166, 755 

+ po/fr.po,  166, 755, 985, 0, 0, 0, 0, 166, 755 

+ po/it.po,  52, 142, 146, 32, 81, 82, 532, 166, 755 

+ po/ps.po,  0, 0, 0, 0, 0, 166, 755, 166, 755 

+ po/ml.po,  0, 0, 0, 0, 0, 166, 755, 166, 755 

+ po/bn_IN.po,  11, 28, 27, 5, 10, 150, 717, 166, 755 

+ po/ug.po,  26, 97, 83, 29, 78, 111, 580, 166, 755 

+ po/fo.po,  12, 29, 21, 4, 9, 150, 717, 166, 755 

+ po/kk.po,  121, 318, 320, 4, 24, 41, 413, 166, 755 

+ po/lg.po,  111, 295, 376, 0, 0, 55, 460, 166, 755 

+ po/gl.po,  166, 755, 917, 0, 0, 0, 0, 166, 755 

+ po/sr@latin.po,  165, 734, 726, 0, 0, 1, 21, 166, 755 

+ po/da.po,  166, 755, 701, 0, 0, 0, 0, 166, 755 

+ po/zh_CN.po,  166, 755, 249, 0, 0, 0, 0, 166, 755 

+ po/id.po,  111, 298, 315, 10, 37, 45, 420, 166, 755 

+ po/bn.po,  12, 29, 31, 4, 9, 150, 717, 166, 755 

+ po/tr.po,  166, 755, 700, 0, 0, 0, 0, 166, 755 

+ po/ur_PK.po,  12, 29, 33, 4, 9, 150, 717, 166, 755 

+ po/cs.po,  166, 755, 732, 0, 0, 0, 0, 166, 755 

+ po/pa.po,  12, 29, 29, 4, 9, 150, 717, 166, 755 

+ po/he.po,  124, 328, 343, 6, 17, 36, 410, 166, 755 

+ po/frp.po,  10, 16, 16, 5, 15, 151, 724, 166, 755 

@@ -0,0 +1,32 @@ 

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe1 in position 4: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/Rules-quot)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xde in position 4: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xbe in position 0: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf5 in position 3: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe6 in position 34: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./gl/po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf3 in position 3: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe8 in position 3: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xee in position 4: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

@@ -0,0 +1,132 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ gl/po/it.po,  42, 163, 185, 7, 40, 0, 0, 49, 203 

+ gl/po/nl.po,  42, 163, 175, 7, 40, 0, 0, 49, 203 

+ gl/po/it.gmo,  42, 163, 185, 0, 0, 0, 0, 42, 163 

+ gl/po/da.po,  42, 163, 160, 7, 40, 0, 0, 49, 203 

+ gl/po/ru.gmo,  42, 163, 160, 0, 0, 0, 0, 42, 163 

+ gl/po/zh_TW.gmo,  3, 6, 3, 0, 0, 0, 0, 3, 6 

+ gl/po/sr.gmo,  42, 163, 165, 0, 0, 0, 0, 42, 163 

+ gl/po/bg.gmo,  5, 19, 21, 0, 0, 0, 0, 5, 19 

+ gl/po/eu.gmo,  3, 6, 5, 0, 0, 0, 0, 3, 6 

+ gl/po/cs.gmo,  42, 163, 168, 0, 0, 0, 0, 42, 163 

+ gl/po/cs.po,  42, 163, 168, 7, 40, 0, 0, 49, 203 

+ gl/po/ru.po,  42, 163, 160, 7, 40, 0, 0, 49, 203 

+ gl/po/uk.po,  42, 163, 149, 7, 40, 0, 0, 49, 203 

+ gl/po/zh_CN.gmo,  41, 160, 63, 0, 0, 0, 0, 41, 160 

+ gl/po/ca.po,  15, 66, 85, 26, 114, 8, 23, 49, 203 

+ gl/po/ca.gmo,  15, 66, 85, 0, 0, 0, 0, 15, 66 

+ gl/po/zh_TW.po,  3, 6, 3, 25, 123, 21, 74, 49, 203 

+ gl/po/pl.po,  42, 163, 162, 7, 40, 0, 0, 49, 203 

+ gl/po/af.gmo,  4, 13, 12, 0, 0, 0, 0, 4, 13 

+ gl/po/nl.gmo,  42, 163, 175, 0, 0, 0, 0, 42, 163 

+ gl/po/es.gmo,  42, 163, 198, 0, 0, 0, 0, 42, 163 

+ gl/po/nb.gmo,  2, 5, 5, 0, 0, 0, 0, 2, 5 

+ gl/po/fi.po,  42, 163, 140, 7, 40, 0, 0, 49, 203 

+ gl/po/eo.gmo,  42, 163, 154, 0, 0, 0, 0, 42, 163 

+ gl/po/be.po,  4, 13, 12, 23, 113, 22, 77, 49, 203 

+ gl/po/el.gmo,  3, 6, 7, 0, 0, 0, 0, 3, 6 

+ gl/po/pt_BR.po,  42, 163, 191, 7, 40, 0, 0, 49, 203 

+ gl/po/be.gmo,  4, 13, 12, 0, 0, 0, 0, 4, 13 

+ gl/po/sl.gmo,  42, 163, 164, 0, 0, 0, 0, 42, 163 

+ gl/po/af.po,  4, 13, 12, 23, 113, 22, 77, 49, 203 

+ gl/po/eo.po,  42, 163, 154, 7, 40, 0, 0, 49, 203 

+ gl/po/ms.gmo,  4, 13, 15, 0, 0, 0, 0, 4, 13 

+ gl/po/fr.gmo,  42, 163, 195, 0, 0, 0, 0, 42, 163 

+ gl/po/fr.po,  42, 163, 195, 7, 40, 0, 0, 49, 203 

+ gl/po/gl.gmo,  34, 118, 152, 0, 0, 0, 0, 34, 118 

+ gl/po/ga.po,  40, 153, 161, 9, 50, 0, 0, 49, 203 

+ gl/po/rw.gmo,  2, 2, 2, 0, 0, 0, 0, 2, 2 

+ gl/po/ms.po,  4, 13, 15, 23, 113, 22, 77, 49, 203 

+ gl/po/bg.po,  5, 19, 21, 23, 110, 21, 74, 49, 203 

+ gl/po/eu.po,  3, 6, 5, 24, 120, 22, 77, 49, 203 

+ gl/po/sk.po,  2, 5, 5, 23, 103, 24, 95, 49, 203 

+ gl/po/pt_BR.gmo,  42, 163, 191, 0, 0, 0, 0, 42, 163 

+ gl/po/nb.po,  2, 5, 5, 24, 120, 23, 78, 49, 203 

+ gl/po/fi.gmo,  42, 163, 140, 0, 0, 0, 0, 42, 163 

+ gl/po/tr.po,  4, 13, 11, 24, 116, 21, 74, 49, 203 

+ gl/po/vi.gmo,  42, 163, 265, 0, 0, 0, 0, 42, 163 

+ gl/po/sr.po,  42, 163, 165, 7, 40, 0, 0, 49, 203 

+ gl/po/pt.po,  42, 163, 186, 7, 40, 0, 0, 49, 203 

+ gl/po/ko.po,  2, 5, 7, 24, 120, 23, 78, 49, 203 

+ gl/po/hu.po,  42, 163, 160, 7, 40, 0, 0, 49, 203 

+ gl/po/ja.gmo,  42, 163, 70, 0, 0, 0, 0, 42, 163 

+ gl/po/de.gmo,  42, 163, 166, 0, 0, 0, 0, 42, 163 

+ gl/po/es.po,  42, 163, 198, 7, 40, 0, 0, 49, 203 

+ gl/po/tr.gmo,  4, 13, 11, 0, 0, 0, 0, 4, 13 

+ gl/po/ro.po,  14, 57, 61, 23, 101, 12, 45, 49, 203 

+ gl/po/sv.po,  42, 163, 158, 7, 40, 0, 0, 49, 203 

+ gl/po/hu.gmo,  42, 163, 160, 0, 0, 0, 0, 42, 163 

+ gl/po/pl.gmo,  42, 163, 162, 0, 0, 0, 0, 42, 163 

+ gl/po/man-db-gnulib.pot,  0, 0, 0, 0, 0, 49, 203, 49, 203 

+ gl/po/pt.gmo,  42, 163, 186, 0, 0, 0, 0, 42, 163 

+ gl/po/ja.po,  42, 163, 70, 7, 40, 0, 0, 49, 203 

+ gl/po/de.po,  42, 163, 166, 7, 40, 0, 0, 49, 203 

+ gl/po/gl.po,  34, 118, 152, 7, 40, 8, 45, 49, 203 

+ gl/po/et.po,  35, 150, 127, 6, 37, 8, 16, 49, 203 

+ gl/po/vi.po,  42, 163, 265, 7, 40, 0, 0, 49, 203 

+ gl/po/rw.po,  2, 2, 2, 38, 175, 9, 26, 49, 203 

+ gl/po/sv.gmo,  42, 163, 158, 0, 0, 0, 0, 42, 163 

+ gl/po/sl.po,  42, 163, 164, 7, 40, 0, 0, 49, 203 

+ gl/po/uk.gmo,  42, 163, 149, 0, 0, 0, 0, 42, 163 

+ gl/po/el.po,  3, 6, 7, 22, 102, 24, 95, 49, 203 

+ gl/po/zh_CN.po,  41, 160, 63, 8, 43, 0, 0, 49, 203 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ man/po4a/po/nl.po,  185, 4827, 4619, 61, 1176, 130, 2347, 376, 8350 

+ man/po4a/po/da.po,  278, 3985, 3576, 0, 0, 98, 4365, 376, 8350 

+ man/po4a/po/ru.po,  376, 8350, 7382, 0, 0, 0, 0, 376, 8350 

+ man/po4a/po/id.po,  347, 7617, 7100, 28, 697, 1, 36, 376, 8350 

+ man/po4a/po/man-db-manpages.pot,  0, 0, 0, 0, 0, 376, 8350, 376, 8350 

+ man/po4a/po/pl.po,  374, 8256, 7683, 2, 94, 0, 0, 376, 8350 

+ man/po4a/po/pt_BR.po,  376, 8350, 9051, 0, 0, 0, 0, 376, 8350 

+ man/po4a/po/fr.po,  374, 8256, 9537, 2, 94, 0, 0, 376, 8350 

+ man/po4a/po/tr.po,  374, 8256, 6588, 2, 94, 0, 0, 376, 8350 

+ man/po4a/po/sr.po,  374, 8256, 7473, 2, 94, 0, 0, 376, 8350 

+ man/po4a/po/es.po,  363, 7626, 8143, 6, 349, 7, 375, 376, 8350 

+ man/po4a/po/sv.po,  376, 8350, 7667, 0, 0, 0, 0, 376, 8350 

+ man/po4a/po/ja.po,  254, 5069, 1201, 39, 881, 83, 2400, 376, 8350 

+ man/po4a/po/de.po,  376, 8350, 7764, 0, 0, 0, 0, 376, 8350 

+ man/po4a/po/zh_CN.po,  376, 8350, 1940, 0, 0, 0, 0, 376, 8350 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/it.po,  85, 452, 540, 14, 109, 101, 485, 200, 1046 

+ po/nl.po,  192, 965, 960, 8, 81, 0, 0, 200, 1046 

+ po/da.po,  200, 1046, 1026, 0, 0, 0, 0, 200, 1046 

+ po/ru.gmo,  200, 1046, 1120, 0, 0, 0, 0, 200, 1046 

+ po/zh_TW.gmo,  200, 1046, 483, 0, 0, 0, 0, 200, 1046 

+ po/sr.gmo,  200, 1046, 1180, 0, 0, 0, 0, 200, 1046 

+ po/id.gmo,  200, 1046, 1145, 0, 0, 0, 0, 200, 1046 

+ po/cs.gmo,  200, 1046, 1182, 0, 0, 0, 0, 200, 1046 

+ po/cs.po,  200, 1046, 1182, 0, 0, 0, 0, 200, 1046 

+ po/ru.po,  200, 1046, 1120, 0, 0, 0, 0, 200, 1046 

+ po/id.po,  200, 1046, 1145, 0, 0, 0, 0, 200, 1046 

+ po/zh_CN.gmo,  200, 1046, 484, 0, 0, 0, 0, 200, 1046 

+ po/ca.po,  200, 1046, 1426, 0, 0, 0, 0, 200, 1046 

+ po/ca.gmo,  200, 1046, 1426, 0, 0, 0, 0, 200, 1046 

+ po/zh_TW.po,  200, 1046, 483, 0, 0, 0, 0, 200, 1046 

+ po/pl.po,  200, 1046, 1156, 0, 0, 0, 0, 200, 1046 

+ po/nl.gmo,  192, 965, 960, 0, 0, 0, 0, 192, 965 

+ po/es.gmo,  200, 1046, 1309, 0, 0, 0, 0, 200, 1046 

+ po/fi.po,  72, 290, 250, 13, 86, 115, 670, 200, 1046 

+ po/eo.gmo,  200, 1046, 1103, 0, 0, 0, 0, 200, 1046 

+ po/pt_BR.po,  200, 1046, 1298, 0, 0, 0, 0, 200, 1046 

+ po/eo.po,  200, 1046, 1103, 0, 0, 0, 0, 200, 1046 

+ po/fr.gmo,  200, 1046, 1359, 0, 0, 0, 0, 200, 1046 

+ po/fr.po,  200, 1046, 1359, 0, 0, 0, 0, 200, 1046 

+ po/pt_BR.gmo,  200, 1046, 1298, 0, 0, 0, 0, 200, 1046 

+ po/fi.gmo,  72, 290, 250, 0, 0, 0, 0, 72, 290 

+ po/tr.po,  200, 1046, 976, 0, 0, 0, 0, 200, 1046 

+ po/vi.gmo,  200, 1046, 1688, 0, 0, 0, 0, 200, 1046 

+ po/sr.po,  200, 1046, 1180, 0, 0, 0, 0, 200, 1046 

+ po/ja.gmo,  200, 1046, 558, 0, 0, 0, 0, 200, 1046 

+ po/de.gmo,  200, 1046, 1094, 0, 0, 0, 0, 200, 1046 

+ po/es.po,  200, 1046, 1309, 0, 0, 0, 0, 200, 1046 

+ po/tr.gmo,  200, 1046, 976, 0, 0, 0, 0, 200, 1046 

+ po/ro.po,  80, 425, 539, 19, 136, 101, 485, 200, 1046 

+ po/sv.po,  200, 1046, 1023, 0, 0, 0, 0, 200, 1046 

+ po/pl.gmo,  200, 1046, 1156, 0, 0, 0, 0, 200, 1046 

+ po/da.gmo,  200, 1046, 1026, 0, 0, 0, 0, 200, 1046 

+ po/ja.po,  200, 1046, 558, 0, 0, 0, 0, 200, 1046 

+ po/de.po,  200, 1046, 1094, 0, 0, 0, 0, 200, 1046 

+ po/man-db.pot,  0, 0, 0, 0, 0, 200, 1046, 200, 1046 

+ po/vi.po,  200, 1046, 1688, 0, 0, 0, 0, 200, 1046 

+ po/sv.gmo,  200, 1046, 1023, 0, 0, 0, 0, 200, 1046 

+ po/zh_CN.po,  200, 1046, 484, 0, 0, 0, 0, 200, 1046 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,76 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ja.gmo,  50, 406, 202, 0, 0, 0, 0, 50, 406 

+ po/nl.po,  50, 406, 415, 1, 175, 0, 0, 51, 581 

+ po/et.po,  44, 270, 252, 0, 0, 7, 311, 51, 581 

+ po/fr.gmo,  50, 406, 519, 0, 0, 0, 0, 50, 406 

+ po/el.gmo,  47, 286, 330, 0, 0, 0, 0, 47, 286 

+ po/ms.po,  31, 165, 157, 0, 0, 20, 416, 51, 581 

+ po/ast.gmo,  49, 397, 464, 0, 0, 0, 0, 49, 397 

+ po/cs.po,  51, 581, 568, 0, 0, 0, 0, 51, 581 

+ po/sv.po,  50, 406, 402, 1, 175, 0, 0, 51, 581 

+ po/ca.gmo,  50, 406, 534, 0, 0, 0, 0, 50, 406 

+ po/tr.po,  7, 22, 20, 0, 0, 44, 559, 51, 581 

+ po/tr.gmo,  7, 22, 20, 0, 0, 0, 0, 7, 22 

+ po/ru.po,  50, 406, 413, 1, 175, 0, 0, 51, 581 

+ po/sr@latin.po,  45, 367, 384, 1, 175, 5, 39, 51, 581 

+ po/fi.gmo,  34, 174, 150, 0, 0, 0, 0, 34, 174 

+ po/sr.gmo,  45, 367, 384, 0, 0, 0, 0, 45, 367 

+ po/pt.po,  50, 406, 486, 1, 175, 0, 0, 51, 581 

+ po/as.gmo,  50, 406, 413, 0, 0, 0, 0, 50, 406 

+ po/ta.po,  4, 156, 156, 1, 175, 46, 250, 51, 581 

+ po/uk.gmo,  50, 406, 417, 0, 0, 0, 0, 50, 406 

+ po/hu.gmo,  50, 406, 373, 0, 0, 0, 0, 50, 406 

+ po/ast.po,  49, 397, 464, 1, 175, 1, 9, 51, 581 

+ po/bg.gmo,  50, 406, 455, 0, 0, 0, 0, 50, 406 

+ po/hu.po,  50, 406, 373, 1, 175, 0, 0, 51, 581 

+ po/ko.gmo,  50, 406, 377, 0, 0, 0, 0, 50, 406 

+ po/es.po,  50, 406, 490, 1, 175, 0, 0, 51, 581 

+ po/fr.po,  50, 406, 519, 1, 175, 0, 0, 51, 581 

+ po/ar.po,  49, 397, 458, 1, 175, 1, 9, 51, 581 

+ po/nds.gmo,  3, 10, 10, 0, 0, 0, 0, 3, 10 

+ po/ca.po,  50, 406, 534, 1, 175, 0, 0, 51, 581 

+ po/ta.gmo,  4, 156, 156, 0, 0, 0, 0, 4, 156 

+ po/zh_TW.po,  50, 406, 153, 1, 175, 0, 0, 51, 581 

+ po/ms.gmo,  31, 165, 157, 0, 0, 0, 0, 31, 165 

+ po/nl.gmo,  50, 406, 415, 0, 0, 0, 0, 50, 406 

+ po/pt_BR.po,  50, 406, 494, 1, 175, 0, 0, 51, 581 

+ po/ko.po,  50, 406, 377, 1, 175, 0, 0, 51, 581 

+ po/mlocate.pot,  0, 0, 0, 0, 0, 51, 581, 51, 581 

+ po/ar.gmo,  49, 397, 458, 0, 0, 0, 0, 49, 397 

+ po/sr@latin.gmo,  45, 367, 384, 0, 0, 0, 0, 45, 367 

+ po/gu.gmo,  24, 140, 147, 0, 0, 0, 0, 24, 140 

+ po/ru.gmo,  50, 406, 413, 0, 0, 0, 0, 50, 406 

+ po/en_GB.gmo,  49, 397, 397, 0, 0, 0, 0, 49, 397 

+ po/da.po,  50, 406, 390, 1, 175, 0, 0, 51, 581 

+ po/el.po,  47, 286, 330, 0, 0, 4, 295, 51, 581 

+ po/pt_BR.gmo,  50, 406, 494, 0, 0, 0, 0, 50, 406 

+ po/bs.po,  47, 380, 399, 1, 175, 3, 26, 51, 581 

+ po/lv.gmo,  50, 406, 385, 0, 0, 0, 0, 50, 406 

+ po/cs.gmo,  51, 581, 568, 0, 0, 0, 0, 51, 581 

+ po/fi.po,  34, 174, 150, 0, 0, 17, 407, 51, 581 

+ po/fa.po,  50, 406, 447, 1, 175, 0, 0, 51, 581 

+ po/da.gmo,  50, 406, 390, 0, 0, 0, 0, 50, 406 

+ po/zh_TW.gmo,  50, 406, 153, 0, 0, 0, 0, 50, 406 

+ po/zh_CN.po,  50, 406, 194, 1, 175, 0, 0, 51, 581 

+ po/lv.po,  50, 406, 385, 1, 175, 0, 0, 51, 581 

+ po/zh_CN.gmo,  50, 406, 194, 0, 0, 0, 0, 50, 406 

+ po/bs.gmo,  47, 380, 399, 0, 0, 0, 0, 47, 380 

+ po/gu.po,  24, 140, 147, 0, 0, 27, 441, 51, 581 

+ po/de.po,  50, 406, 372, 1, 175, 0, 0, 51, 581 

+ po/bg.po,  50, 406, 455, 1, 175, 0, 0, 51, 581 

+ po/es.gmo,  50, 406, 490, 0, 0, 0, 0, 50, 406 

+ po/sr.po,  45, 367, 384, 1, 175, 5, 39, 51, 581 

+ po/en_GB.po,  49, 397, 397, 1, 175, 1, 9, 51, 581 

+ po/pl.po,  50, 406, 426, 1, 175, 0, 0, 51, 581 

+ po/de.gmo,  50, 406, 372, 0, 0, 0, 0, 50, 406 

+ po/fa.gmo,  50, 406, 447, 0, 0, 0, 0, 50, 406 

+ po/as.po,  50, 406, 413, 1, 175, 0, 0, 51, 581 

+ po/pl.gmo,  50, 406, 426, 0, 0, 0, 0, 50, 406 

+ po/uk.po,  50, 406, 417, 1, 175, 0, 0, 51, 581 

+ po/sv.gmo,  50, 406, 402, 0, 0, 0, 0, 50, 406 

+ po/nds.po,  3, 10, 10, 0, 0, 48, 571, 51, 581 

+ po/ja.po,  50, 406, 202, 1, 175, 0, 0, 51, 581 

+ po/et.gmo,  44, 270, 252, 0, 0, 0, 0, 44, 270 

+ po/it.po,  50, 406, 451, 1, 175, 0, 0, 51, 581 

+ po/it.gmo,  50, 406, 451, 0, 0, 0, 0, 50, 406 

+ po/pt.gmo,  50, 406, 486, 0, 0, 0, 0, 50, 406 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,154 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/hi.gmo,  30, 114, 125, 0, 0, 0, 0, 30, 114 

+ po/tg.gmo,  30, 114, 118, 0, 0, 0, 0, 30, 114 

+ po/fa.gmo,  30, 114, 123, 0, 0, 0, 0, 30, 114 

+ po/he.gmo,  30, 114, 113, 0, 0, 0, 0, 30, 114 

+ po/th.gmo,  30, 114, 38, 0, 0, 0, 0, 30, 114 

+ po/da.gmo,  34, 131, 108, 0, 0, 0, 0, 34, 131 

+ po/he.po,  30, 114, 113, 0, 0, 0, 0, 30, 114 

+ po/nl.po,  34, 131, 121, 0, 0, 0, 0, 34, 131 

+ po/gu.gmo,  30, 114, 101, 0, 0, 0, 0, 30, 114 

+ po/fa.po,  30, 114, 123, 0, 0, 0, 0, 30, 114 

+ po/el.gmo,  30, 114, 125, 0, 0, 0, 0, 30, 114 

+ po/ug.po,  30, 114, 109, 0, 0, 0, 0, 30, 114 

+ po/ne.po,  30, 114, 102, 0, 0, 0, 0, 30, 114 

+ po/gl.gmo,  30, 114, 171, 0, 0, 0, 0, 30, 114 

+ po/hr.gmo,  30, 114, 111, 0, 0, 0, 0, 30, 114 

+ po/ja.po,  30, 114, 39, 0, 0, 0, 0, 30, 114 

+ po/mousetweaks.pot,  0, 0, 0, 0, 0, 34, 131, 34, 131 

+ po/eo.gmo,  30, 114, 105, 0, 0, 0, 0, 30, 114 

+ po/bn_IN.gmo,  94, 715, 740, 0, 0, 0, 0, 94, 715 

+ po/be.gmo,  30, 114, 115, 0, 0, 0, 0, 30, 114 

+ po/bs.gmo,  30, 114, 117, 0, 0, 0, 0, 30, 114 

+ po/bn_IN.po,  94, 715, 740, 0, 0, 0, 0, 94, 715 

+ po/ca.gmo,  30, 114, 167, 0, 0, 0, 0, 30, 114 

+ po/eo.po,  30, 114, 105, 0, 0, 0, 0, 30, 114 

+ po/vi.po,  30, 114, 140, 0, 0, 0, 0, 30, 114 

+ po/ko.gmo,  30, 114, 107, 0, 0, 0, 0, 30, 114 

+ po/ca@valencia.gmo,  30, 114, 161, 0, 0, 0, 0, 30, 114 

+ po/ro.po,  30, 114, 129, 0, 0, 0, 0, 30, 114 

+ po/or.gmo,  94, 715, 720, 0, 0, 0, 0, 94, 715 

+ po/mr.gmo,  94, 715, 631, 0, 0, 0, 0, 94, 715 

+ po/gd.gmo,  30, 114, 136, 0, 0, 0, 0, 30, 114 

+ po/ca.po,  30, 114, 167, 0, 0, 0, 0, 30, 114 

+ po/fi.gmo,  23, 73, 59, 0, 0, 0, 0, 23, 73 

+ po/or.po,  94, 715, 720, 0, 0, 0, 0, 94, 715 

+ po/id.gmo,  34, 131, 124, 0, 0, 0, 0, 34, 131 

+ po/mk.gmo,  76, 294, 380, 0, 0, 0, 0, 76, 294 

+ po/is.po,  14, 29, 26, 0, 0, 16, 85, 30, 114 

+ po/uk.gmo,  30, 114, 117, 0, 0, 0, 0, 30, 114 

+ po/pt_BR.gmo,  34, 131, 170, 0, 0, 0, 0, 34, 131 

+ po/sq.gmo,  94, 426, 497, 0, 0, 0, 0, 94, 426 

+ po/en_GB.po,  30, 114, 114, 0, 0, 0, 0, 30, 114 

+ po/eu.gmo,  30, 114, 108, 0, 0, 0, 0, 30, 114 

+ po/hu.po,  34, 131, 121, 0, 0, 0, 0, 34, 131 

+ po/de.gmo,  30, 114, 98, 0, 0, 0, 0, 30, 114 

+ po/zh_CN.gmo,  30, 114, 36, 0, 0, 0, 0, 30, 114 

+ po/lv.po,  30, 114, 104, 0, 0, 0, 0, 30, 114 

+ po/lo.gmo,  30, 114, 48, 0, 0, 0, 0, 30, 114 

+ po/de.po,  30, 114, 98, 0, 0, 0, 0, 30, 114 

+ po/sl.gmo,  30, 114, 110, 0, 0, 0, 0, 30, 114 

+ po/pt.po,  30, 114, 153, 0, 0, 0, 0, 30, 114 

+ po/lt.gmo,  30, 114, 97, 0, 0, 0, 0, 30, 114 

+ po/ta.gmo,  30, 114, 112, 0, 0, 0, 0, 30, 114 

+ po/pt_BR.po,  34, 131, 170, 0, 0, 0, 0, 34, 131 

+ po/bn.po,  97, 730, 752, 0, 0, 0, 0, 97, 730 

+ po/nb.gmo,  30, 114, 99, 0, 0, 0, 0, 30, 114 

+ po/bs.po,  30, 114, 117, 0, 0, 0, 0, 30, 114 

+ po/it.po,  34, 131, 164, 0, 0, 0, 0, 34, 131 

+ po/sr@latin.gmo,  30, 114, 121, 0, 0, 0, 0, 30, 114 

+ po/nb.po,  30, 114, 99, 0, 0, 0, 0, 30, 114 

+ po/ar.gmo,  30, 114, 102, 0, 0, 0, 0, 30, 114 

+ po/ca@valencia.po,  30, 114, 161, 0, 0, 0, 0, 30, 114 

+ po/gd.po,  30, 114, 136, 0, 0, 0, 0, 30, 114 

+ po/hr.po,  30, 114, 111, 0, 0, 0, 0, 30, 114 

+ po/oc.po,  30, 114, 155, 0, 0, 0, 0, 30, 114 

+ po/zh_HK.po,  30, 114, 38, 0, 0, 0, 0, 30, 114 

+ po/sk.gmo,  30, 114, 110, 0, 0, 0, 0, 30, 114 

+ po/kk.gmo,  30, 114, 116, 0, 0, 0, 0, 30, 114 

+ po/sv.po,  34, 131, 101, 0, 0, 0, 0, 34, 131 

+ po/ml.gmo,  30, 114, 92, 0, 0, 0, 0, 30, 114 

+ po/te.po,  30, 114, 111, 0, 0, 0, 0, 30, 114 

+ po/ja.gmo,  30, 114, 39, 0, 0, 0, 0, 30, 114 

+ po/da.po,  34, 131, 108, 0, 0, 0, 0, 34, 131 

+ po/fi.po,  23, 73, 59, 1, 4, 6, 37, 30, 114 

+ po/sk.po,  30, 114, 110, 0, 0, 0, 0, 30, 114 

+ po/en@shaw.po,  83, 630, 630, 14, 100, 0, 0, 97, 730 

+ po/be.po,  30, 114, 115, 0, 0, 0, 0, 30, 114 

+ po/mai.po,  12, 16, 24, 0, 0, 82, 699, 94, 715 

+ po/et.gmo,  30, 114, 98, 0, 0, 0, 0, 30, 114 

+ po/sr.po,  30, 114, 121, 0, 0, 0, 0, 30, 114 

+ po/sr.gmo,  30, 114, 121, 0, 0, 0, 0, 30, 114 

+ po/te.gmo,  30, 114, 111, 0, 0, 0, 0, 30, 114 

+ po/et.po,  30, 114, 98, 0, 0, 0, 0, 30, 114 

+ po/vi.gmo,  30, 114, 140, 0, 0, 0, 0, 30, 114 

+ po/zh_TW.gmo,  30, 114, 38, 0, 0, 0, 0, 30, 114 

+ po/ko.po,  30, 114, 107, 0, 0, 0, 0, 30, 114 

+ po/ro.gmo,  30, 114, 129, 0, 0, 0, 0, 30, 114 

+ po/ht.po,  30, 114, 117, 0, 0, 0, 0, 30, 114 

+ po/lv.gmo,  30, 114, 104, 0, 0, 0, 0, 30, 114 

+ po/fur.po,  30, 114, 151, 0, 0, 0, 0, 30, 114 

+ po/pl.po,  34, 131, 132, 0, 0, 0, 0, 34, 131 

+ po/zh_CN.po,  30, 114, 36, 0, 0, 0, 0, 30, 114 

+ po/en@shaw.gmo,  83, 630, 630, 0, 0, 0, 0, 83, 630 

+ po/sv.gmo,  34, 131, 101, 0, 0, 0, 0, 34, 131 

+ po/nn.gmo,  76, 294, 291, 0, 0, 0, 0, 76, 294 

+ po/kk.po,  30, 114, 116, 0, 0, 0, 0, 30, 114 

+ po/tg.po,  30, 114, 118, 0, 0, 0, 0, 30, 114 

+ po/es.po,  34, 131, 194, 0, 0, 0, 0, 34, 131 

+ po/pt.gmo,  30, 114, 153, 0, 0, 0, 0, 30, 114 

+ po/ug.gmo,  30, 114, 109, 0, 0, 0, 0, 30, 114 

+ po/ne.gmo,  30, 114, 102, 0, 0, 0, 0, 30, 114 

+ po/uk.po,  30, 114, 117, 0, 0, 0, 0, 30, 114 

+ po/ru.po,  30, 114, 109, 0, 0, 0, 0, 30, 114 

+ po/nl.gmo,  34, 131, 121, 0, 0, 0, 0, 34, 131 

+ po/ar.po,  30, 114, 102, 0, 0, 0, 0, 30, 114 

+ po/bg.po,  30, 114, 153, 0, 0, 0, 0, 30, 114 

+ po/zh_TW.po,  30, 114, 38, 0, 0, 0, 0, 30, 114 

+ po/tr.po,  34, 131, 124, 0, 0, 0, 0, 34, 131 

+ po/eu.po,  30, 114, 108, 0, 0, 0, 0, 30, 114 

+ po/zh_HK.gmo,  30, 114, 38, 0, 0, 0, 0, 30, 114 

+ po/pa.gmo,  30, 114, 114, 0, 0, 0, 0, 30, 114 

+ po/as.po,  30, 114, 113, 0, 0, 0, 0, 30, 114 

+ po/en_GB.gmo,  30, 114, 114, 0, 0, 0, 0, 30, 114 

+ po/kn.po,  94, 715, 569, 0, 0, 0, 0, 94, 715 

+ po/it.gmo,  34, 131, 164, 0, 0, 0, 0, 34, 131 

+ po/an.gmo,  30, 114, 167, 0, 0, 0, 0, 30, 114 

+ po/as.gmo,  30, 114, 113, 0, 0, 0, 0, 30, 114 

+ po/lo.po,  30, 114, 48, 0, 0, 0, 0, 30, 114 

+ po/el.po,  30, 114, 125, 0, 0, 0, 0, 30, 114 

+ po/cs.gmo,  34, 131, 131, 0, 0, 0, 0, 34, 131 

+ po/mai.gmo,  12, 16, 24, 0, 0, 0, 0, 12, 16 

+ po/pl.gmo,  34, 131, 132, 0, 0, 0, 0, 34, 131 

+ po/ru.gmo,  30, 114, 109, 0, 0, 0, 0, 30, 114 

+ po/oc.gmo,  30, 114, 155, 0, 0, 0, 0, 30, 114 

+ po/is.gmo,  14, 29, 26, 0, 0, 0, 0, 14, 29 

+ po/pa.po,  30, 114, 114, 0, 0, 0, 0, 30, 114 

+ po/fr.gmo,  30, 114, 150, 0, 0, 0, 0, 30, 114 

+ po/tr.gmo,  34, 131, 124, 0, 0, 0, 0, 34, 131 

+ po/hi.po,  30, 114, 125, 0, 0, 0, 0, 30, 114 

+ po/lt.po,  30, 114, 97, 0, 0, 0, 0, 30, 114 

+ po/kn.gmo,  94, 715, 569, 0, 0, 0, 0, 94, 715 

+ po/hu.gmo,  34, 131, 121, 0, 0, 0, 0, 34, 131 

+ po/es.gmo,  34, 131, 194, 0, 0, 0, 0, 34, 131 

+ po/ast.gmo,  97, 730, 863, 0, 0, 0, 0, 97, 730 

+ po/gu.po,  30, 114, 101, 0, 0, 0, 0, 30, 114 

+ po/bg.gmo,  30, 114, 153, 0, 0, 0, 0, 30, 114 

+ po/th.po,  30, 114, 38, 0, 0, 0, 0, 30, 114 

+ po/an.po,  30, 114, 167, 0, 0, 0, 0, 30, 114 

+ po/nn.po,  76, 294, 291, 0, 0, 0, 0, 76, 294 

+ po/bn.gmo,  97, 730, 752, 0, 0, 0, 0, 97, 730 

+ po/mr.po,  94, 715, 631, 0, 0, 0, 0, 94, 715 

+ po/id.po,  34, 131, 124, 0, 0, 0, 0, 34, 131 

+ po/fr.po,  30, 114, 150, 0, 0, 0, 0, 30, 114 

+ po/ht.gmo,  30, 114, 117, 0, 0, 0, 0, 30, 114 

+ po/ml.po,  30, 114, 92, 0, 0, 0, 0, 30, 114 

+ po/sl.po,  30, 114, 110, 0, 0, 0, 0, 30, 114 

+ po/gl.po,  30, 114, 171, 0, 0, 0, 0, 30, 114 

+ po/ast.po,  97, 730, 863, 0, 0, 0, 0, 97, 730 

+ po/ta.po,  30, 114, 112, 0, 0, 0, 0, 30, 114 

+ po/cs.po,  34, 131, 131, 0, 0, 0, 0, 34, 131 

+ po/fur.gmo,  30, 114, 151, 0, 0, 0, 0, 30, 114 

+ po/mk.po,  76, 294, 380, 0, 0, 0, 0, 76, 294 

+ po/sq.po,  94, 426, 497, 0, 0, 0, 0, 94, 426 

+ po/sr@latin.po,  30, 114, 121, 0, 0, 0, 0, 30, 114 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,118 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  1171, 6674, 4763, 36, 174, 7, 128, 1214, 6976 

+ po/zh_TW.po,  1123, 5621, 1538, 0, 0, 0, 0, 1123, 5621 

+ po/zh_HK.po,  1050, 6243, 1428, 0, 0, 0, 0, 1050, 6243 

+ po/zh_CN.po,  1082, 5566, 1537, 0, 0, 0, 0, 1082, 5566 

+ po/yo.po,  295, 1434, 1797, 513, 2994, 222, 1686, 1030, 6114 

+ po/yi.po,  29, 31, 31, 32, 59, 1153, 6886, 1214, 6976 

+ po/xh.po,  1227, 6945, 5811, 18, 111, 10, 154, 1255, 7210 

+ po/wa.po,  505, 1435, 1779, 182, 813, 574, 4957, 1261, 7205 

+ po/vi.po,  1123, 5609, 7062, 0, 0, 0, 0, 1123, 5609 

+ po/uz@cyrillic.po,  1015, 4687, 3905, 0, 0, 299, 3457, 1314, 8144 

+ po/uz.po,  1015, 4687, 3905, 0, 0, 299, 3457, 1314, 8144 

+ po/uk.po,  1114, 5948, 5502, 0, 0, 0, 0, 1114, 5948 

+ po/ug.po,  1076, 6381, 4988, 0, 0, 0, 0, 1076, 6381 

+ po/tr.po,  1123, 5609, 4448, 0, 0, 0, 0, 1123, 5609 

+ po/tk.po,  994, 5001, 4101, 81, 321, 139, 1654, 1214, 6976 

+ po/th.po,  1095, 5862, 1986, 0, 0, 0, 0, 1095, 5862 

+ po/tg.po,  976, 4685, 4949, 77, 1667, 0, 0, 1053, 6352 

+ po/te.po,  1029, 6107, 4975, 1, 7, 0, 0, 1030, 6114 

+ po/ta.po,  1030, 6114, 5024, 0, 0, 0, 0, 1030, 6114 

+ po/sv.po,  1126, 5625, 5566, 0, 0, 0, 0, 1126, 5625 

+ po/sr@latin.po,  1087, 5622, 6307, 0, 0, 0, 0, 1087, 5622 

+ po/sr@ije.po,  1094, 6241, 5750, 97, 524, 23, 211, 1214, 6976 

+ po/sr.po,  1126, 5625, 6333, 0, 0, 0, 0, 1126, 5625 

+ po/sq.po,  1320, 8379, 9223, 0, 0, 0, 0, 1320, 8379 

+ po/sl.po,  1126, 5625, 6292, 0, 0, 0, 0, 1126, 5625 

+ po/sk.po,  1123, 5609, 5775, 0, 0, 0, 0, 1123, 5609 

+ po/si.po,  298, 887, 976, 347, 1835, 385, 3392, 1030, 6114 

+ po/rw.po,  100, 107, 117, 849, 6436, 306, 669, 1255, 7212 

+ po/ru.po,  1123, 5606, 5574, 0, 0, 0, 0, 1123, 5606 

+ po/ro.po,  1126, 5625, 6541, 0, 0, 0, 0, 1126, 5625 

+ po/pt_BR.po,  1123, 5609, 6241, 0, 0, 0, 0, 1123, 5609 

+ po/pt.po,  1002, 5439, 5737, 66, 282, 40, 172, 1108, 5893 

+ po/ps.po,  512, 1166, 1250, 1, 4, 807, 7209, 1320, 8379 

+ po/pl.po,  1127, 5633, 5676, 0, 0, 0, 0, 1127, 5633 

+ po/pa.po,  1123, 5609, 6385, 0, 0, 0, 0, 1123, 5609 

+ po/or.po,  1030, 6114, 6397, 0, 0, 0, 0, 1030, 6114 

+ po/oc.po,  1087, 5622, 6463, 0, 0, 0, 0, 1087, 5622 

+ po/nso.po,  704, 3641, 4773, 412, 2671, 198, 1832, 1314, 8144 

+ po/nn.po,  1097, 6708, 6383, 10, 71, 4, 36, 1111, 6815 

+ po/nl.po,  1123, 5609, 5908, 0, 0, 0, 0, 1123, 5609 

+ po/ne.po,  765, 2439, 2412, 307, 2333, 54, 853, 1126, 5625 

+ po/nds.po,  813, 2511, 2359, 0, 0, 588, 6170, 1401, 8681 

+ po/nb.po,  1091, 4813, 4810, 19, 649, 12, 158, 1122, 5620 

+ po/my.po,  288, 797, 572, 0, 0, 1161, 8094, 1449, 8891 

+ po/ms.po,  844, 4023, 3681, 244, 1920, 33, 1136, 1121, 7079 

+ po/mr.po,  1030, 6114, 5696, 0, 0, 0, 0, 1030, 6114 

+ po/mn.po,  1174, 6597, 5791, 75, 465, 13, 144, 1262, 7206 

+ po/ml.po,  784, 3484, 2868, 236, 1891, 104, 665, 1124, 6040 

+ po/mk.po,  1121, 7079, 7322, 0, 0, 0, 0, 1121, 7079 

+ po/mjw.po,  347, 855, 888, 0, 0, 775, 4765, 1122, 5620 

+ po/mi.po,  167, 244, 285, 78, 170, 969, 6562, 1214, 6976 

+ po/mg.po,  1048, 6089, 6546, 96, 733, 16, 147, 1160, 6969 

+ po/mai.po,  951, 5078, 5462, 0, 0, 343, 3175, 1294, 8253 

+ po/lv.po,  203, 536, 549, 0, 0, 0, 0, 203, 536 

+ po/lt.po,  1126, 5625, 5100, 0, 0, 0, 0, 1126, 5625 

+ po/ln.po,  996, 5489, 5850, 0, 0, 0, 0, 996, 5489 

+ po/li.po,  743, 3450, 3347, 398, 2903, 120, 852, 1261, 7205 

+ po/ky.po,  391, 999, 879, 74, 407, 590, 4910, 1055, 6316 

+ po/ku.po,  658, 2464, 2638, 232, 1737, 281, 3114, 1171, 7315 

+ po/ko.po,  1126, 5625, 4343, 0, 0, 0, 0, 1126, 5625 

+ po/kn.po,  1030, 6114, 5253, 0, 0, 0, 0, 1030, 6114 

+ po/km.po,  11, 42, 14, 89, 398, 1013, 6331, 1113, 6771 

+ po/kk.po,  1123, 5606, 4680, 0, 0, 0, 0, 1123, 5606 

+ po/ka.po,  1226, 6415, 4739, 8, 35, 88, 1948, 1322, 8398 

+ po/ja.po,  1122, 5603, 1568, 0, 0, 1, 6, 1123, 5609 

+ po/it.po,  1123, 5609, 5938, 0, 0, 0, 0, 1123, 5609 

+ po/is.po,  1126, 5625, 5716, 0, 0, 0, 0, 1126, 5625 

+ po/io.po,  451, 1283, 1212, 14, 44, 766, 6127, 1231, 7454 

+ po/ig.po,  723, 3745, 3973, 386, 2655, 205, 1744, 1314, 8144 

+ po/id.po,  1126, 5625, 5509, 0, 0, 0, 0, 1126, 5625 

+ po/hy.po,  1140, 6554, 5928, 28, 262, 0, 0, 1168, 6816 

+ po/hu.po,  1126, 5625, 5039, 0, 0, 0, 0, 1126, 5625 

+ po/hr.po,  1123, 5609, 5544, 0, 0, 0, 0, 1123, 5609 

+ po/hi.po,  1030, 6114, 7276, 0, 0, 0, 0, 1030, 6114 

+ po/he.po,  1108, 5893, 5862, 0, 0, 0, 0, 1108, 5893 

+ po/ha.po,  723, 3745, 4634, 386, 2655, 205, 1744, 1314, 8144 

+ po/gv.po,  1269, 7500, 9107, 138, 863, 36, 521, 1443, 8884 

+ po/gu.po,  1030, 6114, 6546, 0, 0, 0, 0, 1030, 6114 

+ po/gl.po,  1126, 5625, 6185, 0, 0, 0, 0, 1126, 5625 

+ po/gd.po,  1087, 5620, 8440, 0, 0, 0, 0, 1087, 5620 

+ po/ga.po,  416, 1130, 1618, 168, 785, 311, 3255, 895, 5170 

+ po/fy.po,  484, 946, 932, 0, 0, 959, 7938, 1443, 8884 

+ po/fur.po,  1123, 5609, 6504, 0, 0, 0, 0, 1123, 5609 

+ po/fr.po,  1126, 5625, 6517, 0, 0, 0, 0, 1126, 5625 

+ po/fi.po,  1095, 4786, 4016, 20, 680, 11, 159, 1126, 5625 

+ po/fa.po,  1126, 5625, 6182, 0, 0, 0, 0, 1126, 5625 

+ po/eu.po,  1126, 5625, 4858, 0, 0, 0, 0, 1126, 5625 

+ po/et.po,  1049, 6236, 4871, 1, 7, 0, 0, 1050, 6243 

+ po/es.po,  1126, 5625, 6318, 0, 0, 0, 0, 1126, 5625 

+ po/eo.po,  1121, 5604, 5375, 0, 0, 0, 0, 1121, 5604 

+ po/en_GB.po,  1122, 5620, 5700, 0, 0, 0, 0, 1122, 5620 

+ po/en_CA.po,  1192, 7325, 7330, 0, 0, 0, 0, 1192, 7325 

+ po/en@shaw.po,  1333, 7548, 7548, 105, 1292, 0, 0, 1438, 8840 

+ po/el.po,  1123, 5609, 5792, 0, 0, 0, 0, 1123, 5609 

+ po/dz.po,  1172, 7054, 3098, 3, 10, 1, 2, 1176, 7066 

+ po/de.po,  1123, 5609, 5725, 0, 0, 0, 0, 1123, 5609 

+ po/da.po,  1123, 5609, 5399, 0, 0, 0, 0, 1123, 5609 

+ po/cy.po,  1162, 7004, 7511, 1, 1, 0, 0, 1163, 7005 

+ po/cs.po,  1123, 5609, 5707, 0, 0, 0, 0, 1123, 5609 

+ po/crh.po,  1032, 6170, 4852, 2, 16, 6, 46, 1040, 6232 

+ po/ca@valencia.po,  1114, 5984, 7063, 0, 0, 0, 0, 1114, 5984 

+ po/ca.po,  1126, 5625, 6648, 0, 0, 0, 0, 1126, 5625 

+ po/bs.po,  869, 5118, 5012, 0, 0, 0, 0, 869, 5118 

+ po/br.po,  1417, 8788, 10044, 1, 13, 0, 0, 1418, 8801 

+ po/bo.po,  1031, 6259, 2219, 115, 823, 46, 321, 1192, 7403 

+ po/bn_IN.po,  1030, 6114, 6520, 0, 0, 0, 0, 1030, 6114 

+ po/bn.po,  1121, 7063, 7293, 7, 66, 0, 0, 1128, 7129 

+ po/bg.po,  864, 5223, 5540, 0, 0, 0, 0, 864, 5223 

+ po/be@latin.po,  1287, 7522, 6673, 8, 104, 19, 509, 1314, 8135 

+ po/be.po,  1123, 5606, 5651, 0, 0, 0, 0, 1123, 5606 

+ po/az.po,  1214, 6881, 5493, 40, 193, 8, 132, 1262, 7206 

+ po/ast.po,  1121, 7079, 7278, 0, 0, 0, 0, 1121, 7079 

+ po/as.po,  1030, 6114, 6295, 0, 0, 0, 0, 1030, 6114 

+ po/ar.po,  1029, 4536, 5586, 21, 595, 27, 393, 1077, 5524 

+ po/an.po,  783, 3679, 3986, 0, 0, 85, 1400, 868, 5079 

+ po/am.po,  381, 909, 971, 190, 657, 690, 5639, 1261, 7205 

+ po/af.po,  1050, 4908, 5323, 0, 0, 30, 636, 1080, 5544 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.cvsignore)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

@@ -0,0 +1,87 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/en_CA.po,  39, 173, 171, 0, 0, 0, 0, 39, 173 

+ po/pt_BR.po,  10, 56, 69, 0, 0, 0, 0, 10, 56 

+ po/ja.po,  8, 45, 16, 0, 0, 0, 0, 8, 45 

+ po/af.po,  6, 31, 37, 0, 0, 2, 14, 8, 45 

+ po/da.po,  10, 56, 52, 0, 0, 0, 0, 10, 56 

+ po/nl.po,  8, 45, 41, 0, 0, 0, 0, 8, 45 

+ po/mk.po,  62, 299, 293, 0, 0, 0, 0, 62, 299 

+ po/he.po,  8, 45, 45, 0, 0, 0, 0, 8, 45 

+ po/rw.po,  2, 1, 1, 12, 42, 5, 10, 19, 53 

+ po/sq.po,  20, 55, 58, 0, 0, 0, 0, 20, 55 

+ po/tr.po,  10, 56, 48, 0, 0, 0, 0, 10, 56 

+ po/mr.po,  8, 45, 47, 0, 0, 0, 0, 8, 45 

+ po/zh_CN.po,  10, 56, 15, 0, 0, 0, 0, 10, 56 

+ po/de.po,  10, 56, 53, 0, 0, 0, 0, 10, 56 

+ po/be.po,  10, 56, 58, 0, 0, 0, 0, 10, 56 

+ po/it.po,  10, 56, 67, 0, 0, 0, 0, 10, 56 

+ po/bn_IN.po,  8, 45, 46, 0, 0, 0, 0, 8, 45 

+ po/te.po,  8, 45, 38, 0, 0, 0, 0, 8, 45 

+ po/vi.po,  10, 56, 90, 0, 0, 0, 0, 10, 56 

+ po/cs.po,  10, 56, 59, 0, 0, 0, 0, 10, 56 

+ po/ka.po,  28, 84, 68, 0, 0, 0, 0, 28, 84 

+ po/br.po,  33, 98, 112, 0, 0, 34, 218, 67, 316 

+ po/ast.po,  65, 310, 334, 0, 0, 0, 0, 65, 310 

+ po/kk.po,  10, 56, 50, 0, 0, 0, 0, 10, 56 

+ po/eo.po,  10, 56, 49, 0, 0, 0, 0, 10, 56 

+ po/hr.po,  10, 56, 60, 0, 0, 0, 0, 10, 56 

+ po/bg.po,  8, 45, 59, 0, 0, 0, 0, 8, 45 

+ po/bn.po,  65, 310, 304, 0, 0, 0, 0, 65, 310 

+ po/kg.po,  11, 39, 34, 2, 6, 44, 230, 57, 275 

+ po/ms.po,  50, 217, 189, 0, 0, 0, 0, 50, 217 

+ po/hi.po,  8, 45, 62, 0, 0, 0, 0, 8, 45 

+ po/nds.po,  43, 152, 156, 0, 0, 22, 158, 65, 310 

+ po/oc.po,  10, 56, 77, 0, 0, 0, 0, 10, 56 

+ po/sr.po,  10, 56, 59, 0, 0, 0, 0, 10, 56 

+ po/pt.po,  10, 56, 67, 0, 0, 0, 0, 10, 56 

+ po/bs.po,  8, 45, 47, 0, 0, 0, 0, 8, 45 

+ po/ko.po,  10, 56, 47, 0, 0, 0, 0, 10, 56 

+ po/ro.po,  8, 45, 54, 0, 0, 0, 0, 8, 45 

+ po/is.po,  10, 56, 51, 0, 0, 0, 0, 10, 56 

+ po/pl.po,  10, 56, 61, 0, 0, 0, 0, 10, 56 

+ po/ne.po,  8, 45, 42, 0, 0, 0, 0, 8, 45 

+ po/km.po,  59, 274, 130, 0, 0, 0, 0, 59, 274 

+ po/th.po,  8, 45, 17, 0, 0, 0, 0, 8, 45 

+ po/ga.po,  8, 45, 56, 0, 0, 0, 0, 8, 45 

+ po/be@latin.po,  60, 289, 251, 0, 0, 0, 0, 60, 289 

+ po/ta.po,  8, 45, 40, 0, 0, 0, 0, 8, 45 

+ po/zh_TW.po,  10, 56, 18, 0, 0, 0, 0, 10, 56 

+ po/lv.po,  10, 56, 50, 0, 0, 0, 0, 10, 56 

+ po/sk.po,  10, 56, 63, 0, 0, 0, 0, 10, 56 

+ po/or.po,  8, 45, 46, 0, 0, 0, 0, 8, 45 

+ po/eu.po,  10, 56, 55, 0, 0, 0, 0, 10, 56 

+ po/ar.po,  6, 31, 33, 0, 0, 2, 14, 8, 45 

+ po/tg.po,  8, 45, 52, 0, 0, 0, 0, 8, 45 

+ po/fur.po,  10, 56, 70, 0, 0, 0, 0, 10, 56 

+ po/lt.po,  10, 56, 49, 0, 0, 0, 0, 10, 56 

+ po/fi.po,  8, 42, 29, 0, 0, 2, 14, 10, 56 

+ po/ca.po,  10, 56, 80, 0, 0, 0, 0, 10, 56 

+ po/en_GB.po,  8, 45, 45, 0, 0, 0, 0, 8, 45 

+ po/fa.po,  8, 45, 59, 0, 0, 0, 0, 8, 45 

+ po/ca@valencia.po,  8, 45, 66, 0, 0, 0, 0, 8, 45 

+ po/id.po,  10, 56, 58, 0, 0, 0, 0, 10, 56 

+ po/kn.po,  8, 45, 38, 0, 0, 0, 0, 8, 45 

+ po/en@shaw.po,  64, 308, 305, 0, 0, 0, 0, 64, 308 

+ po/ml.po,  8, 45, 33, 0, 0, 0, 0, 8, 45 

+ po/sr@latin.po,  10, 56, 59, 0, 0, 0, 0, 10, 56 

+ po/gd.po,  10, 56, 75, 0, 0, 0, 0, 10, 56 

+ po/el.po,  10, 56, 61, 0, 0, 0, 0, 10, 56 

+ po/zh_HK.po,  8, 45, 12, 0, 0, 0, 0, 8, 45 

+ po/sv.po,  10, 56, 46, 0, 0, 0, 0, 10, 56 

+ po/uk.po,  8, 45, 48, 0, 0, 0, 0, 8, 45 

+ po/et.po,  8, 45, 37, 0, 0, 0, 0, 8, 45 

+ po/nb.po,  10, 56, 45, 0, 0, 0, 0, 10, 56 

+ po/an.po,  8, 45, 62, 0, 0, 0, 0, 8, 45 

+ po/gu.po,  8, 45, 50, 0, 0, 0, 0, 8, 45 

+ po/ln.po,  8, 45, 56, 0, 0, 0, 0, 8, 45 

+ po/es.po,  10, 56, 76, 0, 0, 0, 0, 10, 56 

+ po/pa.po,  8, 45, 54, 0, 0, 0, 0, 8, 45 

+ po/as.po,  8, 45, 49, 0, 0, 0, 0, 8, 45 

+ po/gl.po,  10, 56, 77, 0, 0, 0, 0, 10, 56 

+ po/ug.po,  7, 38, 32, 0, 0, 0, 0, 7, 38 

+ po/nn.po,  64, 308, 275, 0, 0, 0, 0, 64, 308 

+ po/fr.po,  10, 56, 73, 0, 0, 0, 0, 10, 56 

+ po/hu.po,  10, 56, 47, 0, 0, 0, 0, 10, 56 

+ po/sl.po,  10, 56, 64, 0, 0, 0, 0, 10, 56 

+ po/dz.po,  39, 173, 56, 0, 0, 0, 0, 39, 173 

+ po/ru.po,  10, 56, 61, 0, 0, 0, 0, 10, 56 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf8 in position 10: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf6 in position 40: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xa5 in position 0: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf0 in position 16: invalid continuation byte

@@ -0,0 +1,16 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/neon.pot,  0, 0, 0, 0, 0, 136, 694, 136, 694 

+ po/tr.po,  14, 76, 57, 47, 255, 75, 363, 136, 694 

+ po/cs.po,  14, 76, 70, 51, 274, 71, 344, 136, 694 

+ po/ru.po,  0, 0, 0, 32, 172, 104, 522, 136, 694 

+ po/fr.po,  0, 0, 0, 44, 249, 92, 445, 136, 694 

+ po/de.po,  14, 76, 82, 51, 274, 71, 344, 136, 694 

+ po/ja.po,  6, 32, 11, 46, 251, 84, 411, 136, 694 

+ po/pl.po,  131, 662, 676, 2, 14, 3, 18, 136, 694 

+ po/nn.po,  14, 76, 72, 61, 317, 61, 301, 136, 694 

+ po/zh_CN.po,  92, 476, 159, 20, 105, 24, 113, 136, 694 

+ po/fr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nn.gmo,  14, 76, 72, 0, 0, 0, 0, 14, 76 

+ po/pl.gmo,  131, 662, 676, 0, 0, 0, 0, 131, 662 

+ po/ru.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_CN.gmo,  92, 476, 159, 0, 0, 0, 0, 92, 476 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.cvsignore)

@@ -0,0 +1,7 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/pt_BR.po,  500, 2225, 2477, 0, 0, 0, 0, 500, 2225 

+ po/net-tools.pot,  0, 0, 0, 0, 0, 590, 2812, 590, 2812 

+ po/fr.po,  433, 1859, 2044, 19, 88, 48, 278, 500, 2225 

+ po/et_EE.po,  532, 2439, 2388, 0, 0, 2, 10, 534, 2449 

+ po/de.po,  486, 2168, 2038, 8, 31, 6, 26, 500, 2225 

+ po/cs.po,  608, 2928, 3121, 0, 0, 0, 0, 608, 2928 

@@ -0,0 +1,15 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.1 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

@@ -0,0 +1,163 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/sv.po,  980, 4804, 4326, 10, 34, 6, 18, 996, 4856 

+ po/id.po,  979, 4793, 4652, 10, 34, 7, 29, 996, 4856 

+ po/af.gmo,  147, 422, 359, 0, 0, 0, 0, 147, 422 

+ po/et.gmo,  427, 1636, 1378, 0, 0, 0, 0, 427, 1636 

+ po/dz.gmo,  33, 71, 41, 0, 0, 0, 0, 33, 71 

+ po/kn.po,  290, 990, 945, 373, 1775, 333, 2091, 996, 4856 

+ po/be@latin.gmo,  126, 351, 361, 0, 0, 0, 0, 126, 351 

+ po/hi.po,  424, 1612, 1915, 289, 1397, 283, 1847, 996, 4856 

+ po/sr@latin.gmo,  839, 4414, 4385, 0, 0, 0, 0, 839, 4414 

+ po/rw.po,  0, 0, 0, 111, 428, 885, 4428, 996, 4856 

+ po/he.gmo,  436, 1656, 1721, 0, 0, 0, 0, 436, 1656 

+ po/be@latin.po,  126, 351, 361, 365, 1426, 505, 3079, 996, 4856 

+ po/ja.po,  829, 4404, 1743, 155, 330, 12, 122, 996, 4856 

+ po/sq.po,  1, 2, 3, 86, 279, 909, 4575, 996, 4856 

+ po/wa.gmo,  1, 2, 2, 0, 0, 0, 0, 1, 2 

+ po/network-manager-applet.pot,  0, 0, 0, 0, 0, 996, 4856, 996, 4856 

+ po/gu.gmo,  435, 1493, 1696, 0, 0, 0, 0, 435, 1493 

+ po/nn.po,  326, 1123, 1089, 318, 1669, 352, 2064, 996, 4856 

+ po/kk.po,  744, 2631, 2440, 11, 36, 241, 2189, 996, 4856 

+ po/sr.gmo,  839, 4414, 4385, 0, 0, 0, 0, 839, 4414 

+ po/an.gmo,  274, 848, 1026, 0, 0, 0, 0, 274, 848 

+ po/ug.po,  418, 1566, 1490, 290, 1401, 288, 1889, 996, 4856 

+ po/or.gmo,  290, 990, 1096, 0, 0, 0, 0, 290, 990 

+ po/ne.po,  33, 71, 78, 258, 933, 705, 3852, 996, 4856 

+ po/ku.gmo,  120, 251, 269, 0, 0, 0, 0, 120, 251 

+ po/hr.gmo,  991, 4844, 4615, 0, 0, 0, 0, 991, 4844 

+ po/ml.gmo,  430, 1645, 1430, 0, 0, 0, 0, 430, 1645 

+ po/tg.gmo,  271, 626, 679, 0, 0, 0, 0, 271, 626 

+ po/km.gmo,  464, 1799, 839, 0, 0, 0, 0, 464, 1799 

+ po/be.gmo,  420, 1603, 1482, 0, 0, 0, 0, 420, 1603 

+ po/nn.gmo,  326, 1123, 1089, 0, 0, 0, 0, 326, 1123 

+ po/pt.po,  542, 2123, 2413, 279, 1386, 175, 1347, 996, 4856 

+ po/lt.po,  986, 4834, 4325, 6, 12, 4, 10, 996, 4856 

+ po/bs.gmo,  466, 1811, 1826, 0, 0, 0, 0, 466, 1811 

+ po/eo.po,  442, 1594, 1552, 220, 1211, 334, 2051, 996, 4856 

+ po/ms.po,  304, 1033, 1017, 330, 1728, 362, 2095, 996, 4856 

+ po/gu.po,  435, 1493, 1696, 289, 1476, 272, 1887, 996, 4856 

+ po/cs.po,  993, 4851, 4654, 1, 3, 2, 2, 996, 4856 

+ po/it.gmo,  993, 4846, 5200, 0, 0, 0, 0, 993, 4846 

+ po/ml.po,  430, 1645, 1430, 283, 1380, 283, 1831, 996, 4856 

+ po/ne.gmo,  33, 71, 78, 0, 0, 0, 0, 33, 71 

+ po/ru.gmo,  965, 4676, 4240, 0, 0, 0, 0, 965, 4676 

+ po/ta.po,  347, 1175, 1084, 330, 1686, 319, 1995, 996, 4856 

+ po/en_GB.gmo,  423, 1607, 1613, 0, 0, 0, 0, 423, 1607 

+ po/sk.gmo,  799, 3215, 3279, 0, 0, 0, 0, 799, 3215 

+ po/ru.po,  965, 4676, 4240, 10, 34, 21, 146, 996, 4856 

+ po/ko.gmo,  686, 3342, 2807, 0, 0, 0, 0, 686, 3342 

+ po/fi.gmo,  490, 1716, 1329, 0, 0, 0, 0, 490, 1716 

+ po/bs.po,  466, 1811, 1826, 284, 1391, 246, 1654, 996, 4856 

+ po/pa.gmo,  751, 3308, 3697, 0, 0, 0, 0, 751, 3308 

+ po/km.po,  464, 1799, 839, 286, 1400, 246, 1657, 996, 4856 

+ po/mr.po,  329, 1098, 1166, 337, 1733, 330, 2025, 996, 4856 

+ po/ast.gmo,  297, 1018, 1197, 0, 0, 0, 0, 297, 1018 

+ po/pl.gmo,  996, 4856, 4542, 0, 0, 0, 0, 996, 4856 

+ po/hu.gmo,  993, 4846, 4460, 0, 0, 0, 0, 993, 4846 

+ po/te.gmo,  365, 1300, 1190, 0, 0, 0, 0, 365, 1300 

+ po/pt_BR.gmo,  993, 4846, 5597, 0, 0, 0, 0, 993, 4846 

+ po/es.gmo,  993, 4851, 5852, 0, 0, 0, 0, 993, 4851 

+ po/lt.gmo,  986, 4834, 4325, 0, 0, 0, 0, 986, 4834 

+ po/ca@valencia.gmo,  464, 1805, 2361, 0, 0, 0, 0, 464, 1805 

+ po/vi.gmo,  469, 1815, 2313, 0, 0, 0, 0, 469, 1815 

+ po/et.po,  427, 1636, 1378, 284, 1383, 285, 1837, 996, 4856 

+ po/uk.gmo,  325, 1111, 1093, 0, 0, 0, 0, 325, 1111 

+ po/ku.po,  120, 251, 269, 240, 869, 636, 3736, 996, 4856 

+ po/sr@latin.po,  839, 4414, 4385, 146, 322, 11, 120, 996, 4856 

+ po/zh_CN.po,  829, 4404, 1542, 127, 271, 40, 181, 996, 4856 

+ po/af.po,  147, 422, 359, 228, 991, 621, 3443, 996, 4856 

+ po/bg.po,  465, 1806, 2114, 284, 1395, 247, 1655, 996, 4856 

+ po/an.po,  274, 848, 1026, 366, 1928, 356, 2080, 996, 4856 

+ po/da.gmo,  993, 4846, 4346, 0, 0, 0, 0, 993, 4846 

+ po/oc.gmo,  501, 1889, 2276, 0, 0, 0, 0, 501, 1889 

+ po/zh_TW.po,  684, 3336, 1084, 271, 1338, 41, 182, 996, 4856 

+ po/fr.gmo,  986, 4834, 5715, 0, 0, 0, 0, 986, 4834 

+ po/sk.po,  799, 3215, 3279, 96, 616, 101, 1025, 996, 4856 

+ po/gd.po,  680, 3087, 4134, 150, 428, 166, 1341, 996, 4856 

+ po/vi.po,  469, 1815, 2313, 286, 1398, 241, 1643, 996, 4856 

+ po/de.gmo,  978, 4790, 4490, 0, 0, 0, 0, 978, 4790 

+ po/oc.po,  501, 1889, 2276, 257, 1252, 238, 1715, 996, 4856 

+ po/gd.gmo,  680, 3087, 4134, 0, 0, 0, 0, 680, 3087 

+ po/nl.po,  993, 4846, 4753, 2, 4, 1, 6, 996, 4856 

+ po/ja.gmo,  829, 4404, 1743, 0, 0, 0, 0, 829, 4404 

+ po/ca@valencia.po,  464, 1805, 2361, 285, 1396, 247, 1655, 996, 4856 

+ po/fi.po,  490, 1716, 1329, 276, 1410, 230, 1730, 996, 4856 

+ po/crh.gmo,  400, 1495, 1434, 0, 0, 0, 0, 400, 1495 

+ po/kk.gmo,  744, 2631, 2440, 0, 0, 0, 0, 744, 2631 

+ po/sv.gmo,  980, 4804, 4326, 0, 0, 0, 0, 980, 4804 

+ po/sl.po,  469, 1817, 1818, 282, 1387, 245, 1652, 996, 4856 

+ po/mk.gmo,  305, 1034, 1228, 0, 0, 0, 0, 305, 1034 

+ po/el.gmo,  468, 1809, 1981, 0, 0, 0, 0, 468, 1809 

+ po/el.po,  468, 1809, 1981, 291, 1410, 237, 1637, 996, 4856 

+ po/ast.po,  297, 1018, 1197, 333, 1725, 366, 2113, 996, 4856 

+ po/eu.po,  468, 1814, 1695, 287, 1398, 241, 1644, 996, 4856 

+ po/tr.po,  995, 4853, 4313, 1, 3, 0, 0, 996, 4856 

+ po/ta.gmo,  347, 1175, 1084, 0, 0, 0, 0, 347, 1175 

+ po/tr.gmo,  995, 4853, 4313, 0, 0, 0, 0, 995, 4853 

+ po/ko.po,  686, 3342, 2807, 269, 1332, 41, 182, 996, 4856 

+ po/gl.gmo,  819, 4198, 5009, 0, 0, 0, 0, 819, 4198 

+ po/rw.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fr.po,  986, 4834, 5715, 6, 12, 4, 10, 996, 4856 

+ po/nb.gmo,  456, 1745, 1675, 0, 0, 0, 0, 456, 1745 

+ po/hr.po,  991, 4844, 4615, 4, 6, 1, 6, 996, 4856 

+ po/eo.gmo,  442, 1594, 1552, 0, 0, 0, 0, 442, 1594 

+ po/th.gmo,  336, 1213, 607, 0, 0, 0, 0, 336, 1213 

+ po/pl.po,  996, 4856, 4542, 0, 0, 0, 0, 996, 4856 

+ po/cs.gmo,  993, 4851, 4654, 0, 0, 0, 0, 993, 4851 

+ po/sr.po,  839, 4414, 4385, 146, 322, 11, 120, 996, 4856 

+ po/eu.gmo,  468, 1814, 1695, 0, 0, 0, 0, 468, 1814 

+ po/pa.po,  751, 3308, 3697, 140, 309, 105, 1239, 996, 4856 

+ po/zh_CN.gmo,  829, 4404, 1542, 0, 0, 0, 0, 829, 4404 

+ po/lv.po,  957, 4642, 4219, 29, 95, 10, 119, 996, 4856 

+ po/ro.po,  386, 1426, 1638, 296, 1521, 314, 1909, 996, 4856 

+ po/bg.gmo,  465, 1806, 2114, 0, 0, 0, 0, 465, 1806 

+ po/gl.po,  819, 4198, 5009, 148, 336, 29, 322, 996, 4856 

+ po/wa.po,  1, 2, 2, 92, 302, 903, 4552, 996, 4856 

+ po/ar.gmo,  256, 831, 865, 0, 0, 0, 0, 256, 831 

+ po/ca.po,  986, 4834, 6052, 6, 12, 4, 10, 996, 4856 

+ po/as.gmo,  466, 1807, 1931, 0, 0, 0, 0, 466, 1807 

+ po/zh_HK.gmo,  470, 1811, 823, 0, 0, 0, 0, 470, 1811 

+ po/mr.gmo,  329, 1098, 1166, 0, 0, 0, 0, 329, 1098 

+ po/lv.gmo,  957, 4642, 4219, 0, 0, 0, 0, 957, 4642 

+ po/ug.gmo,  418, 1566, 1490, 0, 0, 0, 0, 418, 1566 

+ po/pt_BR.po,  993, 4846, 5597, 2, 4, 1, 6, 996, 4856 

+ po/it.po,  993, 4846, 5200, 2, 4, 1, 6, 996, 4856 

+ po/he.po,  436, 1656, 1721, 285, 1383, 275, 1817, 996, 4856 

+ po/de.po,  978, 4790, 4490, 10, 34, 8, 32, 996, 4856 

+ po/ur.gmo,  215, 750, 1033, 0, 0, 0, 0, 215, 750 

+ po/be.po,  420, 1603, 1482, 285, 1392, 291, 1861, 996, 4856 

+ po/tg.po,  271, 626, 679, 452, 2476, 273, 1754, 996, 4856 

+ po/or.po,  290, 990, 1096, 373, 1775, 333, 2091, 996, 4856 

+ po/te.po,  365, 1300, 1190, 315, 1611, 316, 1945, 996, 4856 

+ po/fa.po,  335, 1212, 1496, 314, 1623, 347, 2021, 996, 4856 

+ po/ca.gmo,  986, 4834, 6052, 0, 0, 0, 0, 986, 4834 

+ po/is.po,  802, 3135, 3085, 49, 222, 145, 1499, 996, 4856 

+ po/kn.gmo,  290, 990, 945, 0, 0, 0, 0, 290, 990 

+ po/zh_TW.gmo,  684, 3336, 1084, 0, 0, 0, 0, 684, 3336 

+ po/nl.gmo,  993, 4846, 4753, 0, 0, 0, 0, 993, 4846 

+ po/bn_IN.po,  290, 990, 1146, 373, 1775, 333, 2091, 996, 4856 

+ po/pt.gmo,  542, 2123, 2413, 0, 0, 0, 0, 542, 2123 

+ po/nb.po,  456, 1745, 1675, 287, 1398, 253, 1713, 996, 4856 

+ po/ar.po,  256, 831, 865, 320, 1542, 420, 2483, 996, 4856 

+ po/is.gmo,  802, 3135, 3085, 0, 0, 0, 0, 802, 3135 

+ po/uk.po,  325, 1111, 1093, 320, 1671, 351, 2074, 996, 4856 

+ po/en_CA.po,  24, 53, 56, 230, 835, 742, 3968, 996, 4856 

+ po/ur.po,  215, 750, 1033, 356, 1665, 425, 2441, 996, 4856 

+ po/zh_HK.po,  470, 1811, 823, 285, 1401, 241, 1644, 996, 4856 

+ po/id.gmo,  979, 4793, 4652, 0, 0, 0, 0, 979, 4793 

+ po/hu.po,  993, 4846, 4460, 2, 4, 1, 6, 996, 4856 

+ po/es.po,  993, 4851, 5852, 1, 3, 2, 2, 996, 4856 

+ po/mk.po,  305, 1034, 1228, 332, 1735, 359, 2087, 996, 4856 

+ po/ms.gmo,  304, 1033, 1017, 0, 0, 0, 0, 304, 1033 

+ po/th.po,  336, 1213, 607, 315, 1633, 345, 2010, 996, 4856 

+ po/da.po,  993, 4846, 4346, 2, 4, 1, 6, 996, 4856 

+ po/crh.po,  400, 1495, 1434, 274, 1369, 322, 1992, 996, 4856 

+ po/en_GB.po,  423, 1607, 1613, 294, 1411, 279, 1838, 996, 4856 

+ po/ro.gmo,  386, 1426, 1638, 0, 0, 0, 0, 386, 1426 

+ po/bn_IN.gmo,  290, 990, 1146, 0, 0, 0, 0, 290, 990 

+ po/hi.gmo,  424, 1612, 1915, 0, 0, 0, 0, 424, 1612 

+ po/as.po,  466, 1807, 1931, 291, 1409, 239, 1640, 996, 4856 

+ po/sq.gmo,  1, 2, 3, 0, 0, 0, 0, 1, 2 

+ po/en_CA.gmo,  24, 53, 56, 0, 0, 0, 0, 24, 53 

+ po/sl.gmo,  469, 1817, 1818, 0, 0, 0, 0, 469, 1817 

+ po/dz.po,  33, 71, 41, 258, 933, 705, 3852, 996, 4856 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./zenmap/share/zenmap/locale/xgettext-profile_editor.py)

+ translate.tools.pocount: ERROR: Unknown filetype (./zenmap/share/zenmap/locale/Makefile)

@@ -0,0 +1,24 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ zenmap/share/zenmap/locale/es.po,  481, 3518, 3880, 0, 0, 0, 0, 481, 3518 

+ zenmap/share/zenmap/locale/ja/LC_MESSAGES/zenmap.mo,  474, 3393, 1203, 0, 0, 0, 0, 474, 3393 

+ zenmap/share/zenmap/locale/ru/LC_MESSAGES/zenmap.mo,  365, 1860, 1602, 0, 0, 0, 0, 365, 1860 

+ zenmap/share/zenmap/locale/pl.po,  480, 3521, 3249, 0, 0, 1, 1, 481, 3522 

+ zenmap/share/zenmap/locale/zh.po,  481, 3523, 642, 0, 0, 0, 0, 481, 3523 

+ zenmap/share/zenmap/locale/pt_BR.po,  85, 165, 194, 0, 0, 396, 3353, 481, 3518 

+ zenmap/share/zenmap/locale/it/LC_MESSAGES/zenmap.mo,  481, 3518, 3743, 0, 0, 0, 0, 481, 3518 

+ zenmap/share/zenmap/locale/de/LC_MESSAGES/zenmap.mo,  481, 3518, 3425, 0, 0, 0, 0, 481, 3518 

+ zenmap/share/zenmap/locale/pl/LC_MESSAGES/zenmap.mo,  480, 3521, 3249, 0, 0, 0, 0, 480, 3521 

+ zenmap/share/zenmap/locale/hr/LC_MESSAGES/zenmap.mo,  269, 1053, 1006, 0, 0, 0, 0, 269, 1053 

+ zenmap/share/zenmap/locale/ja.po,  474, 3393, 1203, 0, 0, 7, 125, 481, 3518 

+ zenmap/share/zenmap/locale/fr/LC_MESSAGES/zenmap.mo,  481, 3518, 4019, 0, 0, 0, 0, 481, 3518 

+ zenmap/share/zenmap/locale/hi.po,  481, 3518, 3386, 0, 0, 0, 0, 481, 3518 

+ zenmap/share/zenmap/locale/hr.po,  269, 1053, 1006, 0, 0, 212, 2465, 481, 3518 

+ zenmap/share/zenmap/locale/zenmap.pot,  0, 0, 0, 0, 0, 503, 3613, 503, 3613 

+ zenmap/share/zenmap/locale/ru.po,  365, 1860, 1602, 0, 0, 116, 1658, 481, 3518 

+ zenmap/share/zenmap/locale/zh/LC_MESSAGES/zenmap.mo,  481, 3523, 642, 0, 0, 0, 0, 481, 3523 

+ zenmap/share/zenmap/locale/es/LC_MESSAGES/zenmap.mo,  481, 3518, 3880, 0, 0, 0, 0, 481, 3518 

+ zenmap/share/zenmap/locale/it.po,  481, 3518, 3743, 0, 0, 0, 0, 481, 3518 

+ zenmap/share/zenmap/locale/hi/LC_MESSAGES/zenmap.mo,  481, 3518, 3386, 0, 0, 0, 0, 481, 3518 

+ zenmap/share/zenmap/locale/pt_BR/LC_MESSAGES/zenmap.mo,  85, 165, 194, 0, 0, 0, 0, 85, 165 

+ zenmap/share/zenmap/locale/fr.po,  481, 3518, 4002, 0, 0, 0, 0, 481, 3518 

+ zenmap/share/zenmap/locale/de.po,  481, 3518, 3425, 0, 0, 0, 0, 481, 3518 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,35 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/fi.po,  94, 321, 281, 0, 0, 936, 5610, 1030, 5931 

+ po/pa.po,  77, 268, 313, 0, 0, 953, 5663, 1030, 5931 

+ po/en_US.po,  265, 1463, 1463, 0, 0, 765, 4468, 1030, 5931 

+ po/sk.po,  4, 19, 19, 0, 0, 1026, 5912, 1030, 5931 

+ po/tg.po,  6, 10, 10, 0, 0, 1024, 5921, 1030, 5931 

+ po/ug.po,  400, 2198, 2053, 0, 0, 630, 3733, 1030, 5931 

+ po/eu.po,  495, 2734, 2857, 0, 0, 535, 3197, 1030, 5931 

+ po/tr.po,  659, 3760, 3594, 0, 0, 371, 2171, 1030, 5931 

+ po/sr@latin.po,  885, 5132, 5671, 0, 0, 145, 799, 1030, 5931 

+ po/hu.po,  970, 5495, 5896, 0, 0, 126, 742, 1096, 6237 

+ po/da.po,  1026, 5906, 5598, 0, 0, 4, 25, 1030, 5931 

+ po/sv.po,  885, 5132, 4880, 0, 0, 145, 799, 1030, 5931 

+ po/gl.po,  91, 479, 650, 0, 0, 939, 5452, 1030, 5931 

+ po/bs.po,  784, 4484, 4524, 0, 0, 246, 1447, 1030, 5931 

+ po/pt.po,  809, 4647, 5339, 0, 0, 221, 1284, 1030, 5931 

+ po/en_GB.po,  417, 2300, 2300, 0, 0, 613, 3631, 1030, 5931 

+ po/fr.po,  22, 63, 72, 0, 0, 1008, 5868, 1030, 5931 

+ po/pl.po,  1095, 6232, 6850, 0, 0, 0, 0, 1095, 6232 

+ po/lt.po,  1015, 5842, 5473, 0, 0, 15, 89, 1030, 5931 

+ po/de.po,  959, 5549, 5529, 0, 0, 71, 382, 1030, 5931 

+ po/el.po,  483, 2667, 2906, 0, 0, 547, 3264, 1030, 5931 

+ po/sr.po,  885, 5132, 5671, 0, 0, 145, 799, 1030, 5931 

+ po/es.po,  1095, 6232, 7907, 0, 0, 1, 5, 1096, 6237 

+ po/it.po,  47, 171, 208, 0, 0, 983, 5760, 1030, 5931 

+ po/ar.po,  10, 48, 51, 0, 0, 1020, 5883, 1030, 5931 

+ po/cs.po,  1013, 5818, 6010, 0, 0, 83, 419, 1096, 6237 

+ po/nl.po,  1025, 5900, 5591, 0, 0, 5, 31, 1030, 5931 

+ po/sl.po,  454, 2505, 2850, 0, 0, 576, 3426, 1030, 5931 

+ po/pt_BR.po,  1095, 6232, 7282, 0, 0, 1, 5, 1096, 6237 

+ po/uk.po,  61, 233, 263, 0, 0, 969, 5698, 1030, 5931 

+ po/zh_TW.po,  7, 32, 10, 0, 0, 1023, 5899, 1030, 5931 

+ po/zh_CN.po,  76, 314, 170, 0, 0, 954, 5617, 1030, 5931 

+ po/ca.po,  1026, 5906, 7700, 0, 0, 4, 25, 1030, 5931 

+ po/id.po,  892, 5176, 5238, 0, 0, 138, 755, 1030, 5931 

@@ -0,0 +1,651 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/bg.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/el.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/es.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/fr.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/hu.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/gl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/orca-logo.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/de.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/pt_BR.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/sv.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/cs.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_key_echo.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_pronunciation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_keyboard_layout.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_where_am_i.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_orca_find.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_spellcheck.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_tables.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/sl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_structural_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_chat.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_time_date_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_controlling_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_table.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_introduction.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_bookmarks.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_debugging.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_table_navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_general.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_speech.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_voice.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_notifications.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_text_attributes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_mouse_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_profiles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_mouse.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_documents.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_learn_modes.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_speech_settings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_toggling_caps_lock.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_setting_up_orca.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_key_bindings.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_live_regions.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_reading.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_braille.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/commands_flat_review.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_whereami.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/howto_the_orca_modifier.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/preferences_gecko.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,168 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/bg/bg.po,  1002, 13021, 13505, 0, 0, 0, 0, 1002, 13021 

+ help/el/el.po,  984, 12505, 12718, 0, 0, 0, 0, 984, 12505 

+ help/es/es.po,  1030, 13501, 14919, 3, 157, 0, 0, 1033, 13658 

+ help/fr/fr.po,  1028, 13554, 15596, 0, 0, 0, 0, 1028, 13554 

+ help/hu/hu.po,  1033, 13658, 13383, 0, 0, 0, 0, 1033, 13658 

+ help/gl/gl.po,  313, 1704, 1907, 4, 31, 667, 10696, 984, 12431 

+ help/de/de.po,  1033, 13658, 12393, 0, 0, 0, 0, 1033, 13658 

+ help/pt_BR/pt_BR.po,  956, 11916, 13573, 0, 0, 0, 0, 956, 11916 

+ help/sv/sv.po,  1033, 13658, 12824, 0, 0, 0, 0, 1033, 13658 

+ help/cs/cs.po,  1033, 13658, 12911, 0, 0, 0, 0, 1033, 13658 

+ help/sl/sl.po,  955, 11824, 10493, 8, 134, 9, 300, 972, 12258 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/nl.po,  1869, 5679, 5590, 0, 0, 0, 0, 1869, 5679 

+ po/rw.gmo,  5, 5, 6, 0, 0, 0, 0, 5, 5 

+ po/en_CA.gmo,  327, 708, 705, 0, 0, 0, 0, 327, 708 

+ po/sq.po,  218, 485, 571, 487, 1623, 233, 390, 938, 2498 

+ po/he.gmo,  644, 2053, 2031, 0, 0, 0, 0, 644, 2053 

+ po/tr.po,  1870, 5681, 5275, 0, 0, 0, 0, 1870, 5681 

+ po/pl.gmo,  1870, 5681, 5947, 0, 0, 0, 0, 1870, 5681 

+ po/ne.po,  1597, 4653, 4519, 234, 854, 39, 174, 1870, 5681 

+ po/hu.po,  1870, 5681, 5509, 0, 0, 0, 0, 1870, 5681 

+ po/ug.gmo,  1201, 3897, 3448, 0, 0, 0, 0, 1201, 3897 

+ po/zh_TW.gmo,  1440, 4397, 1953, 0, 0, 0, 0, 1440, 4397 

+ po/lv.gmo,  1850, 5617, 5477, 0, 0, 0, 0, 1850, 5617 

+ po/sk.po,  1774, 5518, 5543, 0, 0, 83, 92, 1857, 5610 

+ po/sq.gmo,  218, 485, 571, 0, 0, 0, 0, 218, 485 

+ po/tg.gmo,  812, 1893, 1992, 0, 0, 0, 0, 812, 1893 

+ po/an.po,  1356, 4172, 4835, 0, 0, 0, 0, 1356, 4172 

+ po/si.gmo,  118, 143, 175, 0, 0, 0, 0, 118, 143 

+ po/mai.po,  599, 1448, 1626, 0, 0, 664, 2233, 1263, 3681 

+ po/th.gmo,  1260, 3694, 1794, 0, 0, 0, 0, 1260, 3694 

+ po/fi.po,  1191, 3664, 3085, 330, 947, 349, 1070, 1870, 5681 

+ po/eo.gmo,  488, 906, 896, 0, 0, 0, 0, 488, 906 

+ po/es.gmo,  1870, 5681, 6647, 0, 0, 0, 0, 1870, 5681 

+ po/bg.gmo,  1725, 5323, 5828, 0, 0, 0, 0, 1725, 5323 

+ po/ru.gmo,  1870, 5681, 5854, 0, 0, 0, 0, 1870, 5681 

+ po/bs.gmo,  1626, 5057, 4828, 0, 0, 0, 0, 1626, 5057 

+ po/mk.gmo,  1337, 4309, 4907, 0, 0, 0, 0, 1337, 4309 

+ po/zh_TW.po,  1440, 4397, 1953, 298, 896, 41, 174, 1779, 5467 

+ po/ja.po,  1021, 3273, 2415, 98, 492, 49, 311, 1168, 4076 

+ po/eo.po,  488, 906, 896, 105, 212, 1247, 4433, 1840, 5551 

+ po/hr.gmo,  1357, 4096, 4194, 0, 0, 0, 0, 1357, 4096 

+ po/ta.gmo,  1201, 3897, 3642, 0, 0, 0, 0, 1201, 3897 

+ po/eu.gmo,  1659, 4874, 4584, 0, 0, 0, 0, 1659, 4874 

+ po/ne.gmo,  1597, 4653, 4519, 0, 0, 0, 0, 1597, 4653 

+ po/ja.gmo,  1021, 3273, 2415, 0, 0, 0, 0, 1021, 3273 

+ po/mr.po,  379, 541, 548, 62, 440, 71, 342, 512, 1323 

+ po/lt.gmo,  1870, 5681, 5490, 0, 0, 0, 0, 1870, 5681 

+ po/vi.gmo,  1414, 4456, 6066, 0, 0, 0, 0, 1414, 4456 

+ po/pt.gmo,  1739, 5344, 6073, 0, 0, 0, 0, 1739, 5344 

+ po/te.po,  1170, 4091, 3674, 0, 0, 0, 0, 1170, 4091 

+ po/zh_CN.gmo,  1842, 5556, 2214, 0, 0, 0, 0, 1842, 5556 

+ po/da.gmo,  1867, 5675, 5449, 0, 0, 0, 0, 1867, 5675 

+ po/mk.po,  1337, 4309, 4907, 0, 0, 0, 0, 1337, 4309 

+ po/de.po,  1870, 5681, 5402, 0, 0, 0, 0, 1870, 5681 

+ po/hr.po,  1357, 4096, 4194, 0, 0, 463, 2037, 1820, 6133 

+ po/el.po,  1870, 5681, 6296, 0, 0, 0, 0, 1870, 5681 

+ po/bn.gmo,  1315, 4011, 4162, 0, 0, 0, 0, 1315, 4011 

+ po/bs.po,  1626, 5057, 4828, 0, 0, 0, 0, 1626, 5057 

+ po/zh_HK.po,  1349, 4140, 1844, 0, 0, 0, 0, 1349, 4140 

+ po/ar.po,  908, 2817, 2898, 157, 561, 99, 487, 1164, 3865 

+ po/th.po,  1260, 3694, 1794, 0, 0, 7, 10, 1267, 3704 

+ po/ro.gmo,  1871, 5682, 6434, 0, 0, 0, 0, 1871, 5682 

+ po/ca@valencia.gmo,  1843, 5568, 6996, 0, 0, 0, 0, 1843, 5568 

+ po/sr@latin.po,  1842, 5556, 5805, 0, 0, 0, 0, 1842, 5556 

+ po/lt.po,  1870, 5681, 5490, 0, 0, 0, 0, 1870, 5681 

+ po/dz.po,  718, 1941, 1025, 0, 0, 0, 0, 718, 1941 

+ po/fi.gmo,  1191, 3664, 3085, 0, 0, 0, 0, 1191, 3664 

+ po/ru.po,  1870, 5681, 5854, 0, 0, 0, 0, 1870, 5681 

+ po/en_CA.po,  327, 708, 705, 64, 181, 118, 415, 509, 1304 

+ po/sv.gmo,  1870, 5681, 5369, 0, 0, 0, 0, 1870, 5681 

+ po/it.gmo,  1870, 5681, 6529, 0, 0, 0, 0, 1870, 5681 

+ po/lv.po,  1850, 5617, 5477, 0, 0, 20, 64, 1870, 5681 

+ po/tg.po,  812, 1893, 1992, 0, 0, 388, 1974, 1200, 3867 

+ po/oc.gmo,  1739, 5344, 6270, 0, 0, 0, 0, 1739, 5344 

+ po/hi.po,  1201, 3897, 4548, 0, 0, 0, 0, 1201, 3897 

+ po/te.gmo,  1170, 4091, 3674, 0, 0, 0, 0, 1170, 4091 

+ po/sr.po,  1870, 5681, 5953, 0, 0, 0, 0, 1870, 5681 

+ po/be.po,  1196, 3855, 3992, 0, 0, 0, 0, 1196, 3855 

+ po/sk.gmo,  1774, 5518, 5543, 0, 0, 0, 0, 1774, 5518 

+ po/hi.gmo,  1201, 3897, 4548, 0, 0, 0, 0, 1201, 3897 

+ po/zh_CN.po,  1842, 5556, 2214, 0, 0, 0, 0, 1842, 5556 

+ po/gl.po,  1870, 5681, 6671, 0, 0, 0, 0, 1870, 5681 

+ po/ms.gmo,  456, 940, 924, 0, 0, 0, 0, 456, 940 

+ po/ar.gmo,  908, 2817, 2898, 0, 0, 0, 0, 908, 2817 

+ po/orca.pot,  0, 0, 0, 0, 0, 1870, 5681, 1870, 5681 

+ po/rw.po,  5, 5, 6, 234, 404, 270, 895, 509, 1304 

+ po/nn.po,  936, 2466, 2400, 31, 109, 136, 599, 1103, 3174 

+ po/or.gmo,  562, 1404, 1577, 0, 0, 0, 0, 562, 1404 

+ po/fr.po,  1870, 5681, 6834, 0, 0, 0, 0, 1870, 5681 

+ po/ga.po,  47, 103, 116, 0, 0, 1256, 3706, 1303, 3809 

+ po/ml.po,  940, 2627, 2442, 421, 1289, 482, 1652, 1843, 5568 

+ po/en_GB.gmo,  1870, 5681, 5677, 0, 0, 0, 0, 1870, 5681 

+ po/ml.gmo,  940, 2627, 2442, 0, 0, 0, 0, 940, 2627 

+ po/ca.gmo,  1855, 5603, 7084, 0, 0, 0, 0, 1855, 5603 

+ po/sr@latin.gmo,  1842, 5556, 5805, 0, 0, 0, 0, 1842, 5556 

+ po/pt_BR.po,  1871, 5682, 6409, 0, 0, 0, 0, 1871, 5682 

+ po/an.gmo,  1356, 4172, 4835, 0, 0, 0, 0, 1356, 4172 

+ po/gu.po,  445, 1066, 1175, 339, 874, 516, 1853, 1300, 3793 

+ po/de.gmo,  1870, 5681, 5402, 0, 0, 0, 0, 1870, 5681 

+ po/zh_HK.gmo,  1349, 4140, 1844, 0, 0, 0, 0, 1349, 4140 

+ po/kn.gmo,  342, 467, 484, 0, 0, 0, 0, 342, 467 

+ po/pl.po,  1870, 5681, 5947, 0, 0, 0, 0, 1870, 5681 

+ po/sv.po,  1870, 5681, 5369, 0, 0, 0, 0, 1870, 5681 

+ po/en_GB.po,  1870, 5681, 5677, 0, 0, 0, 0, 1870, 5681 

+ po/vi.po,  1414, 4456, 6066, 0, 0, 0, 0, 1414, 4456 

+ po/ta.po,  1201, 3897, 3642, 0, 0, 0, 0, 1201, 3897 

+ po/ug.po,  1201, 3897, 3448, 0, 0, 0, 0, 1201, 3897 

+ po/sr.gmo,  1870, 5681, 5953, 0, 0, 0, 0, 1870, 5681 

+ po/nl.gmo,  1869, 5679, 5590, 0, 0, 0, 0, 1869, 5679 

+ po/nn.gmo,  936, 2466, 2400, 0, 0, 0, 0, 936, 2466 

+ po/mai.gmo,  599, 1448, 1626, 0, 0, 0, 0, 599, 1448 

+ po/cy.po,  492, 1239, 1321, 11, 28, 6, 37, 509, 1304 

+ po/cs.po,  1870, 5681, 5793, 0, 0, 0, 0, 1870, 5681 

+ po/fr.gmo,  1870, 5681, 6834, 0, 0, 0, 0, 1870, 5681 

+ po/si.po,  118, 143, 175, 0, 0, 810, 2357, 928, 2500 

+ po/bn_IN.po,  177, 277, 302, 3, 6, 329, 1021, 509, 1304 

+ po/ko.po,  579, 1433, 1386, 351, 999, 340, 1275, 1270, 3707 

+ po/gl.gmo,  1870, 5681, 6671, 0, 0, 0, 0, 1870, 5681 

+ po/dz.gmo,  718, 1941, 1025, 0, 0, 0, 0, 718, 1941 

+ po/cy.gmo,  492, 1239, 1321, 0, 0, 0, 0, 492, 1239 

+ po/is.gmo,  139, 209, 217, 0, 0, 0, 0, 139, 209 

+ po/be.gmo,  1196, 3855, 3992, 0, 0, 0, 0, 1196, 3855 

+ po/nb.gmo,  1657, 4957, 4757, 0, 0, 0, 0, 1657, 4957 

+ po/it.po,  1870, 5681, 6529, 0, 0, 0, 0, 1870, 5681 

+ po/fur.gmo,  187, 516, 565, 0, 0, 0, 0, 187, 516 

+ po/sl.po,  1870, 5681, 6171, 0, 0, 0, 0, 1870, 5681 

+ po/el.gmo,  1870, 5681, 6296, 0, 0, 0, 0, 1870, 5681 

+ po/nb.po,  1657, 4957, 4757, 67, 172, 119, 439, 1843, 5568 

+ po/ca@valencia.po,  1843, 5568, 6996, 0, 0, 0, 0, 1843, 5568 

+ po/da.po,  1867, 5675, 5449, 0, 0, 0, 0, 1867, 5675 

+ po/bn.po,  1315, 4011, 4162, 0, 0, 0, 0, 1315, 4011 

+ po/pa.po,  1290, 3823, 4071, 14, 94, 33, 397, 1337, 4314 

+ po/id.po,  1871, 5682, 5691, 0, 0, 0, 0, 1871, 5682 

+ po/ast.gmo,  1337, 4314, 4887, 0, 0, 0, 0, 1337, 4314 

+ po/mr.gmo,  379, 541, 548, 0, 0, 0, 0, 379, 541 

+ po/he.po,  644, 2053, 2031, 14, 47, 642, 1693, 1300, 3793 

+ po/ko.gmo,  579, 1433, 1386, 0, 0, 0, 0, 579, 1433 

+ po/uk.gmo,  1843, 5568, 5540, 0, 0, 0, 0, 1843, 5568 

+ po/eu.po,  1659, 4874, 4584, 0, 0, 211, 807, 1870, 5681 

+ po/ms.po,  456, 940, 924, 0, 0, 860, 3079, 1316, 4019 

+ po/kn.po,  342, 467, 484, 408, 1727, 339, 902, 1089, 3096 

+ po/uk.po,  1843, 5568, 5540, 0, 0, 0, 0, 1843, 5568 

+ po/id.gmo,  1871, 5682, 5691, 0, 0, 0, 0, 1871, 5682 

+ po/ca.po,  1855, 5603, 7084, 0, 0, 0, 0, 1855, 5603 

+ po/kk.po,  92, 101, 107, 0, 0, 1775, 5574, 1867, 5675 

+ po/et.po,  360, 729, 695, 183, 327, 866, 3344, 1409, 4400 

+ po/hu.gmo,  1870, 5681, 5509, 0, 0, 0, 0, 1870, 5681 

+ po/pa.gmo,  1290, 3823, 4071, 0, 0, 0, 0, 1290, 3823 

+ po/gu.gmo,  445, 1066, 1175, 0, 0, 0, 0, 445, 1066 

+ po/ga.gmo,  47, 103, 116, 0, 0, 0, 0, 47, 103 

+ po/et.gmo,  360, 729, 695, 0, 0, 0, 0, 360, 729 

+ po/es.po,  1870, 5681, 6647, 0, 0, 0, 0, 1870, 5681 

+ po/ast.po,  1337, 4314, 4887, 0, 0, 0, 0, 1337, 4314 

+ po/or.po,  562, 1404, 1577, 158, 277, 547, 2023, 1267, 3704 

+ po/tr.gmo,  1870, 5681, 5275, 0, 0, 0, 0, 1870, 5681 

+ po/sl.gmo,  1870, 5681, 6171, 0, 0, 0, 0, 1870, 5681 

+ po/kk.gmo,  92, 101, 107, 0, 0, 0, 0, 92, 101 

+ po/pt_BR.gmo,  1871, 5682, 6409, 0, 0, 0, 0, 1871, 5682 

+ po/pt.po,  1739, 5344, 6073, 0, 0, 0, 0, 1739, 5344 

+ po/fur.po,  187, 516, 565, 2, 2, 1654, 5050, 1843, 5568 

+ po/is.po,  139, 209, 217, 273, 355, 1208, 4476, 1620, 5040 

+ po/bg.po,  1725, 5323, 5828, 0, 0, 0, 0, 1725, 5323 

+ po/ro.po,  1871, 5682, 6434, 0, 0, 0, 0, 1871, 5682 

+ po/oc.po,  1739, 5344, 6270, 0, 0, 0, 0, 1739, 5344 

+ po/cs.gmo,  1870, 5681, 5793, 0, 0, 0, 0, 1870, 5681 

+ po/bn_IN.gmo,  177, 277, 302, 0, 0, 0, 0, 177, 277 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

@@ -0,0 +1,146 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/lt.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/en@boldquot.gmo,  81, 476, 476, 0, 0, 0, 0, 81, 476 

+ po/ca.po,  81, 476, 570, 0, 0, 0, 0, 81, 476 

+ po/pt_BR.gmo,  81, 476, 501, 0, 0, 0, 0, 81, 476 

+ po/pl.po,  81, 476, 415, 0, 0, 0, 0, 81, 476 

+ po/as.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kn.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/cs.gmo,  81, 476, 387, 0, 0, 0, 0, 81, 476 

+ po/eu.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bg.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ast.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/cs.po,  81, 476, 387, 0, 0, 0, 0, 81, 476 

+ po/ca@valencia.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/de.po,  81, 476, 519, 0, 0, 0, 0, 81, 476 

+ po/fa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/lv.po,  80, 469, 373, 0, 0, 1, 7, 81, 476 

+ po/sq.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/ko.gmo,  81, 476, 327, 0, 0, 0, 0, 81, 476 

+ po/kn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nl.gmo,  80, 469, 498, 0, 0, 0, 0, 80, 469 

+ po/te.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/te.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/da.po,  81, 476, 433, 0, 0, 0, 0, 81, 476 

+ po/oc.gmo,  81, 476, 503, 0, 0, 0, 0, 81, 476 

+ po/oc.po,  81, 476, 503, 0, 0, 0, 0, 81, 476 

+ po/sr@latin.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sl.po,  81, 476, 404, 0, 0, 0, 0, 81, 476 

+ po/id.po,  81, 476, 392, 0, 0, 0, 0, 81, 476 

+ po/fr.gmo,  81, 476, 504, 0, 0, 0, 0, 81, 476 

+ po/gl.po,  81, 476, 549, 0, 0, 0, 0, 81, 476 

+ po/ru.po,  81, 476, 378, 0, 0, 0, 0, 81, 476 

+ po/sk.po,  81, 476, 409, 0, 0, 0, 0, 81, 476 

+ po/uk.po,  81, 476, 434, 0, 0, 0, 0, 81, 476 

+ po/ro.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/wa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ml.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/gl.gmo,  81, 476, 549, 0, 0, 0, 0, 81, 476 

+ po/hr.po,  81, 476, 385, 0, 0, 0, 0, 81, 476 

+ po/zh_TW.po,  1, 2, 1, 0, 0, 80, 474, 81, 476 

+ po/pt_BR.po,  81, 476, 501, 0, 0, 0, 0, 81, 476 

+ po/hu.gmo,  81, 476, 396, 0, 0, 0, 0, 81, 476 

+ po/lv.gmo,  80, 469, 373, 0, 0, 0, 0, 80, 469 

+ po/bg.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/ja.gmo,  81, 476, 95, 0, 0, 0, 0, 81, 476 

+ po/he.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/ca@valencia.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/mr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/p11-kit.pot,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/tr.po,  81, 476, 324, 0, 0, 0, 0, 81, 476 

+ po/ga.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/sr@latin.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/mr.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/nb.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ta.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/en_GB.gmo,  81, 476, 476, 0, 0, 0, 0, 81, 476 

+ po/sl.gmo,  81, 476, 404, 0, 0, 0, 0, 81, 476 

+ po/cy.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/or.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/nb.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/he.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sr.gmo,  81, 476, 417, 0, 0, 0, 0, 81, 476 

+ po/it.po,  81, 476, 513, 0, 0, 0, 0, 81, 476 

+ po/it.gmo,  81, 476, 513, 0, 0, 0, 0, 81, 476 

+ po/ar.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/cy.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/az.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/fi.gmo,  81, 476, 402, 0, 0, 0, 0, 81, 476 

+ po/en@quot.gmo,  81, 476, 476, 0, 0, 0, 0, 81, 476 

+ po/th.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fr.po,  81, 476, 504, 0, 0, 0, 0, 81, 476 

+ po/ml.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/fi.po,  81, 476, 402, 0, 0, 0, 0, 81, 476 

+ po/az.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fo.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/eo.gmo,  14, 58, 55, 0, 0, 0, 0, 14, 58 

+ po/ast.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pa.po,  74, 425, 444, 0, 0, 7, 51, 81, 476 

+ po/tr.gmo,  81, 476, 324, 0, 0, 0, 0, 81, 476 

+ po/bn_IN.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pt.po,  81, 476, 466, 0, 0, 0, 0, 81, 476 

+ po/nl.po,  80, 469, 498, 0, 0, 1, 7, 81, 476 

+ po/hi.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/hu.po,  81, 476, 396, 0, 0, 0, 0, 81, 476 

+ po/id.gmo,  81, 476, 392, 0, 0, 0, 0, 81, 476 

+ po/ar.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fur.po,  81, 476, 579, 0, 0, 0, 0, 81, 476 

+ po/en_GB.po,  81, 476, 476, 0, 0, 0, 0, 81, 476 

+ po/es.po,  81, 476, 563, 0, 0, 0, 0, 81, 476 

+ po/zh_CN.po,  81, 476, 95, 0, 0, 0, 0, 81, 476 

+ po/th.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/or.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ia.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/el.gmo,  81, 476, 532, 0, 0, 0, 0, 81, 476 

+ po/pl.gmo,  81, 476, 415, 0, 0, 0, 0, 81, 476 

+ po/ms.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/et.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/lt.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/vi.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/ia.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/wa.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/ga.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/gu.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/hi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/de.gmo,  81, 476, 519, 0, 0, 0, 0, 81, 476 

+ po/da.gmo,  81, 476, 433, 0, 0, 0, 0, 81, 476 

+ po/ja.po,  81, 476, 95, 0, 0, 0, 0, 81, 476 

+ po/zh_CN.gmo,  81, 476, 95, 0, 0, 0, 0, 81, 476 

+ po/nn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ca.gmo,  81, 476, 570, 0, 0, 0, 0, 81, 476 

+ po/ro.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/sk.gmo,  81, 476, 409, 0, 0, 0, 0, 81, 476 

+ po/zh_TW.gmo,  1, 2, 1, 0, 0, 0, 0, 1, 2 

+ po/nn.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/eo.po,  14, 58, 55, 0, 0, 67, 418, 81, 476 

+ po/kk.po,  4, 12, 11, 0, 0, 77, 464, 81, 476 

+ po/fur.gmo,  81, 476, 579, 0, 0, 0, 0, 81, 476 

+ po/vi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ko.po,  81, 476, 327, 0, 0, 0, 0, 81, 476 

+ po/as.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/uk.gmo,  81, 476, 434, 0, 0, 0, 0, 81, 476 

+ po/et.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/ru.gmo,  81, 476, 378, 0, 0, 0, 0, 81, 476 

+ po/fa.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/ka.po,  31, 156, 107, 0, 0, 50, 320, 81, 476 

+ po/gu.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/ta.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/el.po,  81, 476, 532, 0, 0, 0, 0, 81, 476 

+ po/ka.gmo,  31, 156, 107, 0, 0, 0, 0, 31, 156 

+ po/eu.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/kk.gmo,  4, 12, 11, 0, 0, 0, 0, 4, 12 

+ po/sv.gmo,  81, 476, 406, 0, 0, 0, 0, 81, 476 

+ po/pa.gmo,  74, 425, 444, 0, 0, 0, 0, 74, 425 

+ po/pt.gmo,  81, 476, 466, 0, 0, 0, 0, 81, 476 

+ po/en@quot.po,  81, 476, 476, 0, 0, 0, 0, 81, 476 

+ po/hr.gmo,  81, 476, 385, 0, 0, 0, 0, 81, 476 

+ po/ms.po,  0, 0, 0, 0, 0, 81, 476, 81, 476 

+ po/es.gmo,  81, 476, 563, 0, 0, 0, 0, 81, 476 

+ po/zh_HK.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sv.po,  81, 476, 406, 0, 0, 0, 0, 81, 476 

+ po/en@boldquot.po,  81, 476, 476, 0, 0, 0, 0, 81, 476 

+ po/sr.po,  81, 476, 417, 0, 0, 0, 0, 81, 476 

+ po/sq.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,196 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/Linux-PAM.pot,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/zu.gmo,  85, 371, 317, 0, 0, 0, 0, 85, 371 

+ po/zh_TW.gmo,  117, 575, 215, 0, 0, 0, 0, 117, 575 

+ po/zh_HK.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_CN.gmo,  117, 575, 217, 0, 0, 0, 0, 117, 575 

+ po/yo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/wba.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/vi.gmo,  115, 562, 794, 0, 0, 0, 0, 115, 562 

+ po/ur.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/uk.gmo,  119, 595, 597, 0, 0, 0, 0, 119, 595 

+ po/tw.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/tr.gmo,  117, 575, 506, 0, 0, 0, 0, 117, 575 

+ po/th.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/tg.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/te.gmo,  117, 575, 470, 0, 0, 0, 0, 117, 575 

+ po/ta.gmo,  117, 575, 483, 0, 0, 0, 0, 117, 575 

+ po/sv.gmo,  117, 575, 541, 0, 0, 0, 0, 117, 575 

+ po/sr.gmo,  117, 575, 587, 0, 0, 0, 0, 117, 575 

+ po/sr@latin.gmo,  114, 559, 572, 0, 0, 0, 0, 114, 559 

+ po/sq.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sl.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sk.gmo,  117, 575, 566, 0, 0, 0, 0, 117, 575 

+ po/si.gmo,  90, 410, 450, 0, 0, 0, 0, 90, 410 

+ po/ru.gmo,  117, 575, 598, 0, 0, 0, 0, 117, 575 

+ po/ro.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pt.gmo,  117, 575, 699, 0, 0, 0, 0, 117, 575 

+ po/pt_BR.gmo,  117, 575, 627, 0, 0, 0, 0, 117, 575 

+ po/pl.gmo,  119, 595, 591, 0, 0, 0, 0, 119, 595 

+ po/pa.gmo,  117, 575, 677, 0, 0, 0, 0, 117, 575 

+ po/or.gmo,  117, 575, 655, 0, 0, 0, 0, 117, 575 

+ po/nso.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nl.gmo,  117, 575, 572, 0, 0, 0, 0, 117, 575 

+ po/ne.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nds.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nb.gmo,  117, 575, 543, 0, 0, 0, 0, 117, 575 

+ po/my.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ms.gmo,  1, 4, 4, 0, 0, 0, 0, 1, 4 

+ po/mr.gmo,  117, 575, 598, 0, 0, 0, 0, 117, 575 

+ po/mn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ml.gmo,  117, 575, 504, 0, 0, 0, 0, 117, 575 

+ po/mk.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/mai.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/lv.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/lt.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ky.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw@uccor.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw@kkcor.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw_GB.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ko.gmo,  117, 575, 508, 0, 0, 0, 0, 117, 575 

+ po/kn.gmo,  117, 575, 512, 0, 0, 0, 0, 117, 575 

+ po/km.gmo,  81, 344, 168, 0, 0, 0, 0, 81, 344 

+ po/kk.gmo,  117, 575, 553, 0, 0, 0, 0, 117, 575 

+ po/ka.gmo,  31, 87, 77, 0, 0, 0, 0, 31, 87 

+ po/ja.gmo,  117, 575, 192, 0, 0, 0, 0, 117, 575 

+ po/it.gmo,  117, 575, 614, 0, 0, 0, 0, 117, 575 

+ po/is.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ilo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/id.gmo,  47, 215, 203, 0, 0, 0, 0, 47, 215 

+ po/ia.gmo,  117, 575, 695, 0, 0, 0, 0, 117, 575 

+ po/hu.gmo,  117, 575, 544, 0, 0, 0, 0, 117, 575 

+ po/hr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/hi.gmo,  117, 575, 665, 0, 0, 0, 0, 117, 575 

+ po/he.gmo,  44, 198, 180, 0, 0, 0, 0, 44, 198 

+ po/gu.gmo,  117, 575, 639, 0, 0, 0, 0, 117, 575 

+ po/gl.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ga.gmo,  117, 575, 779, 0, 0, 0, 0, 117, 575 

+ po/fr.gmo,  117, 575, 698, 0, 0, 0, 0, 117, 575 

+ po/fi.gmo,  117, 575, 471, 0, 0, 0, 0, 117, 575 

+ po/fa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/eu.gmo,  7, 13, 15, 0, 0, 0, 0, 7, 13 

+ po/et.gmo,  38, 158, 137, 0, 0, 0, 0, 38, 158 

+ po/es.gmo,  119, 595, 725, 0, 0, 0, 0, 119, 595 

+ po/eo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/en_GB.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/el.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/de.gmo,  117, 575, 579, 0, 0, 0, 0, 117, 575 

+ po/de_CH.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/da.gmo,  117, 575, 569, 0, 0, 0, 0, 117, 575 

+ po/cy.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/cs.gmo,  119, 595, 563, 0, 0, 0, 0, 119, 595 

+ po/ca.gmo,  117, 575, 719, 0, 0, 0, 0, 117, 575 

+ po/bs.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/brx.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/br.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bn.gmo,  115, 562, 618, 0, 0, 0, 0, 115, 562 

+ po/bn_IN.gmo,  115, 562, 618, 0, 0, 0, 0, 115, 562 

+ po/bg.gmo,  117, 575, 628, 0, 0, 0, 0, 117, 575 

+ po/be.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bal.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ast.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/as.gmo,  117, 575, 617, 0, 0, 0, 0, 117, 575 

+ po/ar.gmo,  84, 367, 420, 0, 0, 0, 0, 84, 367 

+ po/anp.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/am.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/af.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zu.po,  85, 371, 317, 4, 27, 31, 199, 120, 597 

+ po/zh_TW.po,  117, 575, 215, 3, 22, 0, 0, 120, 597 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/zh_CN.po,  117, 575, 217, 3, 22, 0, 0, 120, 597 

+ po/yo.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/wba.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/vi.po,  115, 562, 794, 5, 35, 0, 0, 120, 597 

+ po/ur.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/uk.po,  119, 595, 597, 1, 2, 0, 0, 120, 597 

+ po/tw.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/tr.po,  117, 575, 506, 3, 22, 0, 0, 120, 597 

+ po/th.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/tg.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/te.po,  117, 575, 470, 3, 22, 0, 0, 120, 597 

+ po/ta.po,  117, 575, 483, 3, 22, 0, 0, 120, 597 

+ po/sv.po,  117, 575, 541, 3, 22, 0, 0, 120, 597 

+ po/sr.po,  117, 575, 587, 3, 22, 0, 0, 120, 597 

+ po/sr@latin.po,  114, 559, 572, 5, 35, 1, 3, 120, 597 

+ po/sq.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/sl.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/sk.po,  117, 575, 566, 3, 22, 0, 0, 120, 597 

+ po/si.po,  90, 410, 450, 4, 27, 26, 160, 120, 597 

+ po/ru.po,  117, 575, 598, 3, 22, 0, 0, 120, 597 

+ po/ro.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/pt.po,  117, 575, 699, 3, 22, 0, 0, 120, 597 

+ po/pt_BR.po,  117, 575, 627, 3, 22, 0, 0, 120, 597 

+ po/pl.po,  119, 595, 591, 1, 2, 0, 0, 120, 597 

+ po/pa.po,  117, 575, 677, 3, 22, 0, 0, 120, 597 

+ po/or.po,  117, 575, 655, 3, 22, 0, 0, 120, 597 

+ po/nso.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/nn.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/nl.po,  117, 575, 572, 3, 22, 0, 0, 120, 597 

+ po/ne.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/nds.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/nb.po,  117, 575, 543, 3, 22, 0, 0, 120, 597 

+ po/my.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/ms.po,  1, 4, 4, 1, 2, 118, 591, 120, 597 

+ po/mr.po,  117, 575, 598, 3, 22, 0, 0, 120, 597 

+ po/mn.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/ml.po,  117, 575, 504, 3, 22, 0, 0, 120, 597 

+ po/mk.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/mai.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/lv.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/lt.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/ky.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/kw.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/ko.po,  117, 575, 508, 3, 22, 0, 0, 120, 597 

+ po/kn.po,  117, 575, 512, 3, 22, 0, 0, 120, 597 

+ po/km.po,  81, 344, 168, 4, 27, 35, 226, 120, 597 

+ po/kk.po,  117, 575, 553, 3, 22, 0, 0, 120, 597 

+ po/ka.po,  31, 87, 77, 1, 2, 88, 508, 120, 597 

+ po/ja.po,  117, 575, 192, 3, 22, 0, 0, 120, 597 

+ po/it.po,  117, 575, 614, 3, 22, 0, 0, 120, 597 

+ po/is.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/ilo.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/id.po,  47, 215, 203, 0, 0, 73, 382, 120, 597 

+ po/ia.po,  117, 575, 695, 3, 22, 0, 0, 120, 597 

+ po/hu.po,  117, 575, 544, 3, 22, 0, 0, 120, 597 

+ po/hr.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/hi.po,  117, 575, 665, 3, 22, 0, 0, 120, 597 

+ po/he.po,  44, 198, 180, 4, 27, 72, 372, 120, 597 

+ po/gu.po,  117, 575, 639, 3, 22, 0, 0, 120, 597 

+ po/gl.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/ga.po,  117, 575, 779, 3, 22, 0, 0, 120, 597 

+ po/fr.po,  117, 575, 698, 3, 22, 0, 0, 120, 597 

+ po/fi.po,  117, 575, 471, 3, 22, 0, 0, 120, 597 

+ po/fa.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/eu.po,  7, 13, 15, 1, 2, 112, 582, 120, 597 

+ po/et.po,  38, 158, 137, 2, 7, 80, 432, 120, 597 

+ po/es.po,  119, 595, 725, 1, 2, 0, 0, 120, 597 

+ po/eo.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/en_GB.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/el.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/de.po,  117, 575, 579, 3, 22, 0, 0, 120, 597 

+ po/de_CH.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/da.po,  117, 575, 569, 3, 22, 0, 0, 120, 597 

+ po/cy.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/cs.po,  119, 595, 563, 1, 2, 0, 0, 120, 597 

+ po/ca.po,  117, 575, 719, 3, 22, 0, 0, 120, 597 

+ po/bs.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/brx.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/br.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/bo.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/bn.po,  115, 562, 618, 5, 35, 0, 0, 120, 597 

+ po/bn_IN.po,  115, 562, 618, 5, 35, 0, 0, 120, 597 

+ po/bg.po,  117, 575, 628, 3, 22, 0, 0, 120, 597 

+ po/be.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/bal.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/ast.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/as.po,  117, 575, 617, 3, 22, 0, 0, 120, 597 

+ po/ar.po,  84, 367, 420, 4, 27, 32, 203, 120, 597 

+ po/anp.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/am.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

+ po/af.po,  0, 0, 0, 0, 0, 120, 597, 120, 597 

@@ -0,0 +1,19 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog.0)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe3 in position 31: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe7 in position 177: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf8 in position 19: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf3 in position 23: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf8 in position 45: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf2 in position 52: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,56 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/parted.pot,  0, 0, 0, 0, 0, 570, 4674, 570, 4674 

+ po/zh_TW.gmo,  529, 4216, 1526, 0, 0, 0, 0, 529, 4216 

+ po/zh_CN.gmo,  529, 4216, 1541, 0, 0, 0, 0, 529, 4216 

+ po/vi.gmo,  529, 4216, 5619, 0, 0, 0, 0, 529, 4216 

+ po/uk.gmo,  529, 4216, 3904, 0, 0, 0, 0, 529, 4216 

+ po/tr.gmo,  529, 4216, 3526, 0, 0, 0, 0, 529, 4216 

+ po/sv.gmo,  529, 4216, 4000, 0, 0, 0, 0, 529, 4216 

+ po/sr.gmo,  529, 4216, 4120, 0, 0, 0, 0, 529, 4216 

+ po/sl.gmo,  493, 3866, 3642, 0, 0, 0, 0, 493, 3866 

+ po/sk.gmo,  515, 4091, 3783, 0, 0, 0, 0, 515, 4091 

+ po/rw.gmo,  16, 16, 17, 0, 0, 0, 0, 16, 16 

+ po/ru.gmo,  529, 4216, 3845, 0, 0, 0, 0, 529, 4216 

+ po/pt_BR.gmo,  529, 4216, 4772, 0, 0, 0, 0, 529, 4216 

+ po/pl.gmo,  529, 4216, 4057, 0, 0, 0, 0, 529, 4216 

+ po/nl.gmo,  529, 4216, 4184, 0, 0, 0, 0, 529, 4216 

+ po/ko.gmo,  529, 4216, 3539, 0, 0, 0, 0, 529, 4216 

+ po/ja.gmo,  529, 4216, 1572, 0, 0, 0, 0, 529, 4216 

+ po/it.gmo,  529, 4216, 4476, 0, 0, 0, 0, 529, 4216 

+ po/id.gmo,  484, 3785, 3733, 0, 0, 0, 0, 484, 3785 

+ po/hu.gmo,  529, 4216, 3663, 0, 0, 0, 0, 529, 4216 

+ po/gl.gmo,  325, 2304, 2719, 0, 0, 0, 0, 325, 2304 

+ po/fur.gmo,  529, 4216, 5097, 0, 0, 0, 0, 529, 4216 

+ po/fr.gmo,  529, 4216, 5025, 0, 0, 0, 0, 529, 4216 

+ po/de.gmo,  529, 4216, 4172, 0, 0, 0, 0, 529, 4216 

+ po/cs.gmo,  451, 3611, 3186, 0, 0, 0, 0, 451, 3611 

+ po/zh_TW.po,  529, 4216, 1526, 19, 178, 22, 280, 570, 4674 

+ po/zh_CN.po,  529, 4216, 1541, 20, 186, 21, 272, 570, 4674 

+ po/vi.po,  529, 4216, 5619, 20, 186, 21, 272, 570, 4674 

+ po/uk.po,  529, 4216, 3904, 20, 186, 21, 272, 570, 4674 

+ po/tr.po,  529, 4216, 3526, 20, 186, 21, 272, 570, 4674 

+ po/sv.po,  529, 4216, 4000, 20, 186, 21, 272, 570, 4674 

+ po/sr.po,  529, 4216, 4120, 19, 178, 22, 280, 570, 4674 

+ po/sl.po,  493, 3866, 3642, 48, 472, 29, 336, 570, 4674 

+ po/sk.po,  515, 4091, 3783, 30, 279, 25, 304, 570, 4674 

+ po/rw.po,  16, 16, 17, 231, 2188, 323, 2470, 570, 4674 

+ po/ru.po,  529, 4216, 3845, 19, 178, 22, 280, 570, 4674 

+ po/ro.po,  110, 663, 741, 45, 437, 415, 3574, 570, 4674 

+ po/pt_BR.po,  529, 4216, 4772, 20, 186, 21, 272, 570, 4674 

+ po/pt.po,  111, 762, 834, 124, 1048, 335, 2864, 570, 4674 

+ po/pl.po,  529, 4216, 4057, 19, 178, 22, 280, 570, 4674 

+ po/nn.po,  156, 1028, 957, 118, 1224, 296, 2422, 570, 4674 

+ po/nl.po,  529, 4216, 4184, 20, 186, 21, 272, 570, 4674 

+ po/ko.po,  529, 4216, 3539, 19, 178, 22, 280, 570, 4674 

+ po/ja.po,  529, 4216, 1572, 19, 178, 22, 280, 570, 4674 

+ po/it.po,  529, 4216, 4476, 19, 178, 22, 280, 570, 4674 

+ po/id.po,  484, 3785, 3733, 50, 484, 36, 405, 570, 4674 

+ po/hu.po,  529, 4216, 3663, 19, 178, 22, 280, 570, 4674 

+ po/gl.po,  325, 2304, 2719, 26, 190, 219, 2180, 570, 4674 

+ po/fur.po,  529, 4216, 5097, 19, 178, 22, 280, 570, 4674 

+ po/fr.po,  529, 4216, 5025, 19, 178, 22, 280, 570, 4674 

+ po/es.po,  215, 1659, 1940, 85, 758, 270, 2257, 570, 4674 

+ po/de.po,  529, 4216, 4172, 19, 178, 22, 280, 570, 4674 

+ po/da.po,  414, 3006, 2909, 43, 348, 113, 1320, 570, 4674 

+ po/cs.po,  451, 3611, 3186, 61, 558, 58, 505, 570, 4674 

+ po/ca.po,  153, 1003, 1149, 118, 1175, 299, 2496, 570, 4674 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

@@ -0,0 +1,138 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/nds.gmo,  17, 51, 52, 0, 0, 0, 0, 17, 51 

+ po/fi.gmo,  56, 329, 282, 0, 0, 0, 0, 56, 329 

+ po/zh_TW.po,  56, 329, 125, 0, 0, 1, 7, 57, 336 

+ po/as.gmo,  54, 306, 380, 0, 0, 0, 0, 54, 306 

+ po/bs.gmo,  49, 267, 299, 0, 0, 0, 0, 49, 267 

+ po/gl.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/bs.po,  49, 267, 299, 0, 0, 8, 69, 57, 336 

+ po/ast.po,  49, 267, 318, 0, 0, 8, 69, 57, 336 

+ po/ka.gmo,  42, 212, 200, 0, 0, 0, 0, 42, 212 

+ po/it.gmo,  56, 329, 352, 0, 0, 0, 0, 56, 329 

+ po/es.gmo,  56, 329, 397, 0, 0, 0, 0, 56, 329 

+ po/zh_CN.gmo,  56, 329, 118, 0, 0, 0, 0, 56, 329 

+ po/cs.gmo,  56, 329, 306, 0, 0, 0, 0, 56, 329 

+ po/fi.po,  56, 329, 282, 0, 0, 1, 7, 57, 336 

+ po/pa.gmo,  49, 267, 305, 0, 0, 0, 0, 49, 267 

+ po/ar.gmo,  49, 267, 291, 0, 0, 0, 0, 49, 267 

+ po/cy.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/eu.po,  21, 88, 81, 0, 0, 36, 248, 57, 336 

+ po/fa.gmo,  20, 97, 118, 0, 0, 0, 0, 20, 97 

+ po/bn.gmo,  54, 306, 348, 0, 0, 0, 0, 54, 306 

+ po/ur.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/nl.po,  56, 329, 357, 0, 0, 1, 7, 57, 336 

+ po/ko.po,  56, 329, 333, 0, 0, 1, 7, 57, 336 

+ po/ca.gmo,  56, 329, 443, 0, 0, 0, 0, 56, 329 

+ po/pt_BR.gmo,  56, 329, 401, 0, 0, 0, 0, 56, 329 

+ po/my.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/cs.po,  56, 329, 306, 0, 0, 1, 7, 57, 336 

+ po/ko.gmo,  56, 329, 333, 0, 0, 0, 0, 56, 329 

+ po/ml.po,  56, 329, 329, 0, 0, 1, 7, 57, 336 

+ po/as.po,  54, 306, 380, 0, 0, 3, 30, 57, 336 

+ po/tr.po,  56, 329, 315, 0, 0, 1, 7, 57, 336 

+ po/nds.po,  17, 51, 52, 0, 0, 40, 285, 57, 336 

+ po/nb.gmo,  54, 306, 292, 0, 0, 0, 0, 54, 306 

+ po/ku.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/tr.gmo,  56, 329, 315, 0, 0, 0, 0, 56, 329 

+ po/sk.po,  56, 329, 314, 0, 0, 1, 7, 57, 336 

+ po/nl.gmo,  56, 329, 357, 0, 0, 0, 0, 56, 329 

+ po/id.gmo,  56, 329, 351, 0, 0, 0, 0, 56, 329 

+ po/te.po,  54, 306, 297, 0, 0, 3, 30, 57, 336 

+ po/sr@latin.po,  49, 267, 288, 0, 0, 8, 69, 57, 336 

+ po/passwd.pot,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/ja.po,  54, 306, 137, 0, 0, 3, 30, 57, 336 

+ po/ast.gmo,  49, 267, 318, 0, 0, 0, 0, 49, 267 

+ po/bn.po,  54, 306, 348, 0, 0, 3, 30, 57, 336 

+ po/gu.gmo,  49, 267, 300, 0, 0, 0, 0, 49, 267 

+ po/sl.po,  54, 306, 319, 0, 0, 3, 30, 57, 336 

+ po/da.po,  56, 329, 310, 0, 0, 1, 7, 57, 336 

+ po/vi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/cy.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/my.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bg.po,  54, 306, 338, 0, 0, 3, 30, 57, 336 

+ po/fa.po,  20, 97, 118, 0, 0, 37, 239, 57, 336 

+ po/fr.po,  56, 329, 425, 0, 0, 1, 7, 57, 336 

+ po/de.gmo,  56, 329, 343, 0, 0, 0, 0, 56, 329 

+ po/or.po,  49, 267, 328, 0, 0, 8, 69, 57, 336 

+ po/hy.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/is.po,  17, 56, 50, 0, 0, 40, 280, 57, 336 

+ po/pa.po,  49, 267, 305, 0, 0, 8, 69, 57, 336 

+ po/mk.gmo,  47, 259, 305, 0, 0, 0, 0, 47, 259 

+ po/et.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/es.po,  56, 329, 397, 0, 0, 1, 7, 57, 336 

+ po/hr.gmo,  47, 259, 289, 0, 0, 0, 0, 47, 259 

+ po/si.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ta.gmo,  49, 267, 246, 0, 0, 0, 0, 49, 267 

+ po/ms.po,  41, 225, 226, 0, 0, 16, 111, 57, 336 

+ po/id.po,  56, 329, 351, 0, 0, 1, 7, 57, 336 

+ po/ml.gmo,  56, 329, 329, 0, 0, 0, 0, 56, 329 

+ po/hu.gmo,  56, 329, 321, 0, 0, 0, 0, 56, 329 

+ po/en_GB.po,  49, 267, 267, 0, 0, 8, 69, 57, 336 

+ po/bg.gmo,  54, 306, 338, 0, 0, 0, 0, 54, 306 

+ po/mr.gmo,  49, 267, 284, 0, 0, 0, 0, 49, 267 

+ po/kn.gmo,  54, 306, 303, 0, 0, 0, 0, 54, 306 

+ po/sv.gmo,  56, 329, 311, 0, 0, 0, 0, 56, 329 

+ po/pt_BR.po,  56, 329, 401, 0, 0, 1, 7, 57, 336 

+ po/ka.po,  42, 212, 200, 0, 0, 15, 124, 57, 336 

+ po/pl.po,  56, 329, 321, 0, 0, 1, 7, 57, 336 

+ po/sl.gmo,  54, 306, 319, 0, 0, 0, 0, 54, 306 

+ po/ur.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/lo.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/pt.gmo,  56, 329, 398, 0, 0, 0, 0, 56, 329 

+ po/sv.po,  56, 329, 311, 0, 0, 1, 7, 57, 336 

+ po/sr@latin.gmo,  49, 267, 288, 0, 0, 0, 0, 49, 267 

+ po/he.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/is.gmo,  17, 56, 50, 0, 0, 0, 0, 17, 56 

+ po/da.gmo,  56, 329, 310, 0, 0, 0, 0, 56, 329 

+ po/wa.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/ms.gmo,  41, 225, 226, 0, 0, 0, 0, 41, 225 

+ po/fr.gmo,  56, 329, 425, 0, 0, 0, 0, 56, 329 

+ po/nn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sr.po,  56, 329, 342, 0, 0, 1, 7, 57, 336 

+ po/el.po,  54, 306, 347, 0, 0, 3, 30, 57, 336 

+ po/sr.gmo,  56, 329, 342, 0, 0, 0, 0, 56, 329 

+ po/gl.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nb.po,  54, 306, 292, 0, 0, 3, 30, 57, 336 

+ po/en_GB.gmo,  49, 267, 267, 0, 0, 0, 0, 49, 267 

+ po/uk.gmo,  56, 329, 351, 0, 0, 0, 0, 56, 329 

+ po/sk.gmo,  56, 329, 314, 0, 0, 0, 0, 56, 329 

+ po/wa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/it.po,  56, 329, 352, 0, 0, 1, 7, 57, 336 

+ po/ar.po,  49, 267, 291, 0, 0, 8, 69, 57, 336 

+ po/sq.gmo,  56, 329, 400, 0, 0, 0, 0, 56, 329 

+ po/ku.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/ro.po,  54, 306, 335, 0, 0, 3, 30, 57, 336 

+ po/vi.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/hr.po,  47, 259, 289, 0, 0, 10, 77, 57, 336 

+ po/hu.po,  56, 329, 321, 0, 0, 1, 7, 57, 336 

+ po/lo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/mr.po,  49, 267, 284, 0, 0, 8, 69, 57, 336 

+ po/bn_IN.gmo,  54, 306, 348, 0, 0, 0, 0, 54, 306 

+ po/he.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/ru.gmo,  56, 329, 302, 0, 0, 0, 0, 56, 329 

+ po/pl.gmo,  56, 329, 321, 0, 0, 0, 0, 56, 329 

+ po/or.gmo,  49, 267, 328, 0, 0, 0, 0, 49, 267 

+ po/kn.po,  54, 306, 303, 0, 0, 3, 30, 57, 336 

+ po/et.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/de.po,  56, 329, 343, 0, 0, 1, 7, 57, 336 

+ po/ru.po,  56, 329, 302, 0, 0, 1, 7, 57, 336 

+ po/hi.po,  49, 267, 327, 0, 0, 8, 69, 57, 336 

+ po/el.gmo,  54, 306, 347, 0, 0, 0, 0, 54, 306 

+ po/bn_IN.po,  54, 306, 348, 0, 0, 3, 30, 57, 336 

+ po/zh_CN.po,  56, 329, 118, 0, 0, 1, 7, 57, 336 

+ po/ta.po,  49, 267, 246, 0, 0, 8, 69, 57, 336 

+ po/ca.po,  56, 329, 443, 0, 0, 1, 7, 57, 336 

+ po/eu.gmo,  21, 88, 81, 0, 0, 0, 0, 21, 88 

+ po/ro.gmo,  54, 306, 335, 0, 0, 0, 0, 54, 306 

+ po/sq.po,  56, 329, 400, 0, 0, 1, 7, 57, 336 

+ po/ja.gmo,  54, 306, 137, 0, 0, 0, 0, 54, 306 

+ po/gu.po,  49, 267, 300, 0, 0, 8, 69, 57, 336 

+ po/hi.gmo,  49, 267, 327, 0, 0, 0, 0, 49, 267 

+ po/pt.po,  56, 329, 398, 0, 0, 1, 7, 57, 336 

+ po/mk.po,  47, 259, 305, 0, 0, 10, 77, 57, 336 

+ po/si.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/zh_TW.gmo,  56, 329, 125, 0, 0, 0, 0, 56, 329 

+ po/nn.po,  0, 0, 0, 0, 0, 57, 336, 57, 336 

+ po/te.gmo,  54, 306, 297, 0, 0, 0, 0, 54, 306 

+ po/uk.po,  56, 329, 351, 0, 0, 1, 7, 57, 336 

+ po/hy.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,20 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/tr.po,  17, 63, 58, 0, 0, 0, 0, 17, 63 

+ po/sv.po,  17, 63, 69, 0, 0, 0, 0, 17, 63 

+ po/sr@latin.po,  17, 63, 72, 0, 0, 0, 0, 17, 63 

+ po/sr.po,  17, 63, 72, 0, 0, 0, 0, 17, 63 

+ po/sl.po,  17, 63, 77, 0, 0, 0, 0, 17, 63 

+ po/ro.po,  17, 63, 73, 0, 0, 0, 0, 17, 63 

+ po/pt_BR.po,  17, 63, 68, 0, 0, 0, 0, 17, 63 

+ po/pt.po,  10, 31, 34, 2, 9, 5, 23, 17, 63 

+ po/pl.po,  17, 63, 81, 0, 0, 0, 0, 17, 63 

+ po/id.po,  17, 63, 66, 0, 0, 0, 0, 17, 63 

+ po/hu.po,  17, 63, 63, 0, 0, 0, 0, 17, 63 

+ po/hr.po,  17, 63, 62, 0, 0, 0, 0, 17, 63 

+ po/fur.po,  17, 63, 77, 0, 0, 0, 0, 17, 63 

+ po/es.po,  17, 63, 75, 0, 0, 0, 0, 17, 63 

+ po/el.po,  10, 31, 32, 2, 9, 5, 23, 17, 63 

+ po/de.po,  17, 63, 63, 0, 0, 0, 0, 17, 63 

+ po/da.po,  17, 63, 63, 0, 0, 0, 0, 17, 63 

+ po/cs.po,  17, 63, 69, 0, 0, 0, 0, 17, 63 

+ po/bs.po,  10, 31, 35, 2, 9, 5, 23, 17, 63 

@@ -0,0 +1,6 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,13 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ru.po,  53, 315, 297, 1, 6, 0, 0, 54, 321 

+ po/pl.po,  51, 307, 319, 3, 14, 0, 0, 54, 321 

+ po/cs.po,  53, 315, 304, 1, 6, 0, 0, 54, 321 

+ po/vi.po,  53, 315, 437, 1, 6, 0, 0, 54, 321 

+ po/de.po,  49, 203, 205, 4, 111, 1, 7, 54, 321 

+ po/pt_BR.po,  53, 315, 362, 1, 6, 0, 0, 54, 321 

+ po/eu.po,  52, 311, 306, 2, 10, 0, 0, 54, 321 

+ po/ro.po,  53, 315, 363, 1, 6, 0, 0, 54, 321 

+ po/sv.po,  22, 83, 84, 8, 40, 24, 198, 54, 321 

+ po/nl.po,  53, 315, 336, 1, 6, 0, 0, 54, 321 

+ po/ja.po,  40, 169, 58, 7, 124, 7, 28, 54, 321 

+ po/pinfo.pot,  0, 0, 0, 0, 0, 54, 321, 54, 321 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

@@ -0,0 +1,464 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ko.po,  28, 236, 197, 0, 0, 0, 0, 28, 236 

+ po/es.po,  28, 236, 244, 0, 0, 0, 0, 28, 236 

+ po/da.po,  28, 236, 210, 0, 0, 0, 0, 28, 236 

+ po/cs.po,  1, 1, 1, 0, 0, 27, 235, 28, 236 

+ po/hu.po,  19, 116, 98, 0, 0, 9, 120, 28, 236 

+ po/zh_CN.po,  28, 236, 110, 0, 0, 0, 0, 28, 236 

+ po/pt_BR.po,  28, 236, 263, 0, 0, 0, 0, 28, 236 

+ po/ja.po,  28, 236, 117, 0, 0, 0, 0, 28, 236 

+ po/nl.po,  28, 236, 240, 0, 0, 0, 0, 28, 236 

+ po/ru.po,  28, 236, 222, 0, 0, 0, 0, 28, 236 

+ po/zh_TW.po,  28, 236, 80, 0, 0, 0, 0, 28, 236 

+ po/pl.po,  28, 236, 223, 0, 0, 0, 0, 28, 236 

+ po/sv.po,  28, 236, 211, 0, 0, 0, 0, 28, 236 

+ po/sandbox.pot,  0, 0, 0, 0, 0, 28, 236, 28, 236 

+ po/fr.po,  28, 236, 297, 0, 0, 0, 0, 28, 236 

+ po/de.po,  28, 236, 233, 0, 0, 0, 0, 28, 236 

+ po/uk.po,  28, 236, 227, 0, 0, 0, 0, 28, 236 

+ po/it.po,  8, 89, 89, 20, 147, 0, 0, 28, 236 

+ po/bn_IN.po,  564, 3618, 3652, 0, 0, 134, 875, 698, 4493 

+ po/zu.po,  10, 10, 11, 0, 0, 688, 4483, 698, 4493 

+ po/as.po,  564, 3618, 3545, 0, 0, 134, 875, 698, 4493 

+ po/kn.po,  565, 3619, 2964, 0, 0, 133, 874, 698, 4493 

+ po/ia.po,  18, 19, 20, 0, 0, 680, 4474, 698, 4493 

+ po/fil.po,  6, 6, 8, 0, 0, 692, 4487, 698, 4493 

+ po/zh_HK.po,  4, 4, 4, 0, 0, 694, 4489, 698, 4493 

+ po/fi.po,  271, 1282, 1095, 0, 0, 427, 3211, 698, 4493 

+ po/bal.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/ar.po,  219, 1149, 1144, 0, 0, 479, 3344, 698, 4493 

+ po/sr.po,  224, 1155, 1250, 0, 0, 474, 3338, 698, 4493 

+ po/sk.po,  157, 775, 702, 0, 0, 541, 3718, 698, 4493 

+ po/mai.po,  184, 932, 1042, 0, 0, 514, 3561, 698, 4493 

+ po/is.po,  25, 25, 27, 0, 0, 673, 4468, 698, 4493 

+ po/el.po,  55, 109, 111, 0, 0, 643, 4384, 698, 4493 

+ po/hr.po,  171, 813, 814, 0, 0, 527, 3680, 698, 4493 

+ po/bg.po,  244, 1250, 1448, 0, 0, 454, 3243, 698, 4493 

+ po/eo.po,  4, 4, 4, 0, 0, 694, 4489, 698, 4493 

+ po/tg.po,  20, 20, 24, 0, 0, 678, 4473, 698, 4493 

+ po/mn.po,  8, 8, 8, 0, 0, 690, 4485, 698, 4493 

+ po/ga.po,  8, 8, 9, 0, 0, 690, 4485, 698, 4493 

+ po/or.po,  564, 3618, 3813, 0, 0, 134, 875, 698, 4493 

+ po/de_CH.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/vi.po,  20, 21, 35, 0, 0, 678, 4472, 698, 4493 

+ po/be.po,  19, 19, 19, 0, 0, 679, 4474, 698, 4493 

+ po/sl.po,  18, 18, 18, 0, 0, 680, 4475, 698, 4493 

+ po/my.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/lt.po,  22, 22, 24, 0, 0, 676, 4471, 698, 4493 

+ po/af.po,  10, 10, 11, 0, 0, 688, 4483, 698, 4493 

+ po/en_GB.po,  225, 1158, 1158, 0, 0, 473, 3335, 698, 4493 

+ po/sr@latin.po,  220, 1151, 1245, 0, 0, 478, 3342, 698, 4493 

+ po/brx.po,  1, 1, 2, 0, 0, 697, 4492, 698, 4493 

+ po/ta.po,  564, 3618, 2946, 0, 0, 134, 875, 698, 4493 

+ po/ilo.po,  8, 8, 10, 0, 0, 690, 4485, 698, 4493 

+ po/ms.po,  80, 432, 420, 0, 0, 618, 4061, 698, 4493 

+ po/lv.po,  21, 21, 22, 0, 0, 677, 4472, 698, 4493 

+ po/pa.po,  564, 3618, 4051, 0, 0, 134, 875, 698, 4493 

+ po/gl.po,  23, 24, 26, 0, 0, 675, 4469, 698, 4493 

+ po/gu.po,  564, 3618, 3833, 0, 0, 134, 875, 698, 4493 

+ po/bs.po,  138, 754, 757, 0, 0, 560, 3739, 698, 4493 

+ po/kk.po,  20, 20, 22, 0, 0, 678, 4473, 698, 4493 

+ po/bn.po,  29, 29, 33, 0, 0, 669, 4464, 698, 4493 

+ po/tr.po,  41, 52, 55, 0, 0, 657, 4441, 698, 4493 

+ po/fa.po,  23, 23, 28, 0, 0, 675, 4470, 698, 4493 

+ po/ca.po,  576, 3679, 4536, 0, 0, 122, 814, 698, 4493 

+ po/id.po,  32, 33, 34, 0, 0, 666, 4460, 698, 4493 

+ po/sq.po,  30, 30, 35, 0, 0, 668, 4463, 698, 4493 

+ po/he.po,  28, 28, 30, 0, 0, 670, 4465, 698, 4493 

+ po/ur.po,  12, 12, 16, 0, 0, 686, 4481, 698, 4493 

+ po/ne.po,  8, 8, 11, 0, 0, 690, 4485, 698, 4493 

+ po/ast.po,  9, 9, 9, 0, 0, 689, 4484, 698, 4493 

+ po/python.pot,  0, 0, 0, 0, 0, 698, 4497, 698, 4497 

+ po/th.po,  21, 21, 21, 0, 0, 677, 4472, 698, 4493 

+ po/am.po,  9, 9, 11, 0, 0, 689, 4484, 698, 4493 

+ po/hi.po,  564, 3618, 4038, 0, 0, 134, 875, 698, 4493 

+ po/nds.po,  28, 29, 28, 0, 0, 670, 4464, 698, 4493 

+ po/eu.po,  39, 48, 50, 0, 0, 659, 4445, 698, 4493 

+ po/br.po,  10, 10, 12, 0, 0, 688, 4483, 698, 4493 

+ po/et.po,  31, 31, 32, 0, 0, 667, 4462, 698, 4493 

+ po/si.po,  19, 19, 24, 0, 0, 679, 4474, 698, 4493 

+ po/ml.po,  564, 3618, 2805, 0, 0, 134, 875, 698, 4493 

+ po/ky.po,  1, 1, 1, 0, 0, 697, 4492, 698, 4493 

+ po/te.po,  564, 3618, 2852, 0, 0, 134, 875, 698, 4493 

+ po/ka.po,  24, 24, 24, 0, 0, 674, 4469, 698, 4493 

+ po/mr.po,  564, 3618, 3319, 0, 0, 134, 875, 698, 4493 

+ po/nb.po,  44, 69, 73, 0, 0, 654, 4424, 698, 4493 

+ po/nn.po,  23, 23, 26, 0, 0, 675, 4470, 698, 4493 

+ po/km.po,  9, 9, 9, 0, 0, 689, 4484, 698, 4493 

+ po/pt.po,  227, 1159, 1489, 0, 0, 471, 3334, 698, 4493 

+ po/fur.po,  18, 18, 20, 0, 0, 680, 4475, 698, 4493 

+ po/ro.po,  25, 25, 25, 0, 0, 673, 4468, 698, 4493 

+ po/cy.po,  14, 14, 15, 0, 0, 684, 4479, 698, 4493 

+ po/nso.po,  9, 9, 10, 0, 0, 689, 4484, 698, 4493 

+ po/mk.po,  128, 744, 912, 0, 0, 570, 3749, 698, 4493 

+ po/policycoreutils.pot,  0, 0, 0, 0, 0, 67, 388, 67, 388 

+ po/zh_TW.Big5.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/zh_CN.GB2312.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/xh.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/wo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/vi_VN.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/tl.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/si_LK.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/mg.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lv_LV.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lt_LT.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/la.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/ku.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/ks.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/hy.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/es_MX.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/dz.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/bo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/bn_BD.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/az.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/aln.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/gui.pot,  0, 0, 0, 0, 0, 208, 1141, 208, 1141 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ko.po,  28, 236, 197, 0, 0, 0, 0, 28, 236 

+ po/es.po,  28, 236, 244, 0, 0, 0, 0, 28, 236 

+ po/da.po,  28, 236, 210, 0, 0, 0, 0, 28, 236 

+ po/cs.po,  1, 1, 1, 0, 0, 27, 235, 28, 236 

+ po/hu.po,  19, 116, 98, 0, 0, 9, 120, 28, 236 

+ po/zh_CN.po,  28, 236, 110, 0, 0, 0, 0, 28, 236 

+ po/pt_BR.po,  28, 236, 263, 0, 0, 0, 0, 28, 236 

+ po/ja.po,  28, 236, 117, 0, 0, 0, 0, 28, 236 

+ po/nl.po,  28, 236, 240, 0, 0, 0, 0, 28, 236 

+ po/ru.po,  28, 236, 222, 0, 0, 0, 0, 28, 236 

+ po/zh_TW.po,  28, 236, 80, 0, 0, 0, 0, 28, 236 

+ po/pl.po,  28, 236, 223, 0, 0, 0, 0, 28, 236 

+ po/sv.po,  28, 236, 211, 0, 0, 0, 0, 28, 236 

+ po/sandbox.pot,  0, 0, 0, 0, 0, 28, 236, 28, 236 

+ po/fr.po,  28, 236, 297, 0, 0, 0, 0, 28, 236 

+ po/de.po,  28, 236, 233, 0, 0, 0, 0, 28, 236 

+ po/uk.po,  28, 236, 227, 0, 0, 0, 0, 28, 236 

+ po/it.po,  8, 89, 89, 20, 147, 0, 0, 28, 236 

+ po/bn_IN.po,  564, 3618, 3652, 0, 0, 134, 875, 698, 4493 

+ po/zu.po,  10, 10, 11, 0, 0, 688, 4483, 698, 4493 

+ po/as.po,  564, 3618, 3545, 0, 0, 134, 875, 698, 4493 

+ po/kn.po,  565, 3619, 2964, 0, 0, 133, 874, 698, 4493 

+ po/ia.po,  18, 19, 20, 0, 0, 680, 4474, 698, 4493 

+ po/fil.po,  6, 6, 8, 0, 0, 692, 4487, 698, 4493 

+ po/zh_HK.po,  4, 4, 4, 0, 0, 694, 4489, 698, 4493 

+ po/fi.po,  271, 1282, 1095, 0, 0, 427, 3211, 698, 4493 

+ po/bal.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/ar.po,  219, 1149, 1144, 0, 0, 479, 3344, 698, 4493 

+ po/sr.po,  224, 1155, 1250, 0, 0, 474, 3338, 698, 4493 

+ po/sk.po,  157, 775, 702, 0, 0, 541, 3718, 698, 4493 

+ po/mai.po,  184, 932, 1042, 0, 0, 514, 3561, 698, 4493 

+ po/is.po,  25, 25, 27, 0, 0, 673, 4468, 698, 4493 

+ po/el.po,  55, 109, 111, 0, 0, 643, 4384, 698, 4493 

+ po/hr.po,  171, 813, 814, 0, 0, 527, 3680, 698, 4493 

+ po/bg.po,  244, 1250, 1448, 0, 0, 454, 3243, 698, 4493 

+ po/eo.po,  4, 4, 4, 0, 0, 694, 4489, 698, 4493 

+ po/tg.po,  20, 20, 24, 0, 0, 678, 4473, 698, 4493 

+ po/mn.po,  8, 8, 8, 0, 0, 690, 4485, 698, 4493 

+ po/ga.po,  8, 8, 9, 0, 0, 690, 4485, 698, 4493 

+ po/or.po,  564, 3618, 3813, 0, 0, 134, 875, 698, 4493 

+ po/de_CH.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/vi.po,  20, 21, 35, 0, 0, 678, 4472, 698, 4493 

+ po/be.po,  19, 19, 19, 0, 0, 679, 4474, 698, 4493 

+ po/sl.po,  18, 18, 18, 0, 0, 680, 4475, 698, 4493 

+ po/my.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/lt.po,  22, 22, 24, 0, 0, 676, 4471, 698, 4493 

+ po/af.po,  10, 10, 11, 0, 0, 688, 4483, 698, 4493 

+ po/en_GB.po,  225, 1158, 1158, 0, 0, 473, 3335, 698, 4493 

+ po/sr@latin.po,  220, 1151, 1245, 0, 0, 478, 3342, 698, 4493 

+ po/brx.po,  1, 1, 2, 0, 0, 697, 4492, 698, 4493 

+ po/ta.po,  564, 3618, 2946, 0, 0, 134, 875, 698, 4493 

+ po/ilo.po,  8, 8, 10, 0, 0, 690, 4485, 698, 4493 

+ po/ms.po,  80, 432, 420, 0, 0, 618, 4061, 698, 4493 

+ po/lv.po,  21, 21, 22, 0, 0, 677, 4472, 698, 4493 

+ po/pa.po,  564, 3618, 4051, 0, 0, 134, 875, 698, 4493 

+ po/gl.po,  23, 24, 26, 0, 0, 675, 4469, 698, 4493 

+ po/gu.po,  564, 3618, 3833, 0, 0, 134, 875, 698, 4493 

+ po/bs.po,  138, 754, 757, 0, 0, 560, 3739, 698, 4493 

+ po/kk.po,  20, 20, 22, 0, 0, 678, 4473, 698, 4493 

+ po/bn.po,  29, 29, 33, 0, 0, 669, 4464, 698, 4493 

+ po/tr.po,  41, 52, 55, 0, 0, 657, 4441, 698, 4493 

+ po/fa.po,  23, 23, 28, 0, 0, 675, 4470, 698, 4493 

+ po/ca.po,  576, 3679, 4536, 0, 0, 122, 814, 698, 4493 

+ po/id.po,  32, 33, 34, 0, 0, 666, 4460, 698, 4493 

+ po/sq.po,  30, 30, 35, 0, 0, 668, 4463, 698, 4493 

+ po/he.po,  28, 28, 30, 0, 0, 670, 4465, 698, 4493 

+ po/ur.po,  12, 12, 16, 0, 0, 686, 4481, 698, 4493 

+ po/ne.po,  8, 8, 11, 0, 0, 690, 4485, 698, 4493 

+ po/ast.po,  9, 9, 9, 0, 0, 689, 4484, 698, 4493 

+ po/python.pot,  0, 0, 0, 0, 0, 698, 4497, 698, 4497 

+ po/th.po,  21, 21, 21, 0, 0, 677, 4472, 698, 4493 

+ po/am.po,  9, 9, 11, 0, 0, 689, 4484, 698, 4493 

+ po/hi.po,  564, 3618, 4038, 0, 0, 134, 875, 698, 4493 

+ po/nds.po,  28, 29, 28, 0, 0, 670, 4464, 698, 4493 

+ po/eu.po,  39, 48, 50, 0, 0, 659, 4445, 698, 4493 

+ po/br.po,  10, 10, 12, 0, 0, 688, 4483, 698, 4493 

+ po/et.po,  31, 31, 32, 0, 0, 667, 4462, 698, 4493 

+ po/si.po,  19, 19, 24, 0, 0, 679, 4474, 698, 4493 

+ po/ml.po,  564, 3618, 2805, 0, 0, 134, 875, 698, 4493 

+ po/ky.po,  1, 1, 1, 0, 0, 697, 4492, 698, 4493 

+ po/te.po,  564, 3618, 2852, 0, 0, 134, 875, 698, 4493 

+ po/ka.po,  24, 24, 24, 0, 0, 674, 4469, 698, 4493 

+ po/mr.po,  564, 3618, 3319, 0, 0, 134, 875, 698, 4493 

+ po/nb.po,  44, 69, 73, 0, 0, 654, 4424, 698, 4493 

+ po/nn.po,  23, 23, 26, 0, 0, 675, 4470, 698, 4493 

+ po/km.po,  9, 9, 9, 0, 0, 689, 4484, 698, 4493 

+ po/pt.po,  227, 1159, 1489, 0, 0, 471, 3334, 698, 4493 

+ po/fur.po,  18, 18, 20, 0, 0, 680, 4475, 698, 4493 

+ po/ro.po,  25, 25, 25, 0, 0, 673, 4468, 698, 4493 

+ po/cy.po,  14, 14, 15, 0, 0, 684, 4479, 698, 4493 

+ po/nso.po,  9, 9, 10, 0, 0, 689, 4484, 698, 4493 

+ po/mk.po,  128, 744, 912, 0, 0, 570, 3749, 698, 4493 

+ po/policycoreutils.pot,  0, 0, 0, 0, 0, 67, 388, 67, 388 

+ po/zh_TW.Big5.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/zh_CN.GB2312.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/xh.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/wo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/vi_VN.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/tl.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/si_LK.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/mg.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lv_LV.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lt_LT.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/la.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/ku.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/ks.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/hy.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/es_MX.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/dz.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/bo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/bn_BD.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/az.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/aln.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/gui.pot,  0, 0, 0, 0, 0, 208, 1141, 208, 1141 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ko.po,  28, 236, 197, 0, 0, 0, 0, 28, 236 

+ po/es.po,  28, 236, 244, 0, 0, 0, 0, 28, 236 

+ po/da.po,  28, 236, 210, 0, 0, 0, 0, 28, 236 

+ po/cs.po,  1, 1, 1, 0, 0, 27, 235, 28, 236 

+ po/hu.po,  19, 116, 98, 0, 0, 9, 120, 28, 236 

+ po/zh_CN.po,  28, 236, 110, 0, 0, 0, 0, 28, 236 

+ po/pt_BR.po,  28, 236, 263, 0, 0, 0, 0, 28, 236 

+ po/ja.po,  28, 236, 117, 0, 0, 0, 0, 28, 236 

+ po/nl.po,  28, 236, 240, 0, 0, 0, 0, 28, 236 

+ po/ru.po,  28, 236, 222, 0, 0, 0, 0, 28, 236 

+ po/zh_TW.po,  28, 236, 80, 0, 0, 0, 0, 28, 236 

+ po/pl.po,  28, 236, 223, 0, 0, 0, 0, 28, 236 

+ po/sv.po,  28, 236, 211, 0, 0, 0, 0, 28, 236 

+ po/sandbox.pot,  0, 0, 0, 0, 0, 28, 236, 28, 236 

+ po/fr.po,  28, 236, 297, 0, 0, 0, 0, 28, 236 

+ po/de.po,  28, 236, 233, 0, 0, 0, 0, 28, 236 

+ po/uk.po,  28, 236, 227, 0, 0, 0, 0, 28, 236 

+ po/it.po,  8, 89, 89, 20, 147, 0, 0, 28, 236 

+ po/bn_IN.po,  564, 3618, 3652, 0, 0, 134, 875, 698, 4493 

+ po/zu.po,  10, 10, 11, 0, 0, 688, 4483, 698, 4493 

+ po/as.po,  564, 3618, 3545, 0, 0, 134, 875, 698, 4493 

+ po/kn.po,  565, 3619, 2964, 0, 0, 133, 874, 698, 4493 

+ po/ia.po,  18, 19, 20, 0, 0, 680, 4474, 698, 4493 

+ po/fil.po,  6, 6, 8, 0, 0, 692, 4487, 698, 4493 

+ po/zh_HK.po,  4, 4, 4, 0, 0, 694, 4489, 698, 4493 

+ po/fi.po,  271, 1282, 1095, 0, 0, 427, 3211, 698, 4493 

+ po/bal.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/ar.po,  219, 1149, 1144, 0, 0, 479, 3344, 698, 4493 

+ po/sr.po,  224, 1155, 1250, 0, 0, 474, 3338, 698, 4493 

+ po/sk.po,  157, 775, 702, 0, 0, 541, 3718, 698, 4493 

+ po/mai.po,  184, 932, 1042, 0, 0, 514, 3561, 698, 4493 

+ po/is.po,  25, 25, 27, 0, 0, 673, 4468, 698, 4493 

+ po/el.po,  55, 109, 111, 0, 0, 643, 4384, 698, 4493 

+ po/hr.po,  171, 813, 814, 0, 0, 527, 3680, 698, 4493 

+ po/bg.po,  244, 1250, 1448, 0, 0, 454, 3243, 698, 4493 

+ po/eo.po,  4, 4, 4, 0, 0, 694, 4489, 698, 4493 

+ po/tg.po,  20, 20, 24, 0, 0, 678, 4473, 698, 4493 

+ po/mn.po,  8, 8, 8, 0, 0, 690, 4485, 698, 4493 

+ po/ga.po,  8, 8, 9, 0, 0, 690, 4485, 698, 4493 

+ po/or.po,  564, 3618, 3813, 0, 0, 134, 875, 698, 4493 

+ po/de_CH.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/vi.po,  20, 21, 35, 0, 0, 678, 4472, 698, 4493 

+ po/be.po,  19, 19, 19, 0, 0, 679, 4474, 698, 4493 

+ po/sl.po,  18, 18, 18, 0, 0, 680, 4475, 698, 4493 

+ po/my.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/lt.po,  22, 22, 24, 0, 0, 676, 4471, 698, 4493 

+ po/af.po,  10, 10, 11, 0, 0, 688, 4483, 698, 4493 

+ po/en_GB.po,  225, 1158, 1158, 0, 0, 473, 3335, 698, 4493 

+ po/sr@latin.po,  220, 1151, 1245, 0, 0, 478, 3342, 698, 4493 

+ po/brx.po,  1, 1, 2, 0, 0, 697, 4492, 698, 4493 

+ po/ta.po,  564, 3618, 2946, 0, 0, 134, 875, 698, 4493 

+ po/ilo.po,  8, 8, 10, 0, 0, 690, 4485, 698, 4493 

+ po/ms.po,  80, 432, 420, 0, 0, 618, 4061, 698, 4493 

+ po/lv.po,  21, 21, 22, 0, 0, 677, 4472, 698, 4493 

+ po/pa.po,  564, 3618, 4051, 0, 0, 134, 875, 698, 4493 

+ po/gl.po,  23, 24, 26, 0, 0, 675, 4469, 698, 4493 

+ po/gu.po,  564, 3618, 3833, 0, 0, 134, 875, 698, 4493 

+ po/bs.po,  138, 754, 757, 0, 0, 560, 3739, 698, 4493 

+ po/kk.po,  20, 20, 22, 0, 0, 678, 4473, 698, 4493 

+ po/bn.po,  29, 29, 33, 0, 0, 669, 4464, 698, 4493 

+ po/tr.po,  41, 52, 55, 0, 0, 657, 4441, 698, 4493 

+ po/fa.po,  23, 23, 28, 0, 0, 675, 4470, 698, 4493 

+ po/ca.po,  576, 3679, 4536, 0, 0, 122, 814, 698, 4493 

+ po/id.po,  32, 33, 34, 0, 0, 666, 4460, 698, 4493 

+ po/sq.po,  30, 30, 35, 0, 0, 668, 4463, 698, 4493 

+ po/he.po,  28, 28, 30, 0, 0, 670, 4465, 698, 4493 

+ po/ur.po,  12, 12, 16, 0, 0, 686, 4481, 698, 4493 

+ po/ne.po,  8, 8, 11, 0, 0, 690, 4485, 698, 4493 

+ po/ast.po,  9, 9, 9, 0, 0, 689, 4484, 698, 4493 

+ po/python.pot,  0, 0, 0, 0, 0, 698, 4497, 698, 4497 

+ po/th.po,  21, 21, 21, 0, 0, 677, 4472, 698, 4493 

+ po/am.po,  9, 9, 11, 0, 0, 689, 4484, 698, 4493 

+ po/hi.po,  564, 3618, 4038, 0, 0, 134, 875, 698, 4493 

+ po/nds.po,  28, 29, 28, 0, 0, 670, 4464, 698, 4493 

+ po/eu.po,  39, 48, 50, 0, 0, 659, 4445, 698, 4493 

+ po/br.po,  10, 10, 12, 0, 0, 688, 4483, 698, 4493 

+ po/et.po,  31, 31, 32, 0, 0, 667, 4462, 698, 4493 

+ po/si.po,  19, 19, 24, 0, 0, 679, 4474, 698, 4493 

+ po/ml.po,  564, 3618, 2805, 0, 0, 134, 875, 698, 4493 

+ po/ky.po,  1, 1, 1, 0, 0, 697, 4492, 698, 4493 

+ po/te.po,  564, 3618, 2852, 0, 0, 134, 875, 698, 4493 

+ po/ka.po,  24, 24, 24, 0, 0, 674, 4469, 698, 4493 

+ po/mr.po,  564, 3618, 3319, 0, 0, 134, 875, 698, 4493 

+ po/nb.po,  44, 69, 73, 0, 0, 654, 4424, 698, 4493 

+ po/nn.po,  23, 23, 26, 0, 0, 675, 4470, 698, 4493 

+ po/km.po,  9, 9, 9, 0, 0, 689, 4484, 698, 4493 

+ po/pt.po,  227, 1159, 1489, 0, 0, 471, 3334, 698, 4493 

+ po/fur.po,  18, 18, 20, 0, 0, 680, 4475, 698, 4493 

+ po/ro.po,  25, 25, 25, 0, 0, 673, 4468, 698, 4493 

+ po/cy.po,  14, 14, 15, 0, 0, 684, 4479, 698, 4493 

+ po/nso.po,  9, 9, 10, 0, 0, 689, 4484, 698, 4493 

+ po/mk.po,  128, 744, 912, 0, 0, 570, 3749, 698, 4493 

+ po/policycoreutils.pot,  0, 0, 0, 0, 0, 67, 388, 67, 388 

+ po/zh_TW.Big5.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/zh_CN.GB2312.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/xh.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/wo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/vi_VN.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/tl.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/si_LK.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/mg.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lv_LV.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lt_LT.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/la.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/ku.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/ks.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/hy.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/es_MX.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/dz.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/bo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/bn_BD.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/az.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/aln.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/gui.pot,  0, 0, 0, 0, 0, 208, 1141, 208, 1141 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ko.po,  28, 236, 197, 0, 0, 0, 0, 28, 236 

+ po/es.po,  28, 236, 244, 0, 0, 0, 0, 28, 236 

+ po/da.po,  28, 236, 210, 0, 0, 0, 0, 28, 236 

+ po/cs.po,  1, 1, 1, 0, 0, 27, 235, 28, 236 

+ po/hu.po,  19, 116, 98, 0, 0, 9, 120, 28, 236 

+ po/zh_CN.po,  28, 236, 110, 0, 0, 0, 0, 28, 236 

+ po/pt_BR.po,  28, 236, 263, 0, 0, 0, 0, 28, 236 

+ po/ja.po,  28, 236, 117, 0, 0, 0, 0, 28, 236 

+ po/nl.po,  28, 236, 240, 0, 0, 0, 0, 28, 236 

+ po/ru.po,  28, 236, 222, 0, 0, 0, 0, 28, 236 

+ po/zh_TW.po,  28, 236, 80, 0, 0, 0, 0, 28, 236 

+ po/pl.po,  28, 236, 223, 0, 0, 0, 0, 28, 236 

+ po/sv.po,  28, 236, 211, 0, 0, 0, 0, 28, 236 

+ po/sandbox.pot,  0, 0, 0, 0, 0, 28, 236, 28, 236 

+ po/fr.po,  28, 236, 297, 0, 0, 0, 0, 28, 236 

+ po/de.po,  28, 236, 233, 0, 0, 0, 0, 28, 236 

+ po/uk.po,  28, 236, 227, 0, 0, 0, 0, 28, 236 

+ po/it.po,  8, 89, 89, 20, 147, 0, 0, 28, 236 

+ po/bn_IN.po,  564, 3618, 3652, 0, 0, 134, 875, 698, 4493 

+ po/zu.po,  10, 10, 11, 0, 0, 688, 4483, 698, 4493 

+ po/as.po,  564, 3618, 3545, 0, 0, 134, 875, 698, 4493 

+ po/kn.po,  565, 3619, 2964, 0, 0, 133, 874, 698, 4493 

+ po/ia.po,  18, 19, 20, 0, 0, 680, 4474, 698, 4493 

+ po/fil.po,  6, 6, 8, 0, 0, 692, 4487, 698, 4493 

+ po/zh_HK.po,  4, 4, 4, 0, 0, 694, 4489, 698, 4493 

+ po/fi.po,  271, 1282, 1095, 0, 0, 427, 3211, 698, 4493 

+ po/bal.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/ar.po,  219, 1149, 1144, 0, 0, 479, 3344, 698, 4493 

+ po/sr.po,  224, 1155, 1250, 0, 0, 474, 3338, 698, 4493 

+ po/sk.po,  157, 775, 702, 0, 0, 541, 3718, 698, 4493 

+ po/mai.po,  184, 932, 1042, 0, 0, 514, 3561, 698, 4493 

+ po/is.po,  25, 25, 27, 0, 0, 673, 4468, 698, 4493 

+ po/el.po,  55, 109, 111, 0, 0, 643, 4384, 698, 4493 

+ po/hr.po,  171, 813, 814, 0, 0, 527, 3680, 698, 4493 

+ po/bg.po,  244, 1250, 1448, 0, 0, 454, 3243, 698, 4493 

+ po/eo.po,  4, 4, 4, 0, 0, 694, 4489, 698, 4493 

+ po/tg.po,  20, 20, 24, 0, 0, 678, 4473, 698, 4493 

+ po/mn.po,  8, 8, 8, 0, 0, 690, 4485, 698, 4493 

+ po/ga.po,  8, 8, 9, 0, 0, 690, 4485, 698, 4493 

+ po/or.po,  564, 3618, 3813, 0, 0, 134, 875, 698, 4493 

+ po/de_CH.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/vi.po,  20, 21, 35, 0, 0, 678, 4472, 698, 4493 

+ po/be.po,  19, 19, 19, 0, 0, 679, 4474, 698, 4493 

+ po/sl.po,  18, 18, 18, 0, 0, 680, 4475, 698, 4493 

+ po/my.po,  7, 7, 7, 0, 0, 691, 4486, 698, 4493 

+ po/lt.po,  22, 22, 24, 0, 0, 676, 4471, 698, 4493 

+ po/af.po,  10, 10, 11, 0, 0, 688, 4483, 698, 4493 

+ po/en_GB.po,  225, 1158, 1158, 0, 0, 473, 3335, 698, 4493 

+ po/sr@latin.po,  220, 1151, 1245, 0, 0, 478, 3342, 698, 4493 

+ po/brx.po,  1, 1, 2, 0, 0, 697, 4492, 698, 4493 

+ po/ta.po,  564, 3618, 2946, 0, 0, 134, 875, 698, 4493 

+ po/ilo.po,  8, 8, 10, 0, 0, 690, 4485, 698, 4493 

+ po/ms.po,  80, 432, 420, 0, 0, 618, 4061, 698, 4493 

+ po/lv.po,  21, 21, 22, 0, 0, 677, 4472, 698, 4493 

+ po/pa.po,  564, 3618, 4051, 0, 0, 134, 875, 698, 4493 

+ po/gl.po,  23, 24, 26, 0, 0, 675, 4469, 698, 4493 

+ po/gu.po,  564, 3618, 3833, 0, 0, 134, 875, 698, 4493 

+ po/bs.po,  138, 754, 757, 0, 0, 560, 3739, 698, 4493 

+ po/kk.po,  20, 20, 22, 0, 0, 678, 4473, 698, 4493 

+ po/bn.po,  29, 29, 33, 0, 0, 669, 4464, 698, 4493 

+ po/tr.po,  41, 52, 55, 0, 0, 657, 4441, 698, 4493 

+ po/fa.po,  23, 23, 28, 0, 0, 675, 4470, 698, 4493 

+ po/ca.po,  576, 3679, 4536, 0, 0, 122, 814, 698, 4493 

+ po/id.po,  32, 33, 34, 0, 0, 666, 4460, 698, 4493 

+ po/sq.po,  30, 30, 35, 0, 0, 668, 4463, 698, 4493 

+ po/he.po,  28, 28, 30, 0, 0, 670, 4465, 698, 4493 

+ po/ur.po,  12, 12, 16, 0, 0, 686, 4481, 698, 4493 

+ po/ne.po,  8, 8, 11, 0, 0, 690, 4485, 698, 4493 

+ po/ast.po,  9, 9, 9, 0, 0, 689, 4484, 698, 4493 

+ po/python.pot,  0, 0, 0, 0, 0, 698, 4497, 698, 4497 

+ po/th.po,  21, 21, 21, 0, 0, 677, 4472, 698, 4493 

+ po/am.po,  9, 9, 11, 0, 0, 689, 4484, 698, 4493 

+ po/hi.po,  564, 3618, 4038, 0, 0, 134, 875, 698, 4493 

+ po/nds.po,  28, 29, 28, 0, 0, 670, 4464, 698, 4493 

+ po/eu.po,  39, 48, 50, 0, 0, 659, 4445, 698, 4493 

+ po/br.po,  10, 10, 12, 0, 0, 688, 4483, 698, 4493 

+ po/et.po,  31, 31, 32, 0, 0, 667, 4462, 698, 4493 

+ po/si.po,  19, 19, 24, 0, 0, 679, 4474, 698, 4493 

+ po/ml.po,  564, 3618, 2805, 0, 0, 134, 875, 698, 4493 

+ po/ky.po,  1, 1, 1, 0, 0, 697, 4492, 698, 4493 

+ po/te.po,  564, 3618, 2852, 0, 0, 134, 875, 698, 4493 

+ po/ka.po,  24, 24, 24, 0, 0, 674, 4469, 698, 4493 

+ po/mr.po,  564, 3618, 3319, 0, 0, 134, 875, 698, 4493 

+ po/nb.po,  44, 69, 73, 0, 0, 654, 4424, 698, 4493 

+ po/nn.po,  23, 23, 26, 0, 0, 675, 4470, 698, 4493 

+ po/km.po,  9, 9, 9, 0, 0, 689, 4484, 698, 4493 

+ po/pt.po,  227, 1159, 1489, 0, 0, 471, 3334, 698, 4493 

+ po/fur.po,  18, 18, 20, 0, 0, 680, 4475, 698, 4493 

+ po/ro.po,  25, 25, 25, 0, 0, 673, 4468, 698, 4493 

+ po/cy.po,  14, 14, 15, 0, 0, 684, 4479, 698, 4493 

+ po/nso.po,  9, 9, 10, 0, 0, 689, 4484, 698, 4493 

+ po/mk.po,  128, 744, 912, 0, 0, 570, 3749, 698, 4493 

+ po/policycoreutils.pot,  0, 0, 0, 0, 0, 67, 388, 67, 388 

+ po/zh_TW.Big5.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/zh_CN.GB2312.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/xh.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/wo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/vi_VN.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/tl.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/si_LK.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/mg.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lv_LV.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lt_LT.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/lo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/la.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/ku.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/ks.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/hy.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/es_MX.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/dz.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/bo.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/bn_BD.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/az.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/aln.po,  0, 0, 0, 0, 0, 1078, 7678, 1078, 7678 

+ po/gui.pot,  0, 0, 0, 0, 0, 208, 1141, 208, 1141 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,16 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/hu.po,  26, 228, 213, 0, 0, 0, 0, 26, 228 

+ po/cs.po,  26, 230, 220, 0, 0, 0, 0, 26, 230 

+ po/it.po,  26, 230, 241, 0, 0, 0, 0, 26, 230 

+ po/uk.po,  26, 228, 238, 0, 0, 0, 0, 26, 228 

+ po/sk.po,  26, 228, 245, 0, 0, 0, 0, 26, 228 

+ po/zh_CN.po,  25, 227, 102, 0, 0, 1, 1, 26, 228 

+ po/hr.po,  26, 228, 210, 0, 0, 0, 0, 26, 228 

+ po/tr.po,  26, 228, 222, 0, 0, 0, 0, 26, 228 

+ po/de.po,  26, 228, 215, 0, 0, 0, 0, 26, 228 

+ po/da.po,  8, 67, 69, 0, 0, 0, 0, 8, 67 

+ po/pl.po,  26, 230, 229, 0, 0, 0, 0, 26, 230 

+ po/sv.po,  26, 228, 215, 0, 0, 0, 0, 26, 228 

+ po/zh_TW.po,  26, 228, 94, 0, 0, 0, 0, 26, 228 

+ po/id.po,  26, 228, 214, 0, 0, 0, 0, 26, 228 

+ po/pt_BR.po,  26, 230, 257, 0, 0, 0, 0, 26, 230 

@@ -0,0 +1,23 @@ 

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xb6 in position 2: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfa in position 175: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfd in position 1: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfd in position 1: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe7 in position 31: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf8 in position 22: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf6 in position 173: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xbb in position 7: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xbe in position 5: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe8 in position 39: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf0 in position 0: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xc0 in position 0: invalid start byte

@@ -0,0 +1,54 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/pl.po,  29, 78, 76, 0, 0, 2, 6, 31, 84 

+ po/fr.gmo,  24, 61, 73, 0, 0, 0, 0, 24, 61 

+ po/eo.gmo,  29, 78, 89, 0, 0, 0, 0, 29, 78 

+ po/zh_CN.po,  29, 78, 40, 0, 0, 2, 6, 31, 84 

+ po/zh_TW.gmo,  24, 61, 26, 0, 0, 0, 0, 24, 61 

+ po/nb.po,  24, 61, 58, 2, 8, 5, 15, 31, 84 

+ po/ro.po,  11, 31, 32, 3, 16, 17, 37, 31, 84 

+ po/fi.po,  29, 78, 76, 0, 0, 2, 6, 31, 84 

+ po/es.gmo,  21, 48, 54, 0, 0, 0, 0, 21, 48 

+ po/ko.po,  24, 61, 61, 2, 8, 5, 15, 31, 84 

+ po/ja.gmo,  26, 68, 26, 0, 0, 0, 0, 26, 68 

+ po/de.po,  29, 78, 75, 0, 0, 2, 6, 31, 84 

+ po/da.po,  29, 78, 75, 0, 0, 2, 6, 31, 84 

+ po/wa.po,  2, 8, 15, 1, 5, 28, 71, 31, 84 

+ po/ga.po,  29, 78, 91, 0, 0, 2, 6, 31, 84 

+ po/hu.po,  26, 68, 69, 3, 10, 2, 6, 31, 84 

+ po/sv.po,  29, 78, 75, 0, 0, 2, 6, 31, 84 

+ po/ru.gmo,  29, 78, 80, 0, 0, 0, 0, 29, 78 

+ po/ja.po,  26, 68, 26, 3, 10, 2, 6, 31, 84 

+ po/sl.po,  2, 8, 10, 1, 5, 28, 71, 31, 84 

+ po/sk.po,  2, 8, 8, 1, 5, 28, 71, 31, 84 

+ po/vi.gmo,  29, 78, 140, 0, 0, 0, 0, 29, 78 

+ po/ga.gmo,  29, 78, 91, 0, 0, 0, 0, 29, 78 

+ po/ru.po,  29, 78, 80, 0, 0, 2, 6, 31, 84 

+ po/lv.po,  29, 78, 75, 0, 0, 2, 6, 31, 84 

+ po/es.po,  21, 48, 54, 2, 8, 8, 28, 31, 84 

+ po/th.gmo,  29, 78, 38, 0, 0, 0, 0, 29, 78 

+ po/hu.gmo,  26, 68, 69, 0, 0, 0, 0, 26, 68 

+ po/fr.po,  24, 61, 73, 2, 8, 5, 15, 31, 84 

+ po/ro.gmo,  11, 31, 32, 0, 0, 0, 0, 11, 31 

+ po/th.po,  29, 78, 38, 0, 0, 2, 6, 31, 84 

+ po/vi.po,  29, 78, 140, 0, 0, 2, 6, 31, 84 

+ po/it.gmo,  29, 78, 90, 0, 0, 0, 0, 29, 78 

+ po/is.po,  24, 61, 68, 2, 8, 5, 15, 31, 84 

+ po/de.gmo,  29, 78, 75, 0, 0, 0, 0, 29, 78 

+ po/nl.po,  29, 78, 88, 0, 0, 2, 6, 31, 84 

+ po/cs.gmo,  29, 78, 79, 0, 0, 0, 0, 29, 78 

+ po/nl.gmo,  29, 78, 88, 0, 0, 0, 0, 29, 78 

+ po/da.gmo,  29, 78, 75, 0, 0, 0, 0, 29, 78 

+ po/it.po,  29, 78, 90, 0, 0, 2, 6, 31, 84 

+ po/id.po,  29, 78, 82, 0, 0, 2, 6, 31, 84 

+ po/id.gmo,  29, 78, 82, 0, 0, 0, 0, 29, 78 

+ po/popt.pot,  0, 0, 0, 0, 0, 31, 84, 31, 84 

+ po/cs.po,  29, 78, 79, 0, 0, 2, 6, 31, 84 

+ po/fi.gmo,  29, 78, 76, 0, 0, 0, 0, 29, 78 

+ po/lv.gmo,  29, 78, 75, 0, 0, 0, 0, 29, 78 

+ po/zh_CN.gmo,  29, 78, 40, 0, 0, 0, 0, 29, 78 

+ po/zh_TW.po,  24, 61, 26, 2, 8, 5, 15, 31, 84 

+ po/tr.po,  21, 48, 52, 3, 13, 7, 23, 31, 84 

+ po/uk.po,  2, 8, 8, 1, 5, 28, 71, 31, 84 

+ po/eo.po,  29, 78, 89, 0, 0, 2, 6, 31, 84 

+ po/gl.po,  21, 48, 56, 3, 13, 7, 23, 31, 84 

+ po/pt.po,  24, 61, 69, 2, 8, 5, 15, 31, 84 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./man-po/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./man-po/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,29 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ man-po/template-man.pot,  0, 0, 0, 0, 0, 78, 517, 78, 517 

+ man-po/fr.po,  593, 5211, 5721, 0, 0, 0, 0, 593, 5211 

+ man-po/template-man-top.pot,  0, 0, 0, 0, 0, 662, 13136, 662, 13136 

+ man-po/zh_CN.po,  34, 41, 37, 0, 0, 559, 5170, 593, 5211 

+ man-po/template-man-ps.pot,  0, 0, 0, 0, 0, 787, 5978, 787, 5978 

+ man-po/de.po,  583, 4927, 5018, 1, 60, 9, 224, 593, 5211 

+ man-po/pl.po,  593, 5211, 4699, 0, 0, 0, 0, 593, 5211 

+ man-po/sv.po,  593, 5211, 4807, 0, 0, 0, 0, 593, 5211 

+ man-po/uk.po,  593, 5211, 5270, 0, 0, 0, 0, 593, 5211 

+ man-po/pt_BR.po,  593, 5211, 5656, 0, 0, 0, 0, 593, 5211 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/fr.po,  795, 4574, 5399, 3, 19, 0, 0, 798, 4593 

+ po/zh_CN.po,  63, 158, 105, 347, 1194, 388, 3241, 798, 4593 

+ po/procps-ng.pot,  0, 0, 0, 0, 0, 798, 4593, 798, 4593 

+ po/uk.gmo,  795, 4574, 4883, 0, 0, 0, 0, 795, 4574 

+ po/de.po,  690, 3410, 3371, 9, 61, 99, 1122, 798, 4593 

+ po/pl.gmo,  795, 4574, 4588, 0, 0, 0, 0, 795, 4574 

+ po/pl.po,  795, 4574, 4588, 3, 19, 0, 0, 798, 4593 

+ po/pt_BR.gmo,  795, 4574, 5145, 0, 0, 0, 0, 795, 4574 

+ po/sv.po,  795, 4574, 4385, 3, 19, 0, 0, 798, 4593 

+ po/vi.gmo,  754, 4366, 6158, 0, 0, 0, 0, 754, 4366 

+ po/sv.gmo,  795, 4574, 4385, 0, 0, 0, 0, 795, 4574 

+ po/de.gmo,  690, 3410, 3371, 0, 0, 0, 0, 690, 3410 

+ po/uk.po,  795, 4574, 4883, 3, 19, 0, 0, 798, 4593 

+ po/vi.po,  754, 4366, 6158, 21, 158, 23, 69, 798, 4593 

+ po/pt_BR.po,  795, 4574, 5145, 3, 19, 0, 0, 798, 4593 

+ po/fr.gmo,  795, 4574, 5399, 0, 0, 0, 0, 795, 4574 

+ po/zh_CN.gmo,  63, 158, 105, 0, 0, 0, 0, 63, 158 

@@ -0,0 +1,18 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe3 in position 36: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf8 in position 187: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xc0 in position 15: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe1 in position 6: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 3: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,53 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/fr.po,  80, 646, 747, 5, 346, 0, 0, 85, 992 

+ po/cs.po,  75, 497, 498, 10, 495, 0, 0, 85, 992 

+ po/hu.gmo,  80, 646, 651, 0, 0, 0, 0, 80, 646 

+ po/eo.po,  80, 646, 678, 5, 346, 0, 0, 85, 992 

+ po/eu.gmo,  68, 452, 457, 0, 0, 0, 0, 68, 452 

+ po/ro.po,  11, 81, 91, 18, 200, 56, 711, 85, 992 

+ po/fi.po,  80, 646, 586, 5, 346, 0, 0, 85, 992 

+ po/zh_CN.po,  75, 497, 271, 10, 495, 0, 0, 85, 992 

+ po/ru.po,  80, 646, 664, 5, 346, 0, 0, 85, 992 

+ po/da.gmo,  80, 646, 648, 0, 0, 0, 0, 80, 646 

+ po/ca.po,  11, 81, 92, 23, 517, 51, 394, 85, 992 

+ po/eu.po,  68, 452, 457, 16, 533, 1, 7, 85, 992 

+ po/sr.gmo,  80, 646, 678, 0, 0, 0, 0, 80, 646 

+ po/it.po,  75, 497, 544, 10, 495, 0, 0, 85, 992 

+ po/eo.gmo,  80, 646, 678, 0, 0, 0, 0, 80, 646 

+ po/uk.gmo,  80, 646, 716, 0, 0, 0, 0, 80, 646 

+ po/de.po,  80, 646, 655, 5, 346, 0, 0, 85, 992 

+ po/pl.gmo,  80, 646, 672, 0, 0, 0, 0, 80, 646 

+ po/pl.po,  80, 646, 672, 5, 346, 0, 0, 85, 992 

+ po/pt_BR.gmo,  80, 646, 738, 0, 0, 0, 0, 80, 646 

+ po/pt.po,  2, 10, 11, 14, 91, 69, 891, 85, 992 

+ po/id.po,  68, 452, 484, 16, 533, 1, 7, 85, 992 

+ po/it.gmo,  75, 497, 544, 0, 0, 0, 0, 75, 497 

+ po/el.gmo,  80, 646, 703, 0, 0, 0, 0, 80, 646 

+ po/sv.po,  80, 646, 656, 5, 346, 0, 0, 85, 992 

+ po/zh_TW.po,  75, 497, 243, 10, 495, 0, 0, 85, 992 

+ po/ja.po,  34, 203, 87, 21, 512, 30, 277, 85, 992 

+ po/id.gmo,  68, 452, 484, 0, 0, 0, 0, 68, 452 

+ po/vi.gmo,  80, 646, 975, 0, 0, 0, 0, 80, 646 

+ po/zh_TW.gmo,  75, 497, 243, 0, 0, 0, 0, 75, 497 

+ po/sv.gmo,  80, 646, 656, 0, 0, 0, 0, 80, 646 

+ po/hu.po,  80, 646, 651, 5, 346, 0, 0, 85, 992 

+ po/de.gmo,  80, 646, 655, 0, 0, 0, 0, 80, 646 

+ po/uk.po,  80, 646, 716, 5, 346, 0, 0, 85, 992 

+ po/vi.po,  80, 646, 975, 5, 346, 0, 0, 85, 992 

+ po/fi.gmo,  80, 646, 586, 0, 0, 0, 0, 80, 646 

+ po/pt_BR.po,  80, 646, 738, 5, 346, 0, 0, 85, 992 

+ po/bg.po,  34, 203, 270, 21, 512, 30, 277, 85, 992 

+ po/nl.gmo,  80, 646, 678, 0, 0, 0, 0, 80, 646 

+ po/psmisc.pot,  0, 0, 0, 0, 0, 85, 992, 85, 992 

+ po/nl.po,  80, 646, 678, 5, 346, 0, 0, 85, 992 

+ po/fr.gmo,  80, 646, 747, 0, 0, 0, 0, 80, 646 

+ po/nb.po,  34, 203, 212, 21, 512, 30, 277, 85, 992 

+ po/hr.gmo,  80, 646, 659, 0, 0, 0, 0, 80, 646 

+ po/el.po,  80, 646, 703, 5, 346, 0, 0, 85, 992 

+ po/ru.gmo,  80, 646, 664, 0, 0, 0, 0, 80, 646 

+ po/cs.gmo,  75, 497, 498, 0, 0, 0, 0, 75, 497 

+ po/sr.po,  80, 646, 678, 5, 346, 0, 0, 85, 992 

+ po/da.po,  80, 646, 648, 5, 346, 0, 0, 85, 992 

+ po/hr.po,  80, 646, 659, 5, 346, 0, 0, 85, 992 

+ po/zh_CN.gmo,  75, 497, 271, 0, 0, 0, 0, 75, 497 

+ po/bg.gmo,  34, 203, 270, 0, 0, 0, 0, 34, 203 

@@ -0,0 +1,14 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

@@ -0,0 +1,94 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/fi.po,  409, 2013, 1649, 44, 952, 43, 339, 496, 3304 

+ po/ca.gmo,  377, 1937, 2377, 0, 0, 0, 0, 377, 1937 

+ po/es.po,  409, 2013, 2386, 44, 952, 43, 339, 496, 3304 

+ po/id.po,  518, 3390, 3270, 14, 181, 0, 0, 532, 3571 

+ po/be.gmo,  525, 3503, 3276, 0, 0, 0, 0, 525, 3503 

+ po/el.po,  547, 3571, 3638, 0, 0, 0, 0, 547, 3571 

+ po/zh_CN.po,  525, 3516, 1456, 0, 0, 0, 0, 525, 3516 

+ po/cs.po,  534, 3575, 3519, 0, 0, 0, 0, 534, 3575 

+ po/hi.po,  407, 2011, 2239, 43, 951, 46, 342, 496, 3304 

+ po/lt.po,  533, 3616, 3452, 0, 0, 0, 0, 533, 3616 

+ po/af.po,  191, 429, 400, 0, 0, 343, 3275, 534, 3704 

+ po/nn.gmo,  527, 3539, 3290, 0, 0, 0, 0, 527, 3539 

+ po/oc.gmo,  470, 2193, 2667, 0, 0, 0, 0, 470, 2193 

+ po/hu.gmo,  526, 3511, 3473, 0, 0, 0, 0, 526, 3511 

+ po/ja.gmo,  496, 3304, 1617, 0, 0, 0, 0, 496, 3304 

+ po/uk.po,  533, 3616, 3803, 0, 0, 0, 0, 533, 3616 

+ po/sk.gmo,  364, 1243, 1190, 0, 0, 0, 0, 364, 1243 

+ po/de_CH.po,  369, 1754, 1566, 57, 906, 70, 644, 496, 3304 

+ po/ta.po,  407, 2011, 1835, 43, 951, 46, 342, 496, 3304 

+ po/mr.po,  407, 2011, 2002, 43, 951, 46, 342, 496, 3304 

+ po/uk.gmo,  533, 3616, 3803, 0, 0, 0, 0, 533, 3616 

+ po/gl.gmo,  530, 3586, 4279, 0, 0, 0, 0, 530, 3586 

+ po/nl.gmo,  407, 2011, 1932, 0, 0, 0, 0, 407, 2011 

+ po/id.gmo,  518, 3390, 3270, 0, 0, 0, 0, 518, 3390 

+ po/ja.po,  496, 3304, 1617, 0, 0, 0, 0, 496, 3304 

+ po/mr.gmo,  407, 2011, 2002, 0, 0, 0, 0, 407, 2011 

+ po/ta.gmo,  407, 2011, 1835, 0, 0, 0, 0, 407, 2011 

+ po/nn.po,  527, 3539, 3290, 0, 0, 0, 0, 527, 3539 

+ po/gu.gmo,  407, 2011, 2207, 0, 0, 0, 0, 407, 2011 

+ po/sv.po,  534, 3704, 3367, 0, 0, 0, 0, 534, 3704 

+ po/zh_TW.po,  530, 3560, 1519, 0, 0, 0, 0, 530, 3560 

+ po/bn_IN.gmo,  407, 2011, 2154, 0, 0, 0, 0, 407, 2011 

+ po/or.gmo,  407, 2011, 2102, 0, 0, 0, 0, 407, 2011 

+ po/cs.gmo,  534, 3575, 3519, 0, 0, 0, 0, 534, 3575 

+ po/el.gmo,  547, 3571, 3638, 0, 0, 0, 0, 547, 3571 

+ po/pl.po,  533, 3616, 3620, 0, 0, 0, 0, 533, 3616 

+ po/fi.gmo,  409, 2013, 1649, 0, 0, 0, 0, 409, 2013 

+ po/bn_IN.po,  407, 2011, 2154, 43, 951, 46, 342, 496, 3304 

+ po/zh_TW.gmo,  530, 3560, 1519, 0, 0, 0, 0, 530, 3560 

+ po/pt_BR.gmo,  533, 3616, 4098, 0, 0, 0, 0, 533, 3616 

+ po/fr.gmo,  517, 3437, 4043, 0, 0, 0, 0, 517, 3437 

+ po/da.gmo,  532, 3594, 3285, 0, 0, 0, 0, 532, 3594 

+ po/sr@latin.gmo,  407, 2011, 1980, 0, 0, 0, 0, 407, 2011 

+ po/fr.po,  517, 3437, 4043, 0, 0, 0, 0, 517, 3437 

+ po/te.po,  407, 2011, 1809, 43, 951, 46, 342, 496, 3304 

+ po/ko.gmo,  525, 3475, 3034, 0, 0, 0, 0, 525, 3475 

+ po/de.po,  523, 3502, 3253, 0, 0, 3, 9, 526, 3511 

+ po/pa.gmo,  407, 2011, 2223, 0, 0, 0, 0, 407, 2011 

+ po/es.gmo,  409, 2013, 2386, 0, 0, 0, 0, 409, 2013 

+ po/sk.po,  364, 1243, 1190, 0, 0, 162, 2283, 526, 3526 

+ po/pt.po,  374, 1932, 2171, 55, 981, 67, 391, 496, 3304 

+ po/de.gmo,  523, 3502, 3253, 0, 0, 0, 0, 523, 3502 

+ po/hu.po,  526, 3511, 3473, 0, 0, 0, 0, 526, 3511 

+ po/be.po,  525, 3503, 3276, 1, 8, 0, 0, 526, 3511 

+ po/sv.gmo,  534, 3704, 3367, 0, 0, 0, 0, 534, 3704 

+ po/gu.po,  407, 2011, 2207, 43, 951, 46, 342, 496, 3304 

+ po/pt.gmo,  374, 1932, 2171, 0, 0, 0, 0, 374, 1932 

+ po/oc.po,  470, 2193, 2667, 0, 0, 57, 1337, 527, 3530 

+ po/he.gmo,  84, 190, 195, 0, 0, 0, 0, 84, 190 

+ po/pl.gmo,  533, 3616, 3620, 0, 0, 0, 0, 533, 3616 

+ po/gl.po,  530, 3586, 4279, 0, 0, 0, 0, 530, 3586 

+ po/ru.po,  532, 3594, 3749, 0, 0, 0, 0, 532, 3594 

+ po/pa.po,  407, 2011, 2223, 43, 951, 46, 342, 496, 3304 

+ po/sr@latin.po,  407, 2011, 1980, 43, 951, 46, 342, 496, 3304 

+ po/or.po,  407, 2011, 2102, 43, 951, 46, 342, 496, 3304 

+ po/kn.gmo,  407, 2011, 1869, 0, 0, 0, 0, 407, 2011 

+ po/kn.po,  407, 2011, 1869, 43, 951, 46, 342, 496, 3304 

+ po/de_CH.gmo,  369, 1754, 1566, 0, 0, 0, 0, 369, 1754 

+ po/ko.po,  525, 3475, 3034, 0, 0, 0, 0, 525, 3475 

+ po/tr.gmo,  527, 3539, 3237, 0, 0, 0, 0, 527, 3539 

+ po/it.gmo,  532, 3594, 3958, 0, 0, 0, 0, 532, 3594 

+ po/pt_BR.po,  533, 3616, 4098, 0, 0, 0, 0, 533, 3616 

+ po/pulseaudio.pot,  0, 0, 0, 0, 0, 533, 3616, 533, 3616 

+ po/hr.po,  531, 3600, 3412, 0, 0, 0, 0, 531, 3600 

+ po/af.gmo,  191, 429, 400, 0, 0, 0, 0, 191, 429 

+ po/it.po,  532, 3594, 3958, 0, 0, 0, 0, 532, 3594 

+ po/da.po,  532, 3594, 3285, 0, 0, 0, 0, 532, 3594 

+ po/as.gmo,  406, 2010, 2145, 0, 0, 0, 0, 406, 2010 

+ po/hi.gmo,  407, 2011, 2239, 0, 0, 0, 0, 407, 2011 

+ po/he.po,  84, 190, 195, 15, 48, 397, 3066, 496, 3304 

+ po/tr.po,  527, 3539, 3237, 0, 0, 0, 0, 527, 3539 

+ po/nl.po,  407, 2011, 1932, 43, 951, 46, 342, 496, 3304 

+ po/te.gmo,  407, 2011, 1809, 0, 0, 0, 0, 407, 2011 

+ po/as.po,  406, 2010, 2145, 44, 952, 46, 342, 496, 3304 

+ po/ml.gmo,  407, 2011, 1752, 0, 0, 0, 0, 407, 2011 

+ po/sr.gmo,  407, 2011, 1980, 0, 0, 0, 0, 407, 2011 

+ po/hr.gmo,  531, 3600, 3412, 0, 0, 0, 0, 531, 3600 

+ po/lt.gmo,  533, 3616, 3452, 0, 0, 0, 0, 533, 3616 

+ po/zh_CN.gmo,  525, 3516, 1456, 0, 0, 0, 0, 525, 3516 

+ po/ca.po,  377, 1937, 2377, 59, 985, 60, 382, 496, 3304 

+ po/ml.po,  407, 2011, 1752, 43, 951, 46, 342, 496, 3304 

+ po/ru.gmo,  532, 3594, 3749, 0, 0, 0, 0, 532, 3594 

+ po/sr.po,  407, 2011, 1980, 43, 951, 46, 342, 496, 3304 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

@@ -0,0 +1,190 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/zu.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_TW.po,  32, 255, 90, 1, 43, 146, 1307, 179, 1605 

+ po/zh_TW.mo,  32, 255, 90, 0, 0, 0, 0, 32, 255 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/zh_HK.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_CN.po,  173, 1505, 660, 3, 61, 3, 39, 179, 1605 

+ po/zh_CN.mo,  173, 1505, 660, 0, 0, 0, 0, 173, 1505 

+ po/yo.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/yo.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/wba.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/wba.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/vi.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/vi.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ur.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/ur.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/uk.po,  173, 1505, 1370, 3, 61, 3, 39, 179, 1605 

+ po/uk.mo,  173, 1505, 1370, 0, 0, 0, 0, 173, 1505 

+ po/tw.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/tw.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/tr.po,  22, 186, 152, 1, 43, 156, 1376, 179, 1605 

+ po/tr.mo,  22, 186, 152, 0, 0, 0, 0, 22, 186 

+ po/th.po,  20, 177, 74, 1, 43, 158, 1385, 179, 1605 

+ po/th.mo,  20, 177, 74, 0, 0, 0, 0, 20, 177 

+ po/tg.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/tg.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/te.po,  19, 168, 139, 1, 43, 159, 1394, 179, 1605 

+ po/te.mo,  19, 168, 139, 0, 0, 0, 0, 19, 168 

+ po/ta.po,  13, 128, 93, 1, 43, 165, 1434, 179, 1605 

+ po/ta.mo,  13, 128, 93, 0, 0, 0, 0, 13, 128 

+ po/sv.po,  173, 1505, 1346, 3, 61, 3, 39, 179, 1605 

+ po/sv.mo,  173, 1505, 1346, 0, 0, 0, 0, 173, 1505 

+ po/sr@latin.po,  13, 128, 113, 1, 43, 165, 1434, 179, 1605 

+ po/sr@latin.mo,  13, 128, 113, 0, 0, 0, 0, 13, 128 

+ po/sr.po,  112, 983, 914, 3, 61, 64, 561, 179, 1605 

+ po/sr.mo,  112, 983, 914, 0, 0, 0, 0, 112, 983 

+ po/sq.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/sq.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sl.po,  12, 123, 104, 1, 43, 166, 1439, 179, 1605 

+ po/sl.mo,  12, 123, 104, 0, 0, 0, 0, 12, 123 

+ po/sk.po,  173, 1505, 1358, 3, 61, 3, 39, 179, 1605 

+ po/sk.mo,  173, 1505, 1358, 0, 0, 0, 0, 173, 1505 

+ po/si.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/si.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ru.po,  164, 1421, 1210, 3, 61, 12, 123, 179, 1605 

+ po/ru.mo,  164, 1421, 1210, 0, 0, 0, 0, 164, 1421 

+ po/ro.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/ro.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pykickstart.pot,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/pt_BR.po,  140, 1208, 1289, 3, 61, 36, 336, 179, 1605 

+ po/pt_BR.mo,  140, 1208, 1289, 0, 0, 0, 0, 140, 1208 

+ po/pt.po,  34, 277, 298, 1, 43, 144, 1285, 179, 1605 

+ po/pt.mo,  34, 277, 298, 0, 0, 0, 0, 34, 277 

+ po/pl.po,  173, 1505, 1414, 3, 61, 3, 39, 179, 1605 

+ po/pl.mo,  173, 1505, 1414, 0, 0, 0, 0, 173, 1505 

+ po/pa.po,  20, 175, 198, 1, 43, 158, 1387, 179, 1605 

+ po/pa.mo,  20, 175, 198, 0, 0, 0, 0, 20, 175 

+ po/or.po,  20, 175, 165, 1, 43, 158, 1387, 179, 1605 

+ po/or.mo,  20, 175, 165, 0, 0, 0, 0, 20, 175 

+ po/nso.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/nso.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nn.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/nn.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nl.po,  173, 1505, 1537, 3, 61, 3, 39, 179, 1605 

+ po/nl.mo,  173, 1505, 1537, 0, 0, 0, 0, 173, 1505 

+ po/ne.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/ne.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nds.po,  3, 27, 26, 0, 0, 176, 1578, 179, 1605 

+ po/nds.mo,  3, 27, 26, 0, 0, 0, 0, 3, 27 

+ po/nb.po,  13, 128, 113, 1, 43, 165, 1434, 179, 1605 

+ po/nb.mo,  13, 128, 113, 0, 0, 0, 0, 13, 128 

+ po/ms.po,  12, 123, 113, 1, 43, 166, 1439, 179, 1605 

+ po/ms.mo,  12, 123, 113, 0, 0, 0, 0, 12, 123 

+ po/mr.po,  13, 128, 118, 1, 43, 165, 1434, 179, 1605 

+ po/mr.mo,  13, 128, 118, 0, 0, 0, 0, 13, 128 

+ po/mn.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/mn.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ml.po,  13, 128, 98, 1, 43, 165, 1434, 179, 1605 

+ po/ml.mo,  13, 128, 98, 0, 0, 0, 0, 13, 128 

+ po/mk.po,  12, 123, 127, 1, 43, 166, 1439, 179, 1605 

+ po/mk.mo,  12, 123, 127, 0, 0, 0, 0, 12, 123 

+ po/mai.po,  12, 123, 124, 1, 43, 166, 1439, 179, 1605 

+ po/mai.mo,  12, 123, 124, 0, 0, 0, 0, 12, 123 

+ po/lv.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/lv.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ky.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/ky.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/kw_GB.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/kw@uccor.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/kw@kkcor.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kw.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/kw.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ko.po,  22, 186, 154, 1, 43, 156, 1376, 179, 1605 

+ po/ko.mo,  22, 186, 154, 0, 0, 0, 0, 22, 186 

+ po/kn.po,  22, 186, 157, 1, 43, 156, 1376, 179, 1605 

+ po/kn.mo,  22, 186, 157, 0, 0, 0, 0, 22, 186 

+ po/km.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/km.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kk.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/kk.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ka.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/ka.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ja.po,  173, 1505, 633, 3, 61, 3, 39, 179, 1605 

+ po/ja.mo,  173, 1505, 633, 0, 0, 0, 0, 173, 1505 

+ po/it.po,  37, 270, 296, 2, 48, 140, 1287, 179, 1605 

+ po/it.mo,  37, 270, 296, 0, 0, 0, 0, 37, 270 

+ po/is.po,  13, 128, 121, 1, 43, 165, 1434, 179, 1605 

+ po/is.mo,  13, 128, 121, 0, 0, 0, 0, 13, 128 

+ po/ilo.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/ilo.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/id.po,  14, 134, 127, 1, 43, 164, 1428, 179, 1605 

+ po/id.mo,  14, 134, 127, 0, 0, 0, 0, 14, 134 

+ po/ia.po,  22, 186, 209, 1, 43, 156, 1376, 179, 1605 

+ po/ia.mo,  22, 186, 209, 0, 0, 0, 0, 22, 186 

+ po/hu.po,  39, 310, 300, 1, 43, 139, 1252, 179, 1605 

+ po/hu.mo,  39, 310, 300, 0, 0, 0, 0, 39, 310 

+ po/hr.po,  13, 128, 118, 1, 43, 165, 1434, 179, 1605 

+ po/hr.mo,  13, 128, 118, 0, 0, 0, 0, 13, 128 

+ po/hi.po,  22, 186, 203, 1, 43, 156, 1376, 179, 1605 

+ po/hi.mo,  22, 186, 203, 0, 0, 0, 0, 22, 186 

+ po/he.po,  13, 128, 103, 1, 43, 165, 1434, 179, 1605 

+ po/he.mo,  13, 128, 103, 0, 0, 0, 0, 13, 128 

+ po/gu.po,  22, 186, 186, 1, 43, 156, 1376, 179, 1605 

+ po/gu.mo,  22, 186, 186, 0, 0, 0, 0, 22, 186 

+ po/gl.po,  1, 3, 3, 0, 0, 178, 1602, 179, 1605 

+ po/gl.mo,  1, 3, 3, 0, 0, 0, 0, 1, 3 

+ po/fr.po,  173, 1505, 1647, 3, 61, 3, 39, 179, 1605 

+ po/fr.mo,  173, 1505, 1647, 0, 0, 0, 0, 173, 1505 

+ po/fi.po,  22, 186, 138, 1, 43, 156, 1376, 179, 1605 

+ po/fi.mo,  22, 186, 138, 0, 0, 0, 0, 22, 186 

+ po/fa.po,  20, 175, 175, 1, 43, 158, 1387, 179, 1605 

+ po/fa.mo,  20, 175, 175, 0, 0, 0, 0, 20, 175 

+ po/eu.po,  1, 3, 3, 0, 0, 178, 1602, 179, 1605 

+ po/eu.mo,  1, 3, 3, 0, 0, 0, 0, 1, 3 

+ po/et.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/et.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/es.po,  173, 1505, 1641, 3, 61, 3, 39, 179, 1605 

+ po/es.mo,  173, 1505, 1641, 0, 0, 0, 0, 173, 1505 

+ po/eo.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/eo.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/en_GB.po,  20, 175, 175, 1, 43, 158, 1387, 179, 1605 

+ po/en_GB.mo,  20, 175, 175, 0, 0, 0, 0, 20, 175 

+ po/el.po,  13, 128, 134, 1, 43, 165, 1434, 179, 1605 

+ po/el.mo,  13, 128, 134, 0, 0, 0, 0, 13, 128 

+ po/de_CH.po,  13, 128, 133, 1, 43, 165, 1434, 179, 1605 

+ po/de_CH.mo,  13, 128, 133, 0, 0, 0, 0, 13, 128 

+ po/de.po,  140, 1208, 1168, 3, 61, 36, 336, 179, 1605 

+ po/de.mo,  140, 1208, 1168, 0, 0, 0, 0, 140, 1208 

+ po/da.po,  26, 226, 206, 1, 43, 152, 1336, 179, 1605 

+ po/da.mo,  26, 226, 206, 0, 0, 0, 0, 26, 226 

+ po/cy.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/cy.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/cs.po,  164, 1421, 1235, 3, 61, 12, 123, 179, 1605 

+ po/cs.mo,  164, 1421, 1235, 0, 0, 0, 0, 164, 1421 

+ po/ca.po,  167, 1447, 1654, 3, 61, 9, 97, 179, 1605 

+ po/ca.mo,  167, 1447, 1654, 0, 0, 0, 0, 167, 1447 

+ po/bs.po,  13, 130, 119, 1, 43, 165, 1432, 179, 1605 

+ po/bs.mo,  13, 130, 119, 0, 0, 0, 0, 13, 130 

+ po/brx.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/brx.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/br.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/br.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bo.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/bo.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bn_IN.po,  22, 186, 186, 1, 43, 156, 1376, 179, 1605 

+ po/bn_IN.mo,  22, 186, 186, 0, 0, 0, 0, 22, 186 

+ po/bn.po,  22, 186, 186, 1, 43, 156, 1376, 179, 1605 

+ po/bn.mo,  22, 186, 186, 0, 0, 0, 0, 22, 186 

+ po/bg.po,  25, 215, 211, 1, 43, 153, 1347, 179, 1605 

+ po/bg.mo,  25, 215, 211, 0, 0, 0, 0, 25, 215 

+ po/be.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/be.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bal.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/bal.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ast.po,  13, 128, 143, 1, 43, 165, 1434, 179, 1605 

+ po/ast.mo,  13, 128, 143, 0, 0, 0, 0, 13, 128 

+ po/as.po,  26, 226, 209, 1, 43, 152, 1336, 179, 1605 

+ po/as.mo,  26, 226, 209, 0, 0, 0, 0, 26, 226 

+ po/ar.po,  20, 175, 162, 1, 43, 158, 1387, 179, 1605 

+ po/ar.mo,  20, 175, 162, 0, 0, 0, 0, 20, 175 

+ po/anp.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/anp.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/am.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/am.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/af.po,  0, 0, 0, 0, 0, 179, 1605, 179, 1605 

+ po/af.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

@@ -0,0 +1,158 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  0, 0, 0, 0, 0, 76, 558, 76, 558 

+ po/zu.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_TW.po,  75, 524, 250, 0, 0, 1, 34, 76, 558 

+ po/zh_TW.mo,  75, 524, 250, 0, 0, 0, 0, 75, 524 

+ po/zh_CN.po,  75, 524, 260, 0, 0, 1, 34, 76, 558 

+ po/zh_CN.mo,  75, 524, 260, 0, 0, 0, 0, 75, 524 

+ po/vi.po,  0, 0, 0, 0, 0, 76, 558, 76, 558 

+ po/vi.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ur.po,  3, 37, 37, 0, 0, 73, 521, 76, 558 

+ po/ur.mo,  3, 37, 37, 0, 0, 0, 0, 3, 37 

+ po/uk.po,  75, 524, 524, 0, 0, 1, 34, 76, 558 

+ po/uk.mo,  75, 524, 524, 0, 0, 0, 0, 75, 524 

+ po/tr.po,  10, 62, 49, 0, 0, 66, 496, 76, 558 

+ po/tr.mo,  10, 62, 49, 0, 0, 0, 0, 10, 62 

+ po/th.po,  7, 52, 16, 0, 0, 69, 506, 76, 558 

+ po/th.mo,  7, 52, 16, 0, 0, 0, 0, 7, 52 

+ po/tg.po,  3, 12, 15, 0, 0, 73, 546, 76, 558 

+ po/tg.mo,  3, 12, 15, 0, 0, 0, 0, 3, 12 

+ po/te.po,  56, 326, 290, 0, 0, 20, 232, 76, 558 

+ po/te.mo,  56, 326, 290, 0, 0, 0, 0, 56, 326 

+ po/ta.po,  43, 290, 254, 0, 0, 33, 268, 76, 558 

+ po/ta.mo,  43, 290, 254, 0, 0, 0, 0, 43, 290 

+ po/sv.po,  75, 524, 525, 0, 0, 1, 34, 76, 558 

+ po/sv.mo,  75, 524, 525, 0, 0, 0, 0, 75, 524 

+ po/sr@latin.po,  21, 188, 187, 0, 0, 55, 370, 76, 558 

+ po/sr@latin.mo,  21, 188, 187, 0, 0, 0, 0, 21, 188 

+ po/sr.po,  67, 456, 461, 0, 0, 9, 102, 76, 558 

+ po/sr.mo,  67, 456, 461, 0, 0, 0, 0, 67, 456 

+ po/sq.po,  5, 43, 37, 0, 0, 71, 515, 76, 558 

+ po/sq.mo,  5, 43, 37, 0, 0, 0, 0, 5, 43 

+ po/sl.po,  3, 37, 29, 0, 0, 73, 521, 76, 558 

+ po/sl.mo,  3, 37, 29, 0, 0, 0, 0, 3, 37 

+ po/sk.po,  72, 518, 519, 0, 0, 4, 40, 76, 558 

+ po/sk.mo,  72, 518, 519, 0, 0, 0, 0, 72, 518 

+ po/si.po,  24, 206, 204, 0, 0, 52, 352, 76, 558 

+ po/si.mo,  24, 206, 204, 0, 0, 0, 0, 24, 206 

+ po/ru.po,  75, 524, 486, 0, 0, 1, 34, 76, 558 

+ po/ru.mo,  75, 524, 486, 0, 0, 0, 0, 75, 524 

+ po/ro.po,  3, 37, 33, 0, 0, 73, 521, 76, 558 

+ po/ro.mo,  3, 37, 33, 0, 0, 0, 0, 3, 37 

+ po/pt_BR.po,  75, 524, 589, 0, 0, 1, 34, 76, 558 

+ po/pt_BR.mo,  75, 524, 589, 0, 0, 0, 0, 75, 524 

+ po/pt.po,  24, 206, 232, 0, 0, 52, 352, 76, 558 

+ po/pt.mo,  24, 206, 232, 0, 0, 0, 0, 24, 206 

+ po/pl.po,  75, 524, 530, 0, 0, 1, 34, 76, 558 

+ po/pl.mo,  75, 524, 530, 0, 0, 0, 0, 75, 524 

+ po/pa.po,  43, 290, 355, 0, 0, 33, 268, 76, 558 

+ po/pa.mo,  43, 290, 355, 0, 0, 0, 0, 43, 290 

+ po/or.po,  43, 290, 322, 0, 0, 33, 268, 76, 558 

+ po/or.mo,  43, 290, 322, 0, 0, 0, 0, 43, 290 

+ po/nso.po,  3, 37, 42, 0, 0, 73, 521, 76, 558 

+ po/nso.mo,  3, 37, 42, 0, 0, 0, 0, 3, 37 

+ po/nn.po,  0, 0, 0, 0, 0, 76, 558, 76, 558 

+ po/nn.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nl.po,  75, 524, 552, 0, 0, 1, 34, 76, 558 

+ po/nl.mo,  75, 524, 552, 0, 0, 0, 0, 75, 524 

+ po/ne.po,  3, 37, 31, 0, 0, 73, 521, 76, 558 

+ po/ne.mo,  3, 37, 31, 0, 0, 0, 0, 3, 37 

+ po/nds.po,  0, 0, 0, 0, 0, 76, 558, 76, 558 

+ po/nds.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nb.po,  13, 85, 78, 0, 0, 63, 473, 76, 558 

+ po/nb.mo,  13, 85, 78, 0, 0, 0, 0, 13, 85 

+ po/ms.po,  3, 37, 28, 0, 0, 73, 521, 76, 558 

+ po/ms.mo,  3, 37, 28, 0, 0, 0, 0, 3, 37 

+ po/mr.po,  56, 326, 343, 0, 0, 20, 232, 76, 558 

+ po/mr.mo,  56, 326, 343, 0, 0, 0, 0, 56, 326 

+ po/ml.po,  43, 290, 225, 0, 0, 33, 268, 76, 558 

+ po/ml.mo,  43, 290, 225, 0, 0, 0, 0, 43, 290 

+ po/mk.po,  3, 37, 28, 0, 0, 73, 521, 76, 558 

+ po/mk.mo,  3, 37, 28, 0, 0, 0, 0, 3, 37 

+ po/mai.po,  8, 63, 67, 0, 0, 68, 495, 76, 558 

+ po/mai.mo,  8, 63, 67, 0, 0, 0, 0, 8, 63 

+ po/lv.po,  9, 56, 51, 0, 0, 67, 502, 76, 558 

+ po/lv.mo,  9, 56, 51, 0, 0, 0, 0, 9, 56 

+ po/lt.po,  0, 0, 0, 0, 0, 76, 558, 76, 558 

+ po/lt.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ko.po,  75, 524, 454, 0, 0, 1, 34, 76, 558 

+ po/ko.mo,  75, 524, 454, 0, 0, 0, 0, 75, 524 

+ po/kn.po,  56, 326, 297, 0, 0, 20, 232, 76, 558 

+ po/kn.mo,  56, 326, 297, 0, 0, 0, 0, 56, 326 

+ po/kk.po,  43, 290, 269, 0, 0, 33, 268, 76, 558 

+ po/kk.mo,  43, 290, 269, 0, 0, 0, 0, 43, 290 

+ po/ka.po,  11, 24, 24, 0, 0, 65, 534, 76, 558 

+ po/ka.mo,  11, 24, 24, 0, 0, 0, 0, 11, 24 

+ po/ja.po,  75, 524, 258, 0, 0, 1, 34, 76, 558 

+ po/ja.mo,  75, 524, 258, 0, 0, 0, 0, 75, 524 

+ po/it.po,  75, 524, 545, 0, 0, 1, 34, 76, 558 

+ po/it.mo,  75, 524, 545, 0, 0, 0, 0, 75, 524 

+ po/is.po,  5, 43, 36, 0, 0, 71, 515, 76, 558 

+ po/is.mo,  5, 43, 36, 0, 0, 0, 0, 5, 43 

+ po/ilo.po,  3, 37, 41, 0, 0, 73, 521, 76, 558 

+ po/ilo.mo,  3, 37, 41, 0, 0, 0, 0, 3, 37 

+ po/id.po,  24, 206, 196, 0, 0, 52, 352, 76, 558 

+ po/id.mo,  24, 206, 196, 0, 0, 0, 0, 24, 206 

+ po/ia.po,  36, 277, 310, 0, 0, 40, 281, 76, 558 

+ po/ia.mo,  36, 277, 310, 0, 0, 0, 0, 36, 277 

+ po/hu.po,  75, 524, 531, 0, 0, 1, 34, 76, 558 

+ po/hu.mo,  75, 524, 531, 0, 0, 0, 0, 75, 524 

+ po/hr.po,  3, 37, 22, 0, 0, 73, 521, 76, 558 

+ po/hr.mo,  3, 37, 22, 0, 0, 0, 0, 3, 37 

+ po/hi.po,  24, 206, 239, 0, 0, 52, 352, 76, 558 

+ po/hi.mo,  24, 206, 239, 0, 0, 0, 0, 24, 206 

+ po/he.po,  5, 23, 20, 0, 0, 71, 535, 76, 558 

+ po/he.mo,  5, 23, 20, 0, 0, 0, 0, 5, 23 

+ po/gu.po,  56, 326, 358, 0, 0, 20, 232, 76, 558 

+ po/gu.mo,  56, 326, 358, 0, 0, 0, 0, 56, 326 

+ po/gl.po,  0, 0, 0, 0, 0, 76, 558, 76, 558 

+ po/gl.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fr.po,  75, 524, 618, 0, 0, 1, 34, 76, 558 

+ po/fr.mo,  75, 524, 618, 0, 0, 0, 0, 75, 524 

+ po/fi.po,  24, 206, 167, 0, 0, 52, 352, 76, 558 

+ po/fi.mo,  24, 206, 167, 0, 0, 0, 0, 24, 206 

+ po/fa.po,  24, 206, 231, 0, 0, 52, 352, 76, 558 

+ po/fa.mo,  24, 206, 231, 0, 0, 0, 0, 24, 206 

+ po/eu.po,  2, 8, 8, 0, 0, 74, 550, 76, 558 

+ po/eu.mo,  2, 8, 8, 0, 0, 0, 0, 2, 8 

+ po/et.po,  8, 52, 51, 0, 0, 68, 506, 76, 558 

+ po/et.mo,  8, 52, 51, 0, 0, 0, 0, 8, 52 

+ po/es.po,  75, 524, 637, 0, 0, 1, 34, 76, 558 

+ po/es.mo,  75, 524, 637, 0, 0, 0, 0, 75, 524 

+ po/en_GB.po,  24, 206, 206, 0, 0, 52, 352, 76, 558 

+ po/en_GB.mo,  24, 206, 206, 0, 0, 0, 0, 24, 206 

+ po/el.po,  6, 47, 51, 0, 0, 70, 511, 76, 558 

+ po/el.mo,  6, 47, 51, 0, 0, 0, 0, 6, 47 

+ po/de_CH.po,  7, 52, 41, 0, 0, 69, 506, 76, 558 

+ po/de_CH.mo,  7, 52, 41, 0, 0, 0, 0, 7, 52 

+ po/de.po,  75, 524, 514, 0, 0, 1, 34, 76, 558 

+ po/de.mo,  75, 524, 514, 0, 0, 0, 0, 75, 524 

+ po/da.po,  75, 524, 493, 0, 0, 1, 34, 76, 558 

+ po/da.mo,  75, 524, 493, 0, 0, 0, 0, 75, 524 

+ po/cy.po,  3, 37, 32, 0, 0, 73, 521, 76, 558 

+ po/cy.mo,  3, 37, 32, 0, 0, 0, 0, 3, 37 

+ po/cs.po,  75, 524, 498, 0, 0, 1, 34, 76, 558 

+ po/cs.mo,  75, 524, 498, 0, 0, 0, 0, 75, 524 

+ po/ca.po,  75, 524, 651, 0, 0, 1, 34, 76, 558 

+ po/ca.mo,  75, 524, 651, 0, 0, 0, 0, 75, 524 

+ po/bs.po,  3, 37, 22, 0, 0, 73, 521, 76, 558 

+ po/bs.mo,  3, 37, 22, 0, 0, 0, 0, 3, 37 

+ po/bn_IN.po,  62, 355, 401, 0, 0, 14, 203, 76, 558 

+ po/bn_IN.mo,  62, 355, 401, 0, 0, 0, 0, 62, 355 

+ po/bn.po,  24, 206, 225, 0, 0, 52, 352, 76, 558 

+ po/bn.mo,  24, 206, 225, 0, 0, 0, 0, 24, 206 

+ po/blivet.pot,  0, 0, 0, 0, 0, 76, 558, 76, 558 

+ po/bg.po,  62, 357, 407, 0, 0, 14, 201, 76, 558 

+ po/bg.mo,  62, 357, 407, 0, 0, 0, 0, 62, 357 

+ po/be.po,  0, 0, 0, 0, 0, 76, 558, 76, 558 

+ po/be.mo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ast.po,  23, 202, 209, 0, 0, 53, 356, 76, 558 

+ po/ast.mo,  23, 202, 209, 0, 0, 0, 0, 23, 202 

+ po/as.po,  62, 355, 382, 0, 0, 14, 203, 76, 558 

+ po/as.mo,  62, 355, 382, 0, 0, 0, 0, 62, 355 

+ po/ar.po,  5, 41, 34, 0, 0, 71, 517, 76, 558 

+ po/ar.mo,  5, 41, 34, 0, 0, 0, 0, 5, 41 

+ po/am.po,  3, 37, 26, 0, 0, 73, 521, 76, 558 

+ po/am.mo,  3, 37, 26, 0, 0, 0, 0, 3, 37 

+ po/af.po,  3, 37, 36, 0, 0, 73, 521, 76, 558 

+ po/af.mo,  3, 37, 36, 0, 0, 0, 0, 3, 37 

@@ -0,0 +1,7 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ humanize/locale/ru_RU/LC_MESSAGES/humanize.po,  52, 97, 110, 0, 0, 0, 0, 52, 97 

+ humanize/locale/ru_RU/LC_MESSAGES/humanize.mo,  52, 97, 110, 0, 0, 0, 0, 52, 97 

+ humanize/locale/ko_KR/LC_MESSAGES/humanize.po,  33, 78, 54, 19, 19, 0, 0, 52, 97 

+ humanize/locale/ko_KR/LC_MESSAGES/humanize.mo,  33, 78, 54, 0, 0, 0, 0, 33, 78 

+ humanize/locale/fr_FR/LC_MESSAGES/humanize.po,  32, 77, 83, 20, 20, 0, 0, 52, 97 

+ humanize/locale/fr_FR/LC_MESSAGES/humanize.mo,  32, 77, 83, 0, 0, 0, 0, 32, 77 

@@ -0,0 +1,6 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/tmp/exception-dialog.glade.h)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/tmp/exception-dialog.glade.h)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/tmp/exception-dialog.glade.h)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

@@ -0,0 +1,354 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/python-meh.pot,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/anp.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/wba.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/yo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/tw.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/zh_CN.GB2312.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/zh_TW.Big5.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ky.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/sl.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ku.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/si.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ks.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/km.po,  23, 109, 44, 0, 0, 0, 0, 23, 109 

+ po/sv.po,  23, 109, 103, 0, 0, 0, 0, 23, 109 

+ po/ko.po,  23, 109, 82, 0, 0, 0, 0, 23, 109 

+ po/sq.po,  23, 109, 120, 0, 0, 0, 0, 23, 109 

+ po/sr.po,  23, 109, 107, 0, 0, 0, 0, 23, 109 

+ po/kk.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ka.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/fi.po,  23, 109, 76, 0, 0, 0, 0, 23, 109 

+ po/mai.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/fa.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/fr.po,  23, 109, 106, 0, 0, 0, 0, 23, 109 

+ po/ne.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/nb.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/no.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/nn.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/nl.po,  23, 109, 118, 0, 0, 0, 0, 23, 109 

+ po/sk.po,  23, 109, 94, 0, 0, 0, 0, 23, 109 

+ po/bn_IN.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/id.po,  23, 109, 99, 0, 0, 0, 0, 23, 109 

+ po/az.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ia.po,  20, 83, 83, 0, 0, 3, 26, 23, 109 

+ po/zu.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ar.po,  20, 83, 72, 0, 0, 3, 26, 23, 109 

+ po/as.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/kn.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/it.po,  16, 65, 62, 7, 44, 0, 0, 23, 109 

+ po/am.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/is.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/vi.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/af.po,  20, 83, 86, 0, 0, 3, 26, 23, 109 

+ po/my.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mr.po,  1, 1, 3, 0, 0, 22, 108, 23, 109 

+ po/ms.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/en_GB.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ur.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mk.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mn.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ml.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/uz.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mg.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/he.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/hi.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/hu.po,  23, 109, 89, 0, 0, 0, 0, 23, 109 

+ po/zh_TW.po,  23, 109, 30, 0, 0, 0, 0, 23, 109 

+ po/hr.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/hy.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/pl.po,  23, 109, 85, 0, 0, 0, 0, 23, 109 

+ po/pa.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/tl.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/pt.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/de_CH.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/cs.po,  23, 109, 85, 0, 0, 0, 0, 23, 109 

+ po/cy.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ca.po,  23, 109, 111, 0, 0, 0, 0, 23, 109 

+ po/nso.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/xh.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/or.po,  1, 1, 3, 0, 0, 22, 108, 23, 109 

+ po/nds.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/ach.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ilo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ja.po,  23, 109, 32, 0, 0, 0, 0, 23, 109 

+ po/bs.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/br.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/sr@latin.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/bo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/bn.po,  2, 2, 3, 0, 0, 21, 107, 23, 109 

+ po/wo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ast.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/uk.po,  23, 109, 108, 0, 0, 0, 0, 23, 109 

+ po/bg.po,  8, 23, 25, 0, 0, 15, 86, 23, 109 

+ po/be.po,  23, 109, 88, 0, 0, 0, 0, 23, 109 

+ po/ru_RU.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ro.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ru.po,  23, 109, 84, 0, 0, 0, 0, 23, 109 

+ po/es.po,  23, 109, 106, 0, 0, 0, 0, 23, 109 

+ po/et.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/eu.po,  7, 13, 13, 0, 0, 16, 96, 23, 109 

+ po/en_US.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/eo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/el.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/bal.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/zh_CN.po,  23, 109, 39, 0, 0, 0, 0, 23, 109 

+ po/dz.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/da.po,  23, 109, 103, 0, 0, 0, 0, 23, 109 

+ po/de.po,  23, 109, 99, 0, 0, 0, 0, 23, 109 

+ po/pt_BR.po,  23, 109, 104, 0, 0, 0, 0, 23, 109 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ta.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/te.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/tg.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/th.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/lt.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/lv.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/tr.po,  23, 109, 92, 0, 0, 0, 0, 23, 109 

+ po/brx.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/lo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/la.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/gl.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ga.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/gu.po,  1, 1, 3, 0, 0, 22, 108, 23, 109 

+ po/aln.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/python-meh.pot,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/anp.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/wba.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/yo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/tw.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/zh_CN.GB2312.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/zh_TW.Big5.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ky.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/sl.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ku.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/si.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ks.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/km.po,  23, 109, 44, 0, 0, 0, 0, 23, 109 

+ po/sv.po,  23, 109, 103, 0, 0, 0, 0, 23, 109 

+ po/ko.po,  23, 109, 82, 0, 0, 0, 0, 23, 109 

+ po/sq.po,  23, 109, 120, 0, 0, 0, 0, 23, 109 

+ po/sr.po,  23, 109, 107, 0, 0, 0, 0, 23, 109 

+ po/kk.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ka.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/fi.po,  23, 109, 76, 0, 0, 0, 0, 23, 109 

+ po/mai.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/fa.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/fr.po,  23, 109, 106, 0, 0, 0, 0, 23, 109 

+ po/ne.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/nb.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/no.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/nn.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/nl.po,  23, 109, 118, 0, 0, 0, 0, 23, 109 

+ po/sk.po,  23, 109, 94, 0, 0, 0, 0, 23, 109 

+ po/bn_IN.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/id.po,  23, 109, 99, 0, 0, 0, 0, 23, 109 

+ po/az.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ia.po,  20, 83, 83, 0, 0, 3, 26, 23, 109 

+ po/zu.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ar.po,  20, 83, 72, 0, 0, 3, 26, 23, 109 

+ po/as.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/kn.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/it.po,  16, 65, 62, 7, 44, 0, 0, 23, 109 

+ po/am.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/is.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/vi.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/af.po,  20, 83, 86, 0, 0, 3, 26, 23, 109 

+ po/my.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mr.po,  1, 1, 3, 0, 0, 22, 108, 23, 109 

+ po/ms.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/en_GB.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ur.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mk.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mn.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ml.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/uz.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mg.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/he.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/hi.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/hu.po,  23, 109, 89, 0, 0, 0, 0, 23, 109 

+ po/zh_TW.po,  23, 109, 30, 0, 0, 0, 0, 23, 109 

+ po/hr.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/hy.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/pl.po,  23, 109, 85, 0, 0, 0, 0, 23, 109 

+ po/pa.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/tl.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/pt.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/de_CH.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/cs.po,  23, 109, 85, 0, 0, 0, 0, 23, 109 

+ po/cy.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ca.po,  23, 109, 111, 0, 0, 0, 0, 23, 109 

+ po/nso.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/xh.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/or.po,  1, 1, 3, 0, 0, 22, 108, 23, 109 

+ po/nds.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/ach.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ilo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ja.po,  23, 109, 32, 0, 0, 0, 0, 23, 109 

+ po/bs.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/br.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/sr@latin.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/bo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/bn.po,  2, 2, 3, 0, 0, 21, 107, 23, 109 

+ po/wo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ast.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/uk.po,  23, 109, 108, 0, 0, 0, 0, 23, 109 

+ po/bg.po,  8, 23, 25, 0, 0, 15, 86, 23, 109 

+ po/be.po,  23, 109, 88, 0, 0, 0, 0, 23, 109 

+ po/ru_RU.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ro.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ru.po,  23, 109, 84, 0, 0, 0, 0, 23, 109 

+ po/es.po,  23, 109, 106, 0, 0, 0, 0, 23, 109 

+ po/et.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/eu.po,  7, 13, 13, 0, 0, 16, 96, 23, 109 

+ po/en_US.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/eo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/el.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/bal.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/zh_CN.po,  23, 109, 39, 0, 0, 0, 0, 23, 109 

+ po/dz.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/da.po,  23, 109, 103, 0, 0, 0, 0, 23, 109 

+ po/de.po,  23, 109, 99, 0, 0, 0, 0, 23, 109 

+ po/pt_BR.po,  23, 109, 104, 0, 0, 0, 0, 23, 109 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ta.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/te.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/tg.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/th.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/lt.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/lv.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/tr.po,  23, 109, 92, 0, 0, 0, 0, 23, 109 

+ po/brx.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/lo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/la.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/gl.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ga.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/gu.po,  1, 1, 3, 0, 0, 22, 108, 23, 109 

+ po/aln.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/python-meh.pot,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/anp.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/wba.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/yo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/tw.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/zh_CN.GB2312.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/zh_TW.Big5.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ky.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/sl.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ku.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/si.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ks.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/km.po,  23, 109, 44, 0, 0, 0, 0, 23, 109 

+ po/sv.po,  23, 109, 103, 0, 0, 0, 0, 23, 109 

+ po/ko.po,  23, 109, 82, 0, 0, 0, 0, 23, 109 

+ po/sq.po,  23, 109, 120, 0, 0, 0, 0, 23, 109 

+ po/sr.po,  23, 109, 107, 0, 0, 0, 0, 23, 109 

+ po/kk.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ka.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/fi.po,  23, 109, 76, 0, 0, 0, 0, 23, 109 

+ po/mai.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/fa.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/fr.po,  23, 109, 106, 0, 0, 0, 0, 23, 109 

+ po/ne.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/nb.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/no.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/nn.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/nl.po,  23, 109, 118, 0, 0, 0, 0, 23, 109 

+ po/sk.po,  23, 109, 94, 0, 0, 0, 0, 23, 109 

+ po/bn_IN.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/id.po,  23, 109, 99, 0, 0, 0, 0, 23, 109 

+ po/az.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ia.po,  20, 83, 83, 0, 0, 3, 26, 23, 109 

+ po/zu.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ar.po,  20, 83, 72, 0, 0, 3, 26, 23, 109 

+ po/as.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/kn.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/it.po,  16, 65, 62, 7, 44, 0, 0, 23, 109 

+ po/am.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/is.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/vi.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/af.po,  20, 83, 86, 0, 0, 3, 26, 23, 109 

+ po/my.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mr.po,  1, 1, 3, 0, 0, 22, 108, 23, 109 

+ po/ms.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/en_GB.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ur.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mk.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mn.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ml.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/uz.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/mg.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/he.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/hi.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/hu.po,  23, 109, 89, 0, 0, 0, 0, 23, 109 

+ po/zh_TW.po,  23, 109, 30, 0, 0, 0, 0, 23, 109 

+ po/hr.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/hy.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/pl.po,  23, 109, 85, 0, 0, 0, 0, 23, 109 

+ po/pa.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/tl.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/pt.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/de_CH.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/cs.po,  23, 109, 85, 0, 0, 0, 0, 23, 109 

+ po/cy.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ca.po,  23, 109, 111, 0, 0, 0, 0, 23, 109 

+ po/nso.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/xh.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/or.po,  1, 1, 3, 0, 0, 22, 108, 23, 109 

+ po/nds.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/ach.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ilo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ja.po,  23, 109, 32, 0, 0, 0, 0, 23, 109 

+ po/bs.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/br.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/sr@latin.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/bo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/bn.po,  2, 2, 3, 0, 0, 21, 107, 23, 109 

+ po/wo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ast.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/uk.po,  23, 109, 108, 0, 0, 0, 0, 23, 109 

+ po/bg.po,  8, 23, 25, 0, 0, 15, 86, 23, 109 

+ po/be.po,  23, 109, 88, 0, 0, 0, 0, 23, 109 

+ po/ru_RU.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ro.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ru.po,  23, 109, 84, 0, 0, 0, 0, 23, 109 

+ po/es.po,  23, 109, 106, 0, 0, 0, 0, 23, 109 

+ po/et.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/eu.po,  7, 13, 13, 0, 0, 16, 96, 23, 109 

+ po/en_US.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/eo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/el.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/bal.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/zh_CN.po,  23, 109, 39, 0, 0, 0, 0, 23, 109 

+ po/dz.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/da.po,  23, 109, 103, 0, 0, 0, 0, 23, 109 

+ po/de.po,  23, 109, 99, 0, 0, 0, 0, 23, 109 

+ po/pt_BR.po,  23, 109, 104, 0, 0, 0, 0, 23, 109 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ta.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/te.po,  1, 1, 2, 0, 0, 22, 108, 23, 109 

+ po/tg.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/th.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/lt.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/lv.po,  1, 1, 1, 0, 0, 22, 108, 23, 109 

+ po/tr.po,  23, 109, 92, 0, 0, 0, 0, 23, 109 

+ po/brx.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/lo.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/la.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/gl.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/ga.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

+ po/gu.po,  1, 1, 3, 0, 0, 22, 108, 23, 109 

+ po/aln.po,  0, 0, 0, 0, 0, 23, 109, 23, 109 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

@@ -0,0 +1,99 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/or.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ky.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/sl.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/kw.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/si.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/sk.po,  16, 42, 39, 0, 0, 0, 0, 16, 42 

+ po/km.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/sv.po,  6, 16, 17, 0, 0, 10, 26, 16, 42 

+ po/ko.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/sq.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/sr.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/kk.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ka.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/nds.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/da.po,  16, 42, 45, 0, 0, 0, 0, 16, 42 

+ po/fi.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/mai.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/bs.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/br.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/fa.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/sr@latin.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/bo.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/bn.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ast.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ms.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/bg.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/fr.po,  16, 42, 52, 0, 0, 0, 0, 16, 42 

+ po/be.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ro.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/anp.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ne.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/nb.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/nn.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/nl.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ru.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/es.po,  16, 42, 40, 0, 0, 0, 0, 16, 42 

+ po/id.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/et.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/eu.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/zu.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/kw@kkcor.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ar.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/as.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/kn.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/it.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/am.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/is.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/vi.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/af.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/mn.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/eo.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/el.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/my.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ilo.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/bal.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/kw_GB.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/mr.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/uk.po,  16, 42, 42, 0, 0, 0, 0, 16, 42 

+ po/zh_CN.po,  6, 16, 6, 0, 0, 10, 26, 16, 42 

+ po/ur.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/mk.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/wba.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ml.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/he.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/pt_BR.po,  6, 16, 13, 0, 0, 10, 26, 16, 42 

+ po/hi.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/hu.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/de.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/hr.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/yo.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ta.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/pl.po,  16, 42, 39, 0, 0, 0, 0, 16, 42 

+ po/ia.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/te.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/tg.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/th.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/pa.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/lt.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/lv.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ja.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/de_CH.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/tr.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/nso.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/tw.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/pt.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/en_GB.po,  15, 35, 35, 0, 0, 1, 7, 16, 42 

+ po/gl.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/cs.po,  16, 42, 41, 0, 0, 0, 0, 16, 42 

+ po/ga.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/cy.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/kw@uccor.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/ca.po,  16, 42, 42, 0, 0, 0, 0, 16, 42 

+ po/brx.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/zh_TW.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/gu.po,  0, 0, 0, 0, 0, 16, 42, 16, 42 

+ po/python-simpleline.pot,  0, 0, 0, 0, 0, 16, 42, 16, 42 

@@ -0,0 +1,16 @@ 

+ translate.tools.pocount: ERROR: cannot process config.profiles/symbian/translations/qt_: does not exist

+ translate.tools.pocount: ERROR: cannot process config.profiles/symbian/translations/qt_: does not exist

+ translate.tools.pocount: ERROR: cannot process config.profiles/symbian/translations/qt_: does not exist

+ translate.tools.pocount: ERROR: cannot process demos/declarative/photoviewer/qml/photoviewer/i18n/qml_: does not exist

+ translate.tools.pocount: ERROR: cannot process doc/src/snippets/i18n-non-qt-class/translations/i18n-non-qt-class_: does not exist

+ translate.tools.pocount: ERROR: cannot process examples/declarative/i18n/qml/i18n/qml_: does not exist

+ translate.tools.pocount: ERROR: cannot process examples/linguist/trollprint/trollprint_: does not exist

+ translate.tools.pocount: ERROR: cannot process examples/tools/i18n/translations/i18n_: does not exist

+ translate.tools.pocount: ERROR: cannot process translations/assistant_: does not exist

+ translate.tools.pocount: ERROR: cannot process translations/designer_: does not exist

+ translate.tools.pocount: ERROR: cannot process translations/linguist_: does not exist

+ translate.tools.pocount: ERROR: cannot process translations/qt_: does not exist

+ translate.tools.pocount: ERROR: cannot process translations/qt_help_: does not exist

+ translate.tools.pocount: ERROR: cannot process translations/qtconfig_: does not exist

+ translate.tools.pocount: ERROR: cannot process translations/qtscript_: does not exist

+ translate.tools.pocount: ERROR: cannot process translations/qvfb_: does not exist

@@ -0,0 +1,16 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: cannot process examples/widgets/tools/i18n/translations/i18n_: does not exist

@@ -0,0 +1,1 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 115: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

@@ -0,0 +1,9 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/cs.gmo,  483, 3628, 3777, 0, 0, 0, 0, 483, 3628 

+ po/cs.po,  483, 3628, 3777, 53, 1057, 33, 165, 569, 4850 

+ po/pl.po,  483, 3628, 3851, 53, 1057, 33, 165, 569, 4850 

+ po/de.gmo,  434, 3354, 3372, 0, 0, 0, 0, 434, 3354 

+ po/quota.pot,  0, 0, 0, 0, 0, 569, 4850, 569, 4850 

+ po/fr.po,  233, 1545, 1955, 216, 1527, 120, 1778, 569, 4850 

+ po/de.po,  434, 3354, 3372, 94, 1273, 41, 223, 569, 4850 

+ po/pl.gmo,  483, 3628, 3851, 0, 0, 0, 0, 483, 3628 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,69 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/pa.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/lt.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/ia.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/gl.po,  125, 778, 999, 0, 0, 2, 11, 127, 789 

+ po/ka.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/he.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/nn.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/ga.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/ko.po,  127, 789, 706, 0, 0, 0, 0, 127, 789 

+ po/ru.po,  127, 789, 795, 0, 0, 0, 0, 127, 789 

+ po/eu.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/fo.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/pt.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/el.po,  125, 778, 926, 0, 0, 2, 11, 127, 789 

+ po/sr@latin.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/en_GB.po,  125, 778, 778, 0, 0, 2, 11, 127, 789 

+ po/es_CL.po,  0, 0, 0, 0, 0, 125, 778, 125, 778 

+ po/id.po,  125, 778, 817, 0, 0, 2, 11, 127, 789 

+ po/as.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/or.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/wa.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/it.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/lv.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/ta.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/fr.po,  18, 110, 116, 0, 0, 109, 679, 127, 789 

+ po/te.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/az.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/nb.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/kn.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/hi.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/th.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/zh_CN.po,  88, 511, 122, 0, 0, 39, 278, 127, 789 

+ po/ar.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/fa.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/da.po,  115, 712, 723, 0, 0, 12, 77, 127, 789 

+ po/sl.po,  125, 778, 775, 0, 0, 2, 11, 127, 789 

+ po/nl.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/bg.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/sv.po,  125, 778, 769, 0, 0, 2, 11, 127, 789 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/ml.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/kk.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/cs.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/mr.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/sq.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/tr.po,  125, 778, 710, 0, 0, 2, 11, 127, 789 

+ po/et.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/oc.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/hu.po,  20, 129, 128, 0, 0, 107, 660, 127, 789 

+ po/zh_TW.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/pl.po,  127, 789, 802, 0, 0, 0, 0, 127, 789 

+ po/fi.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/ms.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/uk.po,  127, 789, 879, 0, 0, 0, 0, 127, 789 

+ po/ca.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/hr.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/de.po,  116, 683, 731, 0, 0, 11, 106, 127, 789 

+ po/eo.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/vi.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/gu.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/cy.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/sk.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/pt_BR.po,  127, 789, 971, 0, 0, 0, 0, 127, 789 

+ po/ca@valencia.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/es.po,  125, 778, 1028, 0, 0, 2, 11, 127, 789 

+ po/ro.po,  0, 0, 0, 0, 0, 127, 789, 127, 789 

+ po/ja.po,  17, 60, 22, 0, 0, 110, 729, 127, 789 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,72 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/is.po,  86, 261, 233, 0, 0, 0, 0, 86, 261 

+ po/en_GB.po,  86, 261, 261, 0, 0, 0, 0, 86, 261 

+ po/et.po,  81, 253, 212, 0, 0, 0, 0, 81, 253 

+ po/ar.po,  81, 253, 249, 0, 0, 0, 0, 81, 253 

+ po/sk.po,  86, 261, 256, 0, 0, 0, 0, 86, 261 

+ po/mr.po,  86, 261, 260, 0, 0, 0, 0, 86, 261 

+ po/hi.po,  86, 261, 292, 0, 0, 0, 0, 86, 261 

+ po/cs.po,  86, 261, 259, 0, 0, 0, 0, 86, 261 

+ po/bn_IN.po,  86, 261, 290, 0, 0, 0, 0, 86, 261 

+ po/te.po,  86, 261, 250, 0, 0, 0, 0, 86, 261 

+ po/lt.po,  73, 221, 213, 2, 6, 11, 34, 86, 261 

+ po/de.po,  86, 261, 211, 0, 0, 0, 0, 86, 261 

+ po/sq.po,  2, 5, 4, 0, 0, 84, 256, 86, 261 

+ po/vi.po,  72, 218, 335, 3, 9, 11, 34, 86, 261 

+ po/sr.po,  86, 261, 270, 0, 0, 0, 0, 86, 261 

+ po/ur.po,  71, 216, 397, 4, 11, 11, 34, 86, 261 

+ po/gl.po,  52, 132, 157, 1, 1, 33, 128, 86, 261 

+ po/ilo.po,  43, 106, 164, 4, 6, 39, 149, 86, 261 

+ po/ml.po,  86, 261, 245, 0, 0, 0, 0, 86, 261 

+ po/lv.po,  80, 252, 225, 0, 0, 1, 1, 81, 253 

+ po/hy.po,  73, 221, 198, 2, 6, 11, 34, 86, 261 

+ po/id.po,  81, 253, 246, 0, 0, 0, 0, 81, 253 

+ po/tr.po,  78, 246, 238, 3, 5, 5, 10, 86, 261 

+ po/nb.po,  86, 261, 221, 0, 0, 0, 0, 86, 261 

+ po/or.po,  86, 261, 300, 0, 0, 0, 0, 86, 261 

+ po/th.po,  86, 261, 126, 0, 0, 0, 0, 86, 261 

+ po/mk.po,  86, 261, 286, 0, 0, 0, 0, 86, 261 

+ po/sl.po,  76, 240, 247, 5, 11, 5, 10, 86, 261 

+ po/bg.po,  86, 261, 293, 0, 0, 0, 0, 86, 261 

+ po/nl.po,  86, 261, 228, 0, 0, 0, 0, 86, 261 

+ po/he.po,  86, 261, 257, 0, 0, 0, 0, 86, 261 

+ po/ku.po,  0, 0, 0, 0, 0, 86, 261, 86, 261 

+ po/lo.po,  0, 0, 0, 0, 0, 86, 261, 86, 261 

+ po/pl.po,  86, 261, 259, 0, 0, 0, 0, 86, 261 

+ po/fa.po,  81, 253, 277, 0, 0, 0, 0, 81, 253 

+ po/zh_TW.po,  86, 261, 125, 0, 0, 0, 0, 86, 261 

+ po/ru.po,  86, 261, 269, 0, 0, 0, 0, 86, 261 

+ po/pt_BR.po,  86, 261, 312, 0, 0, 0, 0, 86, 261 

+ po/hu.po,  86, 261, 231, 0, 0, 0, 0, 86, 261 

+ po/my.po,  0, 0, 0, 0, 0, 86, 261, 86, 261 

+ po/ta.po,  86, 261, 250, 0, 0, 0, 0, 86, 261 

+ po/el.po,  86, 261, 271, 0, 0, 0, 0, 86, 261 

+ po/gu.po,  86, 261, 275, 0, 0, 0, 0, 86, 261 

+ po/pt.po,  86, 261, 315, 0, 0, 0, 0, 86, 261 

+ po/ms.po,  86, 261, 249, 0, 0, 0, 0, 86, 261 

+ po/da.po,  86, 261, 224, 0, 0, 0, 0, 86, 261 

+ po/sv.po,  86, 261, 225, 0, 0, 0, 0, 86, 261 

+ po/sr@latin.po,  86, 261, 270, 0, 0, 0, 0, 86, 261 

+ po/ko.po,  86, 261, 247, 0, 0, 0, 0, 86, 261 

+ po/kn.po,  86, 261, 258, 0, 0, 0, 0, 86, 261 

+ po/as.po,  86, 261, 304, 0, 0, 0, 0, 86, 261 

+ po/am.po,  73, 221, 240, 2, 6, 11, 34, 86, 261 

+ po/uk.po,  86, 261, 270, 0, 0, 0, 0, 86, 261 

+ po/nso.po,  73, 221, 363, 2, 6, 11, 34, 86, 261 

+ po/ka.po,  69, 205, 191, 4, 11, 13, 45, 86, 261 

+ po/zu.po,  70, 213, 221, 5, 14, 11, 34, 86, 261 

+ po/si.po,  86, 261, 300, 0, 0, 0, 0, 86, 261 

+ po/ja.po,  86, 261, 110, 0, 0, 0, 0, 86, 261 

+ po/be.po,  71, 216, 211, 4, 11, 11, 34, 86, 261 

+ po/cy.po,  86, 261, 263, 0, 0, 0, 0, 86, 261 

+ po/ro.po,  86, 261, 273, 0, 0, 0, 0, 86, 261 

+ po/af.po,  73, 221, 184, 2, 6, 11, 34, 86, 261 

+ po/fi.po,  86, 261, 190, 0, 0, 0, 0, 86, 261 

+ po/es.po,  86, 261, 319, 0, 0, 0, 0, 86, 261 

+ po/pa.po,  86, 261, 276, 0, 0, 0, 0, 86, 261 

+ po/ca.po,  86, 261, 311, 0, 0, 0, 0, 86, 261 

+ po/bn.po,  76, 240, 280, 5, 11, 5, 10, 86, 261 

+ po/hr.po,  86, 261, 265, 0, 0, 0, 0, 86, 261 

+ po/zh_CN.po,  86, 261, 129, 0, 0, 0, 0, 86, 261 

+ po/it.po,  86, 261, 296, 0, 0, 0, 0, 86, 261 

+ po/fr.po,  86, 261, 310, 0, 0, 0, 0, 86, 261 

@@ -0,0 +1,130 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/rb-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/rb-iradio-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/rb-podcast-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/rb-toolbar-prevplaynext.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/rb-toolbar-repeat.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/rb-volume-changer.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/rb-toolbar-shuffle.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/rb-notification-zone.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/ca.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/rb-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/rb-iradio-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/rb-toolbar-prevplaynext.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/rb-toolbar-repeat.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/rb-toolbar-shuffle.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/el.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/ja.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/pt_BR.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/uk.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/cs.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/rb-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/rb-iradio-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/rb-podcast-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/rb-toolbar-prevplaynext.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/rb-volume-changer.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/rb-notification-zone.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/fr.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/oc.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/rb-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/rb-iradio-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/rb-podcast-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/rb-notification-zone.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/de.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/ro.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/figures/rb-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/figures/rb-iradio-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/figures/rb-podcast-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/figures/rb-toolbar-prevplaynext.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/figures/rb-toolbar-repeat.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/figures/rb-volume-changer.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/figures/rb-toolbar-shuffle.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ro/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/ru.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/figures/rb-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/figures/rb-iradio-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/figures/rb-toolbar-prevplaynext.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/figures/rb-toolbar-repeat.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/figures/rb-volume-changer.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/figures/rb-toolbar-shuffle.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/figures/rb-notification-zone.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/it/it.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt/pt.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/da.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/rb-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/rb-iradio-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/rb-podcast-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/rb-toolbar-prevplaynext.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/rb-volume-changer.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/es.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/rb-iradio-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/rb-podcast-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/rb-notification-zone.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/sv.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/rb-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/rb-iradio-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/rb-podcast-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/rb-toolbar-prevplaynext.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/rb-toolbar-repeat.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/rb-volume-changer.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/rb-toolbar-shuffle.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/rb-notification-zone.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/eu.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/gl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/figures/rb-window.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/figures/rb-iradio-main.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/figures/rb-toolbar-prevplaynext.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/figures/rb-toolbar-repeat.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/figures/rb-volume-changer.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/figures/rb-toolbar-shuffle.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/zh_CN.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/index.docbook)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/sl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

@@ -0,0 +1,103 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/ca/ca.po,  57, 249, 302, 0, 0, 492, 7820, 549, 8069 

+ help/el/el.po,  541, 8027, 8780, 0, 0, 0, 0, 541, 8027 

+ help/ja/ja.po,  443, 4994, 1486, 3, 43, 0, 0, 446, 5037 

+ help/pt_BR/pt_BR.po,  218, 1680, 1917, 1, 25, 322, 6322, 541, 8027 

+ help/uk/uk.po,  446, 5037, 4364, 0, 0, 0, 0, 446, 5037 

+ help/cs/cs.po,  495, 7510, 6514, 0, 0, 0, 0, 495, 7510 

+ help/fr/fr.po,  441, 5164, 5813, 0, 0, 100, 2863, 541, 8027 

+ help/oc/oc.po,  123, 221, 254, 0, 0, 313, 4793, 436, 5014 

+ help/de/de.po,  495, 7510, 7221, 0, 0, 0, 0, 495, 7510 

+ help/ro/ro.po,  460, 5744, 5851, 2, 124, 79, 2159, 541, 8027 

+ help/ru/ru.po,  436, 5014, 4281, 0, 0, 0, 0, 436, 5014 

+ help/it/it.po,  436, 5014, 4731, 0, 0, 0, 0, 436, 5014 

+ help/pt/pt.po,  433, 4983, 5401, 0, 0, 13, 52, 446, 5035 

+ help/da/da.po,  431, 4971, 4307, 6, 118, 70, 2822, 507, 7911 

+ help/es/es.po,  373, 4601, 5287, 0, 0, 0, 0, 373, 4601 

+ help/sv/sv.po,  373, 4601, 4188, 0, 0, 0, 0, 373, 4601 

+ help/eu/eu.po,  446, 5035, 3771, 0, 0, 0, 0, 446, 5035 

+ help/gl/gl.po,  8, 68, 83, 0, 0, 1, 1, 9, 69 

+ help/zh_CN/zh_CN.po,  436, 5014, 771, 0, 0, 0, 0, 436, 5014 

+ help/sl/sl.po,  429, 4634, 3998, 2, 236, 15, 165, 446, 5035 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ms.po,  282, 1021, 931, 0, 0, 0, 0, 282, 1021 

+ po/is.po,  312, 1099, 994, 0, 0, 14, 124, 326, 1223 

+ po/ru.po,  971, 3734, 3628, 0, 0, 0, 0, 971, 3734 

+ po/si.po,  924, 3575, 3591, 0, 0, 1, 11, 925, 3586 

+ po/hu.po,  969, 3756, 3448, 0, 0, 0, 0, 969, 3756 

+ po/ca@valencia.po,  923, 3940, 4974, 168, 558, 101, 544, 1192, 5042 

+ po/tr.po,  969, 3756, 3240, 0, 0, 0, 0, 969, 3756 

+ po/sr.po,  968, 3746, 3949, 0, 0, 0, 0, 968, 3746 

+ po/et.po,  1183, 5003, 4116, 11, 24, 15, 81, 1209, 5108 

+ po/az.po,  331, 1233, 1112, 0, 0, 0, 0, 331, 1233 

+ po/ta.po,  1070, 4545, 4013, 0, 0, 0, 0, 1070, 4545 

+ po/it.po,  968, 3746, 3967, 0, 0, 0, 0, 968, 3746 

+ po/he.po,  798, 2988, 2823, 72, 316, 189, 1202, 1059, 4506 

+ po/pt.po,  978, 3763, 4277, 0, 0, 0, 0, 978, 3763 

+ po/ca.po,  968, 3746, 4593, 0, 0, 0, 0, 968, 3746 

+ po/ko.po,  971, 3734, 3216, 0, 0, 0, 0, 971, 3734 

+ po/id.po,  969, 3756, 3672, 0, 0, 0, 0, 969, 3756 

+ po/ar.po,  898, 3436, 3577, 1, 2, 17, 94, 916, 3532 

+ po/de.po,  969, 3756, 3650, 0, 0, 0, 0, 969, 3756 

+ po/be@latin.po,  987, 4372, 4078, 0, 0, 0, 0, 987, 4372 

+ po/af.po,  966, 3821, 3960, 1, 7, 165, 974, 1132, 4802 

+ po/nds.po,  169, 234, 242, 3, 7, 919, 4404, 1091, 4645 

+ po/pl.po,  969, 3756, 3871, 0, 0, 0, 0, 969, 3756 

+ po/as.po,  1057, 4505, 3889, 0, 0, 0, 0, 1057, 4505 

+ po/hr.po,  969, 3756, 3699, 0, 0, 0, 0, 969, 3756 

+ po/kk.po,  325, 563, 553, 0, 0, 643, 3156, 968, 3719 

+ po/sl.po,  917, 3533, 3655, 0, 0, 0, 0, 917, 3533 

+ po/cy.po,  328, 1249, 1334, 1, 4, 0, 0, 329, 1253 

+ po/cs.po,  969, 3756, 3798, 0, 0, 0, 0, 969, 3756 

+ po/fur.po,  270, 652, 788, 0, 0, 699, 3104, 969, 3756 

+ po/sv.po,  969, 3756, 3593, 0, 0, 0, 0, 969, 3756 

+ po/mr.po,  1061, 4517, 4603, 0, 0, 0, 0, 1061, 4517 

+ po/zh_TW.po,  969, 3756, 1564, 0, 0, 0, 0, 969, 3756 

+ po/th.po,  916, 3532, 1566, 0, 0, 0, 0, 916, 3532 

+ po/br.po,  1047, 4371, 5029, 47, 218, 37, 208, 1131, 4797 

+ po/be.po,  1033, 4072, 3896, 0, 0, 0, 0, 1033, 4072 

+ po/gd.po,  979, 3769, 5461, 0, 0, 0, 0, 979, 3769 

+ po/ro.po,  970, 3751, 4235, 0, 0, 0, 0, 970, 3751 

+ po/kn.po,  1070, 4545, 4233, 0, 0, 0, 0, 1070, 4545 

+ po/da.po,  969, 3756, 3503, 0, 0, 0, 0, 969, 3756 

+ po/gl.po,  968, 3746, 4530, 0, 0, 0, 0, 968, 3746 

+ po/en_CA.po,  891, 3889, 3899, 0, 0, 0, 0, 891, 3889 

+ po/ga.po,  311, 596, 708, 53, 177, 559, 3234, 923, 4007 

+ po/mn.po,  185, 453, 430, 0, 0, 107, 669, 292, 1122 

+ po/es.po,  969, 3756, 4521, 0, 0, 0, 0, 969, 3756 

+ po/uk.po,  1032, 4049, 3887, 0, 0, 0, 0, 1032, 4049 

+ po/te.po,  966, 3505, 3176, 0, 0, 67, 567, 1033, 4072 

+ po/bs.po,  968, 3719, 3704, 0, 0, 0, 0, 968, 3719 

+ po/lt.po,  969, 3756, 3425, 0, 0, 0, 0, 969, 3756 

+ po/vi.po,  969, 3756, 5014, 0, 0, 0, 0, 969, 3756 

+ po/nl.po,  968, 3746, 3823, 0, 0, 0, 0, 968, 3746 

+ po/pa.po,  910, 3393, 3737, 1, 50, 10, 133, 921, 3576 

+ po/eu.po,  1131, 4797, 4194, 0, 0, 0, 0, 1131, 4797 

+ po/zh_HK.po,  922, 3569, 1520, 0, 0, 0, 0, 922, 3569 

+ po/or.po,  336, 705, 839, 8, 17, 726, 3823, 1070, 4545 

+ po/am.po,  94, 136, 175, 0, 0, 133, 713, 227, 849 

+ po/fa.po,  767, 2269, 2462, 0, 0, 266, 1820, 1033, 4089 

+ po/nn.po,  1169, 4962, 4808, 0, 0, 0, 0, 1169, 4962 

+ po/dz.po,  826, 3813, 1411, 0, 0, 0, 0, 826, 3813 

+ po/nb.po,  968, 3746, 3695, 0, 0, 0, 0, 968, 3746 

+ po/sr@latin.po,  968, 3746, 3949, 0, 0, 0, 0, 968, 3746 

+ po/pt_BR.po,  969, 3756, 4476, 0, 0, 0, 0, 969, 3756 

+ po/bg.po,  1033, 4089, 4621, 0, 0, 0, 0, 1033, 4089 

+ po/rw.po,  32, 35, 34, 269, 1394, 91, 189, 392, 1618 

+ po/fr.po,  969, 3756, 4578, 0, 0, 0, 0, 969, 3756 

+ po/mk.po,  952, 4142, 4598, 0, 0, 0, 0, 952, 4142 

+ po/sk.po,  968, 3746, 3856, 0, 0, 0, 0, 968, 3746 

+ po/bn_IN.po,  790, 2502, 2992, 0, 0, 280, 2043, 1070, 4545 

+ po/zh_CN.po,  979, 3769, 1784, 0, 0, 0, 0, 979, 3769 

+ po/ml.po,  60, 75, 81, 3, 3, 184, 665, 247, 743 

+ po/eo.po,  964, 3697, 3555, 1, 2, 4, 57, 969, 3756 

+ po/hi.po,  1070, 4545, 5515, 0, 0, 0, 0, 1070, 4545 

+ po/ja.po,  917, 3533, 1157, 0, 0, 0, 0, 917, 3533 

+ po/ne.po,  902, 3936, 3934, 0, 0, 0, 0, 902, 3936 

+ po/fi.po,  951, 3674, 2989, 4, 16, 13, 56, 968, 3746 

+ po/lv.po,  969, 3756, 3480, 0, 0, 0, 0, 969, 3756 

+ po/en_GB.po,  1033, 4072, 4087, 0, 0, 0, 0, 1033, 4072 

+ po/ps.po,  533, 1298, 1468, 0, 0, 390, 2721, 923, 4019 

+ po/oc.po,  970, 3732, 4429, 1, 2, 1, 16, 972, 3750 

+ po/gu.po,  1057, 4503, 5122, 8, 15, 4, 19, 1069, 4537 

+ po/el.po,  919, 3596, 3953, 0, 0, 0, 0, 919, 3596 

@@ -0,0 +1,30 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

@@ -0,0 +1,54 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/tr.po,  385, 1848, 1647, 13, 55, 471, 2619, 869, 4522 

+ po/ko.po,  339, 1722, 1696, 13, 55, 517, 2745, 869, 4522 

+ po/sr.po,  495, 2513, 2568, 39, 188, 335, 1821, 869, 4522 

+ po/id.po,  69, 451, 439, 0, 0, 800, 4071, 869, 4522 

+ po/pt.gmo,  340, 1725, 2180, 0, 0, 0, 0, 340, 1725 

+ po/fi.po,  429, 2103, 1771, 13, 55, 427, 2364, 869, 4522 

+ po/sk.po,  608, 3081, 3077, 13, 55, 248, 1386, 869, 4522 

+ po/ru.gmo,  471, 2332, 2289, 0, 0, 0, 0, 471, 2332 

+ po/da.gmo,  289, 1476, 1409, 0, 0, 0, 0, 289, 1476 

+ po/de.po,  685, 3457, 3502, 14, 61, 170, 1004, 869, 4522 

+ po/el.gmo,  16, 74, 90, 0, 0, 0, 0, 16, 74 

+ po/is.po,  72, 327, 328, 1, 6, 796, 4189, 869, 4522 

+ po/br.po,  137, 434, 572, 1, 6, 731, 4082, 869, 4522 

+ po/ms.po,  40, 131, 136, 3, 14, 826, 4377, 869, 4522 

+ po/sl.po,  137, 682, 712, 3, 14, 729, 3826, 869, 4522 

+ po/sv.po,  803, 4160, 3909, 14, 61, 52, 301, 869, 4522 

+ po/ja.po,  628, 3183, 1602, 13, 55, 228, 1284, 869, 4522 

+ po/ko.gmo,  339, 1722, 1696, 0, 0, 0, 0, 339, 1722 

+ po/ar.po,  95, 254, 270, 0, 0, 774, 4268, 869, 4522 

+ po/is.gmo,  72, 327, 328, 0, 0, 0, 0, 72, 327 

+ po/el.po,  16, 74, 90, 0, 0, 853, 4448, 869, 4522 

+ po/sr@latin.po,  495, 2513, 2568, 39, 188, 335, 1821, 869, 4522 

+ po/te.po,  21, 66, 62, 0, 0, 848, 4456, 869, 4522 

+ po/cs.po,  463, 2336, 2209, 13, 55, 393, 2131, 869, 4522 

+ po/cmn.po,  628, 3183, 1375, 40, 194, 201, 1145, 869, 4522 

+ po/ar.gmo,  95, 254, 270, 0, 0, 0, 0, 95, 254 

+ po/te.gmo,  21, 66, 62, 0, 0, 0, 0, 21, 66 

+ po/uk.po,  713, 3674, 4026, 14, 61, 142, 787, 869, 4522 

+ po/vi.po,  713, 3674, 5839, 14, 61, 142, 787, 869, 4522 

+ po/nl.gmo,  60, 154, 147, 0, 0, 0, 0, 60, 154 

+ po/zh_CN.gmo,  689, 3492, 1553, 0, 0, 0, 0, 689, 3492 

+ po/sl.gmo,  137, 682, 712, 0, 0, 0, 0, 137, 682 

+ po/pt_BR.po,  535, 2671, 3235, 13, 55, 321, 1796, 869, 4522 

+ po/nb.gmo,  213, 1057, 1035, 0, 0, 0, 0, 213, 1057 

+ po/zh_CN.po,  689, 3492, 1553, 14, 61, 166, 969, 869, 4522 

+ po/nl.po,  60, 154, 147, 2, 8, 807, 4360, 869, 4522 

+ po/fr.po,  645, 3254, 4018, 13, 55, 211, 1213, 869, 4522 

+ po/es.po,  628, 3183, 3933, 13, 55, 228, 1284, 869, 4522 

+ po/pt.po,  340, 1725, 2180, 37, 186, 492, 2611, 869, 4522 

+ po/br.gmo,  137, 434, 572, 0, 0, 0, 0, 137, 434 

+ po/ms.gmo,  40, 131, 136, 0, 0, 0, 0, 40, 131 

+ po/eo.po,  713, 3674, 3614, 14, 61, 142, 787, 869, 4522 

+ po/da.po,  289, 1476, 1409, 13, 55, 567, 2991, 869, 4522 

+ po/id.gmo,  69, 451, 439, 0, 0, 0, 0, 69, 451 

+ po/nb.po,  213, 1057, 1035, 13, 55, 643, 3410, 869, 4522 

+ po/cs.gmo,  463, 2336, 2209, 0, 0, 0, 0, 463, 2336 

+ po/it.po,  675, 3421, 3904, 14, 61, 180, 1040, 869, 4522 

+ po/ru.po,  471, 2332, 2289, 14, 61, 384, 2129, 869, 4522 

+ po/tr.gmo,  385, 1848, 1647, 0, 0, 0, 0, 385, 1848 

+ po/zh_TW.po,  803, 4160, 1875, 14, 61, 52, 301, 869, 4522 

+ po/ca.po,  677, 3407, 4701, 13, 55, 179, 1060, 869, 4522 

+ po/rpm.pot,  0, 0, 0, 0, 0, 869, 4522, 869, 4522 

+ po/pl.po,  855, 4461, 4625, 14, 61, 0, 0, 869, 4522 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

@@ -0,0 +1,126 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/bg.gmo,  303, 1624, 1887, 0, 0, 0, 0, 303, 1624 

+ po/ko.po,  303, 1624, 1467, 0, 0, 0, 0, 303, 1624 

+ po/kn.gmo,  114, 556, 545, 0, 0, 0, 0, 114, 556 

+ po/gu.po,  84, 377, 378, 0, 0, 30, 179, 114, 556 

+ po/hu.po,  303, 1624, 1670, 0, 0, 0, 0, 303, 1624 

+ po/th.gmo,  142, 669, 340, 0, 0, 0, 0, 142, 669 

+ po/lt.gmo,  303, 1624, 1376, 0, 0, 0, 0, 303, 1624 

+ po/pl.po,  303, 1624, 1843, 0, 0, 0, 0, 303, 1624 

+ po/zh_TW.po,  303, 1624, 587, 0, 0, 0, 0, 303, 1624 

+ po/te.gmo,  118, 577, 523, 0, 0, 0, 0, 118, 577 

+ po/el.po,  303, 1624, 1809, 0, 0, 0, 0, 303, 1624 

+ po/gl.po,  286, 1558, 2197, 0, 0, 0, 0, 286, 1558 

+ po/id.gmo,  303, 1624, 1619, 0, 0, 0, 0, 303, 1624 

+ po/hr.gmo,  303, 1624, 1542, 0, 0, 0, 0, 303, 1624 

+ po/sk.po,  303, 1624, 1749, 0, 0, 0, 0, 303, 1624 

+ po/fur.po,  303, 1624, 2261, 0, 0, 0, 0, 303, 1624 

+ po/kn.po,  114, 556, 545, 0, 0, 0, 0, 114, 556 

+ po/sl.gmo,  303, 1624, 1791, 0, 0, 0, 0, 303, 1624 

+ po/ne.po,  97, 332, 314, 154, 867, 52, 425, 303, 1624 

+ po/zh_CN.po,  303, 1624, 609, 0, 0, 0, 0, 303, 1624 

+ po/ar.po,  71, 302, 298, 39, 216, 46, 250, 156, 768 

+ po/oc.gmo,  303, 1624, 2038, 0, 0, 0, 0, 303, 1624 

+ po/nl.po,  303, 1624, 1597, 0, 0, 0, 0, 303, 1624 

+ po/en_GB.po,  303, 1624, 1624, 0, 0, 0, 0, 303, 1624 

+ po/vi.gmo,  306, 1635, 2469, 0, 0, 0, 0, 306, 1635 

+ po/sr.po,  303, 1624, 1828, 0, 0, 0, 0, 303, 1624 

+ po/hi.po,  142, 669, 819, 0, 0, 0, 0, 142, 669 

+ po/rygel.pot,  0, 0, 0, 0, 0, 303, 1624, 303, 1624 

+ po/ja.gmo,  241, 1221, 452, 0, 0, 0, 0, 241, 1221 

+ po/pt_BR.po,  303, 1624, 1918, 0, 0, 0, 0, 303, 1624 

+ po/el.gmo,  303, 1624, 1809, 0, 0, 0, 0, 303, 1624 

+ po/nl.gmo,  303, 1624, 1597, 0, 0, 0, 0, 303, 1624 

+ po/ug.gmo,  143, 676, 667, 0, 0, 0, 0, 143, 676 

+ po/cs.po,  303, 1624, 1662, 0, 0, 0, 0, 303, 1624 

+ po/ar.gmo,  71, 302, 298, 0, 0, 0, 0, 71, 302 

+ po/sr@latin.gmo,  303, 1624, 1828, 0, 0, 0, 0, 303, 1624 

+ po/pt.gmo,  307, 1636, 1905, 0, 0, 0, 0, 307, 1636 

+ po/hi.gmo,  142, 669, 819, 0, 0, 0, 0, 142, 669 

+ po/nb.po,  296, 1575, 1691, 2, 16, 5, 33, 303, 1624 

+ po/sv.gmo,  303, 1624, 1670, 0, 0, 0, 0, 303, 1624 

+ po/gl.gmo,  286, 1558, 2197, 0, 0, 0, 0, 286, 1558 

+ po/he.po,  206, 971, 975, 10, 66, 13, 103, 229, 1140 

+ po/af.po,  74, 250, 275, 1, 6, 55, 336, 130, 592 

+ po/zh_HK.po,  228, 1129, 402, 0, 0, 0, 0, 228, 1129 

+ po/fa.po,  77, 322, 378, 1, 10, 68, 348, 146, 680 

+ po/ru.gmo,  303, 1624, 1634, 0, 0, 0, 0, 303, 1624 

+ po/pl.gmo,  303, 1624, 1843, 0, 0, 0, 0, 303, 1624 

+ po/eu.po,  303, 1624, 1714, 0, 0, 0, 0, 303, 1624 

+ po/eo.gmo,  117, 448, 421, 0, 0, 0, 0, 117, 448 

+ po/tr.gmo,  303, 1624, 1398, 0, 0, 0, 0, 303, 1624 

+ po/ru.po,  303, 1624, 1634, 0, 0, 0, 0, 303, 1624 

+ po/as.po,  229, 1140, 1231, 0, 0, 0, 0, 229, 1140 

+ po/lv.po,  303, 1624, 1498, 0, 0, 0, 0, 303, 1624 

+ po/th.po,  142, 669, 340, 0, 0, 0, 0, 142, 669 

+ po/lt.po,  303, 1624, 1376, 0, 0, 0, 0, 303, 1624 

+ po/es.gmo,  303, 1624, 2144, 0, 0, 0, 0, 303, 1624 

+ po/da.po,  303, 1624, 1599, 0, 0, 0, 0, 303, 1624 

+ po/ro.gmo,  114, 556, 685, 0, 0, 0, 0, 114, 556 

+ po/oc.po,  303, 1624, 2038, 0, 0, 0, 0, 303, 1624 

+ po/de.po,  303, 1624, 1752, 0, 0, 0, 0, 303, 1624 

+ po/es.po,  303, 1624, 2144, 0, 0, 0, 0, 303, 1624 

+ po/ta.gmo,  142, 669, 622, 0, 0, 0, 0, 142, 669 

+ po/fr.po,  303, 1624, 2030, 0, 0, 0, 0, 303, 1624 

+ po/ro.po,  114, 556, 685, 0, 0, 0, 0, 114, 556 

+ po/af.gmo,  74, 250, 275, 0, 0, 0, 0, 74, 250 

+ po/zh_TW.gmo,  303, 1624, 587, 0, 0, 0, 0, 303, 1624 

+ po/tg.gmo,  20, 75, 79, 0, 0, 0, 0, 20, 75 

+ po/it.gmo,  303, 1624, 1856, 0, 0, 0, 0, 303, 1624 

+ po/sl.po,  303, 1624, 1791, 0, 0, 0, 0, 303, 1624 

+ po/zh_CN.gmo,  303, 1624, 609, 0, 0, 0, 0, 303, 1624 

+ po/bs.gmo,  242, 1218, 1232, 0, 0, 0, 0, 242, 1218 

+ po/cs.gmo,  303, 1624, 1662, 0, 0, 0, 0, 303, 1624 

+ po/bn_IN.gmo,  114, 556, 608, 0, 0, 0, 0, 114, 556 

+ po/he.gmo,  206, 971, 975, 0, 0, 0, 0, 206, 971 

+ po/ne.gmo,  97, 332, 314, 0, 0, 0, 0, 97, 332 

+ po/ko.gmo,  303, 1624, 1467, 0, 0, 0, 0, 303, 1624 

+ po/gu.gmo,  84, 377, 378, 0, 0, 0, 0, 84, 377 

+ po/ca.po,  303, 1624, 2239, 0, 0, 0, 0, 303, 1624 

+ po/pa.po,  143, 676, 763, 0, 0, 0, 0, 143, 676 

+ po/sr.gmo,  303, 1624, 1828, 0, 0, 0, 0, 303, 1624 

+ po/ca@valencia.po,  303, 1624, 2237, 0, 0, 0, 0, 303, 1624 

+ po/eo.po,  117, 448, 421, 54, 340, 132, 836, 303, 1624 

+ po/hu.gmo,  303, 1624, 1670, 0, 0, 0, 0, 303, 1624 

+ po/ta.po,  142, 669, 622, 0, 0, 0, 0, 142, 669 

+ po/fi.gmo,  135, 525, 460, 0, 0, 0, 0, 135, 525 

+ po/kk.po,  49, 115, 112, 0, 0, 254, 1509, 303, 1624 

+ po/pa.gmo,  143, 676, 763, 0, 0, 0, 0, 143, 676 

+ po/ca@valencia.gmo,  303, 1624, 2237, 0, 0, 0, 0, 303, 1624 

+ po/ca.gmo,  303, 1624, 2239, 0, 0, 0, 0, 303, 1624 

+ po/zh_HK.gmo,  228, 1129, 402, 0, 0, 0, 0, 228, 1129 

+ po/de.gmo,  303, 1624, 1752, 0, 0, 0, 0, 303, 1624 

+ po/et.po,  142, 669, 598, 0, 0, 0, 0, 142, 669 

+ po/vi.po,  306, 1635, 2469, 0, 0, 0, 0, 306, 1635 

+ po/bs.po,  242, 1218, 1232, 0, 0, 0, 0, 242, 1218 

+ po/fr.gmo,  303, 1624, 2030, 0, 0, 0, 0, 303, 1624 

+ po/as.gmo,  229, 1140, 1231, 0, 0, 0, 0, 229, 1140 

+ po/sk.gmo,  303, 1624, 1749, 0, 0, 0, 0, 303, 1624 

+ po/pt_BR.gmo,  303, 1624, 1918, 0, 0, 0, 0, 303, 1624 

+ po/fa.gmo,  77, 322, 378, 0, 0, 0, 0, 77, 322 

+ po/bg.po,  303, 1624, 1887, 0, 0, 0, 0, 303, 1624 

+ po/ja.po,  241, 1221, 452, 0, 0, 2, 4, 243, 1225 

+ po/en_GB.gmo,  303, 1624, 1624, 0, 0, 0, 0, 303, 1624 

+ po/bn_IN.po,  114, 556, 608, 0, 0, 0, 0, 114, 556 

+ po/sr@latin.po,  303, 1624, 1828, 0, 0, 0, 0, 303, 1624 

+ po/uk.po,  290, 1576, 1574, 0, 0, 0, 0, 290, 1576 

+ po/uk.gmo,  290, 1576, 1574, 0, 0, 0, 0, 290, 1576 

+ po/pt.po,  307, 1636, 1905, 0, 0, 0, 0, 307, 1636 

+ po/te.po,  118, 577, 523, 0, 0, 0, 0, 118, 577 

+ po/ml.gmo,  101, 344, 303, 0, 0, 0, 0, 101, 344 

+ po/da.gmo,  303, 1624, 1599, 0, 0, 0, 0, 303, 1624 

+ po/fur.gmo,  303, 1624, 2261, 0, 0, 0, 0, 303, 1624 

+ po/ug.po,  143, 676, 667, 0, 0, 0, 0, 143, 676 

+ po/hr.po,  303, 1624, 1542, 0, 0, 0, 0, 303, 1624 

+ po/id.po,  303, 1624, 1619, 0, 0, 0, 0, 303, 1624 

+ po/nb.gmo,  296, 1575, 1691, 0, 0, 0, 0, 296, 1575 

+ po/lv.gmo,  303, 1624, 1498, 0, 0, 0, 0, 303, 1624 

+ po/ml.po,  101, 344, 303, 0, 0, 202, 1280, 303, 1624 

+ po/et.gmo,  142, 669, 598, 0, 0, 0, 0, 142, 669 

+ po/tr.po,  303, 1624, 1398, 0, 0, 0, 0, 303, 1624 

+ po/sv.po,  303, 1624, 1670, 0, 0, 0, 0, 303, 1624 

+ po/tg.po,  20, 75, 79, 0, 0, 199, 987, 219, 1062 

+ po/fi.po,  135, 525, 460, 81, 544, 87, 555, 303, 1624 

+ po/it.po,  303, 1624, 1856, 0, 0, 0, 0, 303, 1624 

+ po/eu.gmo,  303, 1624, 1714, 0, 0, 0, 0, 303, 1624 

+ po/kk.gmo,  49, 115, 112, 0, 0, 0, 0, 49, 115 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./source3/locale/net/genmsg)

+ translate.tools.pocount: ERROR: Unknown filetype (./source3/locale/pam_winbind/genmsg)

@@ -0,0 +1,23 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ source3/locale/net/de.po,  178, 726, 658, 0, 0, 1563, 11281, 1741, 12007 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ source3/locale/pam_winbind/zh_TW.po,  31, 187, 41, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/zh_CN.po,  31, 187, 40, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/tr.po,  128, 524, 482, 0, 0, 0, 0, 128, 524 

+ source3/locale/pam_winbind/sv.po,  31, 187, 182, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/ru.po,  31, 187, 185, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/pt_BR.po,  31, 187, 221, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/pl.po,  31, 187, 189, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/nl.po,  31, 187, 185, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/nb.po,  34, 212, 191, 18, 67, 76, 245, 128, 524 

+ source3/locale/pam_winbind/ko.po,  31, 187, 148, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/ja.po,  128, 524, 168, 0, 0, 0, 0, 128, 524 

+ source3/locale/pam_winbind/it.po,  31, 187, 205, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/hu.po,  31, 187, 168, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/fr.po,  128, 524, 679, 0, 0, 0, 0, 128, 524 

+ source3/locale/pam_winbind/fi.po,  34, 212, 172, 18, 67, 76, 245, 128, 524 

+ source3/locale/pam_winbind/es.po,  31, 187, 265, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/de.po,  34, 214, 204, 19, 70, 75, 240, 128, 524 

+ source3/locale/pam_winbind/da.po,  34, 212, 196, 18, 67, 76, 245, 128, 524 

+ source3/locale/pam_winbind/cs.po,  31, 187, 174, 18, 67, 79, 270, 128, 524 

+ source3/locale/pam_winbind/ar.po,  31, 187, 221, 18, 67, 79, 270, 128, 524 

@@ -0,0 +1,19 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xc0 in position 8: invalid start byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf3 in position 92: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf3 in position 25: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe3 in position 4: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe8 in position 8: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfa in position 3: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog-2014)

@@ -0,0 +1,74 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/de.gmo,  114, 611, 639, 0, 0, 0, 0, 114, 611 

+ po/ru.gmo,  126, 683, 711, 0, 0, 0, 0, 126, 683 

+ po/bg.gmo,  137, 788, 930, 0, 0, 0, 0, 137, 788 

+ po/sr.gmo,  126, 683, 709, 0, 0, 0, 0, 126, 683 

+ po/ga.gmo,  137, 788, 928, 0, 0, 0, 0, 137, 788 

+ po/da.po,  126, 683, 670, 10, 98, 1, 7, 137, 788 

+ po/pt.gmo,  75, 421, 478, 0, 0, 0, 0, 75, 421 

+ po/af.gmo,  32, 133, 128, 0, 0, 0, 0, 32, 133 

+ po/ru.po,  126, 683, 711, 10, 98, 1, 7, 137, 788 

+ po/fr.po,  137, 788, 942, 0, 0, 0, 0, 137, 788 

+ po/sk.po,  137, 788, 824, 0, 0, 0, 0, 137, 788 

+ po/pt_BR.po,  137, 788, 937, 0, 0, 0, 0, 137, 788 

+ po/ja.gmo,  102, 564, 312, 0, 0, 0, 0, 102, 564 

+ po/eu.po,  17, 66, 72, 5, 30, 115, 692, 137, 788 

+ po/cs.gmo,  137, 788, 779, 0, 0, 0, 0, 137, 788 

+ po/vi.gmo,  137, 788, 1177, 0, 0, 0, 0, 137, 788 

+ po/uk.po,  137, 788, 847, 0, 0, 0, 0, 137, 788 

+ po/pl.gmo,  77, 443, 471, 0, 0, 0, 0, 77, 443 

+ po/sl.gmo,  77, 443, 443, 0, 0, 0, 0, 77, 443 

+ po/el.gmo,  77, 443, 489, 0, 0, 0, 0, 77, 443 

+ po/nb.gmo,  137, 788, 742, 0, 0, 0, 0, 137, 788 

+ po/zh_CN.gmo,  115, 581, 253, 0, 0, 0, 0, 115, 581 

+ po/es.gmo,  137, 788, 934, 0, 0, 0, 0, 137, 788 

+ po/et.gmo,  126, 683, 591, 0, 0, 0, 0, 126, 683 

+ po/ca.po,  77, 443, 569, 12, 94, 48, 251, 137, 788 

+ po/id.po,  77, 443, 462, 12, 94, 48, 251, 137, 788 

+ po/it.po,  75, 421, 468, 10, 71, 52, 296, 137, 788 

+ po/af.po,  32, 133, 128, 36, 168, 69, 487, 137, 788 

+ po/uk.gmo,  137, 788, 847, 0, 0, 0, 0, 137, 788 

+ po/sr.po,  126, 683, 709, 10, 98, 1, 7, 137, 788 

+ po/sk.gmo,  137, 788, 824, 0, 0, 0, 0, 137, 788 

+ po/sv.gmo,  137, 788, 775, 0, 0, 0, 0, 137, 788 

+ po/nl.po,  137, 788, 822, 0, 0, 0, 0, 137, 788 

+ po/hr.po,  137, 788, 834, 0, 0, 0, 0, 137, 788 

+ po/vi.po,  137, 788, 1177, 0, 0, 0, 0, 137, 788 

+ po/eo.gmo,  126, 683, 674, 0, 0, 0, 0, 126, 683 

+ po/pt.po,  75, 421, 478, 10, 71, 52, 296, 137, 788 

+ po/gl.gmo,  84, 471, 585, 0, 0, 0, 0, 84, 471 

+ po/he.po,  10, 58, 60, 29, 120, 98, 610, 137, 788 

+ po/hu.po,  126, 683, 659, 10, 98, 1, 7, 137, 788 

+ po/nb.po,  137, 788, 742, 0, 0, 0, 0, 137, 788 

+ po/sv.po,  137, 788, 775, 0, 0, 0, 0, 137, 788 

+ po/zh_TW.po,  77, 443, 167, 12, 94, 48, 251, 137, 788 

+ po/zh_CN.po,  115, 581, 253, 14, 152, 8, 55, 137, 788 

+ po/sed.pot,  0, 0, 0, 0, 0, 137, 788, 137, 788 

+ po/ast.po,  75, 421, 523, 10, 71, 52, 296, 137, 788 

+ po/ro.po,  69, 385, 430, 13, 85, 55, 318, 137, 788 

+ po/pt_BR.gmo,  137, 788, 937, 0, 0, 0, 0, 137, 788 

+ po/et.po,  126, 683, 591, 10, 98, 1, 7, 137, 788 

+ po/ga.po,  137, 788, 928, 0, 0, 0, 0, 137, 788 

+ po/sl.po,  77, 443, 443, 12, 94, 48, 251, 137, 788 

+ po/eu.gmo,  17, 66, 72, 0, 0, 0, 0, 17, 66 

+ po/fi.gmo,  126, 683, 601, 0, 0, 0, 0, 126, 683 

+ po/fi.po,  126, 683, 601, 10, 98, 1, 7, 137, 788 

+ po/el.po,  77, 443, 489, 14, 99, 46, 246, 137, 788 

+ po/da.gmo,  126, 683, 670, 0, 0, 0, 0, 126, 683 

+ po/tr.gmo,  77, 443, 398, 0, 0, 0, 0, 77, 443 

+ po/id.gmo,  77, 443, 462, 0, 0, 0, 0, 77, 443 

+ po/pl.po,  77, 443, 471, 12, 94, 48, 251, 137, 788 

+ po/cs.po,  137, 788, 779, 0, 0, 0, 0, 137, 788 

+ po/de.po,  114, 611, 639, 8, 84, 15, 93, 137, 788 

+ po/es.po,  137, 788, 934, 0, 0, 0, 0, 137, 788 

+ po/ja.po,  102, 564, 312, 18, 159, 17, 65, 137, 788 

+ po/hr.gmo,  137, 788, 834, 0, 0, 0, 0, 137, 788 

+ po/eo.po,  126, 683, 674, 10, 98, 1, 7, 137, 788 

+ po/hu.gmo,  126, 683, 659, 0, 0, 0, 0, 126, 683 

+ po/zh_TW.gmo,  77, 443, 167, 0, 0, 0, 0, 77, 443 

+ po/fr.gmo,  137, 788, 942, 0, 0, 0, 0, 137, 788 

+ po/bg.po,  137, 788, 930, 0, 0, 0, 0, 137, 788 

+ po/ko.po,  10, 58, 64, 29, 120, 98, 610, 137, 788 

+ po/nl.gmo,  137, 788, 822, 0, 0, 0, 0, 137, 788 

+ po/tr.po,  77, 443, 398, 12, 94, 48, 251, 137, 788 

+ po/gl.po,  84, 471, 585, 11, 89, 42, 228, 137, 788 

@@ -0,0 +1,17 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./man/po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./man/po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./man/po/XMLFILES)

+ translate.tools.pocount: ERROR: Unknown filetype (./man/po/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./man/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,88 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ man/po/de.po,  1165, 15441, 15138, 63, 1024, 18, 323, 1246, 16788 

+ man/po/da.po,  284, 2133, 1878, 38, 299, 924, 14356, 1246, 16788 

+ man/po/zh_CN.po,  992, 10751, 2893, 77, 1427, 177, 4610, 1246, 16788 

+ man/po/pl.po,  305, 1956, 1735, 223, 1506, 718, 13326, 1246, 16788 

+ man/po/it.po,  1131, 15246, 15351, 68, 1166, 47, 376, 1246, 16788 

+ man/po/ru.po,  1132, 15289, 13173, 67, 1123, 47, 376, 1246, 16788 

+ man/po/fr.po,  1134, 15368, 17304, 65, 1044, 47, 376, 1246, 16788 

+ man/po/sv.po,  413, 2261, 2021, 271, 2232, 562, 12295, 1246, 16788 

+ man/po/shadow-man-pages.pot,  0, 0, 0, 0, 0, 1246, 16788, 1246, 16788 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ro.po,  210, 1033, 1131, 183, 1243, 206, 1817, 599, 4093 

+ po/hu.gmo,  210, 1033, 958, 0, 0, 0, 0, 210, 1033 

+ po/kk.gmo,  583, 3895, 3787, 0, 0, 0, 0, 583, 3895 

+ po/fi.po,  210, 1033, 898, 185, 1253, 204, 1807, 599, 4093 

+ po/nn.po,  147, 711, 723, 220, 1358, 232, 2024, 599, 4093 

+ po/es.gmo,  495, 3246, 4010, 0, 0, 0, 0, 495, 3246 

+ po/de.po,  554, 3657, 3684, 33, 333, 12, 103, 599, 4093 

+ po/cs.po,  576, 3819, 3604, 17, 216, 6, 58, 599, 4093 

+ po/pt.gmo,  552, 3644, 4268, 0, 0, 0, 0, 552, 3644 

+ po/sk.po,  386, 2403, 2424, 99, 755, 114, 935, 599, 4093 

+ po/eu.po,  419, 2689, 2480, 94, 729, 86, 675, 599, 4093 

+ po/gl.po,  210, 1033, 1310, 185, 1253, 204, 1807, 599, 4093 

+ po/gl.gmo,  210, 1033, 1310, 0, 0, 0, 0, 210, 1033 

+ po/sq.gmo,  7, 28, 31, 0, 0, 0, 0, 7, 28 

+ po/zh_CN.gmo,  546, 3609, 1581, 0, 0, 0, 0, 546, 3609 

+ po/sv.gmo,  482, 3139, 3081, 0, 0, 0, 0, 482, 3139 

+ po/it.gmo,  229, 1172, 1375, 0, 0, 0, 0, 229, 1172 

+ po/pt.po,  552, 3644, 4268, 35, 346, 12, 103, 599, 4093 

+ po/nl.po,  582, 3890, 4176, 13, 167, 4, 36, 599, 4093 

+ po/shadow.pot,  0, 0, 0, 0, 0, 599, 4093, 599, 4093 

+ po/pt_BR.po,  496, 3263, 3583, 55, 486, 48, 344, 599, 4093 

+ po/ca.po,  552, 3644, 4509, 36, 353, 11, 96, 599, 4093 

+ po/da.po,  552, 3644, 3450, 35, 346, 12, 103, 599, 4093 

+ po/km.gmo,  184, 918, 680, 0, 0, 0, 0, 184, 918 

+ po/ja.po,  554, 3657, 2046, 33, 333, 12, 103, 599, 4093 

+ po/eu.gmo,  419, 2689, 2480, 0, 0, 0, 0, 419, 2689 

+ po/tr.gmo,  229, 1172, 1094, 0, 0, 0, 0, 229, 1172 

+ po/dz.gmo,  209, 1031, 530, 0, 0, 0, 0, 209, 1031 

+ po/nl.gmo,  582, 3890, 4176, 0, 0, 0, 0, 582, 3890 

+ po/uk.po,  210, 1033, 1046, 185, 1253, 204, 1807, 599, 4093 

+ po/da.gmo,  552, 3644, 3450, 0, 0, 0, 0, 552, 3644 

+ po/bs.po,  36, 127, 126, 107, 649, 456, 3317, 599, 4093 

+ po/sk.gmo,  386, 2403, 2424, 0, 0, 0, 0, 386, 2403 

+ po/ne.gmo,  210, 1033, 1119, 0, 0, 0, 0, 210, 1033 

+ po/tl.po,  209, 1015, 1265, 186, 1271, 204, 1807, 599, 4093 

+ po/nb.gmo,  583, 3895, 3926, 0, 0, 0, 0, 583, 3895 

+ po/es.po,  495, 3246, 4010, 56, 491, 48, 356, 599, 4093 

+ po/zh_TW.gmo,  160, 786, 322, 0, 0, 0, 0, 160, 786 

+ po/fr.po,  0, 0, 0, 115, 598, 484, 3495, 599, 4093 

+ po/el.po,  548, 3615, 3973, 38, 365, 13, 113, 599, 4093 

+ po/ja.gmo,  554, 3657, 2046, 0, 0, 0, 0, 554, 3657 

+ po/id.gmo,  182, 887, 941, 0, 0, 0, 0, 182, 887 

+ po/de.gmo,  554, 3657, 3684, 0, 0, 0, 0, 554, 3657 

+ po/tr.po,  229, 1172, 1094, 202, 1527, 168, 1394, 599, 4093 

+ po/he.po,  50, 197, 208, 179, 1078, 370, 2818, 599, 4093 

+ po/ru.po,  583, 3895, 3992, 12, 162, 4, 36, 599, 4093 

+ po/it.po,  229, 1172, 1375, 194, 1487, 176, 1434, 599, 4093 

+ po/nb.po,  583, 3895, 3926, 12, 162, 4, 36, 599, 4093 

+ po/km.po,  184, 918, 680, 209, 1358, 206, 1817, 599, 4093 

+ po/pl.po,  210, 1033, 1117, 185, 1253, 204, 1807, 599, 4093 

+ po/ko.po,  301, 1719, 1630, 134, 1055, 164, 1319, 599, 4093 

+ po/he.gmo,  50, 197, 208, 0, 0, 0, 0, 50, 197 

+ po/vi.po,  583, 3895, 5510, 12, 162, 4, 36, 599, 4093 

+ po/uk.gmo,  210, 1033, 1046, 0, 0, 0, 0, 210, 1033 

+ po/bs.gmo,  36, 127, 126, 0, 0, 0, 0, 36, 127 

+ po/sq.po,  7, 28, 31, 83, 495, 509, 3570, 599, 4093 

+ po/vi.gmo,  583, 3895, 5510, 0, 0, 0, 0, 583, 3895 

+ po/ru.gmo,  583, 3895, 3992, 0, 0, 0, 0, 583, 3895 

+ po/ca.gmo,  552, 3644, 4509, 0, 0, 0, 0, 552, 3644 

+ po/tl.gmo,  209, 1015, 1265, 0, 0, 0, 0, 209, 1015 

+ po/nn.gmo,  147, 711, 723, 0, 0, 0, 0, 147, 711 

+ po/ne.po,  210, 1033, 1119, 183, 1243, 206, 1817, 599, 4093 

+ po/dz.po,  209, 1031, 530, 184, 1245, 206, 1817, 599, 4093 

+ po/kk.po,  583, 3895, 3787, 12, 162, 4, 36, 599, 4093 

+ po/cs.gmo,  576, 3819, 3604, 0, 0, 0, 0, 576, 3819 

+ po/id.po,  182, 887, 941, 208, 1370, 209, 1836, 599, 4093 

+ po/hu.po,  210, 1033, 958, 185, 1253, 204, 1807, 599, 4093 

+ po/pl.gmo,  210, 1033, 1117, 0, 0, 0, 0, 210, 1033 

+ po/ko.gmo,  301, 1719, 1630, 0, 0, 0, 0, 301, 1719 

+ po/zh_TW.po,  160, 786, 322, 213, 1323, 226, 1984, 599, 4093 

+ po/sv.po,  482, 3139, 3081, 52, 461, 65, 493, 599, 4093 

+ po/fi.gmo,  210, 1033, 898, 0, 0, 0, 0, 210, 1033 

+ po/zh_CN.po,  546, 3609, 1581, 38, 371, 15, 113, 599, 4093 

+ po/pt_BR.gmo,  496, 3263, 3583, 0, 0, 0, 0, 496, 3263 

+ po/fr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/el.gmo,  548, 3615, 3973, 0, 0, 0, 0, 548, 3615 

+ po/ro.gmo,  210, 1033, 1131, 0, 0, 0, 0, 210, 1033 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

@@ -0,0 +1,152 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/pt_BR.po,  764, 1956, 2421, 0, 0, 9, 35, 773, 1991 

+ po/ja.po,  619, 1553, 1379, 0, 0, 154, 438, 773, 1991 

+ po/af.po,  640, 1603, 913, 0, 0, 133, 388, 773, 1991 

+ po/ja.gmo,  619, 1553, 1379, 0, 0, 0, 0, 619, 1553 

+ po/he.gmo,  674, 1704, 2051, 0, 0, 0, 0, 674, 1704 

+ po/cy.gmo,  145, 344, 357, 0, 0, 0, 0, 145, 344 

+ po/th.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ms.gmo,  257, 616, 616, 0, 0, 0, 0, 257, 616 

+ po/ro.gmo,  579, 1445, 1562, 0, 0, 0, 0, 579, 1445 

+ po/zh_CN.gmo,  722, 1842, 1574, 0, 0, 0, 0, 722, 1842 

+ po/wa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/cs.gmo,  722, 1842, 2014, 0, 0, 0, 0, 722, 1842 

+ po/ast.gmo,  201, 491, 629, 0, 0, 0, 0, 201, 491 

+ po/da.po,  773, 1991, 1115, 0, 0, 0, 0, 773, 1991 

+ po/nl.po,  605, 1519, 945, 0, 0, 168, 472, 773, 1991 

+ po/he.po,  674, 1704, 2051, 0, 0, 99, 287, 773, 1991 

+ po/rw.po,  0, 0, 0, 0, 0, 654, 1669, 654, 1669 

+ po/kk.gmo,  722, 1842, 1908, 0, 0, 0, 0, 722, 1842 

+ po/es.gmo,  722, 1842, 2529, 0, 0, 0, 0, 722, 1842 

+ po/lv.gmo,  619, 1553, 1544, 0, 0, 0, 0, 619, 1553 

+ po/sq.po,  529, 1306, 1467, 0, 0, 244, 685, 773, 1991 

+ po/tr.po,  693, 1762, 1853, 0, 0, 80, 229, 773, 1991 

+ po/sl.gmo,  641, 1613, 2037, 0, 0, 0, 0, 641, 1613 

+ po/mr.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/zh_CN.po,  722, 1842, 1574, 0, 0, 51, 149, 773, 1991 

+ po/de.po,  773, 1991, 957, 0, 0, 0, 0, 773, 1991 

+ po/be.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/it.po,  773, 1991, 2116, 0, 0, 0, 0, 773, 1991 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/te.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/vi.po,  546, 1351, 2022, 0, 0, 227, 640, 773, 1991 

+ po/cs.po,  722, 1842, 2014, 0, 0, 51, 149, 773, 1991 

+ po/ky.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/pa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sq.gmo,  529, 1306, 1467, 0, 0, 0, 0, 529, 1306 

+ po/ka.po,  199, 503, 512, 0, 0, 574, 1488, 773, 1991 

+ po/gl.gmo,  638, 1605, 2171, 0, 0, 0, 0, 638, 1605 

+ po/ast.po,  201, 491, 629, 0, 0, 572, 1500, 773, 1991 

+ po/zh_HK.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/id.gmo,  722, 1842, 1934, 0, 0, 0, 0, 722, 1842 

+ po/hu.gmo,  722, 1842, 1495, 0, 0, 0, 0, 722, 1842 

+ po/kk.po,  722, 1842, 1908, 0, 0, 51, 149, 773, 1991 

+ po/gu.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ko.gmo,  773, 1991, 2077, 0, 0, 0, 0, 773, 1991 

+ po/eo.po,  417, 954, 658, 0, 0, 356, 1037, 773, 1991 

+ po/af.gmo,  640, 1603, 913, 0, 0, 0, 0, 640, 1603 

+ po/hr.po,  773, 1991, 2136, 0, 0, 0, 0, 773, 1991 

+ po/cy.po,  145, 344, 357, 0, 0, 628, 1647, 773, 1991 

+ po/fi.gmo,  773, 1991, 1258, 0, 0, 0, 0, 773, 1991 

+ po/bg.po,  605, 1519, 2223, 0, 0, 168, 472, 773, 1991 

+ po/ca@valencia.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bn_IN.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ms.po,  257, 616, 616, 0, 0, 516, 1375, 773, 1991 

+ po/ga.gmo,  719, 1834, 1866, 0, 0, 0, 0, 719, 1834 

+ po/hi.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/en_GB.gmo,  709, 1806, 1806, 0, 0, 0, 0, 709, 1806 

+ po/oc.po,  661, 1664, 1838, 0, 0, 112, 327, 773, 1991 

+ po/lt.gmo,  577, 1440, 1554, 0, 0, 0, 0, 577, 1440 

+ po/da.gmo,  773, 1991, 1115, 0, 0, 0, 0, 773, 1991 

+ po/be@latin.gmo,  561, 1387, 1435, 0, 0, 0, 0, 561, 1387 

+ po/vi.gmo,  546, 1351, 2022, 0, 0, 0, 0, 546, 1351 

+ po/et.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sr.po,  693, 1762, 1895, 0, 0, 80, 229, 773, 1991 

+ po/az.po,  132, 318, 354, 0, 0, 641, 1673, 773, 1991 

+ po/pt.po,  659, 1660, 1915, 0, 0, 114, 331, 773, 1991 

+ po/ko.po,  773, 1991, 2077, 0, 0, 0, 0, 773, 1991 

+ po/ro.po,  579, 1445, 1562, 0, 0, 194, 546, 773, 1991 

+ po/ia.gmo,  659, 1660, 1950, 0, 0, 0, 0, 659, 1660 

+ po/pl.po,  773, 1991, 2215, 0, 0, 0, 0, 773, 1991 

+ po/nb.gmo,  505, 1242, 768, 0, 0, 0, 0, 505, 1242 

+ po/bg.gmo,  605, 1519, 2223, 0, 0, 0, 0, 605, 1519 

+ po/th.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/ga.po,  719, 1834, 1866, 0, 0, 54, 157, 773, 1991 

+ po/be@latin.po,  561, 1387, 1435, 0, 0, 0, 0, 561, 1387 

+ po/ta.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/zh_TW.po,  719, 1834, 1612, 0, 0, 54, 157, 773, 1991 

+ po/lv.po,  619, 1553, 1544, 0, 0, 154, 438, 773, 1991 

+ po/ca.gmo,  773, 1991, 2532, 0, 0, 0, 0, 773, 1991 

+ po/sk.po,  718, 1831, 1942, 0, 0, 55, 160, 773, 1991 

+ po/or.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/eu.po,  773, 1991, 1968, 0, 0, 0, 0, 773, 1991 

+ po/ar.po,  578, 1443, 1500, 0, 0, 195, 548, 773, 1991 

+ po/ky.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fur.po,  722, 1842, 2069, 0, 0, 51, 149, 773, 1991 

+ po/sk.gmo,  718, 1831, 1942, 0, 0, 0, 0, 718, 1831 

+ po/lt.po,  577, 1440, 1554, 0, 0, 196, 551, 773, 1991 

+ po/fi.po,  773, 1991, 1258, 0, 0, 0, 0, 773, 1991 

+ po/fo.po,  567, 1409, 1302, 0, 0, 206, 582, 773, 1991 

+ po/hr.gmo,  773, 1991, 2136, 0, 0, 0, 0, 773, 1991 

+ po/ca.po,  773, 1991, 2532, 0, 0, 0, 0, 773, 1991 

+ po/sr.gmo,  693, 1762, 1895, 0, 0, 0, 0, 693, 1762 

+ po/eu.gmo,  773, 1991, 1968, 0, 0, 0, 0, 773, 1991 

+ po/en_GB.po,  709, 1806, 1806, 0, 0, 64, 185, 773, 1991 

+ po/ka.gmo,  199, 503, 512, 0, 0, 0, 0, 199, 503 

+ po/fa.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/pl.gmo,  773, 1991, 2215, 0, 0, 0, 0, 773, 1991 

+ po/fr.gmo,  773, 1991, 2196, 0, 0, 0, 0, 773, 1991 

+ po/ca@valencia.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/ru.gmo,  722, 1842, 1912, 0, 0, 0, 0, 722, 1842 

+ po/it.gmo,  773, 1991, 2116, 0, 0, 0, 0, 773, 1991 

+ po/id.po,  722, 1842, 1934, 0, 0, 51, 149, 773, 1991 

+ po/kn.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/az.gmo,  132, 318, 354, 0, 0, 0, 0, 132, 318 

+ po/ml.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ml.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/tr.gmo,  693, 1762, 1853, 0, 0, 0, 0, 693, 1762 

+ po/nl.gmo,  605, 1519, 945, 0, 0, 0, 0, 605, 1519 

+ po/wa.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/as.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fur.gmo,  722, 1842, 2069, 0, 0, 0, 0, 722, 1842 

+ po/sr@latin.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/el.po,  656, 1653, 1810, 0, 0, 117, 338, 773, 1991 

+ po/eo.gmo,  417, 954, 658, 0, 0, 0, 0, 417, 954 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/uk.gmo,  773, 1991, 2139, 0, 0, 0, 0, 773, 1991 

+ po/de.gmo,  773, 1991, 957, 0, 0, 0, 0, 773, 1991 

+ po/sv.po,  749, 1911, 1044, 0, 0, 24, 80, 773, 1991 

+ po/uk.po,  773, 1991, 2139, 0, 0, 0, 0, 773, 1991 

+ po/et.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/ta.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nb.po,  505, 1242, 768, 0, 0, 268, 749, 773, 1991 

+ po/el.gmo,  656, 1653, 1810, 0, 0, 0, 0, 656, 1653 

+ po/zh_TW.gmo,  719, 1834, 1612, 0, 0, 0, 0, 719, 1834 

+ po/sv.gmo,  749, 1911, 1044, 0, 0, 0, 0, 749, 1911 

+ po/gu.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/fa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/or.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sr@latin.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/es.po,  722, 1842, 2529, 0, 0, 51, 149, 773, 1991 

+ po/be.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pa.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/mr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/hi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fo.gmo,  567, 1409, 1302, 0, 0, 0, 0, 567, 1409 

+ po/pt_BR.gmo,  764, 1956, 2421, 0, 0, 0, 0, 764, 1956 

+ po/nn.gmo,  529, 1306, 812, 0, 0, 0, 0, 529, 1306 

+ po/ar.gmo,  578, 1443, 1500, 0, 0, 0, 0, 578, 1443 

+ po/rw.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/as.po,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/gl.po,  638, 1605, 2171, 0, 0, 135, 386, 773, 1991 

+ po/nn.po,  529, 1306, 812, 0, 0, 244, 685, 773, 1991 

+ po/ia.po,  659, 1660, 1950, 0, 0, 114, 331, 773, 1991 

+ po/pt.gmo,  659, 1660, 1915, 0, 0, 0, 0, 659, 1660 

+ po/fr.po,  773, 1991, 2196, 0, 0, 0, 0, 773, 1991 

+ po/hu.po,  722, 1842, 1495, 0, 0, 51, 149, 773, 1991 

+ po/sl.po,  641, 1613, 2037, 0, 0, 132, 378, 773, 1991 

+ po/shared-mime-info.pot,  0, 0, 0, 0, 0, 773, 1991, 773, 1991 

+ po/oc.gmo,  661, 1664, 1838, 0, 0, 0, 0, 661, 1664 

+ po/te.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ru.po,  722, 1842, 1912, 0, 0, 51, 149, 773, 1991 

@@ -0,0 +1,37 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/scan_toolbar.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/preferences.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/scan_toolbar.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/preferences.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/figures/scan_toolbar.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/figures/preferences.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/scan_toolbar.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/preferences.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/scan_toolbar.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/preferences.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/scan_toolbar.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/preferences.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/scanning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/scanner.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/save.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/rotate.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/reorder.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/quality.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/print.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/scan_toolbar.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/preferences.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/icon.svg)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/external.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/email.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/dpi.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/delete.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/crop.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/brightness-contrast.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/adf.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,110 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/zh_TW/zh_TW.po,  19, 50, 25, 0, 0, 93, 1306, 112, 1356 

+ help/uk/uk.po,  24, 128, 145, 0, 0, 88, 1228, 112, 1356 

+ help/sv/sv.po,  111, 1330, 1173, 0, 0, 0, 0, 111, 1330 

+ help/sr/sr.po,  0, 0, 0, 0, 0, 112, 1356, 112, 1356 

+ help/sl/sl.po,  12, 42, 40, 0, 0, 100, 1314, 112, 1356 

+ help/sk/sk.po,  67, 335, 308, 0, 0, 45, 1021, 112, 1356 

+ help/ru/ru.po,  24, 128, 115, 0, 0, 88, 1228, 112, 1356 

+ help/ro/ro.po,  111, 1353, 1327, 0, 0, 0, 0, 111, 1353 

+ help/pt_BR/pt_BR.po,  111, 1330, 1430, 0, 0, 0, 0, 111, 1330 

+ help/pl/pl.po,  111, 1330, 1064, 0, 0, 0, 0, 111, 1330 

+ help/nl/nl.po,  1, 1, 5, 0, 0, 111, 1355, 112, 1356 

+ help/nb/nb.po,  1, 1, 6, 0, 0, 111, 1355, 112, 1356 

+ help/ku/ku.po,  13, 19, 24, 0, 0, 99, 1337, 112, 1356 

+ help/ja/ja.po,  13, 45, 25, 0, 0, 99, 1311, 112, 1356 

+ help/it/it.po,  28, 83, 106, 0, 0, 84, 1273, 112, 1356 

+ help/ia/ia.po,  33, 81, 95, 0, 0, 79, 1275, 112, 1356 

+ help/hu/hu.po,  111, 1330, 1109, 0, 0, 0, 0, 111, 1330 

+ help/hr/hr.po,  27, 246, 204, 0, 0, 85, 1110, 112, 1356 

+ help/gl/gl.po,  111, 1353, 1309, 0, 0, 0, 0, 111, 1353 

+ help/fr/fr.po,  111, 1353, 1527, 0, 0, 0, 0, 111, 1353 

+ help/fi/fi.po,  14, 39, 36, 0, 0, 98, 1317, 112, 1356 

+ help/eu/eu.po,  24, 128, 108, 0, 0, 88, 1228, 112, 1356 

+ help/es/es.po,  111, 1353, 1502, 0, 0, 0, 0, 111, 1353 

+ help/en_GB/en_GB.po,  24, 128, 134, 0, 0, 88, 1228, 112, 1356 

+ help/el/el.po,  42, 122, 132, 0, 0, 69, 1208, 111, 1330 

+ help/de/de.po,  111, 1330, 1285, 0, 0, 0, 0, 111, 1330 

+ help/da/da.po,  111, 1353, 1238, 0, 0, 0, 0, 111, 1353 

+ help/cs/cs.po,  111, 1330, 1177, 0, 0, 0, 0, 111, 1330 

+ help/ca/ca.po,  111, 1353, 1447, 0, 0, 0, 0, 111, 1353 

+ help/bg/bg.po,  24, 128, 133, 0, 0, 88, 1228, 112, 1356 

+ help/ar/ar.po,  24, 128, 110, 0, 0, 88, 1228, 112, 1356 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  184, 839, 298, 0, 0, 0, 0, 184, 839 

+ po/zh_HK.po,  140, 568, 200, 0, 0, 5, 21, 145, 589 

+ po/zh_CN.po,  192, 847, 337, 0, 0, 0, 0, 192, 847 

+ po/vi.po,  95, 366, 505, 0, 0, 50, 223, 145, 589 

+ po/uz.po,  38, 69, 77, 0, 0, 107, 520, 145, 589 

+ po/ur.po,  11, 11, 26, 0, 0, 134, 578, 145, 589 

+ po/uk.po,  184, 839, 852, 0, 0, 0, 0, 184, 839 

+ po/ug.po,  126, 435, 414, 0, 0, 19, 154, 145, 589 

+ po/tr.po,  182, 836, 775, 0, 0, 0, 0, 182, 836 

+ po/th.po,  138, 509, 316, 0, 0, 7, 80, 145, 589 

+ po/te.po,  89, 349, 301, 0, 0, 56, 240, 145, 589 

+ po/ta.po,  18, 31, 48, 0, 0, 127, 558, 145, 589 

+ po/sv.po,  182, 836, 822, 0, 0, 0, 0, 182, 836 

+ po/sr@latin.po,  192, 847, 831, 0, 0, 0, 0, 192, 847 

+ po/sr.po,  182, 836, 820, 0, 0, 0, 0, 182, 836 

+ po/sq.po,  136, 506, 616, 0, 0, 9, 83, 145, 589 

+ po/sl.po,  182, 836, 876, 0, 0, 0, 0, 182, 836 

+ po/sk.po,  182, 836, 843, 0, 0, 0, 0, 182, 836 

+ po/shn.po,  4, 4, 8, 0, 0, 141, 585, 145, 589 

+ po/se.po,  22, 29, 33, 0, 0, 123, 560, 145, 589 

+ po/sd.po,  60, 121, 135, 0, 0, 85, 468, 145, 589 

+ po/ru.po,  184, 839, 769, 0, 0, 0, 0, 184, 839 

+ po/ro.po,  182, 836, 944, 0, 0, 0, 0, 182, 836 

+ po/pt_BR.po,  182, 836, 1072, 0, 0, 0, 0, 182, 836 

+ po/pt.po,  140, 568, 695, 0, 0, 5, 21, 145, 589 

+ po/pl.po,  182, 836, 830, 0, 0, 0, 0, 182, 836 

+ po/pa.po,  191, 799, 931, 0, 0, 1, 48, 192, 847 

+ po/oc.po,  192, 847, 990, 0, 0, 0, 0, 192, 847 

+ po/nl.po,  182, 836, 953, 0, 0, 0, 0, 182, 836 

+ po/ne.po,  119, 359, 350, 52, 327, 21, 161, 192, 847 

+ po/nb.po,  192, 847, 832, 0, 0, 0, 0, 192, 847 

+ po/my.po,  91, 362, 307, 0, 0, 54, 227, 145, 589 

+ po/ms.po,  140, 568, 559, 0, 0, 5, 21, 145, 589 

+ po/ml.po,  190, 844, 720, 2, 3, 0, 0, 192, 847 

+ po/mjw.po,  98, 262, 256, 0, 0, 84, 574, 182, 836 

+ po/mhr.po,  29, 34, 41, 0, 0, 116, 555, 145, 589 

+ po/lv.po,  182, 836, 741, 0, 0, 0, 0, 182, 836 

+ po/lt.po,  182, 836, 740, 0, 0, 0, 0, 182, 836 

+ po/ky.po,  20, 36, 38, 0, 0, 125, 553, 145, 589 

+ po/ku.po,  49, 69, 85, 0, 0, 96, 520, 145, 589 

+ po/ko.po,  182, 836, 748, 0, 0, 0, 0, 182, 836 

+ po/km.po,  121, 406, 214, 0, 0, 24, 183, 145, 589 

+ po/kk.po,  93, 218, 227, 0, 0, 91, 621, 184, 839 

+ po/ja.po,  182, 836, 368, 0, 0, 0, 0, 182, 836 

+ po/it.po,  182, 836, 885, 0, 0, 0, 0, 182, 836 

+ po/is.po,  183, 838, 888, 0, 0, 0, 0, 183, 838 

+ po/id.po,  182, 836, 848, 0, 0, 0, 0, 182, 836 

+ po/hy.po,  5, 5, 10, 0, 0, 140, 584, 145, 589 

+ po/hu.po,  182, 836, 762, 0, 0, 0, 0, 182, 836 

+ po/hr.po,  182, 836, 758, 0, 0, 0, 0, 182, 836 

+ po/he.po,  140, 568, 567, 0, 0, 5, 21, 145, 589 

+ po/gl.po,  182, 836, 945, 0, 0, 0, 0, 182, 836 

+ po/gd.po,  192, 847, 1120, 0, 0, 0, 0, 192, 847 

+ po/fur.po,  182, 836, 948, 0, 0, 0, 0, 182, 836 

+ po/fr.po,  182, 836, 1119, 0, 0, 0, 0, 182, 836 

+ po/fi.po,  182, 836, 658, 0, 0, 0, 0, 182, 836 

+ po/fa.po,  182, 836, 916, 0, 0, 0, 0, 182, 836 

+ po/eu.po,  182, 836, 702, 0, 0, 0, 0, 182, 836 

+ po/et.po,  89, 349, 323, 0, 0, 56, 240, 145, 589 

+ po/es.po,  182, 836, 1031, 0, 0, 0, 0, 182, 836 

+ po/eo.po,  184, 838, 814, 0, 0, 0, 0, 184, 838 

+ po/en_GB.po,  182, 836, 881, 0, 0, 0, 0, 182, 836 

+ po/el.po,  182, 836, 971, 0, 0, 0, 0, 182, 836 

+ po/de.po,  182, 836, 978, 0, 0, 0, 0, 182, 836 

+ po/da.po,  182, 836, 844, 0, 0, 0, 0, 182, 836 

+ po/cs.po,  182, 836, 840, 0, 0, 0, 0, 182, 836 

+ po/ce.po,  0, 0, 0, 0, 0, 145, 589, 145, 589 

+ po/ca@valencia.po,  192, 847, 972, 0, 0, 0, 0, 192, 847 

+ po/ca.po,  182, 836, 961, 0, 0, 0, 0, 182, 836 

+ po/bo.po,  87, 325, 208, 0, 0, 58, 264, 145, 589 

+ po/bg.po,  106, 383, 455, 0, 0, 39, 206, 145, 589 

+ po/be.po,  192, 847, 780, 0, 0, 0, 0, 192, 847 

+ po/az.po,  15, 23, 30, 0, 0, 130, 566, 145, 589 

+ po/ast.po,  120, 404, 471, 0, 0, 25, 185, 145, 589 

+ po/ar.po,  184, 786, 745, 2, 17, 6, 44, 192, 847 

+ po/am.po,  138, 509, 512, 0, 0, 7, 80, 145, 589 

+ po/af.po,  183, 837, 887, 0, 0, 0, 0, 183, 837 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

@@ -0,0 +1,80 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/zh_TW.po,  11, 54, 14, 7, 33, 12, 35, 30, 122 

+ po/zh_CN.po,  11, 54, 19, 7, 33, 12, 35, 30, 122 

+ po/vi.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/ur.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/uk.po,  11, 54, 42, 7, 33, 12, 35, 30, 122 

+ po/tr.po,  11, 54, 53, 7, 33, 12, 35, 30, 122 

+ po/th.po,  11, 54, 21, 6, 29, 13, 39, 30, 122 

+ po/te.po,  11, 54, 51, 7, 33, 12, 35, 30, 122 

+ po/ta.po,  11, 54, 54, 7, 33, 12, 35, 30, 122 

+ po/sv.po,  11, 54, 58, 7, 33, 12, 35, 30, 122 

+ po/sr@latin.po,  11, 54, 50, 7, 33, 12, 35, 30, 122 

+ po/sr.po,  11, 54, 50, 7, 33, 12, 35, 30, 122 

+ po/sq.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/sos.pot,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/sl.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/sk.po,  11, 54, 56, 7, 33, 12, 35, 30, 122 

+ po/si.po,  11, 54, 58, 6, 29, 13, 39, 30, 122 

+ po/ru.po,  11, 54, 45, 7, 33, 12, 35, 30, 122 

+ po/ro.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/pt_BR.po,  11, 54, 60, 7, 33, 12, 35, 30, 122 

+ po/pt.po,  11, 54, 61, 7, 33, 12, 35, 30, 122 

+ po/pl.po,  30, 122, 109, 0, 0, 0, 0, 30, 122 

+ po/pa.po,  11, 54, 63, 7, 33, 12, 35, 30, 122 

+ po/or.po,  11, 54, 58, 7, 33, 12, 35, 30, 122 

+ po/nso.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/nn.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/nl.po,  11, 54, 63, 7, 33, 12, 35, 30, 122 

+ po/nds.po,  4, 13, 12, 2, 7, 24, 102, 30, 122 

+ po/nb.po,  5, 21, 24, 2, 7, 23, 94, 30, 122 

+ po/my.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/ms.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/mr.po,  11, 54, 58, 7, 33, 12, 35, 30, 122 

+ po/ml.po,  11, 54, 48, 7, 33, 12, 35, 30, 122 

+ po/mk.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/lv.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/lt.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/lo.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/ku.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/ko.po,  11, 54, 55, 7, 33, 12, 35, 30, 122 

+ po/kn.po,  11, 54, 47, 7, 33, 12, 35, 30, 122 

+ po/ka.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/ja.po,  11, 54, 19, 7, 33, 12, 35, 30, 122 

+ po/it.po,  11, 54, 67, 7, 33, 12, 35, 30, 122 

+ po/is.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/ilo.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/id.po,  8, 41, 44, 4, 19, 18, 62, 30, 122 

+ po/hy.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/hu.po,  11, 54, 46, 7, 33, 12, 35, 30, 122 

+ po/hr.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/hi.po,  11, 54, 66, 7, 33, 12, 35, 30, 122 

+ po/he.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/gu.po,  11, 54, 68, 7, 33, 12, 35, 30, 122 

+ po/gl.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/fr.po,  11, 54, 64, 7, 33, 12, 35, 30, 122 

+ po/fi.po,  11, 54, 54, 7, 33, 12, 35, 30, 122 

+ po/fa.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/eu.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/et.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/es.po,  30, 122, 159, 0, 0, 0, 0, 30, 122 

+ po/en_GB.po,  11, 54, 54, 6, 29, 13, 39, 30, 122 

+ po/en.po,  11, 54, 54, 8, 38, 14, 45, 33, 137 

+ po/el.po,  11, 54, 67, 7, 33, 12, 35, 30, 122 

+ po/de_CH.po,  11, 54, 55, 6, 29, 13, 39, 30, 122 

+ po/de.po,  11, 54, 55, 7, 33, 12, 35, 30, 122 

+ po/da.po,  11, 54, 57, 7, 33, 12, 35, 30, 122 

+ po/cy.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/cs.po,  11, 54, 50, 7, 33, 12, 35, 30, 122 

+ po/ca.po,  11, 54, 61, 7, 33, 12, 35, 30, 122 

+ po/bs.po,  11, 54, 53, 7, 33, 12, 35, 30, 122 

+ po/bn_IN.po,  11, 54, 65, 7, 33, 12, 35, 30, 122 

+ po/bn.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/bg.po,  11, 54, 51, 7, 33, 12, 35, 30, 122 

+ po/be.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/ast.po,  11, 54, 60, 6, 29, 13, 39, 30, 122 

+ po/as.po,  11, 54, 64, 6, 29, 13, 39, 30, 122 

+ po/ar.po,  11, 54, 55, 7, 33, 12, 35, 30, 122 

+ po/am.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

+ po/af.po,  0, 0, 0, 0, 0, 30, 122, 30, 122 

@@ -0,0 +1,8 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/README)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,7 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/cs.po,  47, 285, 279, 5, 24, 109, 1106, 161, 1415 

+ po/de.po,  155, 1370, 1349, 2, 25, 4, 20, 161, 1415 

+ po/hu.po,  47, 285, 287, 5, 24, 109, 1106, 161, 1415 

+ po/cs.gmo,  47, 285, 279, 0, 0, 0, 0, 47, 285 

+ po/de.gmo,  155, 1370, 1349, 0, 0, 0, 0, 155, 1370 

+ po/hu.gmo,  47, 285, 287, 0, 0, 0, 0, 47, 285 

@@ -0,0 +1,14 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,10 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/spice-gtk.pot,  0, 0, 0, 0, 0, 70, 336, 70, 336 

+ po/cs.gmo,  70, 336, 345, 0, 0, 0, 0, 70, 336 

+ po/cs.po,  70, 336, 345, 0, 0, 0, 0, 70, 336 

+ po/fr.po,  5, 2, 5, 12, 32, 53, 302, 70, 336 

+ po/fr.gmo,  5, 2, 5, 0, 0, 0, 0, 5, 2 

+ po/it.gmo,  57, 248, 261, 0, 0, 0, 0, 57, 248 

+ po/de.gmo,  59, 265, 217, 0, 0, 0, 0, 59, 265 

+ po/it.po,  57, 248, 261, 7, 29, 6, 59, 70, 336 

+ po/de.po,  59, 265, 217, 7, 29, 4, 42, 70, 336 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,72 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  11, 24, 13, 0, 0, 0, 0, 11, 24 

+ po/zh_HK.po,  11, 24, 13, 0, 0, 0, 0, 11, 24 

+ po/zh_CN.po,  11, 24, 17, 0, 0, 0, 0, 11, 24 

+ po/vi.po,  9, 15, 17, 0, 0, 0, 0, 9, 15 

+ po/uz@cyrillic.po,  11, 24, 21, 0, 0, 0, 0, 11, 24 

+ po/uk.po,  11, 24, 25, 0, 0, 0, 0, 11, 24 

+ po/ug.po,  11, 24, 19, 0, 0, 0, 0, 11, 24 

+ po/tr.po,  13, 33, 25, 0, 0, 0, 0, 13, 33 

+ po/th.po,  11, 24, 14, 0, 0, 0, 0, 11, 24 

+ po/tg.po,  11, 24, 22, 0, 0, 0, 0, 11, 24 

+ po/te.po,  11, 24, 23, 0, 0, 0, 0, 11, 24 

+ po/ta.po,  11, 24, 22, 0, 0, 0, 0, 11, 24 

+ po/sv.po,  13, 33, 34, 0, 0, 0, 0, 13, 33 

+ po/sr@latin.po,  11, 24, 29, 0, 0, 0, 0, 11, 24 

+ po/sr.po,  13, 33, 35, 0, 0, 0, 0, 13, 33 

+ po/sl.po,  13, 33, 36, 0, 0, 0, 0, 13, 33 

+ po/sk.po,  11, 24, 26, 0, 0, 0, 0, 11, 24 

+ po/ru.po,  11, 24, 28, 0, 0, 0, 0, 11, 24 

+ po/ro.po,  13, 33, 39, 0, 0, 0, 0, 13, 33 

+ po/pt_BR.po,  13, 33, 34, 0, 0, 0, 0, 13, 33 

+ po/pt.po,  9, 15, 16, 0, 0, 0, 0, 9, 15 

+ po/pl.po,  13, 33, 33, 0, 0, 0, 0, 13, 33 

+ po/pa.po,  11, 24, 28, 0, 0, 0, 0, 11, 24 

+ po/or.po,  11, 24, 25, 0, 0, 0, 0, 11, 24 

+ po/oc.po,  9, 15, 15, 0, 0, 0, 0, 9, 15 

+ po/nl.po,  11, 24, 26, 0, 0, 0, 0, 11, 24 

+ po/ne.po,  9, 15, 15, 0, 0, 0, 0, 9, 15 

+ po/nb.po,  11, 24, 23, 0, 0, 0, 0, 11, 24 

+ po/mr.po,  11, 24, 25, 0, 0, 0, 0, 11, 24 

+ po/ml.po,  11, 24, 22, 0, 0, 0, 0, 11, 24 

+ po/mjw.po,  5, 13, 14, 0, 0, 6, 9, 11, 22 

+ po/lv.po,  13, 33, 31, 0, 0, 0, 0, 13, 33 

+ po/lt.po,  13, 33, 30, 0, 0, 0, 0, 13, 33 

+ po/ko.po,  13, 33, 30, 0, 0, 0, 0, 13, 33 

+ po/kn.po,  11, 24, 23, 0, 0, 0, 0, 11, 24 

+ po/kk.po,  11, 24, 22, 0, 0, 0, 0, 11, 24 

+ po/ja.po,  11, 24, 15, 0, 0, 0, 0, 11, 24 

+ po/it.po,  13, 33, 31, 0, 0, 0, 0, 13, 33 

+ po/is.po,  11, 24, 24, 0, 0, 0, 0, 11, 24 

+ po/id.po,  13, 33, 30, 0, 0, 0, 0, 13, 33 

+ po/hu.po,  13, 33, 29, 0, 0, 0, 0, 13, 33 

+ po/hr.po,  13, 33, 31, 0, 0, 0, 0, 13, 33 

+ po/hi.po,  11, 24, 30, 0, 0, 0, 0, 11, 24 

+ po/he.po,  11, 24, 26, 0, 0, 0, 0, 11, 24 

+ po/gu.po,  11, 24, 28, 0, 0, 0, 0, 11, 24 

+ po/gl.po,  13, 33, 36, 0, 0, 0, 0, 13, 33 

+ po/gd.po,  9, 15, 21, 0, 0, 0, 0, 9, 15 

+ po/fur.po,  13, 33, 32, 0, 0, 0, 0, 13, 33 

+ po/fr.po,  13, 33, 32, 0, 0, 0, 0, 13, 33 

+ po/fi.po,  13, 33, 27, 0, 0, 0, 0, 13, 33 

+ po/fa.po,  13, 33, 31, 0, 0, 0, 0, 13, 33 

+ po/eu.po,  13, 33, 29, 0, 0, 0, 0, 13, 33 

+ po/et.po,  11, 24, 22, 0, 0, 0, 0, 11, 24 

+ po/es.po,  13, 33, 34, 0, 0, 0, 0, 13, 33 

+ po/eo.po,  9, 15, 15, 0, 0, 0, 0, 9, 15 

+ po/en_GB.po,  11, 24, 24, 0, 0, 0, 0, 11, 24 

+ po/el.po,  13, 33, 30, 0, 0, 0, 0, 13, 33 

+ po/de.po,  13, 33, 30, 0, 0, 0, 0, 13, 33 

+ po/da.po,  9, 15, 15, 0, 0, 0, 0, 9, 15 

+ po/cs.po,  13, 33, 32, 0, 0, 0, 0, 13, 33 

+ po/ca@valencia.po,  9, 15, 17, 0, 0, 0, 0, 9, 15 

+ po/ca.po,  13, 33, 35, 0, 0, 0, 0, 13, 33 

+ po/bs.po,  11, 24, 26, 0, 0, 0, 0, 11, 24 

+ po/bn_IN.po,  11, 24, 24, 0, 0, 0, 0, 11, 24 

+ po/bg.po,  11, 24, 27, 0, 0, 0, 0, 11, 24 

+ po/be.po,  11, 24, 26, 0, 0, 0, 0, 11, 24 

+ po/ast.po,  9, 15, 15, 0, 0, 0, 0, 9, 15 

+ po/as.po,  11, 24, 26, 0, 0, 0, 0, 11, 24 

+ po/ar.po,  9, 15, 22, 0, 0, 0, 0, 9, 15 

+ po/an.po,  11, 24, 28, 0, 0, 0, 0, 11, 24 

+ po/af.po,  9, 15, 16, 0, 0, 0, 0, 9, 15 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,62 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/nl.po,  888, 3435, 3358, 4, 8, 7, 7, 899, 3450 

+ po/bn.po,  724, 3023, 3367, 6, 9, 169, 418, 899, 3450 

+ po/pa.po,  729, 3043, 3301, 6, 9, 164, 398, 899, 3450 

+ po/cs.po,  752, 3147, 2850, 2, 4, 145, 299, 899, 3450 

+ po/lv.po,  727, 3039, 2675, 6, 9, 166, 402, 899, 3450 

+ po/hi.po,  727, 3039, 3517, 6, 9, 166, 402, 899, 3450 

+ po/pl.po,  888, 3435, 3327, 4, 8, 7, 7, 899, 3450 

+ po/et.po,  729, 3043, 2498, 6, 9, 164, 398, 899, 3450 

+ po/ru.po,  744, 3137, 2857, 2, 4, 153, 309, 899, 3450 

+ po/sk.po,  846, 3328, 3146, 15, 48, 38, 74, 899, 3450 

+ po/bs.po,  122, 515, 469, 2, 3, 775, 2932, 899, 3450 

+ po/fi.po,  752, 3147, 2439, 2, 4, 145, 299, 899, 3450 

+ po/uk.po,  888, 3435, 3177, 4, 8, 7, 7, 899, 3450 

+ po/sv.po,  752, 3147, 2874, 2, 4, 145, 299, 899, 3450 

+ po/gu.po,  730, 3046, 3366, 7, 11, 162, 393, 899, 3450 

+ po/mr.po,  727, 3039, 3030, 10, 18, 162, 393, 899, 3450 

+ po/pt.po,  744, 3137, 3526, 2, 4, 153, 309, 899, 3450 

+ po/es.po,  752, 3147, 3627, 2, 4, 145, 299, 899, 3450 

+ po/cy.po,  12, 12, 12, 0, 0, 887, 3438, 899, 3450 

+ po/he.po,  606, 2135, 2066, 1, 2, 292, 1313, 899, 3450 

+ po/ro.po,  582, 2345, 2563, 6, 10, 311, 1095, 899, 3450 

+ po/de.po,  830, 3277, 3118, 0, 0, 69, 173, 899, 3450 

+ po/el.po,  743, 3136, 3396, 3, 5, 153, 309, 899, 3450 

+ po/th.po,  557, 2262, 906, 4, 6, 338, 1182, 899, 3450 

+ po/ta.po,  727, 3039, 2646, 6, 9, 166, 402, 899, 3450 

+ po/vi.po,  302, 1175, 1711, 7, 13, 590, 2262, 899, 3450 

+ po/or.po,  730, 3046, 3219, 6, 9, 163, 395, 899, 3450 

+ po/pt_BR.po,  752, 3147, 3625, 2, 4, 145, 299, 899, 3450 

+ po/as.po,  730, 3046, 3181, 6, 9, 163, 395, 899, 3450 

+ po/nn.po,  752, 3147, 2877, 2, 4, 145, 299, 899, 3450 

+ po/sl.po,  727, 3039, 3027, 6, 9, 166, 402, 899, 3450 

+ po/ar.po,  733, 3049, 2944, 5, 8, 161, 393, 899, 3450 

+ po/ko.po,  727, 3039, 2696, 6, 9, 166, 402, 899, 3450 

+ po/ja.po,  729, 3043, 1215, 6, 9, 164, 398, 899, 3450 

+ po/nds.po,  99, 135, 133, 2, 2, 798, 3313, 899, 3450 

+ po/tr.po,  721, 2534, 2363, 66, 161, 112, 755, 899, 3450 

+ po/zh_CN.po,  752, 3147, 1071, 2, 4, 145, 299, 899, 3450 

+ po/bg.po,  730, 3046, 3238, 6, 9, 163, 395, 899, 3450 

+ po/it.po,  734, 3049, 3373, 10, 82, 155, 319, 899, 3450 

+ po/sr.po,  744, 3137, 3101, 2, 4, 153, 309, 899, 3450 

+ po/fa.po,  310, 707, 814, 3, 3, 586, 2740, 899, 3450 

+ po/ca.po,  752, 3147, 3780, 2, 4, 145, 299, 899, 3450 

+ po/sr@latin.po,  685, 2739, 2705, 65, 159, 149, 552, 899, 3450 

+ po/ms.po,  65, 92, 91, 1, 1, 833, 3357, 899, 3450 

+ po/si.po,  17, 21, 24, 4, 9, 878, 3420, 899, 3450 

+ po/br.po,  667, 2662, 3310, 4, 6, 228, 782, 899, 3450 

+ po/lt.po,  616, 2463, 2233, 1, 2, 282, 985, 899, 3450 

+ po/nb.po,  705, 2499, 2441, 6, 9, 188, 942, 899, 3450 

+ po/fr.po,  888, 3435, 4080, 4, 8, 7, 7, 899, 3450 

+ po/is.po,  146, 429, 408, 3, 7, 750, 3014, 899, 3450 

+ po/da.po,  899, 3450, 3152, 0, 0, 0, 0, 899, 3450 

+ po/hr.po,  212, 782, 737, 2, 3, 685, 2665, 899, 3450 

+ po/bn_IN.po,  727, 3039, 3388, 6, 9, 166, 402, 899, 3450 

+ po/kn.po,  729, 3043, 2758, 6, 9, 164, 398, 899, 3450 

+ po/mai.po,  48, 110, 119, 1, 1, 850, 3339, 899, 3450 

+ po/te.po,  730, 3046, 2621, 6, 9, 163, 395, 899, 3450 

+ po/en_GB.po,  729, 3043, 3046, 6, 9, 164, 398, 899, 3450 

+ po/ml.po,  730, 3046, 2604, 6, 9, 163, 395, 899, 3450 

+ po/zh_TW.po,  752, 3147, 1117, 2, 4, 145, 299, 899, 3450 

+ po/id.po,  752, 3147, 3015, 2, 4, 145, 299, 899, 3450 

+ po/hu.po,  752, 3147, 2855, 2, 4, 145, 299, 899, 3450 

@@ -0,0 +1,7 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/its/polkit.loc)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/its/polkit.its)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,30 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  139, 1203, 197, 0, 0, 0, 0, 139, 1203 

+ po/zh_CN.po,  112, 950, 135, 1, 18, 0, 0, 113, 968 

+ po/uk.po,  162, 1332, 1100, 0, 0, 0, 0, 162, 1332 

+ po/tr.po,  133, 1131, 1022, 0, 0, 0, 0, 133, 1131 

+ po/sv.po,  121, 1041, 1020, 0, 0, 0, 0, 121, 1041 

+ po/sr.po,  127, 1090, 1250, 0, 0, 0, 0, 127, 1090 

+ po/sk.po,  46, 371, 353, 0, 0, 69, 614, 115, 985 

+ po/ru.po,  133, 1124, 1144, 0, 0, 0, 0, 133, 1124 

+ po/ro.po,  115, 985, 1054, 0, 0, 0, 0, 115, 985 

+ po/pt_BR.po,  164, 1344, 1435, 0, 0, 0, 0, 164, 1344 

+ po/pl.po,  164, 1344, 1192, 0, 0, 0, 0, 164, 1344 

+ po/lt.po,  139, 1203, 1061, 0, 0, 0, 0, 139, 1203 

+ po/ko.po,  113, 968, 792, 0, 0, 0, 0, 113, 968 

+ po/ja.po,  164, 1344, 174, 0, 0, 0, 0, 164, 1344 

+ po/it.po,  139, 1203, 1215, 0, 0, 0, 0, 139, 1203 

+ po/id.po,  125, 1065, 953, 0, 0, 0, 0, 125, 1065 

+ po/hu.po,  115, 985, 786, 0, 0, 0, 0, 115, 985 

+ po/hr.po,  113, 968, 851, 0, 0, 0, 0, 113, 968 

+ po/gl.po,  113, 968, 1032, 0, 0, 0, 0, 113, 968 

+ po/fr.po,  137, 1185, 1297, 0, 0, 0, 0, 137, 1185 

+ po/es.po,  113, 968, 1123, 0, 0, 0, 0, 113, 968 

+ po/el.po,  68, 603, 650, 30, 272, 15, 93, 113, 968 

+ po/de.po,  113, 968, 972, 0, 0, 0, 0, 113, 968 

+ po/da.po,  113, 968, 990, 0, 0, 0, 0, 113, 968 

+ po/cs.po,  164, 1344, 1207, 0, 0, 0, 0, 164, 1344 

+ po/ca.po,  125, 1065, 1285, 0, 0, 0, 0, 125, 1065 

+ po/bg.po,  115, 985, 1112, 0, 0, 0, 0, 115, 985 

+ po/be@latin.po,  115, 985, 787, 0, 0, 0, 0, 115, 985 

+ po/be.po,  115, 985, 787, 0, 0, 0, 0, 115, 985 

@@ -0,0 +1,46 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xed in position 179: invalid continuation byte

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe1 in position 5: invalid continuation byte

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xba in position 19: invalid start byte

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,44 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/da.po,  589, 3626, 3546, 1, 19, 3, 11, 593, 3656 

+ po/pt.po,  589, 3626, 4003, 1, 19, 3, 11, 593, 3656 

+ po/ja.po,  589, 3626, 1645, 1, 19, 3, 11, 593, 3656 

+ po/eu.gmo,  343, 1774, 1731, 0, 0, 0, 0, 343, 1774 

+ po/nl.po,  589, 3626, 3790, 1, 19, 3, 11, 593, 3656 

+ po/ga.po,  589, 3626, 4541, 1, 19, 3, 11, 593, 3656 

+ po/fr.po,  572, 3484, 4471, 12, 111, 9, 61, 593, 3656 

+ po/et.po,  572, 3484, 3053, 12, 111, 9, 61, 593, 3656 

+ po/pt_BR.po,  589, 3626, 4217, 1, 19, 3, 11, 593, 3656 

+ po/sl.po,  557, 3392, 3664, 18, 133, 18, 131, 593, 3656 

+ po/ca.po,  589, 3626, 4589, 1, 19, 3, 11, 593, 3656 

+ po/ko.po,  572, 3484, 3106, 12, 111, 9, 61, 593, 3656 

+ po/fi.po,  522, 3079, 2643, 32, 238, 39, 339, 593, 3656 

+ po/hu.po,  589, 3626, 3746, 1, 19, 3, 11, 593, 3656 

+ po/el.po,  116, 557, 676, 111, 792, 366, 2307, 593, 3656 

+ po/el.gmo,  116, 557, 676, 0, 0, 0, 0, 116, 557 

+ po/eu.po,  343, 1774, 1731, 94, 654, 156, 1228, 593, 3656 

+ po/uk.po,  589, 3626, 3822, 1, 19, 3, 11, 593, 3656 

+ po/cs.po,  589, 3626, 3716, 1, 19, 3, 11, 593, 3656 

+ po/ro.po,  248, 1279, 1387, 151, 1090, 194, 1287, 593, 3656 

+ po/sv.po,  589, 3626, 3555, 1, 19, 3, 11, 593, 3656 

+ po/ky.po,  412, 2400, 2275, 91, 650, 90, 606, 593, 3656 

+ po/de.po,  589, 3626, 3589, 1, 19, 3, 11, 593, 3656 

+ po/bg.po,  589, 3626, 4451, 1, 19, 3, 11, 593, 3656 

+ po/ru.po,  589, 3626, 3646, 1, 19, 3, 11, 593, 3656 

+ po/it.po,  589, 3626, 4169, 1, 19, 3, 11, 593, 3656 

+ po/ms.po,  112, 545, 547, 110, 742, 371, 2369, 593, 3656 

+ po/tar.pot,  0, 0, 0, 0, 0, 593, 3656, 593, 3656 

+ po/vi.po,  589, 3626, 5437, 1, 19, 3, 11, 593, 3656 

+ po/zh_TW.po,  589, 3626, 1365, 1, 19, 3, 11, 593, 3656 

+ po/ms.gmo,  112, 545, 547, 0, 0, 0, 0, 112, 545 

+ po/nb.po,  589, 3626, 3612, 1, 19, 3, 11, 593, 3656 

+ po/eo.po,  589, 3626, 3594, 1, 19, 3, 11, 593, 3656 

+ po/fi.gmo,  522, 3079, 2643, 0, 0, 0, 0, 522, 3079 

+ po/sk.po,  117, 567, 620, 111, 792, 365, 2297, 593, 3656 

+ po/id.po,  557, 3392, 3502, 18, 133, 18, 131, 593, 3656 

+ po/gl.po,  117, 567, 723, 122, 855, 354, 2234, 593, 3656 

+ po/pl.po,  589, 3626, 3802, 1, 19, 3, 11, 593, 3656 

+ po/sr.po,  572, 3484, 3633, 12, 111, 9, 61, 593, 3656 

+ po/hr.po,  589, 3626, 3840, 1, 19, 3, 11, 593, 3656 

+ po/es.po,  589, 3626, 4645, 1, 19, 3, 11, 593, 3656 

+ po/tr.po,  572, 3484, 3126, 12, 111, 9, 61, 593, 3656 

+ po/zh_CN.po,  589, 3626, 1334, 1, 19, 3, 11, 593, 3656 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: cannot process texk/web2c/cwebdir/po/de/cweb-: does not exist

@@ -0,0 +1,29 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ texk/web2c/cwebdir/po/it/cweb.po,  128, 578, 829, 0, 0, 0, 0, 128, 578 

+ texk/web2c/cwebdir/po/cweb-tl.pot,  0, 0, 0, 0, 0, 6, 32, 6, 32 

+ texk/web2c/cwebdir/po/de/cweb.po,  128, 578, 711, 0, 0, 0, 0, 128, 578 

+ texk/web2c/cwebdir/po/de/cweb-tl.po,  6, 32, 32, 0, 0, 0, 0, 6, 32 

+ texk/web2c/cwebdir/po/de/web2c-help.po,  27, 201, 196, 0, 0, 0, 0, 27, 201 

+ texk/web2c/cwebdir/po/web2c-help.pot,  0, 0, 0, 0, 0, 27, 201, 27, 201 

+ texk/web2c/cwebdir/po/cweb.pot,  0, 0, 0, 0, 0, 128, 578, 128, 578 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ texk/web2c/cwebdir/po/it/cweb.po,  128, 578, 829, 0, 0, 0, 0, 128, 578 

+ texk/web2c/cwebdir/po/cweb-tl.pot,  0, 0, 0, 0, 0, 6, 32, 6, 32 

+ texk/web2c/cwebdir/po/de/cweb.po,  128, 578, 711, 0, 0, 0, 0, 128, 578 

+ texk/web2c/cwebdir/po/de/cweb-tl.po,  6, 32, 32, 0, 0, 0, 0, 6, 32 

+ texk/web2c/cwebdir/po/de/web2c-help.po,  27, 201, 196, 0, 0, 0, 0, 27, 201 

+ texk/web2c/cwebdir/po/web2c-help.pot,  0, 0, 0, 0, 0, 27, 201, 27, 201 

+ texk/web2c/cwebdir/po/cweb.pot,  0, 0, 0, 0, 0, 128, 578, 128, 578 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ texk/web2c/cwebdir/po/it/cweb.po,  128, 578, 829, 0, 0, 0, 0, 128, 578 

+ texk/web2c/cwebdir/po/cweb-tl.pot,  0, 0, 0, 0, 0, 6, 32, 6, 32 

+ texk/web2c/cwebdir/po/de/cweb.po,  128, 578, 711, 0, 0, 0, 0, 128, 578 

+ texk/web2c/cwebdir/po/de/cweb-tl.po,  6, 32, 32, 0, 0, 0, 0, 6, 32 

+ texk/web2c/cwebdir/po/de/web2c-help.po,  27, 201, 196, 0, 0, 0, 0, 27, 201 

+ texk/web2c/cwebdir/po/web2c-help.pot,  0, 0, 0, 0, 0, 27, 201, 27, 201 

+ texk/web2c/cwebdir/po/cweb.pot,  0, 0, 0, 0, 0, 128, 578, 128, 578 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ texmf-dist/doc/support/latex-git-log/po/de.po,  3, 3, 3, 0, 0, 0, 0, 3, 3 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ utils/asymptote/GUI/locale/th/LC_MESSAGES/base.po,  1, 1, 1, 0, 0, 0, 0, 1, 1 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Failed to guess file type.

@@ -0,0 +1,26 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_CN.po,  141, 616, 269, 0, 0, 0, 0, 141, 616 

+ po/vi.po,  157, 697, 1022, 0, 0, 0, 0, 157, 697 

+ po/uk.po,  157, 697, 745, 0, 0, 0, 0, 157, 697 

+ po/tr.po,  141, 616, 563, 0, 0, 0, 0, 141, 616 

+ po/tigervnc.pot,  0, 0, 0, 0, 0, 157, 697, 157, 697 

+ po/sv.po,  157, 697, 635, 0, 0, 0, 0, 157, 697 

+ po/sr.po,  141, 616, 644, 0, 0, 0, 0, 141, 616 

+ po/sk.po,  33, 82, 90, 13, 62, 109, 656, 155, 800 

+ po/ru.po,  157, 697, 681, 0, 0, 0, 0, 157, 697 

+ po/pt_BR.po,  157, 697, 827, 0, 0, 0, 0, 157, 697 

+ po/pl.po,  33, 82, 88, 13, 62, 109, 656, 155, 800 

+ po/nl.po,  141, 616, 608, 0, 0, 0, 0, 141, 616 

+ po/it.po,  70, 210, 238, 14, 62, 71, 528, 155, 800 

+ po/id.po,  141, 616, 639, 0, 0, 0, 0, 141, 616 

+ po/hu.po,  141, 616, 628, 0, 0, 0, 0, 141, 616 

+ po/fur.po,  139, 583, 712, 0, 0, 14, 88, 153, 671 

+ po/fr.po,  142, 624, 765, 0, 0, 0, 0, 142, 624 

+ po/fi.po,  154, 675, 524, 0, 0, 0, 0, 154, 675 

+ po/es.po,  141, 616, 703, 0, 0, 0, 0, 141, 616 

+ po/eo.po,  141, 616, 648, 0, 0, 0, 0, 141, 616 

+ po/el.po,  145, 684, 733, 8, 55, 7, 83, 160, 822 

+ po/de.po,  153, 671, 654, 0, 0, 0, 0, 153, 671 

+ po/da.po,  142, 624, 583, 0, 0, 0, 0, 142, 624 

+ po/cs.po,  157, 697, 702, 0, 0, 0, 0, 157, 697 

+ po/bg.po,  141, 616, 738, 0, 0, 0, 0, 141, 616 

@@ -0,0 +1,14 @@ 

+ cogl-1.22.4-2.fc31.src.rpm examples/android/hello/res/values-*/strings.xml

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/mobile/android/geckoview/src/androidTest/res/values-*/strings.xml

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/mobile/android/geckoview_example/src/main/res/values-*/strings.xml

+ qt5-qtbase-5.12.5-1.fc31.src.rpm src/android/jar/res/values-*/strings.xml

+ qt5-qtbase-5.12.5-1.fc31.src.rpm src/android/java/res/values-*/strings.xml

+ espeak-ng-1.49.2-7.fc31.src.rpm android/res/values-*/strings.xml

+ espeak-ng-1.49.2-7.fc31.src.rpm android/eSpeakTests/res/values-*/strings.xml

+ espeak-ng-1.49.2-7.fc31.src.rpm android/res/values-*/strings.xml

+ brltty-6.0-6.fc31.src.rpm Android/Application/res/values-*/strings.xml

+ brltty-6.0-6.fc31.src.rpm Android/Core/res/values-*/strings.xml

+ freerdp-2.0.0-53.20190820git6015229.fc31.src.rpm client/Android/Studio/aFreeRDP/src/main/res/values-*/strings.xml

+ freerdp-2.0.0-53.20190820git6015229.fc31.src.rpm client/Android/Studio/freeRDPCore/src/main/res/values-*/strings.xml

+ soundtouch-2.1.1-3.fc31.src.rpm source/Android-lib/res/values-*/strings.xml

+ SDL2-2.0.10-1.fc31.src.rpm android-project/app/src/main/res/values-*/strings.xml

@@ -0,0 +1,6 @@ 

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/browser/branding/aurora/locales/*/brand.ftl

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/browser/branding/nightly/locales/*/brand.ftl

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/browser/branding/official/locales/*/brand.ftl

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/browser/branding/unofficial/locales/*/brand.ftl

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/browser/locales/*/browser/branding/sync-brand.ftl

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/browser/locales/*/browser/preferences/preferences.ftl

@@ -0,0 +1,16 @@ 

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/browser/locales/*/crashreporter/crashreporter-override.ini

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/browser/locales/*/updater/updater.ini

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/toolkit/locales/*/crashreporter/crashreporter.ini

+ ceph-14.2.4-1.fc31.src.rpm src/seastar/dpdk/doc/guides/nics/features/fm10k_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/seastar/dpdk/doc/guides/nics/features/fm10k_vf_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/seastar/dpdk/doc/guides/nics/features/i40e_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/seastar/dpdk/doc/guides/nics/features/i40e_vf_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/seastar/dpdk/doc/guides/nics/features/ixgbe_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/seastar/dpdk/doc/guides/nics/features/ixgbe_vf_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/seastar/dpdk/doc/guides/nics/features/virtio_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/spdk/dpdk/doc/guides/nics/features/avf_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/spdk/dpdk/doc/guides/nics/features/i40e_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/spdk/dpdk/doc/guides/nics/features/i40e_vf_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/spdk/dpdk/doc/guides/nics/features/ixgbe_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/spdk/dpdk/doc/guides/nics/features/ixgbe_vf_*.ini

+ ceph-14.2.4-1.fc31.src.rpm src/spdk/dpdk/doc/guides/nics/features/virtio_*.ini

@@ -0,0 +1,52 @@ 

+ llvm-9.0.0-1.fc31.src.rpm utils/benchmark/tools/gbench/Inputs/test2_*.json

+ librsvg2-2.46.1-1.fc31.src.rpm vendor/*/.cargo-checksum.json

+ xen-4.12.1-1.fc31.src.rpm tools/qemu-xen/qapi/*-state.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/browser/extensions/screenshots/webextension/_locales/*/messages.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/build/build-clang/clang-win32-*-an.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/build/build-clang/clang-win64-*-an.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/media/webrtc/gn-configs/*_False_arm_freebsd.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/media/webrtc/gn-configs/*_False_arm_netbsd.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/media/webrtc/gn-configs/*_False_arm_openbsd.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/media/webrtc/gn-configs/*_True_arm_freebsd.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/media/webrtc/gn-configs/*_True_arm_netbsd.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/media/webrtc/gn-configs/*_True_arm_openbsd.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/media/webrtc/gn-configs/x64_False_*_android.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/media/webrtc/gn-configs/x64_False_x64_*.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/media/webrtc/gn-configs/x64_True_*_android.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/media/webrtc/gn-configs/x64_True_x64_*.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/third_party/rust/*/.cargo-checksum.json

+ qt5-qtbase-5.12.5-1.fc31.src.rpm src/plugins/sqldrivers/*/*.json

+ qt5-qtbase-5.12.5-1.fc31.src.rpm src/plugins/styles/*/macstyle.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/debug/clang-3.6.2/benchmark.*_disjoint.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/debug/clang-3.6.2/benchmark.*_subset.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/debug/clang-3.7.1/benchmark.*_disjoint.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/debug/clang-3.7.1/benchmark.*_subset.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/debug/clang-3.8.0/benchmark.*_disjoint.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/debug/clang-3.8.0/benchmark.*_subset.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/debug/clang-3.8.1/benchmark.*_disjoint.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/debug/clang-3.8.1/benchmark.*_subset.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/release/clang-3.5.0/benchmark.*_disjoint.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/release/clang-3.5.0/benchmark.*_subset.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/release/clang-3.6.2/benchmark.*_disjoint.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/release/clang-3.6.2/benchmark.*_subset.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/release/clang-3.7.1/benchmark.*_disjoint.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/release/clang-3.7.1/benchmark.*_subset.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/release/clang-3.8.1/benchmark.*_disjoint.compile.json

+ boost-1.69.0-9.fc31.src.rpm libs/hana/doc/html/benchmarks/release/clang-3.8.1/benchmark.*_subset.compile.json

+ libmbim-1.20.0-1.fc31.src.rpm data/mbim-service-*-basic-connect-extensions.json

+ libmbim-1.20.0-1.fc31.src.rpm data/mbim-service-*-firmware-id.json

+ libmbim-1.20.0-1.fc31.src.rpm data/mbim-service-*-host-shutdown.json

+ libmbim-1.20.0-1.fc31.src.rpm data/mbim-service-*.json

+ kernel-5.3.7-301.fc31.src.rpm tools/perf/pmu-events/arch/arm64/*/cortex-a53/branch.json

+ kernel-5.3.7-301.fc31.src.rpm tools/perf/pmu-events/arch/arm64/*/cortex-a53/bus.json

+ kernel-5.3.7-301.fc31.src.rpm tools/perf/pmu-events/arch/arm64/*/cortex-a53/cache.json

+ kernel-5.3.7-301.fc31.src.rpm tools/perf/pmu-events/arch/arm64/*/cortex-a53/memory.json

+ kernel-5.3.7-301.fc31.src.rpm tools/perf/pmu-events/arch/arm64/*/cortex-a53/other.json

+ kernel-5.3.7-301.fc31.src.rpm tools/perf/pmu-events/arch/arm64/*/cortex-a53/pipeline.json

+ kernel-5.3.7-301.fc31.src.rpm tools/perf/pmu-events/arch/arm64/*/cortex-a57-a72/core-imp-def.json

+ gnome-contacts-3.34-1.fc31.src.rpm subprojects/libhandy/examples/*.puri.Handy.Demo.json

+ gnome-shell-3.34.1-2.fc31.src.rpm data/osk-layouts/*.json

+ webkit2gtk3-2.26.1-1.fc31.src.rpm Source/ThirdParty/ANGLE/scripts/*_code_generation_hashes.json

+ gnome-control-center-3.34.1-4.fc31.src.rpm subprojects/libhandy/examples/*.puri.Handy.Demo.json

+ epiphany-3.34.1-1.fc31.src.rpm subprojects/libhandy/examples/*.puri.Handy.Demo.json

+ libhandy-0.0.11-1.fc31.src.rpm examples/*.puri.Handy.Demo.json

@@ -0,0 +1,9 @@ 

+ gnome-desktop3-3.34.1-1.fc31.src.rpm po/*.po

+ accountsservice-0.6.55-1.fc31.src.rpm po/*.po

+ sos-3.8-1.fc31.src.rpm po/*.po

+ gnome-control-center-3.34.1-4.fc31.src.rpm po/*.po

+ libsmbios-2.4.2-4.fc31.src.rpm po/*.po

+ iso-codes-4.3-2.fc31.src.rpm iso_3166-2/*.po

+ cups-pk-helper-0.2.6-8.fc31.src.rpm po/*.po

+ gtk3-3.24.12-3.fc31.src.rpm po-properties/*.po

+ gtk3-3.24.12-3.fc31.src.rpm po/*.po

@@ -0,0 +1,1 @@ 

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/dom/locales/*/chrome/layout/layout_errors.properties

@@ -0,0 +1,1 @@ 

+ emacs-26.2-2.fc31.src.rpm etc/srecode/*.srt

@@ -0,0 +1,4 @@ 

+ freerdp-2.0.0-53.20190820git6015229.fc31.src.rpm client/iOS/Resources/*.lproj/Localizable.strings

+ freerdp-2.0.0-53.20190820git6015229.fc31.src.rpm client/Mac/cli/*.lproj/InfoPlist.strings

+ freerdp-2.0.0-53.20190820git6015229.fc31.src.rpm client/Mac/*.lproj/InfoPlist.strings

+ gcc-9.2.1-1.fc31.src.rpm contrib/regression/GCC_Regression_Tester.wdgt/*.lproj/InfoPlist.strings

@@ -0,0 +1,1 @@ 

+ groff-1.22.3-20.fc31.src.rpm src/preproc/*/Makefile.sub

@@ -0,0 +1,3 @@ 

+ chrome-gnome-shell-10.1-5.fc31.src.rpm extension/_locales/*/messages.json

+ chrome-gnome-shell-10.1-5.fc31.src.rpm extension/_locales/*/messages.json

+ mozjs60-60.9.0-3.fc31.src.rpm firefox-60.9.0/browser/extensions/screenshots/webextension/_locales/*/messages.json

@@ -0,0 +1,1 @@ 

+ ceph-14.2.4-1.fc31.src.rpm src/pybind/mgr/dashboard/frontend/src/locale/messages.*.xlf

@@ -0,0 +1,70 @@ 

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/al,alpine.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/altera.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/altera/socfpga-clk-manager.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/amlogic.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/atmel-at91.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/axxia.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/bitmain.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/calxeda.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/cpus.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/digicolor.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/fsl.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/intel-ixp4xx.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/l2c2x0.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/mediatek.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/moxart.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/nxp/lpc32xx.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/pmu.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/primecell.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/psci.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/qcom.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/rda.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/renesas.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/rockchip.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/sirf.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/socionext/milbeaut.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/spear.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/sti.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/stm32/stm32.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/sunxi.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/tegra.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/ti/nspire.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/arm/*/nspire.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/ti/ti,davinci.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/arm/*/ti,davinci.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/vt8500.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/xilinx.yaml

+ kernel-5.3.7-301.fc31.src.rpm Documentation/devicetree/bindings/*/zte.yaml

+ ceph-14.2.4-1.fc31.src.rpm src/rocksdb/docs/_data/powered_*.yml

+ ceph-14.2.4-1.fc31.src.rpm src/rocksdb/docs/_data/powered_*_highlight.yml

+ ceph-14.2.4-1.fc31.src.rpm qa/cephfs/conf/*.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/cephfs/mount/kclient/overrides/*-die-on-skipped.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/fs/multifs/overrides/*-debug.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/fs/verify/overrides/*-debug.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/kcephfs/thrash/thrashers/*.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/krbd/thrash/thrashers/*-thrasher.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/monthrash/msgr-failures/*-delay.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/monthrash/workloads/rados_*_osdmap_prune.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/monthrash/workloads/rados_*_workunits.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/multimon/tasks/*_clock_no_skews.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/multimon/tasks/*_clock_with_skews.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/multimon/tasks/*_recovery.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/perf/workloads/fio_4K_rand_*.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/perf/workloads/fio_4M_rand_*.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/singleton/all/max-pg-*-osd.from-mon.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/singleton/all/max-pg-*-osd.from-primary.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/singleton/all/max-pg-*-osd.from-replica.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/singleton/all/*-auth-caps.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/singleton/all/*-config-key-caps.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/singleton/all/*-config-keys.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/singleton/all/*-config.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/standalone/workloads/*.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rados/verify/tasks/*_recovery.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rbd/mirror-thrash/rbd-mirror/four-*-cluster.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/rbd/mirror/workloads/rbd-mirror-*-workunit.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/smoke/basic/tasks/*_thrash.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/upgrade/luminous-x/parallel/3-upgrade-sequence/upgrade-*-osd-mds.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/upgrade/luminous-x/parallel/5-final-workload/rados_*_thrash.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/upgrade/mimic-x/parallel/3-upgrade-sequence/upgrade-*-osd-mds.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/upgrade/mimic-x/parallel/5-final-workload/rados_*_thrash.yaml

+ ceph-14.2.4-1.fc31.src.rpm qa/suites/upgrade/nautilus-p2p/nautilus-p2p-parallel/point-*-point-upgrade.yaml

@@ -0,0 +1,33 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/dvd-nautilus.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/dvd-nautilus.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/dvd-gnome-notification.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/view-zoom.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/troubleshooting-subtitles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/troubleshooting-debug.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/troubleshooting-DVD.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/troubleshooting-Audio-CD.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/supported-formats.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/subtitles.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/sound-volume.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/sound-language.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/screenshot.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/screenshot-gallery.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/properties.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/preferences.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/playing-DVD.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/navigation.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/file-open.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/volume-button-slider.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/org.gnome.Totem.svg)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/dvd-nautilus.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/dvd-gnome-notification.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/channels.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/adjust-speed.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,130 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/zh_TW/zh_TW.po,  156, 1952, 412, 1, 38, 33, 604, 190, 2594 

+ help/zh_HK/zh_HK.po,  156, 1952, 412, 1, 38, 33, 604, 190, 2594 

+ help/zh_CN/zh_CN.po,  265, 4552, 642, 0, 0, 0, 0, 265, 4552 

+ help/uk/uk.po,  265, 4552, 3870, 0, 0, 0, 0, 265, 4552 

+ help/te/te.po,  20, 38, 39, 0, 0, 245, 4514, 265, 4552 

+ help/sv/sv.po,  157, 1830, 1696, 0, 0, 0, 0, 157, 1830 

+ help/sl/sl.po,  37, 87, 102, 0, 0, 120, 1743, 157, 1830 

+ help/ru/ru.po,  265, 4552, 3628, 0, 0, 0, 0, 265, 4552 

+ help/ro/ro.po,  252, 4680, 4745, 0, 0, 0, 0, 252, 4680 

+ help/pt_BR/pt_BR.po,  157, 1830, 1986, 0, 0, 0, 0, 157, 1830 

+ help/pl/pl.po,  159, 1850, 1573, 0, 0, 0, 0, 159, 1850 

+ help/pa/pa.po,  112, 909, 925, 0, 0, 80, 1468, 192, 2377 

+ help/oc/oc.po,  47, 122, 142, 0, 0, 143, 2472, 190, 2594 

+ help/nb/nb.po,  193, 3238, 2513, 44, 1388, 15, 54, 252, 4680 

+ help/ja/ja.po,  54, 467, 137, 13, 60, 90, 1303, 157, 1830 

+ help/it/it.po,  235, 3534, 3430, 30, 1013, 0, 0, 265, 4547 

+ help/id/id.po,  252, 4680, 4206, 0, 0, 0, 0, 252, 4680 

+ help/hu/hu.po,  159, 1850, 1622, 0, 0, 0, 0, 159, 1850 

+ help/hr/hr.po,  183, 2843, 2470, 0, 0, 69, 1817, 252, 4660 

+ help/gl/gl.po,  252, 4680, 5068, 0, 0, 0, 0, 252, 4680 

+ help/fr/fr.po,  252, 4680, 5147, 0, 0, 0, 0, 252, 4680 

+ help/fi/fi.po,  202, 3420, 2117, 38, 1212, 12, 48, 252, 4680 

+ help/eu/eu.po,  190, 2594, 1955, 0, 0, 0, 0, 190, 2594 

+ help/es/es.po,  157, 1830, 1998, 0, 0, 0, 0, 157, 1830 

+ help/en_GB/en_GB.po,  263, 4493, 4500, 0, 0, 0, 0, 263, 4493 

+ help/el/el.po,  20, 30, 67, 17, 79, 120, 1721, 157, 1830 

+ help/de/de.po,  155, 1822, 1865, 0, 0, 2, 8, 157, 1830 

+ help/da/da.po,  252, 4660, 4003, 0, 0, 0, 0, 252, 4660 

+ help/cs/cs.po,  157, 1830, 1630, 0, 0, 0, 0, 157, 1830 

+ help/ca/ca.po,  252, 4659, 5400, 0, 0, 0, 0, 252, 4659 

+ help/bg/bg.po,  0, 0, 0, 0, 0, 265, 4552, 265, 4552 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zu.po,  522, 2066, 1754, 10, 71, 46, 392, 578, 2529 

+ po/zh_TW.po,  387, 1380, 517, 0, 0, 0, 0, 387, 1380 

+ po/zh_HK.po,  347, 1241, 466, 5, 64, 0, 0, 352, 1305 

+ po/zh_CN.po,  389, 1327, 514, 0, 0, 0, 0, 389, 1327 

+ po/xh.po,  336, 1466, 1292, 10, 45, 4, 21, 350, 1532 

+ po/wa.po,  142, 341, 422, 0, 0, 211, 1211, 353, 1552 

+ po/vi.po,  380, 1358, 1803, 0, 0, 0, 0, 380, 1358 

+ po/uk.po,  396, 1398, 1242, 0, 0, 0, 0, 396, 1398 

+ po/ug.po,  521, 2040, 1792, 0, 0, 0, 0, 521, 2040 

+ po/tr.po,  380, 1358, 1138, 0, 0, 0, 0, 380, 1358 

+ po/th.po,  352, 1305, 514, 0, 0, 0, 0, 352, 1305 

+ po/tg.po,  302, 716, 731, 0, 0, 50, 589, 352, 1305 

+ po/te.po,  384, 1446, 1222, 0, 0, 0, 0, 384, 1446 

+ po/ta.po,  384, 1446, 1258, 0, 0, 0, 0, 384, 1446 

+ po/sv.po,  380, 1358, 1255, 0, 0, 0, 0, 380, 1358 

+ po/sr@latin.po,  396, 1398, 1450, 0, 0, 0, 0, 396, 1398 

+ po/sr.po,  380, 1358, 1410, 0, 0, 0, 0, 380, 1358 

+ po/sq.po,  501, 2361, 2581, 0, 0, 0, 0, 501, 2361 

+ po/sl.po,  380, 1358, 1365, 0, 0, 0, 0, 380, 1358 

+ po/sk.po,  391, 1335, 1352, 0, 0, 0, 0, 391, 1335 

+ po/si.po,  323, 1160, 1172, 0, 0, 55, 678, 378, 1838 

+ po/rw.po,  28, 33, 35, 246, 1355, 76, 144, 350, 1532 

+ po/ru.po,  391, 1403, 1281, 0, 0, 0, 0, 391, 1403 

+ po/ro.po,  380, 1358, 1437, 0, 0, 0, 0, 380, 1358 

+ po/pt_BR.po,  380, 1358, 1502, 0, 0, 0, 0, 380, 1358 

+ po/pt.po,  392, 1390, 1531, 0, 0, 0, 0, 392, 1390 

+ po/pl.po,  380, 1358, 1304, 0, 0, 0, 0, 380, 1358 

+ po/pa.po,  380, 1358, 1460, 0, 0, 0, 0, 380, 1358 

+ po/or.po,  522, 2043, 2124, 0, 0, 0, 0, 522, 2043 

+ po/oc.po,  372, 1243, 1427, 0, 0, 10, 130, 382, 1373 

+ po/nn.po,  579, 2537, 2390, 0, 0, 2, 22, 581, 2559 

+ po/nl.po,  380, 1358, 1295, 0, 0, 0, 0, 380, 1358 

+ po/ne.po,  300, 706, 697, 54, 303, 35, 318, 389, 1327 

+ po/nb.po,  391, 1335, 1307, 0, 0, 0, 0, 391, 1335 

+ po/my.po,  189, 434, 361, 29, 80, 365, 2053, 583, 2567 

+ po/ms.po,  226, 685, 619, 141, 430, 225, 1496, 592, 2611 

+ po/mr.po,  384, 1446, 1342, 0, 0, 0, 0, 384, 1446 

+ po/ml.po,  391, 1335, 1092, 0, 0, 0, 0, 391, 1335 

+ po/mk.po,  561, 2453, 2562, 0, 0, 0, 0, 561, 2453 

+ po/mjw.po,  213, 429, 399, 0, 0, 167, 929, 380, 1358 

+ po/mg.po,  378, 1764, 1840, 1, 2, 0, 0, 379, 1766 

+ po/mai.po,  379, 1486, 1553, 0, 0, 221, 1328, 600, 2814 

+ po/lv.po,  380, 1358, 1197, 0, 0, 0, 0, 380, 1358 

+ po/lt.po,  380, 1358, 1189, 0, 0, 0, 0, 380, 1358 

+ po/ky.po,  186, 291, 287, 0, 0, 337, 1759, 523, 2050 

+ po/ku.po,  122, 259, 268, 0, 0, 239, 1426, 361, 1685 

+ po/ko.po,  380, 1358, 1091, 0, 0, 0, 0, 380, 1358 

+ po/kn.po,  384, 1446, 1268, 0, 0, 0, 0, 384, 1446 

+ po/km.po,  523, 2050, 929, 0, 0, 0, 0, 523, 2050 

+ po/kk.po,  364, 1145, 969, 0, 0, 26, 229, 390, 1374 

+ po/ka.po,  417, 1821, 1421, 0, 0, 0, 0, 417, 1821 

+ po/ja.po,  371, 1326, 478, 0, 0, 9, 32, 380, 1358 

+ po/it.po,  380, 1358, 1422, 0, 0, 0, 0, 380, 1358 

+ po/is.po,  388, 1388, 1363, 0, 0, 0, 0, 388, 1388 

+ po/id.po,  380, 1358, 1234, 0, 0, 0, 0, 380, 1358 

+ po/hu.po,  380, 1358, 1164, 0, 0, 0, 0, 380, 1358 

+ po/hr.po,  380, 1358, 1286, 0, 0, 0, 0, 380, 1358 

+ po/hi.po,  384, 1446, 1652, 0, 0, 0, 0, 384, 1446 

+ po/he.po,  392, 1390, 1321, 0, 0, 0, 0, 392, 1390 

+ po/gv.po,  530, 2169, 2630, 0, 0, 57, 416, 587, 2585 

+ po/gu.po,  391, 1389, 1486, 0, 0, 0, 0, 391, 1389 

+ po/gl.po,  380, 1358, 1534, 0, 0, 0, 0, 380, 1358 

+ po/gd.po,  389, 1327, 1800, 0, 0, 0, 0, 389, 1327 

+ po/ga.po,  303, 698, 769, 13, 69, 121, 938, 437, 1705 

+ po/fur.po,  380, 1358, 1515, 0, 0, 0, 0, 380, 1358 

+ po/fr.po,  380, 1358, 1582, 0, 0, 0, 0, 380, 1358 

+ po/fi.po,  380, 1358, 1041, 0, 0, 0, 0, 380, 1358 

+ po/fa.po,  380, 1358, 1410, 0, 0, 0, 0, 380, 1358 

+ po/eu.po,  380, 1358, 1176, 0, 0, 0, 0, 380, 1358 

+ po/et.po,  389, 1327, 1091, 0, 0, 0, 0, 389, 1327 

+ po/es.po,  380, 1358, 1529, 0, 0, 0, 0, 380, 1358 

+ po/eo.po,  388, 1388, 1236, 0, 0, 0, 0, 388, 1388 

+ po/en_GB.po,  380, 1358, 1359, 0, 0, 0, 0, 380, 1358 

+ po/en_CA.po,  561, 2453, 2456, 0, 0, 0, 0, 561, 2453 

+ po/en@shaw.po,  456, 1699, 1699, 131, 891, 0, 0, 587, 2590 

+ po/el.po,  380, 1358, 1411, 0, 0, 0, 0, 380, 1358 

+ po/dz.po,  425, 1929, 882, 0, 0, 0, 0, 425, 1929 

+ po/de.po,  380, 1358, 1285, 0, 0, 0, 0, 380, 1358 

+ po/da.po,  380, 1358, 1236, 0, 0, 0, 0, 380, 1358 

+ po/cy.po,  300, 1388, 1457, 82, 287, 96, 605, 478, 2280 

+ po/cs.po,  380, 1358, 1316, 0, 0, 0, 0, 380, 1358 

+ po/crh.po,  520, 2035, 1755, 0, 0, 0, 0, 520, 2035 

+ po/ca@valencia.po,  389, 1327, 1580, 0, 0, 0, 0, 389, 1327 

+ po/ca.po,  380, 1358, 1592, 0, 0, 0, 0, 380, 1358 

+ po/bs.po,  385, 1449, 1405, 0, 0, 0, 0, 385, 1449 

+ po/br.po,  353, 924, 1062, 13, 63, 237, 1712, 603, 2699 

+ po/bn_IN.po,  384, 1446, 1515, 0, 0, 0, 0, 384, 1446 

+ po/bn.po,  592, 2611, 2766, 0, 0, 0, 0, 592, 2611 

+ po/bg.po,  389, 1327, 1445, 0, 0, 0, 0, 389, 1327 

+ po/be@latin.po,  596, 2707, 2363, 3, 35, 1, 72, 600, 2814 

+ po/be.po,  391, 1335, 1247, 0, 0, 0, 0, 391, 1335 

+ po/az.po,  345, 1417, 1215, 0, 0, 0, 0, 345, 1417 

+ po/ast.po,  560, 2420, 2717, 0, 0, 1, 21, 561, 2441 

+ po/as.po,  384, 1446, 1463, 0, 0, 0, 0, 384, 1446 

+ po/ar.po,  367, 1135, 1119, 11, 125, 10, 123, 388, 1383 

+ po/am.po,  56, 95, 121, 13, 21, 148, 754, 217, 870 

+ po/af.po,  396, 1350, 1362, 0, 0, 2, 57, 398, 1407 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,97 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  8, 29, 11, 0, 0, 0, 0, 8, 29 

+ po/zh_HK.po,  8, 29, 11, 0, 0, 0, 0, 8, 29 

+ po/zh_CN.po,  8, 29, 12, 0, 0, 0, 0, 8, 29 

+ po/xh.po,  336, 1466, 1292, 10, 45, 4, 21, 350, 1532 

+ po/wa.po,  142, 341, 422, 0, 0, 211, 1211, 353, 1552 

+ po/vi.po,  7, 28, 35, 0, 0, 0, 0, 7, 28 

+ po/uz@cyrillic.po,  8, 29, 22, 0, 0, 0, 0, 8, 29 

+ po/uk.po,  8, 29, 23, 0, 0, 0, 0, 8, 29 

+ po/ug.po,  7, 28, 21, 0, 0, 0, 0, 7, 28 

+ po/tr.po,  8, 29, 23, 0, 0, 0, 0, 8, 29 

+ po/th.po,  7, 28, 10, 0, 0, 0, 0, 7, 28 

+ po/tg.po,  8, 29, 27, 0, 0, 0, 0, 8, 29 

+ po/te.po,  7, 28, 23, 0, 0, 0, 0, 7, 28 

+ po/ta.po,  7, 28, 23, 0, 0, 0, 0, 7, 28 

+ po/sv.po,  8, 29, 23, 0, 0, 0, 0, 8, 29 

+ po/sr@latin.po,  8, 29, 28, 0, 0, 0, 0, 8, 29 

+ po/sr.po,  8, 29, 28, 0, 0, 0, 0, 8, 29 

+ po/sq.po,  8, 35, 32, 0, 0, 0, 0, 8, 35 

+ po/sl.po,  8, 29, 25, 0, 0, 0, 0, 8, 29 

+ po/sk.po,  8, 29, 25, 0, 0, 0, 0, 8, 29 

+ po/si.po,  323, 1160, 1172, 0, 0, 55, 678, 378, 1838 

+ po/rw.po,  28, 33, 35, 246, 1355, 76, 144, 350, 1532 

+ po/ru.po,  8, 29, 24, 0, 0, 0, 0, 8, 29 

+ po/ro.po,  8, 29, 29, 0, 0, 0, 0, 8, 29 

+ po/pt_BR.po,  8, 29, 32, 0, 0, 0, 0, 8, 29 

+ po/pt.po,  8, 29, 30, 0, 0, 0, 0, 8, 29 

+ po/ps.po,  7, 28, 40, 0, 0, 0, 0, 7, 28 

+ po/pl.po,  8, 29, 27, 0, 0, 0, 0, 8, 29 

+ po/pa.po,  8, 29, 33, 0, 0, 0, 0, 8, 29 

+ po/or.po,  7, 28, 30, 0, 0, 0, 0, 7, 28 

+ po/oc.po,  8, 29, 32, 0, 0, 0, 0, 8, 29 

+ po/nn.po,  7, 28, 24, 0, 0, 0, 0, 7, 28 

+ po/nl.po,  8, 29, 28, 0, 0, 0, 0, 8, 29 

+ po/ne.po,  8, 29, 30, 0, 0, 0, 0, 8, 29 

+ po/nds.po,  7, 28, 30, 0, 0, 0, 0, 7, 28 

+ po/nb.po,  8, 29, 27, 0, 0, 0, 0, 8, 29 

+ po/ms.po,  8, 29, 24, 0, 0, 0, 0, 8, 29 

+ po/mr.po,  7, 28, 27, 0, 0, 0, 0, 7, 28 

+ po/mn.po,  7, 28, 25, 0, 0, 0, 0, 7, 28 

+ po/ml.po,  8, 29, 24, 0, 0, 0, 0, 8, 29 

+ po/mk.po,  8, 35, 33, 0, 0, 0, 0, 8, 35 

+ po/mg.po,  378, 1764, 1840, 1, 2, 0, 0, 379, 1766 

+ po/mai.po,  5, 17, 13, 0, 0, 2, 11, 7, 28 

+ po/lv.po,  8, 29, 22, 0, 0, 0, 0, 8, 29 

+ po/lt.po,  8, 29, 21, 0, 0, 0, 0, 8, 29 

+ po/ku.po,  122, 259, 268, 0, 0, 239, 1426, 361, 1685 

+ po/ko.po,  8, 29, 23, 0, 0, 0, 0, 8, 29 

+ po/kn.po,  8, 29, 25, 0, 0, 0, 0, 8, 29 

+ po/km.po,  7, 28, 14, 0, 0, 0, 0, 7, 28 

+ po/kk.po,  8, 29, 23, 0, 0, 0, 0, 8, 29 

+ po/ka.po,  417, 1821, 1421, 0, 0, 0, 0, 417, 1821 

+ po/ja.po,  8, 29, 13, 0, 0, 0, 0, 8, 29 

+ po/it.po,  8, 29, 27, 0, 0, 0, 0, 8, 29 

+ po/is.po,  8, 29, 29, 0, 0, 0, 0, 8, 29 

+ po/id.po,  8, 29, 26, 0, 0, 0, 0, 8, 29 

+ po/hu.po,  8, 29, 25, 0, 0, 0, 0, 8, 29 

+ po/hr.po,  8, 29, 23, 0, 0, 0, 0, 8, 29 

+ po/hi.po,  7, 28, 27, 0, 0, 0, 0, 7, 28 

+ po/he.po,  8, 29, 22, 0, 0, 0, 0, 8, 29 

+ po/gu.po,  7, 28, 26, 0, 0, 0, 0, 7, 28 

+ po/gl.po,  8, 29, 32, 0, 0, 0, 0, 8, 29 

+ po/gd.po,  8, 29, 30, 0, 0, 0, 0, 8, 29 

+ po/ga.po,  7, 28, 29, 0, 0, 0, 0, 7, 28 

+ po/fur.po,  8, 29, 28, 0, 0, 0, 0, 8, 29 

+ po/fr.po,  8, 29, 30, 0, 0, 0, 0, 8, 29 

+ po/fi.po,  8, 29, 21, 0, 0, 0, 0, 8, 29 

+ po/fa.po,  8, 29, 28, 0, 0, 0, 0, 8, 29 

+ po/eu.po,  8, 29, 22, 0, 0, 0, 0, 8, 29 

+ po/et.po,  8, 29, 20, 0, 0, 0, 0, 8, 29 

+ po/es.po,  8, 29, 34, 0, 0, 0, 0, 8, 29 

+ po/eo.po,  8, 29, 25, 0, 0, 0, 0, 8, 29 

+ po/en_GB.po,  8, 29, 29, 0, 0, 0, 0, 8, 29 

+ po/en_CA.po,  372, 1795, 1810, 0, 0, 0, 0, 372, 1795 

+ po/en@shaw.po,  7, 28, 28, 0, 0, 0, 0, 7, 28 

+ po/el.po,  8, 29, 26, 0, 0, 0, 0, 8, 29 

+ po/dz.po,  425, 1929, 882, 0, 0, 0, 0, 425, 1929 

+ po/de.po,  8, 29, 27, 0, 0, 0, 0, 8, 29 

+ po/da.po,  8, 29, 26, 0, 0, 0, 0, 8, 29 

+ po/cy.po,  7, 28, 33, 0, 0, 0, 0, 7, 28 

+ po/cs.po,  8, 29, 25, 0, 0, 0, 0, 8, 29 

+ po/ca@valencia.po,  8, 29, 34, 0, 0, 0, 0, 8, 29 

+ po/ca.po,  8, 29, 34, 0, 0, 0, 0, 8, 29 

+ po/bs.po,  8, 29, 27, 0, 0, 0, 0, 8, 29 

+ po/br.po,  7, 28, 23, 0, 0, 0, 0, 7, 28 

+ po/bn_IN.po,  7, 28, 28, 0, 0, 0, 0, 7, 28 

+ po/bn.po,  7, 28, 28, 0, 0, 0, 0, 7, 28 

+ po/bg.po,  8, 29, 24, 0, 0, 0, 0, 8, 29 

+ po/be@latin.po,  7, 28, 21, 0, 0, 0, 0, 7, 28 

+ po/be.po,  8, 29, 22, 0, 0, 0, 0, 8, 29 

+ po/az.po,  345, 1417, 1215, 0, 0, 0, 0, 345, 1417 

+ po/ast.po,  7, 28, 28, 0, 0, 0, 0, 7, 28 

+ po/as.po,  8, 29, 28, 0, 0, 0, 0, 8, 29 

+ po/ar.po,  7, 28, 22, 0, 0, 0, 0, 7, 28 

+ po/an.po,  8, 29, 36, 0, 0, 0, 0, 8, 29 

+ po/am.po,  56, 95, 121, 13, 21, 148, 754, 217, 870 

+ po/af.po,  8, 29, 27, 0, 0, 0, 0, 8, 29 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,60 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  369, 2217, 661, 0, 0, 0, 0, 369, 2217 

+ po/zh_HK.po,  594, 3613, 1005, 0, 0, 0, 0, 594, 3613 

+ po/zh_CN.po,  369, 2211, 606, 0, 0, 0, 0, 369, 2211 

+ po/vi.po,  532, 2903, 4287, 0, 0, 68, 844, 600, 3747 

+ po/uk.po,  537, 3291, 3177, 0, 0, 0, 0, 537, 3291 

+ po/tr.po,  369, 2217, 1860, 0, 0, 0, 0, 369, 2217 

+ po/th.po,  291, 1391, 601, 0, 0, 0, 0, 291, 1391 

+ po/tg.po,  74, 99, 91, 0, 0, 449, 2976, 523, 3075 

+ po/te.po,  135, 291, 275, 0, 0, 401, 2908, 536, 3199 

+ po/sv.po,  369, 2217, 2096, 0, 0, 0, 0, 369, 2217 

+ po/sr@latin.po,  370, 2229, 2280, 0, 0, 0, 0, 370, 2229 

+ po/sr.po,  369, 2217, 2285, 0, 0, 0, 0, 369, 2217 

+ po/sl.po,  369, 2217, 2367, 0, 0, 0, 0, 369, 2217 

+ po/sk.po,  369, 2211, 2236, 0, 0, 0, 0, 369, 2211 

+ po/ru.po,  369, 2217, 2117, 0, 0, 0, 0, 369, 2217 

+ po/ro.po,  369, 2217, 2607, 0, 0, 0, 0, 369, 2217 

+ po/pt_BR.po,  369, 2217, 2578, 0, 0, 0, 0, 369, 2217 

+ po/pt.po,  595, 3727, 4053, 0, 0, 0, 0, 595, 3727 

+ po/pl.po,  369, 2217, 2193, 0, 0, 0, 0, 369, 2217 

+ po/pa.po,  45, 86, 91, 0, 0, 354, 2002, 399, 2088 

+ po/oc.po,  586, 3634, 4418, 1, 1, 5, 67, 592, 3702 

+ po/nl.po,  369, 2217, 2193, 0, 0, 0, 0, 369, 2217 

+ po/ne.po,  146, 444, 405, 73, 310, 151, 1475, 370, 2229 

+ po/nds.po,  165, 368, 352, 0, 0, 199, 1379, 364, 1747 

+ po/nb.po,  284, 1299, 1257, 0, 0, 85, 912, 369, 2211 

+ po/ml.po,  104, 283, 224, 12, 72, 254, 1874, 370, 2229 

+ po/mk.po,  151, 666, 759, 23, 87, 23, 105, 197, 858 

+ po/lv.po,  369, 2217, 1943, 0, 0, 0, 0, 369, 2217 

+ po/lt.po,  369, 2217, 1875, 0, 0, 0, 0, 369, 2217 

+ po/ko.po,  369, 2217, 1809, 0, 0, 0, 0, 369, 2217 

+ po/kk.po,  73, 163, 133, 0, 0, 296, 2054, 369, 2217 

+ po/ja.po,  518, 3120, 960, 3, 16, 0, 0, 521, 3136 

+ po/it.po,  369, 2217, 2333, 0, 0, 0, 0, 369, 2217 

+ po/is.po,  84, 245, 234, 0, 0, 285, 1966, 369, 2211 

+ po/id.po,  369, 2217, 2180, 0, 0, 0, 0, 369, 2217 

+ po/hu.po,  369, 2217, 2086, 0, 0, 0, 0, 369, 2217 

+ po/hr.po,  369, 2217, 2116, 0, 0, 0, 0, 369, 2217 

+ po/he.po,  54, 112, 111, 24, 87, 449, 2948, 527, 3147 

+ po/gl.po,  369, 2217, 2617, 0, 0, 0, 0, 369, 2217 

+ po/fur.po,  369, 2217, 2706, 0, 0, 0, 0, 369, 2217 

+ po/fr.po,  369, 2217, 2687, 0, 0, 0, 0, 369, 2217 

+ po/fi.po,  138, 475, 404, 63, 349, 169, 1405, 370, 2229 

+ po/eu.po,  369, 2217, 2085, 0, 0, 0, 0, 369, 2217 

+ po/et.po,  362, 1959, 1635, 17, 108, 11, 59, 390, 2126 

+ po/es.po,  369, 2217, 2657, 0, 0, 0, 0, 369, 2217 

+ po/eo.po,  118, 378, 346, 3, 19, 248, 1820, 369, 2217 

+ po/en_GB.po,  369, 2211, 2209, 0, 0, 0, 0, 369, 2211 

+ po/el.po,  369, 2217, 2408, 0, 0, 0, 0, 369, 2217 

+ po/dz.po,  153, 693, 288, 22, 66, 22, 99, 197, 858 

+ po/de.po,  369, 2217, 2370, 0, 0, 0, 0, 369, 2217 

+ po/da.po,  369, 2217, 2150, 0, 0, 0, 0, 369, 2217 

+ po/cs.po,  369, 2217, 2293, 0, 0, 0, 0, 369, 2217 

+ po/ca@valencia.po,  369, 2211, 2888, 0, 0, 0, 0, 369, 2211 

+ po/ca.po,  369, 2217, 2890, 0, 0, 0, 0, 369, 2217 

+ po/bs.po,  598, 3762, 3703, 0, 0, 0, 0, 598, 3762 

+ po/bg.po,  600, 3774, 4301, 0, 0, 1, 30, 601, 3804 

+ po/be@latin.po,  291, 1388, 1277, 0, 0, 0, 0, 291, 1388 

+ po/as.po,  150, 561, 591, 0, 0, 444, 3052, 594, 3613 

+ po/ar.po,  172, 729, 754, 60, 253, 164, 1064, 396, 2046 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/meson.build)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/.gitignore)

@@ -0,0 +1,60 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  112, 801, 233, 0, 0, 0, 0, 112, 801 

+ po/zh_HK.po,  594, 3613, 1005, 0, 0, 0, 0, 594, 3613 

+ po/zh_CN.po,  600, 3747, 1001, 0, 0, 0, 0, 600, 3747 

+ po/vi.po,  532, 2903, 4287, 0, 0, 68, 844, 600, 3747 

+ po/uk.po,  537, 3291, 3177, 0, 0, 0, 0, 537, 3291 

+ po/tr.po,  112, 801, 690, 0, 0, 0, 0, 112, 801 

+ po/th.po,  291, 1391, 601, 0, 0, 0, 0, 291, 1391 

+ po/tg.po,  74, 99, 91, 0, 0, 449, 2976, 523, 3075 

+ po/te.po,  135, 291, 275, 0, 0, 401, 2908, 536, 3199 

+ po/sv.po,  112, 801, 751, 0, 0, 0, 0, 112, 801 

+ po/sr@latin.po,  118, 827, 806, 0, 0, 0, 0, 118, 827 

+ po/sr.po,  112, 801, 780, 0, 0, 0, 0, 112, 801 

+ po/sl.po,  112, 801, 768, 0, 0, 0, 0, 112, 801 

+ po/sk.po,  118, 828, 826, 0, 0, 0, 0, 118, 828 

+ po/ru.po,  112, 801, 745, 0, 0, 0, 0, 112, 801 

+ po/ro.po,  112, 801, 882, 0, 0, 0, 0, 112, 801 

+ po/pt_BR.po,  112, 801, 889, 0, 0, 0, 0, 112, 801 

+ po/pt.po,  595, 3727, 4053, 0, 0, 0, 0, 595, 3727 

+ po/pl.po,  112, 801, 799, 0, 0, 0, 0, 112, 801 

+ po/pa.po,  45, 86, 91, 0, 0, 354, 2002, 399, 2088 

+ po/oc.po,  586, 3634, 4418, 1, 1, 5, 67, 592, 3702 

+ po/nl.po,  112, 801, 839, 0, 0, 0, 0, 112, 801 

+ po/ne.po,  77, 458, 406, 13, 54, 28, 315, 118, 827 

+ po/nds.po,  165, 368, 352, 0, 0, 199, 1379, 364, 1747 

+ po/nb.po,  90, 446, 424, 0, 0, 28, 381, 118, 827 

+ po/ml.po,  128, 447, 355, 1, 1, 392, 2691, 521, 3139 

+ po/mk.po,  151, 666, 759, 23, 87, 23, 105, 197, 858 

+ po/lv.po,  112, 801, 714, 0, 0, 0, 0, 112, 801 

+ po/lt.po,  112, 801, 667, 0, 0, 0, 0, 112, 801 

+ po/ko.po,  112, 801, 604, 0, 0, 0, 0, 112, 801 

+ po/kk.po,  62, 83, 81, 0, 0, 538, 3664, 600, 3747 

+ po/ja.po,  518, 3120, 960, 3, 16, 0, 0, 521, 3136 

+ po/it.po,  112, 801, 853, 0, 0, 0, 0, 112, 801 

+ po/id.po,  112, 801, 739, 0, 0, 0, 0, 112, 801 

+ po/hu.po,  112, 801, 715, 0, 0, 0, 0, 112, 801 

+ po/hr.po,  112, 801, 803, 0, 0, 0, 0, 112, 801 

+ po/he.po,  54, 112, 111, 24, 87, 449, 2948, 527, 3147 

+ po/gl.po,  112, 801, 922, 0, 0, 0, 0, 112, 801 

+ po/fur.po,  112, 801, 980, 0, 0, 0, 0, 112, 801 

+ po/fr.po,  112, 801, 962, 0, 0, 0, 0, 112, 801 

+ po/fi.po,  261, 1014, 837, 96, 512, 245, 2238, 602, 3764 

+ po/eu.po,  110, 763, 674, 0, 0, 0, 0, 110, 763 

+ po/et.po,  362, 1959, 1635, 17, 108, 11, 59, 390, 2126 

+ po/es.po,  112, 801, 940, 0, 0, 0, 0, 112, 801 

+ po/eo.po,  23, 59, 56, 0, 0, 89, 742, 112, 801 

+ po/en_GB.po,  118, 827, 828, 0, 0, 0, 0, 118, 827 

+ po/el.po,  112, 801, 857, 0, 0, 0, 0, 112, 801 

+ po/dz.po,  153, 693, 288, 22, 66, 22, 99, 197, 858 

+ po/de.po,  112, 801, 784, 0, 0, 0, 0, 112, 801 

+ po/da.po,  112, 801, 806, 0, 0, 0, 0, 112, 801 

+ po/cs.po,  112, 801, 835, 0, 0, 0, 0, 112, 801 

+ po/ca@valencia.po,  118, 827, 997, 0, 0, 0, 0, 118, 827 

+ po/ca.po,  110, 763, 923, 0, 0, 0, 0, 110, 763 

+ po/bs.po,  598, 3762, 3703, 0, 0, 0, 0, 598, 3762 

+ po/bg.po,  600, 3774, 4301, 0, 0, 1, 30, 601, 3804 

+ po/be@latin.po,  291, 1388, 1277, 0, 0, 0, 0, 291, 1388 

+ po/be.po,  112, 801, 744, 0, 0, 0, 0, 112, 801 

+ po/as.po,  150, 561, 591, 0, 0, 444, 3052, 594, 3613 

+ po/ar.po,  172, 729, 754, 60, 253, 164, 1064, 396, 2046 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,142 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/af.po,  438, 1679, 1714, 0, 0, 74, 479, 512, 2158 

+ po/ar.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/as.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/az.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/bg.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/bn_IN.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/ca.po,  487, 1994, 2368, 0, 0, 25, 164, 512, 2158 

+ po/ca@valencia.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/cs.po,  510, 2143, 2069, 0, 0, 2, 15, 512, 2158 

+ po/cy.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/da.po,  512, 2158, 2124, 0, 0, 0, 0, 512, 2158 

+ po/de.po,  510, 2143, 2139, 0, 0, 2, 15, 512, 2158 

+ po/el.po,  407, 1506, 1445, 28, 207, 77, 445, 512, 2158 

+ po/en_GB.po,  437, 1674, 1674, 29, 209, 46, 275, 512, 2158 

+ po/eo.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/es.po,  495, 2015, 2310, 0, 0, 17, 143, 512, 2158 

+ po/et.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/eu.po,  219, 439, 432, 26, 203, 267, 1516, 512, 2158 

+ po/fa.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/fi.po,  315, 1040, 830, 27, 205, 170, 913, 512, 2158 

+ po/fo.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/fr.po,  512, 2158, 2608, 0, 0, 0, 0, 512, 2158 

+ po/fur.po,  90, 594, 756, 0, 0, 422, 1564, 512, 2158 

+ po/ga.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/gl.po,  406, 1498, 1638, 28, 207, 78, 453, 512, 2158 

+ po/gu.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/he.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/hi.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/hr.po,  340, 1202, 1179, 27, 205, 145, 751, 512, 2158 

+ po/hu.po,  512, 2158, 1780, 0, 0, 0, 0, 512, 2158 

+ po/ia.po,  105, 482, 571, 27, 205, 380, 1471, 512, 2158 

+ po/id.po,  512, 2158, 2040, 0, 0, 0, 0, 512, 2158 

+ po/it.po,  510, 2143, 2285, 0, 0, 2, 15, 512, 2158 

+ po/ja.po,  395, 1459, 728, 28, 207, 89, 492, 512, 2158 

+ po/ka.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/kk.po,  472, 1905, 1687, 0, 0, 40, 253, 512, 2158 

+ po/kn.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/ko.po,  406, 1517, 1294, 28, 207, 78, 434, 512, 2158 

+ po/lt.po,  510, 2143, 2041, 0, 0, 2, 15, 512, 2158 

+ po/lv.po,  281, 847, 783, 27, 205, 204, 1106, 512, 2158 

+ po/ml.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/mr.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/ms.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/nb.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/nl.po,  512, 2158, 2342, 0, 0, 0, 0, 512, 2158 

+ po/nn.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/oc.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/or.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/pa.po,  214, 480, 542, 27, 205, 271, 1473, 512, 2158 

+ po/pl.po,  512, 2158, 2269, 0, 0, 0, 0, 512, 2158 

+ po/pt.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/pt_BR.po,  472, 1905, 2086, 0, 0, 40, 253, 512, 2158 

+ po/ro.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/ru.po,  408, 1512, 1534, 28, 207, 76, 439, 512, 2158 

+ po/sk.po,  510, 2143, 1986, 0, 0, 2, 15, 512, 2158 

+ po/sl.po,  406, 1498, 1491, 28, 207, 78, 453, 512, 2158 

+ po/sq.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/sr.po,  406, 1498, 1572, 28, 207, 78, 453, 512, 2158 

+ po/sr@latin.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/sv.po,  512, 2158, 2064, 0, 0, 0, 0, 512, 2158 

+ po/ta.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/te.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/th.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/tr.po,  499, 2043, 2029, 0, 0, 13, 115, 512, 2158 

+ po/uk.po,  512, 2158, 2387, 0, 0, 0, 0, 512, 2158 

+ po/vi.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/wa.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/zh_CN.po,  482, 1973, 930, 0, 0, 30, 185, 512, 2158 

+ po/zh_HK.po,  0, 0, 0, 0, 0, 478, 1929, 478, 1929 

+ po/zh_TW.po,  396, 1499, 798, 23, 176, 93, 483, 512, 2158 

+ po/af.gmo,  438, 1679, 1714, 0, 0, 0, 0, 438, 1679 

+ po/ar.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/as.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/az.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bg.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/bn_IN.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ca.gmo,  487, 1994, 2368, 0, 0, 0, 0, 487, 1994 

+ po/ca@valencia.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/cs.gmo,  510, 2143, 2069, 0, 0, 0, 0, 510, 2143 

+ po/cy.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/da.gmo,  512, 2158, 2124, 0, 0, 0, 0, 512, 2158 

+ po/de.gmo,  510, 2143, 2139, 0, 0, 0, 0, 510, 2143 

+ po/el.gmo,  407, 1506, 1445, 0, 0, 0, 0, 407, 1506 

+ po/en_GB.gmo,  437, 1674, 1674, 0, 0, 0, 0, 437, 1674 

+ po/eo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/es.gmo,  495, 2015, 2310, 0, 0, 0, 0, 495, 2015 

+ po/et.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/eu.gmo,  219, 439, 432, 0, 0, 0, 0, 219, 439 

+ po/fa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fi.gmo,  315, 1040, 830, 0, 0, 0, 0, 315, 1040 

+ po/fo.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/fr.gmo,  512, 2158, 2608, 0, 0, 0, 0, 512, 2158 

+ po/fur.gmo,  90, 594, 756, 0, 0, 0, 0, 90, 594 

+ po/ga.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/gl.gmo,  406, 1498, 1638, 0, 0, 0, 0, 406, 1498 

+ po/gu.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/he.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/hi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/hr.gmo,  340, 1202, 1179, 0, 0, 0, 0, 340, 1202 

+ po/hu.gmo,  512, 2158, 1780, 0, 0, 0, 0, 512, 2158 

+ po/ia.gmo,  105, 482, 571, 0, 0, 0, 0, 105, 482 

+ po/id.gmo,  512, 2158, 2040, 0, 0, 0, 0, 512, 2158 

+ po/it.gmo,  510, 2143, 2285, 0, 0, 0, 0, 510, 2143 

+ po/ja.gmo,  395, 1459, 728, 0, 0, 0, 0, 395, 1459 

+ po/ka.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/kk.gmo,  472, 1905, 1687, 0, 0, 0, 0, 472, 1905 

+ po/kn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ko.gmo,  406, 1517, 1294, 0, 0, 0, 0, 406, 1517 

+ po/lt.gmo,  510, 2143, 2041, 0, 0, 0, 0, 510, 2143 

+ po/lv.gmo,  281, 847, 783, 0, 0, 0, 0, 281, 847 

+ po/ml.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/mr.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ms.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nb.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/nl.gmo,  512, 2158, 2342, 0, 0, 0, 0, 512, 2158 

+ po/nn.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/oc.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/or.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pa.gmo,  214, 480, 542, 0, 0, 0, 0, 214, 480 

+ po/pl.gmo,  512, 2158, 2269, 0, 0, 0, 0, 512, 2158 

+ po/pt.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/pt_BR.gmo,  472, 1905, 2086, 0, 0, 0, 0, 472, 1905 

+ po/ro.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/ru.gmo,  408, 1512, 1534, 0, 0, 0, 0, 408, 1512 

+ po/sk.gmo,  510, 2143, 1986, 0, 0, 0, 0, 510, 2143 

+ po/sl.gmo,  406, 1498, 1491, 0, 0, 0, 0, 406, 1498 

+ po/sq.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sr.gmo,  406, 1498, 1572, 0, 0, 0, 0, 406, 1498 

+ po/sr@latin.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/sv.gmo,  512, 2158, 2064, 0, 0, 0, 0, 512, 2158 

+ po/ta.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/te.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/th.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/tr.gmo,  499, 2043, 2029, 0, 0, 0, 0, 499, 2043 

+ po/uk.gmo,  512, 2158, 2387, 0, 0, 0, 0, 512, 2158 

+ po/vi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/wa.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_CN.gmo,  482, 1973, 930, 0, 0, 0, 0, 482, 1973 

+ po/zh_HK.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/zh_TW.gmo,  396, 1499, 798, 0, 0, 0, 0, 396, 1499 

+ po/udisks2.pot,  0, 0, 0, 0, 0, 512, 2158, 512, 2158 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,5 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/pl.po,  26, 145, 124, 0, 0, 0, 0, 26, 145 

+ po/sv.po,  19, 113, 107, 0, 0, 0, 0, 19, 113 

+ po/it.po,  19, 113, 130, 0, 0, 0, 0, 19, 113 

+ po/fr.po,  26, 145, 184, 0, 0, 0, 0, 26, 145 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

@@ -0,0 +1,65 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  96, 573, 148, 0, 0, 0, 0, 96, 573 

+ po/gl.po,  62, 320, 332, 0, 0, 34, 253, 96, 573 

+ po/de_CH.po,  92, 551, 496, 0, 0, 4, 22, 96, 573 

+ po/tg.po,  59, 177, 196, 0, 0, 37, 396, 96, 573 

+ po/bs.po,  94, 564, 545, 0, 0, 2, 9, 96, 573 

+ po/ast.po,  92, 551, 563, 0, 0, 4, 22, 96, 573 

+ po/be.po,  74, 451, 383, 0, 0, 22, 122, 96, 573 

+ po/fi.po,  96, 573, 419, 0, 0, 0, 0, 96, 573 

+ po/nl.po,  96, 573, 567, 0, 0, 0, 0, 96, 573 

+ po/ko.po,  95, 570, 489, 0, 0, 1, 3, 96, 573 

+ po/cs.po,  96, 573, 514, 0, 0, 0, 0, 96, 573 

+ po/ml.po,  94, 564, 450, 0, 0, 2, 9, 96, 573 

+ po/as.po,  95, 570, 558, 0, 0, 1, 3, 96, 573 

+ po/tr.po,  96, 573, 451, 0, 0, 0, 0, 96, 573 

+ po/nds.po,  34, 74, 71, 0, 0, 62, 499, 96, 573 

+ po/sk.po,  96, 573, 548, 0, 0, 0, 0, 96, 573 

+ po/te.po,  95, 570, 472, 0, 0, 1, 3, 96, 573 

+ po/sr@latin.po,  94, 564, 526, 0, 0, 2, 9, 96, 573 

+ po/ja.po,  96, 573, 150, 0, 0, 0, 0, 96, 573 

+ po/bn.po,  95, 570, 596, 0, 0, 1, 3, 96, 573 

+ po/sl.po,  74, 442, 421, 0, 0, 22, 131, 96, 573 

+ po/da.po,  96, 573, 537, 0, 0, 0, 0, 96, 573 

+ po/cy.po,  83, 521, 510, 0, 0, 13, 52, 96, 573 

+ po/bg.po,  95, 570, 580, 0, 0, 1, 3, 96, 573 

+ po/fa.po,  95, 570, 624, 0, 0, 1, 3, 96, 573 

+ po/fr.po,  96, 573, 658, 0, 0, 0, 0, 96, 573 

+ po/or.po,  94, 564, 662, 0, 0, 2, 9, 96, 573 

+ po/mai.po,  92, 551, 654, 0, 0, 4, 22, 96, 573 

+ po/is.po,  95, 570, 575, 0, 0, 1, 3, 96, 573 

+ po/pa.po,  96, 573, 690, 0, 0, 0, 0, 96, 573 

+ po/es.po,  96, 573, 631, 0, 0, 0, 0, 96, 573 

+ po/ms.po,  91, 542, 500, 0, 0, 5, 31, 96, 573 

+ po/id.po,  96, 573, 502, 0, 0, 0, 0, 96, 573 

+ po/en_GB.po,  86, 524, 527, 0, 0, 10, 49, 96, 573 

+ po/pt_BR.po,  96, 573, 635, 0, 0, 0, 0, 96, 573 

+ po/ka.po,  29, 60, 57, 0, 0, 67, 513, 96, 573 

+ po/pl.po,  96, 573, 513, 0, 0, 0, 0, 96, 573 

+ po/sv.po,  96, 573, 531, 0, 0, 0, 0, 96, 573 

+ po/sr.po,  96, 573, 536, 0, 0, 0, 0, 96, 573 

+ po/el.po,  96, 573, 591, 0, 0, 0, 0, 96, 573 

+ po/nb.po,  95, 570, 589, 0, 0, 1, 3, 96, 573 

+ po/it.po,  96, 573, 591, 0, 0, 0, 0, 96, 573 

+ po/ar.po,  95, 570, 554, 0, 0, 1, 3, 96, 573 

+ po/ro.po,  95, 570, 573, 0, 0, 1, 3, 96, 573 

+ po/vi.po,  60, 252, 350, 0, 0, 36, 321, 96, 573 

+ po/hr.po,  91, 542, 525, 0, 0, 5, 31, 96, 573 

+ po/hu.po,  96, 573, 518, 0, 0, 0, 0, 96, 573 

+ po/mr.po,  94, 564, 538, 0, 0, 2, 9, 96, 573 

+ po/he.po,  95, 570, 536, 0, 0, 1, 3, 96, 573 

+ po/lv.po,  95, 570, 485, 0, 0, 1, 3, 96, 573 

+ po/kn.po,  95, 570, 486, 0, 0, 1, 3, 96, 573 

+ po/et.po,  95, 570, 452, 0, 0, 1, 3, 96, 573 

+ po/de.po,  96, 573, 520, 0, 0, 0, 0, 96, 573 

+ po/ru.po,  96, 573, 506, 0, 0, 0, 0, 96, 573 

+ po/hi.po,  94, 564, 680, 0, 0, 2, 9, 96, 573 

+ po/bn_IN.po,  96, 573, 589, 0, 0, 0, 0, 96, 573 

+ po/zh_CN.po,  95, 570, 153, 0, 0, 1, 3, 96, 573 

+ po/ta.po,  95, 570, 457, 0, 0, 1, 3, 96, 573 

+ po/ca.po,  96, 573, 654, 0, 0, 0, 0, 96, 573 

+ po/gu.po,  94, 564, 621, 0, 0, 2, 9, 96, 573 

+ po/pt.po,  96, 573, 645, 0, 0, 0, 0, 96, 573 

+ po/mk.po,  91, 542, 549, 0, 0, 5, 31, 96, 573 

+ po/si.po,  19, 31, 36, 0, 0, 77, 542, 96, 573 

+ po/uk.po,  96, 573, 499, 0, 0, 0, 0, 96, 573 

@@ -0,0 +1,29 @@ 

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xfc in position 39: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/update-potfiles)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe8 in position 79: invalid continuation byte

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

@@ -0,0 +1,37 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/nl.po,  3480, 18187, 18167, 535, 3356, 271, 2238, 4286, 23781 

+ po/gl.po,  211, 777, 1018, 1726, 8416, 2349, 14588, 4286, 23781 

+ po/util-linux.pot,  0, 0, 0, 0, 0, 4286, 23781, 4286, 23781 

+ po/eu.po,  355, 856, 916, 2167, 10152, 1764, 12773, 4286, 23781 

+ po/fr.po,  4286, 23781, 28745, 0, 0, 0, 0, 4286, 23781 

+ po/zh_TW.po,  707, 2728, 1422, 2714, 15517, 865, 5536, 4286, 23781 

+ po/zh_TW.gmo,  707, 2728, 1422, 0, 0, 0, 0, 707, 2728 

+ po/fi.po,  1150, 4482, 3909, 2095, 10962, 1041, 8337, 4286, 23781 

+ po/uk.po,  4286, 23781, 25173, 0, 0, 0, 0, 4286, 23781 

+ po/ru.gmo,  1859, 8629, 8509, 0, 0, 0, 0, 1859, 8629 

+ po/sv.po,  4286, 23781, 22755, 0, 0, 0, 0, 4286, 23781 

+ po/eu.gmo,  355, 856, 916, 0, 0, 0, 0, 355, 856 

+ po/et.po,  321, 1064, 1042, 2217, 11209, 1748, 11508, 4286, 23781 

+ po/id.po,  655, 2414, 2468, 2423, 12991, 1208, 8376, 4286, 23781 

+ po/hr.po,  4279, 23774, 24944, 0, 0, 7, 7, 4286, 23781 

+ po/hu.gmo,  570, 2069, 2121, 0, 0, 0, 0, 570, 2069 

+ po/sl.po,  481, 1668, 1744, 2467, 12711, 1338, 9402, 4286, 23781 

+ po/ca.gmo,  485, 1679, 2186, 0, 0, 0, 0, 485, 1679 

+ po/hu.po,  570, 2069, 2121, 2414, 12596, 1302, 9116, 4286, 23781 

+ po/it.po,  486, 1519, 1702, 2429, 12399, 1371, 9863, 4286, 23781 

+ po/ru.po,  1859, 8629, 8509, 1286, 6904, 1141, 8248, 4286, 23781 

+ po/da.po,  4286, 23781, 22223, 0, 0, 0, 0, 4286, 23781 

+ po/cs.po,  4286, 23781, 23885, 0, 0, 0, 0, 4286, 23781 

+ po/ca.po,  485, 1679, 2186, 2468, 12738, 1333, 9364, 4286, 23781 

+ po/vi.po,  3082, 16710, 24315, 943, 5449, 261, 1622, 4286, 23781 

+ po/pt_BR.po,  4286, 23781, 27989, 0, 0, 0, 0, 4286, 23781 

+ po/id.gmo,  655, 2414, 2468, 0, 0, 0, 0, 655, 2414 

+ po/pl.po,  4286, 23781, 24075, 0, 0, 0, 0, 4286, 23781 

+ po/tr.po,  3601, 19451, 17946, 532, 3366, 153, 964, 4286, 23781 

+ po/fi.gmo,  1150, 4482, 3909, 0, 0, 0, 0, 1150, 4482 

+ po/ja.po,  3322, 17907, 9067, 631, 3669, 333, 2205, 4286, 23781 

+ po/de.po,  4286, 23781, 23808, 0, 0, 0, 0, 4286, 23781 

+ po/it.gmo,  486, 1519, 1702, 0, 0, 0, 0, 486, 1519 

+ po/zh_CN.po,  3720, 20235, 9490, 427, 2661, 139, 885, 4286, 23781 

+ po/gl.gmo,  211, 777, 1018, 0, 0, 0, 0, 211, 777 

+ po/es.po,  4286, 23781, 30993, 0, 0, 0, 0, 4286, 23781 

@@ -0,0 +1,24 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./libdvbv5-po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./v4l-utils-po/insert-header.sin)

@@ -0,0 +1,22 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ libdvbv5-po/ca.gmo,  46, 106, 126, 0, 0, 0, 0, 46, 106 

+ libdvbv5-po/uk.po,  124, 566, 639, 5, 41, 43, 154, 172, 761 

+ libdvbv5-po/ca.po,  46, 106, 126, 1, 7, 125, 648, 172, 761 

+ libdvbv5-po/pt_BR.po,  154, 667, 749, 2, 18, 16, 76, 172, 761 

+ libdvbv5-po/de.gmo,  154, 667, 635, 0, 0, 0, 0, 154, 667 

+ libdvbv5-po/libdvbv5.pot,  0, 0, 0, 0, 0, 172, 761, 172, 761 

+ libdvbv5-po/de.po,  154, 667, 635, 2, 18, 16, 76, 172, 761 

+ libdvbv5-po/pt_BR.gmo,  154, 667, 749, 0, 0, 0, 0, 154, 667 

+ libdvbv5-po/uk.gmo,  124, 566, 639, 0, 0, 0, 0, 124, 566 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ v4l-utils-po/ca.gmo,  26, 62, 78, 0, 0, 0, 0, 26, 62 

+ v4l-utils-po/uk.po,  0, 0, 0, 22, 75, 389, 2251, 411, 2326 

+ v4l-utils-po/ca.po,  26, 62, 78, 15, 53, 370, 2211, 411, 2326 

+ v4l-utils-po/pt_BR.po,  290, 1381, 1654, 76, 698, 45, 247, 411, 2326 

+ v4l-utils-po/de.gmo,  290, 1381, 1357, 0, 0, 0, 0, 290, 1381 

+ v4l-utils-po/v4l-utils.pot,  0, 0, 0, 0, 0, 411, 2326, 411, 2326 

+ v4l-utils-po/de.po,  290, 1381, 1357, 75, 695, 46, 250, 411, 2326 

+ v4l-utils-po/pt_BR.gmo,  290, 1381, 1654, 0, 0, 0, 0, 290, 1381 

+ v4l-utils-po/uk.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ v4l-utils-po/fr.po,  26, 107, 122, 20, 224, 365, 1995, 411, 2326 

+ v4l-utils-po/fr.gmo,  26, 107, 122, 0, 0, 0, 0, 26, 107 

@@ -0,0 +1,5 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.skip)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,89 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/id.po,  134, 1228, 1096, 0, 0, 0, 0, 134, 1228 

+ po/pa.po,  134, 1228, 1341, 0, 0, 0, 0, 134, 1228 

+ po/te.po,  134, 1228, 951, 0, 0, 0, 0, 134, 1228 

+ po/oc.po,  94, 973, 1059, 0, 0, 0, 0, 94, 973 

+ po/sk.po,  134, 1228, 1206, 0, 0, 0, 0, 134, 1228 

+ po/bn.po,  136, 1215, 1294, 0, 0, 0, 0, 136, 1215 

+ po/si.po,  66, 479, 510, 1, 26, 15, 311, 82, 816 

+ po/hi.po,  134, 1228, 1409, 0, 0, 0, 0, 134, 1228 

+ po/en_GB.po,  94, 973, 998, 0, 0, 0, 0, 94, 973 

+ po/ka.po,  72, 544, 457, 0, 0, 0, 0, 72, 544 

+ po/ga.po,  23, 52, 63, 0, 0, 113, 1163, 136, 1215 

+ po/ta.po,  134, 1228, 920, 0, 0, 0, 0, 134, 1228 

+ po/vi.po,  94, 973, 1335, 0, 0, 0, 0, 94, 973 

+ po/tr.po,  94, 973, 749, 0, 0, 0, 0, 94, 973 

+ po/ca.po,  134, 1228, 1371, 0, 0, 0, 0, 134, 1228 

+ po/th.po,  133, 1223, 366, 0, 0, 0, 0, 133, 1223 

+ po/ro.po,  128, 1184, 1186, 0, 0, 0, 0, 128, 1184 

+ po/et.po,  134, 1228, 976, 0, 0, 0, 0, 134, 1228 

+ po/cy.po,  72, 544, 584, 0, 0, 0, 0, 72, 544 

+ po/kn.po,  134, 1228, 995, 0, 0, 0, 0, 134, 1228 

+ po/lt.po,  134, 1228, 999, 0, 0, 0, 0, 134, 1228 

+ po/be@latin.po,  87, 500, 456, 0, 0, 25, 554, 112, 1054 

+ po/ms.po,  61, 313, 261, 0, 0, 9, 227, 70, 540 

+ po/ca@valencia.po,  134, 1228, 1370, 0, 0, 0, 0, 134, 1228 

+ po/en@shaw.po,  107, 764, 765, 29, 451, 0, 0, 136, 1215 

+ po/nn.po,  136, 1215, 1211, 0, 0, 0, 0, 136, 1215 

+ po/sr.po,  134, 1228, 1187, 0, 0, 0, 0, 134, 1228 

+ po/or.po,  134, 1228, 1222, 0, 0, 0, 0, 134, 1228 

+ po/nl.po,  134, 1228, 1280, 0, 0, 0, 0, 134, 1228 

+ po/sr@latin.po,  134, 1228, 1187, 0, 0, 0, 0, 134, 1228 

+ po/rw.po,  3, 2, 2, 55, 518, 12, 20, 70, 540 

+ po/ar.po,  97, 831, 837, 3, 100, 10, 159, 110, 1090 

+ po/gl.po,  134, 1228, 1424, 0, 0, 0, 0, 134, 1228 

+ po/gu.po,  134, 1228, 1323, 0, 0, 0, 0, 134, 1228 

+ po/mk.po,  120, 1075, 1157, 0, 0, 0, 0, 120, 1075 

+ po/sl.po,  134, 1228, 1080, 0, 0, 0, 0, 134, 1228 

+ po/es.po,  94, 973, 1077, 0, 0, 0, 0, 94, 973 

+ po/hu.po,  134, 1228, 1138, 0, 0, 0, 0, 134, 1228 

+ po/lv.po,  134, 1228, 1053, 0, 0, 0, 0, 134, 1228 

+ po/fr.po,  134, 1228, 1421, 0, 0, 0, 0, 134, 1228 

+ po/mr.po,  134, 1228, 1123, 0, 0, 0, 0, 134, 1228 

+ po/ne.po,  52, 427, 416, 26, 292, 16, 254, 94, 973 

+ po/nb.po,  94, 973, 916, 0, 0, 0, 0, 94, 973 

+ po/wa.po,  60, 392, 503, 0, 0, 10, 148, 70, 540 

+ po/ml.po,  134, 1228, 847, 0, 0, 0, 0, 134, 1228 

+ po/ug.po,  134, 1228, 950, 0, 0, 0, 0, 134, 1228 

+ po/bs.po,  94, 973, 885, 0, 0, 0, 0, 94, 973 

+ po/as.po,  134, 1228, 1256, 0, 0, 0, 0, 134, 1228 

+ po/zh_CN.po,  110, 1090, 278, 0, 0, 0, 0, 110, 1090 

+ po/bg.po,  94, 973, 1028, 0, 0, 0, 0, 94, 973 

+ po/ast.po,  136, 1215, 1258, 0, 0, 0, 0, 136, 1215 

+ po/it.po,  134, 1228, 1291, 0, 0, 0, 0, 134, 1228 

+ po/tg.po,  110, 1090, 1175, 0, 0, 0, 0, 110, 1090 

+ po/zh_HK.po,  110, 1090, 266, 0, 0, 0, 0, 110, 1090 

+ po/fa.po,  134, 1228, 1366, 0, 0, 0, 0, 134, 1228 

+ po/pt.po,  94, 973, 1103, 0, 0, 0, 0, 94, 973 

+ po/eo.po,  74, 440, 431, 0, 0, 57, 769, 131, 1209 

+ po/pt_BR.po,  134, 1228, 1422, 0, 0, 0, 0, 134, 1228 

+ po/zh_TW.po,  94, 973, 223, 0, 0, 0, 0, 94, 973 

+ po/is.po,  87, 742, 707, 0, 0, 7, 231, 94, 973 

+ po/ko.po,  134, 1228, 919, 0, 0, 0, 0, 134, 1228 

+ po/az.po,  70, 540, 499, 0, 0, 0, 0, 70, 540 

+ po/pl.po,  94, 973, 911, 0, 0, 0, 0, 94, 973 

+ po/an.po,  110, 1090, 1182, 0, 0, 0, 0, 110, 1090 

+ po/xh.po,  70, 540, 452, 0, 0, 0, 0, 70, 540 

+ po/cs.po,  134, 1228, 1166, 0, 0, 0, 0, 134, 1228 

+ po/he.po,  134, 1228, 1210, 0, 0, 0, 0, 134, 1228 

+ po/km.po,  133, 1223, 435, 0, 0, 0, 0, 133, 1223 

+ po/eu.po,  134, 1228, 1049, 0, 0, 0, 0, 134, 1228 

+ po/bn_IN.po,  134, 1228, 1279, 0, 0, 0, 0, 134, 1228 

+ po/el.po,  94, 973, 1102, 0, 0, 0, 0, 94, 973 

+ po/mn.po,  63, 395, 313, 0, 0, 7, 145, 70, 540 

+ po/fur.po,  94, 973, 1086, 0, 0, 0, 0, 94, 973 

+ po/en_CA.po,  72, 544, 542, 0, 0, 0, 0, 72, 544 

+ po/sq.po,  113, 1031, 1182, 0, 0, 0, 0, 113, 1031 

+ po/hr.po,  75, 626, 588, 4, 30, 34, 375, 113, 1031 

+ po/ku.po,  12, 13, 15, 0, 0, 58, 527, 70, 540 

+ po/fi.po,  134, 1228, 856, 0, 0, 0, 0, 134, 1228 

+ po/da.po,  94, 973, 867, 0, 0, 0, 0, 94, 973 

+ po/dz.po,  82, 816, 337, 0, 0, 0, 0, 82, 816 

+ po/be.po,  134, 1228, 1087, 0, 0, 0, 0, 134, 1228 

+ po/uk.po,  134, 1228, 1035, 0, 0, 0, 0, 134, 1228 

+ po/sv.po,  94, 973, 884, 0, 0, 0, 0, 94, 973 

+ po/ru.po,  134, 1228, 1095, 0, 0, 0, 0, 134, 1228 

+ po/mai.po,  61, 554, 584, 0, 0, 75, 661, 136, 1215 

+ po/ja.po,  110, 1090, 302, 0, 0, 0, 0, 110, 1090 

+ po/kk.po,  41, 131, 131, 0, 0, 53, 842, 94, 973 

+ po/de.po,  134, 1228, 1301, 0, 0, 0, 0, 134, 1228 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

@@ -0,0 +1,76 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_TW.po,  151, 745, 283, 2, 10, 1, 8, 154, 763 

+ po/as.gmo,  151, 745, 798, 0, 0, 0, 0, 151, 745 

+ po/de_CH.po,  49, 186, 184, 0, 0, 105, 577, 154, 763 

+ po/it.gmo,  151, 745, 905, 0, 0, 0, 0, 151, 745 

+ po/es.gmo,  151, 745, 1032, 0, 0, 0, 0, 151, 745 

+ po/zh_CN.gmo,  151, 745, 322, 0, 0, 0, 0, 151, 745 

+ po/cs.gmo,  151, 745, 724, 0, 0, 0, 0, 151, 745 

+ po/de_CH.gmo,  49, 186, 184, 0, 0, 0, 0, 49, 186 

+ po/pa.gmo,  151, 745, 796, 0, 0, 0, 0, 151, 745 

+ po/eu.po,  33, 117, 109, 0, 0, 121, 646, 154, 763 

+ po/bn.gmo,  151, 745, 816, 0, 0, 0, 0, 151, 745 

+ po/nl.po,  151, 745, 817, 2, 10, 1, 8, 154, 763 

+ po/ko.po,  151, 745, 712, 2, 10, 1, 8, 154, 763 

+ po/ca.gmo,  151, 745, 997, 0, 0, 0, 0, 151, 745 

+ po/pt_BR.gmo,  151, 745, 928, 0, 0, 0, 0, 151, 745 

+ po/cs.po,  151, 745, 724, 2, 10, 1, 8, 154, 763 

+ po/ko.gmo,  151, 745, 712, 0, 0, 0, 0, 151, 745 

+ po/ml.po,  151, 745, 653, 2, 10, 1, 8, 154, 763 

+ po/as.po,  151, 745, 798, 2, 10, 1, 8, 154, 763 

+ po/tr.po,  101, 427, 385, 2, 10, 51, 326, 154, 763 

+ po/tr.gmo,  101, 427, 385, 0, 0, 0, 0, 101, 427 

+ po/sk.po,  12, 34, 34, 0, 0, 142, 729, 154, 763 

+ po/nl.gmo,  151, 745, 817, 0, 0, 0, 0, 151, 745 

+ po/id.gmo,  8, 40, 39, 0, 0, 0, 0, 8, 40 

+ po/te.po,  151, 745, 665, 2, 10, 1, 8, 154, 763 

+ po/ja.po,  151, 745, 334, 2, 10, 1, 8, 154, 763 

+ po/bn.po,  151, 745, 816, 2, 10, 1, 8, 154, 763 

+ po/gu.gmo,  151, 745, 841, 0, 0, 0, 0, 151, 745 

+ po/bg.po,  143, 715, 812, 2, 10, 9, 38, 154, 763 

+ po/fr.po,  151, 745, 1024, 2, 10, 1, 8, 154, 763 

+ po/de.gmo,  151, 745, 760, 0, 0, 0, 0, 151, 745 

+ po/or.po,  151, 745, 799, 2, 10, 1, 8, 154, 763 

+ po/pa.po,  151, 745, 796, 2, 10, 1, 8, 154, 763 

+ po/es.po,  151, 745, 1032, 2, 10, 1, 8, 154, 763 

+ po/ta.gmo,  151, 745, 660, 0, 0, 0, 0, 151, 745 

+ po/id.po,  8, 40, 39, 0, 0, 146, 723, 154, 763 

+ po/ml.gmo,  151, 745, 653, 0, 0, 0, 0, 151, 745 

+ po/hu.gmo,  151, 745, 771, 0, 0, 0, 0, 151, 745 

+ po/en_GB.po,  145, 720, 719, 2, 10, 7, 33, 154, 763 

+ po/bg.gmo,  143, 715, 812, 0, 0, 0, 0, 143, 715 

+ po/mr.gmo,  151, 745, 735, 0, 0, 0, 0, 151, 745 

+ po/volume_key.pot,  0, 0, 0, 0, 0, 154, 763, 154, 763 

+ po/kn.gmo,  151, 745, 718, 0, 0, 0, 0, 151, 745 

+ po/sv.gmo,  151, 745, 749, 0, 0, 0, 0, 151, 745 

+ po/pt_BR.po,  151, 745, 928, 2, 10, 1, 8, 154, 763 

+ po/pl.po,  151, 745, 759, 2, 10, 1, 8, 154, 763 

+ po/pt.gmo,  151, 745, 877, 0, 0, 0, 0, 151, 745 

+ po/sv.po,  151, 745, 749, 2, 10, 1, 8, 154, 763 

+ po/fr.gmo,  151, 745, 1024, 0, 0, 0, 0, 151, 745 

+ po/en_GB.gmo,  145, 720, 719, 0, 0, 0, 0, 145, 720 

+ po/uk.gmo,  151, 745, 794, 0, 0, 0, 0, 151, 745 

+ po/sk.gmo,  12, 34, 34, 0, 0, 0, 0, 12, 34 

+ po/it.po,  151, 745, 905, 2, 10, 1, 8, 154, 763 

+ po/hu.po,  151, 745, 771, 2, 10, 1, 8, 154, 763 

+ po/mr.po,  151, 745, 735, 2, 10, 1, 8, 154, 763 

+ po/bn_IN.gmo,  143, 707, 777, 0, 0, 0, 0, 143, 707 

+ po/ru.gmo,  148, 732, 719, 0, 0, 0, 0, 148, 732 

+ po/pl.gmo,  151, 745, 759, 0, 0, 0, 0, 151, 745 

+ po/or.gmo,  151, 745, 799, 0, 0, 0, 0, 151, 745 

+ po/kn.po,  151, 745, 718, 2, 10, 1, 8, 154, 763 

+ po/de.po,  151, 745, 760, 2, 10, 1, 8, 154, 763 

+ po/ru.po,  148, 732, 719, 2, 10, 4, 21, 154, 763 

+ po/hi.po,  151, 745, 834, 2, 10, 1, 8, 154, 763 

+ po/bn_IN.po,  143, 707, 777, 2, 10, 9, 46, 154, 763 

+ po/zh_CN.po,  151, 745, 322, 2, 10, 1, 8, 154, 763 

+ po/ta.po,  151, 745, 660, 2, 10, 1, 8, 154, 763 

+ po/ca.po,  151, 745, 997, 2, 10, 1, 8, 154, 763 

+ po/eu.gmo,  33, 117, 109, 0, 0, 0, 0, 33, 117 

+ po/ja.gmo,  151, 745, 334, 0, 0, 0, 0, 151, 745 

+ po/gu.po,  151, 745, 841, 2, 10, 1, 8, 154, 763 

+ po/hi.gmo,  151, 745, 834, 0, 0, 0, 0, 151, 745 

+ po/pt.po,  151, 745, 877, 2, 10, 1, 8, 154, 763 

+ po/zh_TW.gmo,  151, 745, 283, 0, 0, 0, 0, 151, 745 

+ po/te.gmo,  151, 745, 665, 0, 0, 0, 0, 151, 745 

+ po/uk.po,  151, 745, 794, 2, 10, 1, 8, 154, 763 

@@ -0,0 +1,3 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./Source/WebCore/platform/gtk/po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./Source/WebCore/platform/gtk/po/POTFILES.in)

+ translate.tools.pocount: ERROR: Failed to guess file type.

@@ -0,0 +1,50 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ Source/WebCore/platform/gtk/po/nb.po,  97, 215, 213, 114, 507, 359, 1901, 570, 2623 

+ Source/WebCore/platform/gtk/po/vi.po,  255, 1062, 1351, 137, 638, 178, 923, 570, 2623 

+ Source/WebCore/platform/gtk/po/zh_CN.po,  258, 1073, 376, 137, 638, 175, 912, 570, 2623 

+ Source/WebCore/platform/gtk/po/ko.po,  569, 2622, 2057, 0, 0, 1, 1, 570, 2623 

+ Source/WebCore/platform/gtk/po/lv.po,  163, 671, 601, 119, 550, 288, 1402, 570, 2623 

+ Source/WebCore/platform/gtk/po/ar.po,  258, 1073, 959, 137, 638, 175, 912, 570, 2623 

+ Source/WebCore/platform/gtk/po/it.po,  584, 2277, 2491, 0, 0, 1, 1, 585, 2278 

+ Source/WebCore/platform/gtk/po/pa.po,  163, 671, 691, 134, 644, 273, 1308, 570, 2623 

+ Source/WebCore/platform/gtk/po/ja.po,  582, 2682, 900, 3, 14, 2, 12, 587, 2708 

+ Source/WebCore/platform/gtk/po/he.po,  376, 1567, 1571, 0, 0, 0, 0, 376, 1567 

+ Source/WebCore/platform/gtk/po/sr@latin.po,  258, 1073, 1007, 137, 638, 175, 912, 570, 2623 

+ Source/WebCore/platform/gtk/po/el.po,  384, 1605, 1790, 0, 0, 1, 1, 385, 1606 

+ Source/WebCore/platform/gtk/po/en_CA.po,  337, 1441, 1441, 123, 587, 110, 593, 570, 2621 

+ Source/WebCore/platform/gtk/po/ta.po,  368, 1545, 1333, 0, 0, 0, 0, 368, 1545 

+ Source/WebCore/platform/gtk/po/lt.po,  254, 1052, 955, 138, 641, 178, 930, 570, 2623 

+ Source/WebCore/platform/gtk/po/cs.po,  350, 1295, 1281, 86, 491, 134, 837, 570, 2623 

+ Source/WebCore/platform/gtk/po/nl.po,  533, 2407, 2219, 27, 161, 26, 131, 586, 2699 

+ Source/WebCore/platform/gtk/po/fr.po,  404, 1536, 1908, 46, 240, 94, 388, 544, 2164 

+ Source/WebCore/platform/gtk/po/sr.po,  258, 1073, 1007, 137, 638, 175, 912, 570, 2623 

+ Source/WebCore/platform/gtk/po/sl.po,  469, 1889, 1777, 62, 355, 60, 466, 591, 2710 

+ Source/WebCore/platform/gtk/po/ro.po,  425, 1834, 1936, 85, 415, 60, 374, 570, 2623 

+ Source/WebCore/platform/gtk/po/de.po,  545, 2139, 2014, 32, 120, 38, 127, 615, 2386 

+ Source/WebCore/platform/gtk/po/eo.po,  106, 303, 287, 60, 258, 404, 2062, 570, 2623 

+ Source/WebCore/platform/gtk/po/da.po,  540, 2187, 1912, 0, 0, 0, 0, 540, 2187 

+ Source/WebCore/platform/gtk/po/gu.po,  368, 1545, 1592, 0, 0, 0, 0, 368, 1545 

+ Source/WebCore/platform/gtk/po/gl.po,  575, 2647, 3318, 2, 20, 5, 19, 582, 2686 

+ Source/WebCore/platform/gtk/po/ml.po,  179, 429, 414, 0, 0, 398, 2252, 577, 2681 

+ Source/WebCore/platform/gtk/po/id.po,  518, 1880, 1819, 0, 0, 50, 355, 568, 2235 

+ Source/WebCore/platform/gtk/po/te.po,  365, 1526, 1270, 0, 0, 0, 0, 365, 1526 

+ Source/WebCore/platform/gtk/po/pt_BR.po,  615, 2386, 2785, 0, 0, 0, 0, 615, 2386 

+ Source/WebCore/platform/gtk/po/mr.po,  365, 1526, 1440, 0, 0, 0, 0, 365, 1526 

+ Source/WebCore/platform/gtk/po/pt.po,  319, 1375, 1627, 136, 643, 115, 605, 570, 2623 

+ Source/WebCore/platform/gtk/po/et.po,  239, 969, 695, 136, 628, 195, 1026, 570, 2623 

+ Source/WebCore/platform/gtk/po/eu.po,  257, 1066, 917, 138, 645, 175, 912, 570, 2623 

+ Source/WebCore/platform/gtk/po/fi.po,  118, 291, 256, 0, 0, 265, 1308, 383, 1599 

+ Source/WebCore/platform/gtk/po/tr.po,  385, 1606, 1436, 0, 0, 0, 0, 385, 1606 

+ Source/WebCore/platform/gtk/po/ru.po,  145, 605, 519, 129, 630, 296, 1388, 570, 2623 

+ Source/WebCore/platform/gtk/po/es.po,  494, 1721, 2108, 42, 221, 63, 396, 599, 2338 

+ Source/WebCore/platform/gtk/po/or.po,  365, 1526, 1575, 0, 0, 0, 0, 365, 1526 

+ Source/WebCore/platform/gtk/po/pl.po,  613, 2372, 2331, 0, 0, 0, 0, 613, 2372 

+ Source/WebCore/platform/gtk/po/bg.po,  385, 1606, 1882, 0, 0, 0, 0, 385, 1606 

+ Source/WebCore/platform/gtk/po/hu.po,  397, 1647, 1306, 0, 0, 0, 0, 397, 1647 

+ Source/WebCore/platform/gtk/po/sv.po,  533, 2160, 1786, 0, 0, 0, 0, 533, 2160 

+ Source/WebCore/platform/gtk/po/ca.po,  178, 462, 626, 0, 0, 198, 1105, 376, 1567 

+ Source/WebCore/platform/gtk/po/as.po,  367, 1543, 1583, 0, 0, 0, 0, 367, 1543 

+ Source/WebCore/platform/gtk/po/uk.po,  613, 2374, 2311, 0, 0, 0, 0, 613, 2374 

+ Source/WebCore/platform/gtk/po/en_GB.po,  589, 2702, 2702, 0, 0, 0, 0, 589, 2702 

+ Source/WebCore/platform/gtk/po/hi.po,  365, 1526, 1775, 0, 0, 0, 0, 365, 1526 

+ Source/WebCore/platform/gtk/po/kn.po,  373, 1551, 1305, 0, 0, 0, 0, 373, 1551 

@@ -0,0 +1,16 @@ 

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xba in position 7: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xae in position 179: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf8 in position 34: invalid start byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xe9 in position 4: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

@@ -0,0 +1,76 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ja.gmo,  639, 3955, 1957, 0, 0, 0, 0, 639, 3955 

+ po/ga.po,  605, 3665, 4245, 28, 208, 11, 123, 644, 3996 

+ po/de.po,  639, 3955, 4327, 1, 10, 4, 31, 644, 3996 

+ po/nb.gmo,  639, 3955, 4174, 0, 0, 0, 0, 639, 3955 

+ po/nl.po,  529, 3087, 3137, 67, 474, 48, 435, 644, 3996 

+ po/et.po,  639, 3955, 3532, 1, 10, 4, 31, 644, 3996 

+ po/sl.po,  254, 1253, 1351, 206, 1421, 184, 1322, 644, 3996 

+ po/id.gmo,  351, 1801, 1874, 0, 0, 0, 0, 351, 1801 

+ po/es.po,  568, 3426, 4107, 48, 322, 28, 248, 644, 3996 

+ po/fr.po,  605, 3665, 4386, 28, 208, 11, 123, 644, 3996 

+ po/en_GB.gmo,  102, 407, 407, 0, 0, 0, 0, 102, 407 

+ po/id.po,  351, 1801, 1874, 211, 1537, 82, 658, 644, 3996 

+ po/zh_CN.gmo,  634, 3897, 1916, 0, 0, 0, 0, 634, 3897 

+ po/wget.pot,  0, 0, 0, 0, 0, 644, 3996, 644, 3996 

+ po/tr.gmo,  605, 3665, 3411, 0, 0, 0, 0, 605, 3665 

+ po/hr.gmo,  638, 3949, 4325, 0, 0, 0, 0, 638, 3949 

+ po/fi.po,  503, 2919, 2491, 69, 503, 72, 574, 644, 3996 

+ po/gl.gmo,  234, 1081, 1370, 0, 0, 0, 0, 234, 1081 

+ po/lt.po,  165, 777, 741, 247, 1614, 232, 1605, 644, 3996 

+ po/de.gmo,  639, 3955, 4327, 0, 0, 0, 0, 639, 3955 

+ po/sr.gmo,  605, 3665, 3849, 0, 0, 0, 0, 605, 3665 

+ po/es.gmo,  568, 3426, 4107, 0, 0, 0, 0, 568, 3426 

+ po/gl.po,  234, 1081, 1370, 149, 906, 261, 2009, 644, 3996 

+ po/ro.po,  102, 407, 453, 120, 663, 422, 2926, 644, 3996 

+ po/zh_CN.po,  634, 3897, 1916, 2, 14, 8, 85, 644, 3996 

+ po/pl.po,  639, 3955, 4043, 1, 10, 4, 31, 644, 3996 

+ po/pt_BR.po,  605, 3665, 4415, 28, 208, 11, 123, 644, 3996 

+ po/ru.po,  639, 3955, 3862, 1, 10, 4, 31, 644, 3996 

+ po/fr.gmo,  605, 3665, 4386, 0, 0, 0, 0, 605, 3665 

+ po/eu.po,  120, 440, 462, 118, 666, 406, 2890, 644, 3996 

+ po/nl.gmo,  529, 3087, 3137, 0, 0, 0, 0, 529, 3087 

+ po/be.gmo,  217, 940, 924, 0, 0, 0, 0, 217, 940 

+ po/pl.gmo,  639, 3955, 4043, 0, 0, 0, 0, 639, 3955 

+ po/ca.po,  356, 1857, 2570, 216, 1565, 72, 574, 644, 3996 

+ po/vi.po,  605, 3665, 5370, 28, 208, 11, 123, 644, 3996 

+ po/vi.gmo,  605, 3665, 5370, 0, 0, 0, 0, 605, 3665 

+ po/cs.po,  639, 3955, 4191, 1, 10, 4, 31, 644, 3996 

+ po/pt_BR.gmo,  605, 3665, 4415, 0, 0, 0, 0, 605, 3665 

+ po/et.gmo,  639, 3955, 3532, 0, 0, 0, 0, 639, 3955 

+ po/tr.po,  605, 3665, 3411, 28, 208, 11, 123, 644, 3996 

+ po/el.gmo,  93, 370, 450, 0, 0, 0, 0, 93, 370 

+ po/bg.gmo,  93, 370, 432, 0, 0, 0, 0, 93, 370 

+ po/cs.gmo,  639, 3955, 4191, 0, 0, 0, 0, 639, 3955 

+ po/eo.po,  639, 3955, 4118, 1, 10, 4, 31, 644, 3996 

+ po/zh_TW.gmo,  639, 3955, 1938, 0, 0, 0, 0, 639, 3955 

+ po/sr.po,  605, 3665, 3849, 28, 208, 11, 123, 644, 3996 

+ po/he.po,  85, 341, 427, 114, 618, 445, 3037, 644, 3996 

+ po/it.gmo,  639, 3955, 4487, 0, 0, 0, 0, 639, 3955 

+ po/it.po,  639, 3955, 4487, 1, 10, 4, 31, 644, 3996 

+ po/be.po,  217, 940, 924, 135, 779, 292, 2277, 644, 3996 

+ po/fi.gmo,  503, 2919, 2491, 0, 0, 0, 0, 503, 2919 

+ po/uk.po,  639, 3955, 4112, 1, 10, 4, 31, 644, 3996 

+ po/zh_TW.po,  639, 3955, 1938, 1, 10, 4, 31, 644, 3996 

+ po/ru.gmo,  639, 3955, 3862, 0, 0, 0, 0, 639, 3955 

+ po/da.po,  254, 1253, 1238, 212, 1459, 178, 1284, 644, 3996 

+ po/uk.gmo,  639, 3955, 4112, 0, 0, 0, 0, 639, 3955 

+ po/en_GB.po,  102, 407, 407, 119, 656, 423, 2933, 644, 3996 

+ po/pt.po,  639, 3955, 4365, 1, 10, 4, 31, 644, 3996 

+ po/ja.po,  639, 3955, 1957, 1, 10, 4, 31, 644, 3996 

+ po/bg.po,  93, 370, 432, 112, 624, 439, 3002, 644, 3996 

+ po/sk.po,  639, 3955, 4071, 1, 10, 4, 31, 644, 3996 

+ po/sv.po,  639, 3955, 3808, 1, 10, 4, 31, 644, 3996 

+ po/ga.gmo,  605, 3665, 4245, 0, 0, 0, 0, 605, 3665 

+ po/sk.gmo,  639, 3955, 4071, 0, 0, 0, 0, 639, 3955 

+ po/pt.gmo,  639, 3955, 4365, 0, 0, 0, 0, 639, 3955 

+ po/hu.po,  605, 3665, 3811, 28, 208, 11, 123, 644, 3996 

+ po/eu.gmo,  120, 440, 462, 0, 0, 0, 0, 120, 440 

+ po/hr.po,  638, 3949, 4325, 2, 16, 4, 31, 644, 3996 

+ po/hu.gmo,  605, 3665, 3811, 0, 0, 0, 0, 605, 3665 

+ po/nb.po,  639, 3955, 4174, 1, 10, 4, 31, 644, 3996 

+ po/el.po,  93, 370, 450, 120, 658, 431, 2968, 644, 3996 

+ po/ca.gmo,  356, 1857, 2570, 0, 0, 0, 0, 356, 1857 

+ po/eo.gmo,  639, 3955, 4118, 0, 0, 0, 0, 639, 3955 

+ po/sv.gmo,  639, 3955, 3808, 0, 0, 0, 0, 639, 3955 

+ po/lt.gmo,  165, 777, 741, 0, 0, 0, 0, 165, 777 

@@ -0,0 +1,2 @@ 

+ translate.tools.pocount: ERROR: 'utf-8' codec can't decode byte 0xf1 in position 11: invalid continuation byte

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

@@ -0,0 +1,15 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/zh_CN.po,  37, 456, 220, 3, 50, 0, 0, 40, 506 

+ po/ru.po,  40, 506, 488, 0, 0, 0, 0, 40, 506 

+ po/pt_BR.po,  23, 163, 182, 16, 338, 1, 5, 40, 506 

+ po/pl.po,  40, 506, 498, 0, 0, 0, 0, 40, 506 

+ po/nb.po,  5, 15, 14, 9, 203, 26, 288, 40, 506 

+ po/ja.po,  21, 123, 74, 17, 335, 2, 48, 40, 506 

+ po/it.po,  40, 506, 566, 0, 0, 0, 0, 40, 506 

+ po/fr.po,  40, 506, 597, 0, 0, 0, 0, 40, 506 

+ po/fi.po,  40, 506, 392, 0, 0, 0, 0, 40, 506 

+ po/es.po,  40, 506, 603, 0, 0, 0, 0, 40, 506 

+ po/el.po,  21, 123, 141, 18, 378, 1, 5, 40, 506 

+ po/de.po,  40, 506, 507, 0, 0, 0, 0, 40, 506 

+ po/da.po,  37, 427, 400, 3, 79, 0, 0, 40, 506 

+ po/cs.po,  40, 506, 535, 0, 0, 0, 0, 40, 506 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: cannot process wpa_supplicant/wpa_gui-qt4/lang/wpa_gui_: does not exist

@@ -0,0 +1,1 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,40 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/de.po,  12, 88, 81, 4, 40, 10, 47, 26, 175 

+ po/uk.gmo,  20, 132, 136, 0, 0, 0, 0, 20, 132 

+ po/cs.gmo,  20, 132, 115, 0, 0, 0, 0, 20, 132 

+ po/tr.po,  20, 132, 91, 1, 15, 5, 28, 26, 175 

+ po/hu.po,  20, 132, 110, 1, 15, 5, 28, 26, 175 

+ po/sr.gmo,  12, 88, 85, 0, 0, 0, 0, 12, 88 

+ po/pl.gmo,  26, 175, 149, 0, 0, 0, 0, 26, 175 

+ po/gl.gmo,  20, 132, 140, 0, 0, 0, 0, 20, 132 

+ po/zh_TW.gmo,  12, 88, 15, 0, 0, 0, 0, 12, 88 

+ po/pl.po,  26, 175, 149, 0, 0, 0, 0, 26, 175 

+ po/zh_CN.po,  20, 132, 26, 1, 15, 5, 28, 26, 175 

+ po/it.po,  20, 132, 131, 1, 15, 5, 28, 26, 175 

+ po/id.po,  20, 132, 104, 1, 15, 5, 28, 26, 175 

+ po/zh_CN.gmo,  20, 132, 26, 0, 0, 0, 0, 20, 132 

+ po/lt.gmo,  20, 132, 115, 0, 0, 0, 0, 20, 132 

+ po/sv.po,  12, 88, 72, 4, 40, 10, 47, 26, 175 

+ po/uk.po,  20, 132, 136, 1, 15, 5, 28, 26, 175 

+ po/cs.po,  20, 132, 115, 1, 15, 5, 28, 26, 175 

+ po/sr.po,  12, 88, 85, 4, 40, 10, 47, 26, 175 

+ po/gl.po,  20, 132, 140, 1, 15, 5, 28, 26, 175 

+ po/id.gmo,  20, 132, 104, 0, 0, 0, 0, 20, 132 

+ po/pt_BR.po,  20, 132, 135, 1, 15, 5, 28, 26, 175 

+ po/sk.po,  12, 88, 76, 4, 40, 10, 47, 26, 175 

+ po/sv.gmo,  12, 88, 72, 0, 0, 0, 0, 12, 88 

+ po/pt_BR.gmo,  20, 132, 135, 0, 0, 0, 0, 20, 132 

+ po/da.po,  26, 175, 166, 0, 0, 0, 0, 26, 175 

+ po/de.gmo,  12, 88, 81, 0, 0, 0, 0, 12, 88 

+ po/lt.po,  20, 132, 115, 1, 15, 5, 28, 26, 175 

+ po/fr.gmo,  12, 88, 85, 0, 0, 0, 0, 12, 88 

+ po/es.gmo,  12, 88, 96, 0, 0, 0, 0, 12, 88 

+ po/tr.gmo,  20, 132, 91, 0, 0, 0, 0, 20, 132 

+ po/xdg-desktop-portal.pot,  0, 0, 0, 0, 0, 26, 175, 26, 175 

+ po/it.gmo,  20, 132, 131, 0, 0, 0, 0, 20, 132 

+ po/sk.gmo,  12, 88, 76, 0, 0, 0, 0, 12, 88 

+ po/zh_TW.po,  12, 88, 15, 4, 40, 10, 47, 26, 175 

+ po/es.po,  12, 88, 96, 4, 40, 10, 47, 26, 175 

+ po/hu.gmo,  20, 132, 110, 0, 0, 0, 0, 20, 132 

+ po/fr.po,  12, 88, 85, 4, 40, 10, 47, 26, 175 

+ po/da.gmo,  26, 175, 166, 0, 0, 0, 0, 26, 175 

@@ -0,0 +1,12 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

@@ -0,0 +1,40 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/de.po,  47, 169, 182, 0, 0, 7, 15, 54, 184 

+ po/uk.gmo,  49, 173, 191, 0, 0, 0, 0, 49, 173 

+ po/cs.gmo,  48, 172, 179, 0, 0, 0, 0, 48, 172 

+ po/tr.po,  48, 170, 155, 0, 0, 6, 14, 54, 184 

+ po/hu.po,  49, 173, 170, 0, 0, 5, 11, 54, 184 

+ po/sr.gmo,  9, 22, 28, 0, 0, 0, 0, 9, 22 

+ po/pl.gmo,  54, 184, 181, 0, 0, 0, 0, 54, 184 

+ po/gl.gmo,  36, 139, 163, 0, 0, 0, 0, 36, 139 

+ po/zh_TW.gmo,  48, 170, 56, 0, 0, 0, 0, 48, 170 

+ po/pl.po,  54, 184, 181, 0, 0, 0, 0, 54, 184 

+ po/zh_CN.po,  48, 170, 60, 0, 0, 6, 14, 54, 184 

+ po/it.po,  49, 173, 176, 0, 0, 5, 11, 54, 184 

+ po/id.po,  49, 173, 174, 0, 0, 5, 11, 54, 184 

+ po/zh_CN.gmo,  48, 170, 60, 0, 0, 0, 0, 48, 170 

+ po/lt.gmo,  49, 173, 160, 0, 0, 0, 0, 49, 173 

+ po/sv.po,  48, 170, 168, 0, 0, 6, 14, 54, 184 

+ po/uk.po,  49, 173, 191, 0, 0, 5, 11, 54, 184 

+ po/cs.po,  48, 172, 179, 0, 0, 6, 12, 54, 184 

+ po/sr.po,  9, 22, 28, 9, 35, 36, 127, 54, 184 

+ po/gl.po,  36, 139, 163, 3, 6, 15, 39, 54, 184 

+ po/id.gmo,  49, 173, 174, 0, 0, 0, 0, 49, 173 

+ po/pt_BR.po,  49, 173, 195, 0, 0, 5, 11, 54, 184 

+ po/sk.po,  27, 103, 101, 5, 22, 22, 59, 54, 184 

+ po/sv.gmo,  48, 170, 168, 0, 0, 0, 0, 48, 170 

+ po/pt_BR.gmo,  49, 173, 195, 0, 0, 0, 0, 49, 173 

+ po/da.po,  54, 184, 185, 0, 0, 0, 0, 54, 184 

+ po/de.gmo,  47, 169, 182, 0, 0, 0, 0, 47, 169 

+ po/lt.po,  49, 173, 160, 0, 0, 5, 11, 54, 184 

+ po/fr.gmo,  18, 51, 59, 0, 0, 0, 0, 18, 51 

+ po/es.gmo,  45, 155, 181, 0, 0, 0, 0, 45, 155 

+ po/tr.gmo,  48, 170, 155, 0, 0, 0, 0, 48, 170 

+ po/it.gmo,  49, 173, 176, 0, 0, 0, 0, 49, 173 

+ po/sk.gmo,  27, 103, 101, 0, 0, 0, 0, 27, 103 

+ po/zh_TW.po,  48, 170, 56, 0, 0, 6, 14, 54, 184 

+ po/es.po,  45, 155, 181, 2, 14, 7, 15, 54, 184 

+ po/hu.gmo,  49, 173, 170, 0, 0, 0, 0, 49, 173 

+ po/fr.po,  18, 51, 59, 6, 25, 30, 108, 54, 184 

+ po/da.gmo,  54, 184, 185, 0, 0, 0, 0, 54, 184 

+ po/xdg-desktop-portal-gtk.pot,  0, 0, 0, 0, 0, 54, 184, 54, 184 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

@@ -0,0 +1,150 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/xdg-user-dirs.pot,  0, 0, 0, 0, 0, 28, 28, 28, 28 

+ po/zh_TW.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/zh_HK.gmo,  26, 26, 26, 0, 0, 0, 0, 26, 26 

+ po/zh_CN.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/vi.gmo,  28, 28, 50, 0, 0, 0, 0, 28, 28 

+ po/uk.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/tr.gmo,  26, 26, 26, 0, 0, 0, 0, 26, 26 

+ po/th.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/te.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ta.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/sv.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/sr@Latn.gmo,  26, 26, 28, 0, 0, 0, 0, 26, 26 

+ po/sr.gmo,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/sq.gmo,  26, 26, 32, 0, 0, 0, 0, 26, 26 

+ po/sl.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/sk.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ru.gmo,  28, 28, 32, 0, 0, 0, 0, 28, 28 

+ po/ro.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/pt_BR.gmo,  28, 28, 32, 0, 0, 0, 0, 28, 28 

+ po/pt.gmo,  28, 28, 32, 0, 0, 0, 0, 28, 28 

+ po/ps.gmo,  26, 26, 26, 0, 0, 0, 0, 26, 26 

+ po/pl.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/pa.gmo,  24, 24, 24, 0, 0, 0, 0, 24, 24 

+ po/or.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/nn.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/nl.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/nds.gmo,  26, 26, 26, 0, 0, 0, 0, 26, 26 

+ po/nb.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/mr.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ml.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/mk.gmo,  26, 26, 26, 0, 0, 0, 0, 26, 26 

+ po/lv.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/lt.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ky.gmo,  28, 28, 32, 0, 0, 0, 0, 28, 28 

+ po/ku.gmo,  26, 26, 26, 0, 0, 0, 0, 26, 26 

+ po/ko.gmo,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/kn.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/kk.gmo,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/ja.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/it.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/is.gmo,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/id.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ia.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/hu.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/hr.gmo,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/hi.gmo,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/he.gmo,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/gu.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/gl.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/gd.gmo,  28, 28, 34, 0, 0, 0, 0, 28, 28 

+ po/ga.gmo,  26, 26, 26, 0, 0, 0, 0, 26, 26 

+ po/fur.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/fr.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/fi.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/fa.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/eu.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/et.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/es.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/eo.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/el.gmo,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/de.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/da.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/cs.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/crh.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ca.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/br.gmo,  26, 26, 26, 0, 0, 0, 0, 26, 26 

+ po/bn_IN.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/bg.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/be@latin.gmo,  26, 26, 26, 0, 0, 0, 0, 26, 26 

+ po/be.gmo,  28, 28, 36, 0, 0, 0, 0, 28, 28 

+ po/ast.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/as.gmo,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/ar.gmo,  26, 26, 30, 0, 0, 0, 0, 26, 26 

+ po/an.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/af.gmo,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/zh_TW.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/zh_HK.po,  26, 26, 26, 2, 2, 0, 0, 28, 28 

+ po/zh_CN.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/vi.po,  28, 28, 50, 0, 0, 0, 0, 28, 28 

+ po/uk.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/tr.po,  26, 26, 26, 2, 2, 0, 0, 28, 28 

+ po/th.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/te.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ta.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/sv.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/sr@Latn.po,  26, 26, 28, 2, 2, 0, 0, 28, 28 

+ po/sr.po,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/sq.po,  26, 26, 32, 2, 2, 0, 0, 28, 28 

+ po/sl.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/sk.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ru.po,  28, 28, 32, 0, 0, 0, 0, 28, 28 

+ po/ro.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/pt_BR.po,  28, 28, 32, 0, 0, 0, 0, 28, 28 

+ po/pt.po,  28, 28, 32, 0, 0, 0, 0, 28, 28 

+ po/ps.po,  26, 26, 26, 2, 2, 0, 0, 28, 28 

+ po/pl.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/pa.po,  24, 24, 24, 2, 2, 2, 2, 28, 28 

+ po/or.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/nn.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/nl.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/nds.po,  26, 26, 26, 2, 2, 0, 0, 28, 28 

+ po/nb.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/mr.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ml.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/mk.po,  26, 26, 26, 2, 2, 0, 0, 28, 28 

+ po/lv.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/lt.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ky.po,  28, 28, 32, 0, 0, 0, 0, 28, 28 

+ po/ku.po,  26, 26, 26, 2, 2, 0, 0, 28, 28 

+ po/ko.po,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/kn.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/kk.po,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/ja.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/it.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/is.po,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/id.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ia.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/hu.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/hr.po,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/hi.po,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/he.po,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/gu.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/gl.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/gd.po,  28, 28, 34, 0, 0, 0, 0, 28, 28 

+ po/ga.po,  26, 26, 26, 2, 2, 0, 0, 28, 28 

+ po/fur.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/fr.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/fi.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/fa.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/eu.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/et.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/es.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/eo.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/el.po,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/de.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/da.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/cs.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/crh.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/ca.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/br.po,  26, 26, 26, 2, 2, 0, 0, 28, 28 

+ po/bn_IN.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/bg.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/be@latin.po,  26, 26, 26, 2, 2, 0, 0, 28, 28 

+ po/be.po,  28, 28, 36, 0, 0, 0, 0, 28, 28 

+ po/ast.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/as.po,  28, 28, 30, 0, 0, 0, 0, 28, 28 

+ po/ar.po,  26, 26, 30, 2, 2, 0, 0, 28, 28 

+ po/an.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

+ po/af.po,  28, 28, 28, 0, 0, 0, 0, 28, 28 

@@ -0,0 +1,4 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

@@ -0,0 +1,72 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/ca.po,  11, 81, 91, 0, 0, 0, 0, 11, 81 

+ po/cs.po,  11, 81, 70, 0, 0, 0, 0, 11, 81 

+ po/uk.po,  11, 81, 73, 0, 0, 0, 0, 11, 81 

+ po/sr@latin.po,  11, 81, 68, 0, 0, 0, 0, 11, 81 

+ po/sq.po,  11, 81, 100, 0, 0, 0, 0, 11, 81 

+ po/en_GB.po,  11, 81, 81, 0, 0, 0, 0, 11, 81 

+ po/kk.po,  11, 81, 69, 0, 0, 0, 0, 11, 81 

+ po/tr.po,  11, 81, 66, 0, 0, 0, 0, 11, 81 

+ po/ar.po,  11, 81, 63, 0, 0, 0, 0, 11, 81 

+ po/ja.po,  11, 81, 11, 0, 0, 0, 0, 11, 81 

+ po/sl.po,  11, 81, 75, 0, 0, 0, 0, 11, 81 

+ po/he.po,  11, 81, 66, 0, 0, 0, 0, 11, 81 

+ po/pa.po,  11, 81, 88, 0, 0, 0, 0, 11, 81 

+ po/de.po,  11, 81, 74, 0, 0, 0, 0, 11, 81 

+ po/ast.po,  11, 81, 94, 0, 0, 0, 0, 11, 81 

+ po/eu.po,  11, 81, 69, 0, 0, 0, 0, 11, 81 

+ po/fr.po,  11, 81, 107, 0, 0, 0, 0, 11, 81 

+ po/gu.po,  11, 81, 76, 0, 0, 0, 0, 11, 81 

+ po/sv.po,  11, 81, 75, 0, 0, 0, 0, 11, 81 

+ po/pl.po,  11, 81, 64, 0, 0, 0, 0, 11, 81 

+ po/zh_HK.po,  11, 81, 11, 0, 0, 0, 0, 11, 81 

+ po/or.po,  11, 81, 82, 0, 0, 0, 0, 11, 81 

+ po/te.po,  11, 81, 62, 0, 0, 0, 0, 11, 81 

+ po/fi.po,  11, 81, 56, 0, 0, 0, 0, 11, 81 

+ po/zh_TW.po,  11, 81, 11, 0, 0, 0, 0, 11, 81 

+ po/nds.po,  11, 81, 83, 0, 0, 0, 0, 11, 81 

+ po/be@latin.po,  11, 81, 74, 0, 0, 0, 0, 11, 81 

+ po/ps.po,  11, 81, 92, 0, 0, 0, 0, 11, 81 

+ po/crh.po,  11, 81, 67, 0, 0, 0, 0, 11, 81 

+ po/be.po,  11, 81, 77, 0, 0, 0, 0, 11, 81 

+ po/lv.po,  11, 81, 70, 0, 0, 0, 0, 11, 81 

+ po/th.po,  11, 81, 14, 0, 0, 0, 0, 11, 81 

+ po/id.po,  11, 81, 79, 0, 0, 0, 0, 11, 81 

+ po/es.po,  11, 81, 96, 0, 0, 0, 0, 11, 81 

+ po/nl.po,  11, 81, 83, 0, 0, 0, 0, 11, 81 

+ po/hu.po,  11, 81, 67, 0, 0, 0, 0, 11, 81 

+ po/da.po,  11, 81, 81, 0, 0, 0, 0, 11, 81 

+ po/an.po,  11, 81, 94, 0, 0, 0, 0, 11, 81 

+ po/pt_BR.po,  11, 81, 88, 0, 0, 0, 0, 11, 81 

+ po/bn_IN.po,  11, 81, 90, 0, 0, 0, 0, 11, 81 

+ po/mr.po,  11, 81, 79, 0, 0, 0, 0, 11, 81 

+ po/hi.po,  11, 81, 97, 0, 0, 0, 0, 11, 81 

+ po/lt.po,  11, 81, 57, 0, 0, 0, 0, 11, 81 

+ po/kn.po,  11, 81, 63, 0, 0, 0, 0, 11, 81 

+ po/vi.po,  11, 81, 123, 0, 0, 0, 0, 11, 81 

+ po/nn.po,  8, 52, 46, 0, 0, 0, 0, 8, 52 

+ po/ku.po,  11, 81, 94, 0, 0, 0, 0, 11, 81 

+ po/as.po,  11, 81, 78, 0, 0, 0, 0, 11, 81 

+ po/eo.po,  11, 81, 84, 0, 0, 0, 0, 11, 81 

+ po/nb.po,  11, 81, 73, 0, 0, 0, 0, 11, 81 

+ po/el.po,  11, 81, 88, 0, 0, 0, 0, 11, 81 

+ po/ta.po,  11, 81, 65, 0, 0, 0, 0, 11, 81 

+ po/ro.po,  11, 81, 78, 0, 0, 0, 0, 11, 81 

+ po/si.po,  8, 34, 35, 0, 0, 3, 47, 11, 81 

+ po/zh_CN.po,  11, 81, 11, 0, 0, 0, 0, 11, 81 

+ po/ka.po,  11, 81, 48, 0, 0, 0, 0, 11, 81 

+ po/csb.po,  11, 81, 66, 0, 0, 0, 0, 11, 81 

+ po/gl.po,  11, 81, 91, 0, 0, 0, 0, 11, 81 

+ po/sk.po,  11, 81, 71, 0, 0, 0, 0, 11, 81 

+ po/dz.po,  8, 52, 21, 0, 0, 0, 0, 8, 52 

+ po/it.po,  11, 81, 86, 0, 0, 0, 0, 11, 81 

+ po/sr.po,  11, 81, 68, 0, 0, 0, 0, 11, 81 

+ po/oc.po,  5, 20, 29, 0, 0, 6, 61, 11, 81 

+ po/ml.po,  11, 81, 50, 0, 0, 0, 0, 11, 81 

+ po/ru.po,  11, 81, 78, 0, 0, 0, 0, 11, 81 

+ po/pt.po,  11, 81, 88, 0, 0, 0, 0, 11, 81 

+ po/et.po,  11, 81, 59, 0, 0, 0, 0, 11, 81 

+ po/ko.po,  11, 81, 72, 0, 0, 0, 0, 11, 81 

+ po/bg.po,  11, 81, 85, 0, 0, 0, 0, 11, 81 

+ po/kg.po,  11, 81, 55, 0, 0, 0, 0, 11, 81 

+ po/af.po,  10, 78, 84, 0, 0, 1, 3, 11, 81 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./tools/qemu-xen/po/Makefile)

@@ -0,0 +1,9 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ tools/qemu-xen/po/bg.po,  18, 33, 34, 0, 0, 1, 2, 19, 35 

+ tools/qemu-xen/po/hu.po,  11, 22, 21, 2, 4, 6, 9, 19, 35 

+ tools/qemu-xen/po/messages.po,  0, 0, 0, 0, 0, 19, 35, 19, 35 

+ tools/qemu-xen/po/zh_CN.po,  18, 33, 20, 0, 0, 1, 2, 19, 35 

+ tools/qemu-xen/po/it.po,  18, 33, 38, 0, 0, 1, 2, 19, 35 

+ tools/qemu-xen/po/tr.po,  11, 22, 21, 2, 4, 6, 9, 19, 35 

+ tools/qemu-xen/po/fr_FR.po,  18, 33, 39, 0, 0, 1, 2, 19, 35 

+ tools/qemu-xen/po/de_DE.po,  18, 33, 29, 0, 0, 1, 2, 19, 35 

@@ -0,0 +1,1 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile)

@@ -0,0 +1,4 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/xfsprogs.pot,  0, 0, 0, 0, 0, 2770, 24298, 2770, 24298 

+ po/pl.po,  2701, 23865, 23840, 0, 0, 0, 0, 2701, 23865 

+ po/de.po,  2346, 20310, 19623, 0, 0, 0, 0, 2346, 20310 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

@@ -0,0 +1,88 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/bg.po,  755, 1992, 2503, 359, 1713, 41, 154, 1155, 3859 

+ po/nb.gmo,  24, 40, 40, 0, 0, 0, 0, 24, 40 

+ po/sl.gmo,  605, 1412, 1511, 0, 0, 0, 0, 605, 1412 

+ po/pt_BR.po,  1130, 3750, 4097, 20, 77, 5, 32, 1155, 3859 

+ po/ky.po,  177, 398, 407, 477, 1504, 501, 1957, 1155, 3859 

+ po/rw.gmo,  18, 18, 18, 0, 0, 0, 0, 18, 18 

+ po/ky.gmo,  177, 398, 407, 0, 0, 0, 0, 177, 398 

+ po/gl.po,  1117, 3700, 4035, 28, 110, 10, 49, 1155, 3859 

+ po/cs.po,  1147, 3819, 3950, 4, 9, 4, 31, 1155, 3859 

+ po/vi.gmo,  755, 1992, 2866, 0, 0, 0, 0, 755, 1992 

+ po/xkeyboard-config.pot,  0, 0, 0, 0, 0, 1155, 3859, 1155, 3859 

+ po/sq.po,  105, 198, 201, 303, 962, 747, 2699, 1155, 3859 

+ po/lt.po,  724, 1865, 1944, 384, 1786, 47, 208, 1155, 3859 

+ po/el.gmo,  700, 1808, 1862, 0, 0, 0, 0, 700, 1808 

+ po/fr.po,  1145, 3813, 4034, 5, 13, 5, 33, 1155, 3859 

+ po/fi.po,  1147, 3819, 3401, 4, 9, 4, 31, 1155, 3859 

+ po/sv.po,  1147, 3819, 3677, 4, 9, 4, 31, 1155, 3859 

+ po/ro.po,  672, 1635, 1785, 398, 1869, 85, 355, 1155, 3859 

+ po/sr.gmo,  89, 189, 192, 0, 0, 0, 0, 89, 189 

+ po/ko.po,  1145, 3813, 3731, 5, 13, 5, 33, 1155, 3859 

+ po/pt.po,  1147, 3819, 3904, 3, 7, 5, 33, 1155, 3859 

+ po/crh.po,  185, 482, 496, 544, 1936, 426, 1441, 1155, 3859 

+ po/zh_TW.po,  660, 1626, 1319, 419, 1934, 76, 299, 1155, 3859 

+ po/fi.gmo,  1147, 3819, 3401, 0, 0, 0, 0, 1147, 3819 

+ po/rw.po,  18, 18, 18, 252, 939, 885, 2902, 1155, 3859 

+ po/nl.po,  1147, 3819, 3710, 3, 7, 5, 33, 1155, 3859 

+ po/ro.gmo,  672, 1635, 1785, 0, 0, 0, 0, 672, 1635 

+ po/az.po,  105, 198, 199, 303, 962, 747, 2699, 1155, 3859 

+ po/eo.po,  1147, 3819, 3845, 4, 9, 4, 31, 1155, 3859 

+ po/it.po,  593, 1362, 1409, 466, 2094, 96, 403, 1155, 3859 

+ po/es.po,  1146, 3818, 4278, 4, 9, 5, 32, 1155, 3859 

+ po/hr.gmo,  1147, 3819, 3932, 0, 0, 0, 0, 1147, 3819 

+ po/en_GB.gmo,  65, 153, 153, 0, 0, 0, 0, 65, 153 

+ po/hu.gmo,  1115, 3676, 3687, 0, 0, 0, 0, 1115, 3676 

+ po/ka.gmo,  86, 195, 195, 0, 0, 0, 0, 86, 195 

+ po/id.gmo,  1115, 3676, 3694, 0, 0, 0, 0, 1115, 3676 

+ po/ca.gmo,  1147, 3819, 4101, 0, 0, 0, 0, 1147, 3819 

+ po/sr.po,  89, 189, 192, 450, 1446, 616, 2224, 1155, 3859 

+ po/el.po,  700, 1808, 1862, 395, 1813, 60, 238, 1155, 3859 

+ po/ru.po,  1147, 3819, 3959, 4, 9, 4, 31, 1155, 3859 

+ po/ja.gmo,  615, 1464, 1285, 0, 0, 0, 0, 615, 1464 

+ po/ru.gmo,  1147, 3819, 3959, 0, 0, 0, 0, 1147, 3819 

+ po/ka.po,  86, 195, 195, 449, 1472, 620, 2192, 1155, 3859 

+ po/sk.po,  278, 921, 895, 451, 1420, 426, 1518, 1155, 3859 

+ po/da.po,  1147, 3819, 3715, 3, 7, 5, 33, 1155, 3859 

+ po/tr.po,  1147, 3819, 3800, 4, 9, 4, 31, 1155, 3859 

+ po/bg.gmo,  755, 1992, 2503, 0, 0, 0, 0, 755, 1992 

+ po/fr.gmo,  1145, 3813, 4034, 0, 0, 0, 0, 1145, 3813 

+ po/ca.po,  1147, 3819, 4101, 3, 7, 5, 33, 1155, 3859 

+ po/pt_BR.gmo,  1130, 3750, 4097, 0, 0, 0, 0, 1130, 3750 

+ po/zh_TW.gmo,  660, 1626, 1319, 0, 0, 0, 0, 660, 1626 

+ po/nl.gmo,  1147, 3819, 3710, 0, 0, 0, 0, 1147, 3819 

+ po/uk.gmo,  1147, 3819, 3870, 0, 0, 0, 0, 1147, 3819 

+ po/zh_CN.gmo,  588, 1471, 910, 0, 0, 0, 0, 588, 1471 

+ po/hr.po,  1147, 3819, 3932, 4, 9, 4, 31, 1155, 3859 

+ po/sv.gmo,  1147, 3819, 3677, 0, 0, 0, 0, 1147, 3819 

+ po/ko.gmo,  1145, 3813, 3731, 0, 0, 0, 0, 1145, 3813 

+ po/uk.po,  1147, 3819, 3870, 3, 7, 5, 33, 1155, 3859 

+ po/id.po,  1115, 3676, 3694, 27, 108, 13, 75, 1155, 3859 

+ po/de.po,  1147, 3819, 3713, 3, 7, 5, 33, 1155, 3859 

+ po/da.gmo,  1147, 3819, 3715, 0, 0, 0, 0, 1147, 3819 

+ po/pl.po,  1147, 3819, 3712, 3, 7, 5, 33, 1155, 3859 

+ po/af.po,  105, 198, 196, 303, 962, 747, 2699, 1155, 3859 

+ po/fur.po,  1130, 3750, 4045, 20, 77, 5, 32, 1155, 3859 

+ po/zh_CN.po,  588, 1471, 910, 323, 1300, 244, 1088, 1155, 3859 

+ po/en_GB.po,  65, 153, 153, 400, 1323, 690, 2383, 1155, 3859 

+ po/hu.po,  1115, 3676, 3687, 27, 108, 13, 75, 1155, 3859 

+ po/cs.gmo,  1147, 3819, 3950, 0, 0, 0, 0, 1147, 3819 

+ po/de.gmo,  1147, 3819, 3713, 0, 0, 0, 0, 1147, 3819 

+ po/crh.gmo,  185, 482, 496, 0, 0, 0, 0, 185, 482 

+ po/es.gmo,  1146, 3818, 4278, 0, 0, 0, 0, 1146, 3818 

+ po/vi.po,  755, 1992, 2866, 360, 1716, 40, 151, 1155, 3859 

+ po/fur.gmo,  1130, 3750, 4045, 0, 0, 0, 0, 1130, 3750 

+ po/eo.gmo,  1147, 3819, 3845, 0, 0, 0, 0, 1147, 3819 

+ po/az.gmo,  105, 198, 199, 0, 0, 0, 0, 105, 198 

+ po/ja.po,  615, 1464, 1285, 423, 1937, 117, 458, 1155, 3859 

+ po/nb.po,  24, 40, 40, 174, 392, 957, 3427, 1155, 3859 

+ po/sq.gmo,  105, 198, 201, 0, 0, 0, 0, 105, 198 

+ po/gl.gmo,  1117, 3700, 4035, 0, 0, 0, 0, 1117, 3700 

+ po/af.gmo,  105, 198, 196, 0, 0, 0, 0, 105, 198 

+ po/sl.po,  605, 1412, 1511, 455, 2065, 95, 382, 1155, 3859 

+ po/tr.gmo,  1147, 3819, 3800, 0, 0, 0, 0, 1147, 3819 

+ po/sk.gmo,  278, 921, 895, 0, 0, 0, 0, 278, 921 

+ po/pl.gmo,  1147, 3819, 3712, 0, 0, 0, 0, 1147, 3819 

+ po/pt.gmo,  1147, 3819, 3904, 0, 0, 0, 0, 1147, 3819 

+ po/lt.gmo,  724, 1865, 1944, 0, 0, 0, 0, 724, 1865 

+ po/it.gmo,  593, 1362, 1409, 0, 0, 0, 0, 593, 1362 

@@ -0,0 +1,18 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: 'Unable to process version 1.0 MO files'

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

@@ -0,0 +1,8 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/cs.po,  134, 1130, 1130, 7, 67, 20, 195, 161, 1392 

+ po/de.po,  159, 1378, 1309, 0, 0, 2, 14, 161, 1392 

+ po/fr.po,  146, 1259, 1449, 0, 0, 15, 133, 161, 1392 

+ po/it.po,  156, 1360, 1583, 0, 0, 5, 32, 161, 1392 

+ po/pl.po,  156, 1360, 1303, 0, 0, 5, 32, 161, 1392 

+ po/vi.po,  156, 1360, 1920, 0, 0, 5, 32, 161, 1392 

+ po/xz.pot,  0, 0, 0, 0, 0, 161, 1392, 161, 1392 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

@@ -0,0 +1,208 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/he.po,  104, 448, 385, 0, 0, 0, 0, 104, 448 

+ po/gu.gmo,  104, 452, 424, 0, 0, 0, 0, 104, 452 

+ po/uz.gmo,  250, 570, 548, 0, 0, 0, 0, 250, 570 

+ po/hu.gmo,  74, 351, 305, 0, 0, 0, 0, 74, 351 

+ po/ast.gmo,  115, 488, 512, 0, 0, 0, 0, 115, 488 

+ po/ga.gmo,  65, 155, 166, 0, 0, 0, 0, 65, 155 

+ po/bn_IN.po,  104, 452, 435, 0, 0, 0, 0, 104, 452 

+ po/xh.gmo,  151, 597, 501, 0, 0, 0, 0, 151, 597 

+ po/ar.gmo,  99, 430, 351, 0, 0, 0, 0, 99, 430 

+ po/pt_BR.gmo,  74, 351, 373, 0, 0, 0, 0, 74, 351 

+ po/de.po,  74, 351, 344, 0, 0, 0, 0, 74, 351 

+ po/uz.po,  250, 570, 548, 0, 0, 99, 465, 349, 1035 

+ po/ka.po,  239, 957, 734, 0, 0, 0, 0, 239, 957 

+ po/ca@valencia.gmo,  67, 284, 336, 0, 0, 0, 0, 67, 284 

+ po/ku.gmo,  238, 956, 989, 0, 0, 0, 0, 238, 956 

+ po/ml.gmo,  73, 348, 276, 0, 0, 0, 0, 73, 348 

+ po/lv.po,  74, 351, 301, 0, 0, 0, 0, 74, 351 

+ po/zh_TW.po,  74, 351, 108, 0, 0, 0, 0, 74, 351 

+ po/en_GB.gmo,  121, 506, 506, 0, 0, 0, 0, 121, 506 

+ po/zh_CN.gmo,  74, 351, 116, 0, 0, 0, 0, 74, 351 

+ po/la.gmo,  13, 13, 24, 0, 0, 0, 0, 13, 13 

+ po/fur.po,  74, 351, 379, 0, 0, 0, 0, 74, 351 

+ po/pt_BR.po,  74, 351, 373, 0, 0, 0, 0, 74, 351 

+ po/is.po,  70, 293, 278, 0, 0, 3, 55, 73, 348 

+ po/af.po,  277, 780, 723, 19, 88, 18, 39, 314, 907 

+ po/gd.gmo,  67, 284, 378, 0, 0, 0, 0, 67, 284 

+ po/ro.gmo,  74, 351, 367, 0, 0, 0, 0, 74, 351 

+ po/li.po,  23, 51, 43, 47, 96, 78, 459, 148, 606 

+ po/ta.po,  104, 452, 353, 0, 0, 0, 0, 104, 452 

+ po/eo.gmo,  67, 284, 257, 0, 0, 0, 0, 67, 284 

+ po/ru.po,  74, 351, 311, 0, 0, 0, 0, 74, 351 

+ po/ml.po,  73, 348, 276, 0, 0, 0, 0, 73, 348 

+ po/ar.po,  99, 430, 351, 0, 0, 5, 18, 104, 448 

+ po/sr@latin.gmo,  104, 448, 390, 0, 0, 0, 0, 104, 448 

+ po/km.gmo,  121, 506, 215, 0, 0, 0, 0, 121, 506 

+ po/crh.gmo,  357, 1094, 961, 0, 0, 0, 0, 357, 1094 

+ po/nl.po,  74, 351, 321, 0, 0, 0, 0, 74, 351 

+ po/az.po,  38, 92, 84, 45, 80, 65, 434, 148, 606 

+ po/cs.gmo,  74, 351, 293, 0, 0, 0, 0, 74, 351 

+ po/ms.po,  73, 172, 170, 34, 74, 41, 360, 148, 606 

+ po/te.po,  104, 452, 363, 0, 0, 0, 0, 104, 452 

+ po/km.po,  121, 506, 215, 0, 0, 0, 0, 121, 506 

+ po/sq.po,  349, 1035, 1130, 0, 0, 0, 0, 349, 1035 

+ po/he.gmo,  104, 448, 385, 0, 0, 0, 0, 104, 448 

+ po/fur.gmo,  74, 351, 379, 0, 0, 0, 0, 74, 351 

+ po/az.gmo,  38, 92, 84, 0, 0, 0, 0, 38, 92 

+ po/uz@cyrillic.po,  250, 570, 548, 0, 0, 99, 465, 349, 1035 

+ po/ca.po,  74, 351, 401, 0, 0, 0, 0, 74, 351 

+ po/ka.gmo,  239, 957, 734, 0, 0, 0, 0, 239, 957 

+ po/pt.po,  104, 448, 473, 0, 0, 0, 0, 104, 448 

+ po/zh_CN.po,  74, 351, 116, 0, 0, 0, 0, 74, 351 

+ po/it.gmo,  74, 351, 375, 0, 0, 0, 0, 74, 351 

+ po/hr.gmo,  74, 351, 303, 0, 0, 0, 0, 74, 351 

+ po/fa.po,  73, 348, 332, 0, 0, 0, 0, 73, 348 

+ po/nb.po,  73, 348, 316, 0, 0, 0, 0, 73, 348 

+ po/ps.po,  156, 268, 307, 0, 0, 193, 767, 349, 1035 

+ po/el.gmo,  74, 351, 358, 0, 0, 0, 0, 74, 351 

+ po/hi.po,  104, 452, 484, 0, 0, 0, 0, 104, 452 

+ po/nso.po,  55, 110, 169, 33, 67, 60, 429, 148, 606 

+ po/ga.po,  65, 155, 166, 6, 29, 51, 323, 122, 507 

+ po/th.gmo,  122, 507, 190, 0, 0, 0, 0, 122, 507 

+ po/en_CA.po,  183, 792, 800, 0, 0, 0, 0, 183, 792 

+ po/da.po,  74, 351, 304, 0, 0, 0, 0, 74, 351 

+ po/mn.gmo,  38, 92, 90, 0, 0, 0, 0, 38, 92 

+ po/gl.po,  74, 351, 380, 0, 0, 0, 0, 74, 351 

+ po/as.gmo,  104, 452, 437, 0, 0, 0, 0, 104, 452 

+ po/dz.gmo,  239, 957, 501, 0, 0, 0, 0, 239, 957 

+ po/mg.po,  235, 941, 953, 4, 16, 0, 0, 239, 957 

+ po/sk.po,  67, 284, 257, 0, 0, 0, 0, 67, 284 

+ po/zh_HK.gmo,  104, 452, 141, 0, 0, 0, 0, 104, 452 

+ po/mr.gmo,  104, 452, 378, 0, 0, 0, 0, 104, 452 

+ po/fi.po,  74, 351, 281, 0, 0, 0, 0, 74, 351 

+ po/be@latin.po,  346, 1032, 964, 0, 0, 3, 3, 349, 1035 

+ po/bs.gmo,  104, 452, 389, 0, 0, 0, 0, 104, 452 

+ po/si.po,  60, 84, 124, 0, 0, 190, 925, 250, 1009 

+ po/mai.po,  217, 571, 659, 0, 0, 132, 464, 349, 1035 

+ po/bg.gmo,  104, 448, 472, 0, 0, 0, 0, 104, 448 

+ po/nso.gmo,  55, 110, 169, 0, 0, 0, 0, 55, 110 

+ po/yelp.pot,  0, 0, 0, 0, 0, 74, 351, 74, 351 

+ po/en_GB.po,  104, 448, 448, 0, 0, 0, 0, 104, 448 

+ po/la.po,  13, 13, 24, 0, 0, 336, 1022, 349, 1035 

+ po/cs.po,  74, 351, 293, 0, 0, 0, 0, 74, 351 

+ po/nn.po,  349, 1035, 941, 0, 0, 0, 0, 349, 1035 

+ po/af.gmo,  277, 780, 723, 0, 0, 0, 0, 277, 780 

+ po/sk.gmo,  67, 284, 257, 0, 0, 0, 0, 67, 284 

+ po/or.po,  104, 452, 418, 0, 0, 0, 0, 104, 452 

+ po/bn.po,  357, 1094, 1162, 0, 0, 0, 0, 357, 1094 

+ po/ja.gmo,  72, 331, 122, 0, 0, 0, 0, 72, 331 

+ po/zh_HK.po,  104, 452, 141, 0, 0, 0, 0, 104, 452 

+ po/xh.po,  151, 597, 501, 0, 0, 0, 0, 151, 597 

+ po/ro.po,  74, 351, 367, 0, 0, 0, 0, 74, 351 

+ po/pl.gmo,  74, 351, 315, 0, 0, 0, 0, 74, 351 

+ po/hi.gmo,  104, 452, 484, 0, 0, 0, 0, 104, 452 

+ po/cy.gmo,  238, 956, 964, 0, 0, 0, 0, 238, 956 

+ po/be.gmo,  122, 507, 409, 0, 0, 0, 0, 122, 507 

+ po/br.po,  100, 176, 215, 22, 42, 235, 876, 357, 1094 

+ po/vi.po,  74, 351, 458, 0, 0, 0, 0, 74, 351 

+ po/es.gmo,  74, 351, 386, 0, 0, 0, 0, 74, 351 

+ po/gd.po,  67, 284, 378, 0, 0, 0, 0, 67, 284 

+ po/lv.gmo,  74, 351, 301, 0, 0, 0, 0, 74, 351 

+ po/es.po,  74, 351, 386, 0, 0, 0, 0, 74, 351 

+ po/it.po,  74, 351, 375, 0, 0, 0, 0, 74, 351 

+ po/ks.po,  212, 753, 787, 32, 90, 105, 192, 349, 1035 

+ po/fi.gmo,  74, 351, 281, 0, 0, 0, 0, 74, 351 

+ po/zu.gmo,  38, 92, 85, 0, 0, 0, 0, 38, 92 

+ po/ca.gmo,  74, 351, 401, 0, 0, 0, 0, 74, 351 

+ po/crh.po,  357, 1094, 961, 0, 0, 0, 0, 357, 1094 

+ po/tg.po,  104, 448, 436, 0, 0, 0, 0, 104, 448 

+ po/hu.po,  74, 351, 305, 0, 0, 0, 0, 74, 351 

+ po/hr.po,  74, 351, 303, 0, 0, 0, 0, 74, 351 

+ po/sl.gmo,  74, 351, 322, 0, 0, 0, 0, 74, 351 

+ po/tr.po,  74, 351, 278, 0, 0, 0, 0, 74, 351 

+ po/ug.po,  122, 507, 397, 0, 0, 0, 0, 122, 507 

+ po/et.gmo,  122, 507, 372, 0, 0, 0, 0, 122, 507 

+ po/pa.gmo,  104, 452, 457, 0, 0, 0, 0, 104, 452 

+ po/fr.gmo,  74, 351, 388, 0, 0, 0, 0, 74, 351 

+ po/zh_TW.gmo,  74, 351, 108, 0, 0, 0, 0, 74, 351 

+ po/wa.po,  239, 957, 1240, 0, 0, 0, 0, 239, 957 

+ po/nn.gmo,  349, 1035, 941, 0, 0, 0, 0, 349, 1035 

+ po/ca@valencia.po,  67, 284, 336, 0, 0, 0, 0, 67, 284 

+ po/bn_IN.gmo,  104, 452, 435, 0, 0, 0, 0, 104, 452 

+ po/ky.po,  121, 506, 405, 0, 0, 0, 0, 121, 506 

+ po/uk.gmo,  104, 448, 366, 0, 0, 0, 0, 104, 448 

+ po/mai.gmo,  217, 571, 659, 0, 0, 0, 0, 217, 571 

+ po/ja.po,  72, 331, 122, 0, 0, 1, 17, 73, 348 

+ po/pa.po,  104, 452, 457, 0, 0, 0, 0, 104, 452 

+ po/nl.gmo,  74, 351, 321, 0, 0, 0, 0, 74, 351 

+ po/pt.gmo,  104, 448, 473, 0, 0, 0, 0, 104, 448 

+ po/ko.gmo,  74, 351, 286, 0, 0, 0, 0, 74, 351 

+ po/eo.po,  67, 284, 257, 0, 0, 0, 0, 67, 284 

+ po/eu.po,  73, 348, 307, 0, 0, 0, 0, 73, 348 

+ po/mk.po,  119, 502, 521, 0, 0, 0, 0, 119, 502 

+ po/ku.po,  238, 956, 989, 0, 0, 0, 0, 238, 956 

+ po/lt.po,  74, 351, 277, 0, 0, 0, 0, 74, 351 

+ po/lt.gmo,  74, 351, 277, 0, 0, 0, 0, 74, 351 

+ po/uz@cyrillic.gmo,  250, 570, 548, 0, 0, 0, 0, 250, 570 

+ po/mr.po,  104, 452, 378, 0, 0, 0, 0, 104, 452 

+ po/sq.gmo,  349, 1035, 1130, 0, 0, 0, 0, 349, 1035 

+ po/gl.gmo,  74, 351, 380, 0, 0, 0, 0, 74, 351 

+ po/sr.gmo,  74, 351, 321, 0, 0, 0, 0, 74, 351 

+ po/gu.po,  104, 448, 420, 0, 0, 0, 0, 104, 448 

+ po/en_CA.gmo,  183, 792, 800, 0, 0, 0, 0, 183, 792 

+ po/dz.po,  239, 957, 501, 0, 0, 0, 0, 239, 957 

+ po/wa.gmo,  239, 957, 1240, 0, 0, 0, 0, 239, 957 

+ po/tr.gmo,  74, 351, 278, 0, 0, 0, 0, 74, 351 

+ po/te.gmo,  104, 452, 363, 0, 0, 0, 0, 104, 452 

+ po/ug.gmo,  122, 507, 397, 0, 0, 0, 0, 122, 507 

+ po/fr.po,  74, 351, 388, 0, 0, 0, 0, 74, 351 

+ po/an.po,  104, 448, 495, 0, 0, 0, 0, 104, 448 

+ po/ta.gmo,  104, 452, 353, 0, 0, 0, 0, 104, 452 

+ po/kk.po,  49, 104, 99, 0, 0, 55, 344, 104, 448 

+ po/ko.po,  74, 351, 286, 0, 0, 0, 0, 74, 351 

+ po/li.gmo,  23, 51, 43, 0, 0, 0, 0, 23, 51 

+ po/bs.po,  104, 452, 389, 0, 0, 0, 0, 104, 452 

+ po/sl.po,  74, 351, 322, 0, 0, 0, 0, 74, 351 

+ po/cy.po,  238, 956, 964, 0, 0, 0, 0, 238, 956 

+ po/ru.gmo,  74, 351, 311, 0, 0, 0, 0, 74, 351 

+ po/mn.po,  38, 92, 90, 45, 80, 65, 434, 148, 606 

+ po/vi.gmo,  74, 351, 458, 0, 0, 0, 0, 74, 351 

+ po/ne.po,  67, 284, 269, 0, 0, 0, 0, 67, 284 

+ po/sv.po,  74, 351, 317, 0, 0, 0, 0, 74, 351 

+ po/am.po,  23, 51, 50, 46, 90, 79, 465, 148, 606 

+ po/et.po,  122, 507, 372, 0, 0, 0, 0, 122, 507 

+ po/zu.po,  38, 92, 85, 45, 80, 65, 434, 148, 606 

+ po/be@latin.gmo,  346, 1032, 964, 0, 0, 0, 0, 346, 1032 

+ po/am.gmo,  23, 51, 50, 0, 0, 0, 0, 23, 51 

+ po/si.gmo,  60, 84, 124, 0, 0, 0, 0, 60, 84 

+ po/pl.po,  74, 351, 315, 0, 0, 0, 0, 74, 351 

+ po/as.po,  104, 452, 437, 0, 0, 0, 0, 104, 452 

+ po/ast.po,  115, 488, 512, 0, 0, 0, 0, 115, 488 

+ po/ms.gmo,  73, 172, 170, 0, 0, 0, 0, 73, 172 

+ po/br.gmo,  100, 176, 215, 0, 0, 0, 0, 100, 176 

+ po/ps.gmo,  156, 268, 307, 0, 0, 0, 0, 156, 268 

+ po/sr@latin.po,  104, 448, 390, 0, 0, 0, 0, 104, 448 

+ po/th.po,  122, 507, 190, 0, 0, 0, 0, 122, 507 

+ po/eu.gmo,  73, 348, 307, 0, 0, 0, 0, 73, 348 

+ po/fa.gmo,  73, 348, 332, 0, 0, 0, 0, 73, 348 

+ po/is.gmo,  70, 293, 278, 0, 0, 0, 0, 70, 293 

+ po/nb.gmo,  73, 348, 316, 0, 0, 0, 0, 73, 348 

+ po/id.gmo,  74, 351, 319, 0, 0, 0, 0, 74, 351 

+ po/kn.gmo,  104, 452, 374, 0, 0, 0, 0, 104, 452 

+ po/be.po,  104, 448, 358, 0, 0, 0, 0, 104, 448 

+ po/da.gmo,  74, 351, 304, 0, 0, 0, 0, 74, 351 

+ po/de.gmo,  74, 351, 344, 0, 0, 0, 0, 74, 351 

+ po/ks.gmo,  212, 753, 787, 0, 0, 0, 0, 212, 753 

+ po/mg.gmo,  235, 941, 953, 0, 0, 0, 0, 235, 941 

+ po/nds.po,  160, 316, 294, 0, 0, 0, 0, 160, 316 

+ po/nds.gmo,  160, 316, 294, 0, 0, 0, 0, 160, 316 

+ po/rw.po,  20, 26, 29, 83, 481, 48, 90, 151, 597 

+ po/oc.gmo,  103, 442, 498, 0, 0, 0, 0, 103, 442 

+ po/ky.gmo,  121, 506, 405, 0, 0, 0, 0, 121, 506 

+ po/uk.po,  104, 448, 366, 0, 0, 0, 0, 104, 448 

+ po/bn.gmo,  357, 1094, 1162, 0, 0, 0, 0, 357, 1094 

+ po/bg.po,  67, 284, 289, 0, 0, 0, 0, 67, 284 

+ po/id.po,  74, 351, 319, 0, 0, 0, 0, 74, 351 

+ po/mk.gmo,  119, 502, 521, 0, 0, 0, 0, 119, 502 

+ po/sr.po,  74, 351, 321, 0, 0, 0, 0, 74, 351 

+ po/an.gmo,  104, 448, 495, 0, 0, 0, 0, 104, 448 

+ po/kn.po,  104, 452, 374, 0, 0, 0, 0, 104, 452 

+ po/sv.gmo,  74, 351, 317, 0, 0, 0, 0, 74, 351 

+ po/oc.po,  103, 442, 499, 0, 0, 1, 6, 104, 448 

+ po/ne.gmo,  67, 284, 269, 0, 0, 0, 0, 67, 284 

+ po/tg.gmo,  104, 448, 436, 0, 0, 0, 0, 104, 448 

+ po/or.gmo,  104, 452, 418, 0, 0, 0, 0, 104, 452 

+ po/rw.gmo,  20, 26, 29, 0, 0, 0, 0, 20, 26 

+ po/kk.gmo,  48, 98, 96, 0, 0, 0, 0, 48, 98 

+ po/el.po,  74, 351, 358, 0, 0, 0, 0, 74, 351 

@@ -0,0 +1,13 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

@@ -0,0 +1,180 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/he.po,  59, 81, 88, 0, 0, 0, 0, 59, 81 

+ po/gu.gmo,  99, 249, 255, 0, 0, 0, 0, 99, 249 

+ po/uz.gmo,  17, 19, 20, 0, 0, 0, 0, 17, 19 

+ po/hu.gmo,  64, 88, 78, 0, 0, 0, 0, 64, 88 

+ po/ast.gmo,  52, 70, 76, 0, 0, 0, 0, 52, 70 

+ po/ga.gmo,  99, 249, 275, 0, 0, 0, 0, 99, 249 

+ po/bn_IN.po,  99, 249, 249, 0, 0, 0, 0, 99, 249 

+ po/ar.gmo,  58, 80, 79, 0, 0, 0, 0, 58, 80 

+ po/pt_BR.gmo,  64, 88, 90, 0, 0, 0, 0, 64, 88 

+ po/de.po,  64, 88, 89, 0, 0, 0, 0, 64, 88 

+ po/uz.po,  17, 19, 20, 0, 0, 75, 219, 92, 238 

+ po/ka.po,  80, 213, 205, 0, 0, 0, 0, 80, 213 

+ po/ca@valencia.gmo,  59, 81, 91, 0, 0, 0, 0, 59, 81 

+ po/ml.gmo,  62, 85, 78, 0, 0, 0, 0, 62, 85 

+ po/lv.po,  62, 85, 75, 0, 0, 0, 0, 62, 85 

+ po/zh_TW.po,  62, 85, 58, 0, 0, 0, 0, 62, 85 

+ po/en_GB.gmo,  59, 81, 81, 0, 0, 0, 0, 59, 81 

+ po/zh_CN.gmo,  62, 85, 57, 0, 0, 0, 0, 62, 85 

+ po/fur.po,  62, 85, 87, 0, 0, 0, 0, 62, 85 

+ po/pt_BR.po,  64, 88, 90, 0, 0, 0, 0, 64, 88 

+ po/is.po,  62, 85, 83, 0, 0, 0, 0, 62, 85 

+ po/af.po,  59, 81, 84, 0, 0, 0, 0, 59, 81 

+ po/gd.gmo,  59, 81, 96, 0, 0, 0, 0, 59, 81 

+ po/ro.gmo,  62, 85, 87, 0, 0, 0, 0, 62, 85 

+ po/ta.po,  59, 81, 79, 0, 0, 0, 0, 59, 81 

+ po/eo.gmo,  59, 81, 81, 0, 0, 0, 0, 59, 81 

+ po/ru.po,  64, 88, 85, 0, 0, 0, 0, 64, 88 

+ po/ml.po,  62, 85, 78, 0, 0, 0, 0, 62, 85 

+ po/ar.po,  58, 80, 79, 0, 0, 0, 0, 58, 80 

+ po/sr@latin.gmo,  59, 81, 74, 0, 0, 0, 0, 59, 81 

+ po/km.gmo,  56, 78, 62, 0, 0, 0, 0, 56, 78 

+ po/nl.po,  62, 85, 85, 0, 0, 0, 0, 62, 85 

+ po/cs.gmo,  62, 85, 80, 0, 0, 0, 0, 62, 85 

+ po/te.po,  58, 80, 74, 0, 0, 0, 0, 58, 80 

+ po/en@shaw.po,  33, 41, 41, 0, 0, 0, 0, 33, 41 

+ po/km.po,  56, 78, 62, 0, 0, 1, 0, 57, 78 

+ po/sq.po,  92, 238, 242, 0, 0, 0, 0, 92, 238 

+ po/he.gmo,  59, 81, 88, 0, 0, 0, 0, 59, 81 

+ po/fur.gmo,  62, 85, 87, 0, 0, 0, 0, 62, 85 

+ po/uz@cyrillic.po,  17, 19, 20, 0, 0, 75, 219, 92, 238 

+ po/ca.po,  64, 88, 98, 0, 0, 0, 0, 64, 88 

+ po/ka.gmo,  80, 213, 205, 0, 0, 0, 0, 80, 213 

+ po/pt.po,  59, 81, 87, 0, 0, 0, 0, 59, 81 

+ po/zh_CN.po,  62, 85, 57, 0, 0, 0, 0, 62, 85 

+ po/it.gmo,  64, 88, 93, 0, 0, 0, 0, 64, 88 

+ po/hr.gmo,  62, 85, 80, 0, 0, 0, 0, 62, 85 

+ po/fa.po,  59, 81, 87, 0, 0, 0, 0, 59, 81 

+ po/nb.po,  59, 81, 78, 0, 0, 0, 0, 59, 81 

+ po/el.gmo,  62, 85, 91, 0, 0, 0, 0, 62, 85 

+ po/hi.po,  59, 81, 92, 0, 0, 0, 0, 59, 81 

+ po/ga.po,  99, 249, 275, 0, 0, 0, 0, 99, 249 

+ po/th.gmo,  58, 80, 56, 0, 0, 0, 0, 58, 80 

+ po/en_CA.po,  92, 238, 238, 0, 0, 0, 0, 92, 238 

+ po/da.po,  62, 85, 83, 0, 0, 0, 0, 62, 85 

+ po/mn.gmo,  80, 213, 224, 0, 0, 0, 0, 80, 213 

+ po/gl.po,  62, 85, 88, 0, 0, 0, 0, 62, 85 

+ po/as.gmo,  59, 81, 81, 0, 0, 0, 0, 59, 81 

+ po/dz.gmo,  92, 238, 170, 0, 0, 0, 0, 92, 238 

+ po/mg.po,  80, 213, 124, 0, 0, 0, 0, 80, 213 

+ po/sk.po,  59, 81, 82, 0, 0, 0, 0, 59, 81 

+ po/zh_HK.gmo,  59, 81, 55, 0, 0, 0, 0, 59, 81 

+ po/mr.gmo,  99, 249, 248, 0, 0, 0, 0, 99, 249 

+ po/fi.po,  62, 85, 73, 0, 0, 0, 0, 62, 85 

+ po/be@latin.po,  92, 238, 239, 0, 0, 0, 0, 92, 238 

+ po/bs.gmo,  59, 81, 75, 0, 0, 0, 0, 59, 81 

+ po/si.po,  25, 26, 27, 0, 0, 32, 54, 57, 80 

+ po/mai.po,  83, 216, 216, 0, 0, 16, 33, 99, 249 

+ po/bg.gmo,  59, 81, 82, 0, 0, 0, 0, 59, 81 

+ po/en_GB.po,  59, 81, 81, 0, 0, 0, 0, 59, 81 

+ po/cs.po,  62, 85, 80, 0, 0, 0, 0, 62, 85 

+ po/nn.po,  92, 238, 228, 0, 0, 0, 0, 92, 238 

+ po/af.gmo,  59, 81, 84, 0, 0, 0, 0, 59, 81 

+ po/sk.gmo,  59, 81, 82, 0, 0, 0, 0, 59, 81 

+ po/or.po,  99, 249, 254, 0, 0, 0, 0, 99, 249 

+ po/bn.po,  80, 213, 215, 0, 0, 0, 0, 80, 213 

+ po/ja.gmo,  59, 81, 55, 0, 0, 0, 0, 59, 81 

+ po/zh_HK.po,  59, 81, 55, 0, 0, 0, 0, 59, 81 

+ po/ro.po,  62, 85, 87, 0, 0, 0, 0, 62, 85 

+ po/pl.gmo,  64, 88, 85, 0, 0, 0, 0, 64, 88 

+ po/hi.gmo,  59, 81, 92, 0, 0, 0, 0, 59, 81 

+ po/cy.gmo,  80, 213, 214, 0, 0, 0, 0, 80, 213 

+ po/be.gmo,  62, 85, 79, 0, 0, 0, 0, 62, 85 

+ po/vi.po,  59, 81, 111, 0, 0, 0, 0, 59, 81 

+ po/es.gmo,  64, 88, 93, 0, 0, 0, 0, 64, 88 

+ po/gd.po,  59, 81, 96, 0, 0, 0, 0, 59, 81 

+ po/lv.gmo,  62, 85, 75, 0, 0, 0, 0, 62, 85 

+ po/es.po,  64, 88, 93, 0, 0, 0, 0, 64, 88 

+ po/it.po,  64, 88, 93, 0, 0, 0, 0, 64, 88 

+ po/fi.gmo,  62, 85, 73, 0, 0, 0, 0, 62, 85 

+ po/ca.gmo,  64, 88, 98, 0, 0, 0, 0, 64, 88 

+ po/tg.po,  59, 81, 85, 0, 0, 0, 0, 59, 81 

+ po/hu.po,  64, 88, 78, 0, 0, 0, 0, 64, 88 

+ po/hr.po,  62, 85, 80, 0, 0, 0, 0, 62, 85 

+ po/sl.gmo,  62, 85, 91, 0, 0, 0, 0, 62, 85 

+ po/tr.po,  62, 85, 81, 0, 0, 0, 0, 62, 85 

+ po/ug.po,  59, 81, 89, 0, 0, 0, 0, 59, 81 

+ po/et.gmo,  59, 81, 68, 0, 0, 0, 0, 59, 81 

+ po/pa.gmo,  59, 81, 83, 0, 0, 0, 0, 59, 81 

+ po/fr.gmo,  64, 88, 95, 0, 0, 0, 0, 64, 88 

+ po/zh_TW.gmo,  62, 85, 58, 0, 0, 0, 0, 62, 85 

+ po/wa.po,  16, 19, 24, 1, 3, 57, 177, 74, 199 

+ po/nn.gmo,  92, 238, 228, 0, 0, 0, 0, 92, 238 

+ po/ca@valencia.po,  59, 81, 91, 0, 0, 0, 0, 59, 81 

+ po/bn_IN.gmo,  99, 249, 249, 0, 0, 0, 0, 99, 249 

+ po/ky.po,  56, 78, 80, 2, 2, 0, 0, 58, 80 

+ po/uk.gmo,  58, 80, 79, 0, 0, 0, 0, 58, 80 

+ po/mai.gmo,  83, 216, 216, 0, 0, 0, 0, 83, 216 

+ po/ja.po,  59, 81, 55, 0, 0, 0, 0, 59, 81 

+ po/pa.po,  59, 81, 83, 0, 0, 0, 0, 59, 81 

+ po/nl.gmo,  62, 85, 85, 0, 0, 0, 0, 62, 85 

+ po/pt.gmo,  59, 81, 87, 0, 0, 0, 0, 59, 81 

+ po/ko.gmo,  62, 85, 82, 0, 0, 0, 0, 62, 85 

+ po/eo.po,  59, 81, 81, 0, 0, 0, 0, 59, 81 

+ po/eu.po,  64, 88, 82, 0, 0, 0, 0, 64, 88 

+ po/mk.po,  92, 238, 242, 0, 0, 0, 0, 92, 238 

+ po/lt.po,  64, 88, 80, 0, 0, 0, 0, 64, 88 

+ po/lt.gmo,  64, 88, 80, 0, 0, 0, 0, 64, 88 

+ po/uz@cyrillic.gmo,  17, 19, 20, 0, 0, 0, 0, 17, 19 

+ po/mr.po,  99, 249, 248, 0, 0, 0, 0, 99, 249 

+ po/sq.gmo,  92, 238, 242, 0, 0, 0, 0, 92, 238 

+ po/gl.gmo,  62, 85, 88, 0, 0, 0, 0, 62, 85 

+ po/en@shaw.gmo,  33, 41, 41, 0, 0, 0, 0, 33, 41 

+ po/sr.gmo,  62, 85, 78, 0, 0, 0, 0, 62, 85 

+ po/gu.po,  99, 249, 255, 0, 0, 0, 0, 99, 249 

+ po/en_CA.gmo,  92, 238, 238, 0, 0, 0, 0, 92, 238 

+ po/dz.po,  92, 238, 170, 0, 0, 0, 0, 92, 238 

+ po/wa.gmo,  16, 19, 24, 0, 0, 0, 0, 16, 19 

+ po/tr.gmo,  62, 85, 81, 0, 0, 0, 0, 62, 85 

+ po/te.gmo,  58, 80, 74, 0, 0, 0, 0, 58, 80 

+ po/ug.gmo,  59, 81, 89, 0, 0, 0, 0, 59, 81 

+ po/fr.po,  64, 88, 95, 0, 0, 0, 0, 64, 88 

+ po/yelp-xsl.pot,  0, 0, 0, 0, 0, 64, 88, 64, 88 

+ po/ta.gmo,  59, 81, 79, 0, 0, 0, 0, 59, 81 

+ po/kk.po,  42, 51, 52, 0, 0, 17, 30, 59, 81 

+ po/ko.po,  62, 85, 82, 0, 0, 0, 0, 62, 85 

+ po/bs.po,  59, 81, 75, 0, 0, 0, 0, 59, 81 

+ po/sl.po,  62, 85, 91, 0, 0, 0, 0, 62, 85 

+ po/cy.po,  80, 213, 214, 0, 0, 0, 0, 80, 213 

+ po/ru.gmo,  64, 88, 85, 0, 0, 0, 0, 64, 88 

+ po/mn.po,  80, 213, 224, 0, 0, 0, 0, 80, 213 

+ po/vi.gmo,  59, 81, 111, 0, 0, 0, 0, 59, 81 

+ po/ne.po,  55, 70, 64, 1, 3, 3, 8, 59, 81 

+ po/sv.po,  62, 85, 84, 0, 0, 0, 0, 62, 85 

+ po/et.po,  59, 81, 68, 0, 0, 0, 0, 59, 81 

+ po/be@latin.gmo,  92, 238, 239, 0, 0, 0, 0, 92, 238 

+ po/si.gmo,  25, 26, 27, 0, 0, 0, 0, 25, 26 

+ po/pl.po,  64, 88, 85, 0, 0, 0, 0, 64, 88 

+ po/as.po,  59, 81, 81, 0, 0, 0, 0, 59, 81 

+ po/ast.po,  52, 70, 76, 0, 0, 0, 0, 52, 70 

+ po/sr@latin.po,  59, 81, 74, 0, 0, 0, 0, 59, 81 

+ po/th.po,  58, 80, 56, 0, 0, 0, 0, 58, 80 

+ po/eu.gmo,  64, 88, 82, 0, 0, 0, 0, 64, 88 

+ po/fa.gmo,  59, 81, 87, 0, 0, 0, 0, 59, 81 

+ po/is.gmo,  62, 85, 83, 0, 0, 0, 0, 62, 85 

+ po/nb.gmo,  59, 81, 78, 0, 0, 0, 0, 59, 81 

+ po/id.gmo,  64, 88, 89, 0, 0, 0, 0, 64, 88 

+ po/kn.gmo,  58, 80, 79, 0, 0, 0, 0, 58, 80 

+ po/be.po,  62, 85, 79, 0, 0, 0, 0, 62, 85 

+ po/da.gmo,  62, 85, 83, 0, 0, 0, 0, 62, 85 

+ po/de.gmo,  64, 88, 89, 0, 0, 0, 0, 64, 88 

+ po/mg.gmo,  80, 213, 124, 0, 0, 0, 0, 80, 213 

+ po/rw.po,  6, 6, 6, 8, 18, 60, 175, 74, 199 

+ po/oc.gmo,  59, 81, 91, 0, 0, 0, 0, 59, 81 

+ po/ky.gmo,  56, 78, 80, 0, 0, 0, 0, 56, 78 

+ po/uk.po,  58, 80, 79, 0, 0, 0, 0, 58, 80 

+ po/bn.gmo,  80, 213, 215, 0, 0, 0, 0, 80, 213 

+ po/bg.po,  59, 81, 82, 0, 0, 0, 0, 59, 81 

+ po/id.po,  64, 88, 89, 0, 0, 0, 0, 64, 88 

+ po/mk.gmo,  92, 238, 242, 0, 0, 0, 0, 92, 238 

+ po/sr.po,  62, 85, 78, 0, 0, 0, 0, 62, 85 

+ po/kn.po,  58, 80, 79, 0, 0, 0, 0, 58, 80 

+ po/sv.gmo,  62, 85, 84, 0, 0, 0, 0, 62, 85 

+ po/oc.po,  59, 81, 91, 0, 0, 0, 0, 59, 81 

+ po/ne.gmo,  55, 70, 64, 0, 0, 0, 0, 55, 70 

+ po/tg.gmo,  59, 81, 85, 0, 0, 0, 0, 59, 81 

+ po/or.gmo,  99, 249, 254, 0, 0, 0, 0, 99, 249 

+ po/rw.gmo,  6, 6, 6, 0, 0, 0, 0, 6, 6 

+ po/kk.gmo,  42, 51, 52, 0, 0, 0, 0, 42, 51 

+ po/el.po,  62, 85, 91, 0, 0, 0, 0, 62, 85 

@@ -0,0 +1,704 @@ 

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/uk.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/uk/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/Makefile.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/da.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/da/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-scale-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-password-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-forms-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-colorselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/ja.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ja/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/de.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/de/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/ca.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ca/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-notification-listen-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-scale-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-password-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-forms-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-colorselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/sv.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sv/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/Makefile.am)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-notification-listen-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-scale-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-password-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-forms-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-colorselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/pt_BR.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pt_BR/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/zh_CN.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/zh_CN/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/gl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/gl/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-notification-listen-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-scale-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-password-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-forms-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-colorselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fr/fr.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-scale-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/ru.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ru/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/es.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/es/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/oc/oc.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/hu.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/hu/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-notification-listen-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-scale-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-password-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-forms-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-colorselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/C/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-notification-listen-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-scale-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-password-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-forms-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-colorselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/pl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/pl/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/en_GB.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/en_GB/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/fi.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/fi/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/sl/sl.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/el.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/el/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/cs.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/cs/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/eu.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/eu/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/ChangeLog)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/scale.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/notification.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/intro.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/text.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/forms.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-calendar-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-list-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-fileselection-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-entry-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-text-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-information-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-notification-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-error-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-question-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-progress-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/figures/zenity-warning-screenshot.png)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/file-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/password.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/progress.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/bg.stamp)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/warning.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/entry.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/info.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/question.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/calendar.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/message.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/legal.xml)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/index.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/usage.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/error.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/color-selection.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./help/bg/list.page)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/remove-potcdate.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/quot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/LINGUAS)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/insert-header.sin)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/boldquot.sed)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/POTFILES.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/stamp-po)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Rules-quot)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makefile.in.in)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@boldquot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/Makevars)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/en@quot.header)

+ translate.tools.pocount: ERROR: Unknown filetype (./po/ChangeLog)

@@ -0,0 +1,205 @@ 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ help/uk/uk.po,  259, 2379, 1960, 0, 0, 0, 0, 259, 2379 

+ help/da/da.po,  347, 2992, 2576, 0, 0, 0, 0, 347, 2992 

+ help/ja/ja.po,  339, 2899, 1208, 0, 0, 0, 0, 339, 2899 

+ help/de/de.po,  342, 2972, 2902, 5, 20, 0, 0, 347, 2992 

+ help/ca/ca.po,  259, 2379, 2602, 0, 0, 0, 0, 259, 2379 

+ help/sv/sv.po,  347, 2992, 2578, 0, 0, 0, 0, 347, 2992 

+ help/pt_BR/pt_BR.po,  347, 2992, 3400, 0, 0, 0, 0, 347, 2992 

+ help/zh_CN/zh_CN.po,  338, 2855, 805, 1, 44, 0, 0, 339, 2899 

+ help/gl/gl.po,  325, 2650, 2928, 0, 0, 14, 249, 339, 2899 

+ help/fr/fr.po,  347, 2992, 3503, 0, 0, 0, 0, 347, 2992 

+ help/ru/ru.po,  259, 2379, 2133, 0, 0, 0, 0, 259, 2379 

+ help/es/es.po,  347, 2992, 3444, 0, 0, 0, 0, 347, 2992 

+ help/oc/oc.po,  98, 234, 254, 0, 0, 155, 2091, 253, 2325 

+ help/hu/hu.po,  347, 2992, 2568, 0, 0, 0, 0, 347, 2992 

+ help/pl/pl.po,  347, 2992, 2588, 0, 0, 0, 0, 347, 2992 

+ help/en_GB/en_GB.po,  257, 2349, 2359, 0, 0, 0, 0, 257, 2349 

+ help/fi/fi.po,  259, 2379, 1580, 0, 0, 0, 0, 259, 2379 

+ help/sl/sl.po,  35, 70, 70, 0, 0, 224, 2309, 259, 2379 

+ help/el/el.po,  347, 2992, 2998, 0, 0, 0, 0, 347, 2992 

+ help/cs/cs.po,  347, 2992, 2882, 0, 0, 0, 0, 347, 2992 

+ help/eu/eu.po,  253, 2325, 1920, 0, 0, 0, 0, 253, 2325 

+ help/bg/bg.po,  248, 2309, 2326, 0, 0, 0, 0, 248, 2309 

+ Filename, Translated Messages, Translated Source Words, Translated Target Words, Fuzzy Messages, Fuzzy Source Words, Untranslated Messages, Untranslated Source Words, Total Message, Total Source Words, Review Messages, Review Source Words

+ po/en_CA.gmo,  130, 559, 568, 0, 0, 0, 0, 130, 559 

+ po/ro.gmo,  199, 896, 1000, 0, 0, 0, 0, 199, 896 

+ po/hr.gmo,  199, 896, 823, 0, 0, 0, 0, 199, 896 

+ po/cy.po,  118, 427, 467, 0, 0, 0, 0, 118, 427 

+ po/bn_IN.gmo,  159, 674, 846, 0, 0, 0, 0, 159, 674 

+ po/ast.gmo,  142, 612, 699, 0, 0, 0, 0, 142, 612 

+ po/ru.po,  196, 891, 865, 0, 0, 0, 0, 196, 891 

+ po/mn.po,  80, 256, 227, 21, 71, 11, 67, 112, 394 

+ po/ku.gmo,  18, 20, 20, 0, 0, 0, 0, 18, 20 

+ po/ka.gmo,  116, 421, 317, 0, 0, 0, 0, 116, 421 

+ po/am.gmo,  34, 70, 70, 0, 0, 0, 0, 34, 70 

+ po/nb.po,  196, 891, 847, 0, 0, 0, 0, 196, 891 

+ po/fa.gmo,  178, 775, 803, 0, 0, 0, 0, 178, 775 

+ po/zh_HK.gmo,  187, 841, 251, 0, 0, 0, 0, 187, 841 

+ po/mg.gmo,  120, 541, 643, 0, 0, 0, 0, 120, 541 

+ po/xh.gmo,  107, 359, 327, 0, 0, 0, 0, 107, 359 

+ po/bn.po,  136, 592, 667, 0, 0, 0, 0, 136, 592 

+ po/zh_CN.po,  199, 896, 255, 0, 0, 0, 0, 199, 896 

+ po/nl.gmo,  199, 896, 842, 0, 0, 0, 0, 199, 896 

+ po/af.po,  27, 88, 82, 0, 0, 134, 598, 161, 686 

+ po/az.po,  82, 272, 251, 20, 70, 10, 52, 112, 394 

+ po/en_CA.po,  130, 559, 568, 0, 0, 0, 0, 130, 559 

+ po/pl.po,  199, 896, 923, 0, 0, 0, 0, 199, 896 

+ po/ps.po,  82, 210, 217, 0, 0, 53, 372, 135, 582 

+ po/nn.po,  159, 674, 613, 0, 0, 0, 0, 159, 674 

+ po/ml.gmo,  199, 896, 783, 0, 0, 0, 0, 199, 896 

+ po/be.gmo,  199, 896, 861, 0, 0, 0, 0, 199, 896 

+ po/sr@latin.po,  199, 896, 879, 0, 0, 0, 0, 199, 896 

+ po/cy.gmo,  118, 427, 467, 0, 0, 0, 0, 118, 427 

+ po/hi.gmo,  171, 742, 833, 0, 0, 0, 0, 171, 742 

+ po/gl.po,  199, 896, 1130, 0, 0, 0, 0, 199, 896 

+ po/be.po,  199, 896, 861, 0, 0, 0, 0, 199, 896 

+ po/cs.po,  199, 896, 869, 0, 0, 0, 0, 199, 896 

+ po/es.gmo,  199, 896, 1155, 0, 0, 0, 0, 199, 896 

+ po/he.po,  175, 834, 839, 0, 0, 0, 0, 175, 834 

+ po/kk.po,  80, 335, 296, 0, 0, 116, 556, 196, 891 

+ po/ta.gmo,  178, 775, 644, 0, 0, 0, 0, 178, 775 

+ po/it.po,  199, 896, 1076, 0, 0, 0, 0, 199, 896 

+ po/lt.po,  199, 896, 790, 0, 0, 0, 0, 199, 896 

+ po/sq.gmo,  135, 582, 701, 0, 0, 0, 0, 135, 582 

+ po/hu.po,  199, 896, 837, 0, 0, 0, 0, 199, 896 

+ po/vi.po,  175, 834, 1197, 0, 0, 0, 0, 175, 834 

+ po/zh_TW.gmo,  199, 896, 272, 0, 0, 0, 0, 199, 896 

+ po/tg.gmo,  36, 76, 86, 0, 0, 0, 0, 36, 76 

+ po/as.po,  187, 841, 870, 0, 0, 0, 0, 187, 841 

+ po/fr.gmo,  199, 896, 1245, 0, 0, 0, 0, 199, 896 

+ po/nl.po,  199, 896, 842, 0, 0, 0, 0, 199, 896 

+ po/ca@valencia.po,  196, 891, 1144, 0, 0, 0, 0, 196, 891 

+ po/bn_IN.po,  159, 674, 846, 0, 0, 0, 0, 159, 674 

+ po/be@latin.po,  135, 582, 541, 0, 0, 0, 0, 135, 582 

+ po/ar.po,  159, 674, 658, 0, 0, 0, 0, 159, 674 

+ po/ja.gmo,  171, 823, 260, 0, 0, 0, 0, 171, 823 

+ po/ug.po,  178, 775, 712, 0, 0, 0, 0, 178, 775 

+ po/si.gmo,  130, 559, 586, 0, 0, 0, 0, 130, 559 

+ po/th.gmo,  196, 891, 322, 0, 0, 0, 0, 196, 891 

+ po/is.gmo,  55, 139, 119, 0, 0, 0, 0, 55, 139 

+ po/nb.gmo,  196, 891, 847, 0, 0, 0, 0, 196, 891 

+ po/eu.po,  199, 896, 756, 0, 0, 0, 0, 199, 896 

+ po/sr.po,  199, 896, 879, 0, 0, 0, 0, 199, 896 

+ po/ca.gmo,  196, 891, 1145, 0, 0, 0, 0, 196, 891 

+ po/uk.po,  174, 751, 685, 0, 0, 0, 0, 174, 751 

+ po/xh.po,  107, 359, 327, 1, 6, 4, 29, 112, 394 

+ po/fi.po,  167, 680, 531, 23, 144, 9, 72, 199, 896 

+ po/es.po,  199, 896, 1155, 0, 0, 0, 0, 199, 896 

+ po/ga.po,  89, 329, 345, 0, 0, 47, 260, 136, 589 

+ po/nn.gmo,  159, 674, 613, 0, 0, 0, 0, 159, 674 

+ po/sl.gmo,  199, 896, 885, 0, 0, 0, 0, 199, 896 

+ po/de.gmo,  199, 896, 835, 0, 0, 0, 0, 199, 896 

+ po/sv.po,  199, 896, 805, 0, 0, 0, 0, 199, 896 

+ po/mi.po,  0, 0, 0, 34, 99, 78, 295, 112, 394 

+ po/it.gmo,  199, 896, 1076, 0, 0, 0, 0, 199, 896 

+ po/ug.gmo,  178, 775, 712, 0, 0, 0, 0, 178, 775 

+ po/ar.gmo,  159, 674, 658, 0, 0, 0, 0, 159, 674 

+ po/as.gmo,  187, 841, 870, 0, 0, 0, 0, 187, 841 

+ po/bn.gmo,  136, 592, 667, 0, 0, 0, 0, 136, 592 

+ po/oc.gmo,  196, 891, 1212, 0, 0, 0, 0, 196, 891 

+ po/tg.po,  36, 76, 86, 0, 0, 142, 699, 178, 775 

+ po/rw.po,  9, 13, 12, 91, 341, 12, 40, 112, 394 

+ po/he.gmo,  175, 834, 839, 0, 0, 0, 0, 175, 834 

+ po/et.gmo,  180, 783, 639, 0, 0, 0, 0, 180, 783 

+ po/hi.po,  171, 742, 833, 0, 0, 0, 0, 171, 742 

+ po/oc.po,  196, 891, 1212, 0, 0, 0, 0, 196, 891 

+ po/bs.po,  190, 877, 846, 0, 0, 0, 0, 190, 877 

+ po/ne.gmo,  130, 559, 564, 0, 0, 0, 0, 130, 559 

+ po/eo.po,  198, 881, 787, 0, 0, 1, 15, 199, 896 

+ po/am.po,  34, 70, 70, 16, 50, 62, 274, 112, 394 

+ po/ka.po,  116, 421, 317, 0, 0, 4, 120, 120, 541 

+ po/eu.gmo,  199, 896, 756, 0, 0, 0, 0, 199, 896 

+ po/mr.po,  135, 582, 559, 0, 0, 0, 0, 135, 582 

+ po/af.gmo,  27, 88, 82, 0, 0, 0, 0, 27, 88 

+ po/id.po,  199, 896, 845, 0, 0, 0, 0, 199, 896 

+ po/el.po,  199, 896, 986, 0, 0, 0, 0, 199, 896 

+ po/lv.gmo,  199, 896, 789, 0, 0, 0, 0, 199, 896 

+ po/en_GB.po,  196, 891, 913, 0, 0, 0, 0, 196, 891 

+ po/pt.po,  196, 891, 1062, 0, 0, 0, 0, 196, 891 

+ po/mg.po,  120, 541, 643, 0, 0, 0, 0, 120, 541 

+ po/ms.gmo,  82, 272, 245, 0, 0, 0, 0, 82, 272 

+ po/kn.gmo,  135, 582, 535, 0, 0, 0, 0, 135, 582 

+ po/ga.gmo,  89, 329, 345, 0, 0, 0, 0, 89, 329 

+ po/fur.gmo,  199, 896, 1127, 0, 0, 0, 0, 199, 896 

+ po/uk.gmo,  174, 751, 685, 0, 0, 0, 0, 174, 751 

+ po/sk.po,  199, 896, 920, 0, 0, 0, 0, 199, 896 

+ po/ko.po,  199, 896, 803, 0, 0, 0, 0, 199, 896 

+ po/en@shaw.gmo,  142, 612, 613, 0, 0, 0, 0, 142, 612 

+ po/mai.gmo,  128, 551, 581, 0, 0, 0, 0, 128, 551 

+ po/ca@valencia.gmo,  196, 891, 1144, 0, 0, 0, 0, 196, 891 

+ po/si.po,  130, 559, 586, 0, 0, 0, 0, 130, 559 

+ po/bg.po,  174, 751, 942, 0, 0, 0, 0, 174, 751 

+ po/de.po,  199, 896, 835, 0, 0, 0, 0, 199, 896 

+ po/vi.gmo,  175, 834, 1197, 0, 0, 0, 0, 175, 834 

+ po/fur.po,  199, 896, 1127, 0, 0, 0, 0, 199, 896 

+ po/sr@latin.gmo,  199, 896, 879, 0, 0, 0, 0, 199, 896 

+ po/ast.po,  142, 612, 699, 0, 0, 0, 0, 142, 612 

+ po/or.gmo,  159, 674, 690, 0, 0, 0, 0, 159, 674 

+ po/ps.gmo,  82, 210, 217, 0, 0, 0, 0, 82, 210 

+ po/lv.po,  199, 896, 789, 0, 0, 0, 0, 199, 896 

+ po/pt.gmo,  196, 891, 1062, 0, 0, 0, 0, 196, 891 

+ po/pt_BR.gmo,  199, 896, 1119, 0, 0, 0, 0, 199, 896 

+ po/te.gmo,  171, 742, 640, 0, 0, 0, 0, 171, 742 

+ po/dz.po,  129, 554, 267, 0, 0, 0, 0, 129, 554 

+ po/sr.gmo,  199, 896, 879, 0, 0, 0, 0, 199, 896 

+ po/mr.gmo,  135, 582, 559, 0, 0, 0, 0, 135, 582 

+ po/el.gmo,  199, 896, 986, 0, 0, 0, 0, 199, 896 

+ po/da.gmo,  199, 896, 753, 0, 0, 0, 0, 199, 896 

+ po/pl.gmo,  199, 896, 923, 0, 0, 0, 0, 199, 896 

+ po/ru.gmo,  196, 891, 865, 0, 0, 0, 0, 196, 891 

+ po/kk.gmo,  80, 335, 296, 0, 0, 0, 0, 80, 335 

+ po/mai.po,  128, 551, 581, 0, 0, 6, 28, 134, 579 

+ po/or.po,  159, 674, 690, 0, 0, 0, 0, 159, 674 

+ po/bg.gmo,  174, 751, 942, 0, 0, 0, 0, 174, 751 

+ po/ta.po,  178, 775, 644, 0, 0, 0, 0, 178, 775 

+ po/mn.gmo,  80, 256, 227, 0, 0, 0, 0, 80, 256 

+ po/id.gmo,  199, 896, 845, 0, 0, 0, 0, 199, 896 

+ po/mi.gmo,  0, 0, 0, 0, 0, 0, 0, 0, 0 

+ po/hr.po,  199, 896, 823, 0, 0, 0, 0, 199, 896 

+ po/mk.po,  135, 582, 598, 0, 0, 0, 0, 135, 582 

+ po/fa.po,  178, 775, 803, 0, 0, 0, 0, 178, 775 

+ po/mk.gmo,  135, 582, 598, 0, 0, 0, 0, 135, 582 

+ po/ne.po,  130, 559, 564, 0, 0, 0, 0, 130, 559 

+ po/sv.gmo,  199, 896, 805, 0, 0, 0, 0, 199, 896 

+ po/lt.gmo,  199, 896, 790, 0, 0, 0, 0, 199, 896 

+ po/tr.po,  199, 896, 793, 0, 0, 0, 0, 199, 896 

+ po/zh_TW.po,  199, 896, 272, 0, 0, 0, 0, 199, 896 

+ po/pa.gmo,  174, 751, 802, 0, 0, 0, 0, 174, 751 

+ po/eo.gmo,  198, 881, 787, 0, 0, 0, 0, 198, 881 

+ po/en_GB.gmo,  196, 891, 913, 0, 0, 0, 0, 196, 891 

+ po/ro.po,  199, 896, 1000, 0, 0, 0, 0, 199, 896 

+ po/zh_HK.po,  187, 841, 251, 0, 0, 0, 0, 187, 841 

+ po/is.po,  55, 139, 119, 34, 125, 23, 130, 112, 394 

+ po/zh_CN.gmo,  199, 896, 255, 0, 0, 0, 0, 199, 896 

+ po/sq.po,  135, 582, 701, 0, 0, 0, 0, 135, 582 

+ po/fr.po,  199, 896, 1245, 0, 0, 0, 0, 199, 896 

+ po/sk.gmo,  199, 896, 920, 0, 0, 0, 0, 199, 896 

+ po/rw.gmo,  9, 13, 12, 0, 0, 0, 0, 9, 13 

+ po/tr.gmo,  199, 896, 793, 0, 0, 0, 0, 199, 896 

+ po/fi.gmo,  167, 680, 531, 0, 0, 0, 0, 167, 680 

+ po/sl.po,  199, 896, 885, 0, 0, 0, 0, 199, 896 

+ po/zenity.pot,  0, 0, 0, 0, 0, 199, 896, 199, 896 

+ po/ku.po,  18, 20, 20, 1, 4, 93, 370, 112, 394 

+ po/gu.po,  159, 674, 694, 0, 0, 0, 0, 159, 674 

+ po/be@latin.gmo,  135, 582, 541, 0, 0, 0, 0, 135, 582 

+ po/pa.po,  174, 751, 802, 0, 0, 0, 0, 174, 751 

+ po/gu.gmo,  159, 674, 694, 0, 0, 0, 0, 159, 674 

+ po/ja.po,  171, 823, 260, 2, 9, 2, 2, 175, 834 

+ po/az.gmo,  82, 272, 251, 0, 0, 0, 0, 82, 272 

+ po/gl.gmo,  199, 896, 1130, 0, 0, 0, 0, 199, 896 

+ po/ml.po,  199, 896, 783, 0, 0, 0, 0, 199, 896 

+ po/te.po,  171, 742, 640, 0, 0, 0, 0, 171, 742 

+ po/kn.po,  135, 582, 535, 0, 0, 0, 0, 135, 582 

+ po/et.po,  180, 783, 639, 0, 0, 0, 0, 180, 783 

+ po/bs.gmo,  190, 877, 846, 0, 0, 0, 0, 190, 877 

+ po/en@shaw.po,  142, 612, 613, 0, 0, 0, 0, 142, 612 

+ po/ko.gmo,  199, 896, 803, 0, 0, 0, 0, 199, 896 

+ po/da.po,  199, 896, 753, 0, 0, 0, 0, 199, 896 

+ po/th.po,  196, 891, 322, 0, 0, 0, 0, 196, 891 

+ po/ca.po,  196, 891, 1145, 0, 0, 0, 0, 196, 891 

+ po/hu.gmo,  199, 896, 837, 0, 0, 0, 0, 199, 896 

+ po/dz.gmo,  129, 554, 267, 0, 0, 0, 0, 129, 554 

+ po/ms.po,  82, 272, 245, 20, 70, 10, 52, 112, 394 

+ po/pt_BR.po,  199, 896, 1119, 0, 0, 0, 0, 199, 896 

+ po/cs.gmo,  199, 896, 869, 0, 0, 0, 0, 199, 896 

file modified

no initial comment

Pull-Request has been merged by jibecfed

4 years ago
Metadata
Changes Summary 541
+5 -2
file changed
README.md
+41 -31
file changed
build.py
+4 -3
file changed
build_map.py
+4 -3
file changed
build_stats.py
+8
file added
download-f31-srpm-in-container.sh
+1619
file added
fedora-31-workstation-live-packages
+7
file added
get_f31_srpm.sh
+0 -0
file changed
nb_lang.png
+2 -0
file changed
requirements.txt
+1
file added
results/f31/0.error.lang with point.csv
+10
file added
results/f31/0.error.language not in cldr.csv
+1
file added
results/f31/0.error.languages is numeric.csv
+27
file added
results/f31/0.error.len(language)>3.csv
+2
file added
results/f31/0.error.len(territory)>2.csv
+47
file added
results/f31/0.error.no population for this language-territory couple.csv
+240
file added
results/f31/1.debug.lang.csv
+193
file added
results/f31/1.debug.language.csv
+17
file added
results/f31/1.debug.script.csv
+46
file added
results/f31/1.debug.territory.csv
+46
file added
results/f31/1.debug.total message = 0.csv
+15270
file added
results/f31/3.result.csv
+337
file added
results/f31/4.0.cldr.csv
+110
file added
results/f31/4.1.results_per_language.csv
+110
file added
results/f31/4.1.results_per_language_ISO3.csv
+337
file added
results/f31/4.2.cldr_and_results_full.csv
+206
file added
results/f31/4.3.cldr_and_results_grouped.csv
+256
file added
results/f31/4.4.world_stats.csv
+5
file added
results/f31/GConf2-3.2.6-27.fc31.src.rpm.errors.txt
+87
file added
results/f31/GConf2-3.2.6-27.fc31.src.rpm.stats.csv
+12
file added
results/f31/ModemManager-1.10.6-2.fc31.src.rpm.errors.txt
+28
file added
results/f31/ModemManager-1.10.6-2.fc31.src.rpm.stats.csv
+6
file added
results/f31/NetworkManager-1.20.4-1.fc31.src.rpm.errors.txt
+67
file added
results/f31/NetworkManager-1.20.4-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/NetworkManager-openconnect-1.2.6-2.fc31.src.rpm.errors.txt
+54
file added
results/f31/NetworkManager-openconnect-1.2.6-2.fc31.src.rpm.stats.csv
+4
file added
results/f31/NetworkManager-openvpn-1.8.10-1.fc31.1.src.rpm.errors.txt
+60
file added
results/f31/NetworkManager-openvpn-1.8.10-1.fc31.1.src.rpm.stats.csv
+4
file added
results/f31/NetworkManager-pptp-1.2.8-1.fc31.2.src.rpm.errors.txt
+60
file added
results/f31/NetworkManager-pptp-1.2.8-1.fc31.2.src.rpm.stats.csv
+5
file added
results/f31/NetworkManager-ssh-1.2.10-2.fc31.src.rpm.errors.txt
+53
file added
results/f31/NetworkManager-ssh-1.2.10-2.fc31.src.rpm.stats.csv
+5
file added
results/f31/NetworkManager-vpnc-1.2.6-3.fc31.src.rpm.errors.txt
+60
file added
results/f31/NetworkManager-vpnc-1.2.6-3.fc31.src.rpm.stats.csv
+4
file added
results/f31/PackageKit-1.1.12-11.fc31.src.rpm.errors.txt
+70
file added
results/f31/PackageKit-1.1.12-11.fc31.src.rpm.stats.csv
+20734
file added
results/f31/_concat.csv
+111
file added
results/f31/_srpm.errors.txt
+1435
file added
results/f31/_srpm.out.txt
+4
file added
results/f31/abattis-cantarell-fonts-0.111-3.fc31.src.rpm.errors.txt
+34
file added
results/f31/abattis-cantarell-fonts-0.111-3.fc31.src.rpm.stats.csv
+6
file added
results/f31/abrt-2.12.2-1.fc31.src.rpm.errors.txt
+108
file added
results/f31/abrt-2.12.2-1.fc31.src.rpm.stats.csv
+10
file added
results/f31/accountsservice-0.6.55-1.fc31.src.rpm.errors.txt
+76
file added
results/f31/accountsservice-0.6.55-1.fc31.src.rpm.stats.csv
+15
file added
results/f31/acl-2.2.53-4.fc31.src.rpm.errors.txt
+15
file added
results/f31/acl-2.2.53-4.fc31.src.rpm.stats.csv
+13
file added
results/f31/alsa-utils-1.1.9-2.fc31.src.rpm.errors.txt
+11
file added
results/f31/alsa-utils-1.1.9-2.fc31.src.rpm.stats.csv
+2
file added
results/f31/anaconda-31.22.6-2.fc31.src.rpm.errors.txt
+100
file added
results/f31/anaconda-31.22.6-2.fc31.src.rpm.stats.csv
+3
file added
results/f31/at-spi2-core-2.34.0-1.fc31.src.rpm.errors.txt
+72
file added
results/f31/at-spi2-core-2.34.0-1.fc31.src.rpm.stats.csv
+5
file added
results/f31/atk-2.34.1-1.fc31.src.rpm.errors.txt
+100
file added
results/f31/atk-2.34.1-1.fc31.src.rpm.stats.csv
+15
file added
results/f31/attr-2.4.48-7.fc31.src.rpm.errors.txt
+19
file added
results/f31/attr-2.4.48-7.fc31.src.rpm.stats.csv
+6
file added
results/f31/authselect-1.1-2.fc31.src.rpm.errors.txt
+22
file added
results/f31/authselect-1.1-2.fc31.src.rpm.stats.csv
+5
file added
results/f31/avahi-0.7-20.fc31.src.rpm.errors.txt
+44
file added
results/f31/avahi-0.7-20.fc31.src.rpm.stats.csv
+1
file added
results/f31/b43-fwcutter-019-16.fc31.src.rpm.errors.txt
+14
file added
results/f31/b43-fwcutter-019-16.fc31.src.rpm.stats.csv
+19
file added
results/f31/baobab-3.34.0-1.fc31.src.rpm.errors.txt
+120
file added
results/f31/baobab-3.34.0-1.fc31.src.rpm.stats.csv
+16
file added
results/f31/bash-5.0.7-3.fc31.src.rpm.errors.txt
+75
file added
results/f31/bash-5.0.7-3.fc31.src.rpm.stats.csv
+29
file added
results/f31/binutils-2.32-24.fc31.src.rpm.errors.txt
+239
file added
results/f31/binutils-2.32-24.fc31.src.rpm.stats.csv
+1
file added
results/f31/blivet-gui-2.1.11-2.fc31.src.rpm.errors.txt
+73
file added
results/f31/blivet-gui-2.1.11-2.fc31.src.rpm.stats.csv
+4
file added
results/f31/boost-1.69.0-9.fc31.src.rpm.errors.txt
+2
file added
results/f31/boost-1.69.0-9.fc31.src.rpm.stats.csv
+454
file added
results/f31/brasero-3.12.2-9.fc31.src.rpm.errors.txt
+112
file added
results/f31/brasero-3.12.2-9.fc31.src.rpm.stats.csv
+4
file added
results/f31/brltty-6.0-6.fc31.src.rpm.errors.txt
+6
file added
results/f31/brltty-6.0-6.fc31.src.rpm.stats.csv
+71
file added
results/f31/ceph-14.2.4-1.fc31.src.rpm.errors.txt
+9
file added
results/f31/ceph-14.2.4-1.fc31.src.rpm.stats.csv
+32
file added
results/f31/cheese-3.34.0-1.fc31.src.rpm.errors.txt
+108
file added
results/f31/cheese-3.34.0-1.fc31.src.rpm.stats.csv
+8
file added
results/f31/chkconfig-1.11-5.fc31.src.rpm.errors.txt
+152
file added
results/f31/chkconfig-1.11-5.fc31.src.rpm.stats.csv
+2
file added
results/f31/chrome-gnome-shell-10.1-5.fc31.src.rpm.errors.txt
+30
file added
results/f31/chrome-gnome-shell-10.1-5.fc31.src.rpm.stats.csv
+12
file added
results/f31/clutter-1.26.2-9.fc31.src.rpm.errors.txt
+130
file added
results/f31/clutter-1.26.2-9.fc31.src.rpm.stats.csv
+13
file added
results/f31/clutter-gtk-1.8.4-6.fc31.src.rpm.errors.txt
+8
file added
results/f31/clutter-gtk-1.8.4-6.fc31.src.rpm.stats.csv
+12
file added
results/f31/cogl-1.22.4-2.fc31.src.rpm.errors.txt
+124
file added
results/f31/cogl-1.22.4-2.fc31.src.rpm.stats.csv
+10
file added
results/f31/colord-1.4.4-2.fc31.src.rpm.errors.txt
+106
file added
results/f31/colord-1.4.4-2.fc31.src.rpm.stats.csv
+4
file added
results/f31/colord-gtk-0.2.0-2.fc31.src.rpm.errors.txt
+2
file added
results/f31/colord-gtk-0.2.0-2.fc31.src.rpm.stats.csv
+34
file added
results/f31/cpio-2.12-12.fc31.src.rpm.errors.txt
+30
file added
results/f31/cpio-2.12-12.fc31.src.rpm.stats.csv
+11
file added
results/f31/cracklib-2.9.6-21.fc31.src.rpm.errors.txt
+72
file added
results/f31/cracklib-2.9.6-21.fc31.src.rpm.stats.csv
+25
file added
results/f31/cryptsetup-2.2.1-1.fc31.src.rpm.errors.txt
+25
file added
results/f31/cryptsetup-2.2.1-1.fc31.src.rpm.stats.csv
+5
file added
results/f31/cups-pk-helper-0.2.6-8.fc31.src.rpm.errors.txt
+37
file added
results/f31/cups-pk-helper-0.2.6-8.fc31.src.rpm.stats.csv
+16
file added
results/f31/diffutils-3.7-3.fc31.src.rpm.errors.txt
+66
file added
results/f31/diffutils-3.7-3.fc31.src.rpm.stats.csv
+3
file added
results/f31/dnf-4.2.9-5.fc31.src.rpm.errors.txt
+53
file added
results/f31/dnf-4.2.9-5.fc31.src.rpm.stats.csv
+2
file added
results/f31/dnf-plugins-core-4.0.9-1.fc31.src.rpm.errors.txt
+27
file added
results/f31/dnf-plugins-core-4.0.9-1.fc31.src.rpm.stats.csv
+0
file added
results/f31/dnsmasq-2.80-10.fc31.src.rpm.errors.txt
+11
file added
results/f31/dnsmasq-2.80-10.fc31.src.rpm.stats.csv
+0
file added
results/f31/dos2unix-7.4.0-8.fc31.src.rpm.errors.txt
+31
file added
results/f31/dos2unix-7.4.0-8.fc31.src.rpm.stats.csv
+13
file added
results/f31/e2fsprogs-1.45.3-1.fc31.src.rpm.errors.txt
+43
file added
results/f31/e2fsprogs-1.45.3-1.fc31.src.rpm.stats.csv
+20
file added
results/f31/elfutils-0.177-1.fc31.src.rpm.errors.txt
+9
file added
results/f31/elfutils-0.177-1.fc31.src.rpm.stats.csv
+89
file added
results/f31/eog-3.34.1-1.fc31.src.rpm.errors.txt
+138
file added
results/f31/eog-3.34.1-1.fc31.src.rpm.stats.csv
+48
file added
results/f31/epiphany-3.34.1-1.fc31.src.rpm.errors.txt
+118
file added
results/f31/epiphany-3.34.1-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/evolution-data-server-3.34.1-1.fc31.src.rpm.errors.txt
+89
file added
results/f31/evolution-data-server-3.34.1-1.fc31.src.rpm.stats.csv
+12
file added
results/f31/exiv2-0.27.2-1.fc31.src.rpm.errors.txt
+19
file added
results/f31/exiv2-0.27.2-1.fc31.src.rpm.stats.csv
+27
file added
results/f31/file-roller-3.32.2-1.fc31.src.rpm.errors.txt
+124
file added
results/f31/file-roller-3.32.2-1.fc31.src.rpm.stats.csv
+42
file added
results/f31/findutils-4.6.0-24.fc31.src.rpm.errors.txt
+51
file added
results/f31/findutils-4.6.0-24.fc31.src.rpm.stats.csv
+4
file added
results/f31/firewalld-0.7.2-1.fc31.src.rpm.errors.txt
+49
file added
results/f31/firewalld-0.7.2-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/folks-0.13.1-2.fc31.src.rpm.errors.txt
+63
file added
results/f31/folks-0.13.1-2.fc31.src.rpm.stats.csv
+26
file added
results/f31/fontconfig-2.13.92-3.fc31.src.rpm.errors.txt
+8
file added
results/f31/fontconfig-2.13.92-3.fc31.src.rpm.stats.csv
+3
file added
results/f31/fprintd-0.9.0-1.fc31.src.rpm.errors.txt
+72
file added
results/f31/fprintd-0.9.0-1.fc31.src.rpm.stats.csv
+20
file added
results/f31/fwupd-1.2.11-2.fc31.src.rpm.errors.txt
+70
file added
results/f31/fwupd-1.2.11-2.fc31.src.rpm.stats.csv
+19
file added
results/f31/gawk-5.0.1-5.fc31.src.rpm.errors.txt
+35
file added
results/f31/gawk-5.0.1-5.fc31.src.rpm.stats.csv
+3
file added
results/f31/gcab-1.1-7.fc31.src.rpm.errors.txt
+29
file added
results/f31/gcab-1.1-7.fc31.src.rpm.stats.csv
+8
file added
results/f31/gcc-9.2.1-1.fc31.src.rpm.errors.txt
+48
file added
results/f31/gcc-9.2.1-1.fc31.src.rpm.stats.csv
+12
file added
results/f31/gdb-8.3.50.20190824-24.fc31.src.rpm.errors.txt
+65
file added
results/f31/gdb-8.3.50.20190824-24.fc31.src.rpm.stats.csv
+12
file added
results/f31/gdbm-1.18.1-1.fc31.src.rpm.errors.txt
+28
file added
results/f31/gdbm-1.18.1-1.fc31.src.rpm.stats.csv
+11
file added
results/f31/gdk-pixbuf2-2.40.0-1.fc31.src.rpm.errors.txt
+107
file added
results/f31/gdk-pixbuf2-2.40.0-1.fc31.src.rpm.stats.csv
+85
file added
results/f31/gdm-3.34.1-1.fc31.src.rpm.errors.txt
+239
file added
results/f31/gdm-3.34.1-1.fc31.src.rpm.stats.csv
+67
file added
results/f31/gedit-3.34.0-1.fc31.src.rpm.errors.txt
+135
file added
results/f31/gedit-3.34.0-1.fc31.src.rpm.stats.csv
+12
file added
results/f31/gegl04-0.4.16-4.fc31.src.rpm.errors.txt
+62
file added
results/f31/gegl04-0.4.16-4.fc31.src.rpm.stats.csv
+116
file added
results/f31/gettext-0.20.1-2.fc31.src.rpm.errors.txt
+1483
file added
results/f31/gettext-0.20.1-2.fc31.src.rpm.stats.csv
+14
file added
results/f31/git-2.23.0-1.fc31.src.rpm.errors.txt
+65
file added
results/f31/git-2.23.0-1.fc31.src.rpm.stats.csv
+3
file added
results/f31/glib-networking-2.62.1-1.fc31.src.rpm.errors.txt
+69
file added
results/f31/glib-networking-2.62.1-1.fc31.src.rpm.stats.csv
+6
file added
results/f31/glib2-2.62.1-1.fc31.src.rpm.errors.txt
+99
file added
results/f31/glib2-2.62.1-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/glibc-2.30-5.fc31.src.rpm.errors.txt
+38
file added
results/f31/glibc-2.30-5.fc31.src.rpm.stats.csv
+6
file added
results/f31/gnome-backgrounds-3.34.0-1.fc31.src.rpm.errors.txt
+98
file added
results/f31/gnome-backgrounds-3.34.0-1.fc31.src.rpm.stats.csv
+5
file added
results/f31/gnome-bluetooth-3.34.0-1.fc31.src.rpm.errors.txt
+87
file added
results/f31/gnome-bluetooth-3.34.0-1.fc31.src.rpm.stats.csv
+36
file added
results/f31/gnome-calculator-3.34.1-1.fc31.src.rpm.errors.txt
+122
file added
results/f31/gnome-calculator-3.34.1-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/gnome-characters-3.32.1-3.fc31.src.rpm.errors.txt
+55
file added
results/f31/gnome-characters-3.32.1-3.fc31.src.rpm.stats.csv
+18
file added
results/f31/gnome-clocks-3.34.0-1.fc31.src.rpm.errors.txt
+89
file added
results/f31/gnome-clocks-3.34.0-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/gnome-color-manager-3.32.0-2.fc31.src.rpm.errors.txt
+87
file added
results/f31/gnome-color-manager-3.32.0-2.fc31.src.rpm.stats.csv
+4
file added
results/f31/gnome-contacts-3.34-1.fc31.src.rpm.errors.txt
+73
file added
results/f31/gnome-contacts-3.34-1.fc31.src.rpm.stats.csv
+7
file added
results/f31/gnome-control-center-3.34.1-4.fc31.src.rpm.errors.txt
+175
file added
results/f31/gnome-control-center-3.34.1-4.fc31.src.rpm.stats.csv
+18
file added
results/f31/gnome-desktop3-3.34.1-1.fc31.src.rpm.errors.txt
+180
file added
results/f31/gnome-desktop3-3.34.1-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/gnome-disk-utility-3.34.0-1.fc31.src.rpm.errors.txt
+78
file added
results/f31/gnome-disk-utility-3.34.0-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/gnome-font-viewer-3.34.0-1.fc31.src.rpm.errors.txt
+98
file added
results/f31/gnome-font-viewer-3.34.0-1.fc31.src.rpm.stats.csv
+1365
file added
results/f31/gnome-getting-started-docs-3.34.0-1.fc31.src.rpm.errors.txt
+40
file added
results/f31/gnome-getting-started-docs-3.34.0-1.fc31.src.rpm.stats.csv
+5
file added
results/f31/gnome-icon-theme-3.12.0-12.fc31.src.rpm.errors.txt
+104
file added
results/f31/gnome-icon-theme-3.12.0-12.fc31.src.rpm.stats.csv
+4
file added
results/f31/gnome-initial-setup-3.34.1-1.fc31.src.rpm.errors.txt
+72
file added
results/f31/gnome-initial-setup-3.34.1-1.fc31.src.rpm.stats.csv
+14
file added
results/f31/gnome-keyring-3.34.0-1.fc31.src.rpm.errors.txt
+179
file added
results/f31/gnome-keyring-3.34.0-1.fc31.src.rpm.stats.csv
+17
file added
results/f31/gnome-logs-3.34.0-1.fc31.src.rpm.errors.txt
+74
file added
results/f31/gnome-logs-3.34.0-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/gnome-maps-3.34.1-1.fc31.src.rpm.errors.txt
+63
file added
results/f31/gnome-maps-3.34.1-1.fc31.src.rpm.stats.csv
+12
file added
results/f31/gnome-menus-3.32.0-2.fc31.src.rpm.errors.txt
+226
file added
results/f31/gnome-menus-3.32.0-2.fc31.src.rpm.stats.csv
+24
file added
results/f31/gnome-photos-3.34.0-1.fc31.src.rpm.errors.txt
+80
file added
results/f31/gnome-photos-3.34.0-1.fc31.src.rpm.stats.csv
+5
file added
results/f31/gnome-session-3.34.1-3.fc31.src.rpm.errors.txt
+111
file added
results/f31/gnome-session-3.34.1-3.fc31.src.rpm.stats.csv
+3
file added
results/f31/gnome-shell-3.34.1-2.fc31.src.rpm.errors.txt
+82
file added
results/f31/gnome-shell-3.34.1-2.fc31.src.rpm.stats.csv
+3
file added
results/f31/gnome-shell-extensions-3.34.1-1.fc31.src.rpm.errors.txt
+71
file added
results/f31/gnome-shell-extensions-3.34.1-1.fc31.src.rpm.stats.csv
+3
file added
results/f31/gnome-software-3.34.1-6.fc31.src.rpm.errors.txt
+63
file added
results/f31/gnome-software-3.34.1-6.fc31.src.rpm.stats.csv
+40
file added
results/f31/gnome-system-monitor-3.32.1-3.fc31.src.rpm.errors.txt
+107
file added
results/f31/gnome-system-monitor-3.32.1-3.fc31.src.rpm.stats.csv
+4
file added
results/f31/gnome-themes-extra-3.28-6.fc31.src.rpm.errors.txt
+75
file added
results/f31/gnome-themes-extra-3.28-6.fc31.src.rpm.stats.csv
+11742
file added
results/f31/gnome-user-docs-3.34.0-1.fc31.src.rpm.errors.txt
+47
file added
results/f31/gnome-user-docs-3.34.0-1.fc31.src.rpm.stats.csv
+6
file added
results/f31/gnome-user-share-3.34.0-1.fc31.src.rpm.errors.txt
+84
file added
results/f31/gnome-user-share-3.34.0-1.fc31.src.rpm.stats.csv
+5
file added
results/f31/gnome-video-effects-0.5.0-1.fc31.src.rpm.errors.txt
+83
file added
results/f31/gnome-video-effects-0.5.0-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/gnome-weather-3.34.0-1.fc31.src.rpm.errors.txt
+65
file added
results/f31/gnome-weather-3.34.0-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/gnupg2-2.2.17-2.fc31.src.rpm.errors.txt
+58
file added
results/f31/gnupg2-2.2.17-2.fc31.src.rpm.stats.csv
+13
file added
results/f31/gnutls-3.6.10-1.fc31.src.rpm.errors.txt
+34
file added
results/f31/gnutls-3.6.10-1.fc31.src.rpm.stats.csv
+16
file added
results/f31/grep-3.3-3.fc31.src.rpm.errors.txt
+84
file added
results/f31/grep-3.3-3.fc31.src.rpm.stats.csv
+3
file added
results/f31/grilo-0.3.10-1.fc31.src.rpm.errors.txt
+49
file added
results/f31/grilo-0.3.10-1.fc31.src.rpm.stats.csv
+9
file added
results/f31/grilo-plugins-0.3.10-1.fc31.src.rpm.errors.txt
+54
file added
results/f31/grilo-plugins-0.3.10-1.fc31.src.rpm.stats.csv
+27
file added
results/f31/grub2-2.02-100.fc31.src.rpm.errors.txt
+78
file added
results/f31/grub2-2.02-100.fc31.src.rpm.stats.csv
+4
file added
results/f31/gsettings-desktop-schemas-3.34.0-1.fc31.src.rpm.errors.txt
+55
file added
results/f31/gsettings-desktop-schemas-3.34.0-1.fc31.src.rpm.stats.csv
+12
file added
results/f31/gspell-1.8.2-1.fc31.src.rpm.errors.txt
+98
file added
results/f31/gspell-1.8.2-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/gstreamer1-1.16.1-1.fc31.src.rpm.errors.txt
+84
file added
results/f31/gstreamer1-1.16.1-1.fc31.src.rpm.stats.csv
+14
file added
results/f31/gstreamer1-plugins-bad-free-1.16.1-2.fc31.src.rpm.errors.txt
+86
file added
results/f31/gstreamer1-plugins-bad-free-1.16.1-2.fc31.src.rpm.stats.csv
+13
file added
results/f31/gstreamer1-plugins-base-1.16.1-1.fc31.src.rpm.errors.txt
+80
file added
results/f31/gstreamer1-plugins-base-1.16.1-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/gstreamer1-plugins-good-1.16.1-2.fc31.src.rpm.errors.txt
+88
file added
results/f31/gstreamer1-plugins-good-1.16.1-2.fc31.src.rpm.stats.csv
+13
file added
results/f31/gstreamer1-plugins-ugly-free-1.16.1-1.fc31.src.rpm.errors.txt
+88
file added
results/f31/gstreamer1-plugins-ugly-free-1.16.1-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/gtk-vnc-1.0.0-1.fc31.src.rpm.errors.txt
+49
file added
results/f31/gtk-vnc-1.0.0-1.fc31.src.rpm.stats.csv
+19
file added
results/f31/gtk2-2.24.32-5.fc31.src.rpm.errors.txt
+415
file added
results/f31/gtk2-2.24.32-5.fc31.src.rpm.stats.csv
+38
file added
results/f31/gtk3-3.24.12-3.fc31.src.rpm.errors.txt
+454
file added
results/f31/gtk3-3.24.12-3.fc31.src.rpm.stats.csv
+12
file added
results/f31/gtksourceview3-3.24.11-2.fc31.src.rpm.errors.txt
+166
file added
results/f31/gtksourceview3-3.24.11-2.fc31.src.rpm.stats.csv
+4
file added
results/f31/gtksourceview4-4.4.0-1.fc31.src.rpm.errors.txt
+83
file added
results/f31/gtksourceview4-4.4.0-1.fc31.src.rpm.stats.csv
+17
file added
results/f31/gutenprint-5.2.14-7.fc31.src.rpm.errors.txt
+49
file added
results/f31/gutenprint-5.2.14-7.fc31.src.rpm.stats.csv
+5
file added
results/f31/gvfs-1.42.1-1.fc31.src.rpm.errors.txt
+77
file added
results/f31/gvfs-1.42.1-1.fc31.src.rpm.stats.csv
+1
file added
results/f31/hplip-3.19.8-2.fc31.src.rpm.errors.txt
+1
file added
results/f31/hplip-3.19.8-2.fc31.src.rpm.stats.csv
+14
file added
results/f31/hunspell-1.7.0-3.fc31.src.rpm.errors.txt
+10
file added
results/f31/hunspell-1.7.0-3.fc31.src.rpm.stats.csv
+12
file added
results/f31/ibus-1.5.21-3.fc31.src.rpm.errors.txt
+104
file added
results/f31/ibus-1.5.21-3.fc31.src.rpm.stats.csv
+4
file added
results/f31/ibus-hangul-1.5.1-7.fc31.src.rpm.errors.txt
+3
file added
results/f31/ibus-hangul-1.5.1-7.fc31.src.rpm.stats.csv
+5
file added
results/f31/ibus-kkc-1.5.22-12.fc31.src.rpm.errors.txt
+2
file added
results/f31/ibus-kkc-1.5.22-12.fc31.src.rpm.stats.csv
+12
file added
results/f31/ibus-libpinyin-1.11.1-2.fc31.src.rpm.errors.txt
+14
file added
results/f31/ibus-libpinyin-1.11.1-2.fc31.src.rpm.stats.csv
+4
file added
results/f31/ibus-libzhuyin-1.9.1-2.fc31.src.rpm.errors.txt
+4
file added
results/f31/ibus-libzhuyin-1.9.1-2.fc31.src.rpm.stats.csv
+12
file added
results/f31/ibus-m17n-1.4.1-3.fc31.src.rpm.errors.txt
+6
file added
results/f31/ibus-m17n-1.4.1-3.fc31.src.rpm.stats.csv
+3
file added
results/f31/initscripts-10.02-2.fc31.src.rpm.errors.txt
+82
file added
results/f31/initscripts-10.02-2.fc31.src.rpm.stats.csv
+3
file added
results/f31/iputils-20190515-3.fc31.src.rpm.errors.txt
+3
file added
results/f31/iputils-20190515-3.fc31.src.rpm.stats.csv
+16
file added
results/f31/iso-codes-4.3-2.fc31.src.rpm.errors.txt
+611
file added
results/f31/iso-codes-4.3-2.fc31.src.rpm.stats.csv
+1
file added
results/f31/jbigkit-2.1-17.fc31.src.rpm.errors.txt
+3
file added
results/f31/jbigkit-2.1-17.fc31.src.rpm.stats.csv
+4
file added
results/f31/json-glib-1.4.4-3.fc31.src.rpm.errors.txt
+56
file added
results/f31/json-glib-1.4.4-3.fc31.src.rpm.stats.csv
+22
file added
results/f31/jwhois-4.0-58.fc31.src.rpm.errors.txt
+22
file added
results/f31/jwhois-4.0-58.fc31.src.rpm.stats.csv
+13
file added
results/f31/kbd-2.0.4-14.fc31.src.rpm.errors.txt
+38
file added
results/f31/kbd-2.0.4-14.fc31.src.rpm.stats.csv
+1
file added
results/f31/kdump-anaconda-addon-005-5.20190103gitb16ea2c.fc31.src.rpm.errors.txt
+59
file added
results/f31/kdump-anaconda-addon-005-5.20190103gitb16ea2c.fc31.src.rpm.stats.csv
+0
file added
results/f31/kernel-5.3.7-301.fc31.src.rpm.errors.txt
+6
file added
results/f31/kernel-5.3.7-301.fc31.src.rpm.stats.csv
+2
file added
results/f31/krb5-1.17-45.fc31.src.rpm.errors.txt
+4
file added
results/f31/krb5-1.17-45.fc31.src.rpm.stats.csv
+5
file added
results/f31/libappstream-glib-0.7.16-1.fc31.src.rpm.errors.txt
+31
file added
results/f31/libappstream-glib-0.7.16-1.fc31.src.rpm.stats.csv
+2
file added
results/f31/libbytesize-2.1-2.fc31.src.rpm.errors.txt
+98
file added
results/f31/libbytesize-2.1-2.fc31.src.rpm.stats.csv
+1
file added
results/f31/libconfig-1.7.2-4.fc31.src.rpm.errors.txt
+4
file added
results/f31/libconfig-1.7.2-4.fc31.src.rpm.stats.csv
+3
file added
results/f31/libdnf-0.35.3-6.fc31.src.rpm.errors.txt
+51
file added
results/f31/libdnf-0.35.3-6.fc31.src.rpm.stats.csv
+11
file added
results/f31/libexif-0.6.21-20.fc31.src.rpm.errors.txt
+52
file added
results/f31/libexif-0.6.21-20.fc31.src.rpm.stats.csv
+3
file added
results/f31/libgdata-0.17.11-1.fc31.src.rpm.errors.txt
+63
file added
results/f31/libgdata-0.17.11-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/libgnomekbd-3.26.1-2.fc31.src.rpm.errors.txt
+154
file added
results/f31/libgnomekbd-3.26.1-2.fc31.src.rpm.stats.csv
+13
file added
results/f31/libgpg-error-1.36-2.fc31.src.rpm.errors.txt
+42
file added
results/f31/libgpg-error-1.36-2.fc31.src.rpm.stats.csv
+24
file added
results/f31/libgphoto2-2.5.23-1.fc31.src.rpm.errors.txt
+74
file added
results/f31/libgphoto2-2.5.23-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/libgsf-1.14.43-5.fc31.src.rpm.errors.txt
+47
file added
results/f31/libgsf-1.14.43-5.fc31.src.rpm.stats.csv
+15
file added
results/f31/libgtop2-2.40.0-2.fc31.src.rpm.errors.txt
+172
file added
results/f31/libgtop2-2.40.0-2.fc31.src.rpm.stats.csv
+12
file added
results/f31/libgweather-3.34.0-1.fc31.src.rpm.errors.txt
+202
file added
results/f31/libgweather-3.34.0-1.fc31.src.rpm.stats.csv
+12
file added
results/f31/libhangul-0.1.0-20.fc31.src.rpm.errors.txt
+4
file added
results/f31/libhangul-0.1.0-20.fc31.src.rpm.stats.csv
+16
file added
results/f31/libidn-1.35-6.fc31.src.rpm.errors.txt
+44
file added
results/f31/libidn-1.35-6.fc31.src.rpm.stats.csv
+16
file added
results/f31/libidn2-2.2.0-2.fc31.src.rpm.errors.txt
+45
file added
results/f31/libidn2-2.2.0-2.fc31.src.rpm.stats.csv
+25
file added
results/f31/libiptcdata-1.0.5-2.fc31.src.rpm.errors.txt
+12
file added
results/f31/libiptcdata-1.0.5-2.fc31.src.rpm.stats.csv
+4
file added
results/f31/libkkc-0.3.5-16.fc31.src.rpm.errors.txt
+2
file added
results/f31/libkkc-0.3.5-16.fc31.src.rpm.stats.csv
+12
file added
results/f31/libosinfo-1.6.0-1.fc31.src.rpm.errors.txt
+192
file added
results/f31/libosinfo-1.6.0-1.fc31.src.rpm.stats.csv
+1
file added
results/f31/libpaper-1.1.24-25.fc31.src.rpm.errors.txt
+24
file added
results/f31/libpaper-1.1.24-25.fc31.src.rpm.stats.csv
+4
file added
results/f31/libpeas-1.24.0-1.fc31.src.rpm.errors.txt
+69
file added
results/f31/libpeas-1.24.0-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/libpwquality-1.4.1-1.fc31.src.rpm.errors.txt
+100
file added
results/f31/libpwquality-1.4.1-1.fc31.src.rpm.stats.csv
+5
file added
results/f31/libreport-2.10.1-2.fc31.src.rpm.errors.txt
+107
file added
results/f31/libreport-2.10.1-2.fc31.src.rpm.stats.csv
+12
file added
results/f31/librsvg2-2.46.1-1.fc31.src.rpm.errors.txt
+4
file added
results/f31/librsvg2-2.46.1-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/libsecret-0.19.1-1.fc31.src.rpm.errors.txt
+106
file added
results/f31/libsecret-0.19.1-1.fc31.src.rpm.stats.csv
+3
file added
results/f31/libsmbios-2.4.2-4.fc31.src.rpm.errors.txt
+15
file added
results/f31/libsmbios-2.4.2-4.fc31.src.rpm.stats.csv
+12
file added
results/f31/libuser-0.62-21.fc31.src.rpm.errors.txt
+118
file added
results/f31/libuser-0.62-21.fc31.src.rpm.stats.csv
+3
file added
results/f31/libvirt-5.6.0-4.fc31.src.rpm.errors.txt
+200
file added
results/f31/libvirt-5.6.0-4.fc31.src.rpm.stats.csv
+3
file added
results/f31/libvirt-glib-2.0.0-4.fc31.src.rpm.errors.txt
+96
file added
results/f31/libvirt-glib-2.0.0-4.fc31.src.rpm.stats.csv
+13
file added
results/f31/libvisual-0.4.0-27.fc31.src.rpm.errors.txt
+6
file added
results/f31/libvisual-0.4.0-27.fc31.src.rpm.stats.csv
+5
file added
results/f31/libwnck3-3.32.0-2.fc31.src.rpm.errors.txt
+94
file added
results/f31/libwnck3-3.32.0-2.fc31.src.rpm.stats.csv
+6
file added
results/f31/lrzsz-0.12.20-48.fc31.src.rpm.errors.txt
+3
file added
results/f31/lrzsz-0.12.20-48.fc31.src.rpm.stats.csv
+2
file added
results/f31/lvm2-2.03.05-2.fc31.src.rpm.errors.txt
+3
file added
results/f31/lvm2-2.03.05-2.fc31.src.rpm.stats.csv
+5
file added
results/f31/lxsession-0.5.4-1.fc31.1.src.rpm.errors.txt
+65
file added
results/f31/lxsession-0.5.4-1.fc31.1.src.rpm.stats.csv
+32
file added
results/f31/man-db-2.8.4-5.fc31.src.rpm.errors.txt
+132
file added
results/f31/man-db-2.8.4-5.fc31.src.rpm.stats.csv
+12
file added
results/f31/mlocate-0.26-24.fc31.src.rpm.errors.txt
+76
file added
results/f31/mlocate-0.26-24.fc31.src.rpm.stats.csv
+12
file added
results/f31/mousetweaks-3.32.0-2.fc31.src.rpm.errors.txt
+154
file added
results/f31/mousetweaks-3.32.0-2.fc31.src.rpm.stats.csv
+5
file added
results/f31/nautilus-3.34.1-1.fc31.src.rpm.errors.txt
+118
file added
results/f31/nautilus-3.34.1-1.fc31.src.rpm.stats.csv
+5
file added
results/f31/nautilus-sendto-3.8.6-5.fc31.src.rpm.errors.txt
+87
file added
results/f31/nautilus-sendto-3.8.6-5.fc31.src.rpm.stats.csv
+4
file added
results/f31/neon-0.30.2-11.fc31.src.rpm.errors.txt
+16
file added
results/f31/neon-0.30.2-11.fc31.src.rpm.stats.csv
+2
file added
results/f31/net-tools-2.0-0.55.20160912git.fc31.src.rpm.errors.txt
+7
file added
results/f31/net-tools-2.0-0.55.20160912git.fc31.src.rpm.stats.csv
+15
file added
results/f31/network-manager-applet-1.8.22-1.fc31.1.src.rpm.errors.txt
+163
file added
results/f31/network-manager-applet-1.8.22-1.fc31.1.src.rpm.stats.csv
+2
file added
results/f31/nmap-7.80-2.fc31.src.rpm.errors.txt
+24
file added
results/f31/nmap-7.80-2.fc31.src.rpm.stats.csv
+4
file added
results/f31/openconnect-8.05-1.fc31.src.rpm.errors.txt
+35
file added
results/f31/openconnect-8.05-1.fc31.src.rpm.stats.csv
+651
file added
results/f31/orca-3.34.0-1.fc31.src.rpm.errors.txt
+168
file added
results/f31/orca-3.34.0-1.fc31.src.rpm.stats.csv
+12
file added
results/f31/p11-kit-0.23.16.1-2.fc31.src.rpm.errors.txt
+146
file added
results/f31/p11-kit-0.23.16.1-2.fc31.src.rpm.stats.csv
+12
file added
results/f31/pam-1.3.1-18.fc31.src.rpm.errors.txt
+196
file added
results/f31/pam-1.3.1-18.fc31.src.rpm.stats.csv
+19
file added
results/f31/parted-3.2.153-1.fc31.src.rpm.errors.txt
+56
file added
results/f31/parted-3.2.153-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/passwd-0.80-6.fc31.src.rpm.errors.txt
+138
file added
results/f31/passwd-0.80-6.fc31.src.rpm.stats.csv
+3
file added
results/f31/phodav-2.3-2.fc31.src.rpm.errors.txt
+20
file added
results/f31/phodav-2.3-2.fc31.src.rpm.stats.csv
+6
file added
results/f31/pinfo-0.6.10-23.fc31.src.rpm.errors.txt
+13
file added
results/f31/pinfo-0.6.10-23.fc31.src.rpm.stats.csv
+4
file added
results/f31/policycoreutils-2.9-5.fc31.src.rpm.errors.txt
+464
file added
results/f31/policycoreutils-2.9-5.fc31.src.rpm.stats.csv
+5
file added
results/f31/polkit-0.116-4.fc31.src.rpm.errors.txt
+16
file added
results/f31/polkit-0.116-4.fc31.src.rpm.stats.csv
+23
file added
results/f31/popt-1.16-18.fc31.src.rpm.errors.txt
+54
file added
results/f31/popt-1.16-18.fc31.src.rpm.stats.csv
+13
file added
results/f31/procps-ng-3.3.15-6.fc31.src.rpm.errors.txt
+29
file added
results/f31/procps-ng-3.3.15-6.fc31.src.rpm.stats.csv
+18
file added
results/f31/psmisc-23.1-7.fc31.src.rpm.errors.txt
+53
file added
results/f31/psmisc-23.1-7.fc31.src.rpm.stats.csv
+14
file added
results/f31/pulseaudio-13.0-1.fc31.src.rpm.errors.txt
+94
file added
results/f31/pulseaudio-13.0-1.fc31.src.rpm.stats.csv
+1
file added
results/f31/pykickstart-3.21-1.fc31.src.rpm.errors.txt
+190
file added
results/f31/pykickstart-3.21-1.fc31.src.rpm.stats.csv
+1
file added
results/f31/python-blivet-3.1.5-2.fc31.src.rpm.errors.txt
+158
file added
results/f31/python-blivet-3.1.5-2.fc31.src.rpm.stats.csv
+0
file added
results/f31/python-humanize-0.5.1-17.fc31.src.rpm.errors.txt
+7
file added
results/f31/python-humanize-0.5.1-17.fc31.src.rpm.stats.csv
+6
file added
results/f31/python-meh-0.48-1.fc31.src.rpm.errors.txt
+354
file added
results/f31/python-meh-0.48-1.fc31.src.rpm.stats.csv
+1
file added
results/f31/python-simpleline-1.6-1.fc31.src.rpm.errors.txt
+99
file added
results/f31/python-simpleline-1.6-1.fc31.src.rpm.stats.csv
+16
file added
results/f31/qt-4.8.7-50.fc31.src.rpm.errors.txt
+16
file added
results/f31/qt-4.8.7-50.fc31.src.rpm.stats.csv
+1
file added
results/f31/qt5-qtbase-5.12.5-1.fc31.src.rpm.errors.txt
+1
file added
results/f31/qt5-qtbase-5.12.5-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/quota-4.05-5.fc31.src.rpm.errors.txt
+9
file added
results/f31/quota-4.05-5.fc31.src.rpm.stats.csv
+3
file added
results/f31/realmd-0.16.3-21.fc31.src.rpm.errors.txt
+69
file added
results/f31/realmd-0.16.3-21.fc31.src.rpm.stats.csv
+3
file added
results/f31/redhat-menus-12.0.2-16.fc31.src.rpm.errors.txt
+72
file added
results/f31/redhat-menus-12.0.2-16.fc31.src.rpm.stats.csv
+130
file added
results/f31/rhythmbox-3.4.3-4.fc31.src.rpm.errors.txt
+103
file added
results/f31/rhythmbox-3.4.3-4.fc31.src.rpm.stats.csv
+30
file added
results/f31/rpm-4.15.0-6.fc31.src.rpm.errors.txt
+54
file added
results/f31/rpm-4.15.0-6.fc31.src.rpm.stats.csv
+12
file added
results/f31/rygel-0.36.2-4.fc31.src.rpm.errors.txt
+126
file added
results/f31/rygel-0.36.2-4.fc31.src.rpm.stats.csv
+2
file added
results/f31/samba-4.11.0-3.fc31.src.rpm.errors.txt
+23
file added
results/f31/samba-4.11.0-3.fc31.src.rpm.stats.csv
+19
file added
results/f31/sed-4.5-4.fc31.src.rpm.errors.txt
+74
file added
results/f31/sed-4.5-4.fc31.src.rpm.stats.csv
+17
file added
results/f31/shadow-utils-4.6-16.fc31.src.rpm.errors.txt
+88
file added
results/f31/shadow-utils-4.6-16.fc31.src.rpm.stats.csv
+13
file added
results/f31/shared-mime-info-1.14-1.fc31.src.rpm.errors.txt
+152
file added
results/f31/shared-mime-info-1.14-1.fc31.src.rpm.stats.csv
+37
file added
results/f31/simple-scan-3.34.1-1.fc31.src.rpm.errors.txt
+110
file added
results/f31/simple-scan-3.34.1-1.fc31.src.rpm.stats.csv
+1
file added
results/f31/sos-3.8-1.fc31.src.rpm.errors.txt
+80
file added
results/f31/sos-3.8-1.fc31.src.rpm.stats.csv
+8
file added
results/f31/speech-dispatcher-0.9.1-2.fc31.src.rpm.errors.txt
+7
file added
results/f31/speech-dispatcher-0.9.1-2.fc31.src.rpm.stats.csv
+14
file added
results/f31/spice-gtk-0.37-4.fc31.src.rpm.errors.txt
+10
file added
results/f31/spice-gtk-0.37-4.fc31.src.rpm.stats.csv
+3
file added
results/f31/sushi-3.34.0-1.fc31.src.rpm.errors.txt
+72
file added
results/f31/sushi-3.34.0-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/system-config-printer-1.5.12-1.fc31.src.rpm.errors.txt
+62
file added
results/f31/system-config-printer-1.5.12-1.fc31.src.rpm.stats.csv
+7
file added
results/f31/systemd-243-4.gitef67743.fc31.src.rpm.errors.txt
+30
file added
results/f31/systemd-243-4.gitef67743.fc31.src.rpm.stats.csv
+46
file added
results/f31/tar-1.32-2.fc31.src.rpm.errors.txt
+44
file added
results/f31/tar-1.32-2.fc31.src.rpm.stats.csv
+1
file added
results/f31/texlive-base-20190410-2.fc31.src.rpm.errors.txt
+29
file added
results/f31/texlive-base-20190410-2.fc31.src.rpm.stats.csv
+2
file added
results/f31/tigervnc-1.9.0-7.fc31.src.rpm.errors.txt
+26
file added
results/f31/tigervnc-1.9.0-7.fc31.src.rpm.stats.csv
+14
file added
results/f31/todo_aresource.txt
+6
file added
results/f31/todo_fluent.txt
+16
file added
results/f31/todo_joomla.txt
+52
file added
results/f31/todo_json-nested.txt
+9
file added
results/f31/todo_po-mono.txt
+1
file added
results/f31/todo_properties-utf8.txt
+1
file added
results/f31/todo_srt.txt
+4
file added
results/f31/todo_strings.txt
+1
file added
results/f31/todo_sub.txt
+3
file added
results/f31/todo_webextension.txt
+1
file added
results/f31/todo_xliff.txt
+70
file added
results/f31/todo_yaml.txt
+33
file added
results/f31/totem-3.34.1-1.fc31.src.rpm.errors.txt
+130
file added
results/f31/totem-3.34.1-1.fc31.src.rpm.stats.csv
+4
file added
results/f31/totem-pl-parser-3.26.3-2.fc31.src.rpm.errors.txt
+97
file added
results/f31/totem-pl-parser-3.26.3-2.fc31.src.rpm.stats.csv
+5
file added
results/f31/tracker-2.3.0-1.fc31.src.rpm.errors.txt
+60
file added
results/f31/tracker-2.3.0-1.fc31.src.rpm.stats.csv
+5
file added
results/f31/tracker-miners-2.3.0-1.fc31.src.rpm.errors.txt
+60
file added
results/f31/tracker-miners-2.3.0-1.fc31.src.rpm.stats.csv
+12
file added
results/f31/udisks2-2.8.4-3.fc31.src.rpm.errors.txt
+142
file added
results/f31/udisks2-2.8.4-3.fc31.src.rpm.stats.csv
+5
file added
results/f31/upower-0.99.10-2.fc31.src.rpm.errors.txt
+5
file added
results/f31/upower-0.99.10-2.fc31.src.rpm.stats.csv
+4
file added
results/f31/usermode-1.112-5.fc31.src.rpm.errors.txt
+65
file added
results/f31/usermode-1.112-5.fc31.src.rpm.stats.csv
+29
file added
results/f31/util-linux-2.34-3.fc31.src.rpm.errors.txt
+37
file added
results/f31/util-linux-2.34-3.fc31.src.rpm.stats.csv
+24
file added
results/f31/v4l-utils-1.18.0-2.fc31.src.rpm.errors.txt
+22
file added
results/f31/v4l-utils-1.18.0-2.fc31.src.rpm.stats.csv
+5
file added
results/f31/vino-3.22.0-16.fc31.src.rpm.errors.txt
+89
file added
results/f31/vino-3.22.0-16.fc31.src.rpm.stats.csv
+12
file added
results/f31/volume_key-0.3.12-4.fc31.src.rpm.errors.txt
+76
file added
results/f31/volume_key-0.3.12-4.fc31.src.rpm.stats.csv
+3
file added
results/f31/webkit2gtk3-2.26.1-1.fc31.src.rpm.errors.txt
+50
file added
results/f31/webkit2gtk3-2.26.1-1.fc31.src.rpm.stats.csv
+16
file added
results/f31/wget-1.20.3-2.fc31.src.rpm.errors.txt
+76
file added
results/f31/wget-1.20.3-2.fc31.src.rpm.stats.csv
+2
file added
results/f31/whois-5.5.2-1.fc31.src.rpm.errors.txt
+15
file added
results/f31/whois-5.5.2-1.fc31.src.rpm.stats.csv
+1
file added
results/f31/wpa_supplicant-2.9-1.fc31.src.rpm.errors.txt
+1
file added
results/f31/wpa_supplicant-2.9-1.fc31.src.rpm.stats.csv
+12
file added
results/f31/xdg-desktop-portal-1.4.2-3.fc31.src.rpm.errors.txt
+40
file added
results/f31/xdg-desktop-portal-1.4.2-3.fc31.src.rpm.stats.csv
+12
file added
results/f31/xdg-desktop-portal-gtk-1.4.0-1.fc31.src.rpm.errors.txt
+40
file added
results/f31/xdg-desktop-portal-gtk-1.4.0-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/xdg-user-dirs-0.17-4.fc31.src.rpm.errors.txt
+150
file added
results/f31/xdg-user-dirs-0.17-4.fc31.src.rpm.stats.csv
+4
file added
results/f31/xdg-user-dirs-gtk-0.10-16.fc31.src.rpm.errors.txt
+72
file added
results/f31/xdg-user-dirs-gtk-0.10-16.fc31.src.rpm.stats.csv
+1
file added
results/f31/xen-4.12.1-1.fc31.src.rpm.errors.txt
+9
file added
results/f31/xen-4.12.1-1.fc31.src.rpm.stats.csv
+1
file added
results/f31/xfsprogs-5.1.0-2.fc31.src.rpm.errors.txt
+4
file added
results/f31/xfsprogs-5.1.0-2.fc31.src.rpm.stats.csv
+13
file added
results/f31/xkeyboard-config-2.27-2.fc31.src.rpm.errors.txt
+88
file added
results/f31/xkeyboard-config-2.27-2.fc31.src.rpm.stats.csv
+18
file added
results/f31/xz-5.2.4-6.fc31.src.rpm.errors.txt
+8
file added
results/f31/xz-5.2.4-6.fc31.src.rpm.stats.csv
+13
file added
results/f31/yelp-3.34.0-1.fc31.src.rpm.errors.txt
+208
file added
results/f31/yelp-3.34.0-1.fc31.src.rpm.stats.csv
+13
file added
results/f31/yelp-xsl-3.34.0-1.fc31.src.rpm.errors.txt
+180
file added
results/f31/yelp-xsl-3.34.0-1.fc31.src.rpm.stats.csv
+704
file added
results/f31/zenity-3.32.0-2.fc31.src.rpm.errors.txt
+205
file added
results/f31/zenity-3.32.0-2.fc31.src.rpm.stats.csv
+0 -0
file changed
words_coverage.png